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.
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.