Good question! For icons, I created a font with several icons to override the regular alphabet. This font applied just only for zone1. You can find a mapping card in wLedFont.h.
You can paint icons whatever you want using this online tool: https://pjrp.github.io/MDParolaFontEditor
Feel free to add new icons and update the existing wLedFont.h in the repository.
I saw this info in the GitHub repo and will create some nice icons .I’ll watch into it tonight and make some pull requests. Is it possible to add all icon on the right ? Just ideas but as I am fascinated by your project I wanna push it
I also saw some nice animations like pqcman somewhere …do you think it’s possible in include those or even planned …don’t abondon this project please I think there’s much more we can do with it
Based on the limitation of supporting hardware types I’m not sure if it’s possible to use this display library with an RGB matrix. Your matrix has many more features than this one.
Unfortunately, I didn’t find your display in the supporting hardware list of display library: https://majicdesigns.github.io/MD_MAX72XX/page_hardware.html
To use this library needs to re-write half of the current project to change logic of communication with the display. I think it should be a new project. Unfortunately, I don’t have this display and I can’t help you with it. You can do it by your self and take from this repo all the logic of working with MQTT for example.
Thank you for sharing a link to aliexpress with this interesting matrix.
How do I on display the time from the home assistant on my Matrix display so I can go there for seconds? Is it possible to give an example of automation?
Thanks
MQTT hasn’t guaranteed delivery time. It means we can’t use this protocol for sending time each second. In this case, seconds will be changed with different delay each time.
But for display time with hours and minutes why not. In this case delay for 2 seconds doesn’t change anything.
I wrote and tested automation with 2 different time format: EU and US (with AM/PM)
---
- alias: wLed MQTT clock
initial_state: 'on'
trigger:
platform: time_pattern
minutes: "/1" # run each 1 minute
action:
- service: mqtt.publish
data:
topic: wled/scrolleffect_without_exit
payload_template: "PA_MESH" # change time effect
- service: mqtt.publish
data:
topic: wled/zone0_text
payload_template: "{{ as_timestamp(now()) | timestamp_custom('%H:%M') }}" # EU time format 23:45
# payload_template: "{{ as_timestamp(now()) | timestamp_custom('%-I:%M %p') }}" # US time format 11:45 PM
Also, it would be nice to once send a clock icon to zone1: publish mqtt to topic wled/zone1_text message c
as a result, you will have this kind of wLed clock:
Any thoughts on how to adjust this to include a timer? I love this project and would use it for messages through MQTT, but as mentioned above MQTT would not be good for a count down timer with seconds.