Skip to content

Instantly share code, notes, and snippets.

@fconrotte
fconrotte / python-homewizard-energy.py
Last active December 13, 2025 13:04
python-homewizard-energy.py
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: