Skip to content

Commit

Permalink
Update deps (#1023)
Browse files Browse the repository at this point in the history
* ARDUINO_LOOP_STACK_SIZE gotta be 6k to update a m5stack-c
  • Loading branch information
DTTerastar committed Aug 25, 2023
1 parent 7c5cb37 commit c7b43b4
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 11 deletions.
16 changes: 8 additions & 8 deletions platformio.ini
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ build_flags =
-D ARDUINOJSON_ENABLE_NAN=0
-D CONFIG_BT_NIMBLE_TASK_STACK_SIZE=4096
-D SCAN_TASK_STACK_SIZE=2562
-D ARDUINO_LOOP_STACK_SIZE=3584
-D ARDUINO_LOOP_STACK_SIZE=6000
-D MQTT_MIN_FREE_MEMORY=12192
-D CONFIG_ASYNC_TCP_USE_WDT=0
-D CONFIG_BT_NIMBLE_MSYS1_BLOCK_COUNT=20
Expand All @@ -44,12 +44,12 @@ framework = arduino
lib_deps =
AsyncTCP = https://github.com/pbolduc/AsyncTCP.git@^1.2.0
https://github.com/ESPresense/ESPAsyncWebServer.git
https://github.com/ESPresense/AsyncWiFiSettings.git@^1.0.7
https://github.com/ESPresense/AsyncWiFiSettings.git@^1.0.8
https://github.com/ESPresense/SoftFilters.git
https://github.com/ESPresense/NimBLE-Arduino.git
marvinroger/AsyncMqttClient@^0.9.0
bblanchon/ArduinoJson@^6.21.0
kitesurfer1404/WS2812FX@^1.4.1
bblanchon/ArduinoJson@^6.21.3
kitesurfer1404/WS2812FX@^1.4.2
board_build.partitions = partitions_singleapp.csv
monitor_speed = 115200
monitor_filters = esp32_exception_decoder, time
Expand Down Expand Up @@ -107,14 +107,14 @@ build_flags =

[sensors]
lib_deps =
adafruit/Adafruit Unified Sensor@^1.1.4
adafruit/Adafruit AHTX0@^2.0.3
adafruit/Adafruit Unified Sensor@^1.1.13
adafruit/Adafruit AHTX0@^2.0.5
adafruit/Adafruit BME280 Library@^2.2.2
adafruit/Adafruit BMP085 Library@^1.2.1
adafruit/Adafruit BMP280 Library@^2.6.3
adafruit/Adafruit BMP280 Library@^2.6.8
adafruit/Adafruit TSL2561@^1.1.0
starmbi/hp_BH1750@^1.0.0
beegee-tokyo/DHT sensor library for ESPx@^1.18
beegee-tokyo/DHT sensor library for ESPx@^1.19
sparkfun/SparkFun SGP30 Arduino Library@^1.0.5
sensirion/arduino-sht@^1.2.2
paulstoffregen/OneWire@^2.3.7
Expand Down
3 changes: 0 additions & 3 deletions src/GUI.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -72,18 +72,15 @@ void Left(BleFingerprint *f) {
}
void Motion(bool pir, bool radar) {
Serial.printf("%u Motion | Pir: %s Radar: %s\r\n", xPortGetCoreID(), pir ? "yes" : "no", radar ? "yes" : "no");
Display::Status("Pir:%s Radar:%s\r\n", pir ? "yes" : "no", radar ? "yes" : "no");
LEDs::Motion(pir, radar);
}

void Switch(bool switch_1, bool switch_2) {
Serial.printf("%u Switch | Switch One: %s Switch Two: %s\r\n", xPortGetCoreID(), switch_1 ? "yes" : "no", switch_2 ? "yes" : "no");
Display::Status("Switch One:%s Switch Two:%s\r\n", switch_1 ? "yes" : "no", switch_2 ? "yes" : "no");
}

void Button(bool button_1, bool button_2) {
Serial.printf("%u Button | Button One: %s Button Two: %s\r\n", xPortGetCoreID(), button_1 ? "yes" : "no", button_2 ? "yes" : "no");
Display::Status("Button One:%s Button Two:%s\r\n", button_1 ? "yes" : "no", button_2 ? "yes" : "no");
}

void Seen(bool inprogress) {
Expand Down

0 comments on commit c7b43b4

Please sign in to comment.