Aide pour comprendre tuto

Salut,

j'aimerai réaliser ce tuto http://arduino.cc/en/Tutorial/Dimmer avec ma Arduino Duemilanove mais je ne comprends pas ou il faut marquer ce texte:

Processing Code
Run the following sketch in Processing. It will send bytes out the serial port to the Arduino to dim the LED. 


 /* Processing code for this example */
  // Dimmer - sends bytes over a serial port
  // by David A. Mellis
  
  // This example code is in the public domain.

  import processing.serial.*;
  Serial port;
  
  void setup() {
  size(256, 150);
  
  println("Available serial ports:");
  println(Serial.list());
  
  // Uses the first port in this list (number 0).  Change this to
  // select the port corresponding to your Arduino board.  The last
  // parameter (e.g. 9600) is the speed of the communication.  It
  // has to correspond to the value passed to Serial.begin() in your
  // Arduino sketch.
  port = new Serial(this, Serial.list()[0], 9600);  
  
  // If you know the name of the port used by the Arduino board, you
  // can specify it directly like this.
  //port = new Serial(this, "COM1", 9600);
  }
  
  void draw() {
  // draw a gradient from black to white
  for (int i = 0; i < 256; i++) {
  stroke(i);
  line(i, 0, i, 150);
  }
  
  // write the current X-position of the mouse to the serial port as
  // a single byte
  port.write(mouseX);
  }
  */

Et est ce que ce projet est réalisable avec ma carte ? Ou faut'il ajouter des extensions?

Merci d'avance

Ce code est fait sous Processing.

Comme Arduino, mais tu fais tourner ça sur ton ordi via l'IDE Processing qui recompile le tout en Java.

Ah ok, merci beaucoup :slight_smile:

PS: au passage est ce que tu as un site pour apprendre à se débrouiller avec une Arduino Duemilanove (en francais si possible :-[ )stp

Ah ah, super merci beaucoup :slight_smile:

De rien et bon début :wink: