본문 바로가기

Arduino

I2C LCD with ESP32

esp32 와 20x4 LCD , 4x4 keypad를 조합하여 입력장치를 꾸며봤다.

펌웨어는 여러 사이트를 참조해서 정리를 해봤다. 

 

https://randomnerdtutorials.com/esp32-esp8266-i2c-lcd-arduino-ide/

 

I2C LCD with ESP32 on Arduino IDE - ESP8266 compatible | Random Nerd Tutorials

Learn how to use the I2C LCD (Liquid Crystal Display) with the ESP32 or ESP8266 using Arduino IDE. We'll show you how to wire the display and write code.

randomnerdtutorials.com

 

** GPIO 참고
byte pin_rows[ROW_NUM] = {19, 18, 5, 17}; // GIOP19, GIOP18, GIOP5, GIOP17 connect to the row pins
byte pin_column[COLUMN_NUM] = {16, 4, 23, 15}; // GIOP16, GIOP4, GIOP23, GIOP15 connect to the column pins

https://github.com/fdebrabander/Arduino-LiquidCrystal-I2C-library

 

GitHub - fdebrabander/Arduino-LiquidCrystal-I2C-library: Library for the LiquidCrystal LCD display connected to an Arduino board

Library for the LiquidCrystal LCD display connected to an Arduino board. - GitHub - fdebrabander/Arduino-LiquidCrystal-I2C-library: Library for the LiquidCrystal LCD display connected to an Arduino...

github.com

 

https://www.aranacorp.com/en/using-a-4x4-digital-keypad-with-arduino/

 

Using a 4x4 Digital Keypad with Arduino • AranaCorp

Whether it's a calculator or the keypad of a building, we commonly use numeric keypads. The 4x4 numeric keypad is a matrix of 16 buttons whose states can

www.aranacorp.com

https://esp32io.com/tutorials/esp32-keypad

 

ESP32 - Keypad | ESP32 Tutorial

Learn how to use keypad with ESP32, how to connect keypad to ESP32, how to code for keypad, how to check keypad password, how to program ESP32 step by step. The detail instruction, code, wiring diagram, video tutorial, line-by-line code explanation are pro

esp32io.com

 

참고) minicom

https://hoho325.tistory.com/29

 

[Ubuntu] 리눅스 minicom 설치 및 사용법, usb 시리얼 접속

안녕하세요 호호만두에요 오늘은 우분투, 리눅스 환경에서 minicom을 설치하는 방법과 사용법에 대해서 알아보려고해요 minicom은 임베디드시스템에서 usb 시리얼 통신을 위해서 많이 사용되는 유

hoho325.tistory.com

https://kgkang.tistory.com/176

 

210222 우분투 minicom 종료

통신 터미널 프로그램 minicom을 실행해서 사용하다가 종료하는 방법. 이것을 몰라서 그냥 터미널을 닫았었다. ㅡ.ㅡ; minicom을 실행하면 연결되고 아래와 같은 메시지가 나온다. 즉, CTRL-A Z 를 누르

kgkang.tistory.com