https://github.com/elmodo7/arduino-uno-r4-wifi-wakeonlan
A Wake on LAN utility to send WoL packets from your Arduino UNO R4 via WiFi with the help of the built-in ESP32.
https://github.com/elmodo7/arduino-uno-r4-wifi-wakeonlan
Last synced: 11 months ago
JSON representation
A Wake on LAN utility to send WoL packets from your Arduino UNO R4 via WiFi with the help of the built-in ESP32.
- Host: GitHub
- URL: https://github.com/elmodo7/arduino-uno-r4-wifi-wakeonlan
- Owner: elModo7
- Created: 2025-09-01T12:08:35.000Z (11 months ago)
- Default Branch: main
- Last Pushed: 2025-09-01T17:02:49.000Z (11 months ago)
- Last Synced: 2025-09-01T19:07:07.408Z (11 months ago)
- Language: C++
- Size: 3.91 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Arduino UNO R4 Wi-Fi WakeOnLan
Basic example of an Arduino Uno R4 WiFi WoL sender on startup.
You can use this with a beautiful web UI.
> [!NOTE]
> Remember to change this parts of the script to adapt it to your needs!
```c++
const uint8_t TARGET_MAC[6] = { 0x00, 0x14, 0x93, 0xEA, 0x23, 0x46 }; // Replace this with your device's MAC address
const char* SSID = "";
const char* PASS = "";
```