MCPcopy Create free account
hub / github.com/OpenZWave/open-zwave / IsNodeBeamingDevice

Method IsNodeBeamingDevice

cpp/src/Manager.cpp:941–954  ·  view source on GitHub ↗

----------------------------------------------------------------------------- Get whether the node is a beam capable device. -----------------------------------------------------------------------------

Source from the content-addressed store, hash-verified

939// Get whether the node is a beam capable device.
940//-----------------------------------------------------------------------------
941bool Manager::IsNodeBeamingDevice
942(
943 uint32 const _homeId,
944 uint8 const _nodeId
945)
946{
947 bool res = false;
948 if( Driver* driver = GetDriver( _homeId ) )
949 {
950 res = driver->IsNodeBeamingDevice( _nodeId );
951 }
952
953 return res;
954}
955
956//-----------------------------------------------------------------------------
957// <Manager::IsNodeRoutingDevice>

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected