Files
0005-DenryokuBancho/examples/repeat_while_burn_in.json

30 lines
773 B
JSON

{
"name": "repeat_while_burn_in",
"sample_period_ms": 1000,
"safety": {
"max_voltage": 6.0,
"max_current": 0.5,
"max_power": 3.0,
"abort_on_disconnect": true
},
"steps": [
{ "action": "set_mode", "mode": "CC" },
{
"action": "repeat_while",
"timeout_s": 7200,
"condition": { "type": "temperature_above", "value": 20.0 },
"break_if": { "type": "temperature_above", "value": 50.0 },
"steps": [
{ "action": "set_current", "value": 0.15 },
{ "action": "output", "enabled": true },
{ "action": "hold", "duration_s": 30 },
{ "action": "output", "enabled": false },
{ "action": "hold", "duration_s": 15 }
]
}
],
"abort_sequence": [
{ "action": "safe" }
]
}