0.0.8 • Published 11 years ago

epics v0.0.8

Weekly downloads
32
License
-
Repository
github
Last release
11 years ago

Information

EPICS Channel Access in node.js.

Installation

npm install epics

Ensure either EPICS_BASE and EPICS_HOST_ARCH are set or

export NODE_EPICS_LIBCA=/path/to/libca

Usage

var epics = require('epics');

var pv = new epics.Channel('SR11BCM01:CURRENT_MONITOR');
pv.on('value',function(data) {
  console.log('Current:',data);
});
pv.connect(function() {
  pv.monitor();
});
0.0.8

11 years ago

0.0.6

11 years ago

0.0.5

11 years ago

0.0.4

11 years ago

0.0.3

11 years ago

0.0.2

11 years ago

0.0.1

11 years ago