added receive no answer counter #332

corrected resetPayload in app loop
This commit is contained in:
lumapu 2022-10-11 13:21:29 +02:00
parent 67f99abdfc
commit 7cd075fbad
4 changed files with 23 additions and 15 deletions

View file

@ -67,6 +67,7 @@
function parseStat(obj) {
document.getElementById("stat").innerHTML = "RX success: " + obj["rx_success"]
+ "\nRX fail: " + obj["rx_fail"]
+ "\nRX no anwser: " + obj["rx_fail_answer"]
+ "\nFrames received: " + obj["frame_cnt"]
+ "\nTX Cnt: " + obj["tx_cnt"];
}