From 4b92a28dfa3db011a451aff913175ff8d21feb1b Mon Sep 17 00:00:00 2001 From: Blake Matthes Date: Sun, 16 Mar 2025 15:36:09 -0500 Subject: [PATCH] feat(rfid): no read console log for now but will show in frontend as well --- server/services/rfid/controller/noRead.ts | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 server/services/rfid/controller/noRead.ts diff --git a/server/services/rfid/controller/noRead.ts b/server/services/rfid/controller/noRead.ts new file mode 100644 index 0000000..08c8734 --- /dev/null +++ b/server/services/rfid/controller/noRead.ts @@ -0,0 +1,7 @@ +/** + * For a no read we just want to put up a notification to the rfid dashboard stating this reader did not respond with any tag data. + */ + +export const noRead = async (reader: string) => { + console.log(`${reader} just had a no read please check for a tag and manually trigger a read.`); +};