Skip to content

Instantly share code, notes, and snippets.

@takataka5614
Created February 6, 2020 08:28
Show Gist options
  • Save takataka5614/d3d27f7d93d989ca82cf52f5e0a8c780 to your computer and use it in GitHub Desktop.
Save takataka5614/d3d27f7d93d989ca82cf52f5e0a8c780 to your computer and use it in GitHub Desktop.
/* ESP32でLCDに文字表示
*
*/
#include <LiquidCrystal.h>
LiquidCrystal lcd(32,25,26,27,14,13);
void setup()
{
lcd.begin(16, 2);
lcd.clear();
lcd.print("How to Interface");
lcd.setCursor(0,1);
lcd.print ("LCD with ESP32");
}
void loop() {
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment