fixed Rate sensor description (Racom RAy) (#9374)

* fixed Rate sensor description

* Update ray.json

* Update ray.json
This commit is contained in:
jozefrebjak
2018-10-25 22:35:18 +02:00
committed by Tony Murray
parent 7e0a9134d5
commit fd6310a405
2 changed files with 3 additions and 3 deletions

View File

@@ -134,7 +134,7 @@ class Ray extends OS implements
$oid_maxbitrate = '.1.3.6.1.4.1.33555.1.2.1.14'; // RAY-MIB::maxNetBitrate.0
return array(
new WirelessSensor('rate', $this->getDeviceId(), $oid_bitrate, 'racom-netBitrate', 1, 'Net Bitrate', null, 1000, 1),
new WirelessSensor('rate', $this->getDeviceId(), $oid_maxbitrate, 'racom-maxNetBitrate', 2, 'Net Bitrate', null, 1000, 1),
new WirelessSensor('rate', $this->getDeviceId(), $oid_maxbitrate, 'racom-maxNetBitrate', 2, 'Max Net Bitrate', null, 1000, 1),
);
}
}