danke für die viele Info, CDK.
ich bin auch bei Arduino.cc auf folgendes gestoßen.
http://playground.arduino.cc/Main/Li...l#.UzMMK9xAigg

Code:
#include <SPI.h>
//some comments missing here but they will be in the original sketch
// include the library code:
#include <LiquidCrystal.h>
// initialize the library with the number of the sspin
//(or the latch pin of the 74HC595)
LiquidCrystal lcd(10);
void setup()
{
// set up the LCD's number of columns and rows:
lcd.begin(20, 4);
// Print a message to the LCD.
lcd.print("hello, world!");
}
void loop() {
// set the cursor to column 0, line 1
// (note: line 1 is the second row, since counting begins with 0):
lcd.setCursor(0, 1);
// print the number of seconds since reset:
lcd.print(millis()/1000);
}
das sieht doch auch ned schlecht aus?
das könnte doch auch funktionieren oder ?
das mit dem I2C kann ich ja dann immer noch ausprobieren.
Mfg Benny
Lesezeichen