Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

arduinode

Package Overview
Dependencies
Maintainers
1
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

arduinode

Framework to connect the Arduino and node.js.

  • 0.9.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
2
Maintainers
1
Weekly downloads
 
Created
Source

What's this? : これは何?

node.jsからArduinoを操作するニクい奴。

Nice guy that you can manipulate the Arduino from node.js.

Arduinoのプログラミングを不要にし、node.jsだけでアプリケーションが作れます。

No programming of Arduino. application can make only node.js.

How to use : 使い方

Only 3 steps.

1. Get the source code : ソースコードの取得

npm install arduinode

2. Write the program to Arduino : スケッチをArduinoに書き込む

Open the Sketch(sketch/arduinode/arduinode.ino) in Arduino IDE, write to the Arduino.

3. Write the node.js code! : プログラミングじゃぁ!

Example

var Arduinode = require("arduinode").Arduinode;

// How to find the serial port?
// ls /dev | grep usb
var portName = "/dev/tty.usbmodem1411";

var arduinode = new Arduinode(port, function(err, result){
  if(err){
    return console.log(err);
  }
  console.log("open");

  // Read analog port value.
  arduinode.analogRead(0, function(err, result){
    if(err){
      return console.log(err);
    }

    console.log(result);
    // { msg: "OK", port: 0, val: 401 }

    arduinode.close(function(){
      console.log("close");
    });
  });
});

Features

Analog read, write support

arduinode.analogRead(port, callback);
arduinode.analogWrite(port, value, callback);

Didital read, write support

arduinode.digitalRead(port, callback);
arduinode.digitalWrite(port, value, callback);

Port change interrupt support

// num  : Interrupt number. 0 or 1
// mode : "CHANGE" or "RISING" or "FALLING" or "LOW"
arduinode.attachInterrupt(num, mode, callback)
arduinode.detachInterrupt(num, callback);

// Receive interrupt event.
arduinode.on("event", function(data){
  console.log(data);
});

Timer overflow Interrupt support

digitalStreamOn(port, intervalMiliSec, callback);
digitalStreamOff(port, callback);

// Receive interrupt event.
arduinode.on("event", function(data){
  console.log(data);
});

Document

API document を見る!

Example application

arduinode.js + WebSocket(socket.io) + express

Come here!

Keywords

FAQs

Package last updated on 27 Dec 2013

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc