-
Notifications
You must be signed in to change notification settings - Fork 164
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixed compilation but with ESP32-BLE-Keyboard
Signed-off-by: simonmicro <[email protected]>
- Loading branch information
1 parent
ac57345
commit c81bf38
Showing
3 changed files
with
19 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,8 +11,14 @@ | |
[platformio] | ||
default_envs = LIGHT_EDITION_V3_3 | ||
|
||
# =========================================== | ||
# A note regarding the platform/library versions here: | ||
# Due to potential upstream bugs, we pinned all versions to the latest known working version. | ||
# While this will prevent the use of latest features, it will also prevent randomly breaking builds... | ||
# =========================================== | ||
|
||
[env] | ||
platform = espressif32@^6.5.0 | ||
platform = espressif32@6.8.1 | ||
; for USE_ULP: use a special branch and git submodule add https://github.com/boarchuz/HULP.git | ||
; platform_packages = | ||
; framework-arduinoespressif32 @ https://github.com/marcovannoord/arduino-esp32.git#idf-release/v4.2 | ||
|
@@ -22,12 +28,12 @@ framework = arduino | |
board_build.partitions = min_spiffs.csv ; OTA updates (two app slots), but no space for the SPIFFS (as it is currently not used) | ||
monitor_filters = esp32_exception_decoder ; Well, it works?! | ||
lib_deps = | ||
adafruit/Adafruit Unified Sensor@^1.1.9 | ||
adafruit/Adafruit BusIO@^1.14.1 | ||
makuna/RTC@^2.4.0 | ||
bblanchon/ArduinoJson@^6.21.2 | ||
finitespace/BME280@^3.0.0 ; TODO Use the more popular Adafruit BME280 Library instead (also true for others?)? | ||
mprograms/QMC5883LCompass@^1.1.1 | ||
adafruit/Adafruit Unified [email protected].14 | ||
adafruit/Adafruit BusIO@1.16.1 | ||
makuna/[email protected].3 | ||
bblanchon/[email protected].5 | ||
finitespace/[email protected] ; TODO Use the more popular Adafruit BME280 Library instead (also true for others?)? | ||
mprograms/QMC5883LCompass@1.2.3 | ||
upload_speed = 460800 | ||
monitor_speed = 115200 | ||
; Define additional build stage scripts - used to "compile" the html or define additional information | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters