ESP32 / ESP8266 & BME280 / SHT2x sensor with InfluxDB support
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.

platformio.ini 1.1KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. ;PlatformIO Project Configuration File
  2. ;
  3. ; Build options: build flags, source filter
  4. ; 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. [env:esp01_1m]
  11. platform = espressif8266
  12. board = esp01_1m
  13. framework = arduino
  14. lib_deps =
  15. Wire
  16. ESP8266 Influxdb
  17. Adafruit Unified Sensor
  18. Adafruit BME280 Library
  19. [env:esp32dev]
  20. platform = espressif32
  21. board = esp32dev
  22. framework = arduino
  23. upload_protocol = esptool
  24. lib_deps =
  25. Wire
  26. Adafruit Unified Sensor
  27. Adafruit BME280 Library
  28. https://github.com/tobiasschuerg/InfluxDB-Client-for-Arduino.git#66ed5d031caab6953cc79b407a4b49d33b1126dc
  29. [env:arduinowifideved]
  30. platform = atmelavr
  31. board = uno
  32. framework = arduino
  33. upload_port = /dev/ttyACM0
  34. monitor_port = /dev/ttyACM0
  35. monitor_speed = 115200
  36. lib_deps =
  37. Wire
  38. Adafruit Unified Sensor
  39. Adafruit BME280 Library
  40. https://github.com/jandrassy/UnoWiFiDevEdSerial1
  41. https://github.com/jandrassy/arduino-library-wifilink