Hello!
I'm really new to HA but getting the hang of it.
Just downloaded this add-on (https://github.com/savdagod/TidbytAssistant) to send text to my TIDBYT (digital display).
I was able to make a card to allow me to manually type text in and send it to the device.
`type: custom:notify-card
label: Enter text
card_title: Send a Message!
notification_title: null
action: tidbytassistant.text
data:
message: $MSG
font: tb-8
color: '#fff'
content: $MSG
texttype: scrolling
devicename: devicenamehere
`
Works great!
Within the add-on functionality, you can change the font, text type, and text color.
So far I know I have to use this: For example for font: “{{states(‘input_select.tidbyt_font’)}}” I just don't know where to put this, where to put in the options, how to make it work, etc.
I would like to add 3 drop down menus to allow me to change these settings within this same card. I understand I need to use input select / helpers / template select but I'm unsure how to set it up.
If someone could point me in the right direction that would be awesome. Thanks!