@alteriom/painlessmesh 1.6.1 → 1.7.3
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.
- package/CHANGELOG.md +435 -144
- package/LICENSE +674 -674
- package/README.md +491 -434
- package/RELEASE_GUIDE.md +504 -418
- package/docs/DOCUMENTATION_MIGRATION_PLAN.md +175 -175
- package/docs/IMPLEMENTATION_PLAN_MESH_TOPOLOGY.md +1062 -0
- package/docs/MESH_TOPOLOGY_GUIDE.md +992 -0
- package/docs/MESH_TOPOLOGY_PROGRESS.md +422 -0
- package/docs/MQTT_BRIDGE_COMMANDS.md +894 -0
- package/docs/MQTT_BRIDGE_IMPLEMENTATION_SUMMARY.md +324 -0
- package/docs/MQTT_COMMAND_SCHEMA_PROPOSAL.md +576 -0
- package/docs/MQTT_SCHEMA_COMPLIANCE.md +285 -0
- package/docs/MQTT_SCHEMA_PROPOSALS.md +446 -0
- package/docs/MQTT_SCHEMA_REVIEW.md +690 -0
- package/docs/OTA_COMMANDS_REFERENCE.md +554 -0
- package/docs/PHASE1_GUIDE.md +349 -0
- package/docs/PHASE2_GUIDE.md +543 -0
- package/docs/README.md +130 -71
- package/docs/SCHEMA_VALIDATION_CHECKLIST.md +222 -0
- package/docs/alteriom/overview.md +507 -507
- package/docs/api/core-api.md +606 -606
- package/docs/architecture/mesh-architecture.md +378 -378
- package/docs/architecture/plugin-system.md +516 -516
- package/docs/archive/DOCUSAURUS_DEPLOYMENT.md +166 -0
- package/docs/archive/FEATURE_PROPOSALS.md +337 -0
- package/docs/archive/LIBRARY_JSON_FIX.md +98 -0
- package/docs/archive/LIBRARY_STRUCTURE_FIX.md +215 -0
- package/docs/archive/PHASE1_IMPLEMENTATION.md +325 -0
- package/docs/archive/PHASE2_IMPLEMENTATION.md +567 -0
- package/docs/archive/RELEASE_SUMMARY.md +173 -0
- package/docs/archive/SCONS_BUILD_FIX.md +313 -0
- package/docs/archive/TRIGGER_RELEASE.md +280 -0
- package/docs/archive/VECTOR_INCLUDE_FIX.md +129 -0
- package/docs/archive/ota-and-status-enhancements.md +911 -0
- package/docs/archive/ota-status-architecture-diagrams.md +658 -0
- package/docs/archive/ota-status-quick-reference.md +284 -0
- package/docs/development/ARDUINO_COMPLIANCE_SUMMARY.md +71 -0
- package/docs/development/CODE_REFACTORING_RECOMMENDATIONS.md +1011 -0
- package/docs/development/DOCKER_TESTING.md +196 -0
- package/docs/development/PLATFORMIO_USAGE.md +180 -0
- package/docs/development/TESTING_SUMMARY.md +126 -0
- package/docs/development/contributing.md +301 -0
- package/docs/development/documentation.md +583 -0
- package/docs/getting-started/first-mesh.md +409 -409
- package/docs/getting-started/installation.md +274 -274
- package/docs/getting-started/quickstart.md +157 -157
- package/docs/improvements/FUTURE_PROPOSALS.md +1016 -0
- package/docs/improvements/IMPLEMENTATION_HISTORY.md +1091 -0
- package/docs/improvements/OTA_STATUS_ENHANCEMENTS.md +709 -0
- package/docs/improvements/README.md +212 -69
- package/docs/platformio-publishing.md +255 -0
- package/docs/platformio-setup-summary.md +121 -0
- package/docs/releases/FEATURE_HISTORY.md +543 -0
- package/docs/releases/PATCH_v1.7.3.md +262 -0
- package/docs/releases/PHASE1_SUMMARY.md +246 -0
- package/docs/releases/PHASE2_SUMMARY.md +499 -0
- package/docs/releases/RELEASE_NOTES_1.7.0.md +539 -0
- package/docs/troubleshooting/common-issues.md +520 -520
- package/docs/troubleshooting/debugging.md +455 -0
- package/docs/troubleshooting/faq.md +472 -472
- package/docs/tutorials/basic-examples.md +717 -717
- package/docs/wiki/API-Reference.md +245 -245
- package/docs/wiki/Complete-Documentation.md +122 -122
- package/examples/alteriom/README.md +139 -81
- package/examples/alteriom/alteriom.ino +186 -185
- package/examples/alteriom/alteriom_sensor_package.hpp +240 -127
- package/examples/alteriom/platformio.ini +24 -24
- package/examples/alteriomImproved/alteriom_sensor_package.hpp +224 -0
- package/examples/{alteriom → alteriomImproved}/improved_sensor_node.ino +245 -245
- package/examples/alteriomImproved/platformio.ini +25 -0
- package/examples/alteriomPhase1/alteriom_sensor_package.hpp +224 -0
- package/examples/alteriomPhase1/phase1_features.ino +242 -0
- package/examples/alteriomPhase1/platformio.ini +25 -0
- package/examples/alteriomPhase2/alteriom_sensor_package.hpp +224 -0
- package/examples/alteriomPhase2/phase2_features.ino +186 -0
- package/examples/alteriomPhase2/platformio.ini +25 -0
- package/examples/{alteriom → alteriomSensorNode}/alteriom_sensor_node.ino +183 -183
- package/examples/alteriomSensorNode/alteriom_sensor_package.hpp +224 -0
- package/examples/alteriomSensorNode/platformio.ini +25 -0
- package/examples/basic/basic.ino +66 -66
- package/examples/basic/platformio.ini +25 -25
- package/examples/bridge/bridge.ino +51 -51
- package/examples/bridge/mesh_event_publisher.hpp +253 -0
- package/examples/bridge/mesh_topology_reporter.hpp +303 -0
- package/examples/bridge/mqtt_command_bridge.hpp +459 -0
- package/examples/bridge/mqtt_status_bridge.hpp +519 -0
- package/examples/bridge/platformio.ini +25 -25
- package/examples/echoNode/echoNode.ino +33 -33
- package/examples/echoNode/platformio.ini +25 -25
- package/examples/logClient/logClient.ino +109 -109
- package/examples/logClient/platformio.ini +25 -25
- package/examples/logServer/logServer.ino +81 -81
- package/examples/logServer/platformio.ini +25 -25
- package/examples/meshCommandNode/alteriom_sensor_package.hpp +235 -0
- package/examples/meshCommandNode/meshCommandNode.ino +263 -0
- package/examples/meshCommandNode/platformio.ini +25 -0
- package/examples/mqttBridge/mqttBridge.ino +118 -118
- package/examples/mqttBridge/platformio.ini +26 -26
- package/examples/mqttCommandBridge/alteriom_sensor_package.hpp +235 -0
- package/examples/mqttCommandBridge/mesh_event_publisher.hpp +253 -0
- package/examples/mqttCommandBridge/mesh_topology_reporter.hpp +303 -0
- package/examples/mqttCommandBridge/mqttCommandBridge.ino +252 -0
- package/examples/mqttCommandBridge/mqtt_command_bridge.hpp +459 -0
- package/examples/mqttCommandBridge/platformio.ini +26 -0
- package/examples/mqttStatusBridge/mqttStatusBridge.ino +216 -0
- package/examples/mqttStatusBridge/mqtt_status_bridge.hpp +522 -0
- package/examples/mqttStatusBridge/platformio.ini +26 -0
- package/examples/mqttTopologyTest/README.md +467 -0
- package/examples/mqttTopologyTest/mqttTopologyTest.ino +748 -0
- package/examples/mqttTopologyTest/platformio.ini +26 -0
- package/examples/namedMesh/namedMesh.ino +97 -97
- package/examples/namedMesh/platformio.ini +25 -25
- package/examples/otaReceiver/otaReceiver.ino +79 -79
- package/examples/otaReceiver/platformio.ini +25 -25
- package/examples/otaSender/otaSender.ino +160 -151
- package/examples/otaSender/platformio.ini +25 -25
- package/examples/startHere/platformio.ini +25 -25
- package/examples/startHere/startHere.ino +159 -159
- package/examples/webServer/platformio.ini +27 -27
- package/examples/webServer/webServer.ino +89 -89
- package/keywords.txt +48 -48
- package/library.json +55 -34
- package/library.properties +10 -10
- package/package.json +86 -78
- package/src/AlteriomPainlessMesh.h +97 -97
- package/src/arduino/wifi.hpp +365 -365
- package/src/boost/asynctcp.hpp +279 -279
- package/src/painlessMesh.h +70 -70
- package/src/painlessMeshSTA.cpp +236 -236
- package/src/painlessMeshSTA.h +58 -58
- package/src/painlessTaskOptions.h +4 -4
- package/src/painlessmesh/base64.hpp +111 -111
- package/src/painlessmesh/buffer.hpp +229 -229
- package/src/painlessmesh/callback.hpp +91 -91
- package/src/painlessmesh/configuration.hpp +77 -77
- package/src/painlessmesh/connection.hpp +192 -192
- package/src/painlessmesh/layout.hpp +188 -188
- package/src/painlessmesh/logger.hpp +158 -158
- package/src/painlessmesh/memory.hpp +119 -119
- package/src/painlessmesh/mesh.hpp +761 -560
- package/src/painlessmesh/metrics.hpp +322 -322
- package/src/painlessmesh/ntp.hpp +263 -263
- package/src/painlessmesh/ota.hpp +582 -553
- package/src/painlessmesh/plugin.hpp +188 -188
- package/src/painlessmesh/protocol.hpp +813 -813
- package/src/painlessmesh/router.hpp +338 -322
- package/src/painlessmesh/tcp.hpp +71 -71
- package/src/painlessmesh/validation.hpp +238 -238
- package/src/plugin/performance.hpp +214 -214
- package/src/plugin/remote.hpp +64 -64
- package/src/scheduler.cpp +10 -10
- package/src/wifi.cpp +2 -2
|
@@ -0,0 +1,166 @@
|
|
|
1
|
+
# GitHub Pages Deployment Guide
|
|
2
|
+
|
|
3
|
+
This guide explains how to deploy the Docusaurus documentation site to GitHub Pages.
|
|
4
|
+
|
|
5
|
+
## 🚀 Deployment Steps
|
|
6
|
+
|
|
7
|
+
### 1. Enable GitHub Pages
|
|
8
|
+
|
|
9
|
+
1. Go to your repository on GitHub: `https://github.com/Alteriom/painlessMesh`
|
|
10
|
+
2. Click **Settings** tab
|
|
11
|
+
3. Scroll down to **Pages** section
|
|
12
|
+
4. Under **Source**, select **GitHub Actions**
|
|
13
|
+
5. Save the changes
|
|
14
|
+
|
|
15
|
+
### 2. Commit and Push Changes
|
|
16
|
+
|
|
17
|
+
```bash
|
|
18
|
+
# Add all changes
|
|
19
|
+
git add .
|
|
20
|
+
|
|
21
|
+
# Commit the Docusaurus setup
|
|
22
|
+
git commit -m "feat: Add Docusaurus documentation site
|
|
23
|
+
|
|
24
|
+
- Replace basic HTML generation with modern Docusaurus
|
|
25
|
+
- Add GitHub Actions workflow for automated deployment
|
|
26
|
+
- Include Alteriom package documentation
|
|
27
|
+
- Integrate Doxygen API docs with user guides
|
|
28
|
+
- Enable responsive design and built-in search
|
|
29
|
+
|
|
30
|
+
Closes: Documentation modernization initiative"
|
|
31
|
+
|
|
32
|
+
# Push to trigger deployment
|
|
33
|
+
git push origin main
|
|
34
|
+
```
|
|
35
|
+
|
|
36
|
+
### 3. Monitor Deployment
|
|
37
|
+
|
|
38
|
+
1. Go to **Actions** tab in your repository
|
|
39
|
+
2. Watch the **Documentation** workflow run
|
|
40
|
+
3. When complete, your site will be available at:
|
|
41
|
+
- **URL**: `https://alteriom.github.io/painlessMesh/`
|
|
42
|
+
|
|
43
|
+
## 🛠️ Local Development
|
|
44
|
+
|
|
45
|
+
### Start Development Server
|
|
46
|
+
|
|
47
|
+
```bash
|
|
48
|
+
cd website
|
|
49
|
+
npm start
|
|
50
|
+
```
|
|
51
|
+
|
|
52
|
+
Visit: `http://localhost:3000/painlessMesh/`
|
|
53
|
+
|
|
54
|
+
### Build for Production
|
|
55
|
+
|
|
56
|
+
```bash
|
|
57
|
+
cd website
|
|
58
|
+
npm run build
|
|
59
|
+
```
|
|
60
|
+
|
|
61
|
+
### Test Production Build
|
|
62
|
+
|
|
63
|
+
```bash
|
|
64
|
+
cd website
|
|
65
|
+
npm run serve
|
|
66
|
+
```
|
|
67
|
+
|
|
68
|
+
## 📁 Documentation Structure
|
|
69
|
+
|
|
70
|
+
```
|
|
71
|
+
website/
|
|
72
|
+
├── docs/ # Main documentation
|
|
73
|
+
│ ├── intro.md # Homepage content
|
|
74
|
+
│ ├── getting-started/ # Installation & quickstart
|
|
75
|
+
│ ├── api/ # API reference
|
|
76
|
+
│ ├── alteriom/ # Alteriom extensions
|
|
77
|
+
│ ├── tutorials/ # Usage examples
|
|
78
|
+
│ ├── architecture/ # Technical details
|
|
79
|
+
│ ├── advanced/ # Advanced topics
|
|
80
|
+
│ └── troubleshooting/ # Help & FAQ
|
|
81
|
+
├── static/ # Static assets
|
|
82
|
+
│ └── api/ # Doxygen API docs (auto-generated)
|
|
83
|
+
├── docusaurus.config.ts # Main configuration
|
|
84
|
+
└── sidebars.ts # Navigation structure
|
|
85
|
+
```
|
|
86
|
+
|
|
87
|
+
## 🔄 Workflow Overview
|
|
88
|
+
|
|
89
|
+
The GitHub Actions workflow:
|
|
90
|
+
|
|
91
|
+
1. **Checkout** repository code
|
|
92
|
+
2. **Setup Node.js** for Docusaurus
|
|
93
|
+
3. **Install Doxygen** for API documentation
|
|
94
|
+
4. **Generate API docs** using existing Doxygen config
|
|
95
|
+
5. **Install dependencies** for Docusaurus
|
|
96
|
+
6. **Integrate Doxygen** output with Docusaurus
|
|
97
|
+
7. **Build site** for production
|
|
98
|
+
8. **Deploy** to GitHub Pages
|
|
99
|
+
|
|
100
|
+
## 🎯 Benefits Over Previous System
|
|
101
|
+
|
|
102
|
+
| Feature | Old System | **New Docusaurus** |
|
|
103
|
+
|---------|------------|-------------------|
|
|
104
|
+
| **Search** | ❌ None | ✅ Built-in Algolia search |
|
|
105
|
+
| **Mobile** | ❌ Poor responsive | ✅ Perfect mobile experience |
|
|
106
|
+
| **Navigation** | ❌ Manual links | ✅ Auto-generated sidebar |
|
|
107
|
+
| **Performance** | ❌ Slow page loads | ✅ Single-page app speed |
|
|
108
|
+
| **Maintenance** | ❌ Manual HTML generation | ✅ Pure Markdown workflow |
|
|
109
|
+
| **Link validation** | ❌ Broken links undetected | ✅ Automatic validation |
|
|
110
|
+
| **Versioning** | ❌ Not supported | ✅ Multiple library versions |
|
|
111
|
+
| **API integration** | ❌ Separate Doxygen site | ✅ Seamless integration |
|
|
112
|
+
|
|
113
|
+
## 🔧 Customization
|
|
114
|
+
|
|
115
|
+
### Adding New Pages
|
|
116
|
+
|
|
117
|
+
1. Create `.md` files in appropriate `docs/` subdirectory
|
|
118
|
+
2. Update `sidebars.ts` to include in navigation
|
|
119
|
+
3. Commit and push - automatic deployment
|
|
120
|
+
|
|
121
|
+
### Modifying Branding
|
|
122
|
+
|
|
123
|
+
Edit `docusaurus.config.ts`:
|
|
124
|
+
- `title`: Site title
|
|
125
|
+
- `tagline`: Site description
|
|
126
|
+
- `favicon`: Icon file
|
|
127
|
+
- `themeConfig.navbar`: Navigation menu
|
|
128
|
+
- `themeConfig.footer`: Footer content
|
|
129
|
+
|
|
130
|
+
### Custom Styling
|
|
131
|
+
|
|
132
|
+
Edit `src/css/custom.css` for custom styles and branding.
|
|
133
|
+
|
|
134
|
+
## 🚨 Troubleshooting
|
|
135
|
+
|
|
136
|
+
### Build Fails
|
|
137
|
+
|
|
138
|
+
1. Check **Actions** tab for error details
|
|
139
|
+
2. Verify all referenced files exist in sidebars
|
|
140
|
+
3. Ensure Markdown syntax is valid
|
|
141
|
+
|
|
142
|
+
### Pages Not Deploying
|
|
143
|
+
|
|
144
|
+
1. Verify **GitHub Pages** is set to **GitHub Actions**
|
|
145
|
+
2. Check repository permissions
|
|
146
|
+
3. Ensure workflow has **Pages write** permission
|
|
147
|
+
|
|
148
|
+
### Links Broken
|
|
149
|
+
|
|
150
|
+
1. Use relative paths: `../other-page`
|
|
151
|
+
2. Verify file extensions: `.md` files become `.html`
|
|
152
|
+
3. Check sidebar configuration matches file structure
|
|
153
|
+
|
|
154
|
+
## 📞 Support
|
|
155
|
+
|
|
156
|
+
For issues with:
|
|
157
|
+
- **Docusaurus**: See [Docusaurus docs](https://docusaurus.io/)
|
|
158
|
+
- **GitHub Actions**: Check workflow logs in Actions tab
|
|
159
|
+
- **Content**: Create issues in repository
|
|
160
|
+
|
|
161
|
+
## 🎉 Next Steps
|
|
162
|
+
|
|
163
|
+
1. **Enable search**: Configure Algolia search index
|
|
164
|
+
2. **Add analytics**: Integrate Google Analytics
|
|
165
|
+
3. **Custom domain**: Set up custom domain if desired
|
|
166
|
+
4. **Content migration**: Move remaining docs from `/docs` folder
|
|
@@ -0,0 +1,337 @@
|
|
|
1
|
+
# Feature Proposals: OTA and Status Enhancements
|
|
2
|
+
|
|
3
|
+
**Status:** 📋 Proposal - Awaiting Review
|
|
4
|
+
**Type:** Enhancement
|
|
5
|
+
**Impact:** High
|
|
6
|
+
**Effort:** Medium-High
|
|
7
|
+
|
|
8
|
+
---
|
|
9
|
+
|
|
10
|
+
## 🎯 Overview
|
|
11
|
+
|
|
12
|
+
This proposal explores comprehensive enhancements to painlessMesh for production IoT deployments, focusing on two critical areas:
|
|
13
|
+
|
|
14
|
+
1. **Enhanced OTA Distribution** - More efficient, reliable, and scalable firmware updates across mesh networks
|
|
15
|
+
2. **Mesh Network Status Monitoring** - Comprehensive health monitoring and diagnostic capabilities
|
|
16
|
+
|
|
17
|
+
---
|
|
18
|
+
|
|
19
|
+
## 📚 Documentation Index
|
|
20
|
+
|
|
21
|
+
### Quick Start
|
|
22
|
+
- **[Quick Reference Guide](ota-status-quick-reference.md)** ⚡ - Start here for TL;DR with decision matrices
|
|
23
|
+
- **[Architecture Diagrams](ota-status-architecture-diagrams.md)** 📊 - Visual understanding of each option
|
|
24
|
+
|
|
25
|
+
### Complete Analysis
|
|
26
|
+
- **[Full Proposal](ota-and-status-enhancements.md)** 📖 - Comprehensive 50+ page analysis with:
|
|
27
|
+
- Detailed examination of current implementation
|
|
28
|
+
- 5 OTA enhancement options with pros/cons
|
|
29
|
+
- 5 status monitoring options with pros/cons
|
|
30
|
+
- Implementation details and code examples
|
|
31
|
+
- Risk assessment and mitigation strategies
|
|
32
|
+
- Phased rollout recommendations
|
|
33
|
+
|
|
34
|
+
---
|
|
35
|
+
|
|
36
|
+
## 🚀 At a Glance
|
|
37
|
+
|
|
38
|
+
### OTA Enhancement Options
|
|
39
|
+
|
|
40
|
+
| Option | Description | Speed | Memory | Best For |
|
|
41
|
+
|--------|-------------|-------|--------|----------|
|
|
42
|
+
| **1E: Compression** ⭐⭐⭐⭐⭐ | Gzip firmware transfers | ⭐⭐⭐⭐ | +4-8KB | Everyone (start here) |
|
|
43
|
+
| **1A: Broadcast** ⭐⭐⭐⭐ | Mesh-wide simultaneous distribution | ⭐⭐⭐⭐⭐ | +2-5KB | Medium-large meshes |
|
|
44
|
+
| **1B: Progressive** ⭐⭐⭐⭐ | Phased rollout with safety checks | ⭐⭐ | +3-7KB | Production safety |
|
|
45
|
+
| 1C: Peer-to-Peer | Viral propagation via updated nodes | ⭐⭐⭐⭐⭐ | +200KB | Very large meshes |
|
|
46
|
+
| 1D: MQTT Bridge | Cloud-managed OTA via MQTT | ⭐⭐⭐ | +5-10KB | MQTT infrastructure |
|
|
47
|
+
|
|
48
|
+
### Status Monitoring Options
|
|
49
|
+
|
|
50
|
+
| Option | Description | Real-time | Overhead | Best For |
|
|
51
|
+
|--------|-------------|-----------|----------|----------|
|
|
52
|
+
| **2A: Enhanced Package** ⭐⭐⭐⭐⭐ | Extended Alteriom StatusPackage | ⭐⭐⭐ | Low | Simple integration |
|
|
53
|
+
| **2E: MQTT Bridge** ⭐⭐⭐⭐⭐ | Publish status to MQTT topics | ⭐⭐⭐ | Low | Cloud integration |
|
|
54
|
+
| **2B: Status Service** ⭐⭐⭐⭐ | Query-based status collection | ⭐⭐⭐ | Medium | Centralized control |
|
|
55
|
+
| 2C: Telemetry Stream | Continuous low-bandwidth updates | ⭐⭐⭐⭐⭐ | Very Low | Real-time critical |
|
|
56
|
+
| 2D: Health Dashboard | Complete web-based monitoring | ⭐⭐⭐⭐⭐ | Medium | User-facing apps |
|
|
57
|
+
|
|
58
|
+
---
|
|
59
|
+
|
|
60
|
+
## 🎯 Recommended Path
|
|
61
|
+
|
|
62
|
+
### ✅ Phase 1: Quick Wins (Weeks 3-4)
|
|
63
|
+
**Implement:** Options 1E + 2A
|
|
64
|
+
**Effort:** 3-4 weeks
|
|
65
|
+
**Value:** Immediate 40-60% OTA speed improvement + standardized status
|
|
66
|
+
|
|
67
|
+
```cpp
|
|
68
|
+
// Compressed OTA
|
|
69
|
+
mesh.offerOTA("sensor", "ESP32", md5, parts, false, false, true);
|
|
70
|
+
|
|
71
|
+
// Enhanced Status
|
|
72
|
+
alteriom::EnhancedStatusPackage status;
|
|
73
|
+
status.uptime = millis() / 1000;
|
|
74
|
+
status.freeMemory = ESP.getFreeHeap() / 1024;
|
|
75
|
+
mesh.sendBroadcast(status.toJsonString());
|
|
76
|
+
```
|
|
77
|
+
|
|
78
|
+
**Benefits:**
|
|
79
|
+
- ✅ Faster OTA distribution
|
|
80
|
+
- ✅ Lower network bandwidth usage
|
|
81
|
+
- ✅ Standardized status reporting
|
|
82
|
+
- ✅ Minimal risk, high reward
|
|
83
|
+
|
|
84
|
+
---
|
|
85
|
+
|
|
86
|
+
### ✅ Phase 2: Production Ready (Weeks 6-8)
|
|
87
|
+
**Implement:** Options 1A + 2E
|
|
88
|
+
**Effort:** 6-8 weeks
|
|
89
|
+
**Value:** Scalable OTA + professional monitoring
|
|
90
|
+
|
|
91
|
+
```cpp
|
|
92
|
+
// Broadcast OTA
|
|
93
|
+
mesh.offerOTA("sensor", "ESP32", md5, parts, false, true);
|
|
94
|
+
|
|
95
|
+
// MQTT Status
|
|
96
|
+
MqttStatusBridge bridge(mesh, mqttClient);
|
|
97
|
+
bridge.setPublishInterval(30000);
|
|
98
|
+
bridge.begin();
|
|
99
|
+
```
|
|
100
|
+
|
|
101
|
+
**Benefits:**
|
|
102
|
+
- ✅ Scales to large meshes (50+ nodes)
|
|
103
|
+
- ✅ Cloud integration via MQTT
|
|
104
|
+
- ✅ Professional monitoring tools (Grafana, InfluxDB)
|
|
105
|
+
- ✅ Enterprise-ready features
|
|
106
|
+
|
|
107
|
+
---
|
|
108
|
+
|
|
109
|
+
### ✅ Phase 3: Advanced (Months 3-4)
|
|
110
|
+
**Implement:** Options 1B + 2C
|
|
111
|
+
**Effort:** 3-4 months
|
|
112
|
+
**Value:** Production-safe updates + real-time monitoring
|
|
113
|
+
|
|
114
|
+
```cpp
|
|
115
|
+
// Progressive Rollout
|
|
116
|
+
ProgressiveOTA ota(mesh);
|
|
117
|
+
ota.setPhases({0.05, 0.20, 1.0}); // 5%, 20%, 100%
|
|
118
|
+
ota.setHealthCheck(checkNodeHealth);
|
|
119
|
+
ota.begin("sensor", "ESP32", md5);
|
|
120
|
+
|
|
121
|
+
// Telemetry Stream
|
|
122
|
+
TelemetryStream telemetry(mesh);
|
|
123
|
+
telemetry.setInterval(60000); // 60s
|
|
124
|
+
telemetry.begin();
|
|
125
|
+
```
|
|
126
|
+
|
|
127
|
+
**Benefits:**
|
|
128
|
+
- ✅ Zero-downtime updates
|
|
129
|
+
- ✅ Early failure detection
|
|
130
|
+
- ✅ Real-time anomaly detection
|
|
131
|
+
- ✅ Proactive alerting
|
|
132
|
+
|
|
133
|
+
---
|
|
134
|
+
|
|
135
|
+
## 📊 Expected Results
|
|
136
|
+
|
|
137
|
+
### OTA Improvements
|
|
138
|
+
|
|
139
|
+
**Current State:**
|
|
140
|
+
- Update time: 60-120s for 10 nodes
|
|
141
|
+
- Network usage: N × Firmware_Size
|
|
142
|
+
- Success rate: ~85%
|
|
143
|
+
|
|
144
|
+
**After Phase 1 (Compression):**
|
|
145
|
+
- Update time: 35-70s (40% faster)
|
|
146
|
+
- Network usage: 0.5 × N × Firmware_Size
|
|
147
|
+
- Success rate: ~90%
|
|
148
|
+
|
|
149
|
+
**After Phase 2 (Broadcast + Compression):**
|
|
150
|
+
- Update time: 15-30s (75% faster)
|
|
151
|
+
- Network usage: 1 × Firmware_Size (regardless of node count)
|
|
152
|
+
- Success rate: ~95%
|
|
153
|
+
|
|
154
|
+
### Status Monitoring
|
|
155
|
+
|
|
156
|
+
**Current State:**
|
|
157
|
+
- Manual status collection
|
|
158
|
+
- No standardization
|
|
159
|
+
- Application-specific implementation
|
|
160
|
+
|
|
161
|
+
**After Phase 1 (Enhanced Package):**
|
|
162
|
+
- Standardized status format
|
|
163
|
+
- Integration with metrics system
|
|
164
|
+
- 500 bytes overhead per update
|
|
165
|
+
|
|
166
|
+
**After Phase 2 (MQTT Bridge):**
|
|
167
|
+
- Cloud integration
|
|
168
|
+
- Integration with standard tools
|
|
169
|
+
- Historical data tracking
|
|
170
|
+
- Alert management
|
|
171
|
+
|
|
172
|
+
---
|
|
173
|
+
|
|
174
|
+
## 🎓 Decision Guide
|
|
175
|
+
|
|
176
|
+
### "Which OTA option should I choose?"
|
|
177
|
+
|
|
178
|
+
**Start with:** 1E (Compression)
|
|
179
|
+
- Universal benefit (40-60% faster)
|
|
180
|
+
- Low complexity
|
|
181
|
+
- Works with existing infrastructure
|
|
182
|
+
|
|
183
|
+
**Add 1A (Broadcast) if:**
|
|
184
|
+
- Mesh has 10+ nodes
|
|
185
|
+
- Frequent OTA updates
|
|
186
|
+
- Network congestion is an issue
|
|
187
|
+
|
|
188
|
+
**Add 1B (Progressive) if:**
|
|
189
|
+
- Production deployment
|
|
190
|
+
- Cannot afford downtime
|
|
191
|
+
- Need safety guarantees
|
|
192
|
+
|
|
193
|
+
**Consider 1C (P2P) if:**
|
|
194
|
+
- Very large mesh (50+ nodes)
|
|
195
|
+
- Nodes have sufficient flash (ESP32)
|
|
196
|
+
- Need fastest possible distribution
|
|
197
|
+
|
|
198
|
+
**Use 1D (MQTT) if:**
|
|
199
|
+
- Already using MQTT infrastructure
|
|
200
|
+
- Need cloud-based management
|
|
201
|
+
- External OTA tools required
|
|
202
|
+
|
|
203
|
+
### "Which status option should I choose?"
|
|
204
|
+
|
|
205
|
+
**Start with:** 2A (Enhanced StatusPackage)
|
|
206
|
+
- Easiest integration
|
|
207
|
+
- Builds on existing Alteriom packages
|
|
208
|
+
- Minimal changes required
|
|
209
|
+
|
|
210
|
+
**Add 2E (MQTT Bridge) if:**
|
|
211
|
+
- Need cloud monitoring
|
|
212
|
+
- Using monitoring tools (Grafana, etc.)
|
|
213
|
+
- Want historical data
|
|
214
|
+
|
|
215
|
+
**Use 2B (Status Service) if:**
|
|
216
|
+
- Need centralized aggregation
|
|
217
|
+
- On-demand queries preferred
|
|
218
|
+
- RESTful API required
|
|
219
|
+
|
|
220
|
+
**Use 2C (Telemetry) if:**
|
|
221
|
+
- Real-time monitoring critical
|
|
222
|
+
- Large-scale deployment (50+ nodes)
|
|
223
|
+
- Proactive alerting needed
|
|
224
|
+
|
|
225
|
+
**Use 2D (Dashboard) if:**
|
|
226
|
+
- User-facing application
|
|
227
|
+
- Need visual interface
|
|
228
|
+
- Web-based monitoring required
|
|
229
|
+
|
|
230
|
+
---
|
|
231
|
+
|
|
232
|
+
## ⚠️ Important Notes
|
|
233
|
+
|
|
234
|
+
### For OTA Implementation
|
|
235
|
+
|
|
236
|
+
**Always remember:**
|
|
237
|
+
- ✅ Include OTA support in updated firmware (prevents bricking)
|
|
238
|
+
- ✅ Test on single node before mesh-wide deployment
|
|
239
|
+
- ✅ Implement rollback mechanism for failures
|
|
240
|
+
- ✅ Use MD5 validation for firmware integrity
|
|
241
|
+
- ✅ Consider progressive rollout for production
|
|
242
|
+
|
|
243
|
+
**Common pitfalls:**
|
|
244
|
+
- ❌ Updating all nodes simultaneously without testing
|
|
245
|
+
- ❌ Forgetting OTA support in new firmware
|
|
246
|
+
- ❌ Skipping MD5 validation
|
|
247
|
+
- ❌ No rollback plan
|
|
248
|
+
|
|
249
|
+
### For Status Monitoring
|
|
250
|
+
|
|
251
|
+
**Always remember:**
|
|
252
|
+
- ✅ Choose appropriate update intervals (30-60s typical)
|
|
253
|
+
- ✅ Implement timeout handling for non-responsive nodes
|
|
254
|
+
- ✅ Monitor memory usage to prevent exhaustion
|
|
255
|
+
- ✅ Set up alerts for critical conditions
|
|
256
|
+
|
|
257
|
+
**Common pitfalls:**
|
|
258
|
+
- ❌ Polling status too frequently (causes congestion)
|
|
259
|
+
- ❌ Ignoring memory warnings (causes crashes)
|
|
260
|
+
- ❌ Assuming all nodes respond (timeouts happen)
|
|
261
|
+
- ❌ No historical data retention
|
|
262
|
+
|
|
263
|
+
---
|
|
264
|
+
|
|
265
|
+
## 🔄 Current Status
|
|
266
|
+
|
|
267
|
+
### Completed
|
|
268
|
+
- ✅ Analysis of current implementation
|
|
269
|
+
- ✅ Research of enhancement options
|
|
270
|
+
- ✅ Detailed proposal documentation
|
|
271
|
+
- ✅ Architecture diagrams
|
|
272
|
+
- ✅ Quick reference guide
|
|
273
|
+
|
|
274
|
+
### Next Steps
|
|
275
|
+
1. ⏳ Review proposal with team
|
|
276
|
+
2. ⏳ Approve Phase 1 features
|
|
277
|
+
3. ⏳ Create detailed design documents
|
|
278
|
+
4. ⏳ Set up test infrastructure
|
|
279
|
+
5. ⏳ Begin Phase 1 implementation
|
|
280
|
+
|
|
281
|
+
### Timeline
|
|
282
|
+
- **Weeks 1-2:** Review and approval
|
|
283
|
+
- **Weeks 3-6:** Phase 1 implementation
|
|
284
|
+
- **Weeks 7-12:** Phase 2 implementation
|
|
285
|
+
- **Months 4-6:** Phase 3 implementation
|
|
286
|
+
|
|
287
|
+
---
|
|
288
|
+
|
|
289
|
+
## 🤝 Contributing
|
|
290
|
+
|
|
291
|
+
Interested in implementing these features?
|
|
292
|
+
|
|
293
|
+
1. Read the full proposal: [ota-and-status-enhancements.md](ota-and-status-enhancements.md)
|
|
294
|
+
2. Review architecture: [ota-status-architecture-diagrams.md](ota-status-architecture-diagrams.md)
|
|
295
|
+
3. Check quick reference: [ota-status-quick-reference.md](ota-status-quick-reference.md)
|
|
296
|
+
4. Open a GitHub issue to discuss
|
|
297
|
+
5. Submit a pull request with implementation
|
|
298
|
+
|
|
299
|
+
---
|
|
300
|
+
|
|
301
|
+
## 📖 Related Resources
|
|
302
|
+
|
|
303
|
+
### In This Repository
|
|
304
|
+
- [Library Improvements Overview](README.md)
|
|
305
|
+
- [Metrics System](../../src/painlessmesh/metrics.hpp)
|
|
306
|
+
- [Alteriom Packages](../../examples/alteriom/alteriom_sensor_package.hpp)
|
|
307
|
+
- [OTA Sender Example](../../examples/otaSender/otaSender.ino)
|
|
308
|
+
- [OTA Receiver Example](../../examples/otaReceiver/otaReceiver.ino)
|
|
309
|
+
- [MQTT Bridge Example](../../examples/mqttBridge/mqttBridge.ino)
|
|
310
|
+
|
|
311
|
+
### Documentation
|
|
312
|
+
- [painlessMesh Architecture](../architecture/mesh-architecture.md)
|
|
313
|
+
- [Plugin System](../architecture/plugin-system.md)
|
|
314
|
+
- [API Reference](../api/core-api.md)
|
|
315
|
+
- [Troubleshooting](../troubleshooting/common-issues.md)
|
|
316
|
+
|
|
317
|
+
### External References
|
|
318
|
+
- ESP-IDF OTA Documentation
|
|
319
|
+
- ArduinoOTA Library
|
|
320
|
+
- MQTT Protocol Specification
|
|
321
|
+
- InfluxDB/Grafana Integration
|
|
322
|
+
|
|
323
|
+
---
|
|
324
|
+
|
|
325
|
+
## 📞 Contact
|
|
326
|
+
|
|
327
|
+
Questions or feedback?
|
|
328
|
+
|
|
329
|
+
- **GitHub Issues:** https://github.com/Alteriom/painlessMesh/issues
|
|
330
|
+
- **Discussions:** https://github.com/Alteriom/painlessMesh/discussions
|
|
331
|
+
- **Email:** See CONTRIBUTING.md
|
|
332
|
+
|
|
333
|
+
---
|
|
334
|
+
|
|
335
|
+
**Last Updated:** December 2024
|
|
336
|
+
**Proposal Version:** 1.0
|
|
337
|
+
**Status:** Ready for Review
|
|
@@ -0,0 +1,98 @@
|
|
|
1
|
+
# Library JSON Configuration Fix Summary
|
|
2
|
+
|
|
3
|
+
## Issue
|
|
4
|
+
|
|
5
|
+
PlatformIO SCons build system was failing with path resolution errors when building projects that depend on AlteriomPainlessMesh library.
|
|
6
|
+
|
|
7
|
+
## Root Cause
|
|
8
|
+
|
|
9
|
+
The `library.json` had conflicting directory specifications:
|
|
10
|
+
- Had `srcDir` and `includeDir` (correct)
|
|
11
|
+
- Also had `export.include` (conflicting)
|
|
12
|
+
|
|
13
|
+
When both are present, PlatformIO's SCons build system gets confused about which directory specification to use, leading to path resolution failures.
|
|
14
|
+
|
|
15
|
+
## Fix Applied
|
|
16
|
+
|
|
17
|
+
### Before:
|
|
18
|
+
```json
|
|
19
|
+
{
|
|
20
|
+
"srcDir": "src",
|
|
21
|
+
"includeDir": "src",
|
|
22
|
+
"export": {
|
|
23
|
+
"include": "src"
|
|
24
|
+
}
|
|
25
|
+
}
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
### After:
|
|
29
|
+
```json
|
|
30
|
+
{
|
|
31
|
+
"srcDir": "src",
|
|
32
|
+
"includeDir": "src"
|
|
33
|
+
}
|
|
34
|
+
```
|
|
35
|
+
|
|
36
|
+
**Change:** Removed the `export.include` section entirely.
|
|
37
|
+
|
|
38
|
+
## Why This Fixes The Issue
|
|
39
|
+
|
|
40
|
+
1. **`srcDir`** tells PlatformIO where source files (.cpp) are located
|
|
41
|
+
2. **`includeDir`** tells PlatformIO where header files (.h) are located
|
|
42
|
+
3. **`export.include`** is an older/alternative way to specify include paths
|
|
43
|
+
|
|
44
|
+
Having both causes PlatformIO to:
|
|
45
|
+
- Try to resolve paths twice
|
|
46
|
+
- Get conflicting information
|
|
47
|
+
- Fail with "UnboundLocalError: dir" in SCons
|
|
48
|
+
|
|
49
|
+
## Verification
|
|
50
|
+
|
|
51
|
+
Run the validation script:
|
|
52
|
+
```bash
|
|
53
|
+
python scripts/validate_library_structure.py
|
|
54
|
+
```
|
|
55
|
+
|
|
56
|
+
**Result:** ✅ 8/8 checks passed
|
|
57
|
+
|
|
58
|
+
## For Users
|
|
59
|
+
|
|
60
|
+
If you were experiencing build errors:
|
|
61
|
+
|
|
62
|
+
1. **Clean your build cache:**
|
|
63
|
+
```bash
|
|
64
|
+
pio run --target clean
|
|
65
|
+
rm -rf .pio
|
|
66
|
+
```
|
|
67
|
+
|
|
68
|
+
2. **Pull latest library:**
|
|
69
|
+
```bash
|
|
70
|
+
pio pkg update
|
|
71
|
+
```
|
|
72
|
+
|
|
73
|
+
3. **Rebuild:**
|
|
74
|
+
```bash
|
|
75
|
+
pio run
|
|
76
|
+
```
|
|
77
|
+
|
|
78
|
+
## Files Changed
|
|
79
|
+
|
|
80
|
+
- `library.json` - Removed `export.include` section
|
|
81
|
+
- Created `SCONS_BUILD_FIX.md` - Troubleshooting guide
|
|
82
|
+
- Created `scripts/validate_library_structure.py` - Validation tool
|
|
83
|
+
|
|
84
|
+
## Testing
|
|
85
|
+
|
|
86
|
+
Tested with:
|
|
87
|
+
- ✅ validation script passes
|
|
88
|
+
- ✅ JSON structure valid
|
|
89
|
+
- ✅ All required fields present
|
|
90
|
+
- ✅ No conflicting directory specifications
|
|
91
|
+
|
|
92
|
+
## Date
|
|
93
|
+
|
|
94
|
+
October 15, 2025
|
|
95
|
+
|
|
96
|
+
## Status
|
|
97
|
+
|
|
98
|
+
✅ FIXED - Ready for use in PlatformIO projects
|