What's Changed
This release adds the following functionality to the ZWOASICamera class:
python
Let's assume the camera ID is 0 (e.g., only 1 camera is connected):
id = 0
Create a new camera parameters instance (for demonstration purposes we are
connecting to a ASI62000M Pro model) which has a pid of "" (empty string):
params: ZWOASICameraParams = ZWOASICameraParams(pid="620b")
Create a new camera instance:
zwo = ZWOASICamera(id, params)
Turn on the camera's anti-dew heater:
zwo.turn_on_anti_dew_heater()
Turn off the camera's cooler:
zwo.turn_off_cooler()
Features
* feat: add ZWOASICamera.anti_dew_heater controls to zwoasi module by michealroberts in https://github.com/michealroberts/zwoasi/pull/89
**Full Changelog**: https://github.com/michealroberts/zwoasi/compare/v0.2.0...v0.3.0