|
|
1 rok temu | |
|---|---|---|
| .. | ||
| .DS_Store | 1 rok temu | |
| README.md | 1 rok temu | |
| flipper_http.h | 1 rok temu | |
| flipper_http.js | 1 rok temu | |
| flipper_http_bootloader.bin | 1 rok temu | |
| flipper_http_firmware_a.bin | 1 rok temu | |
| flipper_http_partitions.bin | 1 rok temu | |
HTTP library for Flipper Zero. Compatible with Wifi Dev Board for Flipper Zero (ESP32S2 Dev Module).
flipper_http_bootloader.bin, flipper_http_firmware_a.bin, and flipper_http_partitions.bin files.File manager.SD Card/apps_data/esp_flasher/Apps->GPIO from the main menu. If not, download it from the Flipper App Store.flipper_http_bootloader.bin that you downloaded earlier.flipper_http_partitions.bin that you downloaded earlier.flipper_http_firmware_a.bin that you downloaded earlier.You should be all set. Here's the initial guide: https://www.youtube.com/watch?v=Y2lUVTMTABE
C (flipper_http.h)General
flipper_http_init(FlipperHTTP_Callback callback, void *context)flipper_http_deinit()WiFi
flipper_http_connect_wifi()flipper_http_disconnect_wifi()flipper_http_ping()flipper_http_save_wifi(const char *ssid, const char *password)Extras
flipper_http_send_data(const char *data)flipper_http_rx_callback(const char *line, void *context)flipper_http_get_request(const char *url)flipper_http_save_received_data(size_t bytes_received, const char line_buffer[])JavaScript (flipper_http.js):General
fhttp.init()fhttp.deinit()WiFi
fhttp.connect_wifi()fhttp.disconnect_wifi()fhttp.ping()fhttp.save_wifi(ssid, password)Extras
fhttp.send_data(data)fhttp.read_data(delay_ms)fhttp.get_request(url)fhttp.get_request_with_headers(url, headers)fhttp.post_request_with_headers(url, headers, payload)fhttp.put_request_with_headers(url, headers, payload)