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.
LCD.h
00001 #include "mbed.h" 00002 00003 #define LCD_ADDRESS (0x3E << 1) 00004 00005 class LCD 00006 { 00007 public: 00008 LCD(PinName sda, PinName scl);// constructor 00009 void clear(); 00010 void print(char *str); 00011 void cursor(char col, char row); 00012 private: 00013 char data[2]; 00014 void init(); 00015 void sendCommand(char value); 00016 I2C i2c; 00017 };
Generated on Mon Aug 1 2022 09:58:12 by
