.gitignore 583 B

12345678910111213141516171819202122232425262728293031323334353637
  1. # PlatformIO build and dependency state
  2. .pio/
  3. .pioenvs/
  4. .piolibdeps/
  5. libdeps/
  6. # PlatformIO / editor-generated configuration
  7. .vscode/*
  8. !.vscode/extensions.json
  9. .idea/
  10. .clangd/
  11. # ESP-IDF generated configuration and managed component sources
  12. sdkconfig
  13. sdkconfig.old
  14. sdkconfig.*
  15. !sdkconfig.defaults
  16. !sdkconfig.defaults.*
  17. managed_components/
  18. components/
  19. compile_commands.json
  20. # Generated firmware and linker artifacts
  21. *.bin
  22. *.elf
  23. *.map
  24. # Local tooling, caches, and packaged deliverables
  25. work/
  26. outputs/
  27. .cache/
  28. __pycache__/
  29. *.py[cod]
  30. # Host operating-system files
  31. .DS_Store
  32. Thumbs.db