Fork of the espurna firmware for `mhsw` switches
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

133 lines
3.5 KiB

  1. #
  2. # PLEASE NOTE:
  3. # This platformio.ini file is not standard and uses a custom feature.
  4. # The "include" option is not supported by the official version.
  5. # Check my PR for this feature here:
  6. # https://github.com/platformio/platformio/pull/790
  7. #
  8. [platformio]
  9. env_default = node-debug
  10. src_dir = espurna
  11. [common]
  12. platform = espressif8266_stage
  13. framework = arduino
  14. extra_script = pio_hooks.py
  15. #lib_ignore = FauxmoESP, ESPAsyncUDP
  16. lib_deps =
  17. DHT sensor library
  18. Adafruit Unified Sensor
  19. Time
  20. ArduinoJson
  21. ESPAsyncTCP
  22. ESPAsyncWebServer
  23. https://github.com/marvinroger/async-mqtt-client
  24. ESPAsyncUDP
  25. Embedis
  26. NtpClientLib
  27. https://bitbucket.org/xoseperez/justwifi.git
  28. https://bitbucket.org/xoseperez/nofuss.git
  29. https://bitbucket.org/xoseperez/hlw8012.git
  30. https://bitbucket.org/xoseperez/emonliteesp.git
  31. https://bitbucket.org/xoseperez/fauxmoESP.git
  32. https://github.com/jccprj/RemoteSwitch-arduino-library
  33. [ota]
  34. upload_speed = 115200
  35. upload_port = "192.168.4.1"
  36. upload_flags = --auth=fibonacci --port 8266
  37. [def]
  38. build_flags_debug = -g -Wl,-Tesp8266.flash.1m128.ld -DDEBUG_PORT=Serial -DENABLE_FAUXMO=1
  39. build_flags_ota = -Wl,-Tesp8266.flash.1m128.ld -DENABLE_FAUXMO=1
  40. # ------------------------------------------------------------------------------
  41. [env:node-debug]
  42. include = common
  43. board = nodemcuv2
  44. platform = espressif8266
  45. build_flags = -g -DNODEMCUV2 -DDEBUG_PORT=Serial
  46. [env:node-debug-ota]
  47. include = env:node-debug,ota
  48. [env:sonoff-debug]
  49. include = common
  50. board = esp01_1m
  51. build_flags = ${def.build_flags_debug} -DSONOFF
  52. [env:sonoff-ota]
  53. include = env:sonoff-debug,ota
  54. build_flags = ${def.build_flags_ota} -DSONOFF
  55. [env:sonoff-dht22-debug]
  56. include = env:sonoff-debug
  57. build_flags = ${def.build_flags_debug} -DSONOFF -DENABLE_DHT=1
  58. [env:sonoff-ds18b20-debug]
  59. include = env:sonoff-debug
  60. build_flags = ${def.build_flags_debug} -DSONOFF -DENABLE_DS18B20=1
  61. [env:sonoff-pow-debug]
  62. include = common
  63. board = esp01_1m
  64. build_flags = ${def.build_flags_debug} -DSONOFF_POW
  65. [env:sonoff-pow-ota]
  66. include = env:sonoff-pow-debug,ota
  67. build_flags = ${def.build_flags_ota} -DSONOFF_POW
  68. [env:sonoff-dual-debug]
  69. include = common
  70. board = esp12e
  71. build_flags = ${def.build_flags_debug} -DSONOFF_DUAL
  72. [env:sonoff-dual-ota]
  73. include = env:sonoff-dual-debug,ota
  74. build_flags = ${def.build_flags_ota} -DSONOFF_DUAL
  75. [env:slampher-debug]
  76. include = common
  77. board = esp01_1m
  78. build_flags = ${def.build_flags_debug} -DSLAMPHER
  79. [env:slampher-ota]
  80. include = env:slampher-debug,ota
  81. build_flags = ${def.build_flags_ota} -DSLAMPHER
  82. [env:s20-debug]
  83. include = common
  84. board = esp01_1m
  85. build_flags = ${def.build_flags_debug} -DS20
  86. [env:s20-ota]
  87. include = env:s20-debug,ota
  88. build_flags = ${def.build_flags_ota} -DS20
  89. [env:electrodragon-debug]
  90. include = common
  91. board = esp12e
  92. build_flags = -g -DDEBUG_PORT=Serial -DESP_RELAY_BOARD -DENABLE_FAUXMO=1 -DENABLE_DHT=1
  93. [env:electrodragon-ota]
  94. include = env:electrodragon-debug,ota
  95. build_flags = -DESP_RELAY_BOARD -DENABLE_FAUXMO=1 -DENABLE_DHT=1
  96. # ------------------------------------------------------------------------------
  97. [env:studio-lamp-device]
  98. topic = /home/studio/lamp/ip
  99. include = env:sonoff-debug-ota
  100. platform = espressif8266_stage
  101. build_flags = -g -Wl,-Tesp8266.flash.1m128.ld -DDEBUG_PORT=Serial -DSONOFF -DENABLE_FAUXMO=1
  102. lib_ignore =
  103. [env:living-lamp-device]
  104. topic = /home/living/lamp/ip
  105. include = env:s20-debug-ota
  106. platform = espressif8266_stage
  107. build_flags = -g -Wl,-Tesp8266.flash.1m128.ld -DDEBUG_PORT=Serial -DS20 -DENABLE_FAUXMO=1
  108. lib_ignore =