Blame view

src/devices/PLC.py 298 Bytes
ddf59dd4   haribo   Remaniement :
1
2
from common.models import *
from .Device import DeviceController
21598bc6   haribo   Date: 01/08/2016
3

ddf59dd4   haribo   Remaniement :
4
class PLCController(DeviceController):
bb0fbab1   haribo   Fini de mettre la...
5
6
7
8
    """
        Device controller for PLC.
        This class may implement set, get or do functions to handle particularities.
    """
21598bc6   haribo   Date: 01/08/2016
9
10

    def __init__(self):
bb0fbab1   haribo   Fini de mettre la...
11
        super().__init__("PLC")