Hi all,
I’m new to Home Assistant - but have already made a lot of great improvements.
However - i struggle a bit with some of the fundamentals.
A thing I’ve tried to figure out for quite a while, is the possibility to send text to node-red (for announcements). I’m using the “custom:text-input-row” combined with MQTT - as I use it for other purposes.
My lovelace info looks as this:
type: entities
entities:
- entity: input_text.announcement_text
type: 'custom:text-input-row'
- type: call-service
name: ' '
icon: 'mdi:voice'
action_name: Annoncér det!
service: mqtt.publish
service_data:
payload: input_text.announcement_text
qos: 0
retain: 0
topic: announce_test
The thing I cant figure out, is how to get the “input_text.announcement_text” to the payload line?
Can anyone help?