Created
February 6, 2020 08:28
-
-
Save takataka5614/d3d27f7d93d989ca82cf52f5e0a8c780 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* 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