Added WiFi.disconnect to ESPNow examples. Fixes https://github.com/espressif/arduino-esp32/issues/1425 (#1511)
This commit is contained in:
parent
33392af315
commit
36c8020cbc
@ -40,6 +40,7 @@ esp_now_peer_info_t slave;
|
|||||||
|
|
||||||
// Init ESP Now with fallback
|
// Init ESP Now with fallback
|
||||||
void InitESPNow() {
|
void InitESPNow() {
|
||||||
|
WiFi.disconnect();
|
||||||
if (esp_now_init() == ESP_OK) {
|
if (esp_now_init() == ESP_OK) {
|
||||||
Serial.println("ESPNow Init Success");
|
Serial.println("ESPNow Init Success");
|
||||||
}
|
}
|
||||||
@ -259,4 +260,4 @@ void loop() {
|
|||||||
|
|
||||||
// wait for 3seconds to run the logic again
|
// wait for 3seconds to run the logic again
|
||||||
delay(3000);
|
delay(3000);
|
||||||
}
|
}
|
||||||
|
@ -36,6 +36,7 @@
|
|||||||
|
|
||||||
// Init ESP Now with fallback
|
// Init ESP Now with fallback
|
||||||
void InitESPNow() {
|
void InitESPNow() {
|
||||||
|
WiFi.disconnect();
|
||||||
if (esp_now_init() == ESP_OK) {
|
if (esp_now_init() == ESP_OK) {
|
||||||
Serial.println("ESPNow Init Success");
|
Serial.println("ESPNow Init Success");
|
||||||
}
|
}
|
||||||
@ -87,4 +88,4 @@ void OnDataRecv(const uint8_t *mac_addr, const uint8_t *data, int data_len) {
|
|||||||
|
|
||||||
void loop() {
|
void loop() {
|
||||||
// Chill
|
// Chill
|
||||||
}
|
}
|
||||||
|
@ -59,6 +59,7 @@ int SlaveCnt = 0;
|
|||||||
|
|
||||||
// Init ESP Now with fallback
|
// Init ESP Now with fallback
|
||||||
void InitESPNow() {
|
void InitESPNow() {
|
||||||
|
WiFi.disconnect();
|
||||||
if (esp_now_init() == ESP_OK) {
|
if (esp_now_init() == ESP_OK) {
|
||||||
Serial.println("ESPNow Init Success");
|
Serial.println("ESPNow Init Success");
|
||||||
}
|
}
|
||||||
@ -242,4 +243,4 @@ void loop() {
|
|||||||
|
|
||||||
// wait for 3seconds to run the logic again
|
// wait for 3seconds to run the logic again
|
||||||
delay(1000);
|
delay(1000);
|
||||||
}
|
}
|
||||||
|
@ -36,6 +36,7 @@
|
|||||||
|
|
||||||
// Init ESP Now with fallback
|
// Init ESP Now with fallback
|
||||||
void InitESPNow() {
|
void InitESPNow() {
|
||||||
|
WiFi.disconnect();
|
||||||
if (esp_now_init() == ESP_OK) {
|
if (esp_now_init() == ESP_OK) {
|
||||||
Serial.println("ESPNow Init Success");
|
Serial.println("ESPNow Init Success");
|
||||||
}
|
}
|
||||||
@ -90,4 +91,4 @@ void OnDataRecv(const uint8_t *mac_addr, const uint8_t *data, int data_len) {
|
|||||||
|
|
||||||
void loop() {
|
void loop() {
|
||||||
// Chill
|
// Chill
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user