Created
May 16, 2012 14:10
-
-
Save houmei/2710638 to your computer and use it in GitHub Desktop.
Arduino UNO LCD test
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// include the library code: | |
#include <LiquidCrystal.h> | |
unsigned int t; | |
// initialize the library with the numbers of the interface pins | |
LiquidCrystal lcd(9, 8, 7, 6, 5, 4); | |
void setup() { | |
// set up the LCD's number of columns and rows: | |
lcd.begin(16, 2); | |
} | |
void loop() { | |
// set the cursor to column 0, line 1 | |
// (note: line 1 is the second row, since counting begins with 0): | |
t=1+millis()/200; | |
lcd.setCursor(0,0); | |
if(t%3==0 && t%5==0) { | |
lcd.print("FizzBuzz"); | |
} else { | |
if (t%3==0) { | |
lcd.print("Fizz "); | |
} else { | |
if (t%5==0) { | |
lcd.print("Buzz "); | |
} else { | |
lcd.print(" "); | |
} | |
} | |
} | |
lcd.setCursor(0, 1); | |
lcd.print(t); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment