forked from M-Labs/thermostat
ctrl_panel: Limits fixes
* PID Autotune test current should be positive * max_v should be 4 V not 5 V * r0 should not be negative
This commit is contained in:
parent
f7c266539b
commit
319fb9cf9e
|
@ -156,7 +156,7 @@
|
||||||
"step": 0.1,
|
"step": 0.1,
|
||||||
"limits": [
|
"limits": [
|
||||||
0,
|
0,
|
||||||
5
|
4
|
||||||
],
|
],
|
||||||
"siPrefix": true,
|
"siPrefix": true,
|
||||||
"suffix": "V",
|
"suffix": "V",
|
||||||
|
@ -209,6 +209,7 @@
|
||||||
"type": "float",
|
"type": "float",
|
||||||
"value": 10000,
|
"value": 10000,
|
||||||
"step": 1,
|
"step": 1,
|
||||||
|
"min": 0,
|
||||||
"siPrefix": true,
|
"siPrefix": true,
|
||||||
"pinSiPrefix": "k",
|
"pinSiPrefix": "k",
|
||||||
"suffix": "Ω",
|
"suffix": "Ω",
|
||||||
|
@ -402,7 +403,7 @@
|
||||||
"decimals": 6,
|
"decimals": 6,
|
||||||
"step": 0.1,
|
"step": 0.1,
|
||||||
"limits": [
|
"limits": [
|
||||||
-2,
|
0,
|
||||||
2
|
2
|
||||||
],
|
],
|
||||||
"siPrefix": true,
|
"siPrefix": true,
|
||||||
|
|
Loading…
Reference in New Issue