galil

1.1.7 • Public • Published

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

Readme

Keywords

none

Package Sidebar

Install

npm i galil

Weekly Downloads

10

Version

1.1.7

License

MIT

Last publish

Collaborators

  • corvid