Count

SCPI Command :

ZONE<*>:AREA<*>:POINt<*>:COUNt
Commands in total: 1
Subgroups: 0
Direct child commands: 1
get(zone=Zone.Default, area=Area.Default, point=Point.Default) int[source]
# ZONE<*>:AREA<*>:POINt<*>:COUNt
value: int = driver.zone.area.point.count.get(zone = repcap.Zone.Default, area = repcap.Area.Default, point = repcap.Point.Default)

Queries the number of the defined points in the area. ZONE<m>:AREA<n>:POINt:COUNt? MAX returns the maximum number of points that can be created.

Parameters:
  • zone – optional repeated capability selector. Default value: Nr1 (settable in the interface ‘Zone’)

  • area – optional repeated capability selector. Default value: Nr1 (settable in the interface ‘Area’)

  • point – optional repeated capability selector. Default value: Nr1 (settable in the interface ‘Point’)

Returns:

count: 0 to 16

set(count: int, zone=Zone.Default, area=Area.Default, point=Point.Default) None[source]
# ZONE<*>:AREA<*>:POINt<*>:COUNt
driver.zone.area.point.count.set(count = 1, zone = repcap.Zone.Default, area = repcap.Area.Default, point = repcap.Point.Default)

Queries the number of the defined points in the area. ZONE<m>:AREA<n>:POINt:COUNt? MAX returns the maximum number of points that can be created.

Parameters:
  • count – 0 to 16

  • zone – optional repeated capability selector. Default value: Nr1 (settable in the interface ‘Zone’)

  • area – optional repeated capability selector. Default value: Nr1 (settable in the interface ‘Area’)

  • point – optional repeated capability selector. Default value: Nr1 (settable in the interface ‘Point’)