esp32-homekit
ESP-32 implementation of Apple Homekit Accessory Protocol(HAP)
C★ 451⑂ 121 forksApache-2.0updated 6 years ago
git clone https://github.com/younghyunjo/esp32-homekit.gityounghyunjo/esp32-homekitREADME.mdfork it — it’s yours
esp32-homekit
This project is impemented Apple Homekit Accessory Protocol(HAP) to ESP32.
You can make your own Homekit accessory with ESP32 with this project.
Demo
Resource
Prerequisite
The esp32-homekit is using esp-idf libraries and build.
Please install ESP-IDF
- ESP-IDF Setup Guide
Download
$ git clone https://github.com/younghyunjo/esp32-homekit.git
$ cd esp32-homekit
$ git submodule update --init --recursive
Configuration
WiFi
esp32-homekit uses WiFi as tranmission layer.
To connection WiFi, you MUST config WiFi ssid and password.
- Open examples/switch/main/main.c
- Change EXAMPLE_ESP_WIFI_SSID, and EXAMPLE_ESP_WIFI_PASS
#define EXAMPLE_ESP_WIFI_SSID "unibj"
#define EXAMPLE_ESP_WIFI_SSID "12345678"
Build
$ cd examples/switch
$ make
$ make flash
Setup Code
While pairing accessory and iOS devices, You must enter Setup Code at HOME App. The default setupt code is
053-58-917
more like this
esphome_modbus_bridge
ESPHome Modbus TCP↔RTU Bridge – Transparent bridge for ESP8266/ESP32 that lets multiple Modbus TCP clients communicate…
C++★ 53