-
-
Notifications
You must be signed in to change notification settings - Fork 731
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Config UI: show circuit status (#15110)
- Loading branch information
Showing
5 changed files
with
66 additions
and
12 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,18 @@ | ||
# - name: main # unique name, used as reference, e.g. as parent in other circuits | ||
# title: Main Circuit # used in the UI | ||
# maxcurrent: 63 # 63A main circuit breaker (optional) | ||
# maxpower: 30000 # 30kW (optional) | ||
# maxPower: 30000 # 30kW (optional) | ||
# meter: grid # associated meter to monitor the power consumption (optional) | ||
# parent: # no parent, this is the root circuit | ||
# - name: garage # unique name, used as reference, e.g. to associate loadpoints | ||
# title: Garage # used in the UI | ||
# maxcurrent: 24 # allow individual phase use up to 24A | ||
# maxpower: 11000 # limit total power to 11kW | ||
# maxPower: 11000 # limit total power to 11kW | ||
# meter: garage # dedicated meter for the garage | ||
# parent: main # parent to the main circuit | ||
# - name: carport # unique name, used as reference, e.g. to associate loadpoints | ||
# title: Carport # used in the UI | ||
# maxcurrent: 32 # 32A circuit breaker | ||
# maxpower: # no limit, only check current | ||
# maxCurrent: 32 # 32A circuit breaker | ||
# maxPower: # no limit, only check current | ||
# meter: # no meter, using data from loadpoints | ||
# parent: main # parent to the main circuit |
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