Skip to content

Commit

Permalink
Increase default temperature_tolerance for ZWO cameras (#959)
Browse files Browse the repository at this point in the history
* override default value
  • Loading branch information
wtgee authored Mar 5, 2020
1 parent 0b29b92 commit 22532da
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions pocs/camera/zwo.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,10 @@ def __init__(self,

super().__init__(name, ASIDriver, *args, **kwargs)

# Increase default temperature_tolerance for ZWO cameras because the
# default value is too low for their temperature resolution.
self.temperature_tolerance = kwargs.get('temperature_tolerance', 0.6 * u.Celsius)

if gain:
self.gain = gain

Expand Down

0 comments on commit 22532da

Please sign in to comment.