This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## | |
## See https://github.com/kevin-david/home-assistant-shared/blob/main/esphome/airgradient.yml for future updates | |
## | |
substitutions: | |
name: airgradient-02 | |
### Everything below this can be copy/paste between similar devices | |
esphome: | |
name: $name |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
import socket | |
import threading | |
import select | |
import sys | |
terminateAll = False | |
class ClientThread(threading.Thread): |