-
Autor
Zielsetzung:
Das WLAN in der Garage ist nicht so der Hit, aber bevor ich weitere an der WLAN Infrastruktur arbeite wollte ich mal das Verhalten bzw. den Empfang des Shelly1 in der Garage überwachen. Jedesmal wenn sich der Zustand ändert bekomme ich eine Telegram Nachricht
Zusätzlich wird der Wechsel auch ins Log geschrieben.
Die erforderlichen Werte findet man zu jedem Shelly und "Objekte"
Blockly
Code
<xml xmlns="https://developers.google.com/blockly/xml">
<block type="on_ext" id="zb}A;|BOkF}M%KT}/3)2" x="-187" y="38">
<mutation xmlns="http://www.w3.org/1999/xhtml" items="1"></mutation>
<field name="CONDITION">ne</field>
<field name="ACK_CONDITION"></field>
<value name="OID0">
<shadow type="field_oid" id="Nlr`5V=`fb9pJhx}YA^(">
<field name="oid">shelly.0.SHSW-1#E09806A99449#1.online</field>
</shadow>
</value>
<statement name="STATEMENT">
<block type="controls_if" id="l+87~T[}Fp@TDXU5Oha#">
<value name="IF0">
<block type="logic_compare" id="y}6[0AF`[-^zVf/NkIyS">
<field name="OP">EQ</field>
<value name="A">
<block type="on_source" id="TbX4WFmRet=`?T9OxH,I">
<field name="ATTR">state.val</field>
</block>
</value>
<value name="B">
<block type="logic_boolean" id="[5:oLyr=j@yOm?p~s-_7">
<field name="BOOL">TRUE</field>
</block>
</value>
</block>
</value>
<statement name="DO0">
<block type="telegram" id="UUK]Q(Suy)Bdo`W|gU:0">
<field name="INSTANCE"></field>
<field name="LOG"></field>
<field name="SILENT">FALSE</field>
<field name="PARSEMODE">default</field>
<value name="MESSAGE">
<shadow type="text" id="-C`r+8`iC,5FzJB+9[#c">
<field name="TEXT">Garage online</field>
</shadow>
<block type="text_join" id="RGwrttoo[Pk8CE)oiH*c">
<mutation items="2"></mutation>
<value name="ADD0">
<block type="text" id="Iy5(~^3sWt=fU]+?=~ig">
<field name="TEXT">Garage online, Empfang</field>
</block>
</value>
<value name="ADD1">
<block type="get_value" id="TxoH!:b#2CelHcw!$?^C">
<field name="ATTR">val</field>
<field name="OID">shelly.0.SHSW-1#E09806A99449#1.rssi</field>
</block>
</value>
</block>
</value>
<next>
<block type="debug" id="!g-3*8()pdW{kTz@~_Z~">
<field name="Severity">log</field>
<value name="TEXT">
<shadow type="text" id="NzVxrZQ9`+Pus+8fu-F5">
<field name="TEXT">Garage online</field>
</shadow>
</value>
</block>
</next>
</block>
</statement>
<next>
<block type="controls_if" id="G*Ho$/b1kUet]7bZX{lQ">
<value name="IF0">
<block type="logic_compare" id="[5}tfBvh*f)o11^/toOp">
<field name="OP">EQ</field>
<value name="A">
<block type="on_source" id="9|8Y_B}69)`HP8DQe3v2">
<field name="ATTR">state.val</field>
</block>
</value>
<value name="B">
<block type="logic_boolean" id="xQ*j3%]ez#su~v,0KPED">
<field name="BOOL">FALSE</field>
</block>
</value>
</block>
</value>
<statement name="DO0">
<block type="telegram" id="V)ooY5a34/j]Px7k]Ovu">
<field name="INSTANCE"></field>
<field name="LOG"></field>
<field name="SILENT">FALSE</field>
<field name="PARSEMODE">default</field>
<value name="MESSAGE">
<shadow type="text" id="[Ptq4!C+K;AQ:Q%nc%[=">
<field name="TEXT">Garage offline</field>
</shadow>
<block type="text_join" id="b)L=]$`tIonnFl=M~Hw!">
<mutation items="2"></mutation>
<value name="ADD0">
<block type="text" id="ZS%C8aQ4d7De=+e*F8JG">
<field name="TEXT">Garage offline, Empfang</field>
</block>
</value>
<value name="ADD1">
<block type="get_value" id="TGXm`c#MxH:j/91==/W3">
<field name="ATTR">val</field>
<field name="OID">shelly.0.SHSW-1#E09806A99449#1.rssi</field>
</block>
</value>
</block>
</value>
<next>
<block type="debug" id="CB5A1lPVPY*Hkstc:%1X">
<field name="Severity">log</field>
<value name="TEXT">
<shadow type="text" id="Tt^8C+`cSEP4y)cujMhZ">
<field name="TEXT">Garage offline</field>
</shadow>
</value>
</block>
</next>
</block>
</statement>
</block>
</next>
</block>
</statement>
</block>
</xml>
Alles anzeigen
Javascript Export
JavaScript
on({id: 'shelly.0.SHSW-1#E09806A99449#1.online', change: "ne"}, function (obj) {
var value = obj.state.val;
var oldValue = obj.oldState.val;
if ((obj.state ? obj.state.val : "") == true) {
sendTo("telegram", "send", {
text: ('Garage online, Empfang' + String(getState("shelly.0.SHSW-1#E09806A99449#1.rssi").val))
});
console.log('Garage online');
}
if ((obj.state ? obj.state.val : "") == false) {
sendTo("telegram", "send", {
text: ('Garage offline, Empfang' + String(getState("shelly.0.SHSW-1#E09806A99449#1.rssi").val))
});
console.log('Garage offline');
}
});
Alles anzeigen