lockserver/zwavejs/consts.go
Finn 054008eb1f Initial commit
Connects to zwave-js, syncs all locks and codeslots with database, and records an event log. No support for updating code slots.
2024-04-08 21:25:36 -07:00

16 lines
368 B
Go

package zwavejs
var (
CommandClassDoorLock = 98
CommandClassUserCode = 99
PropertyUserCode = "userCode"
PropertyUserIDStatus = "userIdStatus"
EventSourceController = "controller"
EventSourceNode = "node"
EventTypeValueUpdated = "value updated"
EventTypeStatisticsUpdated = "statistics updated"
EventTypeNotification = "notification"
)