본문 바로가기

전체 글207

[Arduino IDE] ESP32-S3 Software Serial 목표 ESP32-S3 Software Serial 1개 적용 배경 UART 총 4개 사용 필요 But ESP32-S3는 UART 3개 나머지 1개는 Software Seiral 사용해서 UART 구현 데이터 시트 (3/75 pages) 더보기 방법 EspSoftwareSerial 라이브러리 설치 라이브러리 다운 https://github.com/plerup/espsoftwareserial/releases Releases · plerup/espsoftwareserial Implementation of the Arduino software serial for ESP8266 - plerup/espsoftwareserial github.com ino 코드 #include #define MYPORT_TX 11 #.. 2023. 10. 26.
[Arduino IDE] ESP32-S3 APP Size 변경 목표 APP size 변경 (3MB -> 6MB) 배경 사용 중인 ESP32 칩은 16MB Flash을 가지고 있지만 Arduino IDE에서 Flash Size를 16MB로 설정했을 때 Partition Scheme에서는 아래 두 가지 옵션 밖에 없었다. 16M Flash (2MB APP/12.5MB FATFS) 16M Flash (3MB APP/9.9MB FATFS) APP Size 3MB가 살짝 작아서... 더 키우려고 한다. 방법 APP 크기를 늘리기 위해서 esp32 package 내부 파일을 수정했다. esp32 package의 github 링크는 다음과 같다. (참고용) https://github.com/espressif/arduino-esp32/releases app3M_fat9M_16MB.. 2023. 10. 21.
IoT 탁상시계 https://github.com/mokhwasomssi/IOT_TableClock/tree/main IoT 수업에서 했던 자그마한(?) 프로젝트 폭풍 진도 나가고 프로젝트도 있다길래 이마 짚었음. 2인1조 또는 1인1조. 2명이서 할 생각도 없었긴 한데 주변에서 1명팀이 낫다고 하더라. 굳뜨 작성했던 서류는 3개입니다. 계획서, 발표자료, 최종보고서. 발표 당일 오전 11시에 개발 마무리하고 오후 3시 발표 준비하느라 발표자료가 좀 허접하긴 함, 난 나름 넣을 것 다 넣었다고 생각했는데... 최종보고서는 이정도 쓰면 만점주시더라. 마감일 맞춰서 쓰느라 힘들었다. 이 프로젝트는 그냥 마감의 연속임. 계획서 마감, 개발 마감, 발표자료, 최종보고서 마감. 아악 일상에서 필요성을 느꼈던 프로젝트 주제라 개발.. 2023. 7. 29.
qt.qpa.plugin: Could not find the Qt platform plugin "wayland" deepsort dependency 몇 개 설치했더니 갑자기 이미지가 안뜨고 이런 오류 발생 터미널에 이거 쳐서 해결. QT_QPA_PLATFORM="xcb" https://venam.nixers.net/blog/unix/2016/10/25/x11-blah-blah.html Xcb, X11, Xlib, Wayland? What's happening here! This isn't a podcast about window managers and the ways to make one. (Though we might record one in the future) It's about the architectural differences between the different ways of interacting w.. 2023. 7. 26.
size_with_stride larger than model origin size https://github.com/rockchip-linux/rknpu2/tree/master/examples/rknn_yolov5_demo/model/RK3588 yolov5s-640-640.rknn Rockchip에서 예제로 준 RNKK 모델 가져다 썼는데, 아래와 같은 메세지가 출력된다. 객체 인식은 잘 되긴 하지만 이런거 뜨니까 찝찝함. W RKNN: [15:55:03.096] Output(269): size_with_stride larger than model origin size, if need run OutputOperator in NPU, please call rknn_create_memory using size_with_stride. 똑같은 메시지 나온 사람들... https://gith.. 2023. 7. 22.
RKNN-ToolKit-Lite2 설치 개요 목표 Rockchip RK3588S에서 객체 인식 및 객체 추적 개발 환경 Ubuntu 22.04 Python 3.10 오렌지 파이 5(RK3588S) http://www.orangepi.org/html/hardWare/computerAndMicrocontrollers/details/Orange-Pi-5B.html 뎁스 카메라(리얼센스 435i) RGB 카메라만 사용 RKNN-ToolKit-Lite2 (python API) https://github.com/rockchip-linux/rknn-toolkit2 이 글에서는 RKNN-ToolKit-Lite2 설치해서 데모 돌려봄. RKNN 모델이란? 오렌지 파이5 임베디드 보드를 사용하고 있고, Rockchip RK3588S SOC가 들어간다. RK35.. 2023. 7. 13.