1
Python and Java API / Re: Unable to modify sensor.user_calib
« on: November 08, 2021, 09:58:22 PM »
My temporary solution is simple enough, copy the calibration object and modify, then assign user_calib to the new calibration object.
calib = sensor.user_calib.copy()
calib.f = 1000
sensor.user_calib = calib
calib = sensor.user_calib.copy()
calib.f = 1000
sensor.user_calib = calib