measure_rise_time
Measure signal rise time from lower to upper threshold percentages using PicoScope oscilloscope data to analyze electronic signal transition speed.
Instructions
Measure signal rise time (10% to 90% by default).
Args: channel: Channel to measure. low_threshold_percent: Lower threshold percentage (0-100). high_threshold_percent: Upper threshold percentage (0-100).
Returns: Dictionary containing rise time in seconds.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
channel | Yes | ||
high_threshold_percent | No | ||
low_threshold_percent | No |
Input Schema (JSON Schema)
{
"properties": {
"channel": {
"enum": [
"A",
"B",
"C",
"D"
],
"type": "string"
},
"high_threshold_percent": {
"default": 90,
"type": "number"
},
"low_threshold_percent": {
"default": 10,
"type": "number"
}
},
"required": [
"channel"
],
"type": "object"
}