CameraVIS.py
1.12 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
from common.models import *
import abc
from .Device import DeviceController
'''
Device controller for VISCamera.
This class must implement set, get and do functions (DeviceController is an abstract)
'''
class VISCameraController(DeviceController):
def __init__(self):
super().__init__("CameraVIS")
def get(self, command: str, *args):
message = "GET " + command + " " + " ".join([str(arg) for arg in args])
self.sendMessage(message)
return (self.blockAndReadMessage())
def set(self, command: str, *args):
message = "SET " + command + " " + " ".join([str(arg) for arg in args])
return (self.sendMessage(message))
def do(self, command: str, *args):
message = "DO " + command + " " + " ".join([str(arg) for arg in args])
return (self.sendMessage(message))
def getStatus(self):
self.get("STATUS")
return "OK"
def park(self):
return 0
def open_shutter(self):
self.do("OPEN SHUTTER")
return 0
def send_command(self, command):
self.sendMessage(command)
return self.blockAndReadMessage()