Initial release — Growatt SPF TCP proxy with decoder and HA MQTT integration

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
perco
2026-05-19 13:49:41 +02:00
co-authored by Claude Sonnet 4.6
commit 265ae68064
7 changed files with 1060 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
FROM python:3.12-slim
WORKDIR /app
RUN pip install --no-cache-dir aiohttp paho-mqtt
COPY proxy.py .
COPY ha_mqtt.py .
COPY templates/ templates/
CMD ["python", "-u", "proxy.py"]