mirror of https://github.com/nymea/nymea.git
31 lines
814 B
JSON
31 lines
814 B
JSON
{
|
|
"description": "An EV-charger. Extends the power interface for charging/not charging an electric vehicle. Supports regulation of the max. charging current in addition to be powered on or off.",
|
|
"extends": "power",
|
|
"states": [
|
|
{
|
|
"name": "maxChargingCurrent",
|
|
"type": "double",
|
|
"writable": true,
|
|
"unit": "Ampere"
|
|
},
|
|
{
|
|
"name": "pluggedIn",
|
|
"type": "bool",
|
|
"optional": true
|
|
},
|
|
{
|
|
"name": "charging",
|
|
"type": "bool",
|
|
"logged": true,
|
|
"optional": true
|
|
},
|
|
{
|
|
"name": "phaseCount",
|
|
"type": "uint",
|
|
"minValue": 1,
|
|
"maxValue": 3,
|
|
"optional": true
|
|
}
|
|
]
|
|
}
|