LtOffset

SCPI Commands

CONFigure:EVDO:SIGNaling<Instance>:SYSTem:LTOFfset:HEX
CONFigure:EVDO:SIGNaling<Instance>:SYSTem:LTOFfset
class LtOffset[source]

LtOffset commands group definition. 2 total commands, 0 Sub-groups, 2 group commands

class ValueStruct[source]

Structure for reading output parameters. Fields:

  • Sign: enums.SlopeType: NEGative | POSitive Position related to meridian NEGative: west from meridian POSitive: east from meridian

  • Hour: int: Difference from UTC Range: 00 to 17, Unit: hour

  • Minute: int: Difference from UTC Range: 00 to 59, Unit: min

get_hex()str[source]
# SCPI: CONFigure:EVDO:SIGNaling<instance>:SYSTem:LTOFfset:HEX
value: str = driver.configure.system.ltOffset.get_hex()

Displays time offset from UTC in hexadecimal format according to the local time zone.

return

local_time_off_hex: LocalTimeOffset = (sign(h) *(abs(h) *60+m) ) AND ((1UL11) -1) Range: #H000 to #HFFF

get_value()ValueStruct[source]
# SCPI: CONFigure:EVDO:SIGNaling<instance>:SYSTem:LTOFfset
value: ValueStruct = driver.configure.system.ltOffset.get_value()

Defines the time offset from UTC according to the local time zone. Possible range is from -17:04 to +17:03

return

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

set_value(value: RsCmwEvdoSig.Implementations.Configure_.System_.LtOffset.LtOffset.ValueStruct)None[source]
# SCPI: CONFigure:EVDO:SIGNaling<instance>:SYSTem:LTOFfset
driver.configure.system.ltOffset.set_value(value = ValueStruct())

Defines the time offset from UTC according to the local time zone. Possible range is from -17:04 to +17:03

param value

see the help for ValueStruct structure arguments.