export_waveform
Save captured oscilloscope waveform data to files in CSV, JSON, or NumPy formats for analysis and sharing.
Instructions
Export captured waveform data to file.
Args: format: Export format (csv, json, or numpy). channels: List of channels to export. filename: Output filename (without extension).
Returns: Dictionary containing export status and file path.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
channels | No | ||
filename | No | waveform | |
format | No | csv |
Input Schema (JSON Schema)
{
"properties": {
"channels": {
"default": [
"A"
],
"items": {
"type": "string"
},
"type": "array"
},
"filename": {
"default": "waveform",
"type": "string"
},
"format": {
"default": "csv",
"enum": [
"csv",
"json",
"numpy"
],
"type": "string"
}
},
"type": "object"
}