How to sleep TS050 on linux(ubuntu)

I know some HDMI devices have CEC features. But how about TS050? I want to sleep and wakeup screen by S/W controlling (with sh scripts or programming)
The system itself will be activating even under dark screen. I just want to turn off/on the screen itself in some sw condition.

1 Like

Maybe you can try this:

Disable:

$ echo 0 | sudo tee  /sys/class/lcd/enable

Enable:

$ echo 7 | sudo tee  /sys/class/lcd/enable
4 Likes