feat(rfid): no read console log for now but will show in frontend as well

This commit is contained in:
2025-03-16 15:36:09 -05:00
parent 4aae659ee4
commit 4b92a28dfa

View File

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