본문 바로가기

전체 글210

UUID What is a UUID?A UUID (Universally Unique Identifier) is a 128-bit identifier used to uniquely identify information in computer systems. It is also sometimes referred to as a GUID (Globally Unique Identifier), which is a term more commonly used by Microsoft.Structure of a UUID:A UUID is typically represented as a 36-character string, including four hyphens, in the following format:xxxxxxxx-xxxx-.. 2024. 8. 24.
Topology In the context of networking, topology refers to the arrangement or structure of various elements (such as nodes, links, and devices) in a computer network. It describes how the devices (computers, routers, switches, etc.) are physically or logically interconnected.Types of Network Topologies:Physical Topology:This refers to the actual physical layout of the cables, devices, and connections in a.. 2024. 8. 24.
ASAM FIBEX ASAM FIBEX (Field Bus Exchange Format) is a standardized data format used in the automotive industry to describe the communication network within vehicles. It was developed under the auspices of ASAM (Association for Standardization of Automation and Measuring Systems), which is an international organization that creates standards for automotive electronics and software.Key Aspects of ASAM FIBEX.. 2024. 8. 24.
[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.