Blame view

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


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

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