configure_channel
Set up oscilloscope channels by specifying coupling type, voltage range, and DC offset to prepare for signal acquisition and measurement.
Instructions
Configure a channel on the oscilloscope.
Args: channel: Channel identifier (A, B, C, or D). enabled: Whether the channel is enabled. coupling: AC or DC coupling. voltage_range: Voltage range in volts (e.g., 0.02, 0.05, 0.1, 0.2, 0.5, 1, 2, 5, 10, 20). analog_offset: DC offset voltage in volts.
Returns: Dictionary containing configuration status and applied settings.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
analog_offset | No | ||
channel | Yes | ||
coupling | No | DC | |
enabled | No | ||
voltage_range | No |
Input Schema (JSON Schema)
{
"properties": {
"analog_offset": {
"default": 0,
"type": "number"
},
"channel": {
"enum": [
"A",
"B",
"C",
"D"
],
"type": "string"
},
"coupling": {
"default": "DC",
"enum": [
"AC",
"DC"
],
"type": "string"
},
"enabled": {
"default": true,
"type": "boolean"
},
"voltage_range": {
"default": 5,
"type": "number"
}
},
"required": [
"channel"
],
"type": "object"
}