Skip to content

Commit

Permalink
Support SG on BierBot Bricks (#559)
Browse files Browse the repository at this point in the history
* support SG on BierBot Bricks

If iSpindel transmits SG (and not °P) 1 decimal (1.0, `round(x*10)/10`) is not sufficient.

* updated to 4 decimals (SG=1.0482)

* remove value truncation

* fixing docu

* clang format comment
  • Loading branch information
BernhardSchlegel authored Feb 4, 2022
1 parent aae8e36 commit a66ba1d
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,7 @@ Die Einrichtung mit BierBot Bricks ist einfach und kostenlos. Ihr benötigt hier
3. Dort klickt ihr nun auf den blauen "Add Brick" / "Brick hinzufügen" oben rechts.
4. Wählt den "iSpindel"-Tab im Popup und kopiert den API key in die Zwischenablage.
5. Ruft nun das Konfigurationsportal eurer iSpindel auf (die iSpindel erstellt einen Accesspoint durch mehrmaliges Drücken der Reset-Taste, s. [hier](#portal))
6. Wählt als Service "Bricks (free & easy)" aus (siehe 2 im Bild).
6. Wählt als Service "BierBot Bricks" aus (siehe 2 im Bild).
7. Fügt nun unter "Token/ API key" den API key aus euer Zwischenablage ein und klickt ganz unten auf den blauen Speichern-Button.
8. Geht nun zurück auf [bricks.bierbot.com](https://bricks.bierbot.com/#/) und wählt "Equipment" bzw. "Brauanlagen" auf der linken Seite aus (3 im Bild).
9. Erstellt nun ein neues Gerät (blauber Button rechts oben) vom Typ "**Fermenter**".
Expand Down
2 changes: 1 addition & 1 deletion docs/README_en.md
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ The setup with BierBot Bricks is easy and for free. You will need the iSpindle F
3. Hit the blue "Add Brick" button in the top right corner.
4. Select "iSpindel" in the popup and copy the displayed API key into your clipboard.
5. Now open the configuration portal of your iSpindel (by pressing reset multiple times, see [portal](#portal) for more info).
6. Select "Bricks (free & easy)" as service (see 2 in the image).
6. Select "BierBot Bricks" as service (see 2 in the image).
7. Paste the api key from your clipboard into the "Token/ API key" field and hit the blue save bottom at the bottom.
8. Now go back to [bricks.bierbot.com](https://bricks.bierbot.com/#/) and select "Equipment" in the menu on the left (see 3 in the image).
9. Create a new device (blue button, top right corner), select "**Fermenter**" in the popup.
Expand Down
8 changes: 4 additions & 4 deletions pio/src/iSpindel.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -788,11 +788,11 @@ bool uploadData(uint8_t service)
sender.add("brand", "wemos_d1_mini");
sender.add("version", FIRMWAREVERSION);
sender.add("chipid", chipidHashed);
sender.add("s_number_wort_0", (float)(round(Gravity * 10) / 10));
sender.add("s_number_temp_0", (float)(round(Temperatur * 10) / 10)); // always transmit °C
sender.add("s_number_voltage_0", (float)round(Volt * 100) / 100);
sender.add("s_number_wort_0", Gravity); // gravity can be in SG or °P, depending on user setting
sender.add("s_number_temp_0", Temperatur); // always transmit °C
sender.add("s_number_voltage_0", Volt);
sender.add("s_number_wifi_0", WiFi.RSSI());
sender.add("s_number_tilt_0", (float)(round(Tilt * 100) / 100));
sender.add("s_number_tilt_0", Tilt);

CONSOLELN(F("\ncalling BRICKS"));

Expand Down

0 comments on commit a66ba1d

Please sign in to comment.