bitcanon / visonicalarm

A simple library for the Visonic Alarm API written in Python 3.
MIT License
12 stars 2 forks source link

Implement the get_panels() core API method #12

Closed bitcanon closed 2 years ago

bitcanon commented 2 years ago

Implement the core.py method:

def get_panels(self):
    """ Get a list of panels. """
    # send_get('https://api.server.com/rest_api/9.0/panels')
    raise NotImplementedError()

Also extract the method for use in alarm.py.