Allign minimal charging current to system naming

This commit is contained in:
Simon Stürz 2021-10-27 17:34:34 +02:00
parent 49a03580be
commit 442f33e50d

View File

@ -1,5 +1,5 @@
{ {
"description": "Interface for electric vehicles. Some electric cars require a minimal charging current, otherwise they don't start charging. Default is a minimum of 6 ampere.", "description": "Interface for electric vehicles. Some electric cars require a minimum charging current, otherwise they don't start charging. Default is a minimum of 6 ampere.",
"extends": ["battery"], "extends": ["battery"],
"states": [ "states": [
{ {
@ -8,12 +8,12 @@
"unit": "KiloWattHour" "unit": "KiloWattHour"
}, },
{ {
"name": "minimalChargingCurrent", "name": "minChargingCurrent",
"type": "uint", "type": "uint",
"unit": "Ampere", "unit": "Ampere",
"minValue": 6, "minValue": 6,
"maxValue": 16, "maxValue": 16,
"writable": true "optional": true
} }
] ]
} }