'project_n_planning/ESP32CAM_QRCode_Reader'에 해당되는 글 3건
- 2021.05.23 :: ESP32-CAM AI-Thinker Pinout Guide
- 2021.05.23 :: ESP32-CAM programmer
- 2021.05.23 :: ESP32QRCodeReader
https://randomnerdtutorials.com/esp32-cam-ai-thinker-pinout/
ESP32-CAM AI-Thinker Pinout Guide: GPIOs Usage Explained | Random Nerd Tutorials
The ESP32-CAM is a dev board with an ESP32-S chip, an OV2640 camera, microSD card and several GPIOs to connect peripherals. Learn how to use the ESP32-CAM GPIOs.
randomnerdtutorials.com
'project_n_planning > ESP32CAM_QRCode_Reader' 카테고리의 다른 글
ESP32-CAM programmer (0) | 2021.05.23 |
---|---|
ESP32QRCodeReader (0) | 2021.05.23 |
https://www.instructables.com/ESP32-Cam-Programmer/
ESP32-Cam Programmer
ESP32-Cam Programmer: ESP32-Cam is a compact size and low cost ESP32 Development board with OV2640 camera. There's no USB programming port, so you need external programmer like FTDI, CH340 or CP2102 to upload code through serial pins (UOR and UOT). While i
www.instructables.com
'project_n_planning > ESP32CAM_QRCode_Reader' 카테고리의 다른 글
ESP32-CAM AI-Thinker Pinout Guide (0) | 2021.05.23 |
---|---|
ESP32QRCodeReader (0) | 2021.05.23 |
#ESP32CAM
- ESP32QRCodeReader test record with PlatformIO
> PlatformIO as VSCode plugin
- platformio.ini
; PlatformIO Project Configuration File ; ; Build options: build flags, source filter ; Upload options: custom upload port, speed and extra flags ; Library options: dependencies, extra library storages ; Advanced options: extra scripting ; ; Please visit documentation for the other options and examples ; https://docs.platformio.org/page/projectconf.html [env:esp32cam-3] platform = espressif32 board = esp32cam framework = arduino lib_deps = alvarowolfx/ESP32QRCodeReader @ ^1.1.0 alvarowolfx/ESP32QRCodeReader @ ~1.1.0 alvarowolfx/ESP32QRCodeReader @ 1.1.0 monitor_speed = 115200 |
https://platformio.org/lib/show/10940/ESP32QRCodeReader/examples
PlatformIO is a professional collaborative platform for embedded development
Open source, cross-platform IDE and Unified Debugger. Static Code Analyzer and Remote Unit Testing. Multi-platform and Multi-architecture Build System. Firmware File Explorer and Memory Inspection.
platformio.org
- Sample QRCode Image
Appendix:
A.1
아두이노 라이브러리 추가하는 방법
안녕하세요 코딩런입니다. 책이나 인터넷에서 아두이노 예제를 보고 따라하다보면 라이브러리를 추가하는 일이 생깁니다. 이 때 라이브러리 파일이 없어 에러가 나는 경험을 해 보셨을 겁니다.
codingrun.com
A.2
https://www.arduino.cc/en/guide/libraries
Arduino - Libraries
Installing Additional Arduino Libraries Once you are comfortable with the Arduino software and using the built-in functions, you may want to extend the ability of your Arduino with additional libraries. What are Libraries? Libraries are a collection of cod
www.arduino.cc
A.3
https://github.com/alvarowolfx/ESP32QRCodeReader
alvarowolfx/ESP32QRCodeReader
A library to read QR Codes using an ESP32 with a camera module. - alvarowolfx/ESP32QRCodeReader
github.com
'project_n_planning > ESP32CAM_QRCode_Reader' 카테고리의 다른 글
ESP32-CAM AI-Thinker Pinout Guide (0) | 2021.05.23 |
---|---|
ESP32-CAM programmer (0) | 2021.05.23 |