Skip to content
Snippets Groups Projects
Commit f6123e08 authored by Taya Snijder's avatar Taya Snijder
Browse files

added comments

parent c914e041
No related branches found
No related tags found
1 merge request!430L2SS-974 ccd alarm fixes
......@@ -118,7 +118,7 @@ class CCD(opcua_device):
def reset_hardware(self):
""" Initialise the CCD hardware. """
# Cycle clock
# Cycle clock. Quickly toggling the heater should not cool the heater down too much.
self.CCD_off()
self.wait_attribute("CCDTR_translator_busy_R", False, self.CCD_On_Off_timeout)
self.CCD_on()
......@@ -131,7 +131,10 @@ class CCD(opcua_device):
logger.warning("CCD not locked, this may indicate the clock has not yet warmed up")
def _disable_hardware(self):
""" Disable the CCD hardware. """
""" Disable the CCD hardware.
WARNING: The CCD contains a heater that takes about 15 minutes to fully heat up from a cold start.
This
"""
# Turn off the CCD
self.CCD_off()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment