added some libs and projects

This commit is contained in:
Johannes Findeisen 2015-08-25 23:22:27 +02:00
commit c175b7c85c
39 changed files with 2546 additions and 0 deletions

View file

@ -0,0 +1,17 @@
#include <Wire.h>
#include <LiquidCrystal_I2C.h>
LiquidCrystal_I2C lcd(0x27,20,4); // set the LCD address to 0x27 for a 20 chars and 4 line display
void setup()
{
lcd.init(); // initialize the lcd
// Print a message to the LCD.
lcd.backlight();
lcd.print("Hello, world!");
}
void loop()
{
}