StepCmd

class c104.StepCmd

This class represents all specific step command information

__init__(self: c104.StepCmd, direction: c104.Step, qualifier: c104.Qoc = c104.Qoc.NONE, recorded_at: datetime.datetime = None) None

create a new step command

Parameters:
  • direction (c104.Step) – Step command direction value

  • qualifier (c104.Qoc) – Qualifier of Command

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

Example

>>> step_cmd = c104.StepCmd(direction=c104.Step.HIGHER, qualifier=c104.Qoc.SHORT_PULSE, recorded_at=datetime.datetime.now(datetime.utc))
property direction

the value (read-only)

Type:

c104.Step

property processed_at

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

Type:

datetime.datetime

property qualifier

the command qualifier information (read-only)

Type:

c104.Qoc

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:

datetime.datetime | None

property value

references property direction (read-only)

The setter is available via point.value=xyz

Type:

c104.Step