You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Version 1.0 of protocol doesn't support recent corded RTD and switch sensors. I am unable to upload new protocol PDF but you may find it HERE. New sensors add several new MsgType's AND change how temperature is decoded.
I needed MsgType 0x0b (11) which I hacked to be just - also modified "default" case to show specific MsgType:
case 0x0b:
asRTDTemp(decoded, bytes);
break;
default:
decoded.error = 'Unsupported message type '+decoded.MsgType;
I'm using this under CODEC in ChirpStack.
The text was updated successfully, but these errors were encountered:
Version 1.0 of protocol doesn't support recent corded RTD and switch sensors. I am unable to upload new protocol PDF but you may find it HERE. New sensors add several new MsgType's AND change how temperature is decoded.
I needed MsgType 0x0b (11) which I hacked to be just - also modified "default" case to show specific MsgType:
I'm using this under CODEC in ChirpStack.
The text was updated successfully, but these errors were encountered: