mirror of
https://github.com/fhem/fhem-mirror.git
synced 2025-01-31 12:49:34 +00:00
73_AMADCommBridge: fix commandref and Flowset
git-svn-id: https://svn.fhem.de/fhem/trunk@15059 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
parent
98167fce7f
commit
6e402f5a29
@ -1,5 +1,6 @@
|
|||||||
# Add changes at the top of the list. Keep it in ASCII, and 80-char wide.
|
# Add changes at the top of the list. Keep it in ASCII, and 80-char wide.
|
||||||
# Do not insert empty lines here, update check depends on it.
|
# Do not insert empty lines here, update check depends on it.
|
||||||
|
- bugfix: 73_AMADCommBridge: fix commandref and Flowset
|
||||||
- feature: 74_AMADautomagicFlowset: add support for wired headset plugged
|
- feature: 74_AMADautomagicFlowset: add support for wired headset plugged
|
||||||
- feature: 74_AMADDevice: add change temporary ttsMsg language, code clean
|
- feature: 74_AMADDevice: add change temporary ttsMsg language, code clean
|
||||||
- feature: 50_TelegramBot: new set cmd msgDelete
|
- feature: 50_TelegramBot: new set cmd msgDelete
|
||||||
|
@ -74,8 +74,8 @@ eval "use Encode qw(encode encode_utf8);1" or $missingModul .= "Encode ";
|
|||||||
eval "use JSON;1" or $missingModul .= "JSON ";
|
eval "use JSON;1" or $missingModul .= "JSON ";
|
||||||
|
|
||||||
|
|
||||||
my $modulversion = "4.0.5";
|
my $modulversion = "4.0.6";
|
||||||
my $flowsetversion = "4.0.8";
|
my $flowsetversion = "4.0.9";
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@ -58,8 +58,8 @@ eval "use Encode qw(encode encode_utf8);1" or $missingModul .= "Encode ";
|
|||||||
eval "use JSON;1" or $missingModul .= "JSON ";
|
eval "use JSON;1" or $missingModul .= "JSON ";
|
||||||
|
|
||||||
|
|
||||||
my $modulversion = "4.0.9";
|
my $modulversion = "4.0.10";
|
||||||
my $flowsetversion = "4.0.8";
|
my $flowsetversion = "4.0.9";
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@ -1012,6 +1012,7 @@ sub AMADDevice_CreateChangeBtDeviceValue($$) {
|
|||||||
<li>userFlowState - current state of a Flow, established under setUserFlowState Attribut</li>
|
<li>userFlowState - current state of a Flow, established under setUserFlowState Attribut</li>
|
||||||
<li>volume - media volume setting</li>
|
<li>volume - media volume setting</li>
|
||||||
<li>volumeNotification - notification volume setting</li>
|
<li>volumeNotification - notification volume setting</li>
|
||||||
|
<li>wiredHeadsetPlugged - 0/1 headset plugged out or in</li>
|
||||||
<br>
|
<br>
|
||||||
Prerequisite for using the reading checkActivTask the package name of the application to be checked needs to be defined in the attribute <i>checkActiveTask</i>. Example: <i>attr Nexus10Wohnzimmer
|
Prerequisite for using the reading checkActivTask the package name of the application to be checked needs to be defined in the attribute <i>checkActiveTask</i>. Example: <i>attr Nexus10Wohnzimmer
|
||||||
checkActiveTask com.android.chrome</i> für den Chrome Browser.
|
checkActiveTask com.android.chrome</i> für den Chrome Browser.
|
||||||
@ -1182,6 +1183,7 @@ sub AMADDevice_CreateChangeBtDeviceValue($$) {
|
|||||||
<li>userFlowState - aktueller Status eines Flows, festgelegt unter dem setUserFlowState Attribut</li>
|
<li>userFlowState - aktueller Status eines Flows, festgelegt unter dem setUserFlowState Attribut</li>
|
||||||
<li>volume - Media Lautstärkewert</li>
|
<li>volume - Media Lautstärkewert</li>
|
||||||
<li>volumeNotification - Benachrichtigungs Lautstärke</li>
|
<li>volumeNotification - Benachrichtigungs Lautstärke</li>
|
||||||
|
<li>wiredHeadsetPlugged - 0/1 gibt an ob ein Headset eingesteckt ist oder nicht</li>
|
||||||
<br>
|
<br>
|
||||||
Beim Reading checkActivTask muß zuvor der Packagename der zu prüfenden App als Attribut <i>checkActiveTask</i> angegeben werden. Beispiel: <i>attr Nexus10Wohnzimmer
|
Beim Reading checkActivTask muß zuvor der Packagename der zu prüfenden App als Attribut <i>checkActiveTask</i> angegeben werden. Beispiel: <i>attr Nexus10Wohnzimmer
|
||||||
checkActiveTask com.android.chrome</i> für den Chrome Browser.
|
checkActiveTask com.android.chrome</i> für den Chrome Browser.
|
||||||
|
@ -1246,6 +1246,10 @@ or trigger == "HTTP Request: /fhem-amad/deviceInfo/"</expression>
|
|||||||
<host>{global_fhemip}</host>
|
<host>{global_fhemip}</host>
|
||||||
<socketPort>{global_bridgeport}</socketPort>
|
<socketPort>{global_bridgeport}</socketPort>
|
||||||
</condition>
|
</condition>
|
||||||
|
<condition type="wired_headset_plugged">
|
||||||
|
<useDefaultName>true</useDefaultName>
|
||||||
|
<name>Kabelgebundenes Headset verbunden</name>
|
||||||
|
</condition>
|
||||||
<condition type="keyguard_locked">
|
<condition type="keyguard_locked">
|
||||||
<useDefaultName>true</useDefaultName>
|
<useDefaultName>true</useDefaultName>
|
||||||
<name>Keyguard gesperrt</name>
|
<name>Keyguard gesperrt</name>
|
||||||
@ -2591,6 +2595,16 @@ global_userflowstate = "none";</script>
|
|||||||
<name>Script: global_fhemip = {value}</name>
|
<name>Script: global_fhemip = {value}</name>
|
||||||
<script>global_fhemip = {value}</script>
|
<script>global_fhemip = {value}</script>
|
||||||
</action>
|
</action>
|
||||||
|
<action type="script">
|
||||||
|
<useDefaultName>true</useDefaultName>
|
||||||
|
<name>Script: headsetValue = 1</name>
|
||||||
|
<script>headsetValue = 1</script>
|
||||||
|
</action>
|
||||||
|
<action type="script">
|
||||||
|
<useDefaultName>true</useDefaultName>
|
||||||
|
<name>Script: headsetValue = 0</name>
|
||||||
|
<script>headsetValue = 0</script>
|
||||||
|
</action>
|
||||||
<action type="script">
|
<action type="script">
|
||||||
<useDefaultName>true</useDefaultName>
|
<useDefaultName>true</useDefaultName>
|
||||||
<name>Script: if (trigger == "NFC TagIDs" ) { nfcLastTagID = "\"nfcLastTagID\":" + " \"" + {nfc_tag_ids} + "\""} if (trigger == "NFC State" ) { nfc = "\"nfc\":" + " \"" + {nfc_state} + "\""} fhemcmd = "setreading";</name>
|
<name>Script: if (trigger == "NFC TagIDs" ) { nfcLastTagID = "\"nfcLastTagID\":" + " \"" + {nfc_tag_ids} + "\""} if (trigger == "NFC State" ) { nfc = "\"nfc\":" + " \"" + {nfc_state} + "\""} fhemcmd = "setreading";</name>
|
||||||
@ -2735,17 +2749,6 @@ nextalarmstate = "done"
|
|||||||
if(trigger == "Genereller Broadcast: wenn com.android.deskclock.ALARM_SNOOZE") {
|
if(trigger == "Genereller Broadcast: wenn com.android.deskclock.ALARM_SNOOZE") {
|
||||||
nextalarmstate = "snooze"
|
nextalarmstate = "snooze"
|
||||||
}</script>
|
}</script>
|
||||||
</action>
|
|
||||||
<action type="script">
|
|
||||||
<useDefaultName>true</useDefaultName>
|
|
||||||
<name>Script: if(trigger == "Kabelgebundenes Headset Verbunden") { wiredHeadsetPlugged = "\"wiredHeadsetPlugged\": \"in\""; } else if(trigger == "Kabelgebundenes Headset Getrennt") { wiredHeadsetPlugged = "\"wiredHeadsetPlugged\": \"out\""; } fhemcmd = "setreading";</name>
|
|
||||||
<script>if(trigger == "Kabelgebundenes Headset Verbunden") {
|
|
||||||
wiredHeadsetPlugged = "\"wiredHeadsetPlugged\": \"in\"";
|
|
||||||
} else if(trigger == "Kabelgebundenes Headset Getrennt") {
|
|
||||||
wiredHeadsetPlugged = "\"wiredHeadsetPlugged\": \"out\"";
|
|
||||||
}
|
|
||||||
|
|
||||||
fhemcmd = "setreading";</script>
|
|
||||||
</action>
|
</action>
|
||||||
<action type="script">
|
<action type="script">
|
||||||
<useDefaultName>true</useDefaultName>
|
<useDefaultName>true</useDefaultName>
|
||||||
@ -2975,7 +2978,7 @@ fhemcmd = "setreading";</script>
|
|||||||
<action type="script">
|
<action type="script">
|
||||||
<useDefaultName>false</useDefaultName>
|
<useDefaultName>false</useDefaultName>
|
||||||
<name>Script: Set FHEMDATA JSON</name>
|
<name>Script: Set FHEMDATA JSON</name>
|
||||||
<script>fhemdata = "\"flowsetVersionAtDevice\": \"4.0.8\",";
|
<script>fhemdata = "\"flowsetVersionAtDevice\": \"4.0.9\",";
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@ -3160,6 +3163,12 @@ fhemcmd = "setreading";</script>
|
|||||||
<useDefaultName>true</useDefaultName>
|
<useDefaultName>true</useDefaultName>
|
||||||
<name>Script: volumevalue = "\"volume\":" + " \"" + {volume} + "\""; fhemcmd = "setreading";</name>
|
<name>Script: volumevalue = "\"volume\":" + " \"" + {volume} + "\""; fhemcmd = "setreading";</name>
|
||||||
<script>volumevalue = "\"volume\":" + " \"" + {volume} + "\"";
|
<script>volumevalue = "\"volume\":" + " \"" + {volume} + "\"";
|
||||||
|
fhemcmd = "setreading";</script>
|
||||||
|
</action>
|
||||||
|
<action type="script">
|
||||||
|
<useDefaultName>true</useDefaultName>
|
||||||
|
<name>Script: wiredHeadsetPlugged = "\"wiredHeadsetPlugged\":" + " \"" + {headsetValue} + "\""; fhemcmd = "setreading";</name>
|
||||||
|
<script>wiredHeadsetPlugged = "\"wiredHeadsetPlugged\":" + " \"" + {headsetValue} + "\"";
|
||||||
fhemcmd = "setreading";</script>
|
fhemcmd = "setreading";</script>
|
||||||
</action>
|
</action>
|
||||||
<action type="script">
|
<action type="script">
|
||||||
@ -3666,7 +3675,7 @@ Soll der Assistent gelöscht werden?</text>
|
|||||||
</action>
|
</action>
|
||||||
<flow type="flow">
|
<flow type="flow">
|
||||||
<name>First Run Assistant</name>
|
<name>First Run Assistant</name>
|
||||||
<group>AMADNG Info/Control Flowset v4.0.8</group>
|
<group>AMADNG Info/Control Flowset v4.0.9</group>
|
||||||
<enabled>false</enabled>
|
<enabled>false</enabled>
|
||||||
<executionPolicy>PARALLEL</executionPolicy>
|
<executionPolicy>PARALLEL</executionPolicy>
|
||||||
<triggercontainer id="t1" x="35.0" y="-2292.5">
|
<triggercontainer id="t1" x="35.0" y="-2292.5">
|
||||||
@ -3839,7 +3848,7 @@ Soll der Assistent gelöscht werden?</actioncontainer>
|
|||||||
</flow>
|
</flow>
|
||||||
<flow type="flow">
|
<flow type="flow">
|
||||||
<name>Informations</name>
|
<name>Informations</name>
|
||||||
<group>AMADNG Info/Control Flowset v4.0.8</group>
|
<group>AMADNG Info/Control Flowset v4.0.9</group>
|
||||||
<enabled>true</enabled>
|
<enabled>true</enabled>
|
||||||
<executionPolicy>QUEUE</executionPolicy>
|
<executionPolicy>QUEUE</executionPolicy>
|
||||||
<emergencyStopCount>900</emergencyStopCount>
|
<emergencyStopCount>900</emergencyStopCount>
|
||||||
@ -3971,105 +3980,108 @@ Soll der Assistent gelöscht werden?</actioncontainer>
|
|||||||
<actioncontainer id="t80" x="4025.0" y="-3482.5">Script: notification_text = "not supported from your device"</actioncontainer>
|
<actioncontainer id="t80" x="4025.0" y="-3482.5">Script: notification_text = "not supported from your device"</actioncontainer>
|
||||||
<conditioncontainer id="t81" x="4410.0" y="-3132.5">Expression: getAndroidSDKVersion() >= "19"</conditioncontainer>
|
<conditioncontainer id="t81" x="4410.0" y="-3132.5">Expression: getAndroidSDKVersion() >= "19"</conditioncontainer>
|
||||||
<actioncontainer id="t82" x="4270.0" y="-3482.5">Script: notification_text = "Aktiviere Automagic unter Einstellungen -> Benachrichtigungen -> Benachrichtigungszugriff"</actioncontainer>
|
<actioncontainer id="t82" x="4270.0" y="-3482.5">Script: notification_text = "Aktiviere Automagic unter Einstellungen -> Benachrichtigungen -> Benachrichtigungszugriff"</actioncontainer>
|
||||||
<conditioncontainer id="t83" x="4795.0" y="-2782.5">Expression: trigger == "Genereller Broadcast: wenn org.smblott.intentradio.STATE"</conditioncontainer>
|
<conditioncontainer id="t83" x="3885.0" y="-2782.5">Expression: trigger == "Benachrichtigung in Statusbar angezeigt: com.whatsapp"</conditioncontainer>
|
||||||
<conditioncontainer id="t84" x="3885.0" y="-2782.5">Expression: trigger == "Benachrichtigung in Statusbar angezeigt: com.whatsapp"</conditioncontainer>
|
<conditioncontainer id="t84" x="3885.0" y="-3482.5">Benachrichtigung in Statusbar angezeigt: WhatsApp</conditioncontainer>
|
||||||
<conditioncontainer id="t85" x="3885.0" y="-3482.5">Benachrichtigung in Statusbar angezeigt: WhatsApp</conditioncontainer>
|
<actioncontainer id="t85" x="4550.0" y="-3482.5">Script: notification_text = "not supported from your device"</actioncontainer>
|
||||||
<actioncontainer id="t86" x="4550.0" y="-3482.5">Script: notification_text = "not supported from your device"</actioncontainer>
|
<actioncontainer id="t86" x="-875.0" y="997.5">Initialisiere Variable Systemeinstellung: screenBrightness</actioncontainer>
|
||||||
<conditioncontainer id="t87" x="4410.0" y="-2782.5">Expression: trigger == "Benachrichtigung in Statusbar angezeigt: org.telegram.messenger"</conditioncontainer>
|
<actioncontainer id="t87" x="-455.0" y="997.5">Initialisiere Variable Systemeinstellung: volumeNotification</actioncontainer>
|
||||||
<actioncontainer id="t88" x="-875.0" y="997.5">Initialisiere Variable Systemeinstellung: screenBrightness</actioncontainer>
|
<actioncontainer id="t88" x="-665.0" y="997.5">Initialisiere Variable Systemeinstellung: volumeRingSound</actioncontainer>
|
||||||
<conditioncontainer id="t89" x="1015.0" y="682.5">Expression: trigger == "HTTP Request: /fhem-amad/deviceInfo/"</conditioncontainer>
|
<conditioncontainer id="t89" x="-770.0" y="-2782.5">Expression: trigger == "Medien Session verändert" or trigger == "HTTP Request: /fhem-amad/deviceInfo/"</conditioncontainer>
|
||||||
<actioncontainer id="t90" x="-455.0" y="997.5">Initialisiere Variable Systemeinstellung: volumeNotification</actioncontainer>
|
<actioncontainer id="t90" x="1295.0" y="997.5">Get Android Version</actioncontainer>
|
||||||
<actioncontainer id="t91" x="-665.0" y="997.5">Initialisiere Variable Systemeinstellung: volumeRingSound</actioncontainer>
|
<conditioncontainer id="t91" x="3885.0" y="-1592.5">WLAN verfügbar: {global_apssid}</conditioncontainer>
|
||||||
<conditioncontainer id="t92" x="-770.0" y="-2782.5">Expression: trigger == "Medien Session verändert" or trigger == "HTTP Request: /fhem-amad/deviceInfo/"</conditioncontainer>
|
<actioncontainer id="t92" x="4795.0" y="-3832.5">Script: intentRadioState = "\"intentRadioState\":" + " \"" + {irstate} + "\"" + "," + "\"intentRadioName\":" + " \"" + {irname} + "\""; fhemcmd = "setreading";</actioncontainer>
|
||||||
<actioncontainer id="t93" x="1295.0" y="997.5">Get Android Version</actioncontainer>
|
<actioncontainer id="t93" x="3220.0" y="-3832.5">Script: keyguardSet = "\"keyguardSet\":" + " \"" + {keyguardSet} + "\""; fhemcmd = "setreading";</actioncontainer>
|
||||||
<conditioncontainer id="t94" x="3885.0" y="-1592.5">WLAN verfügbar: {global_apssid}</conditioncontainer>
|
<actioncontainer id="t94" x="2800.0" y="-3832.5">Script: dockingState = "\"dockingState\":" + " \"" + {dock_state} + "\""; fhemcmd = "setreading";</actioncontainer>
|
||||||
<actioncontainer id="t95" x="4795.0" y="-3832.5">Script: intentRadioState = "\"intentRadioState\":" + " \"" + {irstate} + "\"" + "," + "\"intentRadioName\":" + " \"" + {irname} + "\""; fhemcmd = "setreading";</actioncontainer>
|
<actioncontainer id="t95" x="1855.0" y="-3832.5">Script: screenOrientation = "\"screenOrientation\":" + " \"" + {screen_orientation} + "\"" + "," + "\"screenOrientationMode\":" + " \"" + {screen_orientation_mode} + "\""; fhemcmd = "setreading";</actioncontainer>
|
||||||
<actioncontainer id="t96" x="3220.0" y="-3832.5">Script: keyguardSet = "\"keyguardSet\":" + " \"" + {keyguardSet} + "\""; fhemcmd = "setreading";</actioncontainer>
|
<actioncontainer id="t96" x="1505.0" y="-3832.5">Script: screenBrightness = "\"screenBrightness\":" + " \"" + {screenBrightness} + "\""; fhemcmd = "setreading";</actioncontainer>
|
||||||
<actioncontainer id="t97" x="2800.0" y="-3832.5">Script: dockingState = "\"dockingState\":" + " \"" + {dock_state} + "\""; fhemcmd = "setreading";</actioncontainer>
|
<actioncontainer id="t97" x="1155.0" y="-3832.5">Script: daydream = "\"daydream\":" + " \"" + {daydream_state} + "\""; fhemcmd = "setreading";</actioncontainer>
|
||||||
<actioncontainer id="t98" x="1855.0" y="-3832.5">Script: screenOrientation = "\"screenOrientation\":" + " \"" + {screen_orientation} + "\"" + "," + "\"screenOrientationMode\":" + " \"" + {screen_orientation_mode} + "\""; fhemcmd = "setreading";</actioncontainer>
|
<actioncontainer id="t98" x="0.0" y="-3832.5">Script: volumeNotification = "\"volumeNotification\":" + " \"" + {volumeNotification} + "\""; fhemcmd = "setreading";</actioncontainer>
|
||||||
<actioncontainer id="t99" x="1505.0" y="-3832.5">Script: screenBrightness = "\"screenBrightness\":" + " \"" + {screenBrightness} + "\""; fhemcmd = "setreading";</actioncontainer>
|
<actioncontainer id="t99" x="-1120.0" y="-3832.5">Script: airplanemode = "\"airplanemode\":" + " \"" + {airplanemode} + "\""; fhemcmd = "setreading";</actioncontainer>
|
||||||
<actioncontainer id="t100" x="1155.0" y="-3832.5">Script: daydream = "\"daydream\":" + " \"" + {daydream_state} + "\""; fhemcmd = "setreading";</actioncontainer>
|
<actioncontainer id="t100" x="-2450.0" y="-3867.5">Script: nextAlarmState = "\"nextAlarmState\":" + " \"" + {nextalarmstate} + "\""; fhemcmd = "setreading";</actioncontainer>
|
||||||
<actioncontainer id="t101" x="0.0" y="-3832.5">Script: volumeNotification = "\"volumeNotification\":" + " \"" + {volumeNotification} + "\""; fhemcmd = "setreading";</actioncontainer>
|
<actioncontainer id="t101" x="-2975.0" y="-3867.5">Script: doNotDisturb = "\"doNotDisturb\":" + " \"" + {dndValue} + "\""; fhemcmd = "setreading";</actioncontainer>
|
||||||
<actioncontainer id="t102" x="-1120.0" y="-3832.5">Script: airplanemode = "\"airplanemode\":" + " \"" + {airplanemode} + "\""; fhemcmd = "setreading";</actioncontainer>
|
<actioncontainer id="t102" x="3220.0" y="-2467.5">Script: checkActiveTask = "\"checkActiveTask\":" + " \"" + {runTask} + "\""; fhemcmd = "setreading";</actioncontainer>
|
||||||
<actioncontainer id="t103" x="-2450.0" y="-3867.5">Script: nextAlarmState = "\"nextAlarmState\":" + " \"" + {nextalarmstate} + "\""; fhemcmd = "setreading";</actioncontainer>
|
<conditioncontainer id="t103" x="595.0" y="1417.5">Expression: Leon == "Gaultier"</conditioncontainer>
|
||||||
<actioncontainer id="t104" x="-2975.0" y="-3867.5">Script: doNotDisturb = "\"doNotDisturb\":" + " \"" + {dndValue} + "\""; fhemcmd = "setreading";</actioncontainer>
|
<actioncontainer id="t104" x="665.0" y="1207.5">Flows löschen: MultimediaControl</actioncontainer>
|
||||||
<actioncontainer id="t105" x="3220.0" y="-2467.5">Script: checkActiveTask = "\"checkActiveTask\":" + " \"" + {runTask} + "\""; fhemcmd = "setreading";</actioncontainer>
|
<actioncontainer id="t105" x="1330.0" y="1417.5">Script: androidVersion = "\"androidVersion\":" + " \"" + {androidVersion} + "\""; fhemcmd = "setreading";</actioncontainer>
|
||||||
<conditioncontainer id="t106" x="595.0" y="1417.5">Expression: Leon == "Gaultier"</conditioncontainer>
|
<conditioncontainer id="t106" x="2310.0" y="-2782.5">Expression: trigger == "Benachrichtigung in Statusbar angezeigt: ch.gridvision.ppam.androidautomagic" or trigger == "Benachrichtigung in Statusbar entfernt: ch.gridvision.ppam.androidautomagic" or trigger == "HTTP Request: /fhem-amad/deviceInfo/"</conditioncontainer>
|
||||||
<actioncontainer id="t107" x="665.0" y="1207.5">Flows löschen: MultimediaControl</actioncontainer>
|
<conditioncontainer id="t107" x="2310.0" y="-3027.5">Expression: getAndroidSDKVersion() >= "19"</conditioncontainer>
|
||||||
<actioncontainer id="t108" x="1330.0" y="1417.5">Script: androidVersion = "\"androidVersion\":" + " \"" + {androidVersion} + "\""; fhemcmd = "setreading";</actioncontainer>
|
<actioncontainer id="t108" x="2170.0" y="-3482.5">Script: notification_text = "Aktiviere Automagic unter Einstellungen -> Benachrichtigungen -> Benachrichtigungszugriff"</actioncontainer>
|
||||||
<conditioncontainer id="t109" x="2310.0" y="-2782.5">Expression: trigger == "Benachrichtigung in Statusbar angezeigt: ch.gridvision.ppam.androidautomagic" or trigger == "Benachrichtigung in Statusbar entfernt: ch.gridvision.ppam.androidautomagic" or trigger == "HTTP Request: /fhem-amad/deviceInfo/"</conditioncontainer>
|
<conditioncontainer id="t109" x="2310.0" y="-3482.5">Benachrichtigung in Statusbar angezeigt: Automagic</conditioncontainer>
|
||||||
<conditioncontainer id="t110" x="2310.0" y="-3027.5">Expression: getAndroidSDKVersion() >= "19"</conditioncontainer>
|
<actioncontainer id="t110" x="4270.0" y="-892.5">Script: deviceState = "\"deviceState\": \"online\""; fhemcmd = "setreading";</actioncontainer>
|
||||||
<actioncontainer id="t111" x="2170.0" y="-3482.5">Script: notification_text = "Aktiviere Automagic unter Einstellungen -> Benachrichtigungen -> Benachrichtigungszugriff"</actioncontainer>
|
<conditioncontainer id="t111" x="2800.0" y="-2782.5">Expression: trigger == "Dock Event: Docked" or trigger == "Dock Event: Undocked" or trigger == "HTTP Request: /fhem-amad/deviceInfo/"</conditioncontainer>
|
||||||
<conditioncontainer id="t112" x="2310.0" y="-3482.5">Benachrichtigung in Statusbar angezeigt: Automagic</conditioncontainer>
|
<actioncontainer id="t112" x="1015.0" y="-4602.5">Flows ausführen: Send Data to AMADCommBridge</actioncontainer>
|
||||||
<actioncontainer id="t113" x="4270.0" y="-892.5">Script: deviceState = "\"deviceState\": \"online\""; fhemcmd = "setreading";</actioncontainer>
|
<actioncontainer id="t113" x="1015.0" y="1417.5">Prüfe und setze globale Variable</actioncontainer>
|
||||||
<conditioncontainer id="t114" x="2800.0" y="-2782.5">Expression: trigger == "Dock Event: Docked" or trigger == "Dock Event: Undocked" or trigger == "HTTP Request: /fhem-amad/deviceInfo/"</conditioncontainer>
|
<actioncontainer id="t114" x="-455.0" y="-3832.5">Script: bluetooth = "\"bluetooth\":" + " \"" + {bluetooth_state} + "\""; fhemcmd = "setreading";</actioncontainer>
|
||||||
<actioncontainer id="t115" x="1015.0" y="-4602.5">Flows ausführen: Send Data to AMADCommBridge</actioncontainer>
|
<actioncontainer id="t115" x="-315.0" y="-3552.5">Script: connected_devices_names = "none"; connected_devices_addresses = "none"</actioncontainer>
|
||||||
<actioncontainer id="t116" x="1015.0" y="1417.5">Prüfe und setze globale Variable</actioncontainer>
|
<actioncontainer id="t116" x="-315.0" y="-3832.5">Script: btdeviceinfo = "\"connectedBTdevices\":" + " \"" + {connected_devices_names} + "\"" + "," + "\"connectedBTdevicesMAC\":" + " \"" + {connected_devices_addresses} + "\""; fhemcmd = "setreading";</actioncontainer>
|
||||||
<actioncontainer id="t117" x="-455.0" y="-3832.5">Script: bluetooth = "\"bluetooth\":" + " \"" + {bluetooth_state} + "\""; fhemcmd = "setreading";</actioncontainer>
|
<conditioncontainer id="t117" x="-315.0" y="-3097.5">Bluetooth Gerät verbunden: Beliebiges Geräte</conditioncontainer>
|
||||||
<actioncontainer id="t118" x="-315.0" y="-3552.5">Script: connected_devices_names = "none"; connected_devices_addresses = "none"</actioncontainer>
|
<conditioncontainer id="t118" x="-420.0" y="-2782.5">Expression: trigger == "Bluetooth Status: Schaltet aus, Aus" or trigger == "Bluetooth Gerät verbunden: Alle Geräte" or trigger == "Bluetooth Gerät getrennt: Alle Geräte" or trigger == "Bluetooth Status: Schaltet ein, Ein" or trigger == "HTTP Request: /fhem-amad/deviceInfo/"</conditioncontainer>
|
||||||
<actioncontainer id="t119" x="-315.0" y="-3832.5">Script: btdeviceinfo = "\"connectedBTdevices\":" + " \"" + {connected_devices_names} + "\"" + "," + "\"connectedBTdevicesMAC\":" + " \"" + {connected_devices_addresses} + "\""; fhemcmd = "setreading";</actioncontainer>
|
<actioncontainer id="t119" x="-1120.0" y="-2327.5">Script: flow_SetCommands = "\"flow_SetCommands\":" + " \"" + {setCommandFlow_state} + "\""; fhemcmd = "setreading";</actioncontainer>
|
||||||
<conditioncontainer id="t120" x="-315.0" y="-3097.5">Bluetooth Gerät verbunden: Beliebiges Geräte</conditioncontainer>
|
<actioncontainer id="t120" x="-1120.0" y="-2152.5">Setze Flow Status: Aktivieren SetCommands</actioncontainer>
|
||||||
<conditioncontainer id="t121" x="-420.0" y="-2782.5">Expression: trigger == "Bluetooth Status: Schaltet aus, Aus" or trigger == "Bluetooth Gerät verbunden: Alle Geräte" or trigger == "Bluetooth Gerät getrennt: Alle Geräte" or trigger == "Bluetooth Status: Schaltet ein, Ein" or trigger == "HTTP Request: /fhem-amad/deviceInfo/"</conditioncontainer>
|
<actioncontainer id="t121" x="-1015.0" y="-1977.5">Script: setCommandFlow_state = "aktiv"</actioncontainer>
|
||||||
<actioncontainer id="t122" x="-1120.0" y="-2327.5">Script: flow_SetCommands = "\"flow_SetCommands\":" + " \"" + {setCommandFlow_state} + "\""; fhemcmd = "setreading";</actioncontainer>
|
<actioncontainer id="t122" x="-1225.0" y="-1977.5">Script: setCommandFlow_state = "inaktiv"</actioncontainer>
|
||||||
<actioncontainer id="t123" x="-1120.0" y="-2152.5">Setze Flow Status: Aktivieren SetCommands</actioncontainer>
|
<conditioncontainer id="t123" x="-1120.0" y="-1802.5">Flow Aktiv: SetCommands</conditioncontainer>
|
||||||
<actioncontainer id="t124" x="-1015.0" y="-1977.5">Script: setCommandFlow_state = "aktiv"</actioncontainer>
|
<conditioncontainer id="t124" x="-1120.0" y="-1557.5">Expression: trigger == "Periodischer Timer: alle 120s"</conditioncontainer>
|
||||||
<actioncontainer id="t125" x="-1225.0" y="-1977.5">Script: setCommandFlow_state = "inaktiv"</actioncontainer>
|
<conditioncontainer id="t125" x="-1855.0" y="-1802.5">Expression: global_userflowstate != "none"</conditioncontainer>
|
||||||
<conditioncontainer id="t126" x="-1120.0" y="-1802.5">Flow Aktiv: SetCommands</conditioncontainer>
|
<conditioncontainer id="t126" x="-1855.0" y="-1977.5">Flow Aktiv: {global_userflowstate}</conditioncontainer>
|
||||||
<conditioncontainer id="t127" x="-1120.0" y="-1557.5">Expression: trigger == "Periodischer Timer: alle 120s"</conditioncontainer>
|
<actioncontainer id="t127" x="-1925.0" y="-2152.5">Script: flowState = "inactive"</actioncontainer>
|
||||||
<conditioncontainer id="t128" x="-1855.0" y="-1802.5">Expression: global_userflowstate != "none"</conditioncontainer>
|
<actioncontainer id="t128" x="-1785.0" y="-2152.5">Script: flowState = "active"</actioncontainer>
|
||||||
<conditioncontainer id="t129" x="-1855.0" y="-1977.5">Flow Aktiv: {global_userflowstate}</conditioncontainer>
|
<actioncontainer id="t129" x="-1855.0" y="-2327.5">Script: flow_informations = "\"userFlowState\":" + " \"" + {flowState} + "\""; fhemcmd = "setreading";</actioncontainer>
|
||||||
<actioncontainer id="t130" x="-1925.0" y="-2152.5">Script: flowState = "inactive"</actioncontainer>
|
<conditioncontainer id="t130" x="-1855.0" y="-1557.5">Expression: trigger == "Periodischer Timer: alle 120s" or trigger == "HTTP Request: /fhem-amad/deviceInfo/"</conditioncontainer>
|
||||||
<actioncontainer id="t131" x="-1785.0" y="-2152.5">Script: flowState = "active"</actioncontainer>
|
<conditioncontainer id="t131" x="-2485.0" y="-1802.5">Flow Aktiv: Send Data to AMADCommBridge</conditioncontainer>
|
||||||
<actioncontainer id="t132" x="-1855.0" y="-2327.5">Script: flow_informations = "\"userFlowState\":" + " \"" + {flowState} + "\""; fhemcmd = "setreading";</actioncontainer>
|
<actioncontainer id="t132" x="-2450.0" y="-2292.5">Setze Flow Status: Aktivieren Send Data to AMADCommBridge</actioncontainer>
|
||||||
<conditioncontainer id="t133" x="-1855.0" y="-1557.5">Expression: trigger == "Periodischer Timer: alle 120s" or trigger == "HTTP Request: /fhem-amad/deviceInfo/"</conditioncontainer>
|
<conditioncontainer id="t133" x="-2485.0" y="-1557.5">Expression: trigger == "Periodischer Timer: alle 120s"</conditioncontainer>
|
||||||
<conditioncontainer id="t134" x="-2485.0" y="-1802.5">Flow Aktiv: Send Data to AMADCommBridge</conditioncontainer>
|
<actioncontainer id="t134" x="3535.0" y="-3832.5">Script: incomingCaller = "\"incomingCallerName\":" + " \"" + {contact_name} + "\"" + "," + "\"incomingCallerNumber\":" + " \"" + {incoming_number} + "\""; fhemcmd = "setreading";</actioncontainer>
|
||||||
<actioncontainer id="t135" x="-2450.0" y="-2292.5">Setze Flow Status: Aktivieren Send Data to AMADCommBridge</actioncontainer>
|
<actioncontainer id="t135" x="3885.0" y="-3832.5">Script: incommingWhatsAppMessage = "\"incommingWhatsAppMessageFrom\":" + " \"" + replaceAll({notification_text}, "\\n", " ") + "\""; fhemcmd = "setreading";</actioncontainer>
|
||||||
<conditioncontainer id="t136" x="-2485.0" y="-1557.5">Expression: trigger == "Periodischer Timer: alle 120s"</conditioncontainer>
|
<actioncontainer id="t136" x="2310.0" y="-3832.5">Script: automagicState = "\"automagicState\":" + " \"" + replaceAll({notification_text}, "\\n", " ") + "\""; fhemcmd = "setreading";</actioncontainer>
|
||||||
<actioncontainer id="t137" x="3535.0" y="-3832.5">Script: incomingCaller = "\"incomingCallerName\":" + " \"" + {contact_name} + "\"" + "," + "\"incomingCallerNumber\":" + " \"" + {incoming_number} + "\""; fhemcmd = "setreading";</actioncontainer>
|
<conditioncontainer id="t137" x="4410.0" y="-3482.5">Benachrichtigung in Statusbar angezeigt: Telegram Messenger</conditioncontainer>
|
||||||
<actioncontainer id="t138" x="3885.0" y="-3832.5">Script: incommingWhatsAppMessage = "\"incommingWhatsAppMessageFrom\":" + " \"" + replaceAll({notification_text}, "\\n", " ") + "\""; fhemcmd = "setreading";</actioncontainer>
|
<actioncontainer id="t138" x="-1050.0" y="-3342.5">Pause: 2s (Gerät wach halten)</actioncontainer>
|
||||||
<actioncontainer id="t139" x="2310.0" y="-3832.5">Script: automagicState = "\"automagicState\":" + " \"" + replaceAll({notification_text}, "\\n", " ") + "\""; fhemcmd = "setreading";</actioncontainer>
|
<actioncontainer id="t139" x="-1050.0" y="-3517.5">Script: airpcount = airpcount + 1</actioncontainer>
|
||||||
<conditioncontainer id="t140" x="4410.0" y="-3482.5">Benachrichtigung in Statusbar angezeigt: Telegram Messenger</conditioncontainer>
|
<conditioncontainer id="t140" x="-1050.0" y="-3657.5">Expression: airpcount < 11</conditioncontainer>
|
||||||
<actioncontainer id="t141" x="-1050.0" y="-3342.5">Pause: 2s (Gerät wach halten)</actioncontainer>
|
<actioncontainer id="t141" x="2450.0" y="-3482.5">Script: notification_text = "not supported from your device"</actioncontainer>
|
||||||
<actioncontainer id="t142" x="-1050.0" y="-3517.5">Script: airpcount = airpcount + 1</actioncontainer>
|
<actioncontainer id="t142" x="-770.0" y="-3517.5">Script: subtitle = "no player active"; title = "no player active"; description = "no player active"; musicapp = "no player active"; icon = "no player active"</actioncontainer>
|
||||||
<conditioncontainer id="t143" x="-1050.0" y="-3657.5">Expression: airpcount < 11</conditioncontainer>
|
<actioncontainer id="t143" x="-770.0" y="-3657.5">Script: if(playback_state == 0) { playback_state = "keiner" } if(playback_state == 1) { playback_state = "gestoppt" } if(playback_state == 2) { playback_state = "pausiert" } if(playback_state == 3) { playback_state = "spielt ab" } if(playback_state == 4) { playback_state = "spult vorwärts" } if(playback_state == 5) { playback_state = "spült rückwärts" } if(playback_state == 6) { playback_state = "buffert" } if(playback_state == 7) { playback_state = "Fehler" } if(playback_state == 8) { playback_state = "verbindet" } if(playback_state == 9) { playback_state = "springt zum vorherigen" } if(playback_state == 10) { playback_state = "springt zum nächsten" } if(playback_state == 11) { playback_state = "springt zu Position in Wiedergabeliste" }</actioncontainer>
|
||||||
<actioncontainer id="t144" x="2450.0" y="-3482.5">Script: notification_text = "not supported from your device"</actioncontainer>
|
<actioncontainer id="t144" x="-770.0" y="-3832.5">Script: currentMusic = "\"currentMusicTrack\":" + " \"" + {title} + "\"" + "," + "\"currentMusicAlbum\":" + " \"" + {description} + "\"" + "," + "\"currentMusicArtist\":" + " \"" + {subtitle} + "\"" + "," + "\"currentMusicApp\":" + " \"" + {musicapp} + "\"" + "," + "\"currentMusicIcon\":" + " \"" + {icon} + "\"" + "," + "\"currentMusicState\":" + " \"" + {playback_state} + "\""; fhemcmd = "setreading";</actioncontainer>
|
||||||
<actioncontainer id="t145" x="-770.0" y="-3517.5">Script: subtitle = "no player active"; title = "no player active"; description = "no player active"; musicapp = "no player active"; icon = "no player active"</actioncontainer>
|
<actioncontainer id="t145" x="-770.0" y="-2992.5">Script: if(package_name == "com.google.android.music") { musicapp = "Google Musik" } if(package_name == "com.amazon.mp3") { musicapp = "Amazon Musik" } if(package_name == "com.google.android.videos") { musicapp = "Google Video" } if(package_name == "com.spotify.music") { musicapp = "Spotify Musik" } if(package_name == "com.google.android.youtube") { musicapp = "YouTube" } if(package_name == "tunein.player") { musicapp = "TuneIn Player" } if(package_name == "com.rhapsody.alditalk") { musicapp = "Aldi Life Musik" } if(package_name == "org.videolan.vlc") { musicapp = "VLC Player" } if(package_name == "com.sec.android.app.music") { musicapp = "Samsung Music Player" }</actioncontainer>
|
||||||
<actioncontainer id="t146" x="-770.0" y="-3657.5">Script: if(playback_state == 0) { playback_state = "keiner" } if(playback_state == 1) { playback_state = "gestoppt" } if(playback_state == 2) { playback_state = "pausiert" } if(playback_state == 3) { playback_state = "spielt ab" } if(playback_state == 4) { playback_state = "spult vorwärts" } if(playback_state == 5) { playback_state = "spült rückwärts" } if(playback_state == 6) { playback_state = "buffert" } if(playback_state == 7) { playback_state = "Fehler" } if(playback_state == 8) { playback_state = "verbindet" } if(playback_state == 9) { playback_state = "springt zum vorherigen" } if(playback_state == 10) { playback_state = "springt zum nächsten" } if(playback_state == 11) { playback_state = "springt zu Position in Wiedergabeliste" }</actioncontainer>
|
<actioncontainer id="t146" x="-1855.0" y="-4007.5">Script: screen = "\"screen\":" + " \"" + {screen_state} + "\""; fhemcmd = "setreading";</actioncontainer>
|
||||||
<actioncontainer id="t147" x="-770.0" y="-3832.5">Script: currentMusic = "\"currentMusicTrack\":" + " \"" + {title} + "\"" + "," + "\"currentMusicAlbum\":" + " \"" + {description} + "\"" + "," + "\"currentMusicArtist\":" + " \"" + {subtitle} + "\"" + "," + "\"currentMusicApp\":" + " \"" + {musicapp} + "\"" + "," + "\"currentMusicIcon\":" + " \"" + {icon} + "\"" + "," + "\"currentMusicState\":" + " \"" + {playback_state} + "\""; fhemcmd = "setreading";</actioncontainer>
|
<actioncontainer id="t147" x="840.0" y="-3832.5">Script: powerinfo = "\"powerLevel\":" + " \"" + "{battery_percentage,numberformat,0}" + "\"" + "," + "\"powerPlugged\":" + " \"" + {battery_plugged} + "\"" + "," + "\"batteryTemperature\":" + " \"" + "{battery_temperature/10.0,numberformat.0.0}" + "\"" + "," + "\"batteryHealth\":" + " \"" + {battery_health} + "\""; fhemcmd = "setreading";</actioncontainer>
|
||||||
<actioncontainer id="t148" x="-770.0" y="-2992.5">Script: if(package_name == "com.google.android.music") { musicapp = "Google Musik" } if(package_name == "com.amazon.mp3") { musicapp = "Amazon Musik" } if(package_name == "com.google.android.videos") { musicapp = "Google Video" } if(package_name == "com.spotify.music") { musicapp = "Spotify Musik" } if(package_name == "com.google.android.youtube") { musicapp = "YouTube" } if(package_name == "tunein.player") { musicapp = "TuneIn Player" } if(package_name == "com.rhapsody.alditalk") { musicapp = "Aldi Life Musik" } if(package_name == "org.videolan.vlc") { musicapp = "VLC Player" } if(package_name == "com.sec.android.app.music") { musicapp = "Samsung Music Player" }</actioncontainer>
|
<actioncontainer id="t148" x="210.0" y="-3832.5">Script: volumevalue = "\"volume\":" + " \"" + {volume} + "\""; fhemcmd = "setreading";</actioncontainer>
|
||||||
<actioncontainer id="t149" x="-1855.0" y="-4007.5">Script: screen = "\"screen\":" + " \"" + {screen_state} + "\""; fhemcmd = "setreading";</actioncontainer>
|
<actioncontainer id="t149" x="525.0" y="-3832.5">Script: nextAlarm = "\"nextAlarmTime\":" + " \"" + {next_alarmtime} + "\"" + "," + "\"nextAlarmDay\":" + " \"" + {next_alarmday} + "\""; fhemcmd = "setreading";</actioncontainer>
|
||||||
<actioncontainer id="t150" x="840.0" y="-3832.5">Script: powerinfo = "\"powerLevel\":" + " \"" + "{battery_percentage,numberformat,0}" + "\"" + "," + "\"powerPlugged\":" + " \"" + {battery_plugged} + "\"" + "," + "\"batteryTemperature\":" + " \"" + "{battery_temperature/10.0,numberformat.0.0}" + "\"" + "," + "\"batteryHealth\":" + " \"" + {battery_health} + "\""; fhemcmd = "setreading";</actioncontainer>
|
<conditioncontainer id="t150" x="0.0" y="-2782.5">Expression: trigger == "Systemeinstellung verändert: System volume_ring_speaker"</conditioncontainer>
|
||||||
<actioncontainer id="t151" x="210.0" y="-3832.5">Script: volumevalue = "\"volume\":" + " \"" + {volume} + "\""; fhemcmd = "setreading";</actioncontainer>
|
<conditioncontainer id="t151" x="3255.0" y="-1802.5">Expression: package_name == {global_activetask}</conditioncontainer>
|
||||||
<actioncontainer id="t152" x="525.0" y="-3832.5">Script: nextAlarm = "\"nextAlarmTime\":" + " \"" + {next_alarmtime} + "\"" + "," + "\"nextAlarmDay\":" + " \"" + {next_alarmday} + "\""; fhemcmd = "setreading";</actioncontainer>
|
<conditioncontainer id="t152" x="4270.0" y="-1592.5">Expression: trigger == "Periodischer Timer: alle 120s" or trigger == "HTTP Request: /fhem-amad/deviceInfo/"</conditioncontainer>
|
||||||
<conditioncontainer id="t153" x="0.0" y="-2782.5">Expression: trigger == "Systemeinstellung verändert: System volume_ring_speaker"</conditioncontainer>
|
<conditioncontainer id="t153" x="1015.0" y="-227.5">Expression: trigger == "App Task Beendet" or trigger == "App Task Gestartet"</conditioncontainer>
|
||||||
<conditioncontainer id="t154" x="3255.0" y="-1802.5">Expression: package_name == {global_activetask}</conditioncontainer>
|
<conditioncontainer id="t154" x="3255.0" y="-1592.5">Expression: trigger == "App Task Gestartet" or trigger == "Periodischer Timer: alle 120s"</conditioncontainer>
|
||||||
<conditioncontainer id="t155" x="4270.0" y="-1592.5">Expression: trigger == "Periodischer Timer: alle 120s" or trigger == "HTTP Request: /fhem-amad/deviceInfo/"</conditioncontainer>
|
<conditioncontainer id="t155" x="-2450.0" y="-2782.5">Expression: trigger == "Genereller Broadcast: wenn com.android.deskclock.ALARM_ALERT" or trigger == "Genereller Broadcast: wenn com.android.deskclock.ALARM_DISMISS" or trigger == "Genereller Broadcast: wenn com.android.deskclock.ALARM_DONE" or trigger == "Genereller Broadcast: wenn com.android.deskclock.ALARM_SNOOZE" or trigger == "HTTP Request: /fhem-amad/deviceInfo/"</conditioncontainer>
|
||||||
<conditioncontainer id="t156" x="1015.0" y="-227.5">Expression: trigger == "App Task Beendet" or trigger == "App Task Gestartet"</conditioncontainer>
|
<actioncontainer id="t156" x="-2450.0" y="-3552.5">Script: if(trigger == "Genereller Broadcast: wenn com.android.deskclock.ALARM_ALERT") { nextalarmstate = "alert" } if(trigger == "Genereller Broadcast: wenn com.android.deskclock.ALARM_DISMISS") { nextalarmstate = "dismiss" } if(trigger == "Genereller Broadcast: wenn com.android.deskclock.ALARM_DONE") { nextalarmstate = "done" } if(trigger == "Genereller Broadcast: wenn com.android.deskclock.ALARM_SNOOZE") { nextalarmstate = "snooze" }</actioncontainer>
|
||||||
<conditioncontainer id="t157" x="3255.0" y="-1592.5">Expression: trigger == "App Task Gestartet" or trigger == "Periodischer Timer: alle 120s"</conditioncontainer>
|
<conditioncontainer id="t157" x="525.0" y="-2782.5">Expression: trigger == "Systemeinstellung verändert: System next_alarm" or trigger == "HTTP Request: /fhem-amad/deviceInfo/"</conditioncontainer>
|
||||||
<conditioncontainer id="t158" x="-2450.0" y="-2782.5">Expression: trigger == "Genereller Broadcast: wenn com.android.deskclock.ALARM_ALERT" or trigger == "Genereller Broadcast: wenn com.android.deskclock.ALARM_DISMISS" or trigger == "Genereller Broadcast: wenn com.android.deskclock.ALARM_DONE" or trigger == "Genereller Broadcast: wenn com.android.deskclock.ALARM_SNOOZE" or trigger == "HTTP Request: /fhem-amad/deviceInfo/"</conditioncontainer>
|
<actioncontainer id="t158" x="525.0" y="-3097.5">Initialisiere Variable Nächster Alarm: next_alarm</actioncontainer>
|
||||||
<actioncontainer id="t159" x="-2450.0" y="-3552.5">Script: if(trigger == "Genereller Broadcast: wenn com.android.deskclock.ALARM_ALERT") { nextalarmstate = "alert" } if(trigger == "Genereller Broadcast: wenn com.android.deskclock.ALARM_DISMISS") { nextalarmstate = "dismiss" } if(trigger == "Genereller Broadcast: wenn com.android.deskclock.ALARM_DONE") { nextalarmstate = "done" } if(trigger == "Genereller Broadcast: wenn com.android.deskclock.ALARM_SNOOZE") { nextalarmstate = "snooze" }</actioncontainer>
|
<actioncontainer id="t159" x="630.0" y="-3587.5">Script: next_alarmtime = "{next_alarm,dateformat,HH:mm}"</actioncontainer>
|
||||||
<conditioncontainer id="t160" x="525.0" y="-2782.5">Expression: trigger == "Systemeinstellung verändert: System next_alarm" or trigger == "HTTP Request: /fhem-amad/deviceInfo/"</conditioncontainer>
|
<actioncontainer id="t160" x="420.0" y="-3587.5">Script: next_alarmday = "{next_alarm,dateformat,c}"</actioncontainer>
|
||||||
<actioncontainer id="t161" x="525.0" y="-3097.5">Initialisiere Variable Nächster Alarm: next_alarm</actioncontainer>
|
<conditioncontainer id="t161" x="1015.0" y="-1242.5">Host erreichbar: {global_fhemip}:{global_bridgeport}</conditioncontainer>
|
||||||
<actioncontainer id="t162" x="630.0" y="-3587.5">Script: next_alarmtime = "{next_alarm,dateformat,HH:mm}"</actioncontainer>
|
<actioncontainer id="t162" x="4410.0" y="-3832.5">Script: incommingTelegramMessage = "\"incommingTelegramMessageFrom\":" + " \"" + replaceAll({notification_text}, "\\n", " ") + "\""; fhemcmd = "setreading";</actioncontainer>
|
||||||
<actioncontainer id="t163" x="420.0" y="-3587.5">Script: next_alarmday = "{next_alarm,dateformat,c}"</actioncontainer>
|
<actioncontainer id="t163" x="5040.0" y="-3832.5">Script: volumeRingSound = "\"volumeRingSound\":" + " \"" + {volumeRingSound} + "\""; fhemcmd = "setreading";</actioncontainer>
|
||||||
<conditioncontainer id="t164" x="5040.0" y="-2782.5">Expression: trigger == "Systemeinstellung verändert: System volume_ring"</conditioncontainer>
|
<actioncontainer id="t164" x="5320.0" y="-3832.5">Script: wiredHeadsetPlugged = "\"wiredHeadsetPlugged\":" + " \"" + {headsetValue} + "\""; fhemcmd = "setreading";</actioncontainer>
|
||||||
<conditioncontainer id="t165" x="1015.0" y="-1242.5">Host erreichbar: {global_fhemip}:{global_bridgeport}</conditioncontainer>
|
<conditioncontainer id="t165" x="5320.0" y="-2782.5">Expression: trigger == "Kabelgebundenes Headset Verbunden" or trigger == "Kabelgebundenes Headset Getrennt"</conditioncontainer>
|
||||||
<actioncontainer id="t166" x="4410.0" y="-3832.5">Script: incommingTelegramMessage = "\"incommingTelegramMessageFrom\":" + " \"" + replaceAll({notification_text}, "\\n", " ") + "\""; fhemcmd = "setreading";</actioncontainer>
|
<actioncontainer id="t166" x="5250.0" y="-3482.5">Script: headsetValue = 1</actioncontainer>
|
||||||
<actioncontainer id="t167" x="5040.0" y="-3832.5">Script: volumeRingSound = "\"volumeRingSound\":" + " \"" + {volumeRingSound} + "\""; fhemcmd = "setreading";</actioncontainer>
|
<actioncontainer id="t167" x="5390.0" y="-3482.5">Script: headsetValue = 0</actioncontainer>
|
||||||
<conditioncontainer id="t168" x="5250.0" y="-2782.5">Expression: trigger == "Kabelgebundenes Headset Verbunden" or trigger == "Kabelgebundenes Headset Getrennt"</conditioncontainer>
|
<conditioncontainer id="t168" x="5040.0" y="-2782.5">Expression: trigger == "Systemeinstellung verändert: System volume_ring"</conditioncontainer>
|
||||||
<actioncontainer id="t169" x="5250.0" y="-3832.5">Script: if(trigger == "Kabelgebundenes Headset Verbunden") { wiredHeadsetPlugged = "\"wiredHeadsetPlugged\": \"in\""; } else if(trigger == "Kabelgebundenes Headset Getrennt") { wiredHeadsetPlugged = "\"wiredHeadsetPlugged\": \"out\""; } fhemcmd = "setreading";</actioncontainer>
|
<conditioncontainer id="t169" x="4795.0" y="-2782.5">Expression: trigger == "Genereller Broadcast: wenn org.smblott.intentradio.STATE"</conditioncontainer>
|
||||||
<connection from="t1" to="t156" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<conditioncontainer id="t170" x="4410.0" y="-2782.5">Expression: trigger == "Benachrichtigung in Statusbar angezeigt: org.telegram.messenger"</conditioncontainer>
|
||||||
<connection from="t2" to="t100" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<conditioncontainer id="t171" x="1015.0" y="682.5">Expression: trigger == "HTTP Request: /fhem-amad/deviceInfo/"</conditioncontainer>
|
||||||
<connection from="t3" to="t100" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<conditioncontainer id="t172" x="5320.0" y="-3132.5">Kabelgebundenes Headset verbunden</conditioncontainer>
|
||||||
|
<connection from="t1" to="t153" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
|
<connection from="t2" to="t97" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
|
<connection from="t3" to="t97" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t4" to="t25" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t4" to="t25" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t5" to="t6" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t5" to="t6" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t5" to="t7" type="FALSE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t5" to="t7" type="FALSE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t6" to="t18" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t6" to="t18" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t7" to="t18" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t7" to="t18" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t8" to="t97" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t8" to="t94" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t9" to="t97" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t9" to="t94" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t10" to="t96" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t10" to="t93" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t11" to="t98" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t11" to="t95" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t12" to="t21" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t12" to="t21" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t13" to="t25" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t13" to="t25" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t14" to="t15" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t14" to="t15" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
@ -4088,7 +4100,7 @@ Soll der Assistent gelöscht werden?</actioncontainer>
|
|||||||
<connection from="t22" to="t21" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t22" to="t21" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t23" to="t57" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t23" to="t57" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t23" to="t24" type="FALSE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t23" to="t24" type="FALSE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t24" to="t96" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t24" to="t93" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t25" to="t38" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t25" to="t38" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t25" to="t39" type="FALSE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t25" to="t39" type="FALSE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t25" to="t14" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t25" to="t14" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
@ -4100,52 +4112,52 @@ Soll der Assistent gelöscht werden?</actioncontainer>
|
|||||||
<connection from="t29" to="t34" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t29" to="t34" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t30" to="t33" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t30" to="t33" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t31" to="t32" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t31" to="t32" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t32" to="t104" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t32" to="t101" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t33" to="t104" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t33" to="t101" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t34" to="t104" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t34" to="t101" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t35" to="t104" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t35" to="t101" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t36" to="t149" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t36" to="t146" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t37" to="t149" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t37" to="t146" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t38" to="t149" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t38" to="t146" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t39" to="t149" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t39" to="t146" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t40" to="t102" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t40" to="t99" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t41" to="t117" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t41" to="t114" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t42" to="t108" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t42" to="t105" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t43" to="t44" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t43" to="t44" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t43" to="t45" type="FALSE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t43" to="t45" type="FALSE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t44" to="t105" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t44" to="t102" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t45" to="t105" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t45" to="t102" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t46" to="t43" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t46" to="t43" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t46" to="t47" type="EXCEPTION" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t46" to="t47" type="EXCEPTION" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t46" to="t47" type="FALSE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t46" to="t47" type="FALSE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t47" to="t105" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t47" to="t102" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t48" to="t105" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t48" to="t102" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t49" to="t48" type="FALSE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t49" to="t48" type="FALSE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t49" to="t46" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t49" to="t46" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t50" to="t27" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t50" to="t27" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t51" to="t19" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t51" to="t19" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t52" to="t5" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t52" to="t5" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t53" to="t150" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t53" to="t147" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t54" to="t150" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t54" to="t147" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t54" to="t150" type="FALSE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t54" to="t147" type="FALSE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t55" to="t98" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t55" to="t95" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t56" to="t117" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t56" to="t114" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t57" to="t58" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t57" to="t58" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t57" to="t10" type="FALSE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t57" to="t10" type="FALSE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t58" to="t96" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t58" to="t93" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t59" to="t23" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t59" to="t23" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t60" to="t137" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t60" to="t134" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t61" to="t74" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t61" to="t74" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t62" to="t99" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t62" to="t96" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t63" to="t64" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t63" to="t64" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t63" to="t70" type="FALSE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t63" to="t70" type="FALSE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t64" to="t151" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t64" to="t148" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t65" to="t145" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t65" to="t142" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t66" to="t65" type="FALSE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t66" to="t65" type="FALSE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t66" to="t146" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t66" to="t143" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t68" to="t151" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t68" to="t148" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t69" to="t63" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t69" to="t63" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t70" to="t151" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t70" to="t148" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t71" to="t63" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t71" to="t63" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t72" to="t73" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t72" to="t73" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t73" to="t31" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t73" to="t31" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
@ -4154,156 +4166,161 @@ Soll der Assistent gelöscht werden?</actioncontainer>
|
|||||||
<connection from="t73" to="t28" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t73" to="t28" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t74" to="t75" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t74" to="t75" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t75" to="t40" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t75" to="t40" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t75" to="t143" type="FALSE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t75" to="t140" type="FALSE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t77" to="t89" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t77" to="t171" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t77" to="t165" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t77" to="t161" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t77" to="t89" type="FALSE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t77" to="t171" type="FALSE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t78" to="t80" type="FALSE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t78" to="t80" type="FALSE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t78" to="t85" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t78" to="t84" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t79" to="t138" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t79" to="t135" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t80" to="t138" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t80" to="t135" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t81" to="t86" type="FALSE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t81" to="t85" type="FALSE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t81" to="t140" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t81" to="t137" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t82" to="t166" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t82" to="t162" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t83" to="t95" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t83" to="t78" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t84" to="t78" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t84" to="t79" type="EXCEPTION" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t85" to="t79" type="EXCEPTION" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t84" to="t135" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t85" to="t138" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t85" to="t162" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t86" to="t166" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t86" to="t96" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t87" to="t81" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t87" to="t98" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t88" to="t99" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t88" to="t163" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t89" to="t71" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t89" to="t145" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t89" to="t69" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t90" to="t42" type="EXCEPTION" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t89" to="t90" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t90" to="t105" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t89" to="t54" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t91" to="t76" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t89" to="t88" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t92" to="t112" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t89" to="t93" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t93" to="t112" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t89" to="t107" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t94" to="t112" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t89" to="t116" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t95" to="t112" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t89" to="t91" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t96" to="t112" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t90" to="t101" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t97" to="t112" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t91" to="t167" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t98" to="t112" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t92" to="t148" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t99" to="t112" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t93" to="t42" type="EXCEPTION" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t100" to="t112" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t93" to="t108" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t101" to="t112" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t94" to="t76" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t102" to="t112" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t95" to="t115" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t104" to="t67" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t96" to="t115" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t104" to="t103" type="EXCEPTION" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t97" to="t115" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t105" to="t112" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t98" to="t115" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t106" to="t107" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t99" to="t115" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t107" to="t109" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t100" to="t115" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t107" to="t141" type="EXCEPTION" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t101" to="t115" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t107" to="t141" type="FALSE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t102" to="t115" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t108" to="t136" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t103" to="t115" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t109" to="t108" type="EXCEPTION" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t104" to="t115" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t109" to="t136" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t105" to="t115" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t110" to="t112" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t107" to="t67" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t111" to="t17" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t107" to="t106" type="EXCEPTION" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t114" to="t112" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t108" to="t115" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t115" to="t116" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t109" to="t110" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t116" to="t112" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t110" to="t112" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t117" to="t116" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t110" to="t144" type="EXCEPTION" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t117" to="t115" type="FALSE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t110" to="t144" type="FALSE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t118" to="t20" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t111" to="t139" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t118" to="t117" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t112" to="t111" type="EXCEPTION" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t119" to="t112" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t112" to="t139" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t121" to="t119" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t113" to="t115" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t122" to="t120" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t114" to="t17" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t122" to="t119" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t117" to="t115" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t123" to="t121" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t118" to="t119" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t123" to="t122" type="FALSE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t119" to="t115" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t124" to="t123" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t120" to="t119" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t125" to="t126" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t120" to="t118" type="FALSE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t126" to="t127" type="FALSE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t121" to="t20" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t126" to="t128" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t121" to="t120" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t127" to="t129" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t122" to="t115" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t128" to="t129" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t124" to="t122" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t129" to="t112" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t125" to="t123" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t130" to="t125" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t125" to="t122" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t131" to="t132" type="FALSE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t126" to="t124" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t133" to="t131" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t126" to="t125" type="FALSE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t134" to="t112" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t127" to="t126" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t135" to="t112" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t128" to="t129" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t136" to="t112" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t129" to="t130" type="FALSE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t137" to="t82" type="EXCEPTION" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t129" to="t131" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t137" to="t162" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t130" to="t132" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t138" to="t75" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t131" to="t132" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t139" to="t138" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t132" to="t115" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t140" to="t139" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t133" to="t128" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t141" to="t136" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t134" to="t135" type="FALSE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t142" to="t143" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t136" to="t134" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t143" to="t144" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t137" to="t115" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t144" to="t112" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t138" to="t115" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t145" to="t66" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t139" to="t115" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t146" to="t112" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t140" to="t82" type="EXCEPTION" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t147" to="t112" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t140" to="t166" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t148" to="t112" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t141" to="t75" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t149" to="t112" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t142" to="t141" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t150" to="t98" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t143" to="t142" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t151" to="t49" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t144" to="t139" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t152" to="t110" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t145" to="t146" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t153" to="t77" type="FALSE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t146" to="t147" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t153" to="t61" type="FALSE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t147" to="t115" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t153" to="t154" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t148" to="t66" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
|
||||||
<connection from="t149" to="t115" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
|
||||||
<connection from="t150" to="t115" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
|
||||||
<connection from="t151" to="t115" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
|
||||||
<connection from="t152" to="t115" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
|
||||||
<connection from="t153" to="t101" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
|
||||||
<connection from="t154" to="t49" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t154" to="t49" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t155" to="t113" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t154" to="t151" type="FALSE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t156" to="t77" type="FALSE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t155" to="t156" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t156" to="t61" type="FALSE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t156" to="t100" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t156" to="t157" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t157" to="t158" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t157" to="t49" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t158" to="t160" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t157" to="t154" type="FALSE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t158" to="t159" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t158" to="t159" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t159" to="t149" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t159" to="t103" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t160" to="t149" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t160" to="t161" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t161" to="t157" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t161" to="t163" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t161" to="t68" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t161" to="t162" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t161" to="t62" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t162" to="t152" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t161" to="t150" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t163" to="t152" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t161" to="t50" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t164" to="t167" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t161" to="t118" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t165" to="t160" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t161" to="t106" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t165" to="t68" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t161" to="t53" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t165" to="t62" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t161" to="t52" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t165" to="t153" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t161" to="t51" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t165" to="t50" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t161" to="t111" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t165" to="t121" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t161" to="t89" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t165" to="t109" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t161" to="t59" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t165" to="t53" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t161" to="t60" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t165" to="t52" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t161" to="t83" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t165" to="t51" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t161" to="t155" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t165" to="t114" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t161" to="t169" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t165" to="t92" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t161" to="t152" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t165" to="t59" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t161" to="t72" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t165" to="t60" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t161" to="t91" type="FALSE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t165" to="t84" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t161" to="t124" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t165" to="t158" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t161" to="t130" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t165" to="t83" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t161" to="t130" type="FALSE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t165" to="t155" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t161" to="t168" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t165" to="t72" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t161" to="t170" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t165" to="t94" type="FALSE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t161" to="t124" type="FALSE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t165" to="t127" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t161" to="t133" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t165" to="t133" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t161" to="t133" type="FALSE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t165" to="t133" type="FALSE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t161" to="t154" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t165" to="t164" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t161" to="t165" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t165" to="t87" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t162" to="t112" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t165" to="t127" type="FALSE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t163" to="t112" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t165" to="t136" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t164" to="t112" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t165" to="t136" type="FALSE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t165" to="t172" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t165" to="t157" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t166" to="t164" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t165" to="t168" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t167" to="t164" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t166" to="t115" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t168" to="t163" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t167" to="t115" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t169" to="t92" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t168" to="t169" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t170" to="t81" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t169" to="t115" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t171" to="t71" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
|
<connection from="t171" to="t69" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
|
<connection from="t171" to="t87" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
|
<connection from="t171" to="t54" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
|
<connection from="t171" to="t86" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
|
<connection from="t171" to="t90" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
|
<connection from="t171" to="t104" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
|
<connection from="t171" to="t113" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
|
<connection from="t171" to="t88" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
|
<connection from="t171" to="t172" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
|
<connection from="t172" to="t166" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
|
<connection from="t172" to="t167" type="FALSE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
</flow>
|
</flow>
|
||||||
<flow type="flow">
|
<flow type="flow">
|
||||||
<name>NFC Tag Support</name>
|
<name>NFC Tag Support</name>
|
||||||
<group>AMADNG Info/Control Flowset v4.0.8</group>
|
<group>AMADNG Info/Control Flowset v4.0.9</group>
|
||||||
<enabled>true</enabled>
|
<enabled>true</enabled>
|
||||||
<executionPolicy>PARALLEL</executionPolicy>
|
<executionPolicy>PARALLEL</executionPolicy>
|
||||||
<triggercontainer id="t1" x="70.0" y="52.5">
|
<triggercontainer id="t1" x="70.0" y="52.5">
|
||||||
@ -4317,7 +4334,7 @@ Soll der Assistent gelöscht werden?</actioncontainer>
|
|||||||
</flow>
|
</flow>
|
||||||
<flow type="flow">
|
<flow type="flow">
|
||||||
<name>Send Data to AMADCommBridge</name>
|
<name>Send Data to AMADCommBridge</name>
|
||||||
<group>AMADNG Info/Control Flowset v4.0.8</group>
|
<group>AMADNG Info/Control Flowset v4.0.9</group>
|
||||||
<enabled>true</enabled>
|
<enabled>true</enabled>
|
||||||
<executionPolicy>PARALLEL</executionPolicy>
|
<executionPolicy>PARALLEL</executionPolicy>
|
||||||
<emergencyStopCount>900</emergencyStopCount>
|
<emergencyStopCount>900</emergencyStopCount>
|
||||||
@ -4391,7 +4408,7 @@ Soll der Assistent gelöscht werden?</actioncontainer>
|
|||||||
</flow>
|
</flow>
|
||||||
<flow type="flow">
|
<flow type="flow">
|
||||||
<name>SetCommands</name>
|
<name>SetCommands</name>
|
||||||
<group>AMADNG Info/Control Flowset v4.0.8</group>
|
<group>AMADNG Info/Control Flowset v4.0.9</group>
|
||||||
<enabled>true</enabled>
|
<enabled>true</enabled>
|
||||||
<executionPolicy>QUEUE</executionPolicy>
|
<executionPolicy>QUEUE</executionPolicy>
|
||||||
<emergencyStopCount>900</emergencyStopCount>
|
<emergencyStopCount>900</emergencyStopCount>
|
||||||
@ -4769,7 +4786,7 @@ Soll der Assistent gelöscht werden?</actioncontainer>
|
|||||||
</flow>
|
</flow>
|
||||||
<flow type="flow">
|
<flow type="flow">
|
||||||
<name>Update AMAD Flowset</name>
|
<name>Update AMAD Flowset</name>
|
||||||
<group>AMADNG Info/Control Flowset v4.0.8</group>
|
<group>AMADNG Info/Control Flowset v4.0.9</group>
|
||||||
<enabled>true</enabled>
|
<enabled>true</enabled>
|
||||||
<executionPolicy>QUEUE</executionPolicy>
|
<executionPolicy>QUEUE</executionPolicy>
|
||||||
<triggercontainer id="t1" x="420.0" y="-752.50006">
|
<triggercontainer id="t1" x="420.0" y="-752.50006">
|
||||||
@ -4831,7 +4848,7 @@ Soll der Assistent gelöscht werden?</actioncontainer>
|
|||||||
</flow>
|
</flow>
|
||||||
<flow type="flow">
|
<flow type="flow">
|
||||||
<name>VoiceControl</name>
|
<name>VoiceControl</name>
|
||||||
<group>AMADNG Info/Control Flowset v4.0.8</group>
|
<group>AMADNG Info/Control Flowset v4.0.9</group>
|
||||||
<enabled>true</enabled>
|
<enabled>true</enabled>
|
||||||
<executionPolicy>QUEUE</executionPolicy>
|
<executionPolicy>QUEUE</executionPolicy>
|
||||||
<triggercontainer id="t1" x="70.0" y="-52.5" />
|
<triggercontainer id="t1" x="70.0" y="-52.5" />
|
Loading…
Reference in New Issue
Block a user