Publishs ambient information to mqtt server
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

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