Thanks for clarifying, @mfalkvidd, so that means that I won't use the Ethernet GW, but only the MQTT GW configuration, changing it to
./configure --my-gateway=mqtt --my-controller-ip-address=192.168.X.BB --my-transport=rfm69 --my-rfm69-frequency=433 --my-is-rfm69hw --my-mqtt-publish-topic-prefix=mysensors-out --my-mqtt-subscribe-topic-prefix=mysensors-in --my-mqtt-client-id=mymqttgateway1
Where <MQTT / MySensors GW IP address> is the MySensors RPI IP address.
But that also means that in Home-Assistant I will need to change the configuration yaml file and take out the Ethernet GW reference:
So from
mysensors:
gateways:
- device: '192.168.X.BB'
persistence_file: 'mysensors3.json'
tcp_port: 5003
- device: mqtt
persistence_file: 'mysensors1.json'
topic_in_prefix: 'mysensors-out'
topic_out_prefix: 'mysensors-in'
optimistic: false
persistence: true
retain: true
version: '2.0'
to
mysensors:
gateways:
- device: mqtt
persistence_file: 'mysensors1.json'
topic_in_prefix: 'mysensors-out'
topic_out_prefix: 'mysensors-in'
optimistic: false
persistence: true
retain: true
version: '2.0'
But how will Home-Assistant now know what the IP address is for the MySensors RPI gateway?
Apologies if I completely missing something obvious....