6
6
#if defined(ESP8266)
7
7
#include < ESP8266WiFi.h>
8
8
#include < LittleFS.h>
9
+ #include < ESP8266mDNS.h>
9
10
#endif
10
11
11
12
#if defined(ESP32)
12
13
#include < ESPmDNS.h>
13
14
#include < SPIFFS.h>
14
15
#define LittleFS SPIFFS
16
+ #include < ESPmDNS.h>
15
17
#endif
16
18
17
19
#include < ArduinoOTA.h>
@@ -71,7 +73,7 @@ class Mokosh {
71
73
public:
72
74
Mokosh ();
73
75
// sets debug level verbosity, must be called before begin()
74
- void setDebugLevel (DebugLevel level);
76
+ Mokosh* setDebugLevel (DebugLevel level);
75
77
76
78
// starts Mokosh system, connects to the Wi-Fi and MQTT
77
79
// using the provided device prefix
@@ -84,7 +86,20 @@ class Mokosh {
84
86
// sets build information (SemVer and build date) used in the
85
87
// responses to getv and getfullver commands and hello message
86
88
// 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);
88
103
89
104
// publishes a new message on a Prefix_ABCDE/subtopic topic with
90
105
// a given payload
@@ -111,20 +126,20 @@ class Mokosh {
111
126
// use rather mdebug() macros instead
112
127
static void debug (DebugLevel level, const char * func, const char * fmt, ...);
113
128
114
- // enables ArduinoOTA subsystem
129
+ // enables ArduinoOTA subsystem (disabled by default)
115
130
// must be called before begin()
116
- void enableOTA ( );
131
+ Mokosh* setOta ( bool value );
117
132
118
- // disables LittleFS and config.json support
133
+ // disables LittleFS and config.json support (enabled by default)
119
134
// must be called before begin()
120
- void disableLoadingConfigFile ( );
135
+ Mokosh* setConfigFile ( bool value );
121
136
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 );
124
139
125
140
// enables automatic reboot on error - by default there will be
126
141
// an inifinite loop instead
127
- void enableRebootOnError ( );
142
+ Mokosh* setRebootOnError ( bool value );
128
143
129
144
// defines callback to be run when command not handled by internal
130
145
// means is received
@@ -182,13 +197,13 @@ class Mokosh {
182
197
// sets ignoring connection errors - useful in example of deep sleep
183
198
// so the device is going to sleep again if wifi networks/mqtt are not
184
199
// available
185
- void setIgnoreConnectionErrors (bool value);
200
+ Mokosh* setIgnoreConnectionErrors (bool value);
186
201
187
202
// sets if the Wi-Fi should be reconnected on MQTT reconnect if needed
188
- void setForceWiFiReconnect (bool value);
203
+ Mokosh* setForceWiFiReconnect (bool value);
189
204
190
205
// sets if the heartbeat messages should be send
191
- void setHeartbeatEnabled (bool value);
206
+ Mokosh* setHeartbeat (bool value);
192
207
193
208
// returns if the RemoteDebug is ready
194
209
bool isDebugReady ();
@@ -219,10 +234,19 @@ class Mokosh {
219
234
// sets up communication using the custom Client instance (e.g. GSM)
220
235
// remember to use at least setupMqttClient() and hello() after using
221
236
// this, autoconnect should be disabled
222
- void setupCustomClient (Client& client);
237
+ Mokosh* setCustomClient (Client& client);
223
238
224
239
// a configuration object to set and read configs
225
240
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 ();
226
250
private:
227
251
bool debugReady;
228
252
String hostName;
@@ -238,6 +262,7 @@ class Mokosh {
238
262
bool isFSEnabled = true ;
239
263
bool isRebootOnError = false ;
240
264
bool isOTAEnabled = false ;
265
+ bool isMDNSEnabled = false ;
241
266
bool isOTAInProgress = false ;
242
267
bool isMqttConfigured = false ;
243
268
bool isIgnoringConnectionErrors = false ;
0 commit comments