Giter Site home page Giter Site logo

modbus's Introduction

A simple an easy to use Modbus TCP client/server implementation.

Modbus

Modbus is a simple Modbus TCP Client with a simple API.

Installation

Just type npm install jsmodbus and you are ready to go.

Testing

The test files are implemented using mocha and sinon.

Simply npm install -g mocha and npm install -g sinon. To run the tests type from the projects root folder mocha test/*.

Please feel free to fork and add your own tests.

Client example

var modbus = require('./modbus');

// create a modbus client
var client = modbus.createTCPClient(502, '127.0.0.1', function (err) {
    if (err) {
        console.log(err);
        exit(0);
    }
});

// make some calls
client.readInputRegister(0, 10, function (resp, err) {
  // resp will look like { fc: 4, byteCount: 20, register: [ values 0 - 10 ] }
});

client.readCoils(5, 3, function (resp, err) {
  // resp will look like { fc: 1, byteCount: 1, register: [ true, false, true ] }
});

client.writeSingleCoil(5, true, function (resp, err) {
  // resp will look like { fc: 5, byteCount: 4, outputAddress: 5, outputValue: true }
});

client.writeSingleRegister(13, 42, function (resp, err) {
  // resp will look like { fc: 6, byteCount: 4, registerAddress: 13, registerValue: 42 }
});

Server example

var modbus = require('./modbus');

// create readInputRegister handler
var rirHandler = function (start, quantity) {
  var resp[];
  for (var i = start; i < start + quant; i += 1) {
    resp.push(i);
  }

  return [resp];
};

    var coil = false;
    var writeCoilHandler = function (addr, value) {
  
  if (addr === 0) {
    coil = value;
  }

  return [addr, value];

};


// create Modbus TCP Server
modbus.createTCPServer(8888, '127.0.0.1', function (err, modbusServer) {
  // addHandler
  server.addHandler(4, rirHandler);
  server.addHandler(5, writeCoilHandler);
});

Development

To add other function codes on the client side see the test/serialClient.test.js and add a new test. To implement the test create an api call in src/serialClient.js and implement the pdu handler for the client in src/handler.js. That is mainly all.

On the server side all you need to do is to implement the handler for the request and the response in the exports.Server.RequestHandler and exports.Server.ResponseHandler. Don't forget to test!

That's it for now. Feel free to fork and implement more.

License

Copyright (C) 2014 Stefan Poeter (Stefan.Poeter[at]cloud-automation.de)

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

modbus's People

Contributors

stefanpoeter avatar bzhnja avatar

Watchers

Anton Altukhov 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.