@alteriom/painlessmesh 1.6.1 → 1.7.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (129) hide show
  1. package/CHANGELOG.md +380 -143
  2. package/LICENSE +674 -674
  3. package/README.md +477 -434
  4. package/RELEASE_GUIDE.md +504 -418
  5. package/docs/DOCUMENTATION_MIGRATION_PLAN.md +175 -175
  6. package/docs/IMPLEMENTATION_PLAN_MESH_TOPOLOGY.md +1062 -0
  7. package/docs/MESH_TOPOLOGY_GUIDE.md +992 -0
  8. package/docs/MESH_TOPOLOGY_PROGRESS.md +422 -0
  9. package/docs/MQTT_BRIDGE_COMMANDS.md +894 -0
  10. package/docs/MQTT_BRIDGE_IMPLEMENTATION_SUMMARY.md +324 -0
  11. package/docs/MQTT_COMMAND_SCHEMA_PROPOSAL.md +576 -0
  12. package/docs/MQTT_SCHEMA_COMPLIANCE.md +285 -0
  13. package/docs/MQTT_SCHEMA_PROPOSALS.md +446 -0
  14. package/docs/MQTT_SCHEMA_REVIEW.md +690 -0
  15. package/docs/OTA_COMMANDS_REFERENCE.md +554 -0
  16. package/docs/PHASE1_GUIDE.md +349 -0
  17. package/docs/PHASE2_GUIDE.md +543 -0
  18. package/docs/README.md +77 -70
  19. package/docs/SCHEMA_VALIDATION_CHECKLIST.md +222 -0
  20. package/docs/alteriom/overview.md +507 -507
  21. package/docs/api/core-api.md +606 -606
  22. package/docs/architecture/mesh-architecture.md +378 -378
  23. package/docs/architecture/plugin-system.md +516 -516
  24. package/docs/getting-started/first-mesh.md +409 -409
  25. package/docs/getting-started/installation.md +274 -274
  26. package/docs/getting-started/quickstart.md +157 -157
  27. package/docs/improvements/FEATURE_PROPOSALS.md +337 -0
  28. package/docs/improvements/PHASE1_IMPLEMENTATION.md +325 -0
  29. package/docs/improvements/PHASE2_IMPLEMENTATION.md +567 -0
  30. package/docs/improvements/README.md +86 -68
  31. package/docs/improvements/ota-and-status-enhancements.md +911 -0
  32. package/docs/improvements/ota-status-architecture-diagrams.md +658 -0
  33. package/docs/improvements/ota-status-quick-reference.md +284 -0
  34. package/docs/platformio-publishing.md +255 -0
  35. package/docs/platformio-setup-summary.md +121 -0
  36. package/docs/troubleshooting/common-issues.md +520 -520
  37. package/docs/troubleshooting/faq.md +472 -472
  38. package/docs/tutorials/basic-examples.md +717 -717
  39. package/docs/wiki/API-Reference.md +245 -245
  40. package/docs/wiki/Complete-Documentation.md +122 -122
  41. package/examples/alteriom/README.md +139 -81
  42. package/examples/alteriom/alteriom.ino +186 -185
  43. package/examples/alteriom/alteriom_sensor_package.hpp +240 -127
  44. package/examples/alteriom/platformio.ini +24 -24
  45. package/examples/alteriomImproved/alteriom_sensor_package.hpp +224 -0
  46. package/examples/{alteriom → alteriomImproved}/improved_sensor_node.ino +245 -245
  47. package/examples/alteriomImproved/platformio.ini +25 -0
  48. package/examples/alteriomPhase1/alteriom_sensor_package.hpp +224 -0
  49. package/examples/alteriomPhase1/phase1_features.ino +242 -0
  50. package/examples/alteriomPhase1/platformio.ini +25 -0
  51. package/examples/alteriomPhase2/alteriom_sensor_package.hpp +224 -0
  52. package/examples/alteriomPhase2/phase2_features.ino +186 -0
  53. package/examples/alteriomPhase2/platformio.ini +25 -0
  54. package/examples/{alteriom → alteriomSensorNode}/alteriom_sensor_node.ino +183 -183
  55. package/examples/alteriomSensorNode/alteriom_sensor_package.hpp +224 -0
  56. package/examples/alteriomSensorNode/platformio.ini +25 -0
  57. package/examples/basic/basic.ino +66 -66
  58. package/examples/basic/platformio.ini +25 -25
  59. package/examples/bridge/bridge.ino +51 -51
  60. package/examples/bridge/mesh_event_publisher.hpp +253 -0
  61. package/examples/bridge/mesh_topology_reporter.hpp +303 -0
  62. package/examples/bridge/mqtt_command_bridge.hpp +459 -0
  63. package/examples/bridge/mqtt_status_bridge.hpp +519 -0
  64. package/examples/bridge/platformio.ini +25 -25
  65. package/examples/echoNode/echoNode.ino +33 -33
  66. package/examples/echoNode/platformio.ini +25 -25
  67. package/examples/logClient/logClient.ino +109 -109
  68. package/examples/logClient/platformio.ini +25 -25
  69. package/examples/logServer/logServer.ino +81 -81
  70. package/examples/logServer/platformio.ini +25 -25
  71. package/examples/meshCommandNode/alteriom_sensor_package.hpp +235 -0
  72. package/examples/meshCommandNode/meshCommandNode.ino +263 -0
  73. package/examples/meshCommandNode/platformio.ini +25 -0
  74. package/examples/mqttBridge/mqttBridge.ino +118 -118
  75. package/examples/mqttBridge/platformio.ini +26 -26
  76. package/examples/mqttCommandBridge/alteriom_sensor_package.hpp +235 -0
  77. package/examples/mqttCommandBridge/mesh_event_publisher.hpp +253 -0
  78. package/examples/mqttCommandBridge/mesh_topology_reporter.hpp +303 -0
  79. package/examples/mqttCommandBridge/mqttCommandBridge.ino +252 -0
  80. package/examples/mqttCommandBridge/mqtt_command_bridge.hpp +459 -0
  81. package/examples/mqttCommandBridge/platformio.ini +26 -0
  82. package/examples/mqttStatusBridge/mqttStatusBridge.ino +216 -0
  83. package/examples/mqttStatusBridge/mqtt_status_bridge.hpp +522 -0
  84. package/examples/mqttStatusBridge/platformio.ini +26 -0
  85. package/examples/mqttTopologyTest/README.md +467 -0
  86. package/examples/mqttTopologyTest/mqttTopologyTest.ino +748 -0
  87. package/examples/mqttTopologyTest/platformio.ini +26 -0
  88. package/examples/namedMesh/namedMesh.ino +97 -97
  89. package/examples/namedMesh/platformio.ini +25 -25
  90. package/examples/otaReceiver/otaReceiver.ino +79 -79
  91. package/examples/otaReceiver/platformio.ini +25 -25
  92. package/examples/otaSender/otaSender.ino +160 -151
  93. package/examples/otaSender/platformio.ini +25 -25
  94. package/examples/startHere/platformio.ini +25 -25
  95. package/examples/startHere/startHere.ino +159 -159
  96. package/examples/webServer/platformio.ini +27 -27
  97. package/examples/webServer/webServer.ino +89 -89
  98. package/keywords.txt +48 -48
  99. package/library.json +55 -34
  100. package/library.properties +10 -10
  101. package/package.json +86 -78
  102. package/src/AlteriomPainlessMesh.h +97 -97
  103. package/src/arduino/wifi.hpp +365 -365
  104. package/src/boost/asynctcp.hpp +279 -279
  105. package/src/painlessMesh.h +70 -70
  106. package/src/painlessMeshSTA.cpp +236 -236
  107. package/src/painlessMeshSTA.h +58 -58
  108. package/src/painlessTaskOptions.h +4 -4
  109. package/src/painlessmesh/base64.hpp +111 -111
  110. package/src/painlessmesh/buffer.hpp +229 -229
  111. package/src/painlessmesh/callback.hpp +91 -91
  112. package/src/painlessmesh/configuration.hpp +77 -77
  113. package/src/painlessmesh/connection.hpp +192 -192
  114. package/src/painlessmesh/layout.hpp +188 -188
  115. package/src/painlessmesh/logger.hpp +158 -158
  116. package/src/painlessmesh/memory.hpp +119 -119
  117. package/src/painlessmesh/mesh.hpp +761 -560
  118. package/src/painlessmesh/metrics.hpp +322 -322
  119. package/src/painlessmesh/ntp.hpp +263 -263
  120. package/src/painlessmesh/ota.hpp +582 -553
  121. package/src/painlessmesh/plugin.hpp +188 -188
  122. package/src/painlessmesh/protocol.hpp +813 -813
  123. package/src/painlessmesh/router.hpp +322 -322
  124. package/src/painlessmesh/tcp.hpp +71 -71
  125. package/src/painlessmesh/validation.hpp +238 -238
  126. package/src/plugin/performance.hpp +214 -214
  127. package/src/plugin/remote.hpp +64 -64
  128. package/src/scheduler.cpp +10 -10
  129. package/src/wifi.cpp +2 -2
@@ -0,0 +1,519 @@
1
+ #ifndef _MQTT_STATUS_BRIDGE_HPP_
2
+ #define _MQTT_STATUS_BRIDGE_HPP_
3
+
4
+ /**
5
+ * Phase 2: MQTT Status Bridge
6
+ *
7
+ * Professional monitoring solution for painlessMesh networks.
8
+ * Publishes comprehensive mesh status to MQTT topics for integration
9
+ * with Grafana, InfluxDB, Prometheus, Home Assistant, and other tools.
10
+ *
11
+ * Features:
12
+ * - Node list with states
13
+ * - Mesh topology JSON
14
+ * - Performance metrics (Alteriom MQTT Schema v1 compliant)
15
+ * - Active alerts
16
+ * - Per-node health monitoring
17
+ *
18
+ * MQTT Topics:
19
+ * - mesh/status/nodes - Node list with basic info
20
+ * - mesh/status/topology - Complete mesh structure
21
+ * - mesh/status/metrics - Gateway metrics (schema v1 compliant)
22
+ * - mesh/status/alerts - Active alert conditions
23
+ * - mesh/status/node/{id} - Per-node detailed status
24
+ *
25
+ * Compliance:
26
+ * - Uses @alteriom/mqtt-schema v1 for gateway_metrics messages
27
+ * - Includes required envelope fields (schema_version, device_id, etc.)
28
+ * - ISO 8601 timestamps
29
+ */
30
+
31
+ #include <Arduino.h>
32
+ #include <painlessMesh.h>
33
+ #include <PubSubClient.h>
34
+
35
+ class MqttStatusBridge {
36
+ private:
37
+ painlessMesh& mesh;
38
+ PubSubClient& mqttClient;
39
+
40
+ // Configuration
41
+ uint32_t publishInterval = 30000; // Default 30 seconds
42
+ bool enableTopologyPublish = true;
43
+ bool enableMetricsPublish = true;
44
+ bool enableAlertsPublish = true;
45
+ bool enablePerNodePublish = false; // Can be expensive for large meshes
46
+
47
+ // Topic prefix
48
+ String topicPrefix = "mesh/status/";
49
+
50
+ // Device identification (for Alteriom schema compliance)
51
+ String deviceId = "";
52
+ String firmwareVersion = "1.0.0";
53
+
54
+ // Last publish time
55
+ unsigned long lastPublishTime = 0;
56
+
57
+ // Task scheduler
58
+ Task* publishTask = nullptr;
59
+
60
+ public:
61
+ /**
62
+ * Constructor
63
+ * @param mesh Reference to painlessMesh instance
64
+ * @param mqttClient Reference to PubSubClient instance
65
+ */
66
+ MqttStatusBridge(painlessMesh& mesh, PubSubClient& mqttClient)
67
+ : mesh(mesh), mqttClient(mqttClient) {
68
+ }
69
+
70
+ /**
71
+ * Set the publish interval in milliseconds
72
+ * @param interval Interval in milliseconds (default: 30000)
73
+ */
74
+ void setPublishInterval(uint32_t interval) {
75
+ publishInterval = interval;
76
+ }
77
+
78
+ /**
79
+ * Set the MQTT topic prefix
80
+ * @param prefix Topic prefix (default: "mesh/status/")
81
+ */
82
+ void setTopicPrefix(const String& prefix) {
83
+ topicPrefix = prefix;
84
+ }
85
+
86
+ /**
87
+ * Set device ID for Alteriom schema compliance
88
+ * @param id Device identifier (defaults to mesh node ID if not set)
89
+ */
90
+ void setDeviceId(const String& id) {
91
+ deviceId = id;
92
+ }
93
+
94
+ /**
95
+ * Set firmware version for Alteriom schema compliance
96
+ * @param version Firmware version string (default: "1.0.0")
97
+ */
98
+ void setFirmwareVersion(const String& version) {
99
+ firmwareVersion = version;
100
+ }
101
+
102
+ /**
103
+ * Enable or disable topology publishing
104
+ */
105
+ void enableTopology(bool enable) {
106
+ enableTopologyPublish = enable;
107
+ }
108
+
109
+ /**
110
+ * Enable or disable metrics publishing
111
+ */
112
+ void enableMetrics(bool enable) {
113
+ enableMetricsPublish = enable;
114
+ }
115
+
116
+ /**
117
+ * Enable or disable alerts publishing
118
+ */
119
+ void enableAlerts(bool enable) {
120
+ enableAlertsPublish = enable;
121
+ }
122
+
123
+ /**
124
+ * Enable or disable per-node publishing
125
+ * Warning: This can be expensive for large meshes (50+ nodes)
126
+ */
127
+ void enablePerNode(bool enable) {
128
+ enablePerNodePublish = enable;
129
+ }
130
+
131
+ /**
132
+ * Initialize the bridge and start publishing
133
+ */
134
+ void begin() {
135
+ // Create periodic task to publish status
136
+ publishTask = &mesh.addTask(TASK_MILLISECOND * publishInterval,
137
+ TASK_FOREVER,
138
+ [this]() { this->publishStatus(); });
139
+ publishTask->enable();
140
+
141
+ Serial.println("MQTT Status Bridge started");
142
+ Serial.printf("Publishing every %d ms to %s*\n", publishInterval, topicPrefix.c_str());
143
+ }
144
+
145
+ /**
146
+ * Stop publishing
147
+ */
148
+ void stop() {
149
+ if (publishTask != nullptr) {
150
+ publishTask->disable();
151
+ }
152
+ }
153
+
154
+ /**
155
+ * Manually trigger a status publish
156
+ */
157
+ void publishNow() {
158
+ publishStatus();
159
+ }
160
+
161
+ private:
162
+ /**
163
+ * Main publishing function - collects and publishes all enabled status data
164
+ */
165
+ void publishStatus() {
166
+ if (!mqttClient.connected()) {
167
+ Serial.println("MQTT not connected, skipping status publish");
168
+ return;
169
+ }
170
+
171
+ unsigned long startTime = millis();
172
+
173
+ // Always publish node list
174
+ publishNodeList();
175
+
176
+ // Optional: Publish topology
177
+ if (enableTopologyPublish) {
178
+ publishTopology();
179
+ }
180
+
181
+ // Optional: Publish metrics
182
+ if (enableMetricsPublish) {
183
+ publishMetrics();
184
+ }
185
+
186
+ // Optional: Publish alerts
187
+ if (enableAlertsPublish) {
188
+ publishAlerts();
189
+ }
190
+
191
+ // Optional: Publish per-node status (expensive!)
192
+ if (enablePerNodePublish) {
193
+ publishPerNodeStatus();
194
+ }
195
+
196
+ unsigned long elapsed = millis() - startTime;
197
+ Serial.printf("Status published in %lu ms\n", elapsed);
198
+ }
199
+
200
+ /**
201
+ * Publish list of nodes with basic information
202
+ * Topic: mesh/status/nodes
203
+ *
204
+ * Schema-compliant with proposed mesh_node_list.schema.json v1
205
+ * Uses envelope + nodes array format for interoperability
206
+ */
207
+ void publishNodeList() {
208
+ auto nodes = mesh.getNodeList(true); // Include self
209
+
210
+ // Get device ID
211
+ String devId = deviceId.length() > 0 ? deviceId : String(mesh.getNodeId());
212
+
213
+ // Build ISO 8601 timestamp
214
+ String timestamp = buildISO8601Timestamp();
215
+
216
+ // Build schema-compliant message with envelope
217
+ String payload = "{";
218
+ // Envelope fields (required by proposed schema)
219
+ payload += "\"schema_version\":1";
220
+ payload += ",\"device_id\":\"" + devId + "\"";
221
+ payload += ",\"device_type\":\"gateway\"";
222
+ payload += ",\"timestamp\":\"" + timestamp + "\"";
223
+ payload += ",\"firmware_version\":\"" + firmwareVersion + "\"";
224
+
225
+ // Nodes array (required by proposed schema)
226
+ payload += ",\"nodes\":[";
227
+ for (size_t i = 0; i < nodes.size(); i++) {
228
+ if (i > 0) payload += ",";
229
+ payload += "{";
230
+ payload += "\"node_id\":\"" + String(nodes[i]) + "\"";
231
+ payload += ",\"status\":\"online\""; // All listed nodes are online
232
+ payload += ",\"last_seen\":\"" + timestamp + "\"";
233
+ payload += "}";
234
+ }
235
+ payload += "]";
236
+
237
+ // Additional fields (optional in proposed schema)
238
+ payload += ",\"node_count\":" + String(nodes.size());
239
+ payload += ",\"mesh_id\":\"" + String(mesh.getNodeId()) + "\"";
240
+ payload += "}";
241
+
242
+ String topic = topicPrefix + "nodes";
243
+ mqttClient.publish(topic.c_str(), payload.c_str());
244
+ }
245
+
246
+ /**
247
+ * Publish mesh topology as JSON
248
+ * Topic: mesh/status/topology
249
+ *
250
+ * Schema-compliant with proposed mesh_topology.schema.json v1
251
+ * Uses envelope + connections array format
252
+ *
253
+ * Note: painlessMesh native topology is complex. This implementation
254
+ * creates a simplified schema-compliant version. For full topology details,
255
+ * use the native format via a separate topic if needed.
256
+ */
257
+ void publishTopology() {
258
+ auto nodes = mesh.getNodeList(true);
259
+
260
+ // Get device ID
261
+ String devId = deviceId.length() > 0 ? deviceId : String(mesh.getNodeId());
262
+
263
+ // Build ISO 8601 timestamp
264
+ String timestamp = buildISO8601Timestamp();
265
+
266
+ // Build schema-compliant message with envelope
267
+ String payload = "{";
268
+ // Envelope fields (required by proposed schema)
269
+ payload += "\"schema_version\":1";
270
+ payload += ",\"device_id\":\"" + devId + "\"";
271
+ payload += ",\"device_type\":\"gateway\"";
272
+ payload += ",\"timestamp\":\"" + timestamp + "\"";
273
+ payload += ",\"firmware_version\":\"" + firmwareVersion + "\"";
274
+
275
+ // Connections array (required by proposed schema)
276
+ // Simplified: Each node connected to root (gateway)
277
+ payload += ",\"connections\":[";
278
+ bool first = true;
279
+ for (size_t i = 0; i < nodes.size(); i++) {
280
+ // Skip self (root node)
281
+ if (nodes[i] == mesh.getNodeId()) continue;
282
+
283
+ if (!first) payload += ",";
284
+ first = false;
285
+
286
+ payload += "{";
287
+ payload += "\"from_node\":\"" + String(nodes[i]) + "\"";
288
+ payload += ",\"to_node\":\"" + devId + "\"";
289
+ payload += ",\"link_quality\":0.9"; // Default - can be enhanced
290
+ payload += ",\"hop_count\":1"; // Simplified - assume direct connection
291
+ payload += "}";
292
+ }
293
+ payload += "]";
294
+
295
+ // Additional fields (optional in proposed schema)
296
+ payload += ",\"root_node\":\"" + devId + "\"";
297
+ payload += ",\"total_connections\":" + String(nodes.size() > 0 ? nodes.size() - 1 : 0);
298
+ payload += "}";
299
+
300
+ String topic = topicPrefix + "topology";
301
+ mqttClient.publish(topic.c_str(), payload.c_str());
302
+ }
303
+
304
+ /**
305
+ * Publish performance metrics
306
+ * Topic: mesh/status/metrics
307
+ *
308
+ * Compliant with @alteriom/mqtt-schema v1 gateway_metrics format
309
+ */
310
+ void publishMetrics() {
311
+ auto nodes = mesh.getNodeList(true);
312
+
313
+ // Get device ID (use mesh node ID if not explicitly set)
314
+ String devId = deviceId.length() > 0 ? deviceId : String(mesh.getNodeId());
315
+
316
+ // Build ISO 8601 timestamp (simplified - use actual RTC/NTP if available)
317
+ // Format: YYYY-MM-DDTHH:MM:SSZ
318
+ // Note: This uses millis() as fallback. For production, use:
319
+ // - NTP time sync via mesh.getNodeTime() or WiFi NTP client
320
+ // - RTC module for accurate timestamps
321
+ String timestamp;
322
+ #ifdef USE_NTP_TIME
323
+ // If NTP is available, use it
324
+ timestamp = getFormattedTimeISO8601();
325
+ #else
326
+ // Fallback: Use epoch + millis for relative time
327
+ // This is a simplified timestamp - recommend NTP sync for production
328
+ unsigned long totalSeconds = millis() / 1000;
329
+ unsigned long days = totalSeconds / 86400;
330
+ unsigned long hours = (totalSeconds / 3600) % 24;
331
+ unsigned long minutes = (totalSeconds / 60) % 60;
332
+ unsigned long seconds = totalSeconds % 60;
333
+ char timeStr[32];
334
+ // Use Unix epoch start (1970-01-01) + elapsed time
335
+ sprintf(timeStr, "1970-01-%02luT%02lu:%02lu:%02luZ",
336
+ 1 + days, hours, minutes, seconds);
337
+ timestamp = timeStr;
338
+ #endif
339
+
340
+ // Build Alteriom schema v1 compliant gateway_metrics message
341
+ String payload = "{";
342
+ // Envelope fields (required by schema)
343
+ payload += "\"schema_version\":1";
344
+ payload += ",\"device_id\":\"" + devId + "\"";
345
+ payload += ",\"device_type\":\"gateway\"";
346
+ payload += ",\"timestamp\":\"" + timestamp + "\"";
347
+ payload += ",\"firmware_version\":\"" + firmwareVersion + "\"";
348
+
349
+ // Metrics object (required by gateway_metrics schema)
350
+ payload += ",\"metrics\":{";
351
+ payload += "\"uptime_s\":" + String(millis() / 1000);
352
+ payload += ",\"mesh_nodes\":" + String(nodes.size());
353
+
354
+ #if defined(ESP32) || defined(ESP8266)
355
+ uint32_t totalHeap = ESP.getFreeHeap();
356
+ // Rough estimate of memory usage percentage (assuming typical ESP heap size)
357
+ uint32_t estimatedTotalHeap = 320000; // Adjust based on actual hardware
358
+ #ifdef ESP8266
359
+ estimatedTotalHeap = 80000;
360
+ #endif
361
+ float memoryUsagePct = 100.0 - ((float)totalHeap / estimatedTotalHeap * 100.0);
362
+ if (memoryUsagePct < 0) memoryUsagePct = 0;
363
+ if (memoryUsagePct > 100) memoryUsagePct = 100;
364
+
365
+ payload += ",\"memory_usage_pct\":" + String(memoryUsagePct, 1);
366
+ #endif
367
+
368
+ payload += ",\"connected_devices\":" + String(nodes.size());
369
+ payload += "}"; // End metrics object
370
+ payload += "}"; // End message
371
+
372
+ String topic = topicPrefix + "metrics";
373
+ mqttClient.publish(topic.c_str(), payload.c_str());
374
+ }
375
+
376
+ /**
377
+ * Publish active alerts
378
+ * Topic: mesh/status/alerts
379
+ *
380
+ * Schema-compliant with proposed mesh_alert.schema.json v1
381
+ * Uses envelope + alerts array format
382
+ *
383
+ * Tracks node health and publishes alerts when issues are detected.
384
+ */
385
+ void publishAlerts() {
386
+ auto nodes = mesh.getNodeList(true);
387
+
388
+ // Get device ID
389
+ String devId = deviceId.length() > 0 ? deviceId : String(mesh.getNodeId());
390
+
391
+ // Build ISO 8601 timestamp
392
+ String timestamp = buildISO8601Timestamp();
393
+
394
+ // Build schema-compliant message with envelope
395
+ String payload = "{";
396
+ // Envelope fields (required by proposed schema)
397
+ payload += "\"schema_version\":1";
398
+ payload += ",\"device_id\":\"" + devId + "\"";
399
+ payload += ",\"device_type\":\"gateway\"";
400
+ payload += ",\"timestamp\":\"" + timestamp + "\"";
401
+ payload += ",\"firmware_version\":\"" + firmwareVersion + "\"";
402
+
403
+ // Alerts array (required by proposed schema)
404
+ payload += ",\"alerts\":[";
405
+ bool hasAlerts = false;
406
+
407
+ // Alert: No nodes in mesh
408
+ if (nodes.size() <= 1) { // Only gateway
409
+ if (hasAlerts) payload += ",";
410
+ payload += "{";
411
+ payload += "\"alert_type\":\"node_offline\"";
412
+ payload += ",\"severity\":\"warning\"";
413
+ payload += ",\"message\":\"No sensor nodes in mesh network\"";
414
+ payload += ",\"alert_id\":\"alert-no-nodes\"";
415
+ payload += "}";
416
+ hasAlerts = true;
417
+ }
418
+
419
+ #if defined(ESP32) || defined(ESP8266)
420
+ // Alert: Low memory on gateway
421
+ size_t freeHeap = ESP.getFreeHeap();
422
+ if (freeHeap < 10000) {
423
+ if (hasAlerts) payload += ",";
424
+ payload += "{";
425
+ payload += "\"alert_type\":\"low_memory\"";
426
+ payload += ",\"severity\":\"critical\"";
427
+ payload += ",\"message\":\"Gateway free heap below 10KB\"";
428
+ payload += ",\"node_id\":\"" + devId + "\"";
429
+ payload += ",\"metric_value\":" + String(freeHeap / 1024.0);
430
+ payload += ",\"threshold\":10.0";
431
+ payload += ",\"alert_id\":\"alert-low-mem-gw\"";
432
+ payload += "}";
433
+ hasAlerts = true;
434
+ }
435
+ #endif
436
+
437
+ payload += "]";
438
+
439
+ // Additional fields (optional in proposed schema)
440
+ payload += ",\"alert_count\":" + String(hasAlerts ? 1 : 0);
441
+ payload += "}";
442
+
443
+ String topic = topicPrefix + "alerts";
444
+ mqttClient.publish(topic.c_str(), payload.c_str());
445
+ }
446
+
447
+ /**
448
+ * Publish detailed status for each node
449
+ * Topic: mesh/status/node/{nodeId}
450
+ *
451
+ * Schema-compliant with sensor_status.schema.json v1 (existing in @alteriom/mqtt-schema)
452
+ * Uses envelope + status enum format
453
+ *
454
+ * Warning: This can generate a lot of MQTT traffic for large meshes!
455
+ * Enable only if per-node status is required.
456
+ */
457
+ void publishPerNodeStatus() {
458
+ auto nodes = mesh.getNodeList(true); // Include all nodes
459
+
460
+ // Build ISO 8601 timestamp
461
+ String timestamp = buildISO8601Timestamp();
462
+
463
+ for (auto nodeId : nodes) {
464
+ // Build schema-compliant message with envelope
465
+ String payload = "{";
466
+ // Envelope fields (required by sensor_status schema)
467
+ payload += "\"schema_version\":1";
468
+ payload += ",\"device_id\":\"" + String(nodeId) + "\"";
469
+
470
+ // Determine device type - gateway or sensor
471
+ if (nodeId == mesh.getNodeId()) {
472
+ payload += ",\"device_type\":\"gateway\"";
473
+ } else {
474
+ payload += ",\"device_type\":\"sensor\"";
475
+ }
476
+
477
+ payload += ",\"timestamp\":\"" + timestamp + "\"";
478
+ payload += ",\"firmware_version\":\"" + firmwareVersion + "\"";
479
+
480
+ // Status field (required by sensor_status schema)
481
+ bool isConnected = mesh.isConnected(nodeId);
482
+ payload += ",\"status\":\"" + String(isConnected ? "online" : "offline") + "\"";
483
+
484
+ // Optional fields in sensor_status schema
485
+ // Note: signal_strength would require RSSI data from mesh
486
+ // battery_level would require node to report this data
487
+
488
+ payload += "}";
489
+
490
+ String topic = topicPrefix + "node/" + String(nodeId);
491
+ mqttClient.publish(topic.c_str(), payload.c_str());
492
+ }
493
+ }
494
+
495
+ private:
496
+ /**
497
+ * Helper function to build ISO 8601 timestamp
498
+ * Shared across all publishing methods for consistency
499
+ */
500
+ String buildISO8601Timestamp() {
501
+ #ifdef USE_NTP_TIME
502
+ // If NTP is available, use it
503
+ return getFormattedTimeISO8601();
504
+ #else
505
+ // Fallback: Use epoch + millis for relative time
506
+ unsigned long totalSeconds = millis() / 1000;
507
+ unsigned long days = totalSeconds / 86400;
508
+ unsigned long hours = (totalSeconds / 3600) % 24;
509
+ unsigned long minutes = (totalSeconds / 60) % 60;
510
+ unsigned long seconds = totalSeconds % 60;
511
+ char timeStr[32];
512
+ sprintf(timeStr, "1970-01-%02luT%02lu:%02lu:%02luZ",
513
+ 1 + days, hours, minutes, seconds);
514
+ return String(timeStr);
515
+ #endif
516
+ }
517
+ };
518
+
519
+ #endif // _MQTT_STATUS_BRIDGE_HPP_
@@ -1,25 +1,25 @@
1
- [platformio]
2
- src_dir = .
3
-
4
- [env]
5
- lib_deps =
6
- bblanchon/ArduinoJson
7
- arkhipenko/TaskScheduler
8
-
9
- [env:esp8266]
10
- platform = espressif8266
11
- board = nodemcuv2
12
- framework = arduino
13
- lib_extra_dirs = ../../
14
- lib_deps =
15
- ${env.lib_deps} ; Inherit common dependencies
16
- esp32async/ESPAsyncTCP ; Only for ESP8266
17
-
18
- [env:esp32]
19
- platform = espressif32
20
- board = esp32dev
21
- framework = arduino
22
- lib_extra_dirs = ../../
23
- lib_deps =
24
- ${env.lib_deps} ; Inherit common dependencies
25
- esp32async/AsyncTCP
1
+ [platformio]
2
+ src_dir = .
3
+
4
+ [env]
5
+ lib_deps =
6
+ bblanchon/ArduinoJson
7
+ arkhipenko/TaskScheduler
8
+
9
+ [env:esp8266]
10
+ platform = espressif8266
11
+ board = nodemcuv2
12
+ framework = arduino
13
+ lib_extra_dirs = ../../
14
+ lib_deps =
15
+ ${env.lib_deps} ; Inherit common dependencies
16
+ esp32async/ESPAsyncTCP ; Only for ESP8266
17
+
18
+ [env:esp32]
19
+ platform = espressif32
20
+ board = esp32dev
21
+ framework = arduino
22
+ lib_extra_dirs = ../../
23
+ lib_deps =
24
+ ${env.lib_deps} ; Inherit common dependencies
25
+ esp32async/AsyncTCP
@@ -1,33 +1,33 @@
1
- //************************************************************
2
- // this is a simple example that uses the painlessMesh library and echos any
3
- // messages it receives
4
- //
5
- //************************************************************
6
- #include "painlessMesh.h"
7
-
8
- #define MESH_PREFIX "whateverYouLike"
9
- #define MESH_PASSWORD "somethingSneaky"
10
- #define MESH_PORT 5555
11
-
12
- // Prototypes
13
- void receivedCallback( uint32_t from, String &msg );
14
-
15
- painlessMesh mesh;
16
-
17
- void setup() {
18
- Serial.begin(115200);
19
-
20
- mesh.setDebugMsgTypes( ERROR | STARTUP | CONNECTION ); // set before init() so that you can see startup messages
21
-
22
- mesh.init( MESH_PREFIX, MESH_PASSWORD, MESH_PORT );
23
- mesh.onReceive(&receivedCallback);
24
- }
25
-
26
- void loop() {
27
- mesh.update();
28
- }
29
-
30
- void receivedCallback( uint32_t from, String &msg ) {
31
- Serial.printf("echoNode: Received from %u msg=%s\n", from, msg.c_str());
32
- mesh.sendSingle(from, msg);
33
- }
1
+ //************************************************************
2
+ // this is a simple example that uses the painlessMesh library and echos any
3
+ // messages it receives
4
+ //
5
+ //************************************************************
6
+ #include "painlessMesh.h"
7
+
8
+ #define MESH_PREFIX "whateverYouLike"
9
+ #define MESH_PASSWORD "somethingSneaky"
10
+ #define MESH_PORT 5555
11
+
12
+ // Prototypes
13
+ void receivedCallback( uint32_t from, String &msg );
14
+
15
+ painlessMesh mesh;
16
+
17
+ void setup() {
18
+ Serial.begin(115200);
19
+
20
+ mesh.setDebugMsgTypes( ERROR | STARTUP | CONNECTION ); // set before init() so that you can see startup messages
21
+
22
+ mesh.init( MESH_PREFIX, MESH_PASSWORD, MESH_PORT );
23
+ mesh.onReceive(&receivedCallback);
24
+ }
25
+
26
+ void loop() {
27
+ mesh.update();
28
+ }
29
+
30
+ void receivedCallback( uint32_t from, String &msg ) {
31
+ Serial.printf("echoNode: Received from %u msg=%s\n", from, msg.c_str());
32
+ mesh.sendSingle(from, msg);
33
+ }
@@ -1,25 +1,25 @@
1
- [platformio]
2
- src_dir = .
3
-
4
- [env]
5
- lib_deps =
6
- bblanchon/ArduinoJson
7
- arkhipenko/TaskScheduler
8
-
9
- [env:esp8266]
10
- platform = espressif8266
11
- board = nodemcuv2
12
- framework = arduino
13
- lib_extra_dirs = ../../
14
- lib_deps =
15
- ${env.lib_deps} ; Inherit common dependencies
16
- esp32async/ESPAsyncTCP ; Only for ESP8266
17
-
18
- [env:esp32]
19
- platform = espressif32
20
- board = esp32dev
21
- framework = arduino
22
- lib_extra_dirs = ../../
23
- lib_deps =
24
- ${env.lib_deps} ; Inherit common dependencies
25
- esp32async/AsyncTCP
1
+ [platformio]
2
+ src_dir = .
3
+
4
+ [env]
5
+ lib_deps =
6
+ bblanchon/ArduinoJson
7
+ arkhipenko/TaskScheduler
8
+
9
+ [env:esp8266]
10
+ platform = espressif8266
11
+ board = nodemcuv2
12
+ framework = arduino
13
+ lib_extra_dirs = ../../
14
+ lib_deps =
15
+ ${env.lib_deps} ; Inherit common dependencies
16
+ esp32async/ESPAsyncTCP ; Only for ESP8266
17
+
18
+ [env:esp32]
19
+ platform = espressif32
20
+ board = esp32dev
21
+ framework = arduino
22
+ lib_extra_dirs = ../../
23
+ lib_deps =
24
+ ${env.lib_deps} ; Inherit common dependencies
25
+ esp32async/AsyncTCP