hmm... thanks but actually I am looking for a timer which listen to the IR channel. If there is nothing going out to that IR channel for serveral time (let's say 10 minutes). The system will go to the sleep mode. And at that moment I 'll send the power IR code to wake him up.
hmm... thanks but actually I am looking for a timer which listen to the IR channel. If there is nothing going out to that IR channel for serveral time (let's say 10 minutes). The system will go to the sleep mode. And at that moment I 'll send the power IR code to wake him up.
Filter all your IR to this device through a function or CALL. Create a repeating timeline that runs for ten minutes, and on terminus sends your wake-up pulse. Start the timeline when the device turns on, and kill it when it goes off. Whenever an IR command is passed through your function, reset the timeline to zero. If the wakeup pulse doesn't affect operations in any way, you could skip the function part, and just use the repeating timeline to wake it up every ten minutes. You would still want to start and stop the timeline depending when the device is actually in use, because you probably don't want it awake when it is truly idle.
You could use Channel_Event[dv,0] to monitor if an IR code gets sent out and start the timeline everytime the On event fires. You'd have to kill the timeline if it was already running first as well.
Comments
you will need something like the AMX VSS2 for sensing the presence of video from the DVD player.
see here ... http://www.amx.com/products/VSS2.asp
not sure how the price compares to simply getting a better DVD
Filter all your IR to this device through a function or CALL. Create a repeating timeline that runs for ten minutes, and on terminus sends your wake-up pulse. Start the timeline when the device turns on, and kill it when it goes off. Whenever an IR command is passed through your function, reset the timeline to zero. If the wakeup pulse doesn't affect operations in any way, you could skip the function part, and just use the repeating timeline to wake it up every ten minutes. You would still want to start and stop the timeline depending when the device is actually in use, because you probably don't want it awake when it is truly idle.