firmware - cosmetic changes
This commit is contained in:
parent
33231851fe
commit
d1d0fc494b
1 changed files with 4 additions and 4 deletions
|
@ -377,7 +377,7 @@ void WEBroot() {
|
|||
body += "<b>Grow started: 🗓️</b> ";
|
||||
body += returnStrDateFromEpoch(GrowStart);
|
||||
body += "<br>\n";
|
||||
body += "<b>Grow end (est.): 🗓️ </b> ";
|
||||
body += "<b>Harvest date (est.): 🍂 </b> ";
|
||||
body += returnStrDateFromEpoch(GrowStart + (60 * 60 * 24 * (DaysVeg + DaysVeg) ) );
|
||||
body += "<br>\n";
|
||||
body += "<b>Day of Grow: </b> ";
|
||||
|
@ -391,15 +391,15 @@ void WEBroot() {
|
|||
body += "<b>Grow status:</b> ";
|
||||
switch(growState()) {
|
||||
case 1:
|
||||
body += "🌱 vegetation<br>\n";
|
||||
body += "🌱 Vegetation<br>\n";
|
||||
break;
|
||||
case 2:
|
||||
body += "🌼 bloom (";
|
||||
body += "🌼 Bloom (";
|
||||
body += DayOfGrow - DaysVeg;
|
||||
body += ")<br>\n";
|
||||
break;
|
||||
case 3:
|
||||
body += "🍂 harvest (";
|
||||
body += "🍂 Harvest (";
|
||||
body += DayOfGrow - (DaysVeg + DaysBloom);
|
||||
body += ")<br>\n";
|
||||
break;
|
||||
|
|
Loading…
Reference in a new issue