feat: Fallsensors

This commit is contained in:
ISA
2025-07-23 15:11:13 +02:00
parent bdbdd27963
commit ada2f5e2a7
12 changed files with 75 additions and 8 deletions

View File

@@ -42,6 +42,8 @@ interface KueDataState {
tdrOverflow: number[];
kueLimit2High: number[];
memoryInterval: number[];
// Fallsensors
win_fallSensorsActive: number[];
}
const initialState: KueDataState = {
@@ -85,6 +87,8 @@ const initialState: KueDataState = {
tdrOverflow: [],
kueLimit2High: [],
memoryInterval: [],
// Fallsensors
win_fallSensorsActive: [], // Fallsensors aktiv
};
const kueDataSlice = createSlice({