| 123456789101112131415161718192021 |
- /* FlipperHTTP Library
- Author: JBlanked
- Github: https://github.com/jblanked/WebCrawler-FlipperZero/tree/main/assets/FlipperHTTP
- Info: This library is a wrapper around the HTTPClient library and is used to communicate with the FlipperZero over serial.
- Created: 2024-09-30
- Updated: 2024-10-26
- */
- #include <FlipperHTTP.h>
- FlipperHTTP fhttp;
- void setup()
- {
- fhttp.setup();
- }
- void loop()
- {
- fhttp.loop();
- }
|