It shouldn’t stop and restart - there is something wrong you will need to determine what is wrong - usually by adding the serial monitor and checking the output. I would guess at the WDT or a memory problem.
There aren’t any effects see my reply above, you need to create some automations of the type …
- alias: Send a templated input_text msg to the Sign Line 0
initial_state: 'on'
trigger:
- platform: state
entity_id: input_boolean.mqttsign_line0
to: 'on'
- platform: time_pattern
minutes: '/10'
action:
- service: mqtt.publish
data:
topic: 'cmnd/MQTTSign/MSG0'
payload_template: 'The Current Bitcoin Price is {{ states.sensor.market_price.state }} USD'
- service: input_text.set_value
data_template:
entity_id: input_text.text0
value: 'The Current Bitcoin Price is {{ states.sensor.market_price.state }} USD'
- alias: Turn Off templated input_text msg to the Sign Line 0
initial_state: 'on'
trigger:
- platform: state
entity_id: input_boolean.mqttsign_line0
to: 'off'
action:
- service: mqtt.publish
data:
topic: 'cmnd/MQTTSign/MSG0'
payload: ''
#############################################################