Skip to content
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,9 @@ components:
- id: lockSchedules
version: 1
optional: true
- id: lockAliro
version: 1
optional: true
- id: battery
version: 1
optional: true
Expand Down
3 changes: 3 additions & 0 deletions drivers/SmartThings/matter-lock/profiles/lock-modular.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,9 @@ components:
- id: lockSchedules
version: 1
optional: true
- id: lockAliro
version: 1
optional: true
- id: battery
version: 1
optional: true
Expand Down
12 changes: 11 additions & 1 deletion drivers/SmartThings/matter-lock/src/lock_utils.lua
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,17 @@ local lock_utils = {
SCHEDULE_END_HOUR = "scheduleEndHour",
SCHEDULE_END_MINUTE = "scheduleEndMinute",
SCHEDULE_LOCAL_START_TIME = "scheduleLocalStartTime",
SCHEDULE_LOCAL_END_TIME = "scheduleLocalEndTime"
SCHEDULE_LOCAL_END_TIME = "scheduleLocalEndTime",
VERIFICATION_KEY = "verificationKey",
GROUP_ID = "groupId",
GROUP_RESOLVING_KEY = "groupResolvingKey",
ISSUER_KEY = "issuerKey",
ISSUER_KEY_INDEX = "issuerKeyIndex",
ENDPOINT_KEY = "endpointKey",
ENDPOINT_KEY_INDEX = "endpointKeyIndex",
ENDPOINT_KEY_TYPE = "endpointKeyType",
DEVICE_KEY_ID = "deviceKeyId",
COMMAND_REQUEST_ID = "commandRequestId"
}
local capabilities = require "st.capabilities"
local json = require "st.json"
Expand Down
Loading
Loading