Skip to content

Driver API

Marcus Davies edited this page Jul 22, 2021 · 12 revisions

The Driver API, contains a small set of methods to aid in your setup. It also allows to obtain some network stats

getValueDB

Get the entire Value Database for your Network.

let Message = {
    payload: {
        mode: "DriverAPI",
        method: "getValueDB",
        params: [...<NodeIDs>] /* Optional */
    }
}
return Message

getControllerStatistics

Get Controller Network stats

let Message = {
    payload: {
        mode: "DriverAPI",
        method: "getControllerStatistics",
    }
}
return Message

getNodeStatistics

Get ZWave Node Network stats

let Message = {
    payload: {
        mode: "DriverAPI",
        method: "getNodeStatistics",
        params: [...<NodeIDs>] /* Optional */
    }
}
return Message