-
Notifications
You must be signed in to change notification settings - Fork 469
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into new-device-zemismart-ZM606-6
- Loading branch information
Showing
223 changed files
with
11,029 additions
and
674 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
133 changes: 133 additions & 0 deletions
133
drivers/Aqara/aqara-lock/capabilities/lockCredentialInfo.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,133 @@ | ||
id: stse.lockCredentialInfo | ||
version: 1 | ||
status: proposed | ||
name: Lock Credential Info | ||
ephemeral: false | ||
attributes: | ||
credentialInfo: | ||
schema: | ||
type: object | ||
properties: | ||
value: | ||
type: array | ||
items: | ||
title: Credential info | ||
type: object | ||
additionalProperties: false | ||
properties: | ||
credentialId: | ||
type: integer | ||
minimum: 0 | ||
credentialType: | ||
type: string | ||
enum: | ||
- keypad | ||
- rfid | ||
- fingerprint | ||
userId: | ||
type: string | ||
maxLength: 255 | ||
userLabel: | ||
type: string | ||
maxLength: 255 | ||
userType: | ||
type: string | ||
enum: | ||
- unknown | ||
- administrator | ||
- regularUser | ||
- frequentVisitors | ||
- host | ||
required: | ||
- credentialId | ||
- credentialType | ||
- userId | ||
- userLabel | ||
- userType | ||
additionalProperties: false | ||
required: | ||
- value | ||
enumCommands: [] | ||
commands: | ||
syncAll: | ||
name: syncAll | ||
arguments: | ||
- name: credentialInfo | ||
optional: false | ||
schema: | ||
title: Credential info | ||
type: array | ||
items: | ||
properties: | ||
credentialId: | ||
type: integer | ||
minimum: 0 | ||
credentialType: | ||
type: string | ||
enum: | ||
- keypad | ||
- rfid | ||
- fingerprint | ||
userId: | ||
type: string | ||
maxLength: 255 | ||
userLabel: | ||
type: string | ||
maxLength: 255 | ||
userType: | ||
type: string | ||
enum: | ||
- unknown | ||
- administrator | ||
- regularUser | ||
- frequentVisitors | ||
- host | ||
upsert: | ||
name: upsert | ||
arguments: | ||
- name: credentialInfo | ||
optional: false | ||
schema: | ||
title: Credential info | ||
type: array | ||
items: | ||
properties: | ||
credentialId: | ||
type: integer | ||
minimum: 0 | ||
credentialType: | ||
type: string | ||
enum: | ||
- keypad | ||
- rfid | ||
- fingerprint | ||
userId: | ||
type: string | ||
maxLength: 255 | ||
userLabel: | ||
type: string | ||
maxLength: 255 | ||
userType: | ||
type: string | ||
enum: | ||
- unknown | ||
- administrator | ||
- regularUser | ||
- frequentVisitors | ||
- host | ||
deleteUser: | ||
name: deleteUser | ||
arguments: | ||
- name: userId | ||
optional: false | ||
schema: | ||
type: integer | ||
minimum: 0 | ||
deleteCredential: | ||
name: deleteCredential | ||
arguments: | ||
- name: credentialId | ||
optional: false | ||
schema: | ||
type: integer | ||
minimum: 0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
name: 'Aqara Lock' | ||
packageKey: 'aqara-lock' | ||
permissions: | ||
aqara_provisioning: {} | ||
zigbee: {} | ||
description: "SmartThings driver for Aqara Doorlock" | ||
vendorSupportInformation: "https://www.aqara.com/en/support/" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
zigbeeManufacturer: | ||
- id: "LUMI/aqara.lock.akr011" | ||
deviceLabel: "Aqara Doorlock K100" | ||
manufacturer: Lumi | ||
model: aqara.lock.akr011 | ||
deviceProfileName: aqara-lock-battery |
10 changes: 10 additions & 0 deletions
10
drivers/Aqara/aqara-lock/presentation/lockCredentialInfo.presentation.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
{ | ||
"dashboard": { | ||
"states": [], | ||
"actions": [], | ||
"basicPlus": [] | ||
}, | ||
"id": "stse.lockCredentialInfo", | ||
"version": 1 | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
name: aqara-lock-battery | ||
components: | ||
- id: main | ||
capabilities: | ||
- id: lock | ||
version: 1 | ||
- id: battery | ||
version: 1 | ||
- id: tamperAlert | ||
version: 1 | ||
- id: remoteControlStatus | ||
version: 1 | ||
- id: firmwareUpdate | ||
version: 1 | ||
- id: stse.lockCredentialInfo | ||
version: 1 | ||
categories: | ||
- name: SmartLock | ||
metadata: | ||
mnmn: "SolutionsEngineering" | ||
vid: "SmartThings-smartthings-Aqara_K100" |
Oops, something went wrong.