Hi!

It is easily fixable by changing the code in svbony_base.cpp at int SVBONYBase::SetTemperature(double temperature):
From this: ret = SVBSetControlValue(mCameraInfo.CameraID, SVB_TARGET_TEMPERATURE, std::round(temperature), SVB_TRUE);
to this: ret = SVBSetControlValue(mCameraInfo.CameraID, SVB_TARGET_TEMPERATURE, std::round(temperature * 10.0), SVB_TRUE);

Regards,
Andras

Read More...