Primeiramente desculpa postar aqui no fórum de Java. é que este é o único fórum que participo e não achei um BR de arduino..
bom... seguinte.... comprei um Arduino UNO + este lcd: http://dx.com/p/lcd-keypad-shield-expansion-board-for-arduino-uno-136426
eu estou tentando fazer um simples "Hello World" mais não está dando certo :(
ele compila, envia pro arduino, mais não aparece na tela...
tentei vários tutoriais que não envolve o LCD e deu certo.... por exemplo este:
int ledPin = 13; // LED connected to digital pin 13
void setup() {
// initialize the digital pin as an output:
pinMode(ledPin, OUTPUT);
}
// the loop() method runs over and over again,
// as long as the Arduino has power
void loop() {
digitalWrite(ledPin, HIGH); // set the LED on
delay(1000); // wait for a second
digitalWrite(ledPin, LOW); // set the LED off
delay(1000); // wait for a second
}
