[PR #52] [MERGED] OTA updates + buienradar #3159

Closed
opened 2026-03-20 22:07:43 +01:00 by sascha_hemi · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/OpenEPaperLink/OpenEPaperLink/pull/52
Author: @nlimper
Created: 5/30/2023
Status: Merged
Merged: 5/30/2023
Merged by: @nlimper

Base: masterHead: ota


📝 Commits (9)

📊 Changes

22 files changed (+1092 additions, -197 deletions)

View changed files

📝 .github/workflows/release.yml (+4 -4)
ESP32_AP-Flasher/data/calendar.txt (+0 -46)
📝 ESP32_AP-Flasher/data/demo_image_generator.py (+22 -1)
📝 ESP32_AP-Flasher/data/www/content_cards.json (+34 -0)
📝 ESP32_AP-Flasher/data/www/index.html (+8 -19)
📝 ESP32_AP-Flasher/data/www/main.css (+82 -5)
📝 ESP32_AP-Flasher/data/www/main.js (+39 -8)
ESP32_AP-Flasher/data/www/ota.js (+401 -0)
ESP32_AP-Flasher/data/www/upload-demo.html (+38 -0)
ESP32_AP-Flasher/data/www/upload-test.html (+0 -21)
ESP32_AP-Flasher/esp32_squeeze_ota.csv (+7 -0)
📝 ESP32_AP-Flasher/include/contentmanager.h (+1 -1)
ESP32_AP-Flasher/include/ota.h (+12 -0)
📝 ESP32_AP-Flasher/include/web.h (+1 -1)
📝 ESP32_AP-Flasher/platformio.ini (+25 -5)
📝 ESP32_AP-Flasher/src/contentmanager.cpp (+95 -10)
📝 ESP32_AP-Flasher/src/main.cpp (+4 -2)
📝 ESP32_AP-Flasher/src/makeimage.cpp (+39 -64)
ESP32_AP-Flasher/src/ota.cpp (+246 -0)
📝 ESP32_AP-Flasher/src/tag_db.cpp (+1 -1)

...and 2 more files

📄 Description

No description provided


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/OpenEPaperLink/OpenEPaperLink/pull/52 **Author:** [@nlimper](https://github.com/nlimper) **Created:** 5/30/2023 **Status:** ✅ Merged **Merged:** 5/30/2023 **Merged by:** [@nlimper](https://github.com/nlimper) **Base:** `master` ← **Head:** `ota` --- ### 📝 Commits (9) - [`3788608`](https://github.com/OpenEPaperLink/OpenEPaperLink/commit/3788608e633a447e6c023d6aca0f2a779d74e47c) first version of OTA firmware updates - [`20d46df`](https://github.com/OpenEPaperLink/OpenEPaperLink/commit/20d46df30265308020e138c60bca5957912d62ec) bugfix - [`da095a2`](https://github.com/OpenEPaperLink/OpenEPaperLink/commit/da095a2382463b4b32bcfcd582c074232543a0e9) Merge branch 'master' into ota - [`aaf4f94`](https://github.com/OpenEPaperLink/OpenEPaperLink/commit/aaf4f94df7002f32fe5850faba00ff7168731798) buienradar (dutch rain predictions) - [`d02f518`](https://github.com/OpenEPaperLink/OpenEPaperLink/commit/d02f51882bd26422100507f25af12fc32951b0ce) ota improvements - [`8b0c516`](https://github.com/OpenEPaperLink/OpenEPaperLink/commit/8b0c516598a3fe0b1d2b26a3cf64abf04678a26e) update ota update - [`c228104`](https://github.com/OpenEPaperLink/OpenEPaperLink/commit/c228104c2963453ae6117d21e8f442264ee34a92) update ota update - [`3965365`](https://github.com/OpenEPaperLink/OpenEPaperLink/commit/396536522a896b65a42de5c27d7f028d2f11558f) small ota bugfix - [`a2abe46`](https://github.com/OpenEPaperLink/OpenEPaperLink/commit/a2abe466f5fb3731e7d875b7f60536d3d39da37e) ota ready ### 📊 Changes **22 files changed** (+1092 additions, -197 deletions) <details> <summary>View changed files</summary> 📝 `.github/workflows/release.yml` (+4 -4) ➖ `ESP32_AP-Flasher/data/calendar.txt` (+0 -46) 📝 `ESP32_AP-Flasher/data/demo_image_generator.py` (+22 -1) 📝 `ESP32_AP-Flasher/data/www/content_cards.json` (+34 -0) 📝 `ESP32_AP-Flasher/data/www/index.html` (+8 -19) 📝 `ESP32_AP-Flasher/data/www/main.css` (+82 -5) 📝 `ESP32_AP-Flasher/data/www/main.js` (+39 -8) ➕ `ESP32_AP-Flasher/data/www/ota.js` (+401 -0) ➕ `ESP32_AP-Flasher/data/www/upload-demo.html` (+38 -0) ➖ `ESP32_AP-Flasher/data/www/upload-test.html` (+0 -21) ➕ `ESP32_AP-Flasher/esp32_squeeze_ota.csv` (+7 -0) 📝 `ESP32_AP-Flasher/include/contentmanager.h` (+1 -1) ➕ `ESP32_AP-Flasher/include/ota.h` (+12 -0) 📝 `ESP32_AP-Flasher/include/web.h` (+1 -1) 📝 `ESP32_AP-Flasher/platformio.ini` (+25 -5) 📝 `ESP32_AP-Flasher/src/contentmanager.cpp` (+95 -10) 📝 `ESP32_AP-Flasher/src/main.cpp` (+4 -2) 📝 `ESP32_AP-Flasher/src/makeimage.cpp` (+39 -64) ➕ `ESP32_AP-Flasher/src/ota.cpp` (+246 -0) 📝 `ESP32_AP-Flasher/src/tag_db.cpp` (+1 -1) _...and 2 more files_ </details> ### 📄 Description _No description provided_ --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
sascha_hemi added the pull-request label 2026-03-20 22:07:43 +01:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/OpenEPaperLink#3159