roboglia.base.RegisterWithDynamicConversion

class RegisterWithDynamicConversion(factor_reg=None, **kwargs)[source]

Bases: roboglia.base.register.RegisterWithConversion

A register that, in addition to the conversions provided by RegisterWithConversion can use the value provided by another register in the device as a factor adjustment.

Parameters
  • factor_reg (str) – The name of the register that provides the additional factor adjustment.

  • Raises – KeyError: if any of the mandatory fields are not provided ValueError: if value provided are wrong or the wrong type

__init__(factor_reg=None, **kwargs)[source]

Initialize self. See help(type(self)) for accurate signature.

property factor_reg

The register providing the additional conversion.

value_to_external(value)[source]

The external representation of the register’s value.

Performs the translation of the value according to:

external = (internal - offset) / factor * dynamic_factor
value_to_internal(value)[source]

The internal representation of the register’s value.

Performs the translation of the value according to:

internal = external * factor / dynamic_factor + offset

The resulting value is rounded to produce an integer suitable to be stored in the register.

__str__()

Representation of the register [name]: value.

property access

Register’s access mode.

property address

The register’s address in the device.

property clone

Indicates the register is a clone of another.

property default

The register’s default value in internal format.

property device

The device the register belongs to.

property factor

The conversion factor for external value.

property int_value

Internal value of register, if a clone return the value of the main register.

property max_ext

The register’s maximum value in external format.

property maxim

The register’s maximum value in internal format.

property min_ext

The register’s minimum value in external format.

property minim

The register’s minimum value in internal format.

property name

Register’s name.

property offset

The offset for external value.

property order

Indicates the order of the data representartion; low-high (LH) or high-low (HL)

property range

Tuple with (minim, maxim) values in internal format.

property range_ext

Tuple with (minim, maxim) values in external format.

read()

Performs the actual reading of the internal value of the register from the device. Calls the device’s method to read the value of register.

property sign_bit

The sign bit, if any.

property size

The regster’s size in Bytes.

property sync

Register is subject to a sync loop update.

property value

Provides the value of the register in external format. If the register is not marked for sync then it requests the device to perform a read in order to refresh the content of the register.

Returns

The value of the register in the external format. It invokes value_to_external() which can be overridden by subclasses to provide different representations of the register’s value (hence the any return type).

Return type

any

property word

Indicates if the register is an 16 bit register (True) or an 8 bit register.

write()

Performs the actual writing of the internal value of the register to the device. Calls the device’s method to write the value of register.