Skip to content

Commit

Permalink
extending precision for status gravity
Browse files Browse the repository at this point in the history
  • Loading branch information
universam1 committed Dec 19, 2018
1 parent f2e6271 commit 941e5c8
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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**:<br>1. Alternative pin for OneWire tempearuture sensor DS18B20 now possible. This allows a different PCB schema to use either pin `D1` or `D6`. <br>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. <br>3. Increased battery lifetime of about 20% by reducing the runtime to ~2200ms through various tunings.<br>4. Using *Interrupts* instead of delays to read the Accelerometer, allows significant shorter read intervals <br>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 |
Expand Down
2 changes: 1 addition & 1 deletion pio/lib/Globals/Globals.h
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion pio/lib/WiFiManagerKT/WiFiManagerKT.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -977,7 +977,7 @@ void WiFiManager::handleiSpindel()
page += Volt;
page += F("V</td></tr>");
page += F("<tr><td>Gravity:</td><td>");
page += Gravity;
page += String(Gravity, 3);
page += F("</td></tr>");
page += F("</table></h2>");
page += F("<hr><dl>");
Expand Down

0 comments on commit 941e5c8

Please sign in to comment.