Compare commits
32 Commits
15600ceac5
...
v1.2.0
Author | SHA1 | Date | |
---|---|---|---|
3cd0798186 | |||
2a67d8f67c | |||
240795a2d0 | |||
4e384d777e | |||
03cbf82275 | |||
0c1a222636 | |||
8716b4ad73 | |||
6fcfefec8f | |||
b696a79f4b | |||
61ed765d87 | |||
2703689e4e | |||
b24c50722f | |||
3ec23a9f79 | |||
75fe6b55ad | |||
fa2f980312 | |||
7964f1cd77 | |||
dd611df9f5 | |||
0ccc67f4b2 | |||
a027dfb54e | |||
07741f2a52 | |||
3e9b89f69b | |||
bf67a635f6 | |||
84cccd5014 | |||
e983b0fcfd | |||
e01bb9b1f9 | |||
17b6051da0 | |||
84617ebc53 | |||
8ac6ba57a4 | |||
cc17140dc4 | |||
8741216374 | |||
7bdebeab03 | |||
ab33f423c8 |
80
.github/workflows/release.yml
vendored
80
.github/workflows/release.yml
vendored
@ -5,29 +5,81 @@ on:
|
|||||||
tags:
|
tags:
|
||||||
- 'v*'
|
- 'v*'
|
||||||
|
|
||||||
|
permissions:
|
||||||
|
contents: write # Required for creating releases
|
||||||
|
issues: read # Required for reading changelog
|
||||||
|
pull-requests: read # Required for reading changelog
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
permissions:
|
||||||
|
contents: write # Required for creating releases at job level
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v4
|
||||||
|
|
||||||
|
- name: Set up Python
|
||||||
|
uses: actions/setup-python@v4
|
||||||
|
with:
|
||||||
|
python-version: '3.x'
|
||||||
|
|
||||||
|
- name: Install PlatformIO
|
||||||
|
run: |
|
||||||
|
python -m pip install --upgrade pip
|
||||||
|
pip install --upgrade platformio
|
||||||
|
|
||||||
|
- name: Build Firmware
|
||||||
|
run: |
|
||||||
|
pio run -t buildfs # Build SPIFFS
|
||||||
|
pio run # Build firmware
|
||||||
|
|
||||||
|
- name: Install esptool
|
||||||
|
run: |
|
||||||
|
pip install esptool
|
||||||
|
|
||||||
|
- name: Merge firmware and SPIFFS
|
||||||
|
run: |
|
||||||
|
esptool.py --chip esp32 merge_bin \
|
||||||
|
--flash_mode dio \
|
||||||
|
--flash_freq 40m \
|
||||||
|
--flash_size 4MB \
|
||||||
|
-o .pio/build/esp32dev/filaman_full.bin \
|
||||||
|
0x1000 .pio/build/esp32dev/bootloader.bin \
|
||||||
|
0x8000 .pio/build/esp32dev/partitions.bin \
|
||||||
|
0x10000 .pio/build/esp32dev/firmware.bin \
|
||||||
|
0x290000 .pio/build/esp32dev/spiffs.bin
|
||||||
|
|
||||||
|
- name: Prepare OTA firmware
|
||||||
|
run: |
|
||||||
|
# Use PlatformIO to create a proper OTA image
|
||||||
|
cp .pio/build/esp32dev/firmware.bin .pio/build/esp32dev/filaman_ota.bin
|
||||||
|
|
||||||
- name: Get version from tag
|
- name: Get version from tag
|
||||||
id: get_version
|
id: get_version
|
||||||
run: echo ::set-output name=VERSION::${GITHUB_REF/refs\/tags\/v/}
|
run: echo "VERSION=${GITHUB_REF#refs/tags/v}" >> $GITHUB_OUTPUT
|
||||||
|
|
||||||
- name: Read CHANGELOG.md
|
- name: Read CHANGELOG.md
|
||||||
id: changelog
|
id: changelog
|
||||||
run: |
|
run: |
|
||||||
CHANGELOG=$(awk "/## \[${{ steps.get_version.outputs.VERSION }}\]/{p=1;print;next} /## \[/{p=0} p" CHANGELOG.md)
|
CHANGELOG=$(awk "/## \\[${{ steps.get_version.outputs.VERSION }}\\]/{p=1;print;next} /## \\[/{p=0} p" CHANGELOG.md)
|
||||||
echo "::set-output name=CHANGES::$CHANGELOG"
|
echo "CHANGES<<EOF" >> $GITHUB_OUTPUT
|
||||||
|
echo "$CHANGELOG" >> $GITHUB_OUTPUT
|
||||||
- name: Create Release
|
echo "EOF" >> $GITHUB_OUTPUT
|
||||||
uses: actions/create-release@v1
|
|
||||||
|
- name: Install and Configure GitHub CLI
|
||||||
|
run: |
|
||||||
|
curl -fsSL https://cli.github.com/packages/githubcli-archive-keyring.gpg | sudo dd of=/usr/share/keyrings/githubcli-archive-keyring.gpg \
|
||||||
|
&& sudo chmod go+r /usr/share/keyrings/githubcli-archive-keyring.gpg \
|
||||||
|
&& echo "deb [arch=$(dpkg --print-architecture) signed-by=/usr/share/keyrings/githubcli-archive-keyring.gpg] https://cli.github.com/packages stable main" | sudo tee /etc/apt/sources.list.d/github-cli.list > /dev/null \
|
||||||
|
&& sudo apt update \
|
||||||
|
&& sudo apt install gh -y
|
||||||
|
|
||||||
|
- name: Create Release with GitHub CLI
|
||||||
env:
|
env:
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
with:
|
run: |
|
||||||
tag_name: ${{ github.ref }}
|
gh release create "${{ github.ref_name }}" \
|
||||||
release_name: Release ${{ steps.get_version.outputs.VERSION }}
|
--title "Release ${{ steps.get_version.outputs.VERSION }}" \
|
||||||
body: ${{ steps.changelog.outputs.CHANGES }}
|
--notes "${{ steps.changelog.outputs.CHANGES }}" \
|
||||||
draft: false
|
".pio/build/esp32dev/filaman_full.bin#filaman_full.bin" \
|
||||||
prerelease: false
|
".pio/build/esp32dev/filaman_ota.bin#filaman_ota.bin"
|
48
CHANGELOG.md
48
CHANGELOG.md
@ -1,5 +1,53 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## [1.2.0] - 2025-02-17
|
||||||
|
### Added
|
||||||
|
- implement OTA functionality and update build scripts; change upgrade link to OTA in HTML
|
||||||
|
- update version to v1.2.0 and modify build scripts in platformio.ini; remove unused includes in scale.cpp and website.cpp
|
||||||
|
- update version to v1.2.0 and add upgrade link in HTML files
|
||||||
|
- add esp_wifi.h and set maximum transmit power in WiFi initialization
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
- update changelog for version 1.1.0
|
||||||
|
- clean up changelog and update script execution in platformio.ini
|
||||||
|
- update changelog for version 1.1.0
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
- update version number in header to v1.1.0
|
||||||
|
- correct version number in nav bar
|
||||||
|
|
||||||
|
|
||||||
|
## [1.1.0] - 2025-02-16
|
||||||
|
### Changed
|
||||||
|
- clean up changelog and update script execution in platformio.ini
|
||||||
|
- update changelog for version 1.1.0
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
- correct version number in nav bar
|
||||||
|
|
||||||
|
|
||||||
|
## [1.0.5] - 2025-02-16
|
||||||
|
### Added
|
||||||
|
- update version to 1.0.5 and enhance changelog update process with automatic git push
|
||||||
|
- update changelog script to categorize commits and handle new changelog creation
|
||||||
|
- improve changelog update script to handle absolute paths and create new changelog if missing
|
||||||
|
|
||||||
|
|
||||||
|
## [1.0.4] - 2025-02-16
|
||||||
|
### Added
|
||||||
|
- improve changelog update script to handle absolute paths and create new changelog if missing
|
||||||
|
|
||||||
|
|
||||||
|
## [1.0.3] - 2025-02-16
|
||||||
|
### Added
|
||||||
|
-
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
-
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
-
|
||||||
|
|
||||||
## [1.0.2] - 2025-02-16
|
## [1.0.2] - 2025-02-16
|
||||||
### Added
|
### Added
|
||||||
- Feature 1
|
- Feature 1
|
||||||
|
155
README.de.md
Normal file
155
README.de.md
Normal file
@ -0,0 +1,155 @@
|
|||||||
|
# FilaMan - Filament Management System
|
||||||
|
|
||||||
|
FilaMan ist ein Filament-Managementsystem für den 3D-Druck. Es verwendet ESP32-Hardware für Gewichtsmessungen und NFC-Tag-Management.
|
||||||
|
Benutzer können Filamentspulen verwalten, den Status des Automatic Material System (AMS) von Bablulab Druckern überwachen und Einstellungen über eine Weboberfläche vornehmen.
|
||||||
|
Das System integriert sich nahtlos mit der [Spoolman](https://github.com/Donkie/Spoolman) Filamentverwaltung, zusätzlich mit [Bambulab](https://bambulab.com/en-us) 3D-Druckern und sowie dem [Openspool](https://github.com/spuder/OpenSpool) NFC-TAG Format.
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|
Weitere Bilder finden Sie im [img Ordner](/img/)
|
||||||
|
oder auf meiner Website: [FilaMan Website](https://www.filaman.app)
|
||||||
|
Deutsches Erklärvideo: [Youtube](https://youtu.be/uNDe2wh9SS8?si=b-jYx4I1w62zaOHU)
|
||||||
|
|
||||||
|
### ESP32 Hardware-Funktionen
|
||||||
|
- **Gewichtsmessung:** Verwendung einer Wägezelle mit HX711-Verstärker für präzise Gewichtsverfolgung.
|
||||||
|
- **NFC-Tag Lesen/Schreiben:** PN532-Modul zum Lesen und Schreiben von Filamentdaten auf NFC-Tags.
|
||||||
|
- **OLED-Display:** Zeigt aktuelles Gewicht, Verbindungsstatus (WiFi, Bambu Lab, Spoolman).
|
||||||
|
- **WLAN-Konnektivität:** WiFiManager für einfache Netzwerkkonfiguration.
|
||||||
|
- **MQTT-Integration:** Verbindet sich mit Bambu Lab Drucker für AMS-Steuerung.
|
||||||
|
- **NFC-Tag NTAG215:** Verwendung von NTAG215 wegen ausreichendem Speicherplatz auf dem Tag
|
||||||
|
|
||||||
|
### Weboberflächen-Funktionen
|
||||||
|
- **Echtzeit-Updates:** WebSocket-Verbindung für Live-Daten-Updates.
|
||||||
|
- **NFC-Tag-Verwaltung:**
|
||||||
|
- Filamentdaten auf NFC-Tags schreiben.
|
||||||
|
- Verwendet das NFC-Tag-Format von [Openspool](https://github.com/spuder/OpenSpool)
|
||||||
|
- Ermöglicht automatische Spulenerkennung im AMS
|
||||||
|
- **Bambulab AMS-Integration:**
|
||||||
|
- Anzeige der aktuellen AMS-Fachbelegung.
|
||||||
|
- Zuordnung von Filamenten zu AMS-Slots.
|
||||||
|
- Unterstützung für externe Spulenhalter.
|
||||||
|
- **Spoolman-Integration:**
|
||||||
|
- Auflistung verfügbarer Filamentspulen.
|
||||||
|
- Filtern und Auswählen von Filamenten.
|
||||||
|
- Automatische Aktualisierung der Spulengewichte.
|
||||||
|
- Verfolgung von NFC-Tag-Zuweisungen.
|
||||||
|
|
||||||
|
### Wenn Sie meine Arbeit unterstützen möchten, freue ich mich über einen Kaffee
|
||||||
|
<a href="https://www.buymeacoffee.com/manuelw" target="_blank"><img src="https://cdn.buymeacoffee.com/buttons/v2/default-yellow.png" alt="Buy Me A Coffee" style="height: 30px !important;width: 108px !important;" ></a>
|
||||||
|
|
||||||
|
## Detaillierte Funktionalität
|
||||||
|
|
||||||
|
### ESP32-Funktionalität
|
||||||
|
- **Druckaufträge steuern und überwachen:** Der ESP32 kommuniziert mit dem Bambu Lab Drucker.
|
||||||
|
- **Drucker-Kommunikation:** Nutzt MQTT für Echtzeit-Kommunikation mit dem Drucker.
|
||||||
|
- **Benutzerinteraktionen:** Das OLED-Display bietet sofortiges Feedback zum Systemstatus.
|
||||||
|
|
||||||
|
### Weboberflächen-Funktionalität
|
||||||
|
- **Benutzerinteraktionen:** Die Weboberfläche ermöglicht Benutzern die Interaktion mit dem System.
|
||||||
|
- **UI-Elemente:** Enthält Dropdown-Menüs für Hersteller und Filamente, Buttons zum Beschreiben von NFC-Tags und Echtzeit-Statusanzeigen.
|
||||||
|
|
||||||
|
## Hardware-Anforderungen
|
||||||
|
|
||||||
|
### Komponenten
|
||||||
|
- **ESP32 Entwicklungsboard:** Jede ESP32-Variante.
|
||||||
|
[Amazon Link](https://amzn.eu/d/aXThslf)
|
||||||
|
- **HX711 Wägezellen-Verstärker:** Für Gewichtsmessung.
|
||||||
|
[Amazon Link](https://amzn.eu/d/1wZ4v0x)
|
||||||
|
- **OLED Display:** 128x64 SSD1306.
|
||||||
|
[Amazon Link](https://amzn.eu/d/dozAYDU)
|
||||||
|
- **PN532 NFC Modul:** Für NFC-Tag-Operationen.
|
||||||
|
[Amazon Link](https://amzn.eu/d/8205DDh)
|
||||||
|
- **NFC-Tag:** NTAG215
|
||||||
|
[Amazon Link](https://amzn.eu/d/fywy4c4)
|
||||||
|
|
||||||
|
### Pin-Konfiguration
|
||||||
|
| Komponente | ESP32 Pin |
|
||||||
|
|-------------------|-----------|
|
||||||
|
| HX711 DOUT | 16 |
|
||||||
|
| HX711 SCK | 17 |
|
||||||
|
| OLED SDA | 21 |
|
||||||
|
| OLED SCL | 22 |
|
||||||
|
| PN532 IRQ | 32 |
|
||||||
|
| PN532 RESET | 33 |
|
||||||
|
| PN532 SCK | 14 |
|
||||||
|
| PN532 MOSI | 13 |
|
||||||
|
| PN532 MISO | 12 |
|
||||||
|
| PN532 CS/SS | 15 |
|
||||||
|
|
||||||
|
## Software-Abhängigkeiten
|
||||||
|
|
||||||
|
### ESP32-Bibliotheken
|
||||||
|
- `WiFiManager`: Netzwerkkonfiguration
|
||||||
|
- `ESPAsyncWebServer`: Webserver-Funktionalität
|
||||||
|
- `ArduinoJson`: JSON-Verarbeitung
|
||||||
|
- `PubSubClient`: MQTT-Kommunikation
|
||||||
|
- `Adafruit_PN532`: NFC-Funktionalität
|
||||||
|
- `Adafruit_SSD1306`: OLED-Display-Steuerung
|
||||||
|
- `HX711`: Wägezellen-Kommunikation
|
||||||
|
|
||||||
|
## Installation
|
||||||
|
|
||||||
|
### Voraussetzungen
|
||||||
|
- **Software:**
|
||||||
|
- [PlatformIO](https://platformio.org/) in VS Code
|
||||||
|
- [Spoolman](https://github.com/Donkie/Spoolman) Instanz
|
||||||
|
- **Hardware:**
|
||||||
|
- ESP32 Entwicklungsboard
|
||||||
|
- HX711 Wägezellen-Verstärker
|
||||||
|
- Wägezelle (Gewichtssensor)
|
||||||
|
- OLED Display (128x64 SSD1306)
|
||||||
|
- PN532 NFC Modul
|
||||||
|
- Verbindungskabel
|
||||||
|
|
||||||
|
### Schritt-für-Schritt Installation
|
||||||
|
1. **Repository klonen:**
|
||||||
|
```bash
|
||||||
|
git clone https://github.com/ManuelW77/Filaman.git
|
||||||
|
cd FilaMan
|
||||||
|
```
|
||||||
|
2. **Abhängigkeiten installieren:**
|
||||||
|
```bash
|
||||||
|
pio lib install
|
||||||
|
```
|
||||||
|
3. **ESP32 flashen:**
|
||||||
|
```bash
|
||||||
|
pio run --target upload
|
||||||
|
```
|
||||||
|
4. **Ersteinrichtung:**
|
||||||
|
- Mit dem "FilaMan" WLAN-Zugangspunkt verbinden.
|
||||||
|
- WLAN-Einstellungen über das Konfigurationsportal vornehmen.
|
||||||
|
- Weboberfläche unter `http://filaman.local` oder der IP-Adresse aufrufen.
|
||||||
|
|
||||||
|
## Dokumentation
|
||||||
|
|
||||||
|
### Relevante Links
|
||||||
|
- [PlatformIO Dokumentation](https://docs.platformio.org/)
|
||||||
|
- [Spoolman Dokumentation](https://github.com/Donkie/Spoolman)
|
||||||
|
- [Bambu Lab Drucker Dokumentation](https://www.bambulab.com/)
|
||||||
|
|
||||||
|
### Tutorials und Beispiele
|
||||||
|
- [PlatformIO erste Schritte](https://docs.platformio.org/en/latest/tutorials/espressif32/arduino_debugging_unit_testing.html)
|
||||||
|
- [ESP32 Webserver Tutorial](https://randomnerdtutorials.com/esp32-web-server-arduino-ide/)
|
||||||
|
|
||||||
|
## Lizenz
|
||||||
|
|
||||||
|
Dieses Projekt ist unter der MIT-Lizenz lizenziert. Siehe [LICENSE](LICENSE) Datei für Details.
|
||||||
|
|
||||||
|
## Materialien
|
||||||
|
|
||||||
|
### Nützliche Ressourcen
|
||||||
|
- [ESP32 Offizielle Dokumentation](https://docs.espressif.com/projects/esp-idf/en/latest/esp32/)
|
||||||
|
- [Arduino Bibliotheken](https://www.arduino.cc/en/Reference/Libraries)
|
||||||
|
- [NFC Tag Informationen](https://learn.adafruit.com/adafruit-pn532-rfid-nfc/overview)
|
||||||
|
|
||||||
|
### Community und Support
|
||||||
|
- [PlatformIO Community](https://community.platformio.org/)
|
||||||
|
- [Arduino Forum](https://forum.arduino.cc/)
|
||||||
|
- [ESP32 Forum](https://www.esp32.com/)
|
||||||
|
|
||||||
|
## Verfügbarkeit
|
||||||
|
|
||||||
|
Der Code kann getestet und die Anwendung kann vom [GitHub Repository](https://github.com/ManuelW77/Filaman) heruntergeladen werden.
|
||||||
|
|
||||||
|
### Wenn Sie meine Arbeit unterstützen möchten, freue ich mich über einen Kaffee
|
||||||
|
<a href="https://www.buymeacoffee.com/manuelw" target="_blank"><img src="https://cdn.buymeacoffee.com/buttons/v2/default-yellow.png" alt="Buy Me A Coffee" style="height: 30px !important;width: 108px !important;" ></a>
|
@ -1,5 +1,7 @@
|
|||||||
# FilaMan - Filament Management System
|
# FilaMan - Filament Management System
|
||||||
|
|
||||||
|
[Deutsche Version](README.de.md)
|
||||||
|
|
||||||
FilaMan is a filament management system for 3D printing. It uses ESP32 hardware for weight measurement and NFC tag management.
|
FilaMan is a filament management system for 3D printing. It uses ESP32 hardware for weight measurement and NFC tag management.
|
||||||
Users can manage filament spools, monitor the status of the Automatic Material System (AMS) and make settings via a web interface.
|
Users can manage filament spools, monitor the status of the Automatic Material System (AMS) and make settings via a web interface.
|
||||||
The system integrates seamlessly with [Bambulab](https://bambulab.com/en-us) 3D printers and [Spoolman](https://github.com/Donkie/Spoolman) filament management as well as the [Openspool](https://github.com/spuder/OpenSpool) NFC-TAG format.
|
The system integrates seamlessly with [Bambulab](https://bambulab.com/en-us) 3D printers and [Spoolman](https://github.com/Donkie/Spoolman) filament management as well as the [Openspool](https://github.com/spuder/OpenSpool) NFC-TAG format.
|
||||||
|
@ -12,7 +12,7 @@
|
|||||||
<div style="display: flex; align-items: center; gap: 2rem;">
|
<div style="display: flex; align-items: center; gap: 2rem;">
|
||||||
<img src="/logo.png" alt="FilaMan Logo" class="logo">
|
<img src="/logo.png" alt="FilaMan Logo" class="logo">
|
||||||
<div class="logo-text">
|
<div class="logo-text">
|
||||||
<h1>FilaMan<span class="version">v1.0.2</span></h1>
|
<h1>FilaMan<span class="version">v1.2.0</span></h1>
|
||||||
<h4>Filament Management Tool</h4>
|
<h4>Filament Management Tool</h4>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@ -21,6 +21,7 @@
|
|||||||
<a href="/waage">Scale</a>
|
<a href="/waage">Scale</a>
|
||||||
<a href="/spoolman">Spoolman/Bambu</a>
|
<a href="/spoolman">Spoolman/Bambu</a>
|
||||||
<a href="/about">About</a>
|
<a href="/about">About</a>
|
||||||
|
<a href="/ota">Upgrade</a>
|
||||||
</nav>
|
</nav>
|
||||||
<div class="status-container">
|
<div class="status-container">
|
||||||
<div class="status-item">
|
<div class="status-item">
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
<!DOCTYPE html>
|
<!-- head --><!DOCTYPE html>
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<meta charset="UTF-8">
|
<meta charset="UTF-8">
|
||||||
@ -12,7 +12,7 @@
|
|||||||
<div style="display: flex; align-items: center; gap: 2rem;">
|
<div style="display: flex; align-items: center; gap: 2rem;">
|
||||||
<img src="/logo.png" alt="FilaMan Logo" class="logo">
|
<img src="/logo.png" alt="FilaMan Logo" class="logo">
|
||||||
<div class="logo-text">
|
<div class="logo-text">
|
||||||
<h1>FilaMan<span class="version">v1.0.2</span></h1>
|
<h1>FilaMan<span class="version">v1.2.0</span></h1>
|
||||||
<h4>Filament Management Tool</h4>
|
<h4>Filament Management Tool</h4>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@ -21,6 +21,7 @@
|
|||||||
<a href="/waage">Scale</a>
|
<a href="/waage">Scale</a>
|
||||||
<a href="/spoolman">Spoolman/Bambu</a>
|
<a href="/spoolman">Spoolman/Bambu</a>
|
||||||
<a href="/about">About</a>
|
<a href="/about">About</a>
|
||||||
|
<a href="/upgrade">Upgrade</a>
|
||||||
</nav>
|
</nav>
|
||||||
<div class="status-container">
|
<div class="status-container">
|
||||||
<div class="status-item">
|
<div class="status-item">
|
||||||
@ -33,7 +34,7 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<!-- head -->
|
||||||
|
|
||||||
<div class="container">
|
<div class="container">
|
||||||
<h1>FilaMan</h1>
|
<h1>FilaMan</h1>
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
<!DOCTYPE html>
|
<!-- head --><!DOCTYPE html>
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<meta charset="UTF-8">
|
<meta charset="UTF-8">
|
||||||
@ -12,7 +12,7 @@
|
|||||||
<div style="display: flex; align-items: center; gap: 2rem;">
|
<div style="display: flex; align-items: center; gap: 2rem;">
|
||||||
<img src="/logo.png" alt="FilaMan Logo" class="logo">
|
<img src="/logo.png" alt="FilaMan Logo" class="logo">
|
||||||
<div class="logo-text">
|
<div class="logo-text">
|
||||||
<h1>FilaMan<span class="version">v1.0.2</span></h1>
|
<h1>FilaMan<span class="version">v1.2.0</span></h1>
|
||||||
<h4>Filament Management Tool</h4>
|
<h4>Filament Management Tool</h4>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@ -21,6 +21,7 @@
|
|||||||
<a href="/waage">Scale</a>
|
<a href="/waage">Scale</a>
|
||||||
<a href="/spoolman">Spoolman/Bambu</a>
|
<a href="/spoolman">Spoolman/Bambu</a>
|
||||||
<a href="/about">About</a>
|
<a href="/about">About</a>
|
||||||
|
<a href="/upgrade">Upgrade</a>
|
||||||
</nav>
|
</nav>
|
||||||
<div class="status-container">
|
<div class="status-container">
|
||||||
<div class="status-item">
|
<div class="status-item">
|
||||||
@ -33,6 +34,7 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<!-- head -->
|
||||||
|
|
||||||
<div class="connection-status hidden">
|
<div class="connection-status hidden">
|
||||||
<div class="spinner"></div>
|
<div class="spinner"></div>
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
<!DOCTYPE html>
|
<!-- head --><!DOCTYPE html>
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<meta charset="UTF-8">
|
<meta charset="UTF-8">
|
||||||
@ -12,7 +12,7 @@
|
|||||||
<div style="display: flex; align-items: center; gap: 2rem;">
|
<div style="display: flex; align-items: center; gap: 2rem;">
|
||||||
<img src="/logo.png" alt="FilaMan Logo" class="logo">
|
<img src="/logo.png" alt="FilaMan Logo" class="logo">
|
||||||
<div class="logo-text">
|
<div class="logo-text">
|
||||||
<h1>FilaMan<span class="version">v1.0.2</span></h1>
|
<h1>FilaMan<span class="version">v1.2.0</span></h1>
|
||||||
<h4>Filament Management Tool</h4>
|
<h4>Filament Management Tool</h4>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@ -21,6 +21,7 @@
|
|||||||
<a href="/waage">Scale</a>
|
<a href="/waage">Scale</a>
|
||||||
<a href="/spoolman">Spoolman/Bambu</a>
|
<a href="/spoolman">Spoolman/Bambu</a>
|
||||||
<a href="/about">About</a>
|
<a href="/about">About</a>
|
||||||
|
<a href="/upgrade">Upgrade</a>
|
||||||
</nav>
|
</nav>
|
||||||
<div class="status-container">
|
<div class="status-container">
|
||||||
<div class="status-item">
|
<div class="status-item">
|
||||||
@ -33,6 +34,7 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<!-- head -->
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
window.onload = function() {
|
window.onload = function() {
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
<!DOCTYPE html>
|
<!-- head --><!DOCTYPE html>
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<meta charset="UTF-8">
|
<meta charset="UTF-8">
|
||||||
@ -12,7 +12,7 @@
|
|||||||
<div style="display: flex; align-items: center; gap: 2rem;">
|
<div style="display: flex; align-items: center; gap: 2rem;">
|
||||||
<img src="/logo.png" alt="FilaMan Logo" class="logo">
|
<img src="/logo.png" alt="FilaMan Logo" class="logo">
|
||||||
<div class="logo-text">
|
<div class="logo-text">
|
||||||
<h1>FilaMan<span class="version">v1.0.2</span></h1>
|
<h1>FilaMan<span class="version">v1.2.0</span></h1>
|
||||||
<h4>Filament Management Tool</h4>
|
<h4>Filament Management Tool</h4>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@ -21,6 +21,7 @@
|
|||||||
<a href="/waage">Scale</a>
|
<a href="/waage">Scale</a>
|
||||||
<a href="/spoolman">Spoolman/Bambu</a>
|
<a href="/spoolman">Spoolman/Bambu</a>
|
||||||
<a href="/about">About</a>
|
<a href="/about">About</a>
|
||||||
|
<a href="/upgrade">Upgrade</a>
|
||||||
</nav>
|
</nav>
|
||||||
<div class="status-container">
|
<div class="status-container">
|
||||||
<div class="status-item">
|
<div class="status-item">
|
||||||
@ -33,6 +34,7 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<!-- head -->
|
||||||
|
|
||||||
<div class="content">
|
<div class="content">
|
||||||
<h1>Scale Configuration Page</h1>
|
<h1>Scale Configuration Page</h1>
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
<!DOCTYPE html>
|
<!-- head --><!DOCTYPE html>
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<meta charset="UTF-8">
|
<meta charset="UTF-8">
|
||||||
@ -12,7 +12,7 @@
|
|||||||
<div style="display: flex; align-items: center; gap: 2rem;">
|
<div style="display: flex; align-items: center; gap: 2rem;">
|
||||||
<img src="/logo.png" alt="FilaMan Logo" class="logo">
|
<img src="/logo.png" alt="FilaMan Logo" class="logo">
|
||||||
<div class="logo-text">
|
<div class="logo-text">
|
||||||
<h1>FilaMan<span class="version">v1.0.2</span></h1>
|
<h1>FilaMan<span class="version">v1.2.0</span></h1>
|
||||||
<h4>Filament Management Tool</h4>
|
<h4>Filament Management Tool</h4>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@ -21,6 +21,7 @@
|
|||||||
<a href="/waage">Scale</a>
|
<a href="/waage">Scale</a>
|
||||||
<a href="/spoolman">Spoolman/Bambu</a>
|
<a href="/spoolman">Spoolman/Bambu</a>
|
||||||
<a href="/about">About</a>
|
<a href="/about">About</a>
|
||||||
|
<a href="/upgrade">Upgrade</a>
|
||||||
</nav>
|
</nav>
|
||||||
<div class="status-container">
|
<div class="status-container">
|
||||||
<div class="status-item">
|
<div class="status-item">
|
||||||
@ -33,6 +34,7 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<!-- head -->
|
||||||
|
|
||||||
<div class="content">
|
<div class="content">
|
||||||
<h1>WiFi Configuration Page</h1>
|
<h1>WiFi Configuration Page</h1>
|
||||||
|
5
partitions.csv
Normal file
5
partitions.csv
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
# Name, Type, SubType, Offset, Size, Flags
|
||||||
|
nvs, data, nvs, 0x9000, 0x5000,
|
||||||
|
otadata, data, ota, 0xe000, 0x2000,
|
||||||
|
app0, app, ota_0, 0x10000, 0x280000,
|
||||||
|
spiffs, data, spiffs, 0x290000, 0x170000,
|
|
@ -9,7 +9,7 @@
|
|||||||
; https://docs.platformio.org/page/projectconf.html
|
; https://docs.platformio.org/page/projectconf.html
|
||||||
|
|
||||||
[common]
|
[common]
|
||||||
version = "1.0.2"
|
version = "1.2.0"
|
||||||
|
|
||||||
[env:esp32dev]
|
[env:esp32dev]
|
||||||
platform = espressif32
|
platform = espressif32
|
||||||
@ -19,7 +19,8 @@ monitor_speed = 115200
|
|||||||
|
|
||||||
lib_deps =
|
lib_deps =
|
||||||
tzapu/WiFiManager @ ^2.0.17
|
tzapu/WiFiManager @ ^2.0.17
|
||||||
me-no-dev/ESP Async WebServer @ ^1.2.4
|
#me-no-dev/ESP Async WebServer @ ^1.2.4
|
||||||
|
https://github.com/me-no-dev/ESPAsyncWebServer.git#master
|
||||||
me-no-dev/AsyncTCP @ ^1.1.1
|
me-no-dev/AsyncTCP @ ^1.1.1
|
||||||
bogde/HX711 @ ^0.7.5
|
bogde/HX711 @ ^0.7.5
|
||||||
adafruit/Adafruit SSD1306 @ ^2.5.13
|
adafruit/Adafruit SSD1306 @ ^2.5.13
|
||||||
@ -28,11 +29,16 @@ lib_deps =
|
|||||||
bblanchon/ArduinoJson @ ^7.3.0
|
bblanchon/ArduinoJson @ ^7.3.0
|
||||||
knolleary/PubSubClient @ ^2.8
|
knolleary/PubSubClient @ ^2.8
|
||||||
digitaldragon/SSLClient @ ^1.3.2
|
digitaldragon/SSLClient @ ^1.3.2
|
||||||
|
ipdotsetaf/ESPAsyncHTTPUpdateServer @ ^2.0.0
|
||||||
|
|
||||||
; Enable SPIFFS upload
|
; Enable SPIFFS upload
|
||||||
board_build.filesystem = spiffs
|
board_build.filesystem = spiffs
|
||||||
board_build.spiffs.partition = 2M
|
; Update partition settings
|
||||||
board_build.spiffs.upload_size = 2M
|
board_build.partitions = partitions.csv
|
||||||
|
board_upload.flash_size = 4MB
|
||||||
|
; Remove these as they're now defined in partitions.csv
|
||||||
|
; board_build.spiffs.partition = 2M
|
||||||
|
; board_build.spiffs.upload_size = 2M
|
||||||
|
|
||||||
build_flags =
|
build_flags =
|
||||||
-Os
|
-Os
|
||||||
@ -43,9 +49,16 @@ build_flags =
|
|||||||
'-D VERSION="${common.version}"'
|
'-D VERSION="${common.version}"'
|
||||||
|
|
||||||
extra_scripts =
|
extra_scripts =
|
||||||
pre:scripts/combine_html.py
|
scripts/extra_script.py
|
||||||
pre:scripts/pre_build.py
|
pre:scripts/pre_build.py ; wird zuerst ausgeführt
|
||||||
pre:scripts/pre_spiffs.py
|
pre:scripts/pre_spiffs.py ; wird als zweites ausgeführt
|
||||||
pre:scripts/gzip_files.py
|
pre:scripts/combine_html.py ; wird als drittes ausgeführt
|
||||||
pre:scripts/extra_script.py
|
scripts/gzip_files.py
|
||||||
pre:scripts/update_changelog.py
|
|
||||||
|
; Remove or comment out the targets line
|
||||||
|
;targets = buildfs, build
|
||||||
|
|
||||||
|
; Add a custom target to build both
|
||||||
|
[platformio]
|
||||||
|
default_envs = esp32dev
|
||||||
|
|
||||||
|
60
release.sh
60
release.sh
@ -1,60 +0,0 @@
|
|||||||
#!/bin/bash
|
|
||||||
|
|
||||||
# Get version from platformio.ini
|
|
||||||
VERSION=$(grep '^version = ' platformio.ini | sed 's/version = "\(.*\)"/\1/')
|
|
||||||
|
|
||||||
if [ -z "$VERSION" ]; then
|
|
||||||
echo "Error: Could not find version in platformio.ini"
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
|
|
||||||
echo "Creating release for version $VERSION"
|
|
||||||
|
|
||||||
# Check if working directory is clean
|
|
||||||
if [ -n "$(git status --porcelain)" ]; then
|
|
||||||
echo "Error: Working directory is not clean. Please commit all changes first."
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
|
|
||||||
# Push to origin (local git repo)
|
|
||||||
echo "Pushing to origin..."
|
|
||||||
git push origin
|
|
||||||
if [ $? -ne 0 ]; then
|
|
||||||
echo "Error: Failed to push to origin"
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
|
|
||||||
git tag "v$VERSION"
|
|
||||||
if [ $? -ne 0 ]; then
|
|
||||||
echo "Error: Failed to create tag v$VERSION"
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
|
|
||||||
git push origin "v$VERSION"
|
|
||||||
if [ $? -ne 0 ]; then
|
|
||||||
echo "Error: Failed to push tag v$VERSION to origin"
|
|
||||||
git tag -d "v$VERSION"
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
|
|
||||||
# Ask for upstream push
|
|
||||||
read -p "Do you want to push to GitHub (upstream)? (y/n) " -n 1 -r
|
|
||||||
echo
|
|
||||||
if [[ $REPLY =~ ^[Yy]$ ]]; then
|
|
||||||
echo "Pushing to upstream (GitHub)..."
|
|
||||||
git push upstream
|
|
||||||
if [ $? -ne 0 ]; then
|
|
||||||
echo "Error: Failed to push to upstream"
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
|
|
||||||
git push upstream "v$VERSION"
|
|
||||||
if [ $? -ne 0 ]; then
|
|
||||||
echo "Error: Failed to push tag v$VERSION to upstream"
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
echo "Successfully pushed to GitHub"
|
|
||||||
fi
|
|
||||||
|
|
||||||
echo "Successfully created and pushed tag v$VERSION"
|
|
||||||
echo "All operations completed"
|
|
@ -1,7 +1,10 @@
|
|||||||
Import("env")
|
Import("env")
|
||||||
import os
|
import os
|
||||||
|
import re
|
||||||
|
|
||||||
def combine_html_files(source, target, env):
|
def combine_html_files(source, target, env):
|
||||||
|
print("COMBINE HTML FILES")
|
||||||
|
|
||||||
html_dir = "./html"
|
html_dir = "./html"
|
||||||
header_file = os.path.join(html_dir, "header.html")
|
header_file = os.path.join(html_dir, "header.html")
|
||||||
|
|
||||||
@ -18,14 +21,14 @@ def combine_html_files(source, target, env):
|
|||||||
with open(file_path, 'r') as f:
|
with open(file_path, 'r') as f:
|
||||||
content = f.read()
|
content = f.read()
|
||||||
|
|
||||||
# Replace placeholder with header content
|
# Replace content between head comments with header content
|
||||||
if '{{header}}' in content:
|
pattern = r'(<!-- head -->).*?(<!-- head -->)'
|
||||||
new_content = content.replace('{{header}}', header_content)
|
new_content = re.sub(pattern, r'\1' + header_content + r'\2', content, flags=re.DOTALL)
|
||||||
|
|
||||||
# Write back combined content
|
# Write back combined content
|
||||||
with open(file_path, 'w') as f:
|
with open(file_path, 'w') as f:
|
||||||
f.write(new_content)
|
f.write(new_content)
|
||||||
print(f"Combined header with {filename}")
|
print(f"Combined header with {filename}")
|
||||||
|
|
||||||
# Register the script to run before building SPIFFS
|
# Register the script to run before building SPIFFS
|
||||||
env.AddPreAction("buildfs", combine_html_files)
|
env.AddPreAction("buildfs", combine_html_files)
|
@ -13,6 +13,9 @@ def copy_file(input_file, output_file):
|
|||||||
shutil.copy2(input_file, output_file)
|
shutil.copy2(input_file, output_file)
|
||||||
|
|
||||||
def should_compress(file):
|
def should_compress(file):
|
||||||
|
# Skip compression for spoolman.html
|
||||||
|
if file == 'spoolman.html':
|
||||||
|
return False
|
||||||
# Komprimiere nur bestimmte Dateitypen
|
# Komprimiere nur bestimmte Dateitypen
|
||||||
return file.endswith(('.js', '.png', '.css', '.html'))
|
return file.endswith(('.js', '.png', '.css', '.html'))
|
||||||
|
|
||||||
|
@ -22,4 +22,4 @@ def replace_version(source, target, env):
|
|||||||
with open(header_file, 'w') as file:
|
with open(header_file, 'w') as file:
|
||||||
file.write(content)
|
file.write(content)
|
||||||
|
|
||||||
env.AddPreAction("buildfs", replace_version)
|
env.AddPreAction("buildfs", replace_version)
|
||||||
|
@ -1,36 +1,128 @@
|
|||||||
import os
|
import os
|
||||||
import re
|
import re
|
||||||
|
import subprocess
|
||||||
from datetime import datetime
|
from datetime import datetime
|
||||||
|
|
||||||
def get_version():
|
def get_version():
|
||||||
with open('../platformio.ini', 'r') as f:
|
script_dir = os.path.dirname(os.path.abspath(__file__))
|
||||||
|
project_dir = os.path.dirname(script_dir)
|
||||||
|
platformio_path = os.path.join(project_dir, 'platformio.ini')
|
||||||
|
|
||||||
|
with open(platformio_path, 'r') as f:
|
||||||
content = f.read()
|
content = f.read()
|
||||||
version_match = re.search(r'version\s*=\s*"([^"]+)"', content)
|
version_match = re.search(r'version\s*=\s*"([^"]+)"', content)
|
||||||
return version_match.group(1) if version_match else None
|
return version_match.group(1) if version_match else None
|
||||||
|
|
||||||
|
def get_last_tag():
|
||||||
|
try:
|
||||||
|
result = subprocess.run(['git', 'describe', '--tags', '--abbrev=0'],
|
||||||
|
capture_output=True, text=True)
|
||||||
|
return result.stdout.strip()
|
||||||
|
except subprocess.CalledProcessError:
|
||||||
|
return None
|
||||||
|
|
||||||
|
def categorize_commit(commit_msg):
|
||||||
|
"""Categorize commit messages based on conventional commits"""
|
||||||
|
lower_msg = commit_msg.lower()
|
||||||
|
if any(x in lower_msg for x in ['feat', 'add', 'new']):
|
||||||
|
return 'Added'
|
||||||
|
elif any(x in lower_msg for x in ['fix', 'bug']):
|
||||||
|
return 'Fixed'
|
||||||
|
else:
|
||||||
|
return 'Changed'
|
||||||
|
|
||||||
|
def get_changes_from_git():
|
||||||
|
"""Get changes from git commits since last tag"""
|
||||||
|
changes = {
|
||||||
|
'Added': [],
|
||||||
|
'Changed': [],
|
||||||
|
'Fixed': []
|
||||||
|
}
|
||||||
|
|
||||||
|
last_tag = get_last_tag()
|
||||||
|
|
||||||
|
# Get commits since last tag
|
||||||
|
git_log_command = ['git', 'log', '--pretty=format:%s']
|
||||||
|
if last_tag:
|
||||||
|
git_log_command.append(f'{last_tag}..HEAD')
|
||||||
|
|
||||||
|
try:
|
||||||
|
result = subprocess.run(git_log_command, capture_output=True, text=True)
|
||||||
|
commits = result.stdout.strip().split('\n')
|
||||||
|
|
||||||
|
# Filter out empty commits and categorize
|
||||||
|
for commit in commits:
|
||||||
|
if commit:
|
||||||
|
category = categorize_commit(commit)
|
||||||
|
# Clean up commit message
|
||||||
|
clean_msg = re.sub(r'^(feat|fix|chore|docs|style|refactor|perf|test)(\(.*\))?:', '', commit).strip()
|
||||||
|
changes[category].append(clean_msg)
|
||||||
|
|
||||||
|
except subprocess.CalledProcessError:
|
||||||
|
print("Error: Failed to get git commits")
|
||||||
|
return None
|
||||||
|
|
||||||
|
return changes
|
||||||
|
|
||||||
|
def push_changes(version):
|
||||||
|
"""Push changes to upstream"""
|
||||||
|
try:
|
||||||
|
# Stage the CHANGELOG.md
|
||||||
|
subprocess.run(['git', 'add', 'CHANGELOG.md'], check=True)
|
||||||
|
|
||||||
|
# Commit the changelog
|
||||||
|
commit_msg = f"docs: update changelog for version {version}"
|
||||||
|
subprocess.run(['git', 'commit', '-m', commit_msg], check=True)
|
||||||
|
|
||||||
|
# Push to origin (local)
|
||||||
|
subprocess.run(['git', 'push', 'origin'], check=True)
|
||||||
|
print("Successfully pushed to origin")
|
||||||
|
|
||||||
|
except subprocess.CalledProcessError as e:
|
||||||
|
print(f"Error during git operations: {e}")
|
||||||
|
return False
|
||||||
|
return True
|
||||||
|
|
||||||
def update_changelog():
|
def update_changelog():
|
||||||
|
print("Starting changelog update...") # Add this line
|
||||||
version = get_version()
|
version = get_version()
|
||||||
|
print(f"Current version: {version}") # Add this line
|
||||||
today = datetime.now().strftime('%Y-%m-%d')
|
today = datetime.now().strftime('%Y-%m-%d')
|
||||||
|
|
||||||
changelog_template = f"""## [{version}] - {today}
|
script_dir = os.path.dirname(os.path.abspath(__file__))
|
||||||
### Added
|
project_dir = os.path.dirname(script_dir)
|
||||||
-
|
changelog_path = os.path.join(project_dir, 'CHANGELOG.md')
|
||||||
|
|
||||||
### Changed
|
|
||||||
-
|
|
||||||
|
|
||||||
### Fixed
|
|
||||||
-
|
|
||||||
"""
|
|
||||||
|
|
||||||
with open('../CHANGELOG.md', 'r') as f:
|
# Get changes from git
|
||||||
content = f.read()
|
changes = get_changes_from_git()
|
||||||
|
if not changes:
|
||||||
|
print("No changes found or error occurred")
|
||||||
|
return
|
||||||
|
|
||||||
# Insert new version template after the header
|
# Create changelog entry
|
||||||
updated_content = content.replace("# Changelog\n", f"# Changelog\n\n{changelog_template}")
|
changelog_entry = f"## [{version}] - {today}\n"
|
||||||
|
for section, entries in changes.items():
|
||||||
|
if entries: # Only add sections that have entries
|
||||||
|
changelog_entry += f"### {section}\n"
|
||||||
|
for entry in entries:
|
||||||
|
changelog_entry += f"- {entry}\n"
|
||||||
|
changelog_entry += "\n"
|
||||||
|
|
||||||
with open('../CHANGELOG.md', 'w') as f:
|
if not os.path.exists(changelog_path):
|
||||||
f.write(updated_content)
|
with open(changelog_path, 'w') as f:
|
||||||
|
f.write(f"# Changelog\n\n{changelog_entry}")
|
||||||
|
push_changes(version)
|
||||||
|
else:
|
||||||
|
with open(changelog_path, 'r') as f:
|
||||||
|
content = f.read()
|
||||||
|
|
||||||
|
if f"[{version}]" not in content:
|
||||||
|
updated_content = content.replace("# Changelog\n", f"# Changelog\n\n{changelog_entry}")
|
||||||
|
with open(changelog_path, 'w') as f:
|
||||||
|
f.write(updated_content)
|
||||||
|
push_changes(version)
|
||||||
|
else:
|
||||||
|
print(f"Version {version} already exists in changelog")
|
||||||
|
|
||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
update_changelog()
|
update_changelog()
|
48
src/main.cpp
48
src/main.cpp
@ -1,10 +1,10 @@
|
|||||||
#include <Arduino.h>
|
#include <Arduino.h>
|
||||||
#include <WiFi.h>
|
|
||||||
#include <DNSServer.h>
|
#include <DNSServer.h>
|
||||||
#include <WiFiManager.h>
|
|
||||||
#include <ESPmDNS.h>
|
#include <ESPmDNS.h>
|
||||||
#include <Wire.h>
|
#include <Wire.h>
|
||||||
|
#include <WiFi.h>
|
||||||
|
|
||||||
|
#include "wlan.h"
|
||||||
#include "config.h"
|
#include "config.h"
|
||||||
#include "website.h"
|
#include "website.h"
|
||||||
#include "api.h"
|
#include "api.h"
|
||||||
@ -15,12 +15,6 @@
|
|||||||
#include "esp_task_wdt.h"
|
#include "esp_task_wdt.h"
|
||||||
#include "commonFS.h"
|
#include "commonFS.h"
|
||||||
|
|
||||||
// ***** WIFI initialisieren
|
|
||||||
WiFiManager wm;
|
|
||||||
bool wm_nonblocking = false;
|
|
||||||
void initWiFi();
|
|
||||||
// ################### Functions
|
|
||||||
|
|
||||||
// ##### SETUP #####
|
// ##### SETUP #####
|
||||||
void setup() {
|
void setup() {
|
||||||
Serial.begin(115200);
|
Serial.begin(115200);
|
||||||
@ -96,9 +90,6 @@ void loop() {
|
|||||||
|
|
||||||
unsigned long currentMillis = millis();
|
unsigned long currentMillis = millis();
|
||||||
|
|
||||||
// Falls WifiManager im nicht blockenden Modus ist
|
|
||||||
//if(wm_nonblocking) wm.process();
|
|
||||||
|
|
||||||
// Send AMS Data min every Minute
|
// Send AMS Data min every Minute
|
||||||
if (currentMillis - lastAmsSendTime >= amsSendInterval) {
|
if (currentMillis - lastAmsSendTime >= amsSendInterval) {
|
||||||
lastAmsSendTime = currentMillis;
|
lastAmsSendTime = currentMillis;
|
||||||
@ -164,38 +155,3 @@ void loop() {
|
|||||||
yield();
|
yield();
|
||||||
esp_task_wdt_reset();
|
esp_task_wdt_reset();
|
||||||
}
|
}
|
||||||
|
|
||||||
// ##### Funktionen für Konfiguration #####
|
|
||||||
void initWiFi() {
|
|
||||||
WiFi.mode(WIFI_STA); // explicitly set mode, esp defaults to STA+AP
|
|
||||||
|
|
||||||
if(wm_nonblocking) wm.setConfigPortalBlocking(false);
|
|
||||||
wm.setConfigPortalTimeout(320); // Portal nach 5min schließen
|
|
||||||
|
|
||||||
oledShowTopRow();
|
|
||||||
oledShowMessage("WiFi Setup");
|
|
||||||
|
|
||||||
bool res;
|
|
||||||
// res = wm.autoConnect(); // auto generated AP name from chipid
|
|
||||||
res = wm.autoConnect("FilaMan"); // anonymous ap
|
|
||||||
// res = wm.autoConnect("spoolman","password"); // password protected ap
|
|
||||||
|
|
||||||
if(!res) {
|
|
||||||
Serial.println("Failed to connect or hit timeout");
|
|
||||||
// ESP.restart();
|
|
||||||
oledShowTopRow();
|
|
||||||
oledShowMessage("WiFi not connected Check Portal");
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
wifiOn = true;
|
|
||||||
|
|
||||||
//if you get here you have connected to the WiFi
|
|
||||||
Serial.println("connected...yeey :)");
|
|
||||||
Serial.print("IP address: ");
|
|
||||||
Serial.println(WiFi.localIP());
|
|
||||||
|
|
||||||
oledShowTopRow();
|
|
||||||
display.display();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
// ##### Funktionen für Konfiguration Ende #####
|
|
||||||
|
11
src/ota.cpp
Normal file
11
src/ota.cpp
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
#include <Arduino.h>
|
||||||
|
#include "ota.h"
|
||||||
|
#include <ESPAsyncWebServer.h>
|
||||||
|
#include <ESPAsyncHTTPUpdateServer.h>
|
||||||
|
|
||||||
|
ESPAsyncHTTPUpdateServer updateServer;
|
||||||
|
|
||||||
|
void setupOTA(AsyncWebServer &server) {
|
||||||
|
updateServer.setup(&server, "/ota", "admin", "admin");
|
||||||
|
//updateServer.setup(&server);
|
||||||
|
}
|
8
src/ota.h
Normal file
8
src/ota.h
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
#ifndef OTA_H
|
||||||
|
#define OTA_H
|
||||||
|
|
||||||
|
#include <ESPAsyncWebServer.h>
|
||||||
|
|
||||||
|
void setupOTA(AsyncWebServer &server);
|
||||||
|
|
||||||
|
#endif
|
@ -5,7 +5,6 @@
|
|||||||
#include "HX711.h"
|
#include "HX711.h"
|
||||||
#include <EEPROM.h>
|
#include <EEPROM.h>
|
||||||
#include "display.h"
|
#include "display.h"
|
||||||
#include "nfc.h"
|
|
||||||
#include "esp_task_wdt.h"
|
#include "esp_task_wdt.h"
|
||||||
|
|
||||||
HX711 scale;
|
HX711 scale;
|
||||||
|
@ -3,11 +3,11 @@
|
|||||||
#include "api.h"
|
#include "api.h"
|
||||||
#include <ArduinoJson.h>
|
#include <ArduinoJson.h>
|
||||||
#include <ESPAsyncWebServer.h>
|
#include <ESPAsyncWebServer.h>
|
||||||
//#include <AsyncWebSocket.h>
|
|
||||||
#include "bambu.h"
|
#include "bambu.h"
|
||||||
#include "nfc.h"
|
#include "nfc.h"
|
||||||
#include "scale.h"
|
#include "scale.h"
|
||||||
#include "esp_task_wdt.h"
|
#include "esp_task_wdt.h"
|
||||||
|
#include "ota.h"
|
||||||
|
|
||||||
// Cache-Control Header definieren
|
// Cache-Control Header definieren
|
||||||
#define CACHE_CONTROL "max-age=31536000" // Cache für 1 Jahr
|
#define CACHE_CONTROL "max-age=31536000" // Cache für 1 Jahr
|
||||||
@ -161,6 +161,8 @@ void setupWebserver(AsyncWebServer &server) {
|
|||||||
Serial.print("Geladene Spoolman-URL: ");
|
Serial.print("Geladene Spoolman-URL: ");
|
||||||
Serial.println(spoolmanUrl);
|
Serial.println(spoolmanUrl);
|
||||||
|
|
||||||
|
setupOTA(server);
|
||||||
|
|
||||||
// Route für about
|
// Route für about
|
||||||
server.on("/about", HTTP_GET, [](AsyncWebServerRequest *request){
|
server.on("/about", HTTP_GET, [](AsyncWebServerRequest *request){
|
||||||
Serial.println("Anfrage für /about erhalten");
|
Serial.println("Anfrage für /about erhalten");
|
||||||
|
45
src/wlan.cpp
Normal file
45
src/wlan.cpp
Normal file
@ -0,0 +1,45 @@
|
|||||||
|
#include <Arduino.h>
|
||||||
|
#include "wlan.h"
|
||||||
|
#include <WiFi.h>
|
||||||
|
#include <esp_wifi.h>
|
||||||
|
#include <WiFiManager.h>
|
||||||
|
#include "display.h"
|
||||||
|
#include "config.h"
|
||||||
|
|
||||||
|
WiFiManager wm;
|
||||||
|
bool wm_nonblocking = false;
|
||||||
|
|
||||||
|
void initWiFi() {
|
||||||
|
WiFi.mode(WIFI_STA); // explicitly set mode, esp defaults to STA+AP
|
||||||
|
|
||||||
|
esp_wifi_set_max_tx_power(72); // Setze maximale Sendeleistung auf 20dBm
|
||||||
|
|
||||||
|
if(wm_nonblocking) wm.setConfigPortalBlocking(false);
|
||||||
|
wm.setConfigPortalTimeout(320); // Portal nach 5min schließen
|
||||||
|
|
||||||
|
oledShowTopRow();
|
||||||
|
oledShowMessage("WiFi Setup");
|
||||||
|
|
||||||
|
bool res;
|
||||||
|
// res = wm.autoConnect(); // auto generated AP name from chipid
|
||||||
|
res = wm.autoConnect("FilaMan"); // anonymous ap
|
||||||
|
// res = wm.autoConnect("spoolman","password"); // password protected ap
|
||||||
|
|
||||||
|
if(!res) {
|
||||||
|
Serial.println("Failed to connect or hit timeout");
|
||||||
|
// ESP.restart();
|
||||||
|
oledShowTopRow();
|
||||||
|
oledShowMessage("WiFi not connected Check Portal");
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
wifiOn = true;
|
||||||
|
|
||||||
|
//if you get here you have connected to the WiFi
|
||||||
|
Serial.println("connected...yeey :)");
|
||||||
|
Serial.print("IP address: ");
|
||||||
|
Serial.println(WiFi.localIP());
|
||||||
|
|
||||||
|
oledShowTopRow();
|
||||||
|
display.display();
|
||||||
|
}
|
||||||
|
}
|
8
src/wlan.h
Normal file
8
src/wlan.h
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
#ifndef WLAN_H
|
||||||
|
#define WLAN_H
|
||||||
|
|
||||||
|
#include <Arduino.h>
|
||||||
|
|
||||||
|
void initWiFi();
|
||||||
|
|
||||||
|
#endif
|
Reference in New Issue
Block a user