diff --git a/README.md b/README.md index f8198a6..1d1d489 100644 --- a/README.md +++ b/README.md @@ -63,7 +63,7 @@ async def main() -> None: # Return only locks devices: devices = myq.locks # >>> {"serial_number123": } - + # Return only gateway devices: devices = myq.gateways # >>> {"serial_number123": } @@ -118,6 +118,7 @@ asyncio.get_event_loop().run_until_complete(main()) - `parent_device_id`: Return the device ID (serial number) of this device's parent. - `state`: Return the current state of the device. - `state_update`: Returns datetime when device was last updated +- `low_battery`: Returns if the garage has a low battery or not. ## API Methods diff --git a/pymyq/__version__.py b/pymyq/__version__.py index c94a63e..b40ac6a 100644 --- a/pymyq/__version__.py +++ b/pymyq/__version__.py @@ -1,2 +1,2 @@ """Define a version constant.""" -__version__ = "3.1.5" +__version__ = "3.1.6"