Skip to content

Commit

Permalink
Merge pull request openWB#1319 from LKuemmel/fix
Browse files Browse the repository at this point in the history
improve default values counter config, ev standard template
  • Loading branch information
LKuemmel authored Dec 22, 2023
2 parents 14bfd03 + e321c6e commit 1eb25a6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions packages/control/counter.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@


def get_counter_default_config():
return {"max_currents": [16, 16, 16],
"max_total_power": 11000}
return {"max_currents": [35]*3,
"max_total_power": 24000}


@dataclass
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 @@ -387,7 +387,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())),
("openWB/vehicle/template/ev_template/0", asdict(ev.EvTemplateData(min_current=10))),
("openWB/vehicle/template/charge_template/0", ev.get_charge_template_default()),
("openWB/general/chargemode_config/instant_charging/phases_to_use", 1),
("openWB/general/chargemode_config/pv_charging/bat_prio", 1),
Expand Down

0 comments on commit 1eb25a6

Please sign in to comment.