-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added better support for temperature, gain and offset
- Loading branch information
1 parent
a48ede9
commit 2d52465
Showing
13 changed files
with
214 additions
and
110 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# Basic stuff | ||
import numpy as np | ||
|
||
# Local stuff | ||
from Camera.IndiAltairCamera import IndiAltairCamera | ||
|
||
class IndiAltairCameraNonCool(IndiAltairCamera): | ||
def __init__(self, serv_time, config=None, | ||
connect_on_create=True): | ||
|
||
# Parent initialization | ||
super().__init__( | ||
serv_time=serv_time, | ||
config=config, | ||
connect_on_create=connect_on_create) | ||
|
||
def set_cooling_on(self): | ||
pass | ||
|
||
def set_cooling_off(self): | ||
pass | ||
|
||
def get_temperature(self): | ||
return np.nan | ||
|
||
def set_temperature(self, temperature): | ||
pass |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.