Finn
054008eb1f
Connects to zwave-js, syncs all locks and codeslots with database, and records an event log. No support for updating code slots.
16 lines
368 B
Go
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"
|
|
)
|