measure_amplitude
Measure signal amplitude on PicoScope channels to analyze voltage characteristics using peak-to-peak, RMS, mean, max, or min calculations after capturing data.
Instructions
Measure signal amplitude on a channel.
Note: This requires a recent capture. Call capture_block first.
Args: channel: Channel to measure. measurement_type: Type of amplitude measurement.
Returns: Dictionary containing amplitude in volts and measurement type.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
channel | Yes | ||
measurement_type | No | peak_to_peak |
Input Schema (JSON Schema)
{
"properties": {
"channel": {
"enum": [
"A",
"B",
"C",
"D"
],
"type": "string"
},
"measurement_type": {
"default": "peak_to_peak",
"enum": [
"peak_to_peak",
"rms",
"mean",
"max",
"min"
],
"type": "string"
}
},
"required": [
"channel"
],
"type": "object"
}