Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
language: python
python:
- "2.7"
- "3.7"

# Cache PlatformIO packages using Travis CI container-based infrastructure
sudo: false
cache:
directories:
- "~/.platformio"
install:
- pip install -U platformio
- pip3 install -U platformio
- platformio update
- platformio lib install

Expand Down
2 changes: 1 addition & 1 deletion platformio.ini
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ board = lolin32
framework = arduino
monitor_speed = 115200
upload_speed = 921600
lib_deps = Adafruit BME280 Library, Adafruit BME680 Library, Adafruit Unified Sensor, https://github.com/romkey/multiball-libraries, https://github.com/romkey/multiball-sensors, ArduinoJson, ESP Async WebServer, fastled/FastLED, https://github.com/romkey/async-mqtt-client
lib_deps = Adafruit BME280 Library, Adafruit BME680 Library, adafruit/Adafruit Unified Sensor, https://github.com/romkey/multiball-libraries, https://github.com/romkey/multiball-sensors, ArduinoJson, ESP Async WebServer, fastled/FastLED, https://github.com/romkey/async-mqtt-client
build_flags = -UFASTLED_ESP32_I2S
board_build.partitions = large_app.csv

Expand Down
2 changes: 1 addition & 1 deletion src/config.h-example
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
#define LED_CLOCK_PIN 32

// set this to the name of your LED controller. this will be something like WS2812B or APA102 or
/ this is not a C string and should not be in quotes.
// this is not a C string and should not be in quotes.
// refer to https://github.com/FastLED/FastLED/wiki/Overview#chipsets
#define LED_TYPE WS2812B

Expand Down