Skip to content
This repository has been archived by the owner on Jan 29, 2023. It is now read-only.

Commit

Permalink
Major releases v1.2.0
Browse files Browse the repository at this point in the history
### Releases v1.2.0

 1. Add support to RP2040-based boards, such as **Nano_RP2040_Connect, RASPBERRY_PI_PICO, ADAFRUIT_FEATHER_RP2040 and GENERIC_RP2040**, using [**Arduino-mbed RP2040** core](https://github.com/arduino/ArduinoCore-mbed) using WiFi / [WiFiNINA_Generic Library](https://github.com/khoih-prog/WiFiNINA_Generic)
 2. Add support to RP2040-based boards, such as **RASPBERRY_PI_PICO, ADAFRUIT_FEATHER_RP2040 and GENERIC_RP2040**, using [**Earle Philhower's arduino-pico** core](https://github.com/earlephilhower/arduino-pico) using WiFi / [WiFiNINA_Generic Library](https://github.com/khoih-prog/WiFiNINA_Generic)
 3. Add support to ESP32 and ESP8266 boards using native ESP WiFi
 4. Add support to Generic boards, such as **MKR WiFi1010**, using [WiFi101 Library](https://github.com/arduino-libraries/WiFi101)
 5. Add WiFi-related examples. 
 6. Modify hostname from easily-duplicated `arduino` to board-related hostname to fix issue caused by duplicated hostname, such as [mDNS stops working after two minutes #5](#5)
 7. Verify issue [**mDNS stops working after two minutes** #5](#5) is fixed, using Nano_RP2040_Connect, WiFiNINA FW 1.4.8 and [WiFiNINA_Generic Library](https://github.com/khoih-prog/WiFiNINA_Generic)
 8. Change License from `MIT` to [GPLv3](https://github.com/khoih-prog/MDNS_Generic/blob/master/LICENSE)
  • Loading branch information
khoih-prog authored Sep 2, 2021
1 parent 8567f87 commit 6ce90d9
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ void setup()
Serial.begin(115200);
while (!Serial);

Serial.print("Start WiFiDiscoveringServices on "); Serial.println(BOARD_NAME);
Serial.print("\nStart WiFiDiscoveringServices on "); Serial.println(BOARD_NAME);
Serial.println(MDNS_GENERIC_VERSION);

#if ( WIFI_NETWORK_WIFININA || WIFI_NETWORK_WIFI101 )
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ void setup()
Serial.begin(115200);
while (!Serial);

Serial.print("Start WiFiRegisteringServices on "); Serial.println(BOARD_NAME);
Serial.print("\nStart WiFiRegisteringServices on "); Serial.println(BOARD_NAME);
Serial.println(MDNS_GENERIC_VERSION);

#if ( WIFI_NETWORK_WIFININA || WIFI_NETWORK_WIFI101 )
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ void setup()
Serial.begin(115200);
while (!Serial);

Serial.print("Start WiFiRegisteringServicesWithTxtRecord on "); Serial.println(BOARD_NAME);
Serial.print("\nStart WiFiRegisteringServicesWithTxtRecord on "); Serial.println(BOARD_NAME);
Serial.println(MDNS_GENERIC_VERSION);

#if ( WIFI_NETWORK_WIFININA || WIFI_NETWORK_WIFI101 )
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ void setup()
Serial.begin(115200);
while (!Serial);

Serial.print("Start WiFiResolvingHostNames on "); Serial.println(BOARD_NAME);
Serial.print("\nStart WiFiResolvingHostNames on "); Serial.println(BOARD_NAME);
Serial.println(MDNS_GENERIC_VERSION);

#if ( WIFI_NETWORK_WIFININA || WIFI_NETWORK_WIFI101 )
Expand Down

0 comments on commit 6ce90d9

Please sign in to comment.