platformio.ini 765 Bytes
Newer Older
1
2
; PlatformIO Project Configuration File
;
3
4
;   Build options: build flags, source filter
;   Upload options: custom upload port, speed and extra flags
5
;   Library options: dependencies, extra library storages
6
;   Advanced options: extra scripting
7
8
;
; Please visit documentation for the other options and examples
9
; https://docs.platformio.org/page/projectconf.html
10
11

[platformio]
12
src_dir = ampel-firmware
13
14
15
16
17
18

[env:esp8266]
platform = espressif8266
board = esp12e
framework = arduino
monitor_speed = 115200
19
20
21
lib_deps =
    EEPROM
    DNSServer
Eric Duminil's avatar
Eric Duminil committed
22
    prampec/IotWebConf@^3.2.0
23
24
25
26
27
28

[env:esp32]
platform = espressif32
board = ttgo-lora32-v1
framework = arduino
monitor_speed = 115200
29
30
lib_deps =
    MCCI LoRaWAN LMIC library
31
32
    EEPROM
    DNSServer
Eric Duminil's avatar
Eric Duminil committed
33
    prampec/IotWebConf@^3.2.0