Skip to content

Commit

Permalink
Merge pull request #70 from imhotep/basic_ua_intercom_support
Browse files Browse the repository at this point in the history
adding basic support for UA-Intercom
  • Loading branch information
imhotep authored Sep 2, 2024
2 parents 47dcb05 + 8c717cc commit b6d7ebe
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
# Supported hardware
- Unifi Access Hub (UAH) :white_check_mark:
- Unifi Access Hub (UAH-DOOR) :white_check_mark:
- Unifi Access Intercom (UA-Intercom) :x: (partial/experimental support)
- Unifi Access Hub Enterprise (UAH-Ent) :x: (partial/experimental support)
- Unifi Gate Hub (UGT) :x: (partial/experimental support)
- Unifi Access Ultra :x: (partial/experimental support)
Expand Down
2 changes: 2 additions & 0 deletions custom_components/unifi_access/hub.py
Original file line number Diff line number Diff line change
Expand Up @@ -444,6 +444,8 @@ def _handle_config_update(self, update, device_type):
return self._handle_UAH_config_update(update, device_type)
case "UAH-DOOR":
return self._handle_UAH_config_update(update, device_type)
case "UA-Intercom":
return self._handle_UAH_config_update(update, device_type)
case "UAH-Ent":
return self._handle_UAH_Ent_config_update(update, device_type)
case "UA-ULTRA":
Expand Down
2 changes: 1 addition & 1 deletion custom_components/unifi_access/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@
"requirements": [
"websocket-client==1.8.0"
],
"version": "1.2.3"
"version": "1.2.4"
}

0 comments on commit b6d7ebe

Please sign in to comment.