This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var mraa = require ('mraa'); | |
/* | |
If you get any mraa missing errors, run this on your board: | |
$ echo "src mraa-upm http://iotdk.intel.com/repos/1.1/intelgalactic" > /etc/opkg/mraa-upm.conf | |
$ opkg update | |
$ opkg install libmraa0 | |
*/ | |
var LCD = require ('jsupm_i2clcd'); | |
/* |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* global setInterval: false, setTimeout: false, clearInterval: false, clearTimeout:false, module: false, console: false */ | |
/** | |
* Module exports. | |
*/ | |
module.exports = LcdTextHelper; | |
/** | |
* LcdTextHelper constructor. |