2012/05/22

Sketch for Testing Freeduino/Arduino LCD Keypad Shield

Pins Used

D8, D9, D4, D5, D6, D7, A0

Serial Monitor Output
Sketch


/*
  ASCII table

 Prints out byte values in all possible formats:  
 * as raw binary values
 * as ASCII-encoded decimal, hex, octal, and binary values

 For more on ASCII, see http://www.asciitable.com and http://en.wikipedia.org/wiki/ASCII

 The circuit:  No external hardware needed.

 created 2006
 by Nicholas Zambetti 
 modified 18 Jan 2009
 by Tom Igoe

 modified by Befun Hung on Sunday, 20 May 2012
 file name: LCDKeypadShieldTestKeyNone.pde
 for use in testing 16x2 LCD module
 added codes from acw@home (HKEPC Hardware) to test Keypad on Monday, 21 May 2012
 added codes for debouncing and key touching on Tuesday, 22 May 2012

 This example code is in the public domain.
 The sketch works on Arduino IDE 0022

 <http://www.zambetti.com> 

 */
#include <LiquidCrystal.h>
LiquidCrystal lcd(8, 9, 4, 5, 6, 7);

// analog PIN A0
#define KEY_PIN 0
#define KEY_NONE 1020
int key;
int last_key = -1; //save the last key pressed

void setup() 

  Serial.begin(9600); 
  lcd.begin(16, 2);
  last_key = KEY_NONE;
  lcd.clear();

  // prints title with ending line break 
  // Serial.println("ASCII Table ~ Character Map"); 


// first visible ASCIIcharacter '!' is number 33:
int thisByte = 33; 
// you can also write ASCII characters in single quotes.
// for example. '!' is the same as 33, so you could also use this:
//int thisByte = '!';  

void loop() 

  // prints value unaltered, i.e. the raw binary version of the 
  // byte. The serial monitor interprets all bytes as 
  // ASCII, so 33, the first number,  will show up as '!' 
  
  // lcd.clear();
  for (int i=0;i<16;i++)
  {
    Serial.print(thisByte, BYTE); 
    lcd.setCursor(i, 0);
    lcd.print(char(thisByte));
    lcd.setCursor(i, 1);
    lcd.print(char(thisByte));
    delay(50);
  }
  Serial.println();
  // Serial.print(", dec: "); 
  // prints value as string as an ASCII-encoded decimal (base 10).
  // Decimal is the  default format for Serial.print() and Serial.println(),
  // so no modifier is needed:
  // Serial.print(thisByte);      
  // But you can declare the modifier for decimal if you want to.
  //this also works if you uncomment it:

  // Serial.print(thisByte, DEC);  


  // Serial.print(", hex: "); 
  // prints value as string in hexadecimal (base 16):
  // Serial.print(thisByte, HEX);     

  // Serial.print(", oct: "); 
  // prints value as string in octal (base 8);
  // Serial.print(thisByte, OCT);     

  // Serial.print(", bin: "); 
  // prints value as string in binary (base 2) 
  // also prints ending line break:
  // Serial.println(thisByte, BIN);   

  // if printed last visible character '~' or 126, stop: 
  if(thisByte == 126) {     // you could also use if (thisByte == '~') {
    lcd.clear();
    // This loop loops forever and does nothing
    while(true) {
      key = analogRead(KEY_PIN);
      delay(200); // for debouncing
      if (key <= KEY_NONE && key != last_key) {
        lcd.setCursor(0,1);
        lcd.print(key);
        lcd.print("    ");
        Serial.println(key);
        last_key = key;
      }
      continue; 
    } 
  } 
  // go on to the next character
  thisByte++;  
  delay(100);
}

No comments:

Post a Comment