How to use the API to set DeviceLinkThroughputLimit?
set by a value
set by a range
set increment value
When I use
print(cam.DeviceLinkThroughputLimit) this is what I got
IntFeature(name=DeviceLinkThroughputLimit, value=200000000, range=(43000000, 450000000), increment=1)
The DeviceLinkThroughputLimit value alone can be changed , as it is alone the writeable feature.
The value can be set as follows:
cam.DeviceLinkThroughputLimit.set(400000000)
Hi,
How to use the API to set DeviceLinkThroughputLimit?
When I use
print(cam.DeviceLinkThroughputLimit)
this is what I gotIntFeature(name=DeviceLinkThroughputLimit, value=200000000, range=(43000000, 450000000), increment=1)
Thanks!