class documentation

class JogCommand: (source)

Constructor: JogCommand(displacement)

View In Hierarchy

A base class for jog operations.

Method __init__ Initialise a JogCommand.
Method __repr__ Represent the command as a string.
Instance Variable displacement Undocumented
def __init__(self, displacement: Sequence[int] | None): (source)

Initialise a JogCommand.

Parameters
displacement:Sequence[int] | NoneThe distances as a sequence of moves for each axis. None for stop motion.
def __repr__(self) -> str: (source)

Represent the command as a string.

displacement = (source)

Undocumented