@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,459 @@
1
+ #ifndef MQTT_COMMAND_BRIDGE_HPP
2
+ #define MQTT_COMMAND_BRIDGE_HPP
3
+
4
+ #include "painlessMesh.h"
5
+ #include <PubSubClient.h>
6
+ #include "examples/alteriom/alteriom_sensor_package.hpp"
7
+ #include "examples/bridge/mesh_topology_reporter.hpp"
8
+
9
+ using namespace alteriom;
10
+
11
+ /**
12
+ * @brief Bidirectional MQTT-Mesh Command Bridge
13
+ *
14
+ * Enables MQTT control of mesh devices and mesh status reporting to MQTT.
15
+ * Supports command forwarding, configuration management, and response routing.
16
+ */
17
+ class MqttCommandBridge {
18
+ private:
19
+ painlessMesh& mesh;
20
+ PubSubClient& mqtt;
21
+ String gatewayId;
22
+ MeshTopologyReporter* topologyReporter;
23
+
24
+ // Command definitions matching MQTT_BRIDGE_COMMANDS.md
25
+ enum Commands {
26
+ // Device Control (1-99)
27
+ RESET = 1,
28
+ SLEEP = 2,
29
+ WAKE = 3,
30
+ LED_CONTROL = 10,
31
+ RELAY_SWITCH = 11,
32
+ PWM_SET = 12,
33
+ SENSOR_ENABLE = 20,
34
+ SENSOR_CALIBRATE = 21,
35
+
36
+ // Configuration (100-199)
37
+ GET_CONFIG = 100,
38
+ SET_CONFIG = 101,
39
+ RESET_CONFIG = 102,
40
+ SAVE_CONFIG = 103,
41
+ SET_SAMPLE_RATE = 110,
42
+ SET_DEVICE_NAME = 111,
43
+
44
+ // Status (200-255)
45
+ GET_STATUS = 200,
46
+ GET_METRICS = 201,
47
+ GET_DIAGNOSTICS = 202,
48
+ START_MONITORING = 210,
49
+ STOP_MONITORING = 211,
50
+
51
+ // Topology (300-399)
52
+ GET_TOPOLOGY = 300
53
+ };
54
+
55
+ public:
56
+ MqttCommandBridge(painlessMesh& m, PubSubClient& mq, MeshTopologyReporter* reporter = nullptr)
57
+ : mesh(m), mqtt(mq), topologyReporter(reporter) {
58
+ gatewayId = String(mesh.getNodeId());
59
+ }
60
+
61
+ /**
62
+ * @brief Set topology reporter instance
63
+ */
64
+ void setTopologyReporter(MeshTopologyReporter* reporter) {
65
+ topologyReporter = reporter;
66
+ }
67
+
68
+ /**
69
+ * @brief Initialize the bridge with topic subscriptions and callbacks
70
+ */
71
+ void begin() {
72
+ // Subscribe to command topics
73
+ String cmdTopic = "mesh/command/" + gatewayId;
74
+ mqtt.subscribe(cmdTopic.c_str());
75
+ mqtt.subscribe("mesh/command/broadcast");
76
+
77
+ String configGetTopic = "mesh/config/" + gatewayId + "/get";
78
+ mqtt.subscribe(configGetTopic.c_str());
79
+
80
+ String configSetTopic = "mesh/config/" + gatewayId + "/set";
81
+ mqtt.subscribe(configSetTopic.c_str());
82
+
83
+ Serial.printf("MQTT Command Bridge initialized - Gateway ID: %s\n", gatewayId.c_str());
84
+ Serial.println("Subscribed topics:");
85
+ Serial.printf(" - %s\n", cmdTopic.c_str());
86
+ Serial.println(" - mesh/command/broadcast");
87
+ Serial.printf(" - %s\n", configGetTopic.c_str());
88
+ Serial.printf(" - %s\n", configSetTopic.c_str());
89
+ }
90
+
91
+ /**
92
+ * @brief Set MQTT callback for incoming messages
93
+ */
94
+ void setMqttCallback() {
95
+ mqtt.setCallback([this](char* topic, byte* payload, unsigned int length) {
96
+ this->onMqttMessage(topic, payload, length);
97
+ });
98
+ }
99
+
100
+ /**
101
+ * @brief Set mesh received callback for outgoing messages
102
+ */
103
+ void setMeshCallback() {
104
+ mesh.onReceive([this](uint32_t from, String& msg) {
105
+ this->onMeshMessage(from, msg);
106
+ });
107
+ }
108
+
109
+ /**
110
+ * @brief Handle incoming MQTT messages
111
+ */
112
+ void onMqttMessage(char* topic, byte* payload, unsigned int length) {
113
+ String topicStr = String(topic);
114
+
115
+ // Parse JSON payload
116
+ DynamicJsonDocument doc(1024);
117
+ DeserializationError error = deserializeJson(doc, payload, length);
118
+
119
+ if (error) {
120
+ Serial.printf("JSON parse error: %s\n", error.c_str());
121
+ return;
122
+ }
123
+
124
+ Serial.printf("MQTT message on %s\n", topic);
125
+
126
+ if (topicStr.indexOf("/command/") >= 0) {
127
+ forwardCommandToMesh(doc);
128
+ }
129
+ else if (topicStr.endsWith("/get")) {
130
+ handleConfigRequest(doc);
131
+ }
132
+ else if (topicStr.endsWith("/set")) {
133
+ handleConfigUpdate(doc);
134
+ }
135
+ }
136
+
137
+ /**
138
+ * @brief Forward MQTT command to mesh network
139
+ */
140
+ void forwardCommandToMesh(JsonDocument& doc) {
141
+ // Create CommandPackage
142
+ CommandPackage cmd;
143
+ cmd.command = doc["command"];
144
+ cmd.targetDevice = doc["targetDevice"];
145
+ cmd.commandId = doc["commandId"] | millis(); // Generate if missing
146
+ cmd.parameters = doc["parameters"].as<String>();
147
+ cmd.from = mesh.getNodeId();
148
+ cmd.dest = cmd.targetDevice;
149
+
150
+ Serial.printf("Command: cmd=%d, target=%u, id=%u\n",
151
+ cmd.command, cmd.targetDevice, cmd.commandId);
152
+
153
+ // Route based on target
154
+ if (cmd.targetDevice == 0 || cmd.targetDevice == mesh.getNodeId()) {
155
+ // Execute locally on gateway
156
+ executeCommand(cmd);
157
+ } else {
158
+ // Forward to mesh node
159
+ auto variant = painlessmesh::protocol::Variant(&cmd);
160
+ String message;
161
+ variant.printTo(message);
162
+
163
+ mesh.sendSingle(cmd.targetDevice, message);
164
+ Serial.printf("Command forwarded to node %u\n", cmd.targetDevice);
165
+ }
166
+ }
167
+
168
+ /**
169
+ * @brief Execute command locally on gateway
170
+ */
171
+ void executeCommand(const CommandPackage& cmd) {
172
+ Serial.printf("Executing command: %d\n", cmd.command);
173
+
174
+ StatusPackage response;
175
+ response.from = mesh.getNodeId();
176
+ response.responseToCommand = cmd.commandId;
177
+ response.deviceStatus = 0; // OK
178
+
179
+ switch(cmd.command) {
180
+ case RESET:
181
+ response.responseMessage = "Rebooting...";
182
+ sendResponse(response);
183
+ delay(1000);
184
+ ESP.restart();
185
+ break;
186
+
187
+ case SLEEP: {
188
+ DynamicJsonDocument params(256);
189
+ deserializeJson(params, cmd.parameters);
190
+ uint32_t duration = params["duration_ms"];
191
+
192
+ response.responseMessage = "Entering sleep for " + String(duration) + "ms";
193
+ sendResponse(response);
194
+
195
+ ESP.deepSleep(duration * 1000);
196
+ break;
197
+ }
198
+
199
+ case LED_CONTROL: {
200
+ DynamicJsonDocument params(256);
201
+ deserializeJson(params, cmd.parameters);
202
+
203
+ bool state = params["state"];
204
+ uint8_t brightness = params["brightness"] | 255;
205
+
206
+ // Control LED
207
+ digitalWrite(LED_BUILTIN, state ? LOW : HIGH);
208
+
209
+ response.responseMessage = "LED " + String(state ? "ON" : "OFF");
210
+ sendResponse(response);
211
+ break;
212
+ }
213
+
214
+ case GET_CONFIG:
215
+ sendConfiguration();
216
+ break;
217
+
218
+ case GET_STATUS:
219
+ sendStatus();
220
+ break;
221
+
222
+ case GET_METRICS:
223
+ sendMetrics();
224
+ break;
225
+
226
+ case GET_TOPOLOGY:
227
+ sendTopology(cmd.commandId);
228
+ break;
229
+
230
+ default:
231
+ response.deviceStatus = 2; // Error
232
+ response.responseMessage = "Unknown command: " + String(cmd.command);
233
+ sendResponse(response);
234
+ }
235
+ }
236
+
237
+ /**
238
+ * @brief Handle incoming mesh messages and forward to MQTT
239
+ */
240
+ void onMeshMessage(uint32_t from, String& msg) {
241
+ // Parse message
242
+ DynamicJsonDocument doc(2048);
243
+ DeserializationError error = deserializeJson(doc, msg);
244
+
245
+ if (error) return;
246
+
247
+ uint8_t msgType = doc["type"];
248
+
249
+ // Forward mesh messages to MQTT based on type
250
+ switch(msgType) {
251
+ case 200: // SensorPackage
252
+ publishToMqtt("mesh/sensor/" + String(from), msg);
253
+ break;
254
+
255
+ case 202: // StatusPackage
256
+ // Check if it's a command response
257
+ if (doc.containsKey("respTo") && doc["respTo"] > 0) {
258
+ publishToMqtt("mesh/response/" + String(from), msg);
259
+ } else {
260
+ publishToMqtt("mesh/status/" + String(from), msg);
261
+ }
262
+ break;
263
+
264
+ case 203: // EnhancedStatusPackage
265
+ publishToMqtt("mesh/health/" + String(from), msg);
266
+ break;
267
+ }
268
+ }
269
+
270
+ /**
271
+ * @brief Send status response via MQTT
272
+ */
273
+ void sendResponse(const StatusPackage& response) {
274
+ auto variant = painlessmesh::protocol::Variant(&response);
275
+ String message;
276
+ variant.printTo(message);
277
+
278
+ String topic = "mesh/response/" + String(response.from);
279
+ publishToMqtt(topic, message);
280
+ }
281
+
282
+ /**
283
+ * @brief Send configuration via MQTT
284
+ */
285
+ void sendConfiguration() {
286
+ DynamicJsonDocument config(1024);
287
+ config["schema_version"] = 1;
288
+ config["device_id"] = gatewayId;
289
+ config["timestamp"] = getCurrentISO8601Timestamp();
290
+
291
+ JsonObject cfg = config.createNestedObject("config");
292
+ cfg["deviceName"] = "Gateway-" + gatewayId;
293
+ cfg["firmwareVersion"] = "1.6.1-alteriom";
294
+ cfg["role"] = "gateway";
295
+ cfg["meshPrefix"] = "AlteriomMesh";
296
+ cfg["nodeCount"] = mesh.getNodeList().size();
297
+
298
+ String payload;
299
+ serializeJson(config, payload);
300
+
301
+ String topic = "mesh/config/" + gatewayId;
302
+ publishToMqtt(topic, payload);
303
+ }
304
+
305
+ /**
306
+ * @brief Send basic status via MQTT
307
+ */
308
+ void sendStatus() {
309
+ StatusPackage status;
310
+ status.from = mesh.getNodeId();
311
+ status.deviceStatus = 0;
312
+ status.uptime = millis() / 1000;
313
+ status.freeMemory = ESP.getFreeHeap() / 1024;
314
+ status.wifiStrength = WiFi.RSSI();
315
+ status.firmwareVersion = "1.6.1-alteriom";
316
+
317
+ sendResponse(status);
318
+ }
319
+
320
+ /**
321
+ * @brief Send enhanced metrics via MQTT
322
+ */
323
+ void sendMetrics() {
324
+ EnhancedStatusPackage metrics;
325
+ metrics.from = mesh.getNodeId();
326
+ metrics.deviceStatus = 0;
327
+ metrics.uptime = millis() / 1000;
328
+ metrics.freeMemory = ESP.getFreeHeap() / 1024;
329
+ metrics.wifiStrength = WiFi.RSSI();
330
+ metrics.firmwareVersion = "1.6.1-alteriom";
331
+
332
+ // Mesh statistics
333
+ auto nodeList = mesh.getNodeList();
334
+ metrics.nodeCount = nodeList.size();
335
+ metrics.connectionCount = mesh.getNodeList().size();
336
+
337
+ auto variant = painlessmesh::protocol::Variant(&metrics);
338
+ String message;
339
+ variant.printTo(message);
340
+
341
+ String topic = "mesh/health/" + String(metrics.from);
342
+ publishToMqtt(topic, message);
343
+ }
344
+
345
+ /**
346
+ * @brief Send mesh topology via MQTT (Command 300)
347
+ * @param commandId The command ID for correlation
348
+ */
349
+ void sendTopology(uint32_t commandId) {
350
+ if (!topologyReporter) {
351
+ Serial.println("⚠️ Topology reporter not initialized");
352
+
353
+ StatusPackage response;
354
+ response.from = mesh.getNodeId();
355
+ response.responseToCommand = commandId;
356
+ response.deviceStatus = 2; // Error
357
+ response.responseMessage = "Topology reporter not available";
358
+ sendResponse(response);
359
+ return;
360
+ }
361
+
362
+ Serial.printf("📊 Generating topology for command %u\n", commandId);
363
+ String topology = topologyReporter->generateFullTopology();
364
+
365
+ // Parse to add correlation_id
366
+ DynamicJsonDocument doc(8192);
367
+ DeserializationError error = deserializeJson(doc, topology);
368
+
369
+ if (error) {
370
+ Serial.printf("❌ Failed to parse topology: %s\n", error.c_str());
371
+ return;
372
+ }
373
+
374
+ // Add correlation_id at root level
375
+ doc["correlation_id"] = String(commandId);
376
+
377
+ String payload;
378
+ serializeJson(doc, payload);
379
+
380
+ // Publish to response topic
381
+ String topic = "alteriom/mesh/MESH-001/topology/response";
382
+ publishToMqtt(topic, payload);
383
+
384
+ Serial.printf("✅ Topology sent (cmd=%u, size=%d bytes)\n", commandId, payload.length());
385
+ }
386
+
387
+ /**
388
+ * @brief Handle configuration request
389
+ */
390
+ void handleConfigRequest(JsonDocument& doc) {
391
+ sendConfiguration();
392
+ }
393
+
394
+ /**
395
+ * @brief Handle configuration update
396
+ */
397
+ void handleConfigUpdate(JsonDocument& doc) {
398
+ JsonObject config = doc["config"];
399
+
400
+ // Apply configuration updates
401
+ if (config.containsKey("deviceName")) {
402
+ String newName = config["deviceName"];
403
+ Serial.printf("Config update: deviceName=%s\n", newName.c_str());
404
+ // Store to preferences/EEPROM in production
405
+ }
406
+
407
+ if (config.containsKey("meshPrefix")) {
408
+ String newPrefix = config["meshPrefix"];
409
+ Serial.printf("Config update: meshPrefix=%s (requires restart)\n", newPrefix.c_str());
410
+ }
411
+
412
+ // Send acknowledgment
413
+ DynamicJsonDocument ack(256);
414
+ ack["status"] = "success";
415
+ ack["device_id"] = gatewayId;
416
+ ack["message"] = "Configuration updated";
417
+ ack["timestamp"] = getCurrentISO8601Timestamp();
418
+
419
+ String payload;
420
+ serializeJson(ack, payload);
421
+
422
+ String topic = "mesh/response/" + gatewayId;
423
+ publishToMqtt(topic, payload);
424
+ }
425
+
426
+ /**
427
+ * @brief Publish message to MQTT broker
428
+ */
429
+ void publishToMqtt(const String& topic, const String& payload) {
430
+ if (mqtt.connected()) {
431
+ bool success = mqtt.publish(topic.c_str(), payload.c_str());
432
+ if (success) {
433
+ Serial.printf("MQTT published: %s\n", topic.c_str());
434
+ } else {
435
+ Serial.printf("MQTT publish failed: %s\n", topic.c_str());
436
+ }
437
+ } else {
438
+ Serial.println("MQTT not connected, cannot publish");
439
+ }
440
+ }
441
+
442
+ private:
443
+ /**
444
+ * @brief Get current ISO8601 timestamp
445
+ * Note: Simple implementation, enhance with NTP for production
446
+ */
447
+ String getCurrentISO8601Timestamp() {
448
+ unsigned long seconds = millis() / 1000;
449
+ char timestamp[25];
450
+ snprintf(timestamp, sizeof(timestamp),
451
+ "1970-01-01T%02lu:%02lu:%02luZ",
452
+ (seconds / 3600) % 24,
453
+ (seconds / 60) % 60,
454
+ seconds % 60);
455
+ return String(timestamp);
456
+ }
457
+ };
458
+
459
+ #endif // MQTT_COMMAND_BRIDGE_HPP