29 lines
666 B
JSON
29 lines
666 B
JSON
{
|
|
"name": "cc_step_sweep",
|
|
"sample_period_ms": 500,
|
|
"safety": {
|
|
"max_voltage": 6.0,
|
|
"max_current": 0.8,
|
|
"max_power": 4.0,
|
|
"abort_on_disconnect": true
|
|
},
|
|
"steps": [
|
|
{ "action": "set_mode", "mode": "CC" },
|
|
{ "action": "set_current", "value": 0.10 },
|
|
{ "action": "output", "enabled": true },
|
|
{ "action": "hold", "duration_s": 10 },
|
|
{
|
|
"action": "ramp_current",
|
|
"start": 0.10,
|
|
"stop": 0.50,
|
|
"step": 0.10,
|
|
"dwell_s": 10,
|
|
"break_if": { "type": "temperature_above", "value": 45.0 }
|
|
},
|
|
{ "action": "output", "enabled": false }
|
|
],
|
|
"abort_sequence": [
|
|
{ "action": "safe" }
|
|
]
|
|
}
|