|
|
@ -4,12 +4,46 @@ src_dir = espurna |
|
|
|
data_dir = espurna/data |
|
|
|
|
|
|
|
[common] |
|
|
|
; platform = espressif8266@1.6.0 |
|
|
|
platform = espressif8266@1.5.0 |
|
|
|
build_flags = -g -DMQTT_MAX_PACKET_SIZE=400 ${env.ESPURNA_FLAGS} |
|
|
|
# ------------------------------------------------------------------------------ |
|
|
|
# PLATFORM: |
|
|
|
# !! DO NOT confuse platformio's Esp8266 development platform with Arduino core for ESP8266 |
|
|
|
# |
|
|
|
# we use platformIO 1.5.0 as default |
|
|
|
# platform 1.6.0 = arduino core 2.4.0 is required for newer features/boards |
|
|
|
# ------------------------------------------------------------------------------ |
|
|
|
platform_150 = espressif8266@1.5.0 |
|
|
|
platform_160 = espressif8266@1.6.0 |
|
|
|
platform = ${common.platform_150} |
|
|
|
|
|
|
|
# ------------------------------------------------------------------------------ |
|
|
|
# FLAGS: DEBUG |
|
|
|
# |
|
|
|
# ------------------------------------------------------------------------------ |
|
|
|
debug_flags = -DDEBUG_ESP_CORE -DDEBUG_ESP_SSL -DDEBUG_ESP_WIFI -DDEBUG_ESP_HTTP_CLIENT -DDEBUG_ESP_HTTP_UPDATE -DDEBUG_ESP_HTTP_SERVER -DDEBUG_ESP_UPDATER -DDEBUG_ESP_OTA -DDEBUG_TLS_MEM |
|
|
|
|
|
|
|
# ------------------------------------------------------------------------------ |
|
|
|
# FLAGS: build flags |
|
|
|
# build flags for 512k/1m ESP's are different because we use Linker Scripts to adjust flash split |
|
|
|
# 512 KB = 487 KB sketch, 20 KB eeprom |
|
|
|
# 1 MB = 999 KB sketch, 20 KB eeprom |
|
|
|
# ------------------------------------------------------------------------------ |
|
|
|
build_flags = -g -DMQTT_MAX_PACKET_SIZE=400 ${env.ESPURNA_FLAGS} |
|
|
|
build_flags_512k = ${common.build_flags} -Wl,-Tesp8266.flash.512k0.ld |
|
|
|
build_flags_1m = ${common.build_flags} -Wl,-Tesp8266.flash.1m0.ld |
|
|
|
|
|
|
|
# ------------------------------------------------------------------------------ |
|
|
|
# GLOBALS: |
|
|
|
# ------------------------------------------------------------------------------ |
|
|
|
# IP address when using OTA |
|
|
|
upload_port = "192.168.4.1" |
|
|
|
upload_flags = --auth=fibonacci --port 8266 |
|
|
|
#upload_port = "${env.ESPURNA_IP}" |
|
|
|
#upload_flags = --auth=${env.ESPURNA_AUTH} --port 8266 |
|
|
|
|
|
|
|
# ------------------------------------------------------------------------------ |
|
|
|
# LIBRARIES: required dependencies |
|
|
|
# Please note that we don't always use the latest version of a library. |
|
|
|
# ------------------------------------------------------------------------------ |
|
|
|
lib_deps = |
|
|
|
ArduinoJson |
|
|
|
https://github.com/marvinroger/async-mqtt-client#v0.8.1 |
|
|
@ -92,8 +126,8 @@ lib_deps = ${common.lib_deps} |
|
|
|
lib_ignore = ${common.lib_ignore} |
|
|
|
build_flags = ${common.build_flags} -DWEMOS_D1_MINI_RELAYSHIELD -DDEBUG_FAUXMO=Serial -DNOWSAUTH |
|
|
|
upload_speed = 115200 |
|
|
|
upload_port = "192.168.4.1" |
|
|
|
upload_flags = --auth=fibonacci --port 8266 |
|
|
|
upload_port = ${common.upload_port} |
|
|
|
upload_flags = ${common.upload_flags} |
|
|
|
extra_scripts = ${common.extra_scripts} |
|
|
|
|
|
|
|
[env:nodemcu-lolin] |
|
|
@ -126,8 +160,8 @@ lib_deps = ${common.lib_deps} |
|
|
|
lib_ignore = ${common.lib_ignore} |
|
|
|
build_flags = ${common.build_flags} -DNODEMCU_LOLIN -DDEBUG_FAUXMO=Serial -DNOWSAUTH |
|
|
|
upload_speed = 115200 |
|
|
|
upload_port = "192.168.4.1" |
|
|
|
upload_flags = --auth=fibonacci --port 8266 |
|
|
|
upload_port = ${common.upload_port} |
|
|
|
upload_flags = ${common.upload_flags} |
|
|
|
monitor_baud = 115200 |
|
|
|
extra_scripts = ${common.extra_scripts} |
|
|
|
|
|
|
@ -151,8 +185,8 @@ lib_deps = ${common.lib_deps} |
|
|
|
lib_ignore = ${common.lib_ignore} |
|
|
|
build_flags = ${common.build_flags} -DTINKERMAN_ESPURNA_H06 |
|
|
|
upload_speed = 115200 |
|
|
|
upload_port = "192.168.4.1" |
|
|
|
upload_flags = --auth=fibonacci --port 8266 |
|
|
|
upload_port = ${common.upload_port} |
|
|
|
upload_flags = ${common.upload_flags} |
|
|
|
monitor_baud = 115200 |
|
|
|
extra_scripts = ${common.extra_scripts} |
|
|
|
|
|
|
@ -174,8 +208,8 @@ lib_deps = ${common.lib_deps} |
|
|
|
lib_ignore = ${common.lib_ignore} |
|
|
|
build_flags = ${common.build_flags} -DTINKERMAN_ESPURNA_H08 |
|
|
|
upload_speed = 115200 |
|
|
|
upload_port = "192.168.4.1" |
|
|
|
upload_flags = --auth=fibonacci --port 8266 |
|
|
|
upload_port = ${common.upload_port} |
|
|
|
upload_flags = ${common.upload_flags} |
|
|
|
monitor_baud = 115200 |
|
|
|
extra_scripts = ${common.extra_scripts} |
|
|
|
|
|
|
@ -221,8 +255,8 @@ lib_deps = ${common.lib_deps} |
|
|
|
lib_ignore = ${common.lib_ignore} |
|
|
|
build_flags = ${common.build_flags_1m} -DITEAD_SONOFF_BASIC |
|
|
|
upload_speed = 115200 |
|
|
|
upload_port = "192.168.4.1" |
|
|
|
upload_flags = --auth=fibonacci --port 8266 |
|
|
|
upload_port = ${common.upload_port} |
|
|
|
upload_flags = ${common.upload_flags} |
|
|
|
monitor_baud = 115200 |
|
|
|
extra_scripts = ${common.extra_scripts} |
|
|
|
|
|
|
@ -246,8 +280,8 @@ lib_deps = ${common.lib_deps} |
|
|
|
lib_ignore = ${common.lib_ignore} |
|
|
|
build_flags = ${common.build_flags_1m} -DITEAD_SONOFF_BASIC -DDHT_SUPPORT=1 |
|
|
|
upload_speed = 115200 |
|
|
|
upload_port = "192.168.4.1" |
|
|
|
upload_flags = --auth=fibonacci --port 8266 |
|
|
|
upload_port = ${common.upload_port} |
|
|
|
upload_flags = ${common.upload_flags} |
|
|
|
monitor_baud = 115200 |
|
|
|
extra_scripts = ${common.extra_scripts} |
|
|
|
|
|
|
@ -282,8 +316,8 @@ lib_deps = ${common.lib_deps} |
|
|
|
lib_ignore = ${common.lib_ignore} |
|
|
|
build_flags = ${common.build_flags_1m} -DITEAD_SONOFF_RF |
|
|
|
upload_speed = 115200 |
|
|
|
upload_port = "192.168.4.1" |
|
|
|
upload_flags = --auth=fibonacci --port 8266 |
|
|
|
upload_port = ${common.upload_port} |
|
|
|
upload_flags = ${common.upload_flags} |
|
|
|
monitor_baud = 115200 |
|
|
|
extra_scripts = ${common.extra_scripts} |
|
|
|
|
|
|
@ -307,8 +341,8 @@ lib_deps = ${common.lib_deps} |
|
|
|
lib_ignore = ${common.lib_ignore} |
|
|
|
build_flags = ${common.build_flags_1m} -DITEAD_SONOFF_TH |
|
|
|
upload_speed = 115200 |
|
|
|
upload_port = "192.168.4.1" |
|
|
|
upload_flags = --auth=fibonacci --port 8266 |
|
|
|
upload_port = ${common.upload_port} |
|
|
|
upload_flags = ${common.upload_flags} |
|
|
|
monitor_baud = 115200 |
|
|
|
extra_scripts = ${common.extra_scripts} |
|
|
|
|
|
|
@ -332,8 +366,8 @@ lib_deps = ${common.lib_deps} |
|
|
|
lib_ignore = ${common.lib_ignore} |
|
|
|
build_flags = ${common.build_flags_1m} -DITEAD_SONOFF_POW |
|
|
|
upload_speed = 115200 |
|
|
|
upload_port = "192.168.4.1" |
|
|
|
upload_flags = --auth=fibonacci --port 8266 |
|
|
|
upload_port = ${common.upload_port} |
|
|
|
upload_flags = ${common.upload_flags} |
|
|
|
monitor_baud = 115200 |
|
|
|
extra_scripts = ${common.extra_scripts} |
|
|
|
|
|
|
@ -356,8 +390,8 @@ lib_deps = ${common.lib_deps} |
|
|
|
lib_ignore = ${common.lib_ignore} |
|
|
|
build_flags = ${common.build_flags_1m} -DITEAD_SONOFF_DUAL |
|
|
|
upload_speed = 115200 |
|
|
|
upload_port = "192.168.4.1" |
|
|
|
upload_flags = --auth=fibonacci --port 8266 |
|
|
|
upload_port = ${common.upload_port} |
|
|
|
upload_flags = ${common.upload_flags} |
|
|
|
extra_scripts = ${common.extra_scripts} |
|
|
|
|
|
|
|
[env:itead-sonoff-dual-r2] |
|
|
@ -379,8 +413,8 @@ lib_deps = ${common.lib_deps} |
|
|
|
lib_ignore = ${common.lib_ignore} |
|
|
|
build_flags = ${common.build_flags_1m} -DITEAD_SONOFF_DUAL_R2 |
|
|
|
upload_speed = 115200 |
|
|
|
upload_port = "192.168.4.1" |
|
|
|
upload_flags = --auth=fibonacci --port 8266 |
|
|
|
upload_port = ${common.upload_port} |
|
|
|
upload_flags = ${common.upload_flags} |
|
|
|
extra_scripts = ${common.extra_scripts} |
|
|
|
|
|
|
|
[env:itead-sonoff-4ch] |
|
|
@ -403,8 +437,8 @@ lib_deps = ${common.lib_deps} |
|
|
|
lib_ignore = ${common.lib_ignore} |
|
|
|
build_flags = ${common.build_flags_1m} -DITEAD_SONOFF_4CH |
|
|
|
upload_speed = 115200 |
|
|
|
upload_port = "192.168.4.1" |
|
|
|
upload_flags = --auth=fibonacci --port 8266 |
|
|
|
upload_port = ${common.upload_port} |
|
|
|
upload_flags = ${common.upload_flags} |
|
|
|
monitor_baud = 115200 |
|
|
|
extra_scripts = ${common.extra_scripts} |
|
|
|
|
|
|
@ -428,8 +462,8 @@ lib_deps = ${common.lib_deps} |
|
|
|
lib_ignore = ${common.lib_ignore} |
|
|
|
build_flags = ${common.build_flags_1m} -DITEAD_SONOFF_4CH_PRO |
|
|
|
upload_speed = 115200 |
|
|
|
upload_port = "192.168.4.1" |
|
|
|
upload_flags = --auth=fibonacci --port 8266 |
|
|
|
upload_port = ${common.upload_port} |
|
|
|
upload_flags = ${common.upload_flags} |
|
|
|
monitor_baud = 115200 |
|
|
|
extra_scripts = ${common.extra_scripts} |
|
|
|
|
|
|
@ -453,8 +487,8 @@ lib_deps = ${common.lib_deps} |
|
|
|
lib_ignore = ${common.lib_ignore} |
|
|
|
build_flags = ${common.build_flags_1m} -DITEAD_SONOFF_TOUCH |
|
|
|
upload_speed = 115200 |
|
|
|
upload_port = "192.168.4.1" |
|
|
|
upload_flags = --auth=fibonacci --port 8266 |
|
|
|
upload_port = ${common.upload_port} |
|
|
|
upload_flags = ${common.upload_flags} |
|
|
|
monitor_baud = 115200 |
|
|
|
extra_scripts = ${common.extra_scripts} |
|
|
|
|
|
|
@ -478,8 +512,8 @@ lib_deps = ${common.lib_deps} |
|
|
|
lib_ignore = ${common.lib_ignore} |
|
|
|
build_flags = ${common.build_flags_1m} -DITEAD_SONOFF_B1 |
|
|
|
upload_speed = 115200 |
|
|
|
upload_port = "192.168.4.1" |
|
|
|
upload_flags = --auth=fibonacci --port 8266 |
|
|
|
upload_port = ${common.upload_port} |
|
|
|
upload_flags = ${common.upload_flags} |
|
|
|
monitor_baud = 115200 |
|
|
|
extra_scripts = ${common.extra_scripts} |
|
|
|
|
|
|
@ -503,8 +537,8 @@ lib_deps = ${common.lib_deps} |
|
|
|
lib_ignore = ${common.lib_ignore} |
|
|
|
build_flags = ${common.build_flags_1m} -DITEAD_SONOFF_T1_1CH |
|
|
|
upload_speed = 115200 |
|
|
|
upload_port = "192.168.4.1" |
|
|
|
upload_flags = --auth=fibonacci --port 8266 |
|
|
|
upload_port = ${common.upload_port} |
|
|
|
upload_flags = ${common.upload_flags} |
|
|
|
monitor_baud = 115200 |
|
|
|
extra_scripts = ${common.extra_scripts} |
|
|
|
|
|
|
@ -528,8 +562,8 @@ lib_deps = ${common.lib_deps} |
|
|
|
lib_ignore = ${common.lib_ignore} |
|
|
|
build_flags = ${common.build_flags_1m} -DITEAD_SONOFF_T1_2CH |
|
|
|
upload_speed = 115200 |
|
|
|
upload_port = "192.168.4.1" |
|
|
|
upload_flags = --auth=fibonacci --port 8266 |
|
|
|
upload_port = ${common.upload_port} |
|
|
|
upload_flags = ${common.upload_flags} |
|
|
|
monitor_baud = 115200 |
|
|
|
extra_scripts = ${common.extra_scripts} |
|
|
|
|
|
|
@ -553,8 +587,8 @@ lib_deps = ${common.lib_deps} |
|
|
|
lib_ignore = ${common.lib_ignore} |
|
|
|
build_flags = ${common.build_flags_1m} -DITEAD_SONOFF_T1_3CH |
|
|
|
upload_speed = 115200 |
|
|
|
upload_port = "192.168.4.1" |
|
|
|
upload_flags = --auth=fibonacci --port 8266 |
|
|
|
upload_port = ${common.upload_port} |
|
|
|
upload_flags = ${common.upload_flags} |
|
|
|
monitor_baud = 115200 |
|
|
|
extra_scripts = ${common.extra_scripts} |
|
|
|
|
|
|
@ -578,8 +612,8 @@ lib_deps = ${common.lib_deps} |
|
|
|
lib_ignore = ${common.lib_ignore} |
|
|
|
build_flags = ${common.build_flags_1m} -DITEAD_SONOFF_LED |
|
|
|
upload_speed = 115200 |
|
|
|
upload_port = "192.168.4.1" |
|
|
|
upload_flags = --auth=fibonacci --port 8266 |
|
|
|
upload_port = ${common.upload_port} |
|
|
|
upload_flags = ${common.upload_flags} |
|
|
|
monitor_baud = 115200 |
|
|
|
extra_scripts = ${common.extra_scripts} |
|
|
|
|
|
|
@ -603,8 +637,8 @@ lib_deps = ${common.lib_deps} |
|
|
|
lib_ignore = ${common.lib_ignore} |
|
|
|
build_flags = ${common.build_flags_1m} -DITEAD_SONOFF_RFBRIDGE |
|
|
|
upload_speed = 115200 |
|
|
|
upload_port = "192.168.4.1" |
|
|
|
upload_flags = --auth=fibonacci --port 8266 |
|
|
|
upload_port = ${common.upload_port} |
|
|
|
upload_flags = ${common.upload_flags} |
|
|
|
monitor_baud = 19200 |
|
|
|
extra_scripts = ${common.extra_scripts} |
|
|
|
|
|
|
@ -630,8 +664,8 @@ lib_deps = ${common.lib_deps} |
|
|
|
lib_ignore = ${common.lib_ignore} |
|
|
|
build_flags = ${common.build_flags_1m} -DITEAD_SLAMPHER |
|
|
|
upload_speed = 115200 |
|
|
|
upload_port = "192.168.4.1" |
|
|
|
upload_flags = --auth=fibonacci --port 8266 |
|
|
|
upload_port = ${common.upload_port} |
|
|
|
upload_flags = ${common.upload_flags} |
|
|
|
monitor_baud = 115200 |
|
|
|
extra_scripts = ${common.extra_scripts} |
|
|
|
|
|
|
@ -655,8 +689,8 @@ lib_deps = ${common.lib_deps} |
|
|
|
lib_ignore = ${common.lib_ignore} |
|
|
|
build_flags = ${common.build_flags_1m} -DITEAD_S20 |
|
|
|
upload_speed = 115200 |
|
|
|
upload_port = "192.168.4.1" |
|
|
|
upload_flags = --auth=fibonacci --port 8266 |
|
|
|
upload_port = ${common.upload_port} |
|
|
|
upload_flags = ${common.upload_flags} |
|
|
|
monitor_baud = 115200 |
|
|
|
extra_scripts = ${common.extra_scripts} |
|
|
|
|
|
|
@ -680,8 +714,8 @@ lib_deps = ${common.lib_deps} |
|
|
|
lib_ignore = ${common.lib_ignore} |
|
|
|
build_flags = ${common.build_flags_1m} -DITEAD_1CH_INCHING |
|
|
|
upload_speed = 115200 |
|
|
|
upload_port = "192.168.4.1" |
|
|
|
upload_flags = --auth=fibonacci --port 8266 |
|
|
|
upload_port = ${common.upload_port} |
|
|
|
upload_flags = ${common.upload_flags} |
|
|
|
monitor_baud = 115200 |
|
|
|
extra_scripts = ${common.extra_scripts} |
|
|
|
|
|
|
@ -705,8 +739,8 @@ lib_deps = ${common.lib_deps} |
|
|
|
lib_ignore = ${common.lib_ignore} |
|
|
|
build_flags = ${common.build_flags_1m} -DITEAD_MOTOR |
|
|
|
upload_speed = 115200 |
|
|
|
upload_port = "192.168.4.1" |
|
|
|
upload_flags = --auth=fibonacci --port 8266 |
|
|
|
upload_port = ${common.upload_port} |
|
|
|
upload_flags = ${common.upload_flags} |
|
|
|
monitor_baud = 115200 |
|
|
|
extra_scripts = ${common.extra_scripts} |
|
|
|
|
|
|
@ -729,8 +763,8 @@ board_flash_mode = dout |
|
|
|
lib_deps = ${common.lib_deps} |
|
|
|
lib_ignore = ${common.lib_ignore} |
|
|
|
build_flags = ${common.build_flags_1m} -DITEAD_SONOFF_SV |
|
|
|
upload_port = "192.168.4.1" |
|
|
|
upload_flags = --auth=fibonacci --port 8266 |
|
|
|
upload_port = ${common.upload_port} |
|
|
|
upload_flags = ${common.upload_flags} |
|
|
|
monitor_baud = 115200 |
|
|
|
extra_scripts = ${common.extra_scripts} |
|
|
|
|
|
|
@ -778,8 +812,8 @@ lib_deps = ${common.lib_deps} |
|
|
|
lib_ignore = ${common.lib_ignore} |
|
|
|
build_flags = ${common.build_flags} -DELECTRODRAGON_WIFI_IOT -DDHT_SUPPORT=1 |
|
|
|
upload_speed = 115200 |
|
|
|
upload_port = "192.168.4.1" |
|
|
|
upload_flags = --auth=fibonacci --port 8266 |
|
|
|
upload_port = ${common.upload_port} |
|
|
|
upload_flags = ${common.upload_flags} |
|
|
|
monitor_baud = 115200 |
|
|
|
extra_scripts = ${common.extra_scripts} |
|
|
|
|
|
|
@ -803,8 +837,8 @@ lib_deps = ${common.lib_deps} |
|
|
|
lib_ignore = ${common.lib_ignore} |
|
|
|
build_flags = ${common.build_flags_1m} -DWORKCHOICE_ECOPLUG |
|
|
|
upload_speed = 115200 |
|
|
|
upload_port = "192.168.4.1" |
|
|
|
upload_flags = --auth=fibonacci --port 8266 |
|
|
|
upload_port = ${common.upload_port} |
|
|
|
upload_flags = ${common.upload_flags} |
|
|
|
monitor_baud = 115200 |
|
|
|
extra_scripts = ${common.extra_scripts} |
|
|
|
|
|
|
@ -826,8 +860,8 @@ lib_deps = ${common.lib_deps} |
|
|
|
lib_ignore = ${common.lib_ignore} |
|
|
|
build_flags = ${common.build_flags} -DJANGOE_WIFI_RELAY_NC |
|
|
|
upload_speed = 115200 |
|
|
|
upload_port = "192.168.4.1" |
|
|
|
upload_flags = --auth=fibonacci --port 8266 |
|
|
|
upload_port = ${common.upload_port} |
|
|
|
upload_flags = ${common.upload_flags} |
|
|
|
monitor_baud = 115200 |
|
|
|
extra_scripts = ${common.extra_scripts} |
|
|
|
|
|
|
@ -849,8 +883,8 @@ lib_deps = ${common.lib_deps} |
|
|
|
lib_ignore = ${common.lib_ignore} |
|
|
|
build_flags = ${common.build_flags} -DJANGOE_WIFI_RELAY_NO |
|
|
|
upload_speed = 115200 |
|
|
|
upload_port = "192.168.4.1" |
|
|
|
upload_flags = --auth=fibonacci --port 8266 |
|
|
|
upload_port = ${common.upload_port} |
|
|
|
upload_flags = ${common.upload_flags} |
|
|
|
monitor_baud = 115200 |
|
|
|
extra_scripts = ${common.extra_scripts} |
|
|
|
|
|
|
@ -872,8 +906,8 @@ lib_deps = ${common.lib_deps} |
|
|
|
lib_ignore = ${common.lib_ignore} |
|
|
|
build_flags = ${common.build_flags} -DOPENENERGYMONITOR_MQTT_RELAY -DDALLAS_SUPPORT=1 |
|
|
|
upload_speed = 115200 |
|
|
|
upload_port = "192.168.4.1" |
|
|
|
upload_flags = --auth=fibonacci --port 8266 |
|
|
|
upload_port = ${common.upload_port} |
|
|
|
upload_flags = ${common.upload_flags} |
|
|
|
monitor_baud = 115200 |
|
|
|
extra_scripts = ${common.extra_scripts} |
|
|
|
|
|
|
@ -895,8 +929,8 @@ lib_deps = ${common.lib_deps} |
|
|
|
lib_ignore = ${common.lib_ignore} |
|
|
|
build_flags = ${common.build_flags_1m} -DJORGEGARCIA_WIFI_RELAYS |
|
|
|
upload_speed = 115200 |
|
|
|
upload_port = "192.168.4.1" |
|
|
|
upload_flags = --auth=fibonacci --port 8266 |
|
|
|
upload_port = ${common.upload_port} |
|
|
|
upload_flags = ${common.upload_flags} |
|
|
|
monitor_baud = 115200 |
|
|
|
extra_scripts = ${common.extra_scripts} |
|
|
|
|
|
|
@ -920,8 +954,8 @@ lib_deps = ${common.lib_deps} |
|
|
|
lib_ignore = ${common.lib_ignore} |
|
|
|
build_flags = ${common.build_flags_1m} -DAITHINKER_AI_LIGHT |
|
|
|
upload_speed = 115200 |
|
|
|
upload_port = "192.168.4.1" |
|
|
|
upload_flags = --auth=fibonacci --port 8266 |
|
|
|
upload_port = ${common.upload_port} |
|
|
|
upload_flags = ${common.upload_flags} |
|
|
|
monitor_baud = 115200 |
|
|
|
extra_scripts = ${common.extra_scripts} |
|
|
|
|
|
|
@ -945,8 +979,8 @@ lib_deps = ${common.lib_deps} |
|
|
|
lib_ignore = ${common.lib_ignore} |
|
|
|
build_flags = ${common.build_flags_1m} -DMAGICHOME_LED_CONTROLLER |
|
|
|
upload_speed = 115200 |
|
|
|
upload_port = "192.168.4.1" |
|
|
|
upload_flags = --auth=fibonacci --port 8266 |
|
|
|
upload_port = ${common.upload_port} |
|
|
|
upload_flags = ${common.upload_flags} |
|
|
|
monitor_baud = 115200 |
|
|
|
extra_scripts = ${common.extra_scripts} |
|
|
|
|
|
|
@ -969,8 +1003,8 @@ board_flash_mode = dout |
|
|
|
lib_deps = ${common.lib_deps} |
|
|
|
lib_ignore = ${common.lib_ignore} |
|
|
|
build_flags = ${common.build_flags_1m} -DMAGICHOME_LED_CONTROLLER_20 |
|
|
|
upload_port = "192.168.4.1" |
|
|
|
upload_flags = --auth=fibonacci --port 8266 |
|
|
|
upload_port = ${common.upload_port} |
|
|
|
upload_flags = ${common.upload_flags} |
|
|
|
monitor_baud = 115200 |
|
|
|
extra_scripts = ${common.extra_scripts} |
|
|
|
|
|
|
@ -994,8 +1028,8 @@ lib_deps = ${common.lib_deps} |
|
|
|
lib_ignore = ${common.lib_ignore} |
|
|
|
build_flags = -g -Wl,-Tesp8266.flash.1m0.ld -DHUACANXING_H801 |
|
|
|
upload_speed = 115200 |
|
|
|
upload_port = "192.168.4.1" |
|
|
|
upload_flags = --auth=fibonacci --port 8266 |
|
|
|
upload_port = ${common.upload_port} |
|
|
|
upload_flags = ${common.upload_flags} |
|
|
|
monitor_baud = 115200 |
|
|
|
extra_scripts = ${common.extra_scripts} |
|
|
|
|
|
|
@ -1019,8 +1053,8 @@ lib_deps = ${common.lib_deps} |
|
|
|
lib_ignore = ${common.lib_ignore} |
|
|
|
build_flags = -g -Wl,-Tesp8266.flash.1m0.ld -DHUACANXING_H802 |
|
|
|
upload_speed = 115200 |
|
|
|
upload_port = "192.168.4.1" |
|
|
|
upload_flags = --auth=fibonacci --port 8266 |
|
|
|
upload_port = ${common.upload_port} |
|
|
|
upload_flags = ${common.upload_flags} |
|
|
|
monitor_baud = 115200 |
|
|
|
extra_scripts = ${common.extra_scripts} |
|
|
|
|
|
|
@ -1044,8 +1078,8 @@ lib_deps = ${common.lib_deps} |
|
|
|
lib_ignore = ${common.lib_ignore} |
|
|
|
build_flags = -g -Wl,-Tesp8266.flash.1m0.ld -DARILUX_AL_LC01 |
|
|
|
upload_speed = 115200 |
|
|
|
upload_port = "192.168.4.1" |
|
|
|
upload_flags = --auth=fibonacci --port 8266 |
|
|
|
upload_port = ${common.upload_port} |
|
|
|
upload_flags = ${common.upload_flags} |
|
|
|
monitor_baud = 115200 |
|
|
|
extra_scripts = ${common.extra_scripts} |
|
|
|
|
|
|
@ -1069,8 +1103,8 @@ lib_deps = ${common.lib_deps} |
|
|
|
lib_ignore = ${common.lib_ignore} |
|
|
|
build_flags = -g -Wl,-Tesp8266.flash.1m0.ld -DARILUX_AL_LC02 |
|
|
|
upload_speed = 115200 |
|
|
|
upload_port = "192.168.4.1" |
|
|
|
upload_flags = --auth=fibonacci --port 8266 |
|
|
|
upload_port = ${common.upload_port} |
|
|
|
upload_flags = ${common.upload_flags} |
|
|
|
monitor_baud = 115200 |
|
|
|
extra_scripts = ${common.extra_scripts} |
|
|
|
|
|
|
@ -1094,8 +1128,8 @@ lib_deps = ${common.lib_deps} |
|
|
|
lib_ignore = ${common.lib_ignore} |
|
|
|
build_flags = -g -Wl,-Tesp8266.flash.1m0.ld -DARILUX_AL_LC06 |
|
|
|
upload_speed = 115200 |
|
|
|
upload_port = "192.168.4.1" |
|
|
|
upload_flags = --auth=fibonacci --port 8266 |
|
|
|
upload_port = ${common.upload_port} |
|
|
|
upload_flags = ${common.upload_flags} |
|
|
|
monitor_baud = 115200 |
|
|
|
extra_scripts = ${common.extra_scripts} |
|
|
|
|
|
|
@ -1119,8 +1153,8 @@ lib_deps = ${common.lib_deps} |
|
|
|
lib_ignore = ${common.lib_ignore} |
|
|
|
build_flags = -g -Wl,-Tesp8266.flash.1m0.ld -DARILUX_AL_LC11 |
|
|
|
upload_speed = 115200 |
|
|
|
upload_port = "192.168.4.1" |
|
|
|
upload_flags = --auth=fibonacci --port 8266 |
|
|
|
upload_port = ${common.upload_port} |
|
|
|
upload_flags = ${common.upload_flags} |
|
|
|
monitor_baud = 115200 |
|
|
|
extra_scripts = ${common.extra_scripts} |
|
|
|
|
|
|
@ -1144,8 +1178,8 @@ lib_deps = ${common.lib_deps} |
|
|
|
lib_ignore = ${common.lib_ignore} |
|
|
|
build_flags = -g -Wl,-Tesp8266.flash.1m0.ld -DARILUX_E27 |
|
|
|
upload_speed = 115200 |
|
|
|
upload_port = "192.168.4.1" |
|
|
|
upload_flags = --auth=fibonacci --port 8266 |
|
|
|
upload_port = ${common.upload_port} |
|
|
|
upload_flags = ${common.upload_flags} |
|
|
|
monitor_baud = 115200 |
|
|
|
extra_scripts = ${common.extra_scripts} |
|
|
|
|
|
|
@ -1169,8 +1203,8 @@ lib_deps = ${common.lib_deps} |
|
|
|
lib_ignore = ${common.lib_ignore} |
|
|
|
build_flags = ${common.build_flags_1m} -DITEAD_BNSZ01 |
|
|
|
upload_speed = 115200 |
|
|
|
upload_port = "192.168.4.1" |
|
|
|
upload_flags = --auth=fibonacci --port 8266 |
|
|
|
upload_port = ${common.upload_port} |
|
|
|
upload_flags = ${common.upload_flags} |
|
|
|
monitor_baud = 115200 |
|
|
|
extra_scripts = ${common.extra_scripts} |
|
|
|
|
|
|
@ -1194,8 +1228,8 @@ lib_deps = ${common.lib_deps} |
|
|
|
lib_ignore = ${common.lib_ignore} |
|
|
|
build_flags = ${common.build_flags_1m} -DWION_50055 |
|
|
|
upload_speed = 115200 |
|
|
|
upload_port = "192.168.4.1" |
|
|
|
upload_flags = --auth=fibonacci --port 8266 |
|
|
|
upload_port = ${common.upload_port} |
|
|
|
upload_flags = ${common.upload_flags} |
|
|
|
monitor_baud = 115200 |
|
|
|
extra_scripts = ${common.extra_scripts} |
|
|
|
|
|
|
@ -1219,8 +1253,8 @@ lib_deps = ${common.lib_deps} |
|
|
|
lib_ignore = ${common.lib_ignore} |
|
|
|
build_flags = ${common.build_flags_1m} -DEXS_WIFI_RELAY_V31 |
|
|
|
upload_speed = 115200 |
|
|
|
upload_port = "192.168.4.1" |
|
|
|
upload_flags = --auth=fibonacci --port 8266 |
|
|
|
upload_port = ${common.upload_port} |
|
|
|
upload_flags = ${common.upload_flags} |
|
|
|
monitor_baud = 115200 |
|
|
|
extra_scripts = ${common.extra_scripts} |
|
|
|
|
|
|
@ -1243,8 +1277,8 @@ lib_deps = ${common.lib_deps} |
|
|
|
lib_ignore = ${common.lib_ignore} |
|
|
|
build_flags = ${common.build_flags} -DGENERIC_V9261F |
|
|
|
upload_speed = 115200 |
|
|
|
upload_port = "192.168.4.1" |
|
|
|
upload_flags = --auth=fibonacci --port 8266 |
|
|
|
upload_port = ${common.upload_port} |
|
|
|
upload_flags = ${common.upload_flags} |
|
|
|
monitor_baud = 115200 |
|
|
|
extra_scripts = ${common.extra_scripts} |
|
|
|
|
|
|
@ -1268,8 +1302,8 @@ lib_deps = ${common.lib_deps} |
|
|
|
lib_ignore = ${common.lib_ignore} |
|
|
|
build_flags = ${common.build_flags_1m} -DGENERIC_V9261F |
|
|
|
upload_speed = 115200 |
|
|
|
upload_port = "192.168.4.1" |
|
|
|
upload_flags = --auth=fibonacci --port 8266 |
|
|
|
upload_port = ${common.upload_port} |
|
|
|
upload_flags = ${common.upload_flags} |
|
|
|
monitor_baud = 115200 |
|
|
|
extra_scripts = ${common.extra_scripts} |
|
|
|
|
|
|
@ -1292,8 +1326,8 @@ lib_deps = ${common.lib_deps} |
|
|
|
lib_ignore = ${common.lib_ignore} |
|
|
|
build_flags = ${common.build_flags} -DGENERIC_ECH1560 |
|
|
|
upload_speed = 115200 |
|
|
|
upload_port = "192.168.4.1" |
|
|
|
upload_flags = --auth=fibonacci --port 8266 |
|
|
|
upload_port = ${common.upload_port} |
|
|
|
upload_flags = ${common.upload_flags} |
|
|
|
monitor_baud = 115200 |
|
|
|
extra_scripts = ${common.extra_scripts} |
|
|
|
|
|
|
@ -1317,8 +1351,8 @@ lib_deps = ${common.lib_deps} |
|
|
|
lib_ignore = ${common.lib_ignore} |
|
|
|
build_flags = ${common.build_flags_1m} -DGENERIC_ECH1560 |
|
|
|
upload_speed = 115200 |
|
|
|
upload_port = "192.168.4.1" |
|
|
|
upload_flags = --auth=fibonacci --port 8266 |
|
|
|
upload_port = ${common.upload_port} |
|
|
|
upload_flags = ${common.upload_flags} |
|
|
|
monitor_baud = 115200 |
|
|
|
extra_scripts = ${common.extra_scripts} |
|
|
|
|
|
|
@ -1341,8 +1375,8 @@ lib_deps = ${common.lib_deps} |
|
|
|
lib_ignore = ${common.lib_ignore} |
|
|
|
build_flags = ${common.build_flags} -DMANCAVEMADE_ESPLIVE |
|
|
|
upload_speed = 460800 |
|
|
|
upload_port = "192.168.4.1" |
|
|
|
upload_flags = --auth=fibonacci --port 8266 |
|
|
|
upload_port = ${common.upload_port} |
|
|
|
upload_flags = ${common.upload_flags} |
|
|
|
monitor_baud = 115200 |
|
|
|
extra_scripts = ${common.extra_scripts} |
|
|
|
|
|
|
@ -1366,8 +1400,8 @@ lib_deps = ${common.lib_deps} |
|
|
|
lib_ignore = ${common.lib_ignore} |
|
|
|
build_flags = ${common.build_flags_1m} -DINTERMITTECH_QUINLED |
|
|
|
upload_speed = 115200 |
|
|
|
upload_port = "192.168.4.1" |
|
|
|
upload_flags = --auth=fibonacci --port 8266 |
|
|
|
upload_port = ${common.upload_port} |
|
|
|
upload_flags = ${common.upload_flags} |
|
|
|
monitor_baud = 115200 |
|
|
|
extra_scripts = ${common.extra_scripts} |
|
|
|
|
|
|
@ -1391,8 +1425,8 @@ lib_deps = ${common.lib_deps} |
|
|
|
lib_ignore = ${common.lib_ignore} |
|
|
|
build_flags = ${common.build_flags_1m} -DXENON_SM_PW702U |
|
|
|
upload_speed = 115200 |
|
|
|
upload_port = "192.168.4.1" |
|
|
|
upload_flags = --auth=fibonacci --port 8266 |
|
|
|
upload_port = ${common.upload_port} |
|
|
|
upload_flags = ${common.upload_flags} |
|
|
|
monitor_baud = 115200 |
|
|
|
extra_scripts = ${common.extra_scripts} |
|
|
|
|
|
|
@ -1416,8 +1450,8 @@ lib_deps = ${common.lib_deps} |
|
|
|
lib_ignore = ${common.lib_ignore} |
|
|
|
build_flags = ${common.build_flags_1m} -DAUTHOMETION_LYT8266 |
|
|
|
upload_speed = 115200 |
|
|
|
upload_port = "192.168.4.1" |
|
|
|
upload_flags = --auth=fibonacci --port 8266 |
|
|
|
upload_port = ${common.upload_port} |
|
|
|
upload_flags = ${common.upload_flags} |
|
|
|
monitor_baud = 115200 |
|
|
|
extra_scripts = ${common.extra_scripts} |
|
|
|
|
|
|
@ -1441,8 +1475,8 @@ lib_deps = ${common.lib_deps} |
|
|
|
lib_ignore = ${common.lib_ignore} |
|
|
|
build_flags = ${common.build_flags_1m} -DKMC_70011 |
|
|
|
upload_speed = 115200 |
|
|
|
upload_port = "192.168.4.1" |
|
|
|
upload_flags = --auth=fibonacci --port 8266 |
|
|
|
upload_port = ${common.upload_port} |
|
|
|
upload_flags = ${common.upload_flags} |
|
|
|
monitor_baud = 115200 |
|
|
|
extra_scripts = ${common.extra_scripts} |
|
|
|
|
|
|
@ -1466,8 +1500,8 @@ lib_deps = ${common.lib_deps} |
|
|
|
lib_ignore = ${common.lib_ignore} |
|
|
|
build_flags = ${common.build_flags_1m} -DYJZK_SWITCH_2CH |
|
|
|
upload_speed = 115200 |
|
|
|
upload_port = "192.168.4.1" |
|
|
|
upload_flags = --auth=fibonacci --port 8266 |
|
|
|
upload_port = ${common.upload_port} |
|
|
|
upload_flags = ${common.upload_flags} |
|
|
|
monitor_baud = 115200 |
|
|
|
extra_scripts = ${common.extra_scripts} |
|
|
|
|
|
|
@ -1598,8 +1632,8 @@ lib_deps = ${common.lib_deps} |
|
|
|
lib_ignore = ${common.lib_ignore} |
|
|
|
build_flags = ${common.build_flags_1m} -DSTM_RELAY |
|
|
|
upload_speed = 115200 |
|
|
|
upload_port = "192.168.4.1" |
|
|
|
upload_flags = --auth=fibonacci --port 8266 |
|
|
|
upload_port = ${common.upload_port} |
|
|
|
upload_flags = ${common.upload_flags} |
|
|
|
monitor_baud = 115200 |
|
|
|
extra_scripts = ${common.extra_scripts} |
|
|
|
|
|
|
@ -1771,6 +1805,78 @@ upload_port = "${env.ESPURNA_IP}" |
|
|
|
upload_flags = --auth=${env.ESPURNA_AUTH} --port 8266 |
|
|
|
extra_scripts = ${common.extra_scripts} |
|
|
|
|
|
|
|
[env:generic-esp01s-relay-40] |
|
|
|
platform = ${common.platform} |
|
|
|
framework = arduino |
|
|
|
board = esp01_1m |
|
|
|
board_flash_mode = dout |
|
|
|
lib_deps = ${common.lib_deps} |
|
|
|
lib_ignore = ${common.lib_ignore} |
|
|
|
build_flags = ${common.build_flags_1m} -DGENERIC_ESP01SRELAY40 |
|
|
|
monitor_baud = 115200 |
|
|
|
extra_scripts = ${common.extra_scripts} |
|
|
|
|
|
|
|
[env:generic-esp01s-relay-40-ota] |
|
|
|
platform = ${common.platform} |
|
|
|
framework = arduino |
|
|
|
board = esp01_1m |
|
|
|
board_flash_mode = dout |
|
|
|
lib_deps = ${common.lib_deps} |
|
|
|
lib_ignore = ${common.lib_ignore} |
|
|
|
build_flags = ${common.build_flags_1m} -DGENERIC_ESP01SRELAY40 |
|
|
|
upload_speed = 115200 |
|
|
|
upload_port = "${env.ESPURNA_IP}" |
|
|
|
upload_flags = --auth=${env.ESPURNA_AUTH} --port 8266 |
|
|
|
extra_scripts = ${common.extra_scripts} |
|
|
|
|
|
|
|
[env:generic-esp01s-rgbled-10] |
|
|
|
platform = ${common.platform} |
|
|
|
framework = arduino |
|
|
|
board = esp01_1m |
|
|
|
board_flash_mode = dout |
|
|
|
lib_deps = ${common.lib_deps} |
|
|
|
lib_ignore = ${common.lib_ignore} |
|
|
|
build_flags = ${common.build_flags_1m} -DGENERIC_ESP01SRGBLED10 |
|
|
|
monitor_baud = 115200 |
|
|
|
extra_scripts = ${common.extra_scripts} |
|
|
|
|
|
|
|
[env:generic-esp01s-rgbled-10-ota] |
|
|
|
platform = ${common.platform} |
|
|
|
framework = arduino |
|
|
|
board = esp01_1m |
|
|
|
board_flash_mode = dout |
|
|
|
lib_deps = ${common.lib_deps} |
|
|
|
lib_ignore = ${common.lib_ignore} |
|
|
|
build_flags = ${common.build_flags_1m} -DGENERIC_ESP01SRGBLED10 |
|
|
|
upload_speed = 115200 |
|
|
|
upload_port = "${env.ESPURNA_IP}" |
|
|
|
upload_flags = --auth=${env.ESPURNA_AUTH} --port 8266 |
|
|
|
extra_scripts = ${common.extra_scripts} |
|
|
|
|
|
|
|
[env:heltec-touch-relay] |
|
|
|
platform = ${common.platform} |
|
|
|
framework = arduino |
|
|
|
board = esp01_1m |
|
|
|
board_flash_mode = dout |
|
|
|
lib_deps = ${common.lib_deps} |
|
|
|
lib_ignore = ${common.lib_ignore} |
|
|
|
build_flags = ${common.build_flags_1m} -DHELTEC_TOUCHRELAY |
|
|
|
monitor_baud = 115200 |
|
|
|
extra_scripts = ${common.extra_scripts} |
|
|
|
|
|
|
|
[env:heltec-touch-relay-ota] |
|
|
|
platform = ${common.platform} |
|
|
|
framework = arduino |
|
|
|
board = esp01_1m |
|
|
|
board_flash_mode = dout |
|
|
|
lib_deps = ${common.lib_deps} |
|
|
|
lib_ignore = ${common.lib_ignore} |
|
|
|
build_flags = ${common.build_flags_1m} -DHELTEC_TOUCHRELAY |
|
|
|
upload_speed = 115200 |
|
|
|
upload_port = "${env.ESPURNA_IP}" |
|
|
|
upload_flags = --auth=${env.ESPURNA_AUTH} --port 8266 |
|
|
|
extra_scripts = ${common.extra_scripts} |
|
|
|
|
|
|
|
# ------------------------------------------------------------------------------ |
|
|
|
# GENERIC OTA ENVIRONMENTS |
|
|
|
# ------------------------------------------------------------------------------ |
|
|
|