forked from crankyoldgit/IRremoteESP8266
-
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.
Web-AC-control: Add platformio support files & Travis checks (crankyo…
…ldgit#886) * Add Web-AC-control.ino to Travis checks. * Web-AC-control: Add platformio support files * Add .platformio.ini file for example code * Add support for ESP32. * OTA update only available on ESP8266
- Loading branch information
1 parent
d6750b9
commit 19766b1
Showing
3 changed files
with
58 additions
and
6 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
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
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 |
---|---|---|
@@ -0,0 +1,37 @@ | ||
[platformio] | ||
src_dir = . | ||
|
||
[env] | ||
lib_extra_dirs = ../../ | ||
lib_ldf_mode = deep+ | ||
lib_ignore = examples | ||
build_flags = | ||
|
||
[common] | ||
lib_deps_builtin = | ||
lib_deps_external = | ||
ArduinoJson@>=6.0 | ||
|
||
[common_esp8266] | ||
lib_deps_external = | ||
${common.lib_deps_builtin} | ||
${common.lib_deps_external} | ||
WifiManager@>=0.14 | ||
|
||
[common_esp32] | ||
lib_deps_external = | ||
${common.lib_deps_builtin} | ||
${common.lib_deps_external} | ||
https://github.com/tzapu/WiFiManager.git#development | ||
|
||
[env:nodemcuv2] | ||
platform = espressif8266 | ||
framework = arduino | ||
board = nodemcuv2 | ||
lib_deps = ${common_esp8266.lib_deps_external} | ||
|
||
[env:esp32dev] | ||
platform = espressif32 | ||
framework = arduino | ||
board = esp32dev | ||
lib_deps = ${common_esp32.lib_deps_external} |