UNPKG

bonescriptjtjk

Version:

Physical computing library for embedded Linux

13 lines (12 loc) 393 B
// Copyright (C) 2013 - Texas Instruments, Jason Kridner exports.OUTPUT = "out"; exports.INPUT = "in"; exports.INPUT_PULLUP = "in_pullup"; exports.HIGH = 1; exports.LOW = 0; exports.LSBFIRST = 1; // used in: shiftOut(dataPin, clockPin, bitOrder, val) exports.MSBFIRST = 0; exports.CHANGE = "both"; exports.RISING = "rising"; exports.FALLING = "falling"; exports.ANALOG_OUTPUT = "analog_out";