We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi! Some addition for writing calibration into RC device. Sorry i'm too lazy to do PR. :(
def set_energy_calib(self, calib: List[float]) -> None: calib_b = struct.pack('<fff', calib[0], calib[1], calib[2]) calib_len = len(calib_b) payload = struct.pack('<II', int(VS.ENERGY_CALIB), calib_len) + calib_b r = self.execute(b'\x27\x08', payload) retcode = r.unpack('<I')[0] assert retcode == 1
The text was updated successfully, but these errors were encountered:
add set_energy_calib() function, issue #26
131e4fb
thanks, in master
Sorry, something went wrong.
No branches or pull requests
Hi! Some addition for writing calibration into RC device.
Sorry i'm too lazy to do PR. :(
The text was updated successfully, but these errors were encountered: