1.1.7 • Published 8 years ago

galil v1.1.7

Weekly downloads
3
License
MIT
Repository
github
Last release
8 years ago

Galil Controller

Build Status

Galil is a manufacturer of motion control solutions.

This package uses sockets to communicate with the controller over an Ethernet connection and has been tested on several DMC 41x3 "Econo" motion controllers but may also work with other models.

Galil

This software, while highly functional, is being provided under an MIT open source license, and thus is provided as-is without warranty of any kind.

Basic Usage

import Galil from 'galil';

const galil = new Galil();

galil.commands.on('data', function (data) {
  console.log(`Received message on commands socket: ${data}`);
});

galil
  .connect(23, process.env.GALIL_HOST)
  .then(() => {
    console.log('Galil is connected!');
    galil.send('MG "Are we good to go, Captain?"')
  });

Generating docs

$ npm run docs
$ open docs/index.html
1.1.7

8 years ago

1.1.6

8 years ago

1.1.5

8 years ago

1.1.4

8 years ago

1.1.3

8 years ago

1.1.2

8 years ago

1.1.1

8 years ago

1.1.0

8 years ago

1.0.9

8 years ago

1.0.8

8 years ago

1.0.7

8 years ago

1.0.6

8 years ago

1.0.5

8 years ago

1.0.4

8 years ago

1.0.3

8 years ago

1.0.2

8 years ago

1.0.1

8 years ago

1.0.0

8 years ago