Skip to content

Commit 8a270ee

Browse files
Add fuse component category
The new variant is called `COMPONENT_CATEGORY_FUSE`. Fuses are used to protect electrical components from overcurrents. This change allows our API to support fuses. E.g., the Microgrid API could be extended to support fuses in component graphs. Signed-off-by: Tiyash Basu <[email protected]>
1 parent 34684db commit 8a270ee

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

RELEASE_NOTES.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
## New Features
1414

15-
<!-- Here goes the main new features and examples or instructions on how to use them -->
15+
- Added a new component category variant: `COMPONENT_CATEGORY_FUSE`.
1616

1717
## Bug Fixes
1818

proto/frequenz/api/common/v1/components.proto

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,10 @@ enum ComponentCategory {
6060
// mechanisms, some may lack this feature. In such cases, we need to use
6161
// external precharging modules.
6262
COMPONENT_CATEGORY_PRECHARGE_MODULE = 12;
63+
64+
// A fuse.
65+
// Fuses are used to protect electrical components from overcurrents.
66+
COMPONENT_CATEGORY_FUSE = 13;
6367
}
6468

6569
// Enumerated battery types.

0 commit comments

Comments
 (0)