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

Method DeleteButton

cpp/src/Manager.cpp:4467–4481  ·  view source on GitHub ↗

----------------------------------------------------------------------------- Send a NIF frame from the Controller to the Node -----------------------------------------------------------------------------

Source from the content-addressed store, hash-verified

4465// Send a NIF frame from the Controller to the Node
4466//-----------------------------------------------------------------------------
4467bool Manager::DeleteButton
4468(
4469 uint32 const _homeId,
4470 uint8 const _nodeId,
4471 uint8 const _buttonid
4472)
4473{
4474 if (Driver *driver = GetDriver( _homeId ) ) {
4475 LockGuard LG(driver->m_nodeMutex);
4476 return driver->BeginControllerCommand(
4477 Driver::ControllerCommand_DeleteButton,
4478 NULL, NULL, true, _nodeId, _buttonid);
4479 }
4480 return false;
4481}
4482
4483//-----------------------------------------------------------------------------
4484// <Manager::SendRawData>

Callers

nothing calls this directly

Calls 1

Tested by

no test coverage detected