I am new at Arduino and I have two questions... I found nothing on the internet about my problems:
for(int i = 0; i < 3; i++) {
Serial.println("Test: " + i);
}
The output:
test:
est:
st:
Second problem: I am using LiquidCrystal to show a text on the display. It's a Sparkfun Color LCD Shield.
LiquidCrystal lcd(12, 11, 5, 4, 3, 2);
void setup() {
Serial.begin(9600);
/* NOT WORKING
lcd.begin(16, 2);
lcd.print("Hello World!");
*/
}
Thanks for helping me!