Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
d295c41
active bat control includes all chargemodes
ndrsnhs Jul 14, 2025
2eba749
Merge branch 'openWB:master' into active-bat-control
ndrsnhs Jul 28, 2025
78e9c12
check for cp power
ndrsnhs Aug 12, 2025
5a7c442
adjust test
ndrsnhs Aug 12, 2025
dc2829a
Merge branch 'active-bat-control' of https://github.com/ndrsnhs/core …
ndrsnhs Oct 15, 2025
6c71001
more options for active bat control + test
ndrsnhs Nov 24, 2025
0171c96
remove whitespaces
ndrsnhs Nov 24, 2025
797b14c
add valid topics
ndrsnhs Nov 24, 2025
1ad049d
build UI
ndrsnhs Nov 25, 2025
06a012d
Revert "build UI"
ndrsnhs Nov 25, 2025
429161a
update setdata
ndrsnhs Nov 25, 2025
affe45b
build UI
ndrsnhs Nov 25, 2025
6c931ea
Revert "build UI"
ndrsnhs Nov 25, 2025
d635cc9
Merge branch 'openWB:master' into active-bat-control
ndrsnhs Nov 25, 2025
b4cfb14
fix indentation
ndrsnhs Nov 25, 2025
7a265aa
build UI
ndrsnhs Nov 25, 2025
cfcec4f
Revert "build UI"
ndrsnhs Nov 26, 2025
f9bbd2d
build UI
ndrsnhs Nov 26, 2025
76cf992
Revert "build UI"
ndrsnhs Dec 3, 2025
e75c1e9
Merge branch 'openWB:master' into active-bat-control
ndrsnhs Dec 3, 2025
cc4e906
support multiple batteries
ndrsnhs Dec 3, 2025
e432917
add valid topics
ndrsnhs Dec 4, 2025
5b5fec6
simple price limit
ndrsnhs Dec 5, 2025
84f6aca
Merge branch 'openWB:master' into active-bat-control
ndrsnhs Dec 5, 2025
e7dff6f
build UI
ndrsnhs Dec 5, 2025
1957f4a
Revert "build UI"
ndrsnhs Dec 8, 2025
e4ee29d
change variable name
ndrsnhs Dec 8, 2025
0cfaa20
add charging plans
ndrsnhs Dec 17, 2025
489b805
Merge branch 'openWB:master' into active-bat-control
ndrsnhs Dec 17, 2025
cf42dc8
Revert "add charging plans"
ndrsnhs Dec 17, 2025
478ee43
Merge branch 'active-bat-control' of https://github.com/ndrsnhs/core …
ndrsnhs Dec 17, 2025
7f4be59
add tests, improve price charging
ndrsnhs Dec 17, 2025
ffbd286
add tests for price charging
ndrsnhs Dec 17, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions packages/control/bat.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@ class Get:
fault_str: str = field(default=NO_ERROR, metadata={"topic": "get/fault_str"})
power: float = field(default=0, metadata={"topic": "get/power"})
power_limit_controllable: bool = field(default=False, metadata={"topic": "get/power_limit_controllable"})
max_charge_power: float = field(default=0, metadata={"topic": "get/max_charge_power"})
max_discharge_power: float = field(default=0, metadata={"topic": "get/max_discharge_power"})


def get_factory() -> Get:
Expand Down
Loading