diff --git a/webapp/src/components/PinInfo.vue b/webapp/src/components/PinInfo.vue
index 1458b4f4..45d4ccaa 100644
--- a/webapp/src/components/PinInfo.vue
+++ b/webapp/src/components/PinInfo.vue
@@ -119,6 +119,18 @@
{{ currentPinAssignment?.victron?.tx }} |
+
+ | Battery |
+ RX |
+ {{ selectedPinAssignment?.battery?.rx }} |
+ {{ currentPinAssignment?.battery?.rx }} |
+
+
+ | TX |
+ {{ selectedPinAssignment?.battery?.tx }} |
+ {{ currentPinAssignment?.battery?.tx }} |
+
+
diff --git a/webapp/src/types/PinMapping.ts b/webapp/src/types/PinMapping.ts
index e185b0d2..41ae0572 100644
--- a/webapp/src/types/PinMapping.ts
+++ b/webapp/src/types/PinMapping.ts
@@ -30,12 +30,18 @@ export interface Victron {
tx: number;
}
+export interface Battery {
+ rx: number;
+ tx: number;
+}
+
export interface Device {
name: string;
nrf24: Nrf24;
eth: Ethernet;
display: Display;
victron: Victron;
+ battery: Battery;
}
-export interface PinMapping extends Array{}
\ No newline at end of file
+export interface PinMapping extends Array{}