This commit is contained in:
Ismail Ali
2025-06-26 22:55:26 +02:00
parent 8b3280da0a
commit 137839da98
15 changed files with 3604 additions and 44 deletions

View File

@@ -1,15 +1,6 @@
// Redux Slice: redux/slices/analogInputsSlice.ts
import { createSlice, PayloadAction, createAsyncThunk } from "@reduxjs/toolkit";
export interface AnalogInput {
id: number | null;
value: number | null;
label: string;
uW: boolean;
uG: boolean;
oW: boolean;
oG: boolean;
}
import type { AnalogInput } from "@/types/analogInput";
export interface AnalogInputsState {
[key: string]: AnalogInput;