Nap Button

cruggiero

Member
I have an OmniProII Pro System with PC Access, a 5.7e and 3 other consoles. If someone is taking a nap and the other is going in and out, the consoles beep on each
entry/exit.

I've seen how to disable and enable them through PC Access, but am looking to creat a custom button called "NAP", that when pressed would disable the beeps for 1 hour.

On the lights, I can see how I can set a duration (i.e. how long the light should be on). Is there no duration capability for other items (like beeps, cameras, etc).

If not, could someone let me know how I can set flags to accomplish the same thing?

Thanks.
 
Create a button called "Nap", and a flag called "Nap Timer", then use code such as:

WHEN Nap
THEN Nap Timer ON FOR 1 HOUR

WHEN Nap Timer ON
THEN All Consoles DISABLE BEEPS

WHEN Nap Timer OFF
THEN All Consoles ENABLE BEEPS

The first two events could actually be combined, but I prefer to keep them separate for easier readability unless memory space is an issue.
 
I have an OmniProII Pro System with PC Access, a 5.7e and 3 other consoles. If someone is taking a nap and the other is going in and out, the consoles beep on each
entry/exit.

I've seen how to disable and enable them through PC Access, but am looking to creat a custom button called "NAP", that when pressed would disable the beeps for 1 hour.

On the lights, I can see how I can set a duration (i.e. how long the light should be on). Is there no duration capability for other items (like beeps, cameras, etc).

If not, could someone let me know how I can set flags to accomplish the same thing?

Thanks.

I think you will have to set a flag. Have the button turn on the flag for 60 minutes, and turn off the beepers. When the flag goes off, have that turn the beepers back on. If you get real adventurous like I have, you can build a sensor to detect when someone is in bed and have it do it automatically.
 
Back
Top