Skip to content

Commit

Permalink
Fix initial temperature measurements.
Browse files Browse the repository at this point in the history
  • Loading branch information
pchote committed Jan 8, 2024
1 parent 4b4f017 commit a1991e2
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions rockit/camera/qhy/qhyprocess.py
Original file line number Diff line number Diff line change
Expand Up @@ -662,10 +662,10 @@ def initialize(self):
6387
]

self._cooler_temperature = driver.GetQHYCCDParam(self._handle, QHYControl.CURTEMP)
self._cooler_humidity = driver.GetQHYCCDParam(self._handle, QHYControl.HUMIDITY)
self._cooler_pressure = driver.GetQHYCCDParam(self._handle, QHYControl.PRESSURE)
self._cooler_pwm = driver.GetQHYCCDParam(self._handle, QHYControl.CURPWM)
self._cooler_temperature = driver.GetQHYCCDParam(handle, QHYControl.CURTEMP)
self._cooler_humidity = driver.GetQHYCCDParam(handle, QHYControl.HUMIDITY)
self._cooler_pressure = driver.GetQHYCCDParam(handle, QHYControl.PRESSURE)
self._cooler_pwm = driver.GetQHYCCDParam(handle, QHYControl.CURPWM)

self._driver = driver
self._handle = handle
Expand Down

0 comments on commit a1991e2

Please sign in to comment.