feat: APIs erstellt für Systemspannungen

This commit is contained in:
ISA
2025-07-03 11:48:52 +02:00
parent 521bd7ea93
commit a0e8e47fae
26 changed files with 582 additions and 5 deletions

View File

@@ -30,6 +30,11 @@ import firmwareUpdateReducer from "@/redux/slices/firmwareUpdateSlice";
import confirmModalReducer from "./slices/confirmModalSlice";
import firmwareProgressReducer from "./slices/firmwareProgressSlice";
import systemspannung5VplusReducer from "./slices/systemspannung5VplusSlice";
import systemspannung15VminusReducer from "./slices/systemspannung15VminusSlice";
import systemspannung15VplusReducer from "./slices/systemspannung15VplusSlice";
import systemspannung98VminusReducer from "./slices/systemspannung98VminusSlice";
import temperaturAdWandlerReducer from "./slices/temperaturAdWandlerSlice";
import temperaturProzessorReducer from "./slices/temperaturProzessorSlice";
const store = configureStore({
reducer: {
@@ -62,6 +67,11 @@ const store = configureStore({
confirmModal: confirmModalReducer,
firmwareProgress: firmwareProgressReducer,
systemspannung5Vplus: systemspannung5VplusReducer,
systemspannung15Vminus: systemspannung15VminusReducer,
systemspannung15Vplus: systemspannung15VplusReducer,
systemspannung98Vminus: systemspannung98VminusReducer,
temperaturAdWandler: temperaturAdWandlerReducer,
temperaturProzessor: temperaturProzessorReducer,
},
});