0.0.1-1 • Published 8 years ago

ymodem.js v0.0.1-1

Weekly downloads
5
License
ISC
Repository
github
Last release
8 years ago

particle-ymodem

Basic implementation of the Ymodem-protocol as used in Particle devices. Currently created and tested only to send firmware files to a Particle Photon.

Install using NPM
npm install particle-ymodem
npm install serialport
Use in application
var lightYModem = require('particle-ymodem');
var serialPort = require("serialport");
var fs = require('fs');

var file = fs.readFileSync('./firmware.bin');
var serialPort = new serialPort.SerialPort('/dev/cu.usbmodemfd131', {baudrate: 28800}, false);
var progressCallback = function(val){  console.log( Math.round(val.current*100/val.total) + '%' );}
var logCallback = console.log;

var modem = new lightYModem();
modem.transfer(file, serialPort, progressCallback, logCallback);
0.0.1-1

8 years ago

0.0.1

8 years ago

1.0.0

8 years ago