Batch update touch panel sleep settings
in AMX Hardware
Is there a way to remotely set the touch panel sleep, and wake on motion settings? Either through telnet or send_commands. I'd really rather not walk to each touch panel and change the settings individually.
0
Comments
The only exception to that is for on panel video playback, then I'll add a <1 minute repeating timeline to make sure the panel stays awake while video is showing:
Timeline_Event[TL_PANEL_WAKER] { Stack_Var Integer nTp For(nTp=1;nTp<=Length_Array(dvaTPas);nTp++) { If(nPanelHasVideo[nTp]) { // Watching video here Switch(nVidMatrix[nPanelVidOutput[nTp]]) { Case IN_CABLE: Case IN_KALI: Case IN_ROKU: { Send_Command dvaTPas[nTp],'WAKE' } } } } }