Hallo Beta_Buerger ; DIYROLLY
hab nun die Version 1.5 "Control_Gong_v1.5.js" erstellt.
Über verschiedene WebHooks, kann der Ausgang des Shellys ein-/ausgeschaltet werden.
Über einen anderen WH, kann für eine Zeit tm in Minuten das Ein-/Ausschalten blockiert bzw. freigegeben werden.
Per WebHook kann der Status in DE bzw. EN abgerufen werden.
Beispiele:
ht tp://EigeneIP/script/ScriptID/Gong_ENDPOINT?Gong_ON
=>Antwort im Browser:
[Gong_ON] true
===
ht tp://EigeneIP/script/ScriptID/Gong_ENDPOINT?locked_tm:20
=>Antwort im Browser:
[locked_tm:20] true
===
ht tp://EigeneIP/script/ScriptID/Gong_ENDPOINT?unlocked_tm:20
=>Antwort im Browser:
[unlocked_tm:20] true
===
ht tp://EigeneIP/script/ScriptID/Gong_ENDPOINT?status_de
=>Antwort im Browser:
Gong Status: [status_de]
Der Gong (Id:0) angeschaltet
Die Gongaktivierung ist blockiert
Restlaufzeite: 00:19:38 (hh:mm:ss)
===
ht tp://EigeneIP/script/ScriptID/Gong_ENDPOINT?status_en
=>Antwort im Browser:
Request: [status_en]
Relay output (Id:0): true
Control relay locked: true
Remaining time: 00:19:38 (hh:mm:ss)
===
ht tp://EigeneIP/script/ScriptID/Gong_ENDPOINT?Gong_ON
=>Antwort im Browser:
[Gong_ON] true
===
ht tp://EigeneIP/script/ScriptID/Gong_ENDPOINT?Gong_OFF
=>Antwort im Browser:
[Gong_OFF] Gong control locked
Bitte großzügig über Englischschreibfehler hinwegsehen
Bestimmt kann man manches einfacher/anders programmieren.
So hat jeder seinen Programmierstil.
Eingabefehler sind nicht abgefangen,
daher bitte auf korrekte Eingabe achten.
Viel Spaß.
Patrick
// Control_Gong_v1.5
// 18.01.2025 by PatrickR
//
// 14.12.2024 v1.0
// 15.12.2024 v1.1 time control: locking/unlocking controlling the relay after x minutes
// 17.12.2024 v1.2 remaining time in the response of the status, Gong_OFF, naming changed
// 17.12.2024 v1.3 add Math.round for calculation in fkt_calc_endtime()
// 01.01.2025 v1.4 add 2nd status answer
// 18.01.2025 v1.5 change request reply
//
//
// The ouput will be switched ON by receving a command via Endpoint "Gong_ON"
// Via WebHook will the output blocked
//
// WebHook to activate Gong (enter correct IP and scriptId):
// http://IP/script/scriptId/Gong_ENDPOINT?Gong_ON
// IP: shelly of the IP
// scriptId: Id of the script
//
// WebHook to deactivate Gong (enter correct IP and scriptId):
// http://IP/script/scriptId/Gong_ENDPOINT?Gong_OFF
// IP: shelly of the IP
// scriptId: Id of the script
//
// WebHook to unlock relay control via this script (enter correct IP, scriptId and minutes):
// http://IP/script/scriptId/Gong_ENDPOINT?unlocked_tm
// http://IP/script/scriptId/Gong_ENDPOINT?unlocked_tm:minutes
// IP: shelly of the IP
// scriptId: Id of the script
// minutes: time after the relay control of this script will be locked
//
// WebHook to lock relay control via this script (enter correct IP, scriptId and minutes):
// http://IP/script/scriptId/Gong_ENDPOINT?locked_tm
// http://IP/script/scriptId/Gong_ENDPOINT?locked_tm:minutes
// IP: shelly of the IP
// scriptId: Id of the script
// minutes: time after the relay control of this script will be unlocked
//
// WebHook to read status in EN of the relay control (enter correct IP and scriptId):
// http://IP/script/scriptId/Gong_ENDPOINT?status_en
// IP: shelly of the IP
// scriptId: Id of the script
//
// WebHook to read status in DE of the relay control (enter correct IP and scriptId):
// http://IP/script/scriptId/Gong_ENDPOINT?status_de
// IP: shelly of the IP
// scriptId: Id of the script
//
//
// Endpoint_Solution by ostfriese
// GNU GENERAL PUBLIC LICENSE Version 3, 29 June 2007
// More information: https://www.gnu.org/licenses/gpl-3.0.txt
// ABSOLUTELY NO WARRANTY AT ALL!!!
// Made by ostfriese.
//
// ****************************************************************************************
// ****************************************************************************************
// ******************************* GLOBAL *******************************
// ****************************************************************************************
// ****************************************************************************************
let debug_step0 = 0;
let debug_step1 = 0;
let vbCrLf = "\n\r";
let vbLf = "\n";
let strIP = "";
// ****************************************************************************************
// ****************************************************************************************
// ******************************* CONFIG *******************************
// ****************************************************************************************
// ****************************************************************************************
let CONFIG = {
local: {
script_id: 0, // not to change, will be change at runtime
switchId: 0, // relay output id 0 or id 1
ep_req_Gong_ON: "Gong_ON", // request to switch output ON
ep_req_Gong_OFF: "Gong_OFF", // request to switch output OFF
ep_req_Gong_unlocked: "unlocked_tm", // request to unlock output (optional tm in minutes)
ep_req_Gong_locked: "locked_tm", // request to lock output (optional tm in minutes)
ep_req_Gong_status_en: "status_en", // request status in english
ep_req_Gong_status_de: "status_de", // request status in german
ep_req_replyStart: "[", // highlight request command Start
ep_req_replyEnd: "]", // highlight request command End
delimiter_timer: ":", // delimiter of timer value
timer_handler: null, // handler variable of timer
tms_shellyTimeEnd: 0, // calculated unixtime when timer ends
endpoint_locked: true, // problem that endpoint process is locked by an other request
ctl_Gong_locked: false // status if request to switch output is locked
}
}
// ****************************************************************************************
// ****************************************************************************************
// ******************************* DEBUG ********************************
// ****************************************************************************************
// ****************************************************************************************
function fkt_debug_s0(to_print) {
if (debug_step0 > 0) {
print(to_print);
}
};
function fkt_debug_s1(to_print) {
if (debug_step1 > 0) {
print(to_print);
}
};
// ****************************************************************************************
// ****************************************************************************************
// ***************************** FUNCTION ******************************
// ****************************************************************************************
// ****************************************************************************************
function fkt_calc_endtime(tm_timer) {
let tms_shellyTimeCur = Shelly.getComponentStatus("sys").unixtime;
fkt_debug_s1("tms_shellyTimeCur: " + tms_shellyTimeCur);
CONFIG.local.tms_shellyTimeEnd = tms_shellyTimeCur + Math.round(tm_timer * 60);
}
function fkt_remaining_time() {
let tms_shellyTimeCur = Shelly.getComponentStatus("sys").unixtime;
let tms_newShellyTime = CONFIG.local.tms_shellyTimeEnd - tms_shellyTimeCur;
let t_hour = "00";
let t_min = "00";
let t_sec = "00";
if (tms_newShellyTime > 0) {
t_hour = t_hour + Math.floor(tms_newShellyTime / 3600);
t_min = t_min + Math.floor(tms_newShellyTime / 60) % 60;
t_sec = t_sec + (tms_newShellyTime % 60);
}
let retvalue = strRight(t_hour, 2) + ":" + strRight(t_min, 2) + ":" + strRight(t_sec, 2) + " (hh:mm:ss)";
fkt_debug_s1("remaining time: " + retvalue);
return retvalue;
}
function fkt_send_response(response, strBody) {
response.code = 200;
response.body = strBody;
response.send();
}
function fkt_check_Endpoint(request, response) {
if (CONFIG.local.endpoint_locked) {
fkt_debug_s1("fkt_check_Endpoint: locked");
return;
}
else {
fkt_debug_s1("fkt_check_Endpoint: not yet locked");
let arrReqsplit = request.query.split(CONFIG.local.delimiter_timer);
let strReply = CONFIG.local.ep_req_replyStart + request.query + CONFIG.local.ep_req_replyEnd + " ";
switch (arrReqsplit[0]) {
case CONFIG.local.ep_req_Gong_ON:
fkt_Endpoint_Gong_ON_OFF(true, response, strReply);
break;
case CONFIG.local.ep_req_Gong_OFF:
fkt_Endpoint_Gong_ON_OFF(false, response, strReply);
break;
case CONFIG.local.ep_req_Gong_unlocked:
fkt_Endpoint_Gong_unlocked(arrReqsplit[1]);
strReply = strReply + !CONFIG.local.ctl_Gong_locked;
fkt_send_response(response, strReply);
break;
case CONFIG.local.ep_req_Gong_locked:
fkt_Endpoint_Gong_locked(arrReqsplit[1]);
strReply = strReply + CONFIG.local.ctl_Gong_locked;
fkt_send_response(response, strReply);
break;
case CONFIG.local.ep_req_Gong_status_en:
fkt_Endpoint_Gong_status(response, request.query, "en");
break;
case CONFIG.local.ep_req_Gong_status_de:
fkt_Endpoint_Gong_status(response, request.query, "de");
break;
}
}
};
function fkt_Endpoint_Gong_ON_OFF(booOutput, responseIN, strReply) {
let strReturn = "data missing";
if (CONFIG.local.endpoint_locked) {
strReturn = "endpoint_locked";
return strReturn;
}
CONFIG.local.endpoint_locked = true;
if (CONFIG.local.ctl_Gong_locked === true) {
fkt_debug_s1("fkt_Endpoint_Gong_ON_OFF: Gong control locked");
strReturn = "Gong control locked";
fkt_send_response(responseIN, (strReply + strReturn));
}
else {
let arrUD = [responseIN, strReply, booOutput];
let swRelay = {
id: CONFIG.local.switchId,
on: arrUD[2]
};
Shelly.call("Switch.Set", swRelay,
function (response, error_code, error_message, ud) {
fkt_debug_s1(JSON.stringify(response));
let SW_Out = Shelly.getComponentStatus("switch", CONFIG.local.switchId).output
if (ud[2] === false) {
SW_Out = !SW_Out; // question is if out is off, means if .output is false then answere is true
}
fkt_send_response(ud[0], (ud[1] + SW_Out))
},
arrUD
);
}
CONFIG.local.endpoint_locked = false;
return strReturn;
}
function fkt_Endpoint_Gong_unlocked(minutes_till_out_be_locked) {
if (CONFIG.local.endpoint_locked) {
return;
}
CONFIG.local.endpoint_locked = true;
fkt_unlock_ctl_out();
Timer.clear(CONFIG.local.timer_handler);
if (minutes_till_out_be_locked !== undefined) {
fkt_calc_endtime(minutes_till_out_be_locked);
let tms = minutes_till_out_be_locked * 60 * 1000; // minutes in milliseconds
CONFIG.local.timer_handler = Timer.set(tms, false, fkt_lock_ctl_out);
}
else {
CONFIG.local.tms_shellyTimeEnd = 0;
}
CONFIG.local.endpoint_locked = false;
}
function fkt_Endpoint_Gong_locked(minutes_till_out_be_unlocked) {
if (CONFIG.local.endpoint_locked) {
return;
}
CONFIG.local.endpoint_locked = true;
fkt_lock_ctl_out();
Timer.clear(CONFIG.local.timer_handler);
if (minutes_till_out_be_unlocked !== undefined) {
fkt_calc_endtime(minutes_till_out_be_unlocked);
let tms = minutes_till_out_be_unlocked * 60 * 1000; // minutes in milliseconds
CONFIG.local.timer_handler = Timer.set(tms, false, fkt_unlock_ctl_out);
}
else {
CONFIG.local.tms_shellyTimeEnd = 0;
}
CONFIG.local.endpoint_locked = false;
}
function fkt_Endpoint_Gong_status(resp, requestquery, version) {
if (CONFIG.local.endpoint_locked) {
fkt_send_response(resp, requestquery);
return;
}
CONFIG.local.endpoint_locked = true;
let switchStatus = Shelly.getComponentStatus("switch", CONFIG.local.switchId).output;
let strResp = "";
let tm_remain_time = "00:00:00 (hh:mm:ss)";
if (CONFIG.local.tms_shellyTimeEnd !== 0) {
tm_remain_time = fkt_remaining_time();
}
switch (version) {
case "en":
strResp = "Request: " + CONFIG.local.ep_req_replyStart + requestquery + CONFIG.local.ep_req_replyEnd + vbLf +
"Relay output (Id:" + CONFIG.local.switchId + "): " + switchStatus + vbLf +
"Control relay locked: " + CONFIG.local.ctl_Gong_locked + vbLf +
"Remaining time: " + tm_remain_time;
break;
case "de":
let strGongActivation = 'm' + chr(246) + 'glich';
if (CONFIG.local.ctl_Gong_locked) strGongActivation = "blockiert";
let strSwitchStatus = "ausgeschaltet";
if (switchStatus) strSwitchStatus = "angeschaltet";
strResp = "Gong Status: " + CONFIG.local.ep_req_replyStart + requestquery + CONFIG.local.ep_req_replyEnd + vbLf +
"Der Gong (Id:" + CONFIG.local.switchId + ") ist " + strSwitchStatus + vbLf +
"Die Gongaktivierung ist " + strGongActivation + vbLf +
"Restlaufzeit: " + tm_remain_time;
break;
}
fkt_send_response(resp, strResp);
CONFIG.local.endpoint_locked = false;
}
function fkt_lock_ctl_out() {
CONFIG.local.ctl_Gong_locked = true;
fkt_debug_s1("fkt_lock_ctl_out");
}
function fkt_unlock_ctl_out() {
CONFIG.local.ctl_Gong_locked = false;
fkt_debug_s1("fkt_unlock_ctl_out");
}
function fkt_get_own_ip() {
// fkt_debug_s0("get_own_ip");
Shelly.call("WiFi.GetStatus", null, function (status) {
strIP = status.sta_ip;
});
}
function strRight(fulltext, numberChar) {
let result = fulltext.substr(fulltext.length - numberChar, numberChar);
return result
}
function fkt_start() {
HTTPServer.registerEndpoint("Gong_ENDPOINT", fkt_check_Endpoint);
CONFIG.local.script_id = Shelly.getCurrentScriptId();
fkt_debug_s0("Your possible urls are:");
fkt_debug_s0("http://" + strIP + "/script/" + CONFIG.local.script_id + "/Gong_ENDPOINT?" + CONFIG.local.ep_req_Gong_ON);
fkt_debug_s0("http://" + strIP + "/script/" + CONFIG.local.script_id + "/Gong_ENDPOINT?" + CONFIG.local.ep_req_Gong_OFF);
fkt_debug_s0("http://" + strIP + "/script/" + CONFIG.local.script_id + "/Gong_ENDPOINT?" + CONFIG.local.ep_req_Gong_unlocked);
fkt_debug_s0("http://" + strIP + "/script/" + CONFIG.local.script_id + "/Gong_ENDPOINT?" + CONFIG.local.ep_req_Gong_unlocked + ":60");
fkt_debug_s0("http://" + strIP + "/script/" + CONFIG.local.script_id + "/Gong_ENDPOINT?" + CONFIG.local.ep_req_Gong_locked);
fkt_debug_s0("http://" + strIP + "/script/" + CONFIG.local.script_id + "/Gong_ENDPOINT?" + CONFIG.local.ep_req_Gong_locked + ":60");
fkt_debug_s0("http://" + strIP + "/script/" + CONFIG.local.script_id + "/Gong_ENDPOINT?" + CONFIG.local.ep_req_Gong_status_en);
fkt_debug_s0("http://" + strIP + "/script/" + CONFIG.local.script_id + "/Gong_ENDPOINT?" + CONFIG.local.ep_req_Gong_status_de);
CONFIG.local.endpoint_locked = false;
}
print("start 'Control_Gong_v1.5' & debug_step0/debug_step1: " + debug_step0 + "/" + debug_step1);
fkt_get_own_ip();
Timer.set(1000, false, fkt_start);
Alles anzeigen