document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. #include <LiquidCrystal.h>
  2. LiquidCrystal lcd(12, 11, 5, 4, 3, 2);
  3.  
  4. void setup() {
  5. lcd.begin(16, 2);
  6. lcd.print("SEEVER BLOG");
  7. }
  8.  
  9. void loop() {
  10.  
  11.   lcd.setCursor(0, 1);
  12.  
  13.   lcd.print(millis() / 1000);
  14. }
');