Attract-Mode Support Forum

Attract-Mode Support => Scripting => Topic started by: thejipster on February 10, 2017, 02:44:56 PM

Title: screensaver.nut calling external shell script? Want to force HDMI power off
Post by: thejipster on February 10, 2017, 02:44:56 PM
The screensaver can be configured to "blank" the screen, however it doesn't put the monitor in the sleep low-power mode.
I would like to modify the screensaver.nut file to call a shell program that puts the HDMI interface into lower power mode forcing the monitor to go into power save mode

Is there a way to call a program call "tvservice --off"  , and likewise, the a button is preset, it would call "tvservice -p" to send power back to the HDMI?

Thanks
-J
Title: Re: screensaver.nut calling external shell script? Want to force HDMI power off
Post by: raygun on February 10, 2017, 08:22:08 PM
update your screensaver.nut file to the latest development one and it allows you to do exactly this:

https://github.com/mickelson/attract/blob/master/config/screensaver/screensaver.nut
Title: Re: screensaver.nut calling external shell script? Want to force HDMI power off
Post by: thejipster on February 10, 2017, 11:42:15 PM
For those who have been trying to get tvservices to turn off the monitor and put it into power save mode, use vcgencmd instead.

vcgencmd display_power 0 turns off the screen
vcgencmd display_power 1 turns on the screen

Running it from command line works perfectly, however when the same command is entered within the screensaver config file, it doesn't seem to run.

Update:
Created a short shell script and called it instead.  I am guessing the cmd field in screensaver.nut has problems interpreting command line arguments being passed in.

Example of "tvOFF"
#!/bin/sh
vcgencmd diplay_power 0

Example of "tvON"
#!/bin/sh
vcgencmd display_power1