Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: mbed TextLCD keypad
Keyboard.cpp
00001 #include "Keyboard.h" 00002 00003 00004 Keyboard::Keyboard(KeyboardPins keyboardPins) : Keypad( 00005 keyboardPins.rows[0], keyboardPins.rows[1], keyboardPins.rows[2], keyboardPins.rows[3], 00006 keyboardPins.cols[0], keyboardPins.cols[1], keyboardPins.cols[2], NC 00007 ){ 00008 } 00009 00010 const char Keyboard::KEYTABLE[] = { '1','2','3', 00011 '4','5','6', 00012 '7','8','9', 00013 '*','0','#' 00014 }; 00015
Generated on Tue Jul 12 2022 21:04:09 by
1.7.2