Blame view

src/devices/CameraVIS.py 317 Bytes
bb0fbab1   haribo   Fini de mettre la...
1
2
3
4
5
6
7
8
9
10
11
from common.models import *
from .Device import DeviceController

class VISCameraController(DeviceController):
    """
        Device controller for VIS Camera.
        This class may implement set, get or do functions to handle particularities.
    """

    def __init__(self):
        super().__init__("CameraVIS")