Skip to content

Instantly share code, notes, and snippets.

@alvarowolfx
Created November 22, 2018 19:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save alvarowolfx/39363863401f67db362b7d0b339f0afb to your computer and use it in GitHub Desktop.
Save alvarowolfx/39363863401f67db362b7d0b339f0afb to your computer and use it in GitHub Desktop.
Google Cloud OTA Update Post - Config file
[common]
build_flags = '-DVERSION="1.2.0"'
extra_scripts = pre:extra_script.py
monitor_speed = 115200
lib_deps_external =
tzapu/WiFiManager#development
[env:esp8266]
platform = espressif8266
board = nodemcuv2
framework = arduino
monitor_speed = ${common.monitor_speed}
build_flags = ${common.build_flags} -D NO_EXTRA_4K_HEAP
extra_scripts= ${common.extra_scripts}
lib_deps=
${common.lib_deps_external}
[env:esp32]
platform = espressif32@1.5.0
board = lolin32
framework = arduino
monitor_speed = ${common.monitor_speed}
build_flags = ${common.build_flags}
extra_scripts= ${common.extra_scripts}
lib_deps=
${common.lib_deps_external}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment