Skip to content
This repository was archived by the owner on Sep 11, 2024. It is now read-only.

Commit a32c5e1

Browse files
author
Mitnovych
committed
Init code.
1 parent f98acfb commit a32c5e1

7 files changed

+1462
-32
lines changed

.gitignore

+5-32
Original file line numberDiff line numberDiff line change
@@ -1,32 +1,5 @@
1-
# Prerequisites
2-
*.d
3-
4-
# Compiled Object files
5-
*.slo
6-
*.lo
7-
*.o
8-
*.obj
9-
10-
# Precompiled Headers
11-
*.gch
12-
*.pch
13-
14-
# Compiled Dynamic libraries
15-
*.so
16-
*.dylib
17-
*.dll
18-
19-
# Fortran module files
20-
*.mod
21-
*.smod
22-
23-
# Compiled Static libraries
24-
*.lai
25-
*.la
26-
*.a
27-
*.lib
28-
29-
# Executables
30-
*.exe
31-
*.out
32-
*.app
1+
.pio
2+
.vscode/.browse.c_cpp.db*
3+
.vscode/c_cpp_properties.json
4+
.vscode/launch.json
5+
.vscode/ipch

LICENSE

+661
Large diffs are not rendered by default.

_config.yml

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
theme: jekyll-theme-modernist

partitions_singleapp.csv

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# Name, Type, SubType, Offset, Size, Flags
2+
nvs, data, nvs, 0x9000, 0x5000,
3+
otadata, data, ota, 0xe000, 0x2000,
4+
app0, app, ota_0, 0x10000, 0x1E0000,
5+
app1, app, ota_1, 0x1F0000,0x1E0000,
6+
eeprom, data, 0x99, 0x3F0000,0x1000,
7+
spiffs, data, spiffs, 0x3F1000,0xF000,

platformio.ini

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
; PlatformIO Project Configuration File
2+
;
3+
; Build options: build flags, source filter
4+
; Upload options: custom upload port, speed and extra flags
5+
; Library options: dependencies, extra library storages
6+
; Advanced options: extra scripting
7+
;
8+
; Please visit documentation for the other options and examples
9+
; https://docs.platformio.org/page/projectconf.html
10+
11+
[platformio]
12+
src_dir = ./src
13+
14+
[env:esp32]
15+
platform = espressif32
16+
framework = arduino
17+
board = esp32dev
18+
lib_deps =
19+
ArduinoJson@^6
20+
;ESP32 BLE Arduino@^1.0.1
21+
AsyncMqttClient@^0.8.2
22+
AsyncTCP
23+
h2zero/NimBLE-Arduino@^1.3.1
24+
esphome/ESPAsyncWebServer-esphome@^2.1.0
25+
lib_ignore = ESPAsyncTCP
26+
board_build.partitions = partitions_singleapp.csv
27+
monitor_speed = 115200

0 commit comments

Comments
 (0)