Event

SCPI Commands

SENSe:DATA:CONTrol:EPDG:EVENt:LOG
class Event[source]

Event commands group definition. 1 total commands, 0 Sub-groups, 1 group commands

class LogStruct[source]

Structure for reading output parameters. Fields:

  • Timestamps: List[str]: Timestamp of the entry as string in the format ‘hh:mm:ss’

  • Type_Py: List[enums.InfoType]: NONE | INFO | WARNing | ERRor Category of the entry NONE means that no category is assigned. If no entry at all is available, the answer is ‘’,NONE,’’.

  • Info: List[str]: Text string describing the event

get_log()LogStruct[source]
# SCPI: SENSe:DATA:CONTrol:EPDG:EVENt:LOG
value: LogStruct = driver.sense.data.control.epdg.event.get_log()

Queries all entries of the event log. For each entry, three parameters are returned, from oldest to latest entry: {<Timestamps>, <Type>, <Info>}entry 1, {<Timestamps>, <Type>, <Info>}entry 2, …

return

structure: for return value, see the help for LogStruct structure arguments.