diff --git a/README.md b/README.md index 5ab75b30..4d609dbd 100644 --- a/README.md +++ b/README.md @@ -43,6 +43,7 @@ Check out [IOT DEVICE PULLS ITS WEIGHT IN HOME BREWING](http://hackaday.com/2017 | Date | Note | | :--------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | +| 19.12.2018 | Firmware 6.0.3: Higher precision for gravity displayed in status page | | 24.10.2018 | Firmware 6.0.2: Display issues on MacOS resolved | | 22.08.2018 | **Firmware 6.0.0**:
1. Alternative pin for OneWire tempearuture sensor DS18B20 now possible. This allows a different PCB schema to use either pin `D1` or `D6`.
2. Auto detection of OneWire pin, successfull detected pin will be saved together with a config `save` action. Output of detailed debug information of OneWire Sensor during searches, helping those with hardware issues.
3. Increased battery lifetime of about 20% by reducing the runtime to ~2200ms through various tunings.
4. Using *Interrupts* instead of delays to read the Accelerometer, allows significant shorter read intervals
5. Shorter read cycles allow *more precision*, increased samples from 7 to 39 samples that still fit into the necessary wait state for the Temp sensor! | | 16.08.2018 | Firmware 5.9.1: Fixing Ubidots issue and extending MQTT | diff --git a/pio/lib/Globals/Globals.h b/pio/lib/Globals/Globals.h index 9cf92e01..1f486116 100644 --- a/pio/lib/Globals/Globals.h +++ b/pio/lib/Globals/Globals.h @@ -20,7 +20,7 @@ extern Ticker flasher; // defines go here -#define FIRMWAREVERSION "6.0.2" +#define FIRMWAREVERSION "6.0.3" #define API_FHEM true #define API_UBIDOTS true diff --git a/pio/lib/WiFiManagerKT/WiFiManagerKT.cpp b/pio/lib/WiFiManagerKT/WiFiManagerKT.cpp index 606ba498..10026c7b 100644 --- a/pio/lib/WiFiManagerKT/WiFiManagerKT.cpp +++ b/pio/lib/WiFiManagerKT/WiFiManagerKT.cpp @@ -977,7 +977,7 @@ void WiFiManager::handleiSpindel() page += Volt; page += F("V"); page += F("Gravity:"); - page += Gravity; + page += String(Gravity, 3); page += F(""); page += F(""); page += F("
");