meshtastic-js
v0.0.3
Published
JS lib for talking to Meshtastic node from Browser or Node.JS
Downloads
11
Readme
meshtastic-js
JS lib for talking to Meshtastic node from Browser or Node.JS
Table of contents
Usage
const { interfaceFactory, commandsFactory } = require("meshtastic-js");
const interface = interfaceFactory("/dev/ttyUSB0");
const commands = commandsFactory(interface);
commands.getNodeDB().then(data => {
console.log(data);
});
Installation
NPM
npm install meshtastic-js --save
Yarn
yarn add meshtastic-js