Merge pull request 'revised for decoder and readme.MD' (#22) from R4 into master
Reviewed-on: https://gitea.yunhorn.com/sundp/WLE5CC_NODE_STS/pulls/22
This commit is contained in:
commit
1aa4499f61
|
@ -5,3 +5,4 @@
|
||||||
|
|
||||||
2024 09 20 START RR
|
2024 09 20 START RR
|
||||||
2024 09 25 START R1D
|
2024 09 25 START R1D
|
||||||
|
2024 09 27 GOOD STS-R4 on single board RM2_1
|
||||||
|
|
|
@ -7,7 +7,21 @@
|
||||||
function Decode(fPort, data, variables) {
|
function Decode(fPort, data, variables) {
|
||||||
var data = {};
|
var data = {};
|
||||||
data.length = bytes.length;
|
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]) {
|
switch (bytes[0]) {
|
||||||
case 0x00:
|
case 0x00:
|
||||||
data.LEDcolor = "Dark";
|
data.LEDcolor = "Dark";
|
||||||
|
@ -303,7 +317,7 @@ function Decode(fPort, data, variables) {
|
||||||
return { "Yunhorn_SmarToilets_data": data };
|
return { "Yunhorn_SmarToilets_data": data };
|
||||||
}
|
}
|
||||||
// Heart Beat
|
// 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 = {};
|
var data = {};
|
||||||
//data.led_state=(bytes[0] & 0x7f) === 0 ? "Off" : "On";
|
//data.led_state=(bytes[0] & 0x7f) === 0 ? "Off" : "On";
|
||||||
data.BoardLED = ((bytes[0] & 0x7F) === 0x01) ? "ON" : "OFF";
|
data.BoardLED = ((bytes[0] & 0x7F) === 0x01) ? "ON" : "OFF";
|
||||||
|
@ -316,8 +330,11 @@ function Decode(fPort, data, variables) {
|
||||||
else if (fPort === 1) {
|
else if (fPort === 1) {
|
||||||
var data = {};
|
var data = {};
|
||||||
data.length = bytes.length;
|
data.length = bytes.length;
|
||||||
|
if ((data.length === 10) && (bytes[0] == 0x59) && (bytes[9] == 0x38)) {
|
||||||
if ((data.length === 4) && (bytes[0] == 0x52) && (bytes[1] = 0x46)) //RFAC
|
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.Request_Performed = "OK";
|
||||||
data.RFAC = "OK";
|
data.RFAC = "OK";
|
||||||
|
@ -351,17 +368,20 @@ function Decode(fPort, data, variables) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
if ((bytes[0] === 0x59) && (bytes[1] === 0x44)) //Duration interval
|
if ((bytes[0] === 0x59) && (bytes[1] === 0x44)) //Duration interval
|
||||||
{
|
{
|
||||||
data.Heart_beat_Duration = (bytes[2] - 0x30) * 10 + (bytes[3] - 0x30);
|
data.Uplink_interval = (bytes[2] - 0x30) * 10 + (bytes[3] - 0x30);
|
||||||
data.Unit = String.fromCharCode(bytes[4]);
|
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
|
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.Heart_Beat_interval = (bytes[2] - 0x30) * 10 + (bytes[3] - 0x30);
|
||||||
data.Unit = String.fromCharCode(bytes[4]);
|
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
|
else if (bytes[0] === 0x43) { // report current nvm config
|
||||||
|
|
Loading…
Reference in New Issue