Skip to content

Commit 90e7316

Browse files
authored
Add support for MDNS (#4)
* Add standardized names for the functions enabling different elements of the framework * Add returning this instance on set* functions, allowing to chain methods (BREAKING CHANGE) * Add support for MDNS * Add getting generated hostname and MQTT prefix * Fix examples
1 parent f932517 commit 90e7316

File tree

4 files changed

+106
-27
lines changed

4 files changed

+106
-27
lines changed

examples/ErrorBasic/ErrorBasic.ino

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Mokosh m;
44

55
void setup() {
66
// will automatically reboot if error is met
7-
m.enableRebootOnError();
7+
m.setRebootOnError(true);
88
m.begin("Mokosh");
99
}
1010

examples/WifiMqtt/WifiMqtt.ino

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ void setup() {
99
// static configuration to be used: Wifi with yourssid and yourpassword password
1010
// mqtt broker at 192.168.1.10, port 1883
1111

12-
mokosh.disableLoadingConfigFile();
12+
mokosh.setConfigFile(false);
1313
mokosh.config.set(mokosh.config.key_ssid, "yourssid");
1414
mokosh.config.set(mokosh.config.key_wifi_password, "yourpassword");
1515
mokosh.config.set(mokosh.config.key_broker, "192.168.1.10");

src/Mokosh.cpp

+66-12
Original file line numberDiff line numberDiff line change
@@ -96,8 +96,9 @@ void Mokosh::setupWiFiClient() {
9696
this->client = new WiFiClient();
9797
}
9898

99-
void Mokosh::setupCustomClient(Client& client) {
99+
Mokosh* Mokosh::setCustomClient(Client& client) {
100100
this->client = &client;
101+
return this;
101102
}
102103

103104
void Mokosh::setupMqttClient() {
@@ -111,6 +112,16 @@ void Mokosh::setupMqttClient() {
111112
}
112113
}
113114

115+
void Mokosh::setupMDNS() {
116+
if (!MDNS.begin(this->hostNameC)) {
117+
mdebugE("MDNS couldn't be enabled");
118+
return;
119+
}
120+
121+
this->addMDNSService("mokosh", "tcp", 23);
122+
this->addMDNSServiceProps("mokosh", "tcp", "version", this->version.c_str());
123+
}
124+
114125
void Mokosh::setupOta() {
115126
uint16_t otaPort = 3232;
116127
#if defined(ESP8266)
@@ -241,6 +252,10 @@ void Mokosh::begin(String prefix, bool autoconnect) {
241252
this->setupWiFiClient();
242253
this->setupMqttClient();
243254

255+
if (this->isMDNSEnabled) {
256+
this->setupMDNS();
257+
}
258+
244259
if (this->isOTAEnabled) {
245260
this->setupOta();
246261
}
@@ -274,8 +289,9 @@ void Mokosh::publishIP() {
274289
}
275290
}
276291

277-
void Mokosh::disableLoadingConfigFile() {
278-
this->isFSEnabled = false;
292+
Mokosh* Mokosh::setConfigFile(bool value) {
293+
this->isFSEnabled = value;
294+
return this;
279295
}
280296

281297
bool Mokosh::reconnect() {
@@ -348,12 +364,14 @@ bool Mokosh::isWifiConnected() {
348364
return WiFi.status() == WL_CONNECTED;
349365
}
350366

351-
void Mokosh::setForceWiFiReconnect(bool value) {
367+
Mokosh* Mokosh::setForceWiFiReconnect(bool value) {
352368
this->isForceWifiReconnect = value;
369+
return this;
353370
}
354371

355-
void Mokosh::setHeartbeatEnabled(bool value) {
372+
Mokosh* Mokosh::setHeartbeat(bool value) {
356373
this->isHeartbeatEnabled = value;
374+
return this;
357375
}
358376

359377
wl_status_t Mokosh::connectWifi() {
@@ -410,12 +428,14 @@ Mokosh* Mokosh::getInstance() {
410428
return _instance;
411429
}
412430

413-
void Mokosh::setDebugLevel(DebugLevel level) {
431+
Mokosh* Mokosh::setDebugLevel(DebugLevel level) {
414432
this->debugLevel = level;
415433

416434
if (this->debugReady) {
417435
mdebugW("Setting mdebug level should be before begin(), ignoring for internals.");
418436
}
437+
438+
return this;
419439
}
420440

421441
void Mokosh::loop() {
@@ -728,19 +748,53 @@ void Mokosh::error(int code) {
728748
}
729749
}
730750

731-
void Mokosh::enableRebootOnError() {
732-
this->isRebootOnError = true;
751+
Mokosh* Mokosh::setRebootOnError(bool value) {
752+
this->isRebootOnError = value;
753+
return this;
733754
}
734755

735-
void Mokosh::setBuildMetadata(String version, String buildDate) {
756+
Mokosh* Mokosh::setBuildMetadata(String version, String buildDate) {
736757
this->version = version;
737758
this->buildDate = buildDate;
759+
return this;
738760
}
739761

740-
void Mokosh::enableOTA() {
741-
this->isOTAEnabled = true;
762+
Mokosh* Mokosh::setOta(bool value) {
763+
this->isOTAEnabled = value;
764+
765+
if (this->isOTAEnabled)
766+
this->isMDNSEnabled = true;
767+
768+
return this;
742769
}
743770

744-
void Mokosh::setIgnoreConnectionErrors(bool value) {
771+
Mokosh* Mokosh::setIgnoreConnectionErrors(bool value) {
745772
this->isIgnoringConnectionErrors = value;
773+
return this;
774+
}
775+
776+
Mokosh* Mokosh::setMDNS(bool value) {
777+
this->isMDNSEnabled = value;
778+
return this;
779+
}
780+
781+
void Mokosh::addMDNSService(const char* service, const char* proto, uint16_t port) {
782+
MDNS.addService(service, proto, port);
783+
}
784+
785+
void Mokosh::addMDNSServiceProps(const char* service, const char* proto, const char* property, const char* value) {
786+
MDNS.addServiceTxt(service, proto, property, value);
787+
}
788+
789+
String Mokosh::getPrefix() {
790+
return this->prefix;
791+
}
792+
793+
String Mokosh::getHostName() {
794+
return this->hostName;
795+
}
796+
797+
String Mokosh::getMqttPrefix() {
798+
String result = this->prefix + "_" + this->hostName + "/";
799+
return result;
746800
}

src/Mokosh.hpp

+38-13
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,14 @@
66
#if defined(ESP8266)
77
#include <ESP8266WiFi.h>
88
#include <LittleFS.h>
9+
#include <ESP8266mDNS.h>
910
#endif
1011

1112
#if defined(ESP32)
1213
#include <ESPmDNS.h>
1314
#include <SPIFFS.h>
1415
#define LittleFS SPIFFS
16+
#include <ESPmDNS.h>
1517
#endif
1618

1719
#include <ArduinoOTA.h>
@@ -71,7 +73,7 @@ class Mokosh {
7173
public:
7274
Mokosh();
7375
// sets debug level verbosity, must be called before begin()
74-
void setDebugLevel(DebugLevel level);
76+
Mokosh* setDebugLevel(DebugLevel level);
7577

7678
// starts Mokosh system, connects to the Wi-Fi and MQTT
7779
// using the provided device prefix
@@ -84,7 +86,20 @@ class Mokosh {
8486
// sets build information (SemVer and build date) used in the
8587
// responses to getv and getfullver commands and hello message
8688
// must be called before begin()
87-
void setBuildMetadata(String version, String buildDate);
89+
Mokosh* setBuildMetadata(String version, String buildDate);
90+
91+
// enables MDNS service (default false, unless OTA is enabled)
92+
Mokosh* setMDNS(bool value);
93+
94+
// sets up the MDNS responder -- ran automatically unless custom
95+
// client is used
96+
void setupMDNS();
97+
98+
// adds broadcasted MDNS service
99+
void addMDNSService(const char* service, const char* proto, uint16_t port);
100+
101+
// adds broadcasted MDNS service props
102+
void addMDNSServiceProps(const char* service, const char* proto, const char* property, const char* value);
88103

89104
// publishes a new message on a Prefix_ABCDE/subtopic topic with
90105
// a given payload
@@ -111,20 +126,20 @@ class Mokosh {
111126
// use rather mdebug() macros instead
112127
static void debug(DebugLevel level, const char* func, const char* fmt, ...);
113128

114-
// enables ArduinoOTA subsystem
129+
// enables ArduinoOTA subsystem (disabled by default)
115130
// must be called before begin()
116-
void enableOTA();
131+
Mokosh* setOta(bool value);
117132

118-
// disables LittleFS and config.json support
133+
// disables LittleFS and config.json support (enabled by default)
119134
// must be called before begin()
120-
void disableLoadingConfigFile();
135+
Mokosh* setConfigFile(bool value);
121136

122-
// enables FirstRun subsystem if there is no config.json
123-
void enableFirstRun();
137+
// enables FirstRun subsystem if there is no config.json (disabled by default)
138+
Mokosh* setFirstRun(bool value);
124139

125140
// enables automatic reboot on error - by default there will be
126141
// an inifinite loop instead
127-
void enableRebootOnError();
142+
Mokosh* setRebootOnError(bool value);
128143

129144
// defines callback to be run when command not handled by internal
130145
// means is received
@@ -182,13 +197,13 @@ class Mokosh {
182197
// sets ignoring connection errors - useful in example of deep sleep
183198
// so the device is going to sleep again if wifi networks/mqtt are not
184199
// available
185-
void setIgnoreConnectionErrors(bool value);
200+
Mokosh* setIgnoreConnectionErrors(bool value);
186201

187202
// sets if the Wi-Fi should be reconnected on MQTT reconnect if needed
188-
void setForceWiFiReconnect(bool value);
203+
Mokosh* setForceWiFiReconnect(bool value);
189204

190205
// sets if the heartbeat messages should be send
191-
void setHeartbeatEnabled(bool value);
206+
Mokosh* setHeartbeat(bool value);
192207

193208
// returns if the RemoteDebug is ready
194209
bool isDebugReady();
@@ -219,10 +234,19 @@ class Mokosh {
219234
// sets up communication using the custom Client instance (e.g. GSM)
220235
// remember to use at least setupMqttClient() and hello() after using
221236
// this, autoconnect should be disabled
222-
void setupCustomClient(Client& client);
237+
Mokosh* setCustomClient(Client& client);
223238

224239
// a configuration object to set and read configs
225240
MokoshConfig config;
241+
242+
// returns defined device prefix
243+
String getPrefix();
244+
245+
// returns automatically generated device hostname
246+
String getHostName();
247+
248+
// gets prefix for MQTT topics for the current device
249+
String getMqttPrefix();
226250
private:
227251
bool debugReady;
228252
String hostName;
@@ -238,6 +262,7 @@ class Mokosh {
238262
bool isFSEnabled = true;
239263
bool isRebootOnError = false;
240264
bool isOTAEnabled = false;
265+
bool isMDNSEnabled = false;
241266
bool isOTAInProgress = false;
242267
bool isMqttConfigured = false;
243268
bool isIgnoringConnectionErrors = false;

0 commit comments

Comments
 (0)