BinaryCmd

class c104.BinaryCmd

This class represents all specific binary command information

__init__(self: c104.BinaryCmd, blob: c104.Byte32, recorded_at: Optional[datetime.datetime] = None) None

create a new binary command

Parameters:
  • blob (c104.Byte32) – Binary command value

  • recorded_at (Optional[datetime.datetime]) – Timestamp contained in the protocol message, or None if the protocol message type does not contain a timestamp.

Example

>>> binary_cmd = c104.BinaryCmd(blob=c104.Byte32(1234), recorded_at=datetime.datetime.utcnow())
property blob

the value (read-only)

Type:

c104.Byte32

property processed_at

timestamp with milliseconds of last local information processing (read-only)

Type:

datetime.datetime

property quality

This information does not contain quality information.

Type:

None

property recorded_at

timestamp with milliseconds transported with the value itself or None (read-only)

Type:

Optional[int]

property value

maps to property direction (read-only). The setter is available via point.value=xyz

Type:

c104.Byte32