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
| # Meine Sammlung Sensoren Viessmann Vitotronic 200 V200KW2 für esphome optolink | |
| # Auskommentierte Sensoren haben bei mir keine sinnvollen Werte geliefert | |
| # "type: RAW" funktioniert aktuell nicht | |
| # My collection of Viessmann Vitotronic 200 V200KW2 sensors for esphome optolink | |
| # Commented out sensors did not provide me with any meaningful values | |
| # "type: RAW" is currently not working | |
| substitutions: | |
| name: Vitoconnect |
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 python3 | |
| import requests, base64 | |
| from requests.auth import HTTPDigestAuth | |
| from bs4 import BeautifulSoup | |
| import urllib3 | |
| urllib3.disable_warnings(urllib3.exceptions.InsecureRequestWarning) | |
| user= '12345678' | |
| password = 'secret' |