Skip to content

Instantly share code, notes, and snippets.

View futureshocked's full-sized avatar

Peter Dalmaris futureshocked

View GitHub Profile
@kaizenlabs
kaizenlabs / LCD & KeyPad Mini Project (DHT, Keypad, LCD, & Photoresistor)
Created October 2, 2015 07:14
Mini Project Example For Lecture 36: Arduino Step By Step on Udemy
#include <Keypad.h>
#include <LCD.h>
#include <LiquidCrystal_I2C.h>
#include <DHT.h>
#include <Wire.h>
#define DHTPIN 10
#define DHTTYPE DHT22
DHT dht(DHTPIN,DHTTYPE);