This repository has been archived by the owner on Feb 4, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
### Initial Releases v2.0.0 1. Initial coding to port [AsyncUDP](https://github.com/espressif/arduino-esp32/tree/master/libraries/AsyncUDP) to ESP32 boards using `LwIP W6100 Ethernet` 2. Add more examples. 3. Add debugging features. 4. Bump up to v2.0.0 to sync with [AsyncUDP v2.0.0](https://github.com/espressif/arduino-esp32/tree/master/libraries/AsyncUDP).
- Loading branch information
1 parent
7d01d8a
commit d01a89e
Showing
23 changed files
with
3,428 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
# See: https://github.com/codespell-project/codespell#using-a-config-file | ||
[codespell] | ||
# In the event of a false positive, add the problematic word, in all lowercase, to a comma-separated list here: | ||
ignore-words-list = , | ||
check-filenames = | ||
check-hidden = | ||
skip = ./.git,./src,./examples,./Packages_Patches,./LibraryPatches |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,82 @@ | ||
## Contributing to AsyncUDP_ESP32_W6100 | ||
|
||
### Reporting Bugs | ||
|
||
Please report bugs in AsyncUDP_ESP32_W6100 if you find them. | ||
|
||
However, before reporting a bug please check through the following: | ||
|
||
* [Existing Open Issues](https://github.com/khoih-prog/AsyncUDP_ESP32_W6100/issues) - someone might have already encountered this. | ||
|
||
If you don't find anything, please [open a new issue](https://github.com/khoih-prog/AsyncUDP_ESP32_W6100/issues/new). | ||
|
||
### How to submit a bug report | ||
|
||
Please ensure to specify the following: | ||
|
||
* Arduino IDE version (e.g. 1.8.19) or Platform.io version | ||
* Board Core Version (e.g. ESP32 core v2.0.6) | ||
* Contextual information (e.g. what you were trying to achieve) | ||
* Simplest possible steps to reproduce | ||
* Anything that might be relevant in your opinion, such as: | ||
* Operating system (Windows, Ubuntu, etc.) and the output of `uname -a` | ||
* Network configuration | ||
|
||
|
||
Please be educated, civilized and constructive as you've always been. Disrespective posts against [GitHub Code of Conduct](https://docs.github.com/en/site-policy/github-terms/github-event-code-of-conduct) will be ignored and deleted. | ||
|
||
--- | ||
|
||
### Example | ||
|
||
``` | ||
Arduino IDE version: 1.8.19 | ||
ESP32_DEV board | ||
ESP32 core v2.0.6 | ||
OS: Ubuntu 20.04 LTS | ||
Linux xy-Inspiron-3593 5.15.0-57-generic #63~20.04.1-Ubuntu SMP Wed Nov 30 13:40:16 UTC 2022 x86_64 x86_64 x86_64 GNU/Linux | ||
Context: | ||
I encountered a crash while using this library | ||
Steps to reproduce: | ||
1. ... | ||
2. ... | ||
3. ... | ||
4. ... | ||
``` | ||
|
||
--- | ||
|
||
### Additional context | ||
|
||
Add any other context about the problem here. | ||
|
||
--- | ||
|
||
### Sending Feature Requests | ||
|
||
Feel free to post feature requests. It's helpful if you can explain exactly why the feature would be useful. | ||
|
||
There are usually some outstanding feature requests in the [existing issues list](https://github.com/khoih-prog/AsyncUDP_ESP32_W6100/issues?q=is%3Aopen+is%3Aissue+label%3Aenhancement), feel free to add comments to them. | ||
|
||
--- | ||
|
||
### Sending Pull Requests | ||
|
||
Pull Requests with changes and fixes are also welcome! | ||
|
||
Please use the `astyle` to reformat the updated library code as follows (demo for Ubuntu Linux) | ||
|
||
1. Change directory to the library GitHub | ||
|
||
``` | ||
xy@xy-Inspiron-3593:~$ cd Arduino/xy/AsyncUDP_ESP32_W6100_GitHub/ | ||
xy@xy-Inspiron-3593:~/Arduino/xy/AsyncUDP_ESP32_W6100_GitHub$ | ||
``` | ||
|
||
2. Issue astyle command | ||
|
||
``` | ||
xy@xy-Inspiron-3593:~/Arduino/xy/AsyncUDP_ESP32_W6100_GitHub$ bash utils/restyle.sh | ||
``` | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
/* | ||
Server.h - Base class that provides Server | ||
Copyright (c) 2011 Adrian McEwen. All right reserved. | ||
This library is free software; you can redistribute it and/or | ||
modify it under the terms of the GNU Lesser General Public | ||
License as published by the Free Software Foundation; either | ||
version 2.1 of the License, or (at your option) any later version. | ||
This library is distributed in the hope that it will be useful, | ||
but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||
Lesser General Public License for more details. | ||
You should have received a copy of the GNU Lesser General Public | ||
License along with this library; if not, write to the Free Software | ||
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA | ||
*/ | ||
|
||
#ifndef server_h | ||
#define server_h | ||
|
||
#include "Print.h" | ||
|
||
class Server: public Print | ||
{ | ||
public: | ||
// KH, change to fix compiler error for EthernetWebServer | ||
// error: cannot declare field 'EthernetWebServer::_server' to be of abstract type 'EthernetServer' | ||
// virtual void begin(uint16_t port=0) =0; | ||
//virtual void begin() = 0; | ||
void begin() {}; | ||
}; | ||
|
||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
# AsyncUDP_ESP32_W6100 | ||
|
||
|
||
[![arduino-library-badge](https://www.ardu-badge.com/badge/AsyncUDP_ESP32_W6100.svg?)](https://www.ardu-badge.com/AsyncUDP_ESP32_W6100) | ||
[![GitHub release](https://img.shields.io/github/release/khoih-prog/AsyncUDP_ESP32_W6100.svg)](https://github.com/khoih-prog/AsyncUDP_ESP32_W6100/releases) | ||
[![contributions welcome](https://img.shields.io/badge/contributions-welcome-brightgreen.svg?style=flat)](#Contributing) | ||
[![GitHub issues](https://img.shields.io/github/issues/khoih-prog/AsyncUDP_ESP32_W6100.svg)](http://github.com/khoih-prog/AsyncUDP_ESP32_W6100/issues) | ||
|
||
|
||
<a href="https://www.buymeacoffee.com/khoihprog6" title="Donate to my libraries using BuyMeACoffee"><img src="https://cdn.buymeacoffee.com/buttons/v2/default-yellow.png" alt="Donate to my libraries using BuyMeACoffee" style="height: 50px !important;width: 181px !important;" ></a> | ||
<a href="https://www.buymeacoffee.com/khoihprog6" title="Donate to my libraries using BuyMeACoffee"><img src="https://img.shields.io/badge/buy%20me%20a%20coffee-donate-orange.svg?logo=buy-me-a-coffee&logoColor=FFDD00" style="height: 20px !important;width: 200px !important;" ></a> | ||
|
||
--- | ||
--- | ||
|
||
## Table of Contents | ||
|
||
* [Changelog](#changelog) | ||
* [Initial Releases v2.0.0](#initial-releases-v200) | ||
|
||
--- | ||
--- | ||
|
||
## Changelog | ||
|
||
### Initial Releases v2.0.0 | ||
|
||
1. Initial coding to port [AsyncUDP](https://github.com/espressif/arduino-esp32/tree/master/libraries/AsyncUDP) to ESP32 boards using `LwIP W6100 Ethernet` | ||
2. Add more examples. | ||
3. Add debugging features. | ||
4. Bump up to v2.0.0 to sync with [AsyncUDP v2.0.0](https://github.com/espressif/arduino-esp32/tree/master/libraries/AsyncUDP). | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,175 @@ | ||
/**************************************************************************************************************************** | ||
Async_UdpClient.ino | ||
AsyncUDP_ESP32_W6100 is a Async UDP library for the ESP32_W6100 (ESP32 + LwIP W6100) | ||
Based on and modified from ESPAsyncUDP Library (https://github.com/me-no-dev/ESPAsyncUDP) | ||
Built by Khoi Hoang https://github.com/khoih-prog/AsyncUDP_ESP32_W6100 | ||
Licensed under GPLv3 license | ||
*****************************************************************************************************************************/ | ||
|
||
#if !( defined(ESP32) ) | ||
#error This code is designed for (ESP32 + W6100) to run on ESP32 platform! Please check your Tools->Board setting. | ||
#endif | ||
|
||
#include <Arduino.h> | ||
|
||
#define ASYNC_UDP_ESP32_W6100_DEBUG_PORT Serial | ||
|
||
// Use from 0 to 4. Higher number, more debugging messages and memory usage. | ||
#define _ASYNC_UDP_ESP32_W6100_LOGLEVEL_ 1 | ||
|
||
////////////////////////////////////////////////////////// | ||
|
||
// Optional values to override default settings | ||
// Don't change unless you know what you're doing | ||
//#define ETH_SPI_HOST SPI3_HOST | ||
//#define SPI_CLOCK_MHZ 25 | ||
|
||
// Must connect INT to GPIOxx or not working | ||
//#define INT_GPIO 4 | ||
|
||
//#define MISO_GPIO 19 | ||
//#define MOSI_GPIO 23 | ||
//#define SCK_GPIO 18 | ||
//#define CS_GPIO 5 | ||
|
||
////////////////////////////////////////////////////////// | ||
|
||
#include <AsyncUDP_ESP32_W6100.h> | ||
|
||
IPAddress remoteIPAddress = IPAddress(192, 168, 2, 112); | ||
|
||
#define UDP_REMOTE_PORT 5698 | ||
|
||
///////////////////////////////////////////// | ||
|
||
// Enter a MAC address and IP address for your controller below. | ||
#define NUMBER_OF_MAC 20 | ||
|
||
byte mac[][NUMBER_OF_MAC] = | ||
{ | ||
{ 0xDE, 0xAD, 0xBE, 0xEF, 0xFE, 0x01 }, | ||
{ 0xDE, 0xAD, 0xBE, 0xEF, 0xBE, 0x02 }, | ||
{ 0xDE, 0xAD, 0xBE, 0xEF, 0xFE, 0x03 }, | ||
{ 0xDE, 0xAD, 0xBE, 0xEF, 0xBE, 0x04 }, | ||
{ 0xDE, 0xAD, 0xBE, 0xEF, 0xFE, 0x05 }, | ||
{ 0xDE, 0xAD, 0xBE, 0xEF, 0xBE, 0x06 }, | ||
{ 0xDE, 0xAD, 0xBE, 0xEF, 0xFE, 0x07 }, | ||
{ 0xDE, 0xAD, 0xBE, 0xEF, 0xBE, 0x08 }, | ||
{ 0xDE, 0xAD, 0xBE, 0xEF, 0xFE, 0x09 }, | ||
{ 0xDE, 0xAD, 0xBE, 0xEF, 0xBE, 0x0A }, | ||
{ 0xDE, 0xAD, 0xBE, 0xEF, 0xFE, 0x0B }, | ||
{ 0xDE, 0xAD, 0xBE, 0xEF, 0xBE, 0x0C }, | ||
{ 0xDE, 0xAD, 0xBE, 0xEF, 0xFE, 0x0D }, | ||
{ 0xDE, 0xAD, 0xBE, 0xEF, 0xBE, 0x0E }, | ||
{ 0xDE, 0xAD, 0xBE, 0xEF, 0xFE, 0x0F }, | ||
{ 0xDE, 0xAD, 0xBE, 0xEF, 0xBE, 0x10 }, | ||
{ 0xDE, 0xAD, 0xBE, 0xEF, 0xFE, 0x11 }, | ||
{ 0xDE, 0xAD, 0xBE, 0xEF, 0xBE, 0x12 }, | ||
{ 0xDE, 0xAD, 0xBE, 0xEF, 0xFE, 0x13 }, | ||
{ 0xDE, 0xAD, 0xBE, 0xEF, 0xBE, 0x14 }, | ||
}; | ||
|
||
// Select the IP address according to your local network | ||
IPAddress myIP(192, 168, 2, 232); | ||
IPAddress myGW(192, 168, 2, 1); | ||
IPAddress mySN(255, 255, 255, 0); | ||
|
||
// Google DNS Server IP | ||
IPAddress myDNS(8, 8, 8, 8); | ||
|
||
///////////////////////////////////////////// | ||
|
||
AsyncUDP udp; | ||
|
||
void parsePacket(AsyncUDPPacket packet) | ||
{ | ||
Serial.print("UDP Packet Type: "); | ||
Serial.print(packet.isBroadcast() ? "Broadcast" : packet.isMulticast() ? "Multicast" : "Unicast"); | ||
Serial.print(", From: "); | ||
Serial.print(packet.remoteIP()); | ||
Serial.print(":"); | ||
Serial.print(packet.remotePort()); | ||
Serial.print(", To: "); | ||
Serial.print(packet.localIP()); | ||
Serial.print(":"); | ||
Serial.print(packet.localPort()); | ||
Serial.print(", Length: "); | ||
Serial.print(packet.length()); | ||
Serial.print(", Data: "); | ||
Serial.write(packet.data(), packet.length()); | ||
Serial.println(); | ||
//reply to the client | ||
packet.printf("Got %u bytes of data", packet.length()); | ||
} | ||
|
||
void setup() | ||
{ | ||
Serial.begin(115200); | ||
|
||
while (!Serial && (millis() < 5000)); | ||
|
||
Serial.print(F("\nStart Async_UDPClient on ")); | ||
Serial.print(ARDUINO_BOARD); | ||
Serial.print(F(" with ")); | ||
Serial.println(SHIELD_TYPE); | ||
Serial.println(WEBSERVER_ESP32_W6100_VERSION); | ||
Serial.println(ASYNC_UDP_ESP32_W6100_VERSION); | ||
|
||
Serial.setDebugOutput(true); | ||
|
||
UDP_LOGWARN(F("Default SPI pinout:")); | ||
UDP_LOGWARN1(F("SPI_HOST:"), ETH_SPI_HOST); | ||
UDP_LOGWARN1(F("MOSI:"), MOSI_GPIO); | ||
UDP_LOGWARN1(F("MISO:"), MISO_GPIO); | ||
UDP_LOGWARN1(F("SCK:"), SCK_GPIO); | ||
UDP_LOGWARN1(F("CS:"), CS_GPIO); | ||
UDP_LOGWARN1(F("INT:"), INT_GPIO); | ||
UDP_LOGWARN1(F("SPI Clock (MHz):"), SPI_CLOCK_MHZ); | ||
UDP_LOGWARN(F("=========================")); | ||
|
||
/////////////////////////////////// | ||
|
||
// To be called before ETH.begin() | ||
ESP32_W6100_onEvent(); | ||
|
||
// start the ethernet connection and the server: | ||
// Use DHCP dynamic IP and random mac | ||
//bool begin(int MISO_GPIO, int MOSI_GPIO, int SCLK_GPIO, int CS_GPIO, int INT_GPIO, int SPI_CLOCK_MHZ, | ||
// int SPI_HOST, uint8_t *W6100_Mac = W6100_Default_Mac); | ||
ETH.begin( MISO_GPIO, MOSI_GPIO, SCK_GPIO, CS_GPIO, INT_GPIO, SPI_CLOCK_MHZ, ETH_SPI_HOST ); | ||
//ETH.begin( MISO_GPIO, MOSI_GPIO, SCK_GPIO, CS_GPIO, INT_GPIO, SPI_CLOCK_MHZ, ETH_SPI_HOST, mac[millis() % NUMBER_OF_MAC] ); | ||
|
||
// Static IP, leave without this line to get IP via DHCP | ||
//bool config(IPAddress local_ip, IPAddress gateway, IPAddress subnet, IPAddress dns1 = 0, IPAddress dns2 = 0); | ||
//ETH.config(myIP, myGW, mySN, myDNS); | ||
|
||
ESP32_W6100_waitForConnect(); | ||
|
||
/////////////////////////////////// | ||
|
||
// Client address | ||
Serial.print("Async_UDPClient started @ IP address: "); | ||
Serial.println(ETH.localIP()); | ||
|
||
if (udp.connect(remoteIPAddress, UDP_REMOTE_PORT)) | ||
{ | ||
Serial.println("UDP connected"); | ||
|
||
udp.onPacket([](AsyncUDPPacket packet) | ||
{ | ||
parsePacket( packet); | ||
}); | ||
|
||
//Send unicast | ||
udp.print("Hello Server!"); | ||
} | ||
} | ||
|
||
void loop() | ||
{ | ||
delay(10000); | ||
//Send broadcast on port UDP_REMOTE_PORT = 1234 | ||
udp.broadcastTo("Anyone here?", UDP_REMOTE_PORT); | ||
} |
Oops, something went wrong.