hii soalan 3

Fork of KeypadLib by fitri ariffin

Revision:
9:1f7793af2f64
Parent:
8:862b0a362754
Child:
10:d66b1727615d
--- a/keypad.h	Sat Sep 19 16:28:14 2015 +0000
+++ b/keypad.h	Sat Sep 19 16:41:14 2015 +0000
@@ -60,13 +60,13 @@
  * {
  *  keypad.enablePullUp();
  *  char key;
- *  pc.printf("Please touch a key on the keypad\n\r");
+ *  pc.printf("Please touch a key on the keypad\r\n");
  *  while(1)
  *  { 
  *	key = keypad.getKey();	
  * 	if(key != KEY_RELEASED)
  *	{
- *	   pc.printf("%c\n",key);
+ *	   pc.printf("%c\r\n",key);
  *	   wait(0.2);
  *	 }
  *  }