feat(rfid): more rfid topics while monitoring the system run

This commit is contained in:
2025-07-10 20:09:35 -05:00
parent 58711becf2
commit 6a082d9737
10 changed files with 87 additions and 12 deletions

View File

@@ -107,7 +107,7 @@ export const labelerTagRead = async (tagData: any) => {
// trigger the reader so we can get the label from the tag readers.
setTimeout(async () => {
await readTags("wrapper1");
}, 2 * 1000);
}, 500); // half second delay on this guy
}
}
};

View File

@@ -49,6 +49,8 @@ export const palletSendTag = async (tagData: any) => {
Date.now() - tagTime <= 5000 &&
!tagData.value
) {
await pickedup({ runningNr: 1234, all: true, areaFrom: "wrapper_1" });
setTimeout(() => {
pickedup({ runningNr: 1234, all: true, areaFrom: "wrapper_1" });
}, 5000);
}
};