GithubHelp home page GithubHelp logo

node-astm's Introduction

node-astm

node-astm lets you read ASTM data from serial port. Supports Windows, Linux and OS X. Currently it can handle medical data generated by HORIBA Pentra 60. However, it is very easy to customize the code for any machine outputting ASTM data.

It outputs easy to process string data. You don't need to deal with buffers at all.

If you are looking for adding support to other devices, create an issue. I will be more than happy to help.

Pull requests are always welcome.

Installation

npm install node-astm --save

API & Usage

Requiring

let { HoribaPentra60Reader, HoribaPentra60Parser } = require('node-astm');

HoribaPentra60Reader Class

HoribaPentra60Reader#initiate(portString)

Initiates a connection. portString can be COM1, COM4 etc on windows and /dev/... on other platforms.

HoribaPentra60Reader#summarizeTransmission(transmission)

Compacts a raw transmission log into a string. Fit for simple string parsing.

Event: error

The error event is emitted when there is a major (non-recoverable) error. Such as the port gets closed.

Event: log

If you want verbosity, just listen to the log events. It outputs everything from errors to raw output.

Event: open

Fired when the port is opened.

Event: data

Fired when there is a complete transmission (EOT is received). You receive the full transmitted data in an array. You should use the summarizeTransmission method to convert the data into string.

HoribaPentra60Parser Class

HoribaPentra60Parser#parse(transmissionString)

Parses the transmissionString to extract measurements/test results and suspected pathologies. Other information is ignored as of now.

Example

let { HoribaPentra60Reader, HoribaPentra60Parser } = require('node-astm');

let machine = new HoribaPentra60Reader();

machine.on('log', (...args) => {
  console.log(...args);
});

machine.on('error', (error) => {
  console.log(error);
});

machine.on('parse-error', (error) => {
  console.log(error);
});

machine.on('data', (transmission) => {
  let string = machine.summarizeTransmission(transmission);
  let parser = new HoribaPentra60Parser();
  let results = parser.parse(string);
  console.log(results); // outputs { testResultList, suspectedPathologyList }
})

machine.initiate('COM4');

LICENCE

MIT

node-astm's People

Contributors

ishafayet avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.