@@ -16,11 +16,11 @@ def GetStatus():
16
16
return 20075
17
17
18
18
19
- def GetAvailableCameras ():
19
+ def GetAvailableCameras (status ):
20
20
return 1
21
21
22
22
23
- def GetCameraHandle ():
23
+ def GetCameraHandle (cameraIndex , cameraHandle ):
24
24
return 1
25
25
26
26
@@ -32,7 +32,7 @@ def GetTemperatureF(temperature):
32
32
return temperature
33
33
34
34
35
- def GetTemperatureStatus ():
35
+ def GetTemperatureStatus (SensorTemp , TargetTemp , AmbientTemp , CoolerVolts ):
36
36
return 1
37
37
38
38
@@ -65,31 +65,31 @@ def GetAcquiredData16(write_var):
65
65
# These functions do the same thing in this context
66
66
GetMostRecentImage16 = GetAcquiredData16
67
67
68
- def GetAcquisitionTimings (* args ):
68
+ def GetAcquisitionTimings (exposure , accumulate , kinetic ):
69
69
return 1
70
70
71
- def GetNumberVSSpeeds (* args ):
71
+ def GetNumberVSSpeeds (speeds ):
72
72
return 1
73
73
74
- def GetNumberVSAmplitudes (* args ):
74
+ def GetNumberVSAmplitudes (number ):
75
75
return 1
76
76
77
- def GetVSSpeed (index , * args ):
77
+ def GetVSSpeed (index , speed ):
78
78
return 1
79
79
80
- def GetFastestRecommendedVSSpeed (* index , * speeds ):
80
+ def GetFastestRecommendedVSSpeed (index , speeds ):
81
81
return 1
82
82
83
- def GetNumberHSSpeeds (channel , typ , * speeds ):
83
+ def GetNumberHSSpeeds (channel , typ , speeds ):
84
84
return 1
85
85
86
- def GetHSSpeed (channel , typ , index , * speed ):
86
+ def GetHSSpeed (channel , typ , index , speed ):
87
87
return 1
88
88
89
- def GetDetector (* xpixels , * ypixels ):
89
+ def GetDetector (xpixels , ypixels ):
90
90
return 1
91
91
92
- def GetAcquisitionProgress (* acc , * series ):
92
+ def GetAcquisitionProgress (acc , series ):
93
93
return 1
94
94
95
95
# Setter functions
0 commit comments