왼쪽 USB 포트는 CircuitPython이 설치되면 "CIRCUITPY" 이름을 가진 USB 드라이브처럼 작동하게 됨.
esptool 설치
pip install esptool
esp32-s3 bin 파일 다운로드
https://circuitpython.org/board/yd_esp32_s3_n16r8/
CircuitPython - YD-ESP32-S3 N16R8 Download
The YD-ESP32-S3 core board is designed by VCC-GND Studio. If necessary, you can visit www.vcc-gnd.com for purchase. The device uses the ESP32-S3 chip, which can be used for the test prototype of the Internet of Things application and can also be used for p
circuitpython.org
부트로드 모드에서 오른쪽 USB to Serial port (내 보드의 경우 com25)에 연결
(--port 다음에 자신의 보드에 USB to Serial port에 배정된 포트 번호를 넣어야함)
다운로드 받은 파일명 확인할 것(아래 예는 adafruit-circuitpython-yd_esp32_s3_n16r8-en_US-9.2.0.bin)
esptool --chip esp32s3 --port COM25 --before=default_reset --after=no_reset write_flash --flash_size detect --flash_mode dio 0x00000 adafruit-circuitpython-yd_esp32_s3_n16r8-en_US-9.2.0.bin
설치 완료 후
esp32-s3의 왼쪽 usb 포트에 연결된 포트 번호 확인(장치관리자를 통해서 확인 가능함)
Thonny에서 확인
도구>옵션 메뉴의 포트를 아래쪽 usb 포트로 선택 (내 보드의 경우 COM37임)
화면 아래쪽 쉘 창에서 정상적 연결 확인