mirror of
https://github.com/home-assistant/core.git
synced 2026-03-04 16:50:18 +00:00
* Add elmax integration. * Run hassfest and generate requirements_all * Remove secondary platforms from elmax integration as per first component integration. * Move ElmaxCoordinator and ElmaxEntity into external file Linting review * Remove useless variables * Fix wrong indentation. * Remove unecessary platforms. * Remove unnecessary attributes from manifest. * Rely on property getters/setters rathern than private attribute from parent. Update internal entity state just after transitory state update. * Update homeassistant/components/elmax/const.py Reference Platform constant Co-authored-by: Marvin Wichmann <marvin@fam-wichmann.de> * Update username/password values Rely on already-present templating constants Co-authored-by: Marvin Wichmann <marvin@fam-wichmann.de> * Add missing constant import. * Remove unnecessary test_unhandled_error() callback implementation. * Add common.py to coverage ignore list. * Improve coverage of config_flow. * Rename the integration. Co-authored-by: Franck Nijhof <frenck@frenck.nl> * Fix reauth bug and improve testing. * Refactor lambdas into generators. Co-authored-by: Marvin Wichmann <marvin@fam-wichmann.de> Co-authored-by: Franck Nijhof <frenck@frenck.nl>
34 lines
1.1 KiB
JSON
34 lines
1.1 KiB
JSON
{
|
|
"title": "Elmax Cloud Setup",
|
|
"config": {
|
|
"step": {
|
|
"user": {
|
|
"title": "Account Login",
|
|
"description": "Please login to the Elmax cloud using your credentials",
|
|
"data": {
|
|
"password": "[%key:common::config_flow::data::password%]",
|
|
"username": "[%key:common::config_flow::data::username%]"
|
|
}
|
|
},
|
|
"panels": {
|
|
"title": "Panel selection",
|
|
"description": "Select which panel you would like to control with this integration. Please note that the panel must be ON in order to be configured.",
|
|
"data": {
|
|
"panel_name": "Panel Name",
|
|
"panel_id": "Panel ID",
|
|
"panel_pin": "PIN Code"
|
|
}
|
|
}
|
|
},
|
|
"error": {
|
|
"no_panel_online": "No online Elmax control panel was found.",
|
|
"bad_auth": "Invalid authentication",
|
|
"network_error": "A network error occurred",
|
|
"invalid_pin": "The provided pin is invalid",
|
|
"unknown_error": "An unexpected error occurred"
|
|
},
|
|
"abort": {
|
|
"already_configured": "[%key:common::config_flow::abort::already_configured_device%]"
|
|
}
|
|
}
|
|
} |