일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 티스토리챌린지
- matter
- homebridge
- 엔비디아
- 퀄컴
- Apple
- 현대통신
- Espressif
- 오블완
- 미국주식
- MQTT
- raspberry pi
- esp32
- ConnectedHomeIP
- 국내주식
- 힐스테이트 광교산
- Python
- 매터
- Home Assistant
- 해외주식
- 코스피
- 공모주
- RS-485
- 배당
- Bestin
- 파이썬
- 홈네트워크
- 애플
- 나스닥
- 월패드
- Today
- Total
목록집안 난방 제어 (3)
YOGYUI
지난주부터 어마어마한 폭염이 계속되고 있다 오늘 문득 Apple Home 앱에서 Bestin 난방 관련 액세서리를 확인해봤는데 잉? 현재 온도가 5.5도로 표기되고 있었다... ?!?! Homebridge Log를 보니 MQTT로도 이상한 값이 들어오고 있었다 뭐지? 싶어서 월패드를 확인해보니 월패드는 또 제대로 값을 찍고 있었다 뭔가 이상하다 싶어서 RS485 패킷을 로깅해봤다 class Home: def onParserControlResult(self, chunk: bytearray): try: if len(chunk) < 10: return header = chunk[1] # [0x28, 0x31, 0x61] command = chunk[3] if header == 0x28 and command i..
[5] 마무리 거실, 침실, 컴퓨터방 모두 적절하게 액세서리 추가 { "accessory": "Thermostat", "name": "Living room thermostat", "apiroute": "http://localhost:9999/heat/room1", "temperatureDisplayUnits": 0, "currentRelativeHumidity": false, "heatOnly": true, "maxTemp": 40, "minTemp": 5, "minStep": 0.5, "listener": true, "port": 12345, "manufacturer": "Bestin", "serial": "yogyui thermostat", "model": "Bestin", "pollInterval"..
[4] Homebridge plug-in 설정 플러그인 키워드 thermostat으로 검색해보니 대다수 플러그인들은 Nest나 Honeywell같은 IoT 제품군들과 연계하여 사용해야 하는 것들이다 좀 더 찾아보니 @tommrodrigues가 업로드한 homebridge-web-thermostat가 HTTP기반 제어가 가능해 선택! https://github.com/Tommrodrigues/homebridge-web-thermostat#readme Tommrodrigues/homebridge-web-thermostat Homebridge plugin for a web-based thermostat. Contribute to Tommrodrigues/homebridge-web-thermostat devel..