You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
class LoggerConfig {
|
|
constructor() {}
|
|
|
|
start(device) {
|
|
device.on("input", event => {
|
|
if (event.key_code == 0) {
|
|
return;
|
|
}
|
|
console.log(event.key_code);
|
|
});
|
|
}
|
|
}
|
|
|
|
module.exports = LoggerConfig;
|