17 lines
368 B
Go
17 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"
|
||
|
)
|