Bonjour à tous,
Je découvre Arduino Duemilanove (ATmega328)
Apres quelques test avec Arduino 0022
- Clignotement d'une led
- Commande par bouton poussoir
- serveur Web avec une carte ENC28J60
Pas de problème ça fontionne comme prévu

J'ai voulu tester une communication via les liaisons serie
Et là je bloque : >

Impossible de compiler si je veux utiliser serial1 sérial2 ou sérial3
Il me revoie ce message d'erreur
MultiSerialMega.cpp: In function 'void setup()':
MultiSerialMega:23: error: 'Serial1' was not declared in this scope
MultiSerialMega.cpp: In function 'void loop()':
MultiSerialMega:28: error: 'Serial1' was not declared in this scope
Après quelque recherche sur le net ils conseillent d'utiliser une autre librairie
newSoftwareSerial11
avec cette nouvelle librairie toujours impossible de compiler
et message d'erreur différent.
SoftwareSerialold\SoftwareSerial.cpp.o: In function `SoftwareSerial::begin(long)':
C:\arduino-0022\libraries\SoftwareSerialold/SoftwareSerial.cpp:46: multiple definition of `SoftwareSerial::begin(long)'
SoftwareSerial\SoftwareSerial.cpp.o:C:\arduino-0022\libraries\SoftwareSerial/SoftwareSerial.cpp:378: first defined here
SoftwareSerialold\SoftwareSerial.cpp.o: In function `SoftwareSerial::read()':
C:\arduino-0022\libraries\SoftwareSerialold/SoftwareSerial.cpp:55: multiple definition of `SoftwareSerial::read()'
SoftwareSerial\SoftwareSerial.cpp.o:C:\arduino-0022\libraries\SoftwareSerial/SoftwareSerial.cpp:424: first defined here
Si une personne à une idée je suis preneur
j'ai raté quelque chose ?
Il y a un problème de librairie ?
Merci d'avance pour votre aide.