-
Notifications
You must be signed in to change notification settings - Fork 472
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Aqara/K100] add OTP and notification functions (#1418)
* add OTP and notification functions * remove lock-alarm.yml. * remove tamperAlert capability * add lockAlarm capability file, change antiLockStatus properties and TC codes * uncommented aqara provisioning --------- Co-authored-by: lelandblue <[email protected]>
- Loading branch information
1 parent
8b9edb8
commit 86d503a
Showing
5 changed files
with
100 additions
and
19 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
id: stse.antiLockStatus | ||
version: 1 | ||
status: proposed | ||
name: Anti lock status | ||
ephemeral: false | ||
attributes: | ||
antiLockStatus: | ||
schema: | ||
type: object | ||
properties: | ||
value: | ||
title: Anti-Lock status | ||
type: string | ||
enum: | ||
- "enabled" | ||
- "disabled" | ||
- "unknown" | ||
additionalProperties: false | ||
required: | ||
- value | ||
enumCommands: [] | ||
commands: {} |
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,27 @@ | ||
id: lockAlarm | ||
version: 1 | ||
status: proposed | ||
name: Lock Alarm | ||
ephemeral: false | ||
attributes: | ||
alarm: | ||
schema: | ||
type: object | ||
properties: | ||
value: | ||
type: string | ||
enum: | ||
- clear | ||
- lockFactoryReset | ||
- damaged | ||
- forcedOpeningAttempt | ||
- unableToLockTheDoor | ||
- notClosedForALongTime | ||
- highTemperature | ||
- attemptsExceeded | ||
- physicalImpact | ||
additionalProperties: false | ||
required: | ||
- value | ||
enumCommands: [] | ||
commands: {} |
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
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