I'm looking for a solution to wake up my LCD TV.
With the xset
command I'm able to put the TV in different power saving modes:
xset dpms force standby
xset dpms 0 30 60
0 = standby
30 sec = suspend
60 sec = off
I need a solution to wake the TV up from these mode. So far with the:
xset dpms force on
I'm not able to do wake it up.
I want the TV to switch on 07.00 every morning and off 17.00 as a cron job.
These are my default values. Values so that the PI keeps the X window up 24/7:
/etc/X11/xorg.conf
Section "Monitor"
Identifier "Monitor"
Option "DPMS" "false"
EndSection
Section "ServerLayout"
Identifier "ServerLayout0"
Option "BlankTime" "0"
Option "StandbyTime" "0"
Option "SuspendTime" "0"
Option "OffTime" "0"
EndSection