----------------------------------------------------------------------------- Get the node device type as reported in the Z-Wave+ Info report. -----------------------------------------------------------------------------
| 1356 | // Get the node device type as reported in the Z-Wave+ Info report. |
| 1357 | //----------------------------------------------------------------------------- |
| 1358 | uint16 Manager::GetNodeDeviceType |
| 1359 | ( |
| 1360 | uint32 const _homeId, |
| 1361 | uint8 const _nodeId |
| 1362 | ) |
| 1363 | { |
| 1364 | if( Driver* driver = GetDriver( _homeId ) ) |
| 1365 | { |
| 1366 | return driver->GetNodeDeviceType( _nodeId ); |
| 1367 | } |
| 1368 | |
| 1369 | return 0x00; // unknown |
| 1370 | } |
| 1371 | |
| 1372 | //----------------------------------------------------------------------------- |
| 1373 | // <Manager::GetNodeDeviceType> |
nothing calls this directly
no outgoing calls
no test coverage detected