fe-lib-pk10-node
v1.0.34
Published
library for pk10
Downloads
7
Readme
fe-lib-pk10-node
Nodejs library to control lottery machine
- npm install
- node index.backup.js [targetIP] [targetMCUDesignType] [loop]
How to setup
- npm install fe-lib-pk10-node
- npm install node-loader (https://www.npmjs.com/package/node-loader)
- add
to webpack.config.js in module -> rules{ test: /\.node$/, use: 'node-loader' }
- npm i -D electron-rebuild
- run -------------> ./node_modules/.bin/electron-rebuild <--------------- (4-5 ref: https://github.com/serialport/node-serialport/issues/1910)
- set -------------> app.allowRendererProcessReuse = false; <--------------- in main
How to Use the library in electron
import PK10Control from 'fe-lib-pk10-node'
var pk10Control = new PK10Control
setInterval(pk10Control.execute, 0)
pk10Control.checkStatus()
var listenerPK10 = function listenerPK10(ball1, ball2, ball3, ball4, ball5, ball6, ball7, ball8, ball9, ball10) {
console.log(ball1);
console.log(ball2);
console.log(ball3);
console.log(ball4);
console.log(ball5);
console.log(ball6);
console.log(ball7);
console.log(ball8);
console.log(ball9);
console.log(ball10);
}
pk10Control.eventEmitter.addListener('receive_balls', listenerPK10)