Skip to content

Releases: jblanked/FlipperHTTP

FlipperHTTP - v2.2.0

Choose a tag to compare

@jblanked jblanked released this 04 Jun 14:06
d46118c
  • Added support for the Cardputer-ADV
  • Replaced JSON settings with a struct
  • Updated storage to read and write the struct instead of JSON
  • Updated the init sequence order -> initialize drivers, load settings, attempt to connect to WiFi, then LED sequence
  • Bumped arduino-pico core to 5.6.0

FlipperHTTP - v2.1.8

Choose a tag to compare

@jblanked jblanked released this 21 May 16:01
40609c2

Added [PATCH/HTTP] command to send PATCH requests (@nozzle-1)

FlipperHTTP - v2.1.7

Choose a tag to compare

@jblanked jblanked released this 07 Apr 13:26
8095a10
  • Replaced local WiFiClient instance with a class instance to fix WebSocket crash
  • Improved WebSocket error handling

FlipperHTTP - v2.1.6

Choose a tag to compare

@jblanked jblanked released this 26 Mar 19:21
dc20840
  • Added command.hpp/cpp to handle all command parsing
  • Added an HTTP class to handle all HTTP requests and moved the request and stream methods to that class
  • Added a WebSocket class to handle all WebSocket connections and moved the WebSocket methods to that class
  • Added a [POST/FILE] command to upload files over HTTP and stream the response back over UART

FlipperHTTP - v2.1.5

Choose a tag to compare

@jblanked jblanked released this 20 Mar 12:10
e4b10e9
  • updated arduino-pico core to v5.5.1
  • updated LED state to persist over reboot

FlipperHTTP - v2.1.4

Choose a tag to compare

@jblanked jblanked released this 30 Dec 16:38
baa880f

Added:

  • New [BOARD/NAME] command that returns the name of the board
  • EraseFlash=all flag in the build options to ensure the flash is wiped before FlipperHTTP is flashed onto the board

Updated:

  • WiFi auto-reconnect to false for all ESP32 variants
  • WiFi connection logic to disconnect before reconnecting if already connected

FlipperHTTP - v2.1.3

Choose a tag to compare

@jblanked jblanked released this 24 Dec 01:53
3897442

This a quick patch to the v2.1.2 release:

  • Fixed 0x3001 ESP_ERR_WIFI_NOT_INIT esp error that appeared on-boot
  • Fixed (-10368) X509 - Allocation of memory failed issue by setting debug to None in the compile scripts

FlipperHTTP - v2.1.2

Choose a tag to compare

@jblanked jblanked released this 23 Dec 19:07
11a4f5b
  • Removed the deserialize failure warning that appeared for first time flashers since there weren't any credentials saved yet (the method will still return false but it won't send an error over serial)
  • Updated ESP32 boards manager to 3.3.5
  • Updated RP2040 library to 5.4.4
  • Increased the web socket message chunk size to 128 bytes (up from 90)
  • Added scripts to compile FlipperHTTP via CLI (requires arduino-cli)
  • Added the latest FlipperHTTP apps to the README.md
  • Added a flipper-http folder within src, and moved all of the source files into it. This allows users to download the repository, and then just double click on src/flipper-http/flipper-http.ino to open it up in Arduino IDE right away.
  • Added a Tutorials.md with YouTube links to FlipperHTTP tutorials and reviews

FlipperHTTP - v2.1.1

Choose a tag to compare

@jblanked jblanked released this 16 Sep 01:21
79f704d

This update simply adds the [WIFI/SSID] command, which returns the SSID of the currently connected network.

FlipperHTTP - v2.1

Choose a tag to compare

@jblanked jblanked released this 20 Aug 02:54
6fe0950
  • Added sendLargeMessage method to handle websocket messages bigger than 90 bytes (128 was the previous limit)
  • Added [WIFI/STATUS] command which returns true if the device is connected to WiFi
  • Added BOARD_PICOCALC_W and BOARD_PICOCALC_2W for PicoCalc support
  • Added LCD class for the PicoCalc (displays uart on screen)