Tags
SCPI Commands :
DIAGnostic:HUMS:TAGS:DELete
DIAGnostic:HUMS:TAGS:DELete:ALL
- class TagsCls[source]
Tags commands group definition. 4 total commands, 2 Subgroups, 2 group commands
- delete(delete_tag: str) → None[source]
# SCPI: DIAGnostic:HUMS:TAGS:DELete driver.diagnostic.hums.tags.delete(delete_tag = 'abc')
Deletes a certain tag you assigned to your instrument, including its key and value.
- param delete_tag
ID number of the tag you want to delete. To identify the ID number, query all device tags from the system first. For more information, see method RsFsw.Diagnostic.Hums.Tags.All.get_.
- delete_all() → None[source]
# SCPI: DIAGnostic:HUMS:TAGS:DELete:ALL driver.diagnostic.hums.tags.delete_all()
Deletes all key-value tags you have assigned to the instrument.
- delete_all_with_opc(opc_timeout_ms: int = - 1) → None[source]
# SCPI: DIAGnostic:HUMS:TAGS:DELete:ALL driver.diagnostic.hums.tags.delete_all_with_opc()
Deletes all key-value tags you have assigned to the instrument.
Same as delete_all, but waits for the operation to complete before continuing further. Use the RsFsw.utilities.opc_timeout_set() to set the timeout value.
- param opc_timeout_ms
Maximum time to wait in milliseconds, valid only for this call.
Cloning the Group
# Create a clone of the original group, that exists independently
group2 = driver.diagnostic.hums.tags.clone()
Subgroups