Skip to content

Commit

Permalink
v2.2-beta6
Browse files Browse the repository at this point in the history
  • Loading branch information
arjenhiemstra committed Feb 27, 2021
1 parent 3aca017 commit a0c5c4e
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 3 deletions.
Binary file modified compiled_firmware_files/hardware_rev_1/nrgitho-hw1-v2.2-beta6.bin
Binary file not shown.
Binary file not shown.
Binary file not shown.
6 changes: 3 additions & 3 deletions software/NRG_itho_wifi/04_JS_UI.ino
Original file line number Diff line number Diff line change
Expand Up @@ -156,13 +156,13 @@ function startWebsock(websocketServerLocation){
else if (f.rflog) {
let x = f.rflog;
$('#rflog_outer').removeClass('hidden');
$('#rflog').append(x.message + '<br>');
$('#rflog').scrollTop($('#rflog').height());
var d = new Date();
$('#rflog').prepend(d.toISOString() + ': ' + x.message + '<br>');
}
else if (f.ota) {
let x = f.ota;
$('#updateprg').html('Firmware update progress: ' + x.percent + '%');
moveBar(x.percent, "updateBar");
moveBar(x.percent, "updateBar");
}
};
websock.onopen = function(a) {
Expand Down

0 comments on commit a0c5c4e

Please sign in to comment.