Skip to content

Commit dc679e2

Browse files
committed
first try
1 parent 17c5cec commit dc679e2

30 files changed

Lines changed: 166 additions & 126 deletions

.gitignore

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,3 +22,51 @@ check-cppcheck-build-dir
2222

2323
# Local configuration file for DPVController
2424
DPVController/localConfig.h
25+
26+
# PlatformIO
27+
.pio/
28+
.pioenvs/
29+
.piolibdeps/
30+
.pio-debug/
31+
32+
# VSCode
33+
.vscode/
34+
.vscode/.browse.c_cpp.db*
35+
.vscode/c_cpp_properties.json
36+
.vscode/launch.json
37+
.vscode/ipch/
38+
39+
# Build Verzeichnisse
40+
build/
41+
debug/
42+
release/
43+
44+
# Temporäre Dateien
45+
*.swp
46+
*.swo
47+
*~
48+
49+
# Betriebssystem
50+
.DS_Store
51+
Thumbs.db
52+
53+
# ESP32 spezifisch
54+
sdkconfig
55+
sdkconfig.old
56+
57+
# Binärdateien
58+
*.bin
59+
*.elf
60+
*.hex
61+
62+
# Alte Projektversionen
63+
DPVController/
64+
DPVControllerIO/
65+
66+
# Lokale Konfigurationsdateien
67+
*.local.ini
68+
69+
# Backup Dateien
70+
*.bak
71+
*.backup
72+
*_old

DPVController/datalog.h

Lines changed: 0 additions & 17 deletions
This file was deleted.

DPVController/main.cpp

Lines changed: 0 additions & 80 deletions
This file was deleted.

DPVController/main.h

Lines changed: 0 additions & 15 deletions
This file was deleted.

platformio.ini

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
[env:esp32dev]
2+
platform = espressif32
3+
board = esp32dev
4+
framework = arduino
5+
6+
monitor_speed = 115200
7+
8+
lib_deps =
9+
https://github.com/marcobrianza/ClickButton.git
10+
https://github.com/beegee-tokyo/DHTesp.git
11+
https://github.com/SolidGeek/VescUart.git
12+
https://github.com/YiannisBourkelis/Uptime-Library.git
13+
adafruit/Adafruit NeoPixel @ ^1.11.0
14+
15+
build_flags =
16+
-D CORE_DEBUG_LEVEL=5
17+
18+
board_build.filesystem = spiffs
19+
board_build.partitions = huge_app.csv
20+
21+
src_dir = src
File renamed without changes.
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -166,3 +166,8 @@ void testBattery(){
166166
Serial.print(soc);Serial.println("% SOC");
167167
}
168168
}
169+
170+
void batteryLoop() {
171+
// Implementierung hier
172+
// Füge die Logik aus der ursprünglichen Datei ein
173+
}

0 commit comments

Comments
 (0)