hi, i just installed this and whenever i run this
var modem = require('modem').Modem();
modem.open("/dev/sg1", function(err){
if(err){
throw err;
}else{
console.log("Modem is ready");
}
})
i get this error
../node_modules/modem/lib/modem.js:84
parser: sp.parsers.raw
^
TypeError: Cannot read properties of undefined (reading 'raw')
Any solution?