docs: Zusatzfunktionen (Kai, 25.06.2025) in TODO.md ergänzt
This commit is contained in:
@@ -1,4 +1,16 @@
|
||||
"use client"; // /components/main/analogInputs/AnalogInputsTable.tsx
|
||||
|
||||
export type AnalogInput = {
|
||||
id: number;
|
||||
value: number;
|
||||
label: string;
|
||||
unit?: string; // Make unit optional if it may not exist
|
||||
offset: number;
|
||||
factor: number;
|
||||
loggerInterval: number;
|
||||
weighting: number;
|
||||
};
|
||||
|
||||
import React, { useEffect } from "react";
|
||||
import { useDispatch, useSelector } from "react-redux";
|
||||
import { RootState, AppDispatch } from "@/redux/store";
|
||||
|
||||
Reference in New Issue
Block a user