Fixed and added to SAF-Integra-* detection (#7309)

This commit is contained in:
Neil Lathwood
2017-09-09 22:15:59 +01:00
committed by GitHub
parent 455c72156d
commit a7cb40448f
2 changed files with 22 additions and 4 deletions

View File

@ -114,9 +114,18 @@ class SafIntegraB extends OS implements
'power',
$this->getDeviceId(),
'.1.3.6.1.4.1.7571.100.1.1.7.1.2.1.0',
'saf-integrab-rx',
'saf-integrab-tx',
'integraBradioTxPower',
'Rx Power'
'Tx Power'
),
// SAF-INTEGRAB-MIB::integraBradioRxLevel
new WirelessSensor(
'power',
$this->getDeviceId(),
'.1.3.6.1.4.1.7571.100.1.1.7.1.2.3.0',
'saf-integrab-rx-level',
'integraBradioRxLevel',
'Rx Level'
),
);
}

View File

@ -114,9 +114,18 @@ class SafIntegraW extends OS implements
'power',
$this->getDeviceId(),
'.1.3.6.1.4.1.7571.100.1.1.7.2.2.1.0',
'saf-integra-rx',
'saf-integra-tx',
'integraWradioTxPower',
'Rx Power'
'Tx Power'
),
// SAF-INTEGRAW-MIB::integraWradioRxLevel
new WirelessSensor(
'power',
$this->getDeviceId(),
'.1.3.6.1.4.1.7571.100.1.1.7.2.2.3.0',
'saf-integra-rx-level',
'integraWradioRxLevel',
'Rx Level'
),
);
}