Version 1.12

Fixed one minor bug.
This commit is contained in:
Alexey Zholtikov 2022-12-16 10:41:28 +03:00
parent 4f58a04eae
commit c1fe139756
3 changed files with 3 additions and 3 deletions

View File

@ -1,5 +1,5 @@
name=ZHNetwork
version=1.11
version=1.12
author=Alexey Zholtikov
maintainer=Alexey Zholtikov
sentence=ESP-NOW based Mesh network for ESP8266/ESP32

View File

@ -116,7 +116,7 @@ error_code_t ZHNetwork::begin()
return SUCCESS;
}
error_code_t stop()
error_code_t ZHNetwork::stop()
{
WiFi.mode(WIFI_OFF);
esp_now_deinit();

View File

@ -133,7 +133,7 @@ private:
static uint16_t lastMessageID[10];
static char netName_[20];
const char *firmware{"1.11"};
const char *firmware{"1.12"};
const uint8_t broadcastMAC[6]{0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF};
work_mode_t workMode_{ESP_NOW};
char apSsid_[32]{"ESP-NOW NODE"};