Last active
February 6, 2020 08:24
-
-
Save takataka5614/2f032432a0f281ae38ea343e200c2baf 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"); | |
// go to row 1 column 0, note that this is indexed at 0 | |
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