Private
Public Access
2
0

JS examples: refactor for clarity and consistent style

Signed-off-by: Kassandra Perch <the@nodebotani.st>
Signed-off-by: Alex Tereschenko <alext.mkrs@gmail.com>
This commit is contained in:
Kas Perch
2017-02-23 00:57:19 -06:00
committed by Alex Tereschenko
parent 43d9f6c400
commit 075a7b1225
12 changed files with 145 additions and 127 deletions

View File

@@ -22,27 +22,29 @@
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
var m = require('mraa');
"use strict";
const mraa = require('mraa');
// GPIO-PIN
m.gpioFromDesc("gpio-1");
mraa.gpioFromDesc("gpio-1");
// GPIO-RAW-RAWPIN
m.gpioFromDesc("gpio-raw-131");
mraa.gpioFromDesc("gpio-raw-131");
// AIO-PIN
m.aioFromDesc("aio-1");
mraa.aioFromDesc("aio-1");
//PWM-PIN
m.pwmFromDesc("pwm-6");
mraa.pwmFromDesc("pwm-6");
// PWM-RAW-CHIPID-PIN
m.pwmFromDesc("pwm-raw-0-1")
mraa.pwmFromDesc("pwm-raw-0-1")
// UART-INDEX: the index is the one represented internally in the uart_dev array
m.uartFromDesc("uart-0");
mraa.uartFromDesc("uart-0");
// UART-RAW-PATH
m.uartFromDesc("uart-raw-/dev/ttyS0");
mraa.uartFromDesc("uart-raw-/dev/ttyS0");
// SPI-INDEX: same as UART
m.spiFromDesc("spi-0");
mraa.spiFromDesc("spi-0");
// SPI-RAW-BUS-CS: USED to open and use /dev/spidev<BUS>.<CS>
m.spiFromDesc("spi-raw-0-1");
mraa.spiFromDesc("spi-raw-0-1");
// I2C-INDEX: same as UART
m.i2cFromDesc("i2c-0");
mraa.i2cFromDesc("i2c-0");
// I2C-RAW-BUS
m.i2cFromDesc("i2c-raw-0");
mraa.i2cFromDesc("i2c-raw-0");