Replies: 5 comments 3 replies
-
Oh that looks great! Nice work. And thank you for doing exactly what I set out to achieve. To provide a foundation for people to make it their own, and it looks like you have done exactly that. 🙏 and thank you for sharing how you have done it too. ❤️ Hopefully in time with community feedback and 'Great Tips' such as yours, we can build up a good base of enhancements and awesome features, giving everyone the resources to customise these great little devices... as they are totally underused as 'just a voice assistant' They can be a full on HA control and info display only limited by imagination 😉 Best wishes and keep the ideas flowing. Rob |
Beta Was this translation helpful? Give feedback.
-
Good evening, I found what you did nice. Is the stop alarm button functional? Because I don't see it on the code you provided, thank you. |
Beta Was this translation helpful? Give feedback.
-
The stop alarm button just triggers a script on Home Assistant:
The actual alarm functionality is detailed here: |
Beta Was this translation helpful? Give feedback.
-
The S3 screen is 320 x 240. Figure out the size of the grid you want and the midpoint in each square. The TextAlign::CENTER formatting will put it in the center. Rob has some great info about how to do this and change the icons here: So for the page above, this is the code:
This is a page with a 3x4 grid (and the icons go yellow when on):
|
Beta Was this translation helpful? Give feedback.
-
I have been using HA as an alarm clock — triggering music on the sonos, lights, etc… I wanted to see if I could use the Box3 as my alarm clock. Managed to put this together:
and ‘home page’:
Huge thanks to Rob for the bigbobbas code — I couldn’t have come close to figuring this out without the the hard work and guide he put together. Code below if interested:
Display:
and a few sensors to take in the information from homeassistant:
`text_sensor:
platform: homeassistant
id: calxxx
entity_id: sensor.nextalarm
internal: true
platform: homeassistant
id: alarm_on
entity_id: media_player.roam
internal: true
`
and for the alarm time, I’m pulling that from a calendar in home assistant. I am using a template in HA to convert to text from an array:
{{ "Alarm: " + state_attr('calendar.alarm_mbr','start_time') | as_timestamp() | timestamp_custom('%a %-I:%M %p') }}
Beta Was this translation helpful? Give feedback.
All reactions