You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is it possible with the current state of the LCD implementation (or possible at all with how it is implemented in hardware) to enable both the LED screen and dual layer LCD screen at the same time?
My proposed use case is pretty straightforward:
The watch is sleeping
Some input is fired e.g. second button press, which does nothing in Asteroid atm, or tilt sensor to replace tilt to wake
Turn on the LED screen at a specific brightness, displaying a solid color (or other configurable image etc)
Wait some specified delay
Turn off the LED screen
While niche, this would give users a more viable alternative to tilt to wake or always-on display—specifically, while the LCD in the TicWatch Pro is nice, it is not legible outside of direct light, which really reduces its comfortable usecases. This has led me to keeping tilt to wake enabled even though one of the reasons I settled on the TicWatch Pr for its battery-sipping LCD. help save battery and make the dual layer LCD more legible tilt to wake.
The text was updated successfully, but these errors were encountered:
While it's definitely possible to have such a mode it requires changes to the kernel and launcher. Implementing this in a well structured way is the challenge here.
I've attached a proof of concept to show of your idea. Note: This is a quick and dirty attempt to just check if your feature request is possible to implement.
Here are some of the changes that are definitely required:
kernel: Adjust the nanohub driver to enable 'ambient' mode (lcd) and disable 'ambient' mode.
The simplest method would be to add two new /sys/ entries one enables the LCD while the other turns it off.
asteroid-launcher: Add an overlay that's any kind of color (the 'LCD backlight').
asteroid-launcher: Add input handling to enable this LCD backlight mode.
Consider using a fixed brightness level as a complete black screen causes the brightness to increase to the maximum level due to the ambient light sensor picking up the screen brightness. (Some kind of feedback loop)
Here's a demo of it in action:
20230405_231534.web.mp4
To achieve the above all I had to do is the following:
Use asteroid-qmltester to show a complete white screen using the Rectangle QML component.
Disable automatically switching the LCD by removing:
It's beautiful, thank you. I certainly thought it could be possible and I'm glad it is. This would actually be a feature I think the stock watch did not support with WearOS.
Consider using a fixed brightness level as a complete black screen causes the brightness to increase to the maximum level due to the ambient light sensor picking up the screen brightness. (Some kind of feedback loop)
This is actually why I turned off automatic brightness adjustment. Is that a firmware issue or is this managed in Asteroid? I didn't think to submit an issue for this in particular.
Is it possible with the current state of the LCD implementation (or possible at all with how it is implemented in hardware) to enable both the LED screen and dual layer LCD screen at the same time?
My proposed use case is pretty straightforward:
While niche, this would give users a more viable alternative to tilt to wake or always-on display—specifically, while the LCD in the TicWatch Pro is nice, it is not legible outside of direct light, which really reduces its comfortable usecases. This has led me to keeping tilt to wake enabled even though one of the reasons I settled on the TicWatch Pr for its battery-sipping LCD. help save battery and make the dual layer LCD more legible tilt to wake.
The text was updated successfully, but these errors were encountered: