Oi shin
Dependencies: Servo TCS3200 TextLCD2 mbed
LCD.cpp
- Committer:
- Victor_Mirkhan
- Date:
- 2017-05-29
- Revision:
- 0:a204dd3fa164
File content as of revision 0:a204dd3fa164:
#include "mbed.h"
#include "TextLCD.h"
// Set do display LCD 20x4 com o módulo I2C
I2C i2c_lcd(D14,D15);
TextLCD_I2C lcd(&i2c_lcd, 0x7E,TextLCD::LCD20x4);
int main() {
lcd.setBacklight(TextLCD::LightOn);
lcd.printf("Billy gordo");
}