I’ve been playing with a Shelly script to directly upload power to PVoutput, there where some firmware updates for the Shelly that broke my progress but for anyone who’s interested (this needs some more work) =>
let PVO_URL = “https://pvoutput.org/service/r2/addoutput.jsp?key=”;
let PVO_APIKEY = “YOURAPIKEY”;
let PVO_SYSID = “YOURSYSID”;
let PVO_DATE = “20221006”;
let PVO_GENERATION = “5000”;
let PVO_PP = “2300”;
let PVO_PT = “08:40”;
let PVO_CM = “Shelly_1PM_script_next_update_in_5_minutes”;
Shelly.call(“HTTP.GET”, {
url: PVO_URL + PVO_APIKEY + “&sid=” + PVO_SYSID + “&d=” + PVO_DATE + “&g=” + PVO_GENERATION + “&pp=” + PVO_PP
+ “&pt=” + PVO_PT + “&cm=” + PVO_CM,});
Just as an POC