Skip to content

Example for controlling Nuki smart lock from the Garmin app #212

Closed Answered by Zlate87
Zlate87 asked this question in Q&A
Discussion options

You must be logged in to vote

I was able to easily achieve this by creating an automation with a manual trigger that opens the door:

alias: Open Door
description: ""
triggers:
  - trigger: event
    event_type: ""
conditions: []
actions:
  - device_id: [THE_DEVICE_ID]
    domain: lock
    entity_id: [THE_ENTITY_ID]
    type: open
mode: single

And then adding the following configuration in the dashboard.json:

 {
    "entity": "automation.[THE_AUTOMATION_NAME]",
    "name": "Open Door",
    "type": "tap",
    "tap_action": {
        "service": "automation.trigger"
    }
}

Later I created a lock toggle automation as well:

alias: Toggle Door
description: ""
triggers:
  - trigger: event
    event_type: ""
    context: {}…

Replies: 1 comment

Comment options

You must be logged in to vote
0 replies
Answer selected by Zlate87
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
1 participant