gps-nmea-reader
v1.0.8
Published
Read parsed NMEA data from GPS modules
Downloads
2
Readme
gps
Example:
const GPS = require('gps-nmea-reader');
const gps = new GPS('COM12',9600);
(async()=>{
console.log(await gps.getDevices())
})()
gps.on('data',(data)=>{
console.log(data)
})