@Mark-Swift In the sensebender sketch I replaced
gw.send(msgTemp.set(temperature,1));
with
if(gw.send(msgTemp.set(temperature,1)))
{
digitalWrite(LED_PIN,LOW);
}
else
{
digitalWrite(LED_PIN,HIGH);
}
LED is OFF if meassages are successfully delivered. LED turns ON if meassage delivery fails and stays ON until a new meassage is successfully delivered.
Note that I use mysensors 1.5 as I did not yet update to mysensors 2.0. In 2.0 gw. is not needed