https://github.com/mr-addict/homekit-wol
This is an ESP32 homespan project that allows you to wake up your PC from sleep using Apple HomeKit.
https://github.com/mr-addict/homekit-wol
homekit homespan wol
Last synced: 4 months ago
JSON representation
This is an ESP32 homespan project that allows you to wake up your PC from sleep using Apple HomeKit.
- Host: GitHub
- URL: https://github.com/mr-addict/homekit-wol
- Owner: MR-Addict
- Created: 2024-10-22T10:31:07.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-04-27T02:11:41.000Z (about 1 year ago)
- Last Synced: 2025-07-22T07:52:59.846Z (12 months ago)
- Topics: homekit, homespan, wol
- Language: C++
- Homepage:
- Size: 6.84 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# HomeKit Wake Up Your PC
This is an ESP32 homespan project that allows you to wake up your PC from sleep using Apple HomeKit.
## Setup your PC MAC
Open [main.ino](src/main/main.ino) and add your PC MAC address like this:
```cpp
// 设置第一台设备
new SpanAccessory();
new Service::AccessoryInformation();
new Characteristic::Identify();
new HSWOL("E0:51:D8:11:3D:CE");
// 设置第二台设备
new SpanAccessory();
new Service::AccessoryInformation();
new Characteristic::Identify();
new HSWOL("74:56:3C:D3:65:74");
```
## Add to your Home app
Follow up the **serial** output to setup your WiFi network and add to your Home app.
Default pair pin is **HSPN**, and default pair code is **466-37-726**.
[Reference](https://github.com/HomeSpan/HomeSpan/blob/master/docs/QRCodes.md)