Code Monkey home page Code Monkey 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 and Gallery Indiko machines. 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, simply fork this repo and modify one of the readers and parsers for your purposes. If you need help, create an issue. I will be more than happy to give you pointers.

Pull requests are always welcome.

Installation

npm install node-astm

API & Usage

Requiring

let { HoribaPentra60Reader, HoribaPentra60Parser, GalleryIndikoReader, GalleryIndikoParser } = 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

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar

node-astm's Issues

How to write and send an ASTM frame to medical equipment

I am currently working on the ASTM protocol using node js, the problem is I can't send a message to the equipment correctly
for example, I want to send this msg:

let msg = "H|!~|||LISHOST|||||||P|LIS2-A2|20040318235959
P|1||12345677||AHMED!SARMOUM||20120112!4!Y|M|||||
O|1|SID_133||!!!CD|||20160510111238||||N||||WB
L|1|N"

The current target machine is SELECTRA and COBAS E411

Listen TCP/IP

Hi, how this be ported to receive data on a TCP IP por instead of a COM port?

TCP/IP

Would TCP/IP support be difficult to add?

Cobas e411, c311 support

Hi
I'm currently working on interfacing with mentioned instruments.
Im willing to use your project as a start.
I could provide the needed keys to help you to implement those instruments to your project.
How should we start?

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.