Omonitoring

SCPI Commands :

[SOURce<HW>]:AREGenerator:OMONitoring:HOSTname
[SOURce<HW>]:AREGenerator:OMONitoring:PORT
[SOURce<HW>]:AREGenerator:OMONitoring:[STATe]
class OmonitoringCls[source]

Omonitoring commands group definition. 3 total commands, 0 Subgroups, 3 group commands

get_hostname() str[source]
# SCPI: [SOURce<HW>]:AREGenerator:OMONitoring:HOSTname
value: str = driver.source.areGenerator.omonitoring.get_hostname()

Sets hostname or IP address of the host (external PC) where the objects get streamed to.

return:

mon_hostname: string

get_port() int[source]
# SCPI: [SOURce<HW>]:AREGenerator:OMONitoring:PORT
value: int = driver.source.areGenerator.omonitoring.get_port()

Sets the port of the host (external PC) where the objects get streamed to.

return:

mon_port: integer Range: 0 to 65535

get_state() bool[source]
# SCPI: [SOURce<HW>]:AREGenerator:OMONitoring:[STATe]
value: bool = driver.source.areGenerator.omonitoring.get_state()

Sets the streaming state.

return:

mon_state: 1| ON| 0| OFF

set_hostname(mon_hostname: str) None[source]
# SCPI: [SOURce<HW>]:AREGenerator:OMONitoring:HOSTname
driver.source.areGenerator.omonitoring.set_hostname(mon_hostname = 'abc')

Sets hostname or IP address of the host (external PC) where the objects get streamed to.

param mon_hostname:

string

set_port(mon_port: int) None[source]
# SCPI: [SOURce<HW>]:AREGenerator:OMONitoring:PORT
driver.source.areGenerator.omonitoring.set_port(mon_port = 1)

Sets the port of the host (external PC) where the objects get streamed to.

param mon_port:

integer Range: 0 to 65535

set_state(mon_state: bool) None[source]
# SCPI: [SOURce<HW>]:AREGenerator:OMONitoring:[STATe]
driver.source.areGenerator.omonitoring.set_state(mon_state = False)

Sets the streaming state.

param mon_state:

1| ON| 0| OFF