- This is a basic integration of Unifi Access in Home Assistant.
- If you have Unifi Access set up with UID this will likely NOT work although some people have reported success using the free version of UID.
- Camera Feeds are currently not offered by the API and therefore NOT supported.
- Unifi Access Hub (UAH) ✅
- Unifi Access Hub (UAH-DOOR) ✅
- Unifi Access Intercom (UA-Intercom) ✅
- Unifi Access G3 Intercom (UA-G3-Intercom) ✅
- Unifi Access Hub Enterprise (UAH-Ent) ✅
- Unifi Gate Hub (UGT) ✅
- Unifi Access Ultra (UA-Ultra) ✅
- Unifi Access Door Mini (UA-Hub-Door-Mini) ✅
- Go to http(s)://{unifi_access_console}/access/settings/system
- Create a new token and pick all permissions (this is IMPORTANT). At the very least pick: Space, Device and System Log.
- Add this repository as a custom repository in HACS and install the integration.
- Restart Home Assistant
- Add new Integration -> Unifi Access
- Enter your Unifi Access controller IP or Hostname (default is
unifiorUDMPRO). No need to enter port or scheme - Enter your API Token that you generated in Unifi Access
- Select
Verify SSL certificateonly if you have a valid SSL certificate. For example: If your Unifi Access API server is behind a reverse proxy. Selecting this will fail otherwise. - Select
Use pollingif your Unifi Access version is < 1.90. Default is to use websockets for instantaneous updates and more features. - It should find all of your doors and add the following entities for each one
- Door Position Sensor (binary_sensor). If you don't have one connected, it will always be off (closed).
- Doorbell Pressed (binary_sensor). Requires Unifi Access Reader Pro G1/G2 otherwise always off. Only appears when Use polling is not selected!
- Door Lock (lock). This will not show up immediately under the device but it should show up after a while. You can unlock (but not lock) a door
- Event entities (
event): Door Event and Doorbell Press. These are only created whenUse pollingis not selected.
- Clone this repository
- Copy the
custom_components/unifi_accessto yourconfig/custom_componentsfolder in Home Assistant. - Restart Home Assistant
- Add new Integration -> Unifi Access
- Enter your Unifi Access controller IP or Hostname (default is
unifiorUDMPRO). No need to enter port - Enter your API Token that you generated in Unifi Access
- Select
Verify SSL certificateonly if you have a valid SSL certificate. For example: If your Unifi Access API server is behind a reverse proxy. Selecting this will fail otherwise. - Select
Use pollingif your Unifi Access version is < 1.90. Default is to use websockets for instantaneous updates and more features. - It should find all of your doors and add the following entities for each one
- Door Position Sensor (binary_sensor). If you don't have one connected, it will always be off (closed).
- Doorbell Pressed (binary_sensor). Requires Unifi Access Reader Pro G1/G2 otherwise always off. Only appears when Use polling is not selected!
- Door Lock (lock). This will not show up immediately under the device but it should show up after a while. You can unlock (but not lock) a door
- Event entities (
event): Door Event and Doorbell Press. These are only created whenUse pollingis not selected.
When websocket mode is enabled (Use polling is not selected), this integration creates two Home Assistant event entities for each door:
Door EventDoorbell Press
One Doorbell Press entity is created per door. It updates when the integration receives a doorbell start or stop event.
unifi_access_doorbell_startunifi_access_doorbell_stop
door_namedoor_idtype
For hardware doorbells, the integration may emit unifi_access_doorbell_stop automatically after a short delay if no explicit stop event is received.
One Door Event entity is created per door. It updates whenever the integration receives an access event for that door.
unifi_access_entryunifi_access_exitunifi_access_access(generic access event when the controller does not provide a clear entry/exit direction)
door_namedoor_idactor# the user tied to the event, when availableauthentication# authentication source reported by the controllermethod# opened method, when provided by the controllertyperesult# examples:ACCESS,BLOCKED,INCOMPLETE
The evacuation (unlock all doors) and lockdown (lock all doors) switches apply to all doors and gates and will sound the alarm no matter which configuration you currently have in your terminal settings. The status will not update currently (known issue).
A thumbnail of when the door is last accessed/locked/unlocked.
The following entities will be created: input_select, input_number and 2 sensor entities (end time and current rule).
You are able to select one of the following rules via the input_select:
- keep_lock: door is locked indefinitely
- keep_unlock: door is unlocked indefinitely
- custom: door is unlocked for a given interval (use the input_number to define how long. Default is 10 minutes).
- reset: clear all lock rules
- lock_early: locks the door if it's currently on an unlock schedule.
- lock_now: locks the door if it's currently on an unlock schedule OR if it's unlocked temporarily via a locking rule.
alias: Unlock Front Gate when motion is detected in Entryway
description: ""
trigger:
- platform: state
entity_id:
- binary_sensor.entryway_motion_detected
condition: []
action:
- service: lock.unlock
data: {}
target:
device_id: xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
mode: singleListen to Unifi Access events and use the event data to send a notification whenever someone accesses a door.
alias: Announce person having opened a Unifi door
description: ""
triggers:
- platform: event
event_type:
- unifi_access_entry
- unifi_access_access
variables:
actor: "{{ trigger.event.data.actor or 'Unknown' }}"
door_name: "{{ trigger.event.data.door_name or 'Unknown' }}"
actions:
- action: notify.mobile_app_my_phone
data:
title: Door opened
message: "{{ actor }} has opened {{ door_name }}."
mode: singleThe Unifi Access API does NOT support door locking at the moment. You probably already have it set to automatically lock after a small delay anyway.
- Go to Settings → Devices & Services → Unifi Access
- Click on the three-dot menu (⋮) on the integration card
- Select Delete
- Restart Home Assistant
- If you installed via HACS you can also uninstall the repository from HACS afterwards
- door code via service
You have likely created a Unifi Protect token and you need to create a Unifi Access token
Please create an issue if you have a feature request and pull requests are always welcome!
