You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
Socket
Book a DemoInstallSign in
Socket

bitlash-js

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

bitlash-js

bitlash command parser

0.2.0
latest
Source
npmnpm
Version published
Weekly downloads
0
-100%
Maintainers
1
Weekly downloads
 
Created
Source

##bitlash-js parse and send commands to bitlash devices via a stream interface like serialport

###INSTALL

npm install bitlash-js

####Use: See examples folder, but the steps are simple. You need a stream object, commonly serialport with the correct speed for your chip (115200 for pinoccio) and path to your device :

var SerialPort = require("serialport");
var serialPort = new SerialPort.SerialPort(path, {
  baudrate: baud
});

With serialport, you need to wait for your open event, but then you can send an empty command to make sure bitlash is listening

var Bitlash = require('bitlash-js');

Bitlash.send(serialPort, function(error){
  if(error) throw error;
});

Then send away. results is an array of strings, broken up by new line with your echoed command and the prompt removed. For commands that have no return like led.on its an empty array.

var opt = {
  timeout: 5000,
  cmd: 'led.on'
};

Bitlash.send(serialPort, function(error, results){
  if(error) throw error;
});

###CHANGELOG 0.0.1 forked from stk500 for its serial parser style

0.1.0 working implementation with tests

0.2.0 add a newline to parse regex to allow token in text

Keywords

arduino

FAQs

Package last updated on 09 Jan 2015

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts