Command
Commands are executable nodes used to trigger actions in the tree.
A command is still a variable-like node (inherits from
pyrogue.BaseVariable), but its main purpose is invoking callable
behavior.
Command types
pyrogue.BaseCommand: base classpyrogue.LocalCommand: software-only commandpyrogue.RemoteCommand: command tied to a hardware register write
Commands can be invoked either directly or with call:
cmd(arg)cmd.call(arg)
Subtypes
Command Subtypes:
BaseCommand Class Documentation
See BaseCommand for generated API details.