----------------------------------------------------------------------------- Get the node role as a string as reported in the Z-Wave+ Info report. -----------------------------------------------------------------------------
| 5177 | // Get the node role as a string as reported in the Z-Wave+ Info report. |
| 5178 | //----------------------------------------------------------------------------- |
| 5179 | string Driver::GetNodePlusTypeString |
| 5180 | ( |
| 5181 | uint8 const _nodeId |
| 5182 | ) |
| 5183 | { |
| 5184 | LockGuard LG(m_nodeMutex); |
| 5185 | if( Node* node = GetNode( _nodeId ) ) |
| 5186 | { |
| 5187 | return node->GetNodeTypeString(); |
| 5188 | } |
| 5189 | return ""; // unknown |
| 5190 | } |
| 5191 | |
| 5192 | |
| 5193 |
nothing calls this directly
no test coverage detected