41 lines
977 B
INI
41 lines
977 B
INI
; PlatformIO Project Configuration File
|
|
;
|
|
; Build options: build flags, source filter
|
|
; Upload options: custom upload port, speed and extra flags
|
|
; Library options: dependencies, extra library storages
|
|
; Advanced options: extra scripting
|
|
;
|
|
; Please visit documentation for the other options and examples
|
|
; https://docs.platformio.org/page/projectconf.html
|
|
|
|
#Wohnzimmer
|
|
[env:sensoresp3]
|
|
platform = espressif8266
|
|
board = d1_mini
|
|
framework = arduino
|
|
|
|
monitor_port = /dev/ttyUSB0
|
|
monitor_speed = 115200
|
|
|
|
data_dir=data_sensoresp3
|
|
upload_port=/dev/ttyUSB0
|
|
|
|
build_flags =
|
|
-D SENSOR_DHT22
|
|
-D DHTPIN=D7
|
|
-D dataDHT22_temperature_minchange=0.1
|
|
-D dataDHT22_humidity_minchange=1.0
|
|
|
|
-D SENSOR_PIR
|
|
-D PIRPIN=D6
|
|
-D dataPIR_readdelay=100
|
|
-D dataPIR_senddelaymax=1000*60*10
|
|
|
|
-D SENSOR_BH1750
|
|
-D dataBH1750_minchange=10.0
|
|
-D dataBH1750_senddelaymax=1000*60*2
|
|
|
|
lib_deps =
|
|
adafruit/DHT sensor library@1.3.10
|
|
BH1750@1.1.4
|
|
Homie@3.0.0 |