SolarEdge + Shelly Control

Click here to go to the GitHub Page ------>

Description

This Python script controls a Shelly relay based on the grid feed-in from a SolarEdge inverter. If a specified feed-in power (e.g., 6000 W) is exceeded for 5 minutes, the Shelly device is triggered. A lockout period of 60 minutes follows before it can be activated again.

The log file is cleared daily at 1:00 AM to prevent it from growing indefinitely.

Requirements 📌

pip install requests


Setup 🔧

Edit the configuration variables in pvshelly.py:

SHELLY_IP = "192.168.1.100"

SOLAREDGE_API_KEY = "YOUR_SOLAREDGE_API_KEY"

SOLAREDGE_SITE_ID = "YOUR_SITE_ID"

USOC_URL = "http://192.168.1.50/api/v2/status"

HEADERS = {"Auth-Token": "YOUR_AUTH_TOKEN"}


Adjust the trigger thresholds to control the Shelly device according to your needs:

TRIGGER_THRESHOLD = 6000  # Feed-in power in watts

HOLD_TIME = 300  # Minimum duration in seconds

LOCKOUT_TIME = 3600  # Lockout time in seconds


Run the script:

python pvshelly.py