mini corrections

pull/2422/head
dapgo 2023-01-03 11:12:58 +01:00
parent dc78f270ae
commit 07dea734f2
2 changed files with 2 additions and 2 deletions

View File

@ -31,7 +31,7 @@ function getData() {
<tr> <tr>
<th>Month</th> <th>Month</th>
<th>Day</th> <th>Day</th>
<th>Time</th> <th>Time HH:mm</th>
<th>temperature</th> <th>temperature</th>
</tr>`+data.trim().split("\n").map(l=>{ </tr>`+data.trim().split("\n").map(l=>{
l = l.split(";"); l = l.split(";");

View File

@ -20,7 +20,7 @@
v_str_hw="Bat "+E.getBattery()+"%"; v_str_hw="Bat "+E.getBattery()+"%";
v_count++; v_count++;
} }
else if (v_count==3 && v_model.substr(0,6)=='BANGLE') { else if (v_count==3 && process.env.BOARD.substr(0,6)=='BANGLE') {
v_str_hw="Tmp "+E.getTemperature(); v_str_hw="Tmp "+E.getTemperature();
v_count++; v_count++;
} }