Fahrenheit #33
Replies: 7 comments 56 replies
-
Hi, thanks for your support! That's a great tip regarding the temp ... I will be updating the docs in the next day or so. and am hoping to add an update to the config later today to add timers, wake sound (can turn on and off from the device) also a few other enhancements and tweaks. I will see if there is a way to implement these so we can add a button in the setting page, if I can't figure it (or anyone else) then I will add your workaround to the docs and also the 12hr as both would be a nice addition. Cheers |
Beta Was this translation helpful? Give feedback.
-
I customized my saver_page to have 12hr time, as well as show a second temperature (note that I'm using sensors from HASS, not the onboard temp sensor).
|
Beta Was this translation helpful? Give feedback.
-
My bad, here's the font definitions I used:
Those are defined under sensors.
|
Beta Was this translation helpful? Give feedback.
-
I added a tweak to it but it's working. I wish I could change the bar beside the humidity to a % but nothing I tried worked. I guess they use the bar for reference to humidity level just seems odd lol |
Beta Was this translation helpful? Give feedback.
-
if % isn't showing still try adding glyphs: '%' to the font you are using for humidity |
Beta Was this translation helpful? Give feedback.
-
Beta Was this translation helpful? Give feedback.
-
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
I searched and didn't find what I was looking for here, so I made my own changes to display the temperature in F and thought I'd post in case anyone else found it useful. I changed my sensor section to this:
I'm not great at things like that, so thanks Reddit :)
And changed this line:
it.printf(160, 180, id(my_fontseg2), light_blue, TextAlign::CENTER, "%.f°C", id(s3temp).state);
to this:
it.printf(160, 180, id(my_fontseg2), light_blue, TextAlign::CENTER, "%.f°F", id(s3temp).state);
It would be nice to have a way to switch from C to F without having to modify the YAML on your own though. Next, I'll figure out 12-hour time, that would also be a nice option to have.
Also, this project is awesome! Thank you so much BigBobbas, I'm really enjoying having this on my Box-3.
Beta Was this translation helpful? Give feedback.
All reactions