Good evening,
I need some help to get my RFXCom running with node-red-contrib-rfxcom 2.12.1
The RFXCom is connected via USB and when I consult dmesg it looks fine:
[1468387.729015] usb 1-1.4: New USB device strings: Mfr=1, Product=2, SerialN umber=3
[1468387.729031] usb 1-1.4: Product: RFXtrx433
[1468387.729046] usb 1-1.4: Manufacturer: RFXCOM
[1468387.729059] usb 1-1.4: SerialNumber: A1XSS5RN
[1468387.738289] ftdi_sio 1-1.4:1.0: FTDI USB Serial Device converter detecte d
[1468387.738504] usb 1-1.4: Detected FT232R
[1468387.742810] usb 1-1.4: FTDI USB Serial Device converter now attached to ttyUSB0
The installation of node-red-contrib-rfxcom 2.12.1 was no problem, several nodes were added to my pallet and the example flow shows status OK "connected"
I made this testflow which must switch a lighting4 power outlet, but nothing receives in the debug message pane if I use the original remote control or the inject node.
[
{
"id": "2102b3c0f170f212",
"type": "debug",
"z": "4d7c33f038b29c9a",
"name": "debug 8",
"active": true,
"tosidebar": true,
"console": false,
"tostatus": false,
"complete": "true",
"targetType": "full",
"statusVal": "",
"statusType": "auto",
"x": 960,
"y": 660,
"wires": []
},
{
"id": "6f781a1204eb1e7a",
"type": "inject",
"z": "4d7c33f038b29c9a",
"name": "",
"props": [
{
"p": "topic",
"vt": "str"
}
],
"repeat": "",
"crontab": "",
"once": false,
"onceDelay": 0.1,
"topic": "PT2262/",
"x": 780,
"y": 760,
"wires": [
[
"e800bf6fa9334f20"
]
]
},
{
"id": "0e133b1eac984adb",
"type": "rfx-PT2262-in",
"z": "4d7c33f038b29c9a",
"name": "",
"port": "dc1031e4.23efd",
"deviceList": "b89e4b235c49c0f7",
"topicSource": "all",
"topic": "PT2262/0913000E11A80F012970",
"x": 780,
"y": 660,
"wires": [
[
"2102b3c0f170f212"
]
]
},
{
"id": "e800bf6fa9334f20",
"type": "rfx-PT2262-out",
"z": "4d7c33f038b29c9a",
"name": "",
"port": "dc1031e4.23efd",
"deviceList": "b89e4b235c49c0f7",
"topicSource": "msg",
"retransmit": "none",
"retransmitInterval": 20,
"topic": "",
"x": 990,
"y": 760,
"wires": []
},
{
"id": "dc1031e4.23efd",
"type": "rfxtrx-port",
"port": "/dev/ttyUSB0",
"enableDebug": true,
"rfyVenetianMode": "EU"
},
{
"id": "b89e4b235c49c0f7",
"type": "PT2262-device-list",
"name": "Radiator",
"devices": [
{
"device": [
"PT2262",
"radiator",
"Off"
],
"payload": "0001 0001 1010 1000 0000 1101",
"rawData": "0x11a80c",
"pulseWidth": 292
},
{
"device": [
"PT2262",
"radiator",
"On"
],
"payload": "0001 0001 1010 1000 0000 1110",
"rawData": "0x11a80d",
"pulseWidth": 294
}
]
}
]