일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
- 월패드
- RS-485
- 애플
- 미국주식
- Apple
- ConnectedHomeIP
- matter
- 현대통신
- 국내주식
- 티스토리챌린지
- esp32
- 매터
- 오블완
- Python
- Bestin
- 홈네트워크
- Espressif
- 공모주
- Home Assistant
- 퀄컴
- 힐스테이트 광교산
- raspberry pi
- 엔비디아
- 나스닥
- 파이썬
- homebridge
- 해외주식
- 배당
- 코스피
- MQTT
- Today
- Total
목록chip (7)
YOGYUI
Matter - Pressure Measurement Cluster Developing Example using ESP32 SoC 지난 글에서 압력 측정(Pressure Measurement) 센서 관련 클러스터의 Matter 스펙에 대해 알아봤다 Matter Specification - Pressure Measurement Cluster Matter Specification - Pressure Measurement Cluster Matter :: Pressure Measurement Cluster This cluster provides an interface to pressure measurement functionality, including configuration and provision of n..
Matter - Carbon Dioxide Concentration Measurement Cluster Developing Example using ESP32 SoC 지난 글에서 대기 성분 농도 측정(Concentration Measurement) 센서 관련 클러스터들의 Matter 스펙에 대해 알아봤다 Matter Specification - Concentration Measurement Clusters Matter Specification - Concentration Measurement Clusters Matter :: Concentration Measurement Clusters The server cluster provides an interface to concentration measurem..
Matter - Temperature, Relative Humidity Measurement Cluster Developing Example using ESP32 SoC 지난번 글에서Temperature Measurement(온도 측정)와 Relative Humidity Measurement(상대 습도 측정)두 Matter Cluster에 대한 Specification을 알아봤다 Matter Specification - Temperature Measurement Cluster Matter Specification - Temperature Measurement Cluster Matter :: Temperature Measurement Cluster This cluster provides an interfa..
Matter - FanControl Cluster Developing Example using ESP32 SoC Matter 클러스터 중 하나인 Fan Control 클러스터는 모터(전동기)를 통해 회전하는 팬으로 동작하는 디바이스(선풍기, 서큘레이터, 에어컨, 공기청정기, 환풍기, 주방 후드 등)의 회전 속도 제어를 담당한다 ※ 클러스터의 스펙은 다음 글 참고 Matter Specification - Fan Control Cluster Matter Specification - Fan Control Cluster Metter :: Fan Control Cluster This cluster specifies an interface to control the speed of a fan. 모터 등으로 회전하는..
Matter - Google Home Developer Console Verify CSA-issued vendor ID Matter 기기의 개발이 완료됐으면 정식 제품 발매를 위해 CSA에 회원가입 후 Vendor ID(VID)를 발급받아야 한다 발급받은 Vendor ID DAC를 탑재한 Matter 기기를 제품 정식 발매 전 Google Home에서 인증 및 등록하게 하기 위해서는 Developer Console에서 해당 기기의 Vendor ID와 Product ID에 해당하는 Matter 통합을 생성해줘야 한다 ※ Googme Home 개발자 콘솔에서 Matter 개발을 위한 프로젝트 생성 방법은 지난 글에서 알아본 바 있다 Matter - Google Home 개발 프로젝트 생성하기 Matter -..
Matter - Catch Wi-Fi IP address assignment event BLE-WiFi 커미셔닝을 통해 매터 디바이스를 커미셔닝한 경우, 라우터(공유기)의 DHCP를 통해 IP주소(v4, v6)를 할당받게 된다 (dynamic or static address) IP 주소를 할당받은 후 웹서버 등 비매터(non-matter) 동작을 활성화하고 싶은 경우 IP주소 할당 이벤트를 캐치해야하는데, CHIP(Connected Home IP)의 PlatformManager의 이벤트 핸들러에 콜백을 추가하는 방식을 통해 구현하는 방법을 알아보자 함수원형 헤더파일 위치: connectedhomeip/src/include/platform/PlatformManager.h inline CHIP_ERROR P..
ESP32 + CHIP(Matter) 프로젝트를 esp-matter 프레임워크로 진행하고 있다 (CHIP 소스코드를 wrapping해놓은거라 esp32 기기에 적용하기에 꽤나 유용하다) BLE 커미셔닝하기 전에 ESP32에 HTTP나 웹소켓으로 접속해서 Matter 외 기타 디바이스 설정 기능을 구현하고 싶어서 깃허브 이슈로 문의해봤다 https://github.com/espressif/esp-matter/issues/205 Matter 1.0 specification에 따르면 SoftAP (AP: Access Point)는 Matter가 공인하는 방식이 아니라고 한다 (Matter에서는 BLE+Wi-Fi의 경우 커미셔닝 시 Wi-Fi는 Station 모드로만 작동하며, 사용자의 LAN에 접속하는 방식만..