Hello I would like to know if you can connect an lcd to the gateway, print in the lcd the value of a sensor connected to a node so that both the value on the domoticz lcd controller and the lcd. Do you give me an example? thank you all
@gohan I live in Switzerland, but perhaps my place has more humidity than normal.
It's not silly problems we're working on, we're learning all the time!
After filding around a lot with the MySensor2.0 lib and spending my whole weekend, when I could not get things going I finally switched back to MySensors1.5.4. After that I made quick progress and my node was on network. Here is the link below of a working Dimmer node.
MySensors AC 220v Dimmer with Domoticz – 01:42— S Kumar
I had to get domoticz beta version to get scene/group available, can't remember what version I had previously.
Anyway group is exactly what I wanted ....
@esfnl said in RPi 3 with Domoticz and RF-link (RFXcom) 'TSP-fail':
MySensors is supported
MySensors is supported if you connect an NRF24 to the RFXCom as instructed in the link, did you ?
As explained, it can only receive information, so as you seem to have no gateway to assign node ID you will need to define your nodes as passive nodes and hard code node id :
#define MY_PASSIVE_NODE
#define MY_NODE_ID 2
#define MY_PARENT_NODE_IS_STATIC
#define MY_PARENT_NODE_ID 0
To summarize:
I have the serial gateway now attached to the RaspberryPi which is running domoticz (Beta 2.2339) and it detected the humidity node right away. Both are compiled using the Master branch. I have 4.7uF capacitors between VCC and ground, but not sure if I actually need them. I just pulled them out and it still works flawlessly. Distance is only 20cm though since it is all on my desk. The arduinos I use are Buono UNO clones which have more amp output on the 3.3V rail (200ma).
If I try to use the serial gateway from the dev branch, I need to do one fix to get it compiled:
//MySigningNone signer;
// Construct MySensors library
MySensor gw(radio);//, signer);
Otherwise it complains (Using MacOS Arduino 1.6.1). But running that code yields no results. The gateway receives (some) messages from the Humidity node but on the Humidity node all messages fail to get ACKs.
I do not know why that is. As I said, I am completely new to mysensors, so I did not have time to look deeper into the code yet.
Shall I open another thread in Troubleshooting? This is not really related to the Domiticz setup anymore...
Do some debug on the node and on gateway and check if data is actually sent from the node and received by gateway. Also use wait instead of sleep if you are using it as a repeater and relay actuator.