15 lines
409 B
TypeScript
15 lines
409 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.
|
|
*/
|
|
|
|
import { createLog } from "../../logger/logger.js";
|
|
|
|
export const noRead = async (reader: string) => {
|
|
createLog(
|
|
"error",
|
|
"rfid",
|
|
"rifd",
|
|
`${reader} just had a no read please check for a tag and manually trigger a read.`
|
|
);
|
|
};
|