From bde02feb1b2c8170503c52fdb966dccbc54f52de Mon Sep 17 00:00:00 2001 From: YunHorn Technology Date: Fri, 27 Sep 2024 13:08:48 +0800 Subject: [PATCH] revised for decoder and readme.MD --- README.md | 1 + hk_as923_decoder.js | 38 +++++++++++++++++++++++++++++--------- 2 files changed, 30 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index e24d51a..049426a 100644 --- a/README.md +++ b/README.md @@ -5,3 +5,4 @@ 2024 09 20 START RR 2024 09 25 START R1D + 2024 09 27 GOOD STS-R4 on single board RM2_1 diff --git a/hk_as923_decoder.js b/hk_as923_decoder.js index 2e2333b..2af81f3 100644 --- a/hk_as923_decoder.js +++ b/hk_as923_decoder.js @@ -7,7 +7,21 @@ function Decode(fPort, data, variables) { var data = {}; data.length = bytes.length; - if ((fPort === 10)) { // STS_O2_O6 V3 version 2023,pixel-network version + // R4 soap/sanitizer sensor + if (fPort === 7) { + data.length = bytes.length; + data.led_state = bytes[0] == 0x0 ? "Off" : "On"; + data.mtm_code_1 = bytes[1]; + data.mtm_code_2 = bytes[2]; + data.hw_code = bytes[3]; + data.battery_level = bytes[4] + "%"; + data.size_value = bytes[5]; + data.measure_tech = (bytes[6] === 0) ? "Capacitive" : "Other"; + data.liquid_level_event = (bytes[7] === 0x1) ? "Liquid Detected" : "No Liquid"; + + return { "Yunhorn_SmarToilets_data": data }; + } + else if ((fPort === 10)) { // STS_O2_O6 V3 version 2023,pixel-network version switch (bytes[0]) { case 0x00: data.LEDcolor = "Dark"; @@ -303,7 +317,7 @@ function Decode(fPort, data, variables) { return { "Yunhorn_SmarToilets_data": data }; } // Heart Beat - else if ((fPort === 12) || (fPort === 20) || (fPort === 18) || (fPort === 5) || (fPort === 107) || (fPort === 58)) { + else if ((fPort === 8) || (fPort === 12) || (fPort === 20) || (fPort === 18) || (fPort === 5) || (fPort === 107) || (fPort === 58)) { var data = {}; //data.led_state=(bytes[0] & 0x7f) === 0 ? "Off" : "On"; data.BoardLED = ((bytes[0] & 0x7F) === 0x01) ? "ON" : "OFF"; @@ -316,8 +330,11 @@ function Decode(fPort, data, variables) { else if (fPort === 1) { var data = {}; data.length = bytes.length; - - if ((data.length === 4) && (bytes[0] == 0x52) && (bytes[1] = 0x46)) //RFAC + if ((data.length === 10) && (bytes[0] == 0x59) && (bytes[9] == 0x38)) { + data.Yunhorn_PRD = "True"; + data.PRD_String = String.fromCharCode(bytes); + } + else if ((data.length === 4) && (bytes[0] == 0x52) && (bytes[1] == 0x46)) //RFAC { data.Request_Performed = "OK"; data.RFAC = "OK"; @@ -351,17 +368,20 @@ function Decode(fPort, data, variables) { } } - if ((bytes[0] === 0x59) && (bytes[1] === 0x44)) //Duration interval { - data.Heart_beat_Duration = (bytes[2] - 0x30) * 10 + (bytes[3] - 0x30); - data.Unit = String.fromCharCode(bytes[4]); + data.Uplink_interval = (bytes[2] - 0x30) * 10 + (bytes[3] - 0x30); + data.Uplink_interval_unit = String.fromCharCode(bytes[4]); + //data.Heart_beat_Duration = (bytes[2]-0x30)*10 + (bytes[3]-0x30); + //data.Unit = String.fromCharCode(bytes[4]); } else if ((bytes[0] === 0x59) && (bytes[1] === 0x53)) //Sampling interval or Heart-beat interval { - data.Wakeup_sampling_interval = (bytes[2] - 0x30) * 10 + (bytes[3] - 0x30); - data.Unit = String.fromCharCode(bytes[4]); + data.Heart_Beat_interval = (bytes[2] - 0x30) * 10 + (bytes[3] - 0x30); + data.Heart_Beat_interval_unit = String.fromCharCode(bytes[4]); + //data.Wakeup_sampling_interval = (bytes[2]-0x30)*10 + (bytes[3]-0x30); + //data.Unit = String.fromCharCode(bytes[4]); } else if (bytes[0] === 0x43) { // report current nvm config