Node.js Module to comunicate with pinpads that work with protocol VT100
npm install pinpad-vt100 --save
var pinpad = require('pinpad-vt100');
function status(obj,cli) { //function that will be call if the user press A on the keyboard
pinpad.cls();
pinpad.print('Status....',true);
}
pinpad.connect({ip:"192.168.1.253",port:8126,sts:status}); //ip and port of the pinpad
pinpad.print('test',true); // print and jump one line
In the folder test
In lieu of a formal styleguide, take care to maintain the existing coding style. Add unit tests for any new or changed functionality. Lint and test your code.
- 0.1.0 Initial release