ClubEnsayos.com - Ensayos de Calidad, Tareas y Monografias
Buscar

Libreria De Arduino Con Procesing


Enviado por   •  27 de Marzo de 2014  •  969 Palabras (4 Páginas)  •  287 Visitas

Página 1 de 4

Arduino Library for Processing (and Firmata)

This library allows you to control an Arduino board from Processing without writing code for the Arduino. Instead, you upload a standard firmware (program) to the board and communicate with it using the library. The firmware is called Firmata, and is included in the Arduino software. The corresponding Processing library can be downloaded below.

Download

Library for Processing v2.0: processing2-arduino.zip (Updated 6 Nov. 2013)

(properties file here: processing2-arduino.txt)

Library for Processing v1.5: processing-arduino.zip (Updated 11 Nov. 2011)

(properties file here: processing-arduino.txt)

Note: if you run Linux, you need to change Arduino.jar into arduino.jar, because Linux is case sensitive and it does not work if you don't change this letter (Arduino.jar is in the folder "library" of this Processing Library).

Instructions

1. Unzip the library and copy the "arduino" folder into the "libraries" sub-folder of your Processing Sketchbook. (You can find the location of your Sketchbook by opening the Processing Preferences. If you haven't made a "libraries" sub-folder, create one.)

2. Run Arduino, open the Examples > Firmata > StandardFirmata sketch, and upload it to the Arduino board.

3. Configure Processing for serial:http://processing.org/reference/libraries/serial/

4. In Processing, open one of the examples that comes with with the Arduino library.

5. Edit the example code to select the serial port used by Arduino. Specifically, change the [0] in this line

6. arduino = new Arduino(this, Arduino.list()[0], 57600);

To find the correct item in the array, run this code in Processing:

import processing.serial.*;

import cc.arduino.*;

println(Arduino.list());

The output window will enumerate your serial ports. Select the number corresponding to the serial port in your Arduino environment found under Tools > Serial Port.

7. Run the example.

Reference

These functions are in the Processing Arduino Library and communicate (from Processing) with a Arduino, upon which the Firmata sketch has been installed.

Arduino.list(): returns a list of the available serial devices. If your Arduino board is connected to the computer when you call this function, its device will be in the list.

Arduino(parent, name, rate): create an Arduino object. Parent should be "this" (without the quotes); name is the name of the serial device (i.e. one of the names returned by Arduino.list()); rate is the speed of the connection (typically 57600). Note that in the v2 library, the rate parameter is optional.

pinMode(pin, mode): set a digital pin to input, output, or servo mode (Arduino.INPUT, Arduino.OUTPUT, or Arduino.SERVO).

digitalRead(pin): returns the value of a digital pin, either Arduino.LOW or Arduino.HIGH (the pin must be set as an input).

digitalWrite(pin, value): writes Arduino.LOW or Arduino.HIGH to a digital pin.

analogRead(pin): returns the value of an analog input (from 0 to 1023).

analogWrite(pin, value): writes an analog value (PWM wave) to a digital pin that supports it (pins 3, 5, 6, 9, 10, and

11); value should be from 0 (always off) to 255 (always on).

servoWrite(pin, value): writes a value to a servo motor; value should be from 0 to 180.

Example

import processing.serial.*;

import cc.arduino.*;

Arduino arduino;

int ledPin = 13;

void setup()

{

//println(Arduino.list());

arduino = new Arduino(this, Arduino.list()[0], 57600);

arduino.pinMode(ledPin, Arduino.OUTPUT);

}

void draw()

{

arduino.digitalWrite(ledPin, Arduino.HIGH);

delay(1000);

arduino.digitalWrite(ledPin, Arduino.LOW);

delay(1000);

}

Another example

Hacking a Processing Sketch for Firmata (Firmata 101)

Troubleshooting

If you're having trouble getting this to work, you can ask for help in the Arduino Forum. If you've found a bug in the Arduino (Firmata) library for Processing, please report it on the GitHub issues list.

External Resources

Arduino meets processing from K3, malmoe with several examples for creating graphics from digital and analog sensor input

Tom Igoe's section on Processing with several communication and signal postprocessing examples

Pp. 169-176 in the "Physical Computing" book, by Dan O'Sullivan and Tom Igoe (preview in Google books)

You can also use the SimpleMessageSystem to communicate with Processing. Check the example in the download.

Manuals and Curriculum

Installing Arduino on Linux

Board Setup and Configuration

Development Tools

Arduino on other Atmel Chips

Interfacing With Hardware

Output

Input

User Interface

Storage

Communication

...

Descargar como (para miembros actualizados)  txt (7.5 Kb)  
Leer 3 páginas más »
Disponible sólo en Clubensayos.com