Home AMX User Forum NetLinx Studio

How do I Intercept when a wireless panel (8400) goes OFFLINE?

Hi!
I have a system with a 8400 wireless Panel. Sometimes it disconnect from the wireless connection. How can I know if it was online or offline ? There is an event that say me if the panel disconnects?
I need to know it because when the panel disconnects from the wireless connection, it turns off all the channel. So when the panel goes online I need to turn on the channel that are really on. This is a right mode to resolve the problem? thank's a lot
Alex

(sorry for my English)

Comments

  • DHawthorneDHawthorne Posts: 4,584
    There is an offline event handler:
    DATA_EVENT [dvPanel]
    {
        OFFLINE : 
        {
         // Do what you want here when it goes off line
        }
    }
    

    There is also a corresponding ONLINE event handler.
Sign In or Register to comment.