duino
duino copied to clipboard
:bulb: Arduino framework for node.js
Following the instructions I just keep getting a "define not defined" message. Example: ``` $ node examples/led.js /Users/ruben/projects/arduino/noduino/node_modules/duino/lib/board.js:1 (function (exports, require, module, __filename, __dirname) { define(function( ^ ReferenceError: define is...
Previous regular expression matches e.g. `/dev/usb`, which is undesirable. All Arduinos should show up as `/dev/tty(USB|ACM|S)[number]` (see [Arduino docs](http://playground.arduino.cc/Linux/All); `ttyS0` is reportedly for some clones or other non-standard *duinos).
Instead of trying to establish the serial connection in the Board constructor, delegate this to a separate `setup()`. (**API change**!) This allows the user to add listeners to the Board’s...
New command: Send IR remote command with Ken Shirriff’s IRRemote lib. (rebased onto upstream (i.e. this) master from @ni-c/duino)
New command: Send RC power socket on/off with RC-Switch lib. (rebased onto upstream (i.e. this) master from @ni-c/duino)
Not critical by any means, but why not ditch `colors`. Fixes #49
https://github.com/sindresorhus/chalk
Sending SIGINT (^c) to the process when in debug mode causes the process to (at least appear to) hang, because the serial port is still open. Instead of deleting our...
adds native sound support through arduino's `tone` method. Also added respective javascript library to abstract serial communication.
I've added a library to handle a joystick with 2 axis connected to analog pins like this one:  It triggers events depending on...