- added camera black board fetch and post

- region selector can save settings and painted regions and fetch on load

- will add reset all
This commit is contained in:
2025-12-08 10:59:46 +00:00
parent 7cda7d5887
commit 1628048ac5
7 changed files with 111 additions and 5 deletions

View File

@@ -170,6 +170,13 @@ export type CameraFeedAction =
| {
type: "RESET_PAINTED_CELLS";
payload: { cameraFeedID: "A" | "B" | "C"; paintedCells: Map<string, PaintedCell> };
}
| {
type: "SET_CAMERA_FEED_DATA";
cameraState: CameraFeedState;
}
| {
type: "RESET_CAMERA_FEED";
};
export type DecodeReading = {
@@ -214,3 +221,9 @@ export type CustomFieldConfig = {
label: string;
value: string;
};
export type BlackBoardOptions = {
operation?: string;
path?: string;
value?: object | string | number | (string | number)[] | null;
};