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
| import asyncio | |
| import csv | |
| import os | |
| from datetime import datetime | |
| from homewizard_energy import HomeWizardEnergyV1 | |
| IP_ADDRESS = "192.168.1.3" | |
| async def main(): | |
| async with HomeWizardEnergyV1(host=IP_ADDRESS) as api: |