Skip to content

Commit 7b25a16

Browse files
committed
Label
1 parent 690d124 commit 7b25a16

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ This controller has a built-in webserver which allows you to configure the contr
115115
**Daikin EEPROM Writes**. Every time you send **Write Command** through the web interface or a command via UDP, settings of the main Daikin controller (= controller on your heat pump) change and new values are written to its internal EEPROM. **<ins>Your main Daikin controller's EEPROM has a limited number of writes, so keep an eye on this counter in order to prevent EEPROM wear! It is adviced to do max 7000 writes per year (19 writes/day on average)</ins>**.
116116
* **Stats since ...**. Date and time since when **Daikin EEPROM Writes** are recorded. If you significantly change the date on the heat pump, reset the stats (so that **Average per Day** is calculated properly).
117117
* **Total Commands**. Total number of writes made by this Arduino controller since the date and time recorded in **Stats since ...**.
118-
* **Average per Day**. Daily average EEPROM writes, should be bellow 19. Calculated from internal date of the heat pump, so if you change the date in heat pump settings, it is recommended to reset the Daikin EEPROM Writes counter.
118+
* **Daily Average**. Daily average EEPROM writes, should be bellow 19. Calculated from internal date of the heat pump, so if you change the date in heat pump settings, it is recommended to reset the Daikin EEPROM Writes counter.
119119
* **Yesterday**. Number of writes made yesterday, updated at midnight. Should not significantly exceed average writes per day.
120120
* **Today**. Number of writes made today / out of daily **EEPROM Write Quota**. If you reach the quota and you really need more, you can temporarily (!) increase it in the **P1P2 Settings**
121121

arduino-altherma-controller/05-pages.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -693,7 +693,7 @@ void jsonVal(ChunkedPrint &chunked, const byte JSONKEY) {
693693
chunked.print(data.eepromDaikin.total);
694694
chunked.print(F(" Total Commands<br>"));
695695
chunked.print((uint16_t)(data.eepromDaikin.total / (days(date) - days(data.eepromDaikin.date) + 1)));
696-
chunked.print(F(" Average per Day (should be bellow 19)<br>"));
696+
chunked.print(F(" Daily Average (should be bellow 19)<br>"));
697697
chunked.print(data.eepromDaikin.yesterday);
698698
chunked.print(F(" Yesterday<br>"));
699699
chunked.print(data.eepromDaikin.today);

0 commit comments

Comments
 (0)