API Reference v9.2.0
DeviceSettingsclass
Module: zaber_motion.binary
Class providing access to various device settings and properties.
To use this type, add from zaber_motion.binary import DeviceSettings to the top of your source code.
Methods
m
device_settings.get(setting, unit = Units.NATIVE)Returns any device setting or property.
Arguments
| Name | Type | Description |
|---|---|---|
| setting | BinarySettings | Setting to get. |
| unit | UnitsAndLiterals | Units of setting. |
Return Value
float Setting value.m
device_settings.set(setting, value, unit = Units.NATIVE)Sets any device setting.
Arguments
| Name | Type | Description |
|---|---|---|
| setting | BinarySettings | Setting to set. |
| value | float | Value of the setting. |
| unit | UnitsAndLiterals | Units of setting. |