----------------------------------------------------------------------------- Get the node device type as reported in the Z-Wave+ Info report. -----------------------------------------------------------------------------
| 1374 | // Get the node device type as reported in the Z-Wave+ Info report. |
| 1375 | //----------------------------------------------------------------------------- |
| 1376 | string Manager::GetNodeDeviceTypeString |
| 1377 | ( |
| 1378 | uint32 const _homeId, |
| 1379 | uint8 const _nodeId |
| 1380 | ) |
| 1381 | { |
| 1382 | if( Driver* driver = GetDriver( _homeId ) ) |
| 1383 | { |
| 1384 | return driver->GetNodeDeviceTypeString( _nodeId ); |
| 1385 | } |
| 1386 | |
| 1387 | return ""; // unknown |
| 1388 | } |
| 1389 | |
| 1390 | |
| 1391 |