Skip to content

Commit

Permalink
improve default names for charge, ev, cp profiles
Browse files Browse the repository at this point in the history
  • Loading branch information
LKuemmel committed Oct 11, 2024
1 parent 5363ed6 commit 4d0b110
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/control/chargepoint/chargepoint_template.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ class CpTemplateData:
max_current_multi_phases: int = 32
max_current_single_phase: int = 32
dc_max_current: float = 435
name: str = "neues Ladepunkt-Profil"
name: str = "Ladepunkt-Profil"
disable_after_unplug: bool = False
valid_tags: List = field(default_factory=empty_list_factory)

Expand Down
2 changes: 1 addition & 1 deletion packages/helpermodules/update_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -452,7 +452,7 @@ class UpdateConfig:
("openWB/vehicle/0/ev_template", ev.Ev(0).ev_template.et_num),
("openWB/vehicle/0/tag_id", ev.Ev(0).data.tag_id),
("openWB/vehicle/0/get/soc", ev.Ev(0).data.get.soc),
("openWB/vehicle/template/ev_template/0", asdict(ev.EvTemplateData(name="Fahrzeug-Profil", min_current=10))),
("openWB/vehicle/template/ev_template/0", asdict(ev.EvTemplateData(name="Standard-Fahrzeug-Profil", min_current=10))),
("openWB/vehicle/template/charge_template/0", ev.get_charge_template_default()),
("openWB/general/charge_log_data_config", get_default_charge_log_columns()),
("openWB/general/chargemode_config/instant_charging/phases_to_use", 3),
Expand Down

0 comments on commit 4d0b110

Please sign in to comment.