flipper-http.ino 407 B

123456789101112131415161718192021
  1. /* FlipperHTTP Library
  2. Author: JBlanked
  3. Github: https://github.com/jblanked/WebCrawler-FlipperZero/tree/main/assets/FlipperHTTP
  4. Info: This library is a wrapper around the HTTPClient library and is used to communicate with the FlipperZero over serial.
  5. Created: 2024-09-30
  6. Updated: 2024-10-26
  7. */
  8. #include <FlipperHTTP.h>
  9. FlipperHTTP fhttp;
  10. void setup()
  11. {
  12. fhttp.setup();
  13. }
  14. void loop()
  15. {
  16. fhttp.loop();
  17. }