Skip to content

Commit

Permalink
Allow cooled cameras to act like uncooled cameras.
Browse files Browse the repository at this point in the history
  • Loading branch information
wtgee authored Jan 9, 2024
1 parent 6c0b937 commit a0ed8be
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/panoptes/pocs/camera/camera.py
Original file line number Diff line number Diff line change
Expand Up @@ -280,6 +280,11 @@ def is_cooled_camera(self):
""" True if camera has image sensor cooling capability """
return self._is_cooled_camera

@is_cooled_camera.setter
def is_cooled_camera(self, value):
""" Set whether camera has image sensor cooling capability """
self._is_cooled_camera = bool(value)

@property
def is_temperature_stable(self):
""" True if image sensor temperature is stable, False if not.
Expand Down

0 comments on commit a0ed8be

Please sign in to comment.