Advertisement
jhaand

platformio.ini for project and tools

Jul 24th, 2021
1,658
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  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.  
  11. [platformio]
  12. default_envs = house2
  13.  
  14. [env]
  15. platform = espressif32
  16. board = nodemcu-32s
  17. framework = arduino
  18. upload_port = /dev/ttyUSB0
  19. monitor_speed = 115200
  20. monitor_port = /dev/ttyUSB0
  21.  
  22. [env:house2]
  23. src_filter = +<house2.cpp>
  24.  
  25. [env:luna_config]
  26. src_filter = +<../tools/luna_config.cpp>
  27.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement