Tzone

SCPI Command :

SYSTem:TZONe
class TzoneCls[source]

Tzone commands group definition. 1 total commands, 0 Subgroups, 1 group commands

class TzoneStruct[source]

Response structure. Fields:

  • Hour: int: No parameter help available

  • Minute: int: No parameter help available

get() TzoneStruct[source]
# SCPI: SYSTem:TZONe
value: TzoneStruct = driver.system.tzone.get()

Specifies the offset of the local time to the universal time coordinated (UTC) due to the time zone. There can be an additional offset due to daylight saving time (DST) . Changing the time zone (offset) does not affect an eventual DST offset or the time zone configured via method RsCMPX_Base.System.Time.DaylightSavingTime.Rule.value. The local time is calculated as: local time = UTC + time zone offset + DST offset

return:

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

set(hour: int, minute: int) None[source]
# SCPI: SYSTem:TZONe
driver.system.tzone.set(hour = 1, minute = 1)

Specifies the offset of the local time to the universal time coordinated (UTC) due to the time zone. There can be an additional offset due to daylight saving time (DST) . Changing the time zone (offset) does not affect an eventual DST offset or the time zone configured via method RsCMPX_Base.System.Time.DaylightSavingTime.Rule.value. The local time is calculated as: local time = UTC + time zone offset + DST offset

param hour:

No help available

param minute:

No help available