hvl_ccb.dev.cube.earthing_stick

digraph inheritance678837e50e { bgcolor=transparent; rankdir=TB; size=""; "BoolEnum" [URL="../hvl_ccb.utils.enum.html#hvl_ccb.utils.enum.BoolEnum",fillcolor=white,fontname="Vera Sans, DejaVu Sans, Liberation Sans, Arial, Helvetica, sans",fontsize=10,height=0.25,shape=box,style="setlinewidth(0.5),filled",target="_top",tooltip="BoolEnum inherits from NameEnum and the type of the first value is"]; "NameEnum" -> "BoolEnum" [arrowsize=0.5,style="setlinewidth(0.5)"]; "EarthingStickOperatingStatus" [URL="../hvl_ccb.dev.cube.earthing_stick.html#hvl_ccb.dev.cube.earthing_stick.EarthingStickOperatingStatus",fillcolor=white,fontname="Vera Sans, DejaVu Sans, Liberation Sans, Arial, Helvetica, sans",fontsize=10,height=0.25,shape=box,style="setlinewidth(0.5),filled",target="_top",tooltip="Operating Status for an earthing stick. Stick can be used in auto or manual mode."]; "IntEnum" -> "EarthingStickOperatingStatus" [arrowsize=0.5,style="setlinewidth(0.5)"]; "EarthingStickOperation" [URL="../hvl_ccb.dev.cube.earthing_stick.html#hvl_ccb.dev.cube.earthing_stick.EarthingStickOperation",fillcolor=white,fontname="Vera Sans, DejaVu Sans, Liberation Sans, Arial, Helvetica, sans",fontsize=10,height=0.25,shape=box,style="setlinewidth(0.5),filled",target="_top",tooltip="Operation of the earthing stick in manual operating mode. Can be closed of opened."]; "BoolEnum" -> "EarthingStickOperation" [arrowsize=0.5,style="setlinewidth(0.5)"]; "EarthingStickStatus" [URL="../hvl_ccb.dev.cube.earthing_stick.html#hvl_ccb.dev.cube.earthing_stick.EarthingStickStatus",fillcolor=white,fontname="Vera Sans, DejaVu Sans, Liberation Sans, Arial, Helvetica, sans",fontsize=10,height=0.25,shape=box,style="setlinewidth(0.5),filled",target="_top",tooltip="Status of an earthing stick. These are the possible values in the status integer"]; "IntEnum" -> "EarthingStickStatus" [arrowsize=0.5,style="setlinewidth(0.5)"]; "Enum" [fillcolor=white,fontname="Vera Sans, DejaVu Sans, Liberation Sans, Arial, Helvetica, sans",fontsize=10,height=0.25,shape=box,style="setlinewidth(0.5),filled",tooltip="An enumeration."]; "IntEnum" [fillcolor=white,fontname="Vera Sans, DejaVu Sans, Liberation Sans, Arial, Helvetica, sans",fontsize=10,height=0.25,shape=box,style="setlinewidth(0.5),filled",tooltip="Enum where members are also (and must be) ints"]; "ReprEnum" -> "IntEnum" [arrowsize=0.5,style="setlinewidth(0.5)"]; "NameEnum" [URL="../hvl_ccb.utils.enum.html#hvl_ccb.utils.enum.NameEnum",fillcolor=white,fontname="Vera Sans, DejaVu Sans, Liberation Sans, Arial, Helvetica, sans",fontsize=10,height=0.25,shape=box,style="setlinewidth(0.5),filled",target="_top",tooltip="Enum with names used as string representation, and with lookup and equality based on"]; "StrEnumBase" -> "NameEnum" [arrowsize=0.5,style="setlinewidth(0.5)"]; "ReprEnum" [fillcolor=white,fontname="Vera Sans, DejaVu Sans, Liberation Sans, Arial, Helvetica, sans",fontsize=10,height=0.25,shape=box,style="setlinewidth(0.5),filled",tooltip="Only changes the repr(), leaving str() and format() to the mixed-in type."]; "Enum" -> "ReprEnum" [arrowsize=0.5,style="setlinewidth(0.5)"]; "StrEnumBase" [URL="../hvl_ccb.utils.enum.html#hvl_ccb.utils.enum.StrEnumBase",fillcolor=white,fontname="Vera Sans, DejaVu Sans, Liberation Sans, Arial, Helvetica, sans",fontsize=10,height=0.25,shape=box,style="setlinewidth(0.5),filled",target="_top",tooltip="String representation-based equality and lookup."]; "Enum" -> "StrEnumBase" [arrowsize=0.5,style="setlinewidth(0.5)"]; }

EarthingStick of the different “Cubes”.

class EarthingStickOperatingStatus(value=<no_arg>, names=None, module=None, qualname=None, type=None, start=1, boundary=None)[source]

Bases: IntEnum

Operating Status for an earthing stick. Stick can be used in auto or manual mode.

AUTO = 0
MANUAL = 1
class EarthingStickOperation(value=<no_arg>, names=None, module=None, qualname=None, type=None, start=1, boundary=None)[source]

Bases: BoolEnum

Operation of the earthing stick in manual operating mode. Can be closed of opened.

CLOSE = True
OPEN = False
class EarthingStickStatus(value=<no_arg>, names=None, module=None, qualname=None, type=None, start=1, boundary=None)[source]

Bases: IntEnum

Status of an earthing stick. These are the possible values in the status integer e.g. in _EarthingStick.status.

CLOSED = 1
ERROR = 3
INACTIVE = 0
OPEN = 2