-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #97 from vincentwolsink/profile_services
Add get_grid_profiles and set_grid_profile services
- Loading branch information
Showing
5 changed files
with
129 additions
and
40 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
get_grid_profiles: | ||
set_grid_profile: | ||
fields: | ||
profile: | ||
required: true | ||
example: "EN 50549-1:2019 RfG E02 Netherlands:1.2.4" | ||
selector: | ||
text: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,46 +1,62 @@ | ||
{ | ||
"config": { | ||
"abort": { | ||
"already_configured": "Apparaat is al geconfigureerd", | ||
"reauth_successful": "Herauthenticatie was succesvol" | ||
}, | ||
"error": { | ||
"cannot_connect": "Kan geen verbinding maken", | ||
"invalid_auth": "Ongeldige authenticatie", | ||
"unknown": "Onverwachte fout" | ||
}, | ||
"flow_title": "{serial} ({host})", | ||
"step": { | ||
"user": { | ||
"data": { | ||
"host": "Host", | ||
"password": "Enlighten Wachtwoord", | ||
"username": "Enlighten Gebruikersnaam", | ||
"serial": "Envoy Serienummer", | ||
"disable_installer_account_use": "Ik heb geen installer of DHZ enphase account, alleen Home owner" | ||
}, | ||
"description": "Voer de hostname/ip en serienummer van je Envoy in. Gebruik je Enlighten installer account gegevens." | ||
} | ||
} | ||
}, | ||
"options": { | ||
"config": { | ||
"abort": { | ||
"already_configured": "Apparaat is al geconfigureerd", | ||
"reauth_successful": "Herauthenticatie was succesvol" | ||
}, | ||
"error": { | ||
"cannot_connect": "Kan geen verbinding maken", | ||
"invalid_auth": "Ongeldige authenticatie", | ||
"unknown": "Onverwachte fout" | ||
}, | ||
"flow_title": "{serial} ({host})", | ||
"step": { | ||
"user": { | ||
"title": "Envoy opties", | ||
"data": { | ||
"enable_realtime_updates": "Gebruik real-time updates (werkt alleen met metered envoys)", | ||
"realtime_update_throttle": "Minimale tijd tussen real-time updates [s]", | ||
"disable_negative_production": "Voorkom negatieve productie waardes", | ||
"time_between_update": "Minimum tijd tussen entity updates [s]", | ||
"getdata_timeout": "Maximum tijd voor het ophalen van data vanaf envoy [s]", | ||
"enable_additional_metrics": "[Metered only] Extra metrics inschakelen, zoals total amps, frequency, apparent en reactive power en power factor.", | ||
"disable_installer_account_use": "Haal geen data op die een installateur of DHZ enphase account vereisen" | ||
}, | ||
"data_description": { | ||
"realtime_update_throttle": "Dit interval is van toepassing op real-time updates (om eventuele overload met updates te voorkomen)", | ||
"time_between_update": "Dit interval is alleen van toepassing voor het pollen van URLs" | ||
"user": { | ||
"data": { | ||
"host": "Host", | ||
"password": "Enlighten Wachtwoord", | ||
"username": "Enlighten Gebruikersnaam", | ||
"serial": "Envoy Serienummer", | ||
"disable_installer_account_use": "Ik heb geen installer of DHZ enphase account, alleen Home owner" | ||
}, | ||
"description": "Voer de hostname/ip en serienummer van je Envoy in. Gebruik je Enlighten installer account gegevens." | ||
} | ||
} | ||
}, | ||
"options": { | ||
"step": { | ||
"user": { | ||
"title": "Envoy opties", | ||
"data": { | ||
"enable_realtime_updates": "Gebruik real-time updates (werkt alleen met metered envoys)", | ||
"realtime_update_throttle": "Minimale tijd tussen real-time updates [s]", | ||
"disable_negative_production": "Voorkom negatieve productie waardes", | ||
"time_between_update": "Minimum tijd tussen entity updates [s]", | ||
"getdata_timeout": "Maximum tijd voor het ophalen van data vanaf envoy [s]", | ||
"enable_additional_metrics": "[Metered only] Extra metrics inschakelen, zoals total amps, frequency, apparent en reactive power en power factor.", | ||
"disable_installer_account_use": "Haal geen data op die een installateur of DHZ enphase account vereisen" | ||
}, | ||
"data_description": { | ||
"realtime_update_throttle": "Dit interval is van toepassing op real-time updates (om eventuele overload met updates te voorkomen)", | ||
"time_between_update": "Dit interval is alleen van toepassing voor het pollen van URLs" | ||
} | ||
} | ||
} | ||
}, | ||
"services": { | ||
"set_grid_profile": { | ||
"name": "Stel netwerkprofiel in", | ||
"description": "Stel het netwerkprofiel in dat de Envoy toepast op de omvormers.", | ||
"fields": { | ||
"profile": { | ||
"name": "Profiel", | ||
"description": "Netwerkprofiel ID" | ||
} | ||
} | ||
}, | ||
"get_grid_profiles": { | ||
"name": "Haal netwerkprofielen op", | ||
"description": "Haal huidige geselecteerde en alle beschikbare netwerkprofielen op." | ||
} | ||
} | ||
} |