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.`); +};