Source code for secsgem.secs.variables.u4

#####################################################################
# u4.py
#
# (c) Copyright 2021, Benjamin Parzella. All rights reserved.
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License as published by the Free Software Foundation; either
# version 2.1 of the License, or (at your option) any later version.
#
# This software is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU Lesser General Public License for more details.
#####################################################################
"""SECS 4 byte unsigned integer variable type."""

from .base_number import BaseNumber


[docs]class U4(BaseNumber): """ Secs type for 4 byte unsigned data. :param value: initial value :type value: list/integer :param count: number of items this value :type count: integer """ format_code = 0o54 text_code = "U4" _base_type = int _min = 0 _max = 4294967295 _bytes = 4 _struct_code = "L" preferred_types = [int]