Added code for floaty hardware option
This commit is contained in:
@ -84,7 +84,7 @@ GET: /api/status
|
||||
Retrieve the current device status via an HTTP GET command. Payload is in JSON format.
|
||||
|
||||
* ``temp-format`` can be either ``C`` or ``F``
|
||||
* ``platform`` can be either ``esp8266``, ``esp32c3``, ``esp32s2`` or ``esp32``
|
||||
* ``platform`` can be either ``esp8266``, ``esp32c3``, ``esp32s2``, ``esp32`` or ``esp32lite`` (floaty hardware)
|
||||
* ``temp-c`` will be set to -273 C if there is no temp sensor
|
||||
* ``angle`` will be set to 0 if no valid angle is found and -1 if there is no gyro
|
||||
|
||||
|
@ -114,4 +114,7 @@ This is a list of C++ defines that is used to enable/disable functions in the co
|
||||
- Defines the version of the compiled software
|
||||
* - USE_SERIAL_PINS
|
||||
- Will send the serial console to the TX/RX pins on an ESP32 target so that debugging can be done when on battery
|
||||
|
||||
* - REDUCE_WIFI_POWER
|
||||
- Will reduce wifi power to support the ESP32C3 v1.0 which has a bad antenna
|
||||
* - FLOATY
|
||||
- Build for the ESP32lite FLOATY hardware option (no DS18B20 and no battery monitor)
|
||||
|
@ -53,6 +53,9 @@ In the /bin directory you will find 4 different firmware builds;
|
||||
This is the release build for an ESP32s2-mini variant. When flashing an ESP32 you also need the *partition32s2.bin* file that outlines the flash memory structure. Due to
|
||||
the size of the firmware we are using a custom partition setup.
|
||||
|
||||
* **firmware32lite.bin**
|
||||
|
||||
This is the release build for an ESP32lite which is used by the floaty build (clone).
|
||||
|
||||
Esptool (esp8266)
|
||||
=================
|
||||
|
Reference in New Issue
Block a user