-
Notifications
You must be signed in to change notification settings - Fork 107
HTTP simpleAPI erweitert #2938
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
HTTP simpleAPI erweitert #2938
Conversation
This file contains hidden or 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
Contributor
Author
Neue schreibende Parameter1. Instant Charging Limit TypParameter:
# Beispiele
curl "http://openwb/simpleapi.php?instant_charging_limit=amount&chargepoint_nr=3"
curl "http://openwb/simpleapi.php?instant_charging_limit=soc&chargepoint_nr=1"
curl "http://openwb/simpleapi.php?instant_charging_limit=none&chargepoint_nr=2"2. Instant Charging EnergiemengeParameter:
# Beispiele
curl "http://openwb/simpleapi.php?instant_charging_amount=25.5&chargepoint_nr=3"
curl "http://openwb/simpleapi.php?instant_charging_amount=10&chargepoint_nr=1"3. Instant Charging SoC-LimitParameter:
# Beispiele
curl "http://openwb/simpleapi.php?instant_charging_soc=80&chargepoint_nr=3"
curl "http://openwb/simpleapi.php?instant_charging_soc=100&chargepoint_nr=1"4. FahrzeugzuordnungParameter:
# Beispiele
curl "http://openwb/simpleapi.php?vehicle=1&chargepoint_nr=3"
curl "http://openwb/simpleapi.php?vehicle=0&chargepoint_nr=2"5. Manueller SoCParameter:
# Beispiele
curl "http://openwb/simpleapi.php?manual_soc=75&chargepoint_nr=3"
curl "http://openwb/simpleapi.php?manual_soc=50&chargepoint_nr=1" |
Contributor
Author
|
Instant Charging Current
|
Contributor
Author
Minimaler PV-Stromcurl "http://openwb/simpleapi.php?get_chargepoint_charge_template_min_current=3" Antwort: {"chargepoint_3": {"charge_template_min_current": 6}} |
|
Hi, |
cshagen
pushed a commit
to cshagen/core
that referenced
this pull request
Nov 16, 2025
* HTTP simpleAPI erweitert * simpleAPI add write functions * neuer parameter * neuer parameter
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Dieses Pull Request erweitert die SimpleAPI um zusätzliche lesbare Parameter für Ladepunkte (Chargepoints). Die neuen Parameter ermöglichen den Zugriff auf wichtige Messwerte, Konfigurationsdaten und Statusinformationen über die HTTP-API.
Neue Features
1. Zusätzliche Messwerte
Energie und Leistung
get_chargepoint_daily_imported- Täglicher Energieimport (kWh)get_chargepoint_daily_exported- Täglicher Energieexport (kWh)get_chargepoint_frequency- Netzfrequenz (Hz)get_chargepoint_evse_current- EVSE-Strom (A)RFID-Daten
get_chargepoint_rfid- Aktuelle RFID-Tag ID als Stringget_chargepoint_rfid_timestamp- Zeitstempel der letzten RFID-Aktivität2. Leistungsfaktoren (Power Factors)
Komplexer Parameter (Array-Ausgabe)
get_chargepoint_power_factors- Alle drei Phasen als Array[p1, p2, p3]Einzelphasen-Parameter
get_chargepoint_power_factor_p1- Leistungsfaktor Phase 1get_chargepoint_power_factor_p2- Leistungsfaktor Phase 2get_chargepoint_power_factor_p3- Leistungsfaktor Phase 33. Konfigurationsdaten
get_chargepoint_config_name- Name des Ladepunkts aus der Konfigurationget_chargepoint_connected_vehicle_name- Name des aktuell verbundenen Fahrzeugsget_chargepoint_charge_template_name- Name des aktiven Lade-Profilsget_chargepoint_charge_template_min_current- Minimaler Strom aus PV-Charging KonfigurationMQTT Topic Mapping
get_chargepoint_daily_importedopenWB/chargepoint/{id}/get/daily_importedget_chargepoint_daily_exportedopenWB/chargepoint/{id}/get/daily_exportedget_chargepoint_frequencyopenWB/chargepoint/{id}/get/frequencyget_chargepoint_rfidopenWB/chargepoint/{id}/get/rfidget_chargepoint_rfid_timestampopenWB/chargepoint/{id}/get/rfid_timestampget_chargepoint_evse_currentopenWB/chargepoint/{id}/get/evse_currentget_chargepoint_power_factorsopenWB/chargepoint/{id}/get/power_factors[p1, p2, p3]get_chargepoint_config_nameopenWB/chargepoint/{id}/configconfig.nameget_chargepoint_connected_vehicle_nameopenWB/chargepoint/{id}/get/connected_vehicle/infoinfo.nameget_chargepoint_charge_template_nameopenWB/chargepoint/{id}/set/charge_templatetemplate.nameget_chargepoint_charge_template_min_currentopenWB/chargepoint/{id}/set/charge_templatetemplate.chargemode.pv_charging.min_current