Skip to content

Commit b6d7ebe

Browse files
authored
Merge pull request #70 from imhotep/basic_ua_intercom_support
adding basic support for UA-Intercom
2 parents 47dcb05 + 8c717cc commit b6d7ebe

File tree

3 files changed

+4
-1
lines changed

3 files changed

+4
-1
lines changed

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
# Supported hardware
88
- Unifi Access Hub (UAH) :white_check_mark:
99
- Unifi Access Hub (UAH-DOOR) :white_check_mark:
10+
- Unifi Access Intercom (UA-Intercom) :x: (partial/experimental support)
1011
- Unifi Access Hub Enterprise (UAH-Ent) :x: (partial/experimental support)
1112
- Unifi Gate Hub (UGT) :x: (partial/experimental support)
1213
- Unifi Access Ultra :x: (partial/experimental support)

custom_components/unifi_access/hub.py

+2
Original file line numberDiff line numberDiff line change
@@ -444,6 +444,8 @@ def _handle_config_update(self, update, device_type):
444444
return self._handle_UAH_config_update(update, device_type)
445445
case "UAH-DOOR":
446446
return self._handle_UAH_config_update(update, device_type)
447+
case "UA-Intercom":
448+
return self._handle_UAH_config_update(update, device_type)
447449
case "UAH-Ent":
448450
return self._handle_UAH_Ent_config_update(update, device_type)
449451
case "UA-ULTRA":

custom_components/unifi_access/manifest.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,5 @@
1212
"requirements": [
1313
"websocket-client==1.8.0"
1414
],
15-
"version": "1.2.3"
15+
"version": "1.2.4"
1616
}

0 commit comments

Comments
 (0)