Hi,

Not sure if you got your ideas sorted or not but ive just been tru the same process and i came up with these solutions to my problems, hopefuly you or someone else can find them usefull.

"UP": { notificationExec: { notification: "CAROUSEL_GOTO", payload: 4, } }, "DOWN": { notificationExec: { notification: "CAROUSEL_GOTO", payload: 5, } }, "LEFT": { notificationExec: { notification: "CAROUSEL_PREVIOUS", payload: null, } }, "RIGHT": { notificationExec: { notification: "CAROUSEL_NEXT", payload: null, } },

I use MONITORON and MONITOROFF for the onIdle and onDetected

onIdle: { // shellExec: "vcgencmd display_power 0", notificationExec: { notification: "REMOTE_ACTION", payload: { action: "MONITOROFF", }, } }, onDetected: { // shellExec: "vcgencmd display_power 1", notificationExec: { notification: "REMOTE_ACTION", payload: { action: "MONITORON", }, } },

i also found that if i use MONITOROFF then the shellExec: "vcgencmd display_power 1" command will not work.

Richie