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

Commit 6ce90d9

Browse files
authored
Major releases v1.2.0
### 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)
1 parent 8567f87 commit 6ce90d9

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

examples/WiFi/WiFiDiscoveringServices/WiFiDiscoveringServices.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ void setup()
188188
Serial.begin(115200);
189189
while (!Serial);
190190

191-
Serial.print("Start WiFiDiscoveringServices on "); Serial.println(BOARD_NAME);
191+
Serial.print("\nStart WiFiDiscoveringServices on "); Serial.println(BOARD_NAME);
192192
Serial.println(MDNS_GENERIC_VERSION);
193193

194194
#if ( WIFI_NETWORK_WIFININA || WIFI_NETWORK_WIFI101 )

examples/WiFi/WiFiRegisteringServices/WiFiRegisteringServices.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ void setup()
124124
Serial.begin(115200);
125125
while (!Serial);
126126

127-
Serial.print("Start WiFiRegisteringServices on "); Serial.println(BOARD_NAME);
127+
Serial.print("\nStart WiFiRegisteringServices on "); Serial.println(BOARD_NAME);
128128
Serial.println(MDNS_GENERIC_VERSION);
129129

130130
#if ( WIFI_NETWORK_WIFININA || WIFI_NETWORK_WIFI101 )

examples/WiFi/WiFiRegisteringServicesWithTxtRecord/WiFiRegisteringServicesWithTxtRecord.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ void setup()
124124
Serial.begin(115200);
125125
while (!Serial);
126126

127-
Serial.print("Start WiFiRegisteringServicesWithTxtRecord on "); Serial.println(BOARD_NAME);
127+
Serial.print("\nStart WiFiRegisteringServicesWithTxtRecord on "); Serial.println(BOARD_NAME);
128128
Serial.println(MDNS_GENERIC_VERSION);
129129

130130
#if ( WIFI_NETWORK_WIFININA || WIFI_NETWORK_WIFI101 )

examples/WiFi/WiFiResolvingHostNames/WiFiResolvingHostNames.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ void setup()
160160
Serial.begin(115200);
161161
while (!Serial);
162162

163-
Serial.print("Start WiFiResolvingHostNames on "); Serial.println(BOARD_NAME);
163+
Serial.print("\nStart WiFiResolvingHostNames on "); Serial.println(BOARD_NAME);
164164
Serial.println(MDNS_GENERIC_VERSION);
165165

166166
#if ( WIFI_NETWORK_WIFININA || WIFI_NETWORK_WIFI101 )

0 commit comments

Comments
 (0)