An open API service indexing awesome lists of open source software.

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.

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 = "";
```