|
|
@@ -35,6 +35,7 @@ Star the repository (https://github.com/jblanked/WebCrawler-FlipperZero) and fol
|
|
|
| `flipper_http_connect_wifi` | `bool` | None | Connects to WiFi using previously saved credentials. |
|
|
|
| `flipper_http_disconnect_wifi` | `bool` | None | Disconnects from the current WiFi network. |
|
|
|
| `flipper_http_ping` | `bool` | None | Sends a ping request to test connectivity. |
|
|
|
+| `flipper_http_scan_wifi` | `bool` | `const char *ssid`, `const char *password` | Scans for nearby WiFi networks. |
|
|
|
| `flipper_http_save_wifi` | `bool` | `const char *ssid`, `const char *password` | Saves WiFi credentials for future connections. |
|
|
|
| `flipper_http_send_data` | `bool` | `const char *data` | Sends the specified data to the server. |
|
|
|
| `flipper_http_rx_callback` | `void` | `const char *line`, `void *context` | Callback function for handling received data. |
|
|
|
@@ -55,6 +56,7 @@ Star the repository (https://github.com/jblanked/WebCrawler-FlipperZero) and fol
|
|
|
| `fhttp.connect_wifi` | `bool` | None | Sends a command to connect to WiFi and returns whether the connection was successful. |
|
|
|
| `fhttp.disconnect_wifi` | `bool` | None | Sends a command to disconnect from WiFi and returns whether the disconnection was successful. |
|
|
|
| `fhttp.ping` | `bool` | None | Sends a ping request to test connectivity and returns whether a response was received. |
|
|
|
+| `fhttp.scan_wifi` | `str` | None | Scans for nearby WiFi access points and returns a string with each access point separated by a comma |
|
|
|
| `fhttp.save_wifi` | `bool` | `ssid: string`, `password: string` | Saves WiFi credentials and returns whether the save operation was successful. |
|
|
|
| `fhttp.send_data` | `void` | `data: string` | Sends the specified data to the serial port. |
|
|
|
| `fhttp.read_data` | `string` | `delay_ms: number` | Reads data from the serial port with a specified delay and returns the response received. |
|
|
|
@@ -71,6 +73,7 @@ Star the repository (https://github.com/jblanked/WebCrawler-FlipperZero) and fol
|
|
|
| `flipper_http_disconnect_wifi` | `bool` | None | Sends a command to disconnect from WiFi and returns whether the disconnection was successful. |
|
|
|
| `flipper_http_ping` | `bool` | None | Sends a ping request to test connectivity and returns whether a response was received. |
|
|
|
| `flipper_http_save_wifi` | `bool` | `ssid: str`, `password: str` | Saves WiFi credentials and returns whether the save operation was successful. |
|
|
|
+| `flipper_http_scan_wifi` | `str` | None | Scans for nearby WiFi access points and returns a string with each access point separated by a comma. |
|
|
|
| `flipper_http_send_data` | `void` | `data: str` | Sends the specified data to the serial port. |
|
|
|
| `flipper_http_read_data` | `str` | `sleep_ms: int` | Reads data from the serial port with a specified delay and returns the response received. |
|
|
|
| `flipper_http_get_request` | `str` | `url: str` | Sends a GET request to the specified URL and returns the response of the response. |
|