8 lines
295 B
TypeScript
8 lines
295 B
TypeScript
/**
|
|
* 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.`);
|
|
};
|