예제 #1
0
    def __init__(self, values, **kwargs):
        ''' Initializes a new instance

        :param values: The values to write to
        '''
        ModbusResponse.__init__(self, **kwargs)
        self.registers = values or []
예제 #2
0
    def __init__(self, status=0x00, **kwargs):
        ''' Initializes a new instance

        :param status: The status response to report
        '''
        ModbusResponse.__init__(self, **kwargs)
        self.status = status
예제 #3
0
    def __init__(self, records=None, **kwargs):
        ''' Initializes a new instance

        :param records: The file record requests to be read
        '''
        ModbusResponse.__init__(self, **kwargs)
        self.records = records or []
예제 #4
0
    def __init__(self, records=None, **kwargs):
        ''' Initializes a new instance

        :param records: The file record requests to be read
        '''
        ModbusResponse.__init__(self, **kwargs)
        self.records  = records or []
예제 #5
0
    def __init__(self, records=None):
        ''' Initializes a new instance

        :param records: The requested file records
        '''
        ModbusResponse.__init__(self)
        self.records = records or []
예제 #6
0
    def __init__(self, values):
        ''' Initializes a new instance

        :param values: The requested values to be returned
        '''
        ModbusResponse.__init__(self)
        self.bits = [] if values == None else values
예제 #7
0
    def __init__(self, values=None, **kwargs):
        ''' Initializes a new instance

        :param values: The list of values of the fifo to return
        '''
        ModbusResponse.__init__(self, **kwargs)
        self.values = values or []
예제 #8
0
    def __init__(self, values, **kwargs):
        ''' Initializes a new instance

        :param values: The values to write to
        '''
        ModbusResponse.__init__(self, **kwargs)
        self.registers = values if values != None else []
예제 #9
0
    def __init__(self, values, **kwargs):
        ''' Initializes a new instance

        :param values: The requested values to be returned
        '''
        ModbusResponse.__init__(self, **kwargs)
        self.bits = values or []
예제 #10
0
    def __init__(self, values=None, **kwargs):
        ''' Initializes a new instance

        :param values: The register values to write
        '''
        ModbusResponse.__init__(self, **kwargs)
        self.registers = values or []
예제 #11
0
    def __init__(self, values, **kwargs):
        ''' Initializes a new instance

        :param values: The requested values to be returned
        '''
        ModbusResponse.__init__(self, **kwargs)
        self.bits = values or []
예제 #12
0
    def __init__(self, records=None):
        ''' Initializes a new instance

        :param records: The requested file records
        '''
        ModbusResponse.__init__(self)
        self.records = records or []
예제 #13
0
    def __init__(self, values):
        ''' Initializes a new instance

        :param values: The values to write to
        '''
        ModbusResponse.__init__(self)
        self.registers = values if values != None else []
예제 #14
0
    def __init__(self, values=None):
        ''' Initializes a new instance

        :param values: The register values to write
        '''
        ModbusResponse.__init__(self)
        self.registers = values if values != None else []
예제 #15
0
    def __init__(self, values=None, **kwargs):
        ''' Initializes a new instance

        :param values: The register values to write
        '''
        ModbusResponse.__init__(self, **kwargs)
        RegisterResponseMixin.__init__(self, values)
예제 #16
0
    def __init__(self, values):
        ''' Initializes a new instance

        :param values: The requested values to be returned
        '''
        ModbusResponse.__init__(self)
        self.bits = [] if values == None else values
예제 #17
0
    def __init__(self, values=None, **kwargs):
        ''' Initializes a new instance

        :param values: The list of values of the fifo to return
        '''
        ModbusResponse.__init__(self, **kwargs)
        self.values = values or []
예제 #18
0
    def __init__(self, count=0x0000, **kwargs):
        ''' Initializes a new instance

        :param count: The current event counter value
        '''
        ModbusResponse.__init__(self, **kwargs)
        self.count = count
        self.status = True  # this means we are ready, not waiting
예제 #19
0
    def __init__(self, address=None, count=None, **kwargs):
        ''' Initializes a new instance

        :param address: The starting variable address written to
        :param count: The number of values written
        '''
        ModbusResponse.__init__(self, **kwargs)
        self.address = address
        self.count = count
예제 #20
0
    def __init__(self, address=None, value=None, **kwargs):
        ''' Initializes a new instance

        :param address: The variable address written to
        :param value: The value written at address
        '''
        ModbusResponse.__init__(self, **kwargs)
        self.address = address
        self.value = value
예제 #21
0
    def __init__(self, address=None, value=None, **kwargs):
        ''' Initializes a new instance

        :param address: The address to start writing add
        :param value: The values to write
        '''
        ModbusResponse.__init__(self, **kwargs)
        self.address = address
        self.value = value
예제 #22
0
    def __init__(self, address=None, count=None, **kwargs):
        ''' Initializes a new instance

        :param address: The address to start writing to
        :param count: The number of registers to write to
        '''
        ModbusResponse.__init__(self, **kwargs)
        self.address = address
        self.count = count
예제 #23
0
    def __init__(self, identifier='\x00', status=True, **kwargs):
        ''' Initializes a new instance

        :param identifier: The identifier of the slave
        :param status: The status response to report
        '''
        ModbusResponse.__init__(self, **kwargs)
        self.identifier = identifier
        self.status = status
예제 #24
0
    def __init__(self, address=None, count=None):
        ''' Initializes a new instance

        :param address: The starting variable address written to
        :param count: The number of values written
        '''
        ModbusResponse.__init__(self)
        self.address = address
        self.count = count
예제 #25
0
    def __init__(self, address=None, value=None):
        ''' Initializes a new instance

        :param address: The variable address written to
        :param value: The value written at address
        '''
        ModbusResponse.__init__(self)
        self.address = address
        self.value = value
예제 #26
0
    def __init__(self, address=None, count=None):
        ''' Initializes a new instance

        :param address: The address to start writing to
        :param count: The number of registers to write to
        '''
        ModbusResponse.__init__(self)
        self.address = address
        self.count = count
예제 #27
0
    def __init__(self, identifier='\x00', status=True, **kwargs):
        ''' Initializes a new instance

        :param identifier: The identifier of the slave
        :param status: The status response to report
        '''
        ModbusResponse.__init__(self, **kwargs)
        self.identifier = identifier
        self.status = status
예제 #28
0
    def __init__(self, address=None, value=None):
        ''' Initializes a new instance

        :param address: The address to start writing add
        :param value: The values to write
        '''
        self.address = address
        self.value = value
        ModbusResponse.__init__(self)
예제 #29
0
    def __init__(self, address=0x0000, and_mask=0xffff, or_mask=0x0000, **kwargs):
        ''' Initializes a new instance

        :param address: The mask pointer address (0x0000 to 0xffff)
        :param and_mask: The and bitmask applied to the register address
        :param or_mask: The or bitmask applied to the register address
        '''
        ModbusResponse.__init__(self, **kwargs)
        self.address  = address
        self.and_mask = and_mask
        self.or_mask  = or_mask
예제 #30
0
    def __init__(self, address=0x0000, and_mask=0xffff, or_mask=0x0000):
        ''' Initializes a new instance

        :param address: The mask pointer address (0x0000 to 0xffff)
        :param and_mask: The and bitmask applied to the register address
        :param or_mask: The or bitmask applied to the register address
        '''
        ModbusResponse.__init__(self)
        self.address = address
        self.and_mask = and_mask
        self.or_mask = or_mask
예제 #31
0
    def __init__(self, **kwargs):
        ''' Initializes a new instance

        :param status: The status response to report
        :param message_count: The current message count
        :param event_count: The current event count
        :param events: The collection of events to send
        '''
        ModbusResponse.__init__(self, **kwargs)
        self.status = kwargs.get('status', True)
        self.message_count = kwargs.get('message_count', 0)
        self.event_count = kwargs.get('event_count', 0)
        self.events = kwargs.get('events', [])
예제 #32
0
    def __init__(self, read_code=None, information=None, **kwargs):
        ''' Initializes a new instance

        :param read_code: The device information read code
        :param information: The requested information request
        '''
        ModbusResponse.__init__(self, **kwargs)
        self.read_code = read_code or DeviceInformation.Basic
        self.information = information or {}
        self.number_of_objects = 0
        self.conformity = 0x83  # I support everything right now
        self.next_object_id = 0x00
        self.more_follows = MoreData.Nothing
        self.space_left = None
예제 #33
0
 def __init__(self, **kwargs):
     ModbusResponse.__init__(self, **kwargs)
     self.block = kwargs.get('block', 0)
     self.slice = kwargs.get('slice', 0)
     # Init response fields
     self.frame_length = 0
     self.state = 0
     self.block_subfunction = 0
     self.slice_number = 0
     self.slice_amount = 0
     self.block_length = 0
     self.header_crc = 0
     self.slice_length = 0
     self.data = 0
예제 #34
0
    def __init__(self, read_code=None, information=None, **kwargs):
        ''' Initializes a new instance

        :param read_code: The device information read code
        :param information: The requested information request
        '''
        ModbusResponse.__init__(self, **kwargs)
        self.read_code = read_code or DeviceInformation.Basic
        self.information = information or {}
        self.number_of_objects = len(self.information)
        self.conformity = 0x83 # I support everything right now

        # TODO calculate
        self.next_object_id = 0x00 # self.information[-1](0)
        self.more_follows = MoreData.Nothing
예제 #35
0
    def __init__(self, read_code=None, information=None):
        ''' Initializes a new instance

        :param read_code: The device information read code
        :param information: The requested information request
        '''
        ModbusResponse.__init__(self)
        self.read_code = read_code or DeviceInformation.Basic
        self.information = information or {}
        self.number_of_objects = len(self.information)
        self.conformity = 0x83 # I support everything right now

        # TODO calculate
        self.next_object_id = 0x00 # self.information[-1](0)
        self.more_follows = MoreData.Nothing
예제 #36
0
 def __init__(self, **kwargs):
     ModbusResponse.__init__(self, **kwargs)
     self.block = kwargs.get('block', 0)
     self.slice = kwargs.get('slice', 0)
 def __init__(self, values=None, **kwargs):
     ModbusResponse.__init__(self, **kwargs)
     self.values = values or []
예제 #38
0
 def __init__(self):
     '''
     Base initializer for a diagnostic response
     '''
     self.message = None
     ModbusResponse.__init__(self)
 def __init__(self, values=None, **kwargs):
     ModbusResponse.__init__(self, **kwargs)
     self.values = values or []
예제 #40
0
 def __init__(self, **kwargs):
     '''
     Base initializer for a diagnostic response
     '''
     ModbusResponse.__init__(self, **kwargs)
     self.message = None
예제 #41
0
 def __init__(self, address):
     ModbusResponse.__init__(self)
     self.address = address
     self.count = 16
예제 #42
0
 def __init__(self):
     '''
     Base initializer for a diagnostic response
     '''
     ModbusResponse.__init__(self)
예제 #43
0
 def __init__(self):
     '''
     Base initializer for a diagnostic response
     '''
     self.message = None
     ModbusResponse.__init__(self)
예제 #44
0
 def __init__(self, values=None, **kwargs):
     ModbusResponse.__init__(self, **kwargs)
     print "init custom modbus response"
     self.values = values or []
예제 #45
0
 def __init__(self):
     '''
     Base initializer for a diagnostic response
     '''
     ModbusResponse.__init__(self)
예제 #46
0
 def __init__(self, **kwargs):
     '''
     Base initializer for a diagnostic response
     '''
     ModbusResponse.__init__(self, **kwargs)
     self.message = None