Gast
#6162989
Hallo,
habe seit kurzem das Problem, dass mein Sketch (Ardino IDE) nicht
startet (Arduino Uno Rev3 Original).
Bitte bis 4. März 2020 antworten! (PS ist für Physik)
Danke im Voraus
Hier der Code (Arduino IDE Beispiel: Display)
// include the library code:
#include <LiquidCrystal.h>
// initialize the library by associating any needed LCD interface pin
// with the arduino pin number it is connected to
const int rs = 12, en = 11, d4 = 5, d5 = 4, d6 = 3, d7 = 2;
LiquidCrystal lcd(rs, en, d4, d5, d6, d7);
void setup() {
// set up the LCD's number of columns and rows:
lcd.begin(16, 2);
// Print a message to the LCD.
lcd.print("Experimentieren!");
}
void loop() {
// Turn off the display:
lcd.noDisplay();
delay(500);
// Turn on the display:
lcd.display();
delay(500);
}