-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Integrate circuits and control onto ESP32
- Loading branch information
Showing
17 changed files
with
1,466 additions
and
224 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 |
---|---|---|
@@ -1,15 +1,25 @@ | ||
; PlatformIO Project Configuration File | ||
; | ||
; Build options: build flags, source filter | ||
; Upload options: custom upload port, speed and extra flags | ||
; Library options: dependencies, extra library storages | ||
; Advanced options: extra scripting | ||
; | ||
; Please visit documentation for the other options and examples | ||
; https://docs.platformio.org/page/projectconf.html | ||
|
||
[env:esp-wrover-kit] | ||
platform = espressif32 | ||
board = esp-wrover-kit | ||
framework = arduino | ||
monitor_speed = 115200 | ||
; PlatformIO Project Configuration File | ||
; | ||
; Build options: build flags, source filter | ||
; Upload options: custom upload port, speed and extra flags | ||
; Library options: dependencies, extra library storages | ||
; Advanced options: extra scripting | ||
; | ||
; Please visit documentation for the other options and examples | ||
; https://docs.platformio.org/page/projectconf.html | ||
|
||
[env:esp-wrover-kit] | ||
platform = espressif32 | ||
board = esp-wrover-kit | ||
framework = arduino | ||
monitor_speed = 115200 | ||
lib_deps = | ||
knolleary/PubSubClient | ||
bblanchon/ArduinoJson | ||
khoih-prog/TimerInterrupt_Generic@^1.13.0 | ||
adafruit/Adafruit MPU6050 | ||
arduino-libraries/NTPClient @ ^3.2.1 | ||
adafruit/Adafruit Unified Sensor | ||
adafruit/Adafruit BusIO | ||
Wire | ||
SPI |
Oops, something went wrong.