get_channel_config
Retrieve current configuration settings for PicoScope oscilloscope channels including voltage range, coupling, and bandwidth to verify or document measurement setups.
Instructions
Get current configuration of a channel.
Args: channel: Channel identifier (A, B, C, or D).
Returns: Dictionary containing current channel settings.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
channel | Yes |
Input Schema (JSON Schema)
{
"properties": {
"channel": {
"enum": [
"A",
"B",
"C",
"D"
],
"type": "string"
}
},
"required": [
"channel"
],
"type": "object"
}