Two gateways and nodes
-
Hi All,
having two gateways and multiple nodes (with sensors) how to link node A to gateway 1 and node B to gateway 2, i.e.?
Thx in advance for any help.
-
@pw44 use different radio channels. Based on your earlier posts, you use nrf24 radios. Add
#define MY_RF24_CHANNEL (x)
to the sketch of gateway 2 and node B, before including MySensors.h where x is the channel number you want to use. Documentation: https://www.mysensors.org/apidocs/group__RF24SettingGrpPub.html#gafb356a7718f74a37f2081fb636dfacd2
The default setting is 76, so use something else for your second MySensors network.
-
@mfalkvidd Thx for the reply. It makes sense.