# Bluetooth Audio This repos supports incomming bt audio connections. It also sends the bt audio state via MQTT to smarthome.
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.

.gitignore 1.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152
  1. # ---> Linux
  2. *~
  3. # temporary files which can be created if a process still has a handle open of a deleted file
  4. .fuse_hidden*
  5. # KDE directory preferences
  6. .directory
  7. # Linux trash folder which might appear on any partition or disk
  8. .Trash-*
  9. # .nfs files are created when an open file is removed but is still being accessed
  10. .nfs*
  11. # ---> Backup
  12. *.bak
  13. *.gho
  14. *.ori
  15. *.orig
  16. *.tmp
  17. # ---> Python
  18. # Byte-compiled / optimized / DLL files
  19. __pycache__/
  20. *.py[cod]
  21. *$py.class
  22. # C extensions
  23. *.so
  24. # Distribution / packaging
  25. .Python
  26. build/
  27. develop-eggs/
  28. dist/
  29. downloads/
  30. eggs/
  31. .eggs/
  32. lib/
  33. lib64/
  34. parts/
  35. sdist/
  36. var/
  37. wheels/
  38. *.egg-info/
  39. .installed.cfg
  40. *.egg
  41. MANIFEST
  42. # PyInstaller
  43. # Usually these files are written by a python script from a template
  44. # before PyInstaller builds the exe, so as to inject date/other infos into it.
  45. *.manifest
  46. *.spec
  47. # Installer logs
  48. pip-log.txt
  49. pip-delete-this-directory.txt
  50. # Unit test / coverage reports
  51. htmlcov/
  52. .tox/
  53. .nox/
  54. .coverage
  55. .coverage.*
  56. .cache
  57. nosetests.xml
  58. coverage.xml
  59. *.cover
  60. .hypothesis/
  61. .pytest_cache/
  62. # Translations
  63. *.mo
  64. *.pot
  65. # Django stuff:
  66. *.log
  67. local_settings.py
  68. db.sqlite3
  69. # Flask stuff:
  70. instance/
  71. .webassets-cache
  72. # Scrapy stuff:
  73. .scrapy
  74. # Sphinx documentation
  75. docs/_build/
  76. # PyBuilder
  77. target/
  78. # Jupyter Notebook
  79. .ipynb_checkpoints
  80. # IPython
  81. profile_default/
  82. ipython_config.py
  83. # pyenv
  84. .python-version
  85. # celery beat schedule file
  86. celerybeat-schedule
  87. # SageMath parsed files
  88. *.sage.py
  89. # Environments
  90. .env
  91. .venv
  92. env/
  93. venv/
  94. ENV/
  95. env.bak/
  96. venv.bak/
  97. # Spyder project settings
  98. .spyderproject
  99. .spyproject
  100. # Rope project settings
  101. .ropeproject
  102. # mkdocs documentation
  103. /site
  104. # mypy
  105. .mypy_cache/
  106. .dmypy.json
  107. dmypy.json
  108. # Pyre type checker
  109. .pyre/
  110. # ---> VirtualEnv
  111. # Virtualenv
  112. # http://iamzed.com/2009/05/07/a-primer-on-virtualenv/
  113. .Python
  114. [Bb]in
  115. [Ii]nclude
  116. [Ll]ib
  117. [Ll]ib64
  118. [Ll]ocal
  119. [Ss]cripts
  120. pyvenv.cfg
  121. .venv
  122. pip-selfcheck.json