Sorry to bother with a question that is probably to simple for the most of you
I have a new instance of HA, and want to get into Node Red,… just by starting with a little test to turn on and off a light using MQTT sent.
This is what I have in Node Red
The Inject node
The mqtt out
[{"id":"fd828aa0.dcb668","type":"tab","label":"Flow 1","disabled":false,"info":""},{"id":"71e5a6b4.8e77b8","type":"mqtt out","z":"fd828aa0.dcb668","name":"Lamp","topic":"StaandeLamp/POWER","qos":"2","retain":"","broker":"987c4047.b2d81","x":350,"y":180,"wires":[]},{"id":"8bcd7476.4c1b48","type":"inject","z":"fd828aa0.dcb668","name":"","props":[{"p":"payload"}],"repeat":"","crontab":"","once":false,"onceDelay":0.1,"topic":"","payload":"ON","payloadType":"str","x":170,"y":160,"wires":[["71e5a6b4.8e77b8"]]},{"id":"58c47635.25a5c8","type":"inject","z":"fd828aa0.dcb668","name":"","props":[{"p":"payload"}],"repeat":"","crontab":"","once":false,"onceDelay":0.1,"topic":"","payload":"ON","payloadType":"str","x":170,"y":160,"wires":[["f0ff3906.845db8"]]},{"id":"7c82db44.d13874","type":"inject","z":"fd828aa0.dcb668","name":"","props":[{"p":"payload"}],"repeat":"","crontab":"","once":false,"onceDelay":0.1,"topic":"","payload":"OFF","payloadType":"str","x":170,"y":200,"wires":[["71e5a6b4.8e77b8","4923d252.ed8c3c"]]},{"id":"f0ff3906.845db8","type":"debug","z":"fd828aa0.dcb668","name":"","active":true,"tosidebar":true,"console":false,"tostatus":false,"complete":"false","statusVal":"","statusType":"auto","x":450,"y":120,"wires":[]},{"id":"4923d252.ed8c3c","type":"debug","z":"fd828aa0.dcb668","name":"","active":true,"tosidebar":true,"console":false,"tostatus":false,"complete":"false","statusVal":"","statusType":"auto","x":450,"y":240,"wires":[]},{"id":"987c4047.b2d81","type":"mqtt-broker","name":"","broker":"localhost","port":"1883","clientid":"","usetls":false,"compatmode":true,"keepalive":"60","cleansession":true,"birthTopic":"","birthQos":"0","birthPayload":"","closeTopic":"","closePayload":"","willTopic":"","willQos":"0","willPayload":""}]
I assume the topic to use is StaandeLamp/POWER as this is working in de Tasmota console of the light.
When I look at the debug screen I see that the payload ON and OFF are send.
What i’m I missing…?