2017-01-28 15:44:00 +00:00
|
|
|
; PlatformIO Project Configuration File
|
|
|
|
;
|
|
|
|
; Build options: build flags, source filter, extra scripting
|
|
|
|
; Upload options: custom port, speed and extra flags
|
|
|
|
; Library options: dependencies, extra library storages
|
|
|
|
;
|
|
|
|
; Please visit documentation for the other options and examples
|
|
|
|
; http://docs.platformio.org/en/stable/projectconf.html
|
|
|
|
|
|
|
|
[platformio]
|
|
|
|
src_dir = sonoff
|
|
|
|
|
2017-05-07 14:57:59 +01:00
|
|
|
; Sonoff et al (ESP8266 based)
|
2017-01-28 15:44:00 +00:00
|
|
|
[env:sonoff]
|
|
|
|
platform = espressif8266
|
|
|
|
framework = arduino
|
|
|
|
board = esp01_1m
|
2017-03-08 17:08:47 +00:00
|
|
|
board_flash_mode = qio
|
2017-05-07 14:57:59 +01:00
|
|
|
build_flags = -Wl,-Tesp8266.flash.1m0.ld -DMQTT_MAX_PACKET_SIZE=512
|
|
|
|
lib_deps = PubSubClient, NeoPixelBus, IRremoteESP8266, ArduinoJSON
|
2017-03-08 17:08:47 +00:00
|
|
|
|
2017-05-07 14:57:59 +01:00
|
|
|
; Sonoff Touch and Sonoff 4CH (ESP8285 based)
|
|
|
|
[env:sonoff-touch-4ch]
|
|
|
|
platform = espressif8266
|
|
|
|
framework = arduino
|
|
|
|
board = esp01_1m
|
|
|
|
board_flash_mode = dout
|
2017-04-25 17:16:40 +01:00
|
|
|
build_flags = -Wl,-Tesp8266.flash.1m0.ld -DMQTT_MAX_PACKET_SIZE=512
|
2017-05-07 14:57:59 +01:00
|
|
|
lib_deps = PubSubClient, NeoPixelBus, IRremoteESP8266, ArduinoJSON
|