The reason I didn’t put it back in is that you won’t have a panel long enough to read the text if scrolling left to right and the same goes for any that use vertical scrolling. Unless your text is only a couple of words long it doesn’t work.
Just wanted to know where you got the code for turning the led matrix on and off via mqtt? Is it simple to change and add ? I have a esp8266 project and have connected led strips which I would like to turn on and off (led strips) via mqtt.
Thank you very much now i did it finaly Damn dupont cables :(…
Can i ask someone the display now works it displays intro message for abbout 20s then stops and restarts. Is this normal behaviour?
Than one other I can dimm the display, set speed, but cannot determine effects how to display message payload send from before doesnt work?
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: ''
#############################################################