Volume Notification, Set Screenlock im Flow umgesetzt
This commit is contained in:
parent
470226cae1
commit
46864673e2
10
74_AMAD.pm
10
74_AMAD.pm
@ -37,7 +37,7 @@ use TcpServerUtils;
|
|||||||
use Encode qw(encode);
|
use Encode qw(encode);
|
||||||
|
|
||||||
|
|
||||||
my $version = "1.1.7";
|
my $version = "1.1.8";
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@ -464,7 +464,7 @@ sub AMAD_Set($$@) {
|
|||||||
$list .= "changetoBTDevice:$btdev " if( AttrVal( $name, "setBluetoothDevice", "none" ) ne "none" );
|
$list .= "changetoBTDevice:$btdev " if( AttrVal( $name, "setBluetoothDevice", "none" ) ne "none" );
|
||||||
$list .= "activateVoiceInput:noArg ";
|
$list .= "activateVoiceInput:noArg ";
|
||||||
$list .= "screenLock:on,off " if( AttrVal( $name, "setScreenlockPIN", "none" ) ne "none" );
|
$list .= "screenLock:on,off " if( AttrVal( $name, "setScreenlockPIN", "none" ) ne "none" );
|
||||||
$list .= "notifiVolume:slider,0,1,7 ";
|
$list .= "volumeNotification:slider,0,1,7 ";
|
||||||
|
|
||||||
if( lc $cmd eq 'screenmsg'
|
if( lc $cmd eq 'screenmsg'
|
||||||
|| lc $cmd eq 'ttsmsg'
|
|| lc $cmd eq 'ttsmsg'
|
||||||
@ -484,7 +484,7 @@ sub AMAD_Set($$@) {
|
|||||||
|| lc $cmd eq 'changetobtdevice'
|
|| lc $cmd eq 'changetobtdevice'
|
||||||
|| lc $cmd eq 'clearnotificationbar'
|
|| lc $cmd eq 'clearnotificationbar'
|
||||||
|| lc $cmd eq 'activatevoiceinput'
|
|| lc $cmd eq 'activatevoiceinput'
|
||||||
|| lc $cmd eq 'notifivolume'
|
|| lc $cmd eq 'volumenotification'
|
||||||
|| lc $cmd eq 'screenlock'
|
|| lc $cmd eq 'screenlock'
|
||||||
|| lc $cmd eq 'statusrequest' ) {
|
|| lc $cmd eq 'statusrequest' ) {
|
||||||
|
|
||||||
@ -563,7 +563,7 @@ sub AMAD_SelectSetCmd($$@) {
|
|||||||
return AMAD_HTTP_POST( $hash, $url );
|
return AMAD_HTTP_POST( $hash, $url );
|
||||||
}
|
}
|
||||||
|
|
||||||
elsif( lc $cmd eq 'notifivolume' ) {
|
elsif( lc $cmd eq 'volumenotification' ) {
|
||||||
my $vol = join( " ", @data );
|
my $vol = join( " ", @data );
|
||||||
|
|
||||||
my $url = "http://" . $host . ":" . $port . "/fhem-amad/setCommands/setNotifiVolume?notifivolume=$vol";
|
my $url = "http://" . $host . ":" . $port . "/fhem-amad/setCommands/setNotifiVolume?notifivolume=$vol";
|
||||||
@ -711,7 +711,7 @@ sub AMAD_SelectSetCmd($$@) {
|
|||||||
my $PIN = AttrVal( $name, "setScreenlockPIN", undef );
|
my $PIN = AttrVal( $name, "setScreenlockPIN", undef );
|
||||||
$PIN = AMAD_decrypt($PIN);
|
$PIN = AMAD_decrypt($PIN);
|
||||||
|
|
||||||
my $url = "http://" . $host . ":" . $port . "/fhem-amad/setCommands/screenlock?mode=".$lockmod."&lockPIN=".$PIN;
|
my $url = "http://" . $host . ":" . $port . "/fhem-amad/setCommands/screenlock?lockmod=".$lockmod."&lockPIN=".$PIN;
|
||||||
|
|
||||||
readingsSingleUpdate( $hash, $cmd, $lockmod, 1 );
|
readingsSingleUpdate( $hash, $cmd, $lockmod, 1 );
|
||||||
return AMAD_HTTP_POST( $hash,$url );
|
return AMAD_HTTP_POST( $hash,$url );
|
||||||
|
@ -83,12 +83,6 @@ global_album = getString("album");</extras>
|
|||||||
<name>Sprachbefehl angefordert</name>
|
<name>Sprachbefehl angefordert</name>
|
||||||
<enabled>true</enabled>
|
<enabled>true</enabled>
|
||||||
</trigger>
|
</trigger>
|
||||||
<condition type="battery_level">
|
|
||||||
<useDefaultName>true</useDefaultName>
|
|
||||||
<name>Akku Ladestand: grösser als 0%</name>
|
|
||||||
<levelPercentage>0</levelPercentage>
|
|
||||||
<batteryLevelCondition>HIGHER_THAN</batteryLevelCondition>
|
|
||||||
</condition>
|
|
||||||
<condition type="app_task_running">
|
<condition type="app_task_running">
|
||||||
<useDefaultName>false</useDefaultName>
|
<useDefaultName>false</useDefaultName>
|
||||||
<name>App Task läuft: App3 (neuster)</name>
|
<name>App Task läuft: App3 (neuster)</name>
|
||||||
@ -277,6 +271,11 @@ global_album = getString("album");</extras>
|
|||||||
<name>Expression: param_fullscreen == "on"</name>
|
<name>Expression: param_fullscreen == "on"</name>
|
||||||
<expression>param_fullscreen == "on"</expression>
|
<expression>param_fullscreen == "on"</expression>
|
||||||
</condition>
|
</condition>
|
||||||
|
<condition type="expression">
|
||||||
|
<useDefaultName>true</useDefaultName>
|
||||||
|
<name>Expression: param_lockmod == "on"</name>
|
||||||
|
<expression>param_lockmod == "on"</expression>
|
||||||
|
</condition>
|
||||||
<condition type="expression">
|
<condition type="expression">
|
||||||
<useDefaultName>true</useDefaultName>
|
<useDefaultName>true</useDefaultName>
|
||||||
<name>Expression: param_notifyfile == "RedAlert.mp3"</name>
|
<name>Expression: param_notifyfile == "RedAlert.mp3"</name>
|
||||||
@ -337,11 +336,21 @@ global_album = getString("album");</extras>
|
|||||||
<name>Expression: setBTDevice"</name>
|
<name>Expression: setBTDevice"</name>
|
||||||
<expression>request_path == "/fhem-amad/setCommands/setbtdevice"</expression>
|
<expression>request_path == "/fhem-amad/setCommands/setbtdevice"</expression>
|
||||||
</condition>
|
</condition>
|
||||||
|
<condition type="expression">
|
||||||
|
<useDefaultName>false</useDefaultName>
|
||||||
|
<name>Expression: setNotifiVolume"</name>
|
||||||
|
<expression>request_path == "/fhem-amad/setCommands/setNotifiVolume"</expression>
|
||||||
|
</condition>
|
||||||
<condition type="expression">
|
<condition type="expression">
|
||||||
<useDefaultName>false</useDefaultName>
|
<useDefaultName>false</useDefaultName>
|
||||||
<name>Expression: setScreenFullscreen"</name>
|
<name>Expression: setScreenFullscreen"</name>
|
||||||
<expression>request_path == "/fhem-amad/setCommands/setScreenFullscreen"</expression>
|
<expression>request_path == "/fhem-amad/setCommands/setScreenFullscreen"</expression>
|
||||||
</condition>
|
</condition>
|
||||||
|
<condition type="expression">
|
||||||
|
<useDefaultName>false</useDefaultName>
|
||||||
|
<name>Expression: setScreenlock"</name>
|
||||||
|
<expression>request_path == "/fhem-amad/setCommands/screenlock"</expression>
|
||||||
|
</condition>
|
||||||
<condition type="expression">
|
<condition type="expression">
|
||||||
<useDefaultName>false</useDefaultName>
|
<useDefaultName>false</useDefaultName>
|
||||||
<name>Expression: setScreenOnOff"</name>
|
<name>Expression: setScreenOnOff"</name>
|
||||||
@ -416,6 +425,14 @@ global_album = getString("album");</extras>
|
|||||||
<useDefaultName>true</useDefaultName>
|
<useDefaultName>true</useDefaultName>
|
||||||
<name>Musik Aktiv</name>
|
<name>Musik Aktiv</name>
|
||||||
</condition>
|
</condition>
|
||||||
|
<condition type="power_connected">
|
||||||
|
<useDefaultName>true</useDefaultName>
|
||||||
|
<name>Stromversorgung: Angeschlossen</name>
|
||||||
|
<powerConnected>true</powerConnected>
|
||||||
|
<chargingACAdapter>true</chargingACAdapter>
|
||||||
|
<chargingUSB>true</chargingUSB>
|
||||||
|
<chargingWireless>true</chargingWireless>
|
||||||
|
</condition>
|
||||||
<condition type="wifi_connected">
|
<condition type="wifi_connected">
|
||||||
<useDefaultName>true</useDefaultName>
|
<useDefaultName>true</useDefaultName>
|
||||||
<name>WLAN Verbunden: Alle SSIDs</name>
|
<name>WLAN Verbunden: Alle SSIDs</name>
|
||||||
@ -425,7 +442,7 @@ global_album = getString("album");</extras>
|
|||||||
<action type="input_speech">
|
<action type="input_speech">
|
||||||
<useDefaultName>false</useDefaultName>
|
<useDefaultName>false</useDefaultName>
|
||||||
<name>AMAD Voice Control</name>
|
<name>AMAD Voice Control</name>
|
||||||
<showUI>false</showUI>
|
<showUI>true</showUI>
|
||||||
<prompt></prompt>
|
<prompt></prompt>
|
||||||
<defineLanguage>true</defineLanguage>
|
<defineLanguage>true</defineLanguage>
|
||||||
<language>de-DE</language>
|
<language>de-DE</language>
|
||||||
@ -711,7 +728,7 @@ androidVersion = "4.1 Jelly Bean"
|
|||||||
<action type="write_http_response_text">
|
<action type="write_http_response_text">
|
||||||
<useDefaultName>false</useDefaultName>
|
<useDefaultName>false</useDefaultName>
|
||||||
<name>HTTP Response Information</name>
|
<name>HTTP Response Information</name>
|
||||||
<text>powerLevel@@{battery_percentage}@@@@powerPlugged@@{battery_plugged}@@@@volumeMusikBluetooth@@{volumeMusikBluetooth}@@@@volumeMusikSpeaker@@{volumeMusikSpeaker}@@@@screenBrightness@@{screenBrightness}@@@@nextAlarmTime@@{next_alarmtime}@@@@nextAlarmDay@@{next_alarmday}@@@@screen@@{screen_state}@@@@automagicState@@{notification_text}@@@@screenOrientation@@{screen_orientation}@@@@currentMusicTrack@@{global_track}@@@@currentMusicAlbum@@{global_album}@@@@currentMusicArtist@@{global_artist}@@@@bluetooth@@{bluetooth_state}@@@@connectedBTdevices@@{connected_devices_names}@@@@connectedBTdevicesMAC@@{connected_devices_addresses}@@@@flow_SetCommands@@{setCommandFlow_state}@@@@checkActiveTask@@{runTask}@@@@androidVersion@@{androidVersion}</text>
|
<text>powerLevel@@{battery_percentage}@@@@powerPlugged@@{battery_plugged}@@@@volumeMusikBluetooth@@{volumeMusikBluetooth}@@@@volumeMusikSpeaker@@{volumeMusikSpeaker}@@@@screenBrightness@@{screenBrightness}@@@@nextAlarmTime@@{next_alarmtime}@@@@nextAlarmDay@@{next_alarmday}@@@@screen@@{screen_state}@@@@automagicState@@{notification_text}@@@@screenOrientation@@{screen_orientation}@@@@currentMusicTrack@@{global_track}@@@@currentMusicAlbum@@{global_album}@@@@currentMusicArtist@@{global_artist}@@@@bluetooth@@{bluetooth_state}@@@@connectedBTdevices@@{connected_devices_names}@@@@connectedBTdevicesMAC@@{connected_devices_addresses}@@@@flow_SetCommands@@{setCommandFlow_state}@@@@checkActiveTask@@{runTask}@@@@androidVersion@@{androidVersion}@@@@volumeNotification@@{volumeNotification}</text>
|
||||||
<replaceVariables>true</replaceVariables>
|
<replaceVariables>true</replaceVariables>
|
||||||
<contentType>text/plain</contentType>
|
<contentType>text/plain</contentType>
|
||||||
</action>
|
</action>
|
||||||
@ -748,6 +765,13 @@ androidVersion = "4.1 Jelly Bean"
|
|||||||
<settingName>volume_music_speaker</settingName>
|
<settingName>volume_music_speaker</settingName>
|
||||||
<variable>volumeMusikSpeaker</variable>
|
<variable>volumeMusikSpeaker</variable>
|
||||||
</action>
|
</action>
|
||||||
|
<action type="init_variable_system_setting">
|
||||||
|
<useDefaultName>false</useDefaultName>
|
||||||
|
<name>Initialisiere Variable Systemeinstellung: volumeNotification</name>
|
||||||
|
<settingCategory>SYSTEM</settingCategory>
|
||||||
|
<settingName>volume_ring_speaker</settingName>
|
||||||
|
<variable>volumeNotification</variable>
|
||||||
|
</action>
|
||||||
<action type="execute_root_command">
|
<action type="execute_root_command">
|
||||||
<useDefaultName>true</useDefaultName>
|
<useDefaultName>true</useDefaultName>
|
||||||
<name>Kommandozeilenbefehl als Root ausführen: getevent -c 1 in </name>
|
<name>Kommandozeilenbefehl als Root ausführen: getevent -c 1 in </name>
|
||||||
@ -758,17 +782,9 @@ androidVersion = "4.1 Jelly Bean"
|
|||||||
<variableStderr>stderr</variableStderr>
|
<variableStderr>stderr</variableStderr>
|
||||||
<variableExitCode>exit_code</variableExitCode>
|
<variableExitCode>exit_code</variableExitCode>
|
||||||
</action>
|
</action>
|
||||||
<action type="set_audio_stream_volume">
|
|
||||||
<useDefaultName>true</useDefaultName>
|
|
||||||
<name>Lautstärke einstellen: Benachrichtigung auf Level 7</name>
|
|
||||||
<audioStreamType>NOTIFICATION</audioStreamType>
|
|
||||||
<volumeIndex>7</volumeIndex>
|
|
||||||
<playSound>false</playSound>
|
|
||||||
<showUI>false</showUI>
|
|
||||||
</action>
|
|
||||||
<action type="restore_audio_stream_volume">
|
<action type="restore_audio_stream_volume">
|
||||||
<useDefaultName>false</useDefaultName>
|
<useDefaultName>false</useDefaultName>
|
||||||
<name>Lautstärken setzen Benachrichtigung</name>
|
<name>Lautstärken setzen param_notifivolume</name>
|
||||||
<restoreVolumeAlarm>false</restoreVolumeAlarm>
|
<restoreVolumeAlarm>false</restoreVolumeAlarm>
|
||||||
<variableVolumeAlarm>global_volume_alarm</variableVolumeAlarm>
|
<variableVolumeAlarm>global_volume_alarm</variableVolumeAlarm>
|
||||||
<restoreVolumeDTMF>false</restoreVolumeDTMF>
|
<restoreVolumeDTMF>false</restoreVolumeDTMF>
|
||||||
@ -776,7 +792,7 @@ androidVersion = "4.1 Jelly Bean"
|
|||||||
<restoreVolumeMusic>false</restoreVolumeMusic>
|
<restoreVolumeMusic>false</restoreVolumeMusic>
|
||||||
<variableVolumeMusic>param_volume</variableVolumeMusic>
|
<variableVolumeMusic>param_volume</variableVolumeMusic>
|
||||||
<restoreVolumeNotification>true</restoreVolumeNotification>
|
<restoreVolumeNotification>true</restoreVolumeNotification>
|
||||||
<variableVolumeNotification>global_volume_notification</variableVolumeNotification>
|
<variableVolumeNotification>param_notifivolume</variableVolumeNotification>
|
||||||
<restoreVolumeRing>false</restoreVolumeRing>
|
<restoreVolumeRing>false</restoreVolumeRing>
|
||||||
<variableVolumeRing>global_volume_ring</variableVolumeRing>
|
<variableVolumeRing>global_volume_ring</variableVolumeRing>
|
||||||
<restoreVolumeSystem>false</restoreVolumeSystem>
|
<restoreVolumeSystem>false</restoreVolumeSystem>
|
||||||
@ -810,28 +826,6 @@ androidVersion = "4.1 Jelly Bean"
|
|||||||
<restoreInterruptionsMode>false</restoreInterruptionsMode>
|
<restoreInterruptionsMode>false</restoreInterruptionsMode>
|
||||||
<variableInterruptionsMode>global_interruptions_mode</variableInterruptionsMode>
|
<variableInterruptionsMode>global_interruptions_mode</variableInterruptionsMode>
|
||||||
</action>
|
</action>
|
||||||
<action type="store_audio_stream_volume">
|
|
||||||
<useDefaultName>true</useDefaultName>
|
|
||||||
<name>Lautstärken Speichern</name>
|
|
||||||
<storeVolumeAlarm>false</storeVolumeAlarm>
|
|
||||||
<variableVolumeAlarm>global_volume_alarm</variableVolumeAlarm>
|
|
||||||
<storeVolumeDTMF>false</storeVolumeDTMF>
|
|
||||||
<variableVolumeDTMF>global_volume_dtmf</variableVolumeDTMF>
|
|
||||||
<storeVolumeMusic>false</storeVolumeMusic>
|
|
||||||
<variableVolumeMusic>global_volume_music</variableVolumeMusic>
|
|
||||||
<storeVolumeNotification>true</storeVolumeNotification>
|
|
||||||
<variableVolumeNotification>global_volume_notification</variableVolumeNotification>
|
|
||||||
<storeVolumeRing>false</storeVolumeRing>
|
|
||||||
<variableVolumeRing>global_volume_ring</variableVolumeRing>
|
|
||||||
<storeVolumeSystem>false</storeVolumeSystem>
|
|
||||||
<variableVolumeSystem>global_volume_system</variableVolumeSystem>
|
|
||||||
<storeVolumeVoiceCall>false</storeVolumeVoiceCall>
|
|
||||||
<variableVolumeVoiceCall>global_volume_voice_call</variableVolumeVoiceCall>
|
|
||||||
<storeRingerMode>false</storeRingerMode>
|
|
||||||
<variableRingerMode>global_ringer_mode</variableRingerMode>
|
|
||||||
<storeInterruptionsMode>false</storeInterruptionsMode>
|
|
||||||
<variableInterruptionsMode>global_interruptions_mode</variableInterruptionsMode>
|
|
||||||
</action>
|
|
||||||
<action type="reboot">
|
<action type="reboot">
|
||||||
<useDefaultName>true</useDefaultName>
|
<useDefaultName>true</useDefaultName>
|
||||||
<name>Neustart </name>
|
<name>Neustart </name>
|
||||||
@ -1164,6 +1158,22 @@ FHEMCMD: voiceinputvalue</customHTTPHeaders>
|
|||||||
<includeFlowNamePatternList>SetCommands</includeFlowNamePatternList>
|
<includeFlowNamePatternList>SetCommands</includeFlowNamePatternList>
|
||||||
<excludeFlowNamePatternList></excludeFlowNamePatternList>
|
<excludeFlowNamePatternList></excludeFlowNamePatternList>
|
||||||
</action>
|
</action>
|
||||||
|
<action type="set_lock_password">
|
||||||
|
<useDefaultName>true</useDefaultName>
|
||||||
|
<name>Setze Lock PIN/Passwort: PIN/Passwort zurücksetzen</name>
|
||||||
|
<reset>true</reset>
|
||||||
|
<lockType>PIN</lockType>
|
||||||
|
<manual>false</manual>
|
||||||
|
<variableName>param_lockPIN</variableName>
|
||||||
|
</action>
|
||||||
|
<action type="set_lock_password">
|
||||||
|
<useDefaultName>true</useDefaultName>
|
||||||
|
<name>Setze Lock PIN/Passwort: Setze PIN von Variable param_lockpin</name>
|
||||||
|
<reset>false</reset>
|
||||||
|
<lockType>PIN</lockType>
|
||||||
|
<manual>false</manual>
|
||||||
|
<variableName>param_lockpin</variableName>
|
||||||
|
</action>
|
||||||
<action type="set_system_setting">
|
<action type="set_system_setting">
|
||||||
<useDefaultName>true</useDefaultName>
|
<useDefaultName>true</useDefaultName>
|
||||||
<name>Setze Systemeinstellung: System screen_brightness auf {param_brightness}</name>
|
<name>Setze Systemeinstellung: System screen_brightness auf {param_brightness}</name>
|
||||||
@ -1260,7 +1270,7 @@ FHEMCMD: statusrequest</customHTTPHeaders>
|
|||||||
</action>
|
</action>
|
||||||
<flow type="flow">
|
<flow type="flow">
|
||||||
<name>Informations</name>
|
<name>Informations</name>
|
||||||
<group>FHEM Info / Steuerung über AMAD Modul v1.0.0</group>
|
<group>FHEM Info / Steuerung über AMAD Modul v1.1.x</group>
|
||||||
<enabled>true</enabled>
|
<enabled>true</enabled>
|
||||||
<executionPolicy>QUEUE</executionPolicy>
|
<executionPolicy>QUEUE</executionPolicy>
|
||||||
<emergencyStopCount>240</emergencyStopCount>
|
<emergencyStopCount>240</emergencyStopCount>
|
||||||
@ -1291,98 +1301,114 @@ FHEMCMD: statusrequest</customHTTPHeaders>
|
|||||||
<actioncontainer id="t21" x="2135.0" y="1557.5">Script: screen_orientation = "auto"</actioncontainer>
|
<actioncontainer id="t21" x="2135.0" y="1557.5">Script: screen_orientation = "auto"</actioncontainer>
|
||||||
<actioncontainer id="t22" x="2345.0" y="1557.5">Script: screen_orientation = "portrait"</actioncontainer>
|
<actioncontainer id="t22" x="2345.0" y="1557.5">Script: screen_orientation = "portrait"</actioncontainer>
|
||||||
<actioncontainer id="t23" x="2555.0" y="1557.5">Script: screen_orientation = "landscape"</actioncontainer>
|
<actioncontainer id="t23" x="2555.0" y="1557.5">Script: screen_orientation = "landscape"</actioncontainer>
|
||||||
<actioncontainer id="t24" x="1015.0" y="2187.5">HTTP Response Information</actioncontainer>
|
<conditioncontainer id="t24" x="2450.0" y="927.5">Display Orientierung: Portrait</conditioncontainer>
|
||||||
<conditioncontainer id="t25" x="2450.0" y="927.5">Display Orientierung: Portrait</conditioncontainer>
|
<actioncontainer id="t25" x="-1085.0" y="1557.5">Script: runTask = "0"</actioncontainer>
|
||||||
<actioncontainer id="t26" x="-1085.0" y="1557.5">Script: runTask = "0"</actioncontainer>
|
<conditioncontainer id="t26" x="-980.0" y="1172.5">App Task läuft: {header_activetask} (neuster)</conditioncontainer>
|
||||||
<conditioncontainer id="t27" x="-980.0" y="1172.5">App Task läuft: {header_activetask} (neuster)</conditioncontainer>
|
<conditioncontainer id="t27" x="-1295.0" y="927.5">Expression: getAndroidSDKVersion() >= "19"</conditioncontainer>
|
||||||
<conditioncontainer id="t28" x="-1295.0" y="927.5">Expression: getAndroidSDKVersion() >= "19"</conditioncontainer>
|
<conditioncontainer id="t28" x="-1505.0" y="612.5">Expression: header_activetask != "none"</conditioncontainer>
|
||||||
<conditioncontainer id="t29" x="-1505.0" y="612.5">Expression: header_activetask != "none"</conditioncontainer>
|
<actioncontainer id="t29" x="-1505.0" y="1557.5">Script: runTask = "null"</actioncontainer>
|
||||||
<actioncontainer id="t30" x="-1505.0" y="1557.5">Script: runTask = "null"</actioncontainer>
|
<actioncontainer id="t30" x="-1295.0" y="1557.5">Script: runTask = "not supported android version"</actioncontainer>
|
||||||
<actioncontainer id="t31" x="-1295.0" y="1557.5">Script: runTask = "not supported android version"</actioncontainer>
|
<actioncontainer id="t31" x="1890.0" y="1557.5">Script: notification_text = "not supported from your device"</actioncontainer>
|
||||||
<conditioncontainer id="t32" x="1015.0" y="-962.5">Expression: trigger == "Globale Variable: global_own_reading"</conditioncontainer>
|
<conditioncontainer id="t32" x="1715.0" y="1557.5">Benachrichtigung in Statusbar angezeigt: Automagic</conditioncontainer>
|
||||||
<actioncontainer id="t33" x="1015.0" y="-612.5">Script: global_fhemip = {header_fhemip} global_fhemdevice = {header_fhemdevice}</actioncontainer>
|
<actioncontainer id="t33" x="1540.0" y="1557.5">Script: notification_text = "Aktiviere Automagic unter Einstellungen -> Benachrichtigungen -> Benachrichtigungszugriff"</actioncontainer>
|
||||||
<actioncontainer id="t34" x="1890.0" y="1557.5">Script: notification_text = "not supported from your device"</actioncontainer>
|
<actioncontainer id="t34" x="1330.0" y="1557.5">Script: screen_state = "off"</actioncontainer>
|
||||||
<conditioncontainer id="t35" x="1715.0" y="1557.5">Benachrichtigung in Statusbar angezeigt: Automagic</conditioncontainer>
|
<actioncontainer id="t35" x="1155.0" y="1557.5">Script: screen_state = "on"</actioncontainer>
|
||||||
<actioncontainer id="t36" x="1540.0" y="1557.5">Script: notification_text = "Aktiviere Automagic unter Einstellungen -> Benachrichtigungen -> Benachrichtigungszugriff"</actioncontainer>
|
<conditioncontainer id="t36" x="1225.0" y="612.5">Display eingeschaltet</conditioncontainer>
|
||||||
<conditioncontainer id="t37" x="1015.0" y="-87.5">Akku Ladestand: grösser als 0%</conditioncontainer>
|
<conditioncontainer id="t37" x="1715.0" y="612.5">Expression: getAndroidSDKVersion() >= "19"</conditioncontainer>
|
||||||
<actioncontainer id="t38" x="1330.0" y="1557.5">Script: screen_state = "off"</actioncontainer>
|
<conditioncontainer id="t38" x="2765.0" y="1557.5">Bluetooth Gerät verbunden: Beliebiges Geräte</conditioncontainer>
|
||||||
<actioncontainer id="t39" x="1155.0" y="1557.5">Script: screen_state = "on"</actioncontainer>
|
<actioncontainer id="t39" x="2765.0" y="1242.5">Script: bluetooth_state = "on"</actioncontainer>
|
||||||
<conditioncontainer id="t40" x="1225.0" y="612.5">Display eingeschaltet</conditioncontainer>
|
<conditioncontainer id="t40" x="2765.0" y="612.5">Bluetooth eingeschaltet</conditioncontainer>
|
||||||
<conditioncontainer id="t41" x="1715.0" y="612.5">Expression: getAndroidSDKVersion() >= "19"</conditioncontainer>
|
<actioncontainer id="t41" x="2905.0" y="1557.5">Script: bluetooth_state = "off"</actioncontainer>
|
||||||
<conditioncontainer id="t42" x="2765.0" y="1557.5">Bluetooth Gerät verbunden: Beliebiges Geräte</conditioncontainer>
|
<actioncontainer id="t42" x="665.0" y="-332.5">Own Reading</actioncontainer>
|
||||||
<actioncontainer id="t43" x="2765.0" y="1242.5">Script: bluetooth_state = "on"</actioncontainer>
|
<conditioncontainer id="t43" x="1015.0" y="-962.5">Expression: trigger == "Globale Variable: global_own_reading"</conditioncontainer>
|
||||||
<conditioncontainer id="t44" x="2765.0" y="612.5">Bluetooth eingeschaltet</conditioncontainer>
|
<actioncontainer id="t44" x="1015.0" y="-612.5">Script: global_fhemip = {header_fhemip} global_fhemdevice = {header_fhemdevice}</actioncontainer>
|
||||||
<actioncontainer id="t45" x="2905.0" y="1557.5">Script: bluetooth_state = "off"</actioncontainer>
|
<actioncontainer id="t45" x="3115.0" y="612.5">Get Android Version</actioncontainer>
|
||||||
<actioncontainer id="t46" x="3115.0" y="612.5">Get Android Version</actioncontainer>
|
<actioncontainer id="t46" x="1015.0" y="2187.5">HTTP Response Information</actioncontainer>
|
||||||
<actioncontainer id="t47" x="665.0" y="-332.5">Own Reading</actioncontainer>
|
<conditioncontainer id="t47" x="1015.0" y="-87.5">Stromversorgung: Angeschlossen</conditioncontainer>
|
||||||
|
<actioncontainer id="t48" x="3325.0" y="612.5">Initialisiere Variable Systemeinstellung: volumeNotification</actioncontainer>
|
||||||
<connection from="t1" to="t9" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t1" to="t9" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t2" to="t19" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t2" to="t19" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t2" to="t20" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t2" to="t20" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t3" to="t24" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t3" to="t46" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t4" to="t24" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t4" to="t46" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t5" to="t24" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t5" to="t46" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t6" to="t17" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t6" to="t17" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t6" to="t16" type="FALSE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t6" to="t16" type="FALSE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t7" to="t18" type="FALSE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t7" to="t18" type="FALSE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t8" to="t37" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t8" to="t47" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t9" to="t10" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t9" to="t10" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t9" to="t32" type="FALSE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t9" to="t43" type="FALSE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t10" to="t12" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t10" to="t12" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t11" to="t47" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t11" to="t42" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t13" to="t25" type="FALSE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t13" to="t24" type="FALSE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t13" to="t21" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t13" to="t21" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t14" to="t24" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t14" to="t46" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t16" to="t24" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t16" to="t46" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t16" to="t15" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t16" to="t15" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t17" to="t24" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t17" to="t46" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t18" to="t24" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t18" to="t46" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t19" to="t24" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t19" to="t46" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t20" to="t24" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t20" to="t46" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t21" to="t24" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t21" to="t46" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t22" to="t24" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t22" to="t46" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t23" to="t24" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t23" to="t46" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t25" to="t22" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t24" to="t22" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t25" to="t23" type="FALSE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t24" to="t23" type="FALSE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t26" to="t24" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t25" to="t46" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t27" to="t14" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t26" to="t14" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t27" to="t26" type="FALSE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t26" to="t25" type="FALSE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
|
<connection from="t27" to="t26" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
|
<connection from="t27" to="t30" type="FALSE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
|
<connection from="t28" to="t29" type="FALSE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t28" to="t27" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t28" to="t27" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t28" to="t31" type="FALSE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t29" to="t46" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t29" to="t30" type="FALSE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t30" to="t46" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t29" to="t28" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t31" to="t46" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t30" to="t24" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t32" to="t33" type="EXCEPTION" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t31" to="t24" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t32" to="t46" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t32" to="t33" type="FALSE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t33" to="t46" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t32" to="t11" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t34" to="t46" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t33" to="t8" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t35" to="t46" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t34" to="t24" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t36" to="t35" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t35" to="t36" type="EXCEPTION" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t36" to="t34" type="FALSE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t35" to="t24" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t37" to="t31" type="FALSE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t36" to="t24" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t37" to="t32" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t37" to="t5" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t38" to="t46" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t37" to="t4" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t39" to="t38" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t37" to="t3" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
|
||||||
<connection from="t37" to="t2" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
|
||||||
<connection from="t37" to="t40" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
|
||||||
<connection from="t37" to="t13" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
|
||||||
<connection from="t37" to="t7" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
|
||||||
<connection from="t37" to="t44" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
|
||||||
<connection from="t37" to="t6" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
|
||||||
<connection from="t37" to="t29" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
|
||||||
<connection from="t37" to="t46" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
|
||||||
<connection from="t37" to="t41" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
|
||||||
<connection from="t38" to="t24" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
|
||||||
<connection from="t39" to="t24" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
|
||||||
<connection from="t40" to="t39" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t40" to="t39" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t40" to="t38" type="FALSE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t40" to="t41" type="FALSE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t41" to="t34" type="FALSE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t41" to="t46" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t41" to="t35" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t43" to="t44" type="FALSE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t42" to="t24" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t43" to="t11" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t43" to="t42" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t44" to="t8" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t44" to="t43" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t45" to="t46" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t44" to="t45" type="FALSE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t47" to="t5" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t45" to="t24" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t47" to="t4" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t46" to="t24" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t47" to="t3" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
|
<connection from="t47" to="t2" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
|
<connection from="t47" to="t36" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
|
<connection from="t47" to="t13" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
|
<connection from="t47" to="t7" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
|
<connection from="t47" to="t40" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
|
<connection from="t47" to="t6" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
|
<connection from="t47" to="t28" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
|
<connection from="t47" to="t45" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
|
<connection from="t47" to="t37" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
|
<connection from="t47" to="t28" type="FALSE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
|
<connection from="t47" to="t6" type="FALSE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
|
<connection from="t47" to="t7" type="FALSE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
|
<connection from="t47" to="t5" type="FALSE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
|
<connection from="t47" to="t4" type="FALSE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
|
<connection from="t47" to="t3" type="FALSE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
|
<connection from="t47" to="t2" type="FALSE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
|
<connection from="t47" to="t36" type="FALSE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
|
<connection from="t47" to="t37" type="FALSE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
|
<connection from="t47" to="t13" type="FALSE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
|
<connection from="t47" to="t40" type="FALSE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
|
<connection from="t47" to="t45" type="FALSE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
|
<connection from="t47" to="t48" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
|
<connection from="t47" to="t48" type="FALSE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
|
<connection from="t48" to="t46" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
</flow>
|
</flow>
|
||||||
<flow type="flow">
|
<flow type="flow">
|
||||||
<name>Meldung Display An</name>
|
<name>Meldung Display An</name>
|
||||||
@ -1445,250 +1471,257 @@ FHEMCMD: statusrequest</customHTTPHeaders>
|
|||||||
</flow>
|
</flow>
|
||||||
<flow type="flow">
|
<flow type="flow">
|
||||||
<name>SetCommands</name>
|
<name>SetCommands</name>
|
||||||
<group>FHEM Info / Steuerung über AMAD Modul v1.0.0</group>
|
<group>FHEM Info / Steuerung über AMAD Modul v1.1.x</group>
|
||||||
<enabled>true</enabled>
|
<enabled>true</enabled>
|
||||||
<executionPolicy>QUEUE</executionPolicy>
|
<executionPolicy>QUEUE</executionPolicy>
|
||||||
<emergencyStopCount>240</emergencyStopCount>
|
<emergencyStopCount>240</emergencyStopCount>
|
||||||
<triggercontainer id="t1" x="-805.0" y="-2572.5">
|
<conditioncontainer id="t1" x="-1435.0" y="367.5">Expression: param_screen=="on"</conditioncontainer>
|
||||||
|
<conditioncontainer id="t2" x="-1015.0" y="-122.5">Expression: setBrightness"</conditioncontainer>
|
||||||
|
<conditioncontainer id="t3" x="-805.0" y="-122.5">Expression: setAlarm"</conditioncontainer>
|
||||||
|
<conditioncontainer id="t4" x="-595.0" y="-122.5">Expression: screenMsg"</conditioncontainer>
|
||||||
|
<actioncontainer id="t5" x="-385.0" y="892.5">URL in Browser öffnen: {param_url} (mit Chrome)</actioncontainer>
|
||||||
|
<actioncontainer id="t6" x="-595.0" y="892.5">Benachrichtigung auf Bildschirm: {param_message} (lange)</actioncontainer>
|
||||||
|
<conditioncontainer id="t7" x="770.0" y="-122.5">Expression: setScreenFullscreen"</conditioncontainer>
|
||||||
|
<conditioncontainer id="t8" x="1505.0" y="577.5">Expression: param_orientation == "auto"</conditioncontainer>
|
||||||
|
<actioncontainer id="t9" x="1295.0" y="892.5">Setze Display Orientierung: Portrait</actioncontainer>
|
||||||
|
<actioncontainer id="t10" x="1085.0" y="892.5">Setze Display Orientierung: Landscape</actioncontainer>
|
||||||
|
<conditioncontainer id="t11" x="1085.0" y="577.5">Expression: param_orientation == "landscape"</conditioncontainer>
|
||||||
|
<actioncontainer id="t12" x="665.0" y="892.5">Setze Vollbild Modus: Navigation nicht anzeigen</actioncontainer>
|
||||||
|
<actioncontainer id="t13" x="875.0" y="892.5">Setze Vollbild Modus: Auf Default zurücksetzen</actioncontainer>
|
||||||
|
<conditioncontainer id="t14" x="455.0" y="577.5">Expression: param_button == "back"</conditioncontainer>
|
||||||
|
<conditioncontainer id="t15" x="245.0" y="577.5">Expression: param_button == "next"</conditioncontainer>
|
||||||
|
<actioncontainer id="t16" x="1505.0" y="892.5">Setze Display Orientierung: Auf Default zurücksetzen</actioncontainer>
|
||||||
|
<conditioncontainer id="t17" x="35.0" y="577.5">Expression: param_button == "play"</conditioncontainer>
|
||||||
|
<conditioncontainer id="t18" x="140.0" y="-122.5">Expression: mediaPlayer"</conditioncontainer>
|
||||||
|
<conditioncontainer id="t19" x="-175.0" y="577.5">Expression: param_button == "stop"</conditioncontainer>
|
||||||
|
<conditioncontainer id="t20" x="-1645.0" y="367.5">Expression: param_screen=="off"</conditioncontainer>
|
||||||
|
<conditioncontainer id="t21" x="-1540.0" y="-122.5">Expression: setScreenOnOff"</conditioncontainer>
|
||||||
|
<conditioncontainer id="t22" x="-2065.0" y="577.5">App Task läuft: App5 (neuster)</conditioncontainer>
|
||||||
|
<conditioncontainer id="t23" x="-2065.0" y="367.5">Expression: App5</conditioncontainer>
|
||||||
|
<conditioncontainer id="t24" x="-2275.0" y="367.5">Expression: App4</conditioncontainer>
|
||||||
|
<conditioncontainer id="t25" x="-2485.0" y="577.5">App Task läuft: App3 (neuster)</conditioncontainer>
|
||||||
|
<conditioncontainer id="t26" x="-2485.0" y="367.5">Expression: App3</conditioncontainer>
|
||||||
|
<actioncontainer id="t27" x="-2485.0" y="892.5">App Starten: App3</actioncontainer>
|
||||||
|
<actioncontainer id="t28" x="-2275.0" y="892.5">App Starten: App4</actioncontainer>
|
||||||
|
<conditioncontainer id="t29" x="-2275.0" y="577.5">App Task läuft: App4 (neuster)</conditioncontainer>
|
||||||
|
<conditioncontainer id="t30" x="-2695.0" y="367.5">Expression: tuneinradio</conditioncontainer>
|
||||||
|
<conditioncontainer id="t31" x="-2695.0" y="577.5">App Task läuft: tuneinradio (neuster)</conditioncontainer>
|
||||||
|
<actioncontainer id="t32" x="-2695.0" y="892.5">App Starten: tuneinradio</actioncontainer>
|
||||||
|
<actioncontainer id="t33" x="-2065.0" y="892.5">App Starten: App5</actioncontainer>
|
||||||
|
<conditioncontainer id="t34" x="-2905.0" y="577.5">App Task läuft: gplay (neuster)</conditioncontainer>
|
||||||
|
<conditioncontainer id="t35" x="-2905.0" y="367.5">Expression: gplay</conditioncontainer>
|
||||||
|
<actioncontainer id="t36" x="-2905.0" y="892.5">App Starten: PlayMusic</actioncontainer>
|
||||||
|
<conditioncontainer id="t37" x="-3115.0" y="-122.5">Expression: System Command"</conditioncontainer>
|
||||||
|
<actioncontainer id="t38" x="-3115.0" y="892.5">Neustart </actioncontainer>
|
||||||
|
<conditioncontainer id="t39" x="-1225.0" y="-2012.5">Flow Aktiv: Informations</conditioncontainer>
|
||||||
|
<conditioncontainer id="t40" x="-1225.0" y="-122.5">Expression: ttsMsg"</conditioncontainer>
|
||||||
|
<actioncontainer id="t41" x="-1015.0" y="892.5">Setze Systemeinstellung: System screen_brightness auf {param_brightness}</actioncontainer>
|
||||||
|
<actioncontainer id="t42" x="-1435.0" y="892.5">Schalte Display ein: Hell für 120s</actioncontainer>
|
||||||
|
<actioncontainer id="t43" x="1190.0" y="1032.5">Display automatisch drehen ein-/ausschalten: Aus</actioncontainer>
|
||||||
|
<actioncontainer id="t44" x="1505.0" y="1032.5">Display automatisch drehen ein-/ausschalten: Ein</actioncontainer>
|
||||||
|
<actioncontainer id="t45" x="-805.0" y="892.5">Setze Alarm: um {param_hour}:{param_minute}</actioncontainer>
|
||||||
|
<conditioncontainer id="t46" x="1295.0" y="-122.5">Expression: setScreenOrientation"</conditioncontainer>
|
||||||
|
<conditioncontainer id="t47" x="875.0" y="577.5">Expression: param_fullscreen == "off"</conditioncontainer>
|
||||||
|
<conditioncontainer id="t48" x="665.0" y="577.5">Expression: param_fullscreen == "on"</conditioncontainer>
|
||||||
|
<conditioncontainer id="t49" x="1820.0" y="-122.5">Expression: setBluetooth"</conditioncontainer>
|
||||||
|
<actioncontainer id="t50" x="-1225.0" y="892.5">Sprachausgabe: {param_message}</actioncontainer>
|
||||||
|
<conditioncontainer id="t51" x="1715.0" y="577.5">Expression: param_bluetooth == "off"</conditioncontainer>
|
||||||
|
<conditioncontainer id="t52" x="1925.0" y="577.5">Expression: param_bluetooth == "on"</conditioncontainer>
|
||||||
|
<actioncontainer id="t53" x="1925.0" y="892.5">Bluetooth ein-/ausschalten: Ein</actioncontainer>
|
||||||
|
<conditioncontainer id="t54" x="-2485.0" y="-122.5">Expression: openApp"</conditioncontainer>
|
||||||
|
<conditioncontainer id="t55" x="-3115.0" y="367.5">Expression: Reboot</conditioncontainer>
|
||||||
|
<actioncontainer id="t56" x="-3535.0" y="892.5">Benachrichtigung aus Statusbar entfernen: Alle</actioncontainer>
|
||||||
|
<conditioncontainer id="t57" x="-3535.0" y="367.5">Expression: All</conditioncontainer>
|
||||||
|
<actioncontainer id="t58" x="-3745.0" y="892.5">Benachrichtigung aus Statusbar entfernen: Alle (Automagic)</actioncontainer>
|
||||||
|
<conditioncontainer id="t59" x="-3745.0" y="367.5">Expression: Automagic</conditioncontainer>
|
||||||
|
<actioncontainer id="t60" x="-1470.0" y="-1557.5">Setze Flow Status: Aktivieren Informations</actioncontainer>
|
||||||
|
<actioncontainer id="t61" x="-1330.0" y="-1802.5">Script: informationFlow_state = "inaktiv"</actioncontainer>
|
||||||
|
<conditioncontainer id="t62" x="2135.0" y="52.5">Bluetooth eingeschaltet</conditioncontainer>
|
||||||
|
<actioncontainer id="t63" x="2345.0" y="332.5">Bluetooth Gerät verbinden/trennen: Trennen Advanced Audio Distribution {param_btdeviceone}</actioncontainer>
|
||||||
|
<actioncontainer id="t64" x="2345.0" y="472.5">Bluetooth Gerät verbinden/trennen: Trennen Eingabegerät {param_btdeviceone}</actioncontainer>
|
||||||
|
<actioncontainer id="t65" x="2345.0" y="612.5">Bluetooth Gerät verbinden/trennen: Trennen Personal Area Network {param_btdeviceone}</actioncontainer>
|
||||||
|
<actioncontainer id="t66" x="2345.0" y="962.5">Bluetooth Gerät verbinden/trennen: Trennen Advanced Audio Distribution {param_btdevicetwo}</actioncontainer>
|
||||||
|
<actioncontainer id="t67" x="2345.0" y="1102.5">Bluetooth Gerät verbinden/trennen: Trennen Eingabegerät {param_btdevicetwo}</actioncontainer>
|
||||||
|
<actioncontainer id="t68" x="2345.0" y="192.5">Bluetooth Gerät verbinden/trennen: Trennen Headset {param_btdeviceone}</actioncontainer>
|
||||||
|
<actioncontainer id="t69" x="2345.0" y="822.5">Bluetooth Gerät verbinden/trennen: Trennen Headset {param_btdevicetwo}</actioncontainer>
|
||||||
|
<actioncontainer id="t70" x="2345.0" y="1242.5">Bluetooth Gerät verbinden/trennen: Trennen Personal Area Network {param_btdevicetwo}</actioncontainer>
|
||||||
|
<actioncontainer id="t71" x="2135.0" y="1032.5">Pause: 3s (Gerät wach halten)</actioncontainer>
|
||||||
|
<actioncontainer id="t72" x="2135.0" y="857.5">Bluetooth Gerät verbinden/trennen: Verbinden Advanced Audio Distribution {param_swtobtdevicemac}</actioncontainer>
|
||||||
|
<actioncontainer id="t73" x="2135.0" y="682.5">Pause: 2s (Gerät wach halten)</actioncontainer>
|
||||||
|
<actioncontainer id="t74" x="-1645.0" y="892.5">Gerät sperren</actioncontainer>
|
||||||
|
<conditioncontainer id="t75" x="-4165.0" y="-122.5">Expression: Clear Automagic Meldungen"</conditioncontainer>
|
||||||
|
<actioncontainer id="t76" x="-1120.0" y="-1802.5">Script: informationFlow_state = "aktiv"</actioncontainer>
|
||||||
|
<conditioncontainer id="t77" x="2135.0" y="-122.5">Expression: setBTDevice"</conditioncontainer>
|
||||||
|
<conditioncontainer id="t78" x="-385.0" y="-122.5">Expression: openURL"</conditioncontainer>
|
||||||
|
<actioncontainer id="t79" x="35.0" y="892.5">Audio Player steuern: Medienknopf Play (Google Play Musik)</actioncontainer>
|
||||||
|
<actioncontainer id="t80" x="245.0" y="892.5">Audio Player steuern: Medienknopf Weiter (Google Play Musik)</actioncontainer>
|
||||||
|
<actioncontainer id="t81" x="455.0" y="892.5">Audio Player steuern: Medienknopf Zurück (Google Play Musik)</actioncontainer>
|
||||||
|
<actioncontainer id="t82" x="-805.0" y="1697.5">StatusRequest</actioncontainer>
|
||||||
|
<actioncontainer id="t83" x="1715.0" y="892.5">Bluetooth ein-/ausschalten: Aus</actioncontainer>
|
||||||
|
<actioncontainer id="t84" x="-175.0" y="892.5">Audio Player steuern: Medienknopf Stopp (Google Play Musik)</actioncontainer>
|
||||||
|
<conditioncontainer id="t85" x="-3325.0" y="-122.5">Expression: notifysnd"</conditioncontainer>
|
||||||
|
<conditioncontainer id="t86" x="-3465.0" y="-647.5">Expression: param_notifyfile == "RedAlert.mp3"</conditioncontainer>
|
||||||
|
<actioncontainer id="t87" x="-3325.0" y="892.5">Sound: /storage/emulated/0/Notifications/{param_notifyfile} als Benachrichtigung</actioncontainer>
|
||||||
|
<actioncontainer id="t88" x="-3325.0" y="1067.5">Notification Lautstärke Wiederherstellen</actioncontainer>
|
||||||
|
<actioncontainer id="t89" x="-1225.0" y="-1417.5">HTTP Response SetCommand</actioncontainer>
|
||||||
|
<conditioncontainer id="t90" x="-1855.0" y="-122.5">Expression: setVolume"</conditioncontainer>
|
||||||
|
<actioncontainer id="t91" x="-1855.0" y="892.5">Lautstärken setzen param_volume</actioncontainer>
|
||||||
|
<conditioncontainer id="t92" x="-629.99994" y="-2257.5">Expression: trigger == "Sprachbefehl angefordert"</conditioncontainer>
|
||||||
|
<triggercontainer id="t93" x="-805.0" y="-2712.5">
|
||||||
<trigger>HTTP Request: /fhem-amad/deviceInfo/</trigger>
|
<trigger>HTTP Request: /fhem-amad/deviceInfo/</trigger>
|
||||||
<trigger>HTTP Request: /fhem-amad/setCommands/*</trigger>
|
<trigger>HTTP Request: /fhem-amad/setCommands/*</trigger>
|
||||||
<trigger>Sprachbefehl angefordert</trigger>
|
<trigger>Sprachbefehl angefordert</trigger>
|
||||||
</triggercontainer>
|
</triggercontainer>
|
||||||
<conditioncontainer id="t2" x="-1435.0" y="367.5">Expression: param_screen=="on"</conditioncontainer>
|
<conditioncontainer id="t94" x="-4375.0" y="-122.5">Expression: setNotifiVolume"</conditioncontainer>
|
||||||
<conditioncontainer id="t3" x="-1015.0" y="-122.5">Expression: setBrightness"</conditioncontainer>
|
<conditioncontainer id="t95" x="2555.0" y="-122.5">Expression: setVoiceCommand"</conditioncontainer>
|
||||||
<conditioncontainer id="t4" x="-805.0" y="-122.5">Expression: setAlarm"</conditioncontainer>
|
<actioncontainer id="t96" x="2555.0" y="892.5">Flows ausführen: VoiceControl</actioncontainer>
|
||||||
<conditioncontainer id="t5" x="-595.0" y="-122.5">Expression: screenMsg"</conditioncontainer>
|
<conditioncontainer id="t97" x="1295.0" y="577.5">Expression: param_orientation == "portrait"</conditioncontainer>
|
||||||
<actioncontainer id="t6" x="-385.0" y="892.5">URL in Browser öffnen: {param_url} (mit Chrome)</actioncontainer>
|
<actioncontainer id="t98" x="2975.0" y="892.5">Setze Lock PIN/Passwort: PIN/Passwort zurücksetzen</actioncontainer>
|
||||||
<actioncontainer id="t7" x="-595.0" y="892.5">Benachrichtigung auf Bildschirm: {param_message} (lange)</actioncontainer>
|
<conditioncontainer id="t99" x="2870.0" y="577.5">Expression: param_lockmod == "on"</conditioncontainer>
|
||||||
<conditioncontainer id="t8" x="770.0" y="-122.5">Expression: setScreenFullscreen"</conditioncontainer>
|
<conditioncontainer id="t100" x="2870.0" y="-122.499985">Expression: setScreenlock"</conditioncontainer>
|
||||||
<conditioncontainer id="t9" x="1505.0" y="577.5">Expression: param_orientation == "auto"</conditioncontainer>
|
<conditioncontainer id="t101" x="-805.0" y="-2047.4989">Expression: trigger == "HTTP Request: /fhem-amad/setCommands/*"</conditioncontainer>
|
||||||
<actioncontainer id="t10" x="1295.0" y="892.5">Setze Display Orientierung: Portrait</actioncontainer>
|
<actioncontainer id="t102" x="2765.0" y="892.5">Setze Lock PIN/Passwort: Setze PIN von Variable param_lockpin</actioncontainer>
|
||||||
<actioncontainer id="t11" x="1085.0" y="892.5">Setze Display Orientierung: Landscape</actioncontainer>
|
<actioncontainer id="t103" x="-3465.0" y="-472.5">Notification Lautstärke Speichern</actioncontainer>
|
||||||
<conditioncontainer id="t12" x="1085.0" y="577.5">Expression: param_orientation == "landscape"</conditioncontainer>
|
<actioncontainer id="t104" x="-3465.0" y="-297.5">NotificationLautstärke auf Level 7</actioncontainer>
|
||||||
<conditioncontainer id="t13" x="1295.0" y="577.5">Expression: param_orientation == "portrait"</conditioncontainer>
|
<actioncontainer id="t105" x="-4375.0" y="892.5">Lautstärken setzen param_notifivolume</actioncontainer>
|
||||||
<actioncontainer id="t14" x="665.0" y="892.5">Setze Vollbild Modus: Navigation nicht anzeigen</actioncontainer>
|
<connection from="t1" to="t42" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<actioncontainer id="t15" x="875.0" y="892.5">Setze Vollbild Modus: Auf Default zurücksetzen</actioncontainer>
|
<connection from="t2" to="t41" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<conditioncontainer id="t16" x="455.0" y="577.5">Expression: param_button == "back"</conditioncontainer>
|
<connection from="t3" to="t45" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<conditioncontainer id="t17" x="245.0" y="577.5">Expression: param_button == "next"</conditioncontainer>
|
<connection from="t4" to="t6" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<actioncontainer id="t18" x="1505.0" y="892.5">Setze Display Orientierung: Auf Default zurücksetzen</actioncontainer>
|
<connection from="t7" to="t48" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<conditioncontainer id="t19" x="35.0" y="577.5">Expression: param_button == "play"</conditioncontainer>
|
<connection from="t7" to="t47" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<conditioncontainer id="t20" x="140.0" y="-122.5">Expression: mediaPlayer"</conditioncontainer>
|
<connection from="t8" to="t16" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<conditioncontainer id="t21" x="-175.0" y="577.5">Expression: param_button == "stop"</conditioncontainer>
|
<connection from="t9" to="t43" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<conditioncontainer id="t22" x="-1645.0" y="367.5">Expression: param_screen=="off"</conditioncontainer>
|
<connection from="t10" to="t43" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<conditioncontainer id="t23" x="-1540.0" y="-122.5">Expression: setScreenOnOff"</conditioncontainer>
|
<connection from="t11" to="t10" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<conditioncontainer id="t24" x="-2065.0" y="577.5">App Task läuft: App5 (neuster)</conditioncontainer>
|
<connection from="t14" to="t81" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<conditioncontainer id="t25" x="-2065.0" y="367.5">Expression: App5</conditioncontainer>
|
<connection from="t15" to="t80" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<conditioncontainer id="t26" x="-2275.0" y="367.5">Expression: App4</conditioncontainer>
|
<connection from="t16" to="t44" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<conditioncontainer id="t27" x="-2485.0" y="577.5">App Task läuft: App3 (neuster)</conditioncontainer>
|
<connection from="t17" to="t79" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<conditioncontainer id="t28" x="-2485.0" y="367.5">Expression: App3</conditioncontainer>
|
<connection from="t18" to="t19" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<actioncontainer id="t29" x="-2485.0" y="892.5">App Starten: App3</actioncontainer>
|
<connection from="t18" to="t17" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<actioncontainer id="t30" x="-2275.0" y="892.5">App Starten: App4</actioncontainer>
|
<connection from="t18" to="t15" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<conditioncontainer id="t31" x="-2275.0" y="577.5">App Task läuft: App4 (neuster)</conditioncontainer>
|
<connection from="t18" to="t14" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<conditioncontainer id="t32" x="-2695.0" y="367.5">Expression: tuneinradio</conditioncontainer>
|
<connection from="t19" to="t84" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<conditioncontainer id="t33" x="-2695.0" y="577.5">App Task läuft: tuneinradio (neuster)</conditioncontainer>
|
<connection from="t20" to="t74" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<actioncontainer id="t34" x="-2695.0" y="892.5">App Starten: tuneinradio</actioncontainer>
|
<connection from="t21" to="t20" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<actioncontainer id="t35" x="-2065.0" y="892.5">App Starten: App5</actioncontainer>
|
<connection from="t21" to="t1" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<conditioncontainer id="t36" x="-2905.0" y="577.5">App Task läuft: gplay (neuster)</conditioncontainer>
|
<connection from="t22" to="t33" type="FALSE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<conditioncontainer id="t37" x="-2905.0" y="367.5">Expression: gplay</conditioncontainer>
|
|
||||||
<actioncontainer id="t38" x="-2905.0" y="892.5">App Starten: PlayMusic</actioncontainer>
|
|
||||||
<conditioncontainer id="t39" x="-3115.0" y="-122.5">Expression: System Command"</conditioncontainer>
|
|
||||||
<actioncontainer id="t40" x="-3115.0" y="892.5">Neustart </actioncontainer>
|
|
||||||
<conditioncontainer id="t41" x="-1225.0" y="-2012.5">Flow Aktiv: Informations</conditioncontainer>
|
|
||||||
<conditioncontainer id="t42" x="-1225.0" y="-122.5">Expression: ttsMsg"</conditioncontainer>
|
|
||||||
<actioncontainer id="t43" x="-1015.0" y="892.5">Setze Systemeinstellung: System screen_brightness auf {param_brightness}</actioncontainer>
|
|
||||||
<actioncontainer id="t44" x="-1435.0" y="892.5">Schalte Display ein: Hell für 120s</actioncontainer>
|
|
||||||
<actioncontainer id="t45" x="1190.0" y="1032.5">Display automatisch drehen ein-/ausschalten: Aus</actioncontainer>
|
|
||||||
<actioncontainer id="t46" x="1505.0" y="1032.5">Display automatisch drehen ein-/ausschalten: Ein</actioncontainer>
|
|
||||||
<actioncontainer id="t47" x="-805.0" y="892.5">Setze Alarm: um {param_hour}:{param_minute}</actioncontainer>
|
|
||||||
<conditioncontainer id="t48" x="1295.0" y="-122.5">Expression: setScreenOrientation"</conditioncontainer>
|
|
||||||
<conditioncontainer id="t49" x="875.0" y="577.5">Expression: param_fullscreen == "off"</conditioncontainer>
|
|
||||||
<conditioncontainer id="t50" x="665.0" y="577.5">Expression: param_fullscreen == "on"</conditioncontainer>
|
|
||||||
<conditioncontainer id="t51" x="1820.0" y="-122.5">Expression: setBluetooth"</conditioncontainer>
|
|
||||||
<conditioncontainer id="t52" x="-1855.0" y="-122.5">Expression: setVolume"</conditioncontainer>
|
|
||||||
<actioncontainer id="t53" x="-1225.0" y="892.5">Sprachausgabe: {param_message}</actioncontainer>
|
|
||||||
<conditioncontainer id="t54" x="1715.0" y="577.5">Expression: param_bluetooth == "off"</conditioncontainer>
|
|
||||||
<conditioncontainer id="t55" x="1925.0" y="577.5">Expression: param_bluetooth == "on"</conditioncontainer>
|
|
||||||
<actioncontainer id="t56" x="1925.0" y="892.5">Bluetooth ein-/ausschalten: Ein</actioncontainer>
|
|
||||||
<conditioncontainer id="t57" x="-2485.0" y="-122.5">Expression: openApp"</conditioncontainer>
|
|
||||||
<conditioncontainer id="t58" x="-3115.0" y="367.5">Expression: Reboot</conditioncontainer>
|
|
||||||
<actioncontainer id="t59" x="-3535.0" y="892.5">Benachrichtigung aus Statusbar entfernen: Alle</actioncontainer>
|
|
||||||
<conditioncontainer id="t60" x="-3535.0" y="367.5">Expression: All</conditioncontainer>
|
|
||||||
<actioncontainer id="t61" x="-3745.0" y="892.5">Benachrichtigung aus Statusbar entfernen: Alle (Automagic)</actioncontainer>
|
|
||||||
<conditioncontainer id="t62" x="-3745.0" y="367.5">Expression: Automagic</conditioncontainer>
|
|
||||||
<actioncontainer id="t63" x="-1470.0" y="-1557.5">Setze Flow Status: Aktivieren Informations</actioncontainer>
|
|
||||||
<actioncontainer id="t64" x="-1330.0" y="-1802.5">Script: informationFlow_state = "inaktiv"</actioncontainer>
|
|
||||||
<conditioncontainer id="t65" x="2135.0" y="52.5">Bluetooth eingeschaltet</conditioncontainer>
|
|
||||||
<actioncontainer id="t66" x="2345.0" y="332.5">Bluetooth Gerät verbinden/trennen: Trennen Advanced Audio Distribution {param_btdeviceone}</actioncontainer>
|
|
||||||
<actioncontainer id="t67" x="2345.0" y="472.5">Bluetooth Gerät verbinden/trennen: Trennen Eingabegerät {param_btdeviceone}</actioncontainer>
|
|
||||||
<actioncontainer id="t68" x="2345.0" y="612.5">Bluetooth Gerät verbinden/trennen: Trennen Personal Area Network {param_btdeviceone}</actioncontainer>
|
|
||||||
<actioncontainer id="t69" x="2345.0" y="962.5">Bluetooth Gerät verbinden/trennen: Trennen Advanced Audio Distribution {param_btdevicetwo}</actioncontainer>
|
|
||||||
<actioncontainer id="t70" x="2345.0" y="1102.5">Bluetooth Gerät verbinden/trennen: Trennen Eingabegerät {param_btdevicetwo}</actioncontainer>
|
|
||||||
<actioncontainer id="t71" x="2345.0" y="192.5">Bluetooth Gerät verbinden/trennen: Trennen Headset {param_btdeviceone}</actioncontainer>
|
|
||||||
<actioncontainer id="t72" x="2345.0" y="822.5">Bluetooth Gerät verbinden/trennen: Trennen Headset {param_btdevicetwo}</actioncontainer>
|
|
||||||
<actioncontainer id="t73" x="2345.0" y="1242.5">Bluetooth Gerät verbinden/trennen: Trennen Personal Area Network {param_btdevicetwo}</actioncontainer>
|
|
||||||
<actioncontainer id="t74" x="2135.0" y="1032.5">Pause: 3s (Gerät wach halten)</actioncontainer>
|
|
||||||
<actioncontainer id="t75" x="2135.0" y="857.5">Bluetooth Gerät verbinden/trennen: Verbinden Advanced Audio Distribution {param_swtobtdevicemac}</actioncontainer>
|
|
||||||
<actioncontainer id="t76" x="2135.0" y="682.5">Pause: 2s (Gerät wach halten)</actioncontainer>
|
|
||||||
<actioncontainer id="t77" x="-1645.0" y="892.5">Gerät sperren</actioncontainer>
|
|
||||||
<conditioncontainer id="t78" x="-4165.0" y="-122.5">Expression: Clear Automagic Meldungen"</conditioncontainer>
|
|
||||||
<actioncontainer id="t79" x="-1120.0" y="-1802.5">Script: informationFlow_state = "aktiv"</actioncontainer>
|
|
||||||
<conditioncontainer id="t80" x="2135.0" y="-122.5">Expression: setBTDevice"</conditioncontainer>
|
|
||||||
<conditioncontainer id="t81" x="-805.0" y="-2012.5">Expression: trigger == "HTTP Request: /fhem-amad/setCommands/*"</conditioncontainer>
|
|
||||||
<conditioncontainer id="t82" x="-805.0" y="-2187.5">Expression: trigger == "Sprachbefehl angefordert"</conditioncontainer>
|
|
||||||
<conditioncontainer id="t83" x="-385.0" y="-122.5">Expression: openURL"</conditioncontainer>
|
|
||||||
<conditioncontainer id="t84" x="2555.0" y="-122.5">Expression: setVoiceCommand"</conditioncontainer>
|
|
||||||
<actioncontainer id="t85" x="35.0" y="892.5">Audio Player steuern: Medienknopf Play (Google Play Musik)</actioncontainer>
|
|
||||||
<actioncontainer id="t86" x="245.0" y="892.5">Audio Player steuern: Medienknopf Weiter (Google Play Musik)</actioncontainer>
|
|
||||||
<actioncontainer id="t87" x="455.0" y="892.5">Audio Player steuern: Medienknopf Zurück (Google Play Musik)</actioncontainer>
|
|
||||||
<actioncontainer id="t88" x="-805.0" y="1697.5">StatusRequest</actioncontainer>
|
|
||||||
<actioncontainer id="t89" x="1715.0" y="892.5">Bluetooth ein-/ausschalten: Aus</actioncontainer>
|
|
||||||
<actioncontainer id="t90" x="-175.0" y="892.5">Audio Player steuern: Medienknopf Stopp (Google Play Musik)</actioncontainer>
|
|
||||||
<actioncontainer id="t91" x="-1855.0" y="892.5">Lautstärken setzen param_volume</actioncontainer>
|
|
||||||
<actioncontainer id="t92" x="-5810.0" y="-157.5">Lautstärke einstellen: Benachrichtigung auf Level 7</actioncontainer>
|
|
||||||
<actioncontainer id="t93" x="-5810.0" y="-332.5">Lautstärken Speichern</actioncontainer>
|
|
||||||
<conditioncontainer id="t94" x="-5810.0" y="-507.5">Expression: param_notifyfile == "RedAlert.mp3"</conditioncontainer>
|
|
||||||
<conditioncontainer id="t95" x="-3325.0" y="-122.5">Expression: notifysnd"</conditioncontainer>
|
|
||||||
<conditioncontainer id="t96" x="-3465.0" y="-647.5">Expression: param_notifyfile == "RedAlert.mp3"</conditioncontainer>
|
|
||||||
<actioncontainer id="t97" x="-5810.0" y="262.5">Lautstärken setzen Benachrichtigung</actioncontainer>
|
|
||||||
<actioncontainer id="t98" x="-3325.0" y="892.5">Sound: /storage/emulated/0/Notifications/{param_notifyfile} als Benachrichtigung</actioncontainer>
|
|
||||||
<actioncontainer id="t99" x="-3465.0" y="-297.5">NotificationLautstärke auf Level 7</actioncontainer>
|
|
||||||
<actioncontainer id="t100" x="-3465.0" y="-472.5">Notification Lautstärke Speichern</actioncontainer>
|
|
||||||
<actioncontainer id="t101" x="-3325.0" y="1067.5">Notification Lautstärke Wiederherstellen</actioncontainer>
|
|
||||||
<actioncontainer id="t102" x="-1225.0" y="-1417.5">HTTP Response SetCommand</actioncontainer>
|
|
||||||
<actioncontainer id="t103" x="2555.0" y="892.5">Flows ausführen: VoiceControl</actioncontainer>
|
|
||||||
<connection from="t1" to="t82" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
|
||||||
<connection from="t2" to="t44" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
|
||||||
<connection from="t3" to="t43" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
|
||||||
<connection from="t4" to="t47" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
|
||||||
<connection from="t5" to="t7" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
|
||||||
<connection from="t8" to="t50" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
|
||||||
<connection from="t8" to="t49" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
|
||||||
<connection from="t9" to="t18" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
|
||||||
<connection from="t10" to="t45" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
|
||||||
<connection from="t11" to="t45" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
|
||||||
<connection from="t12" to="t11" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
|
||||||
<connection from="t13" to="t10" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
|
||||||
<connection from="t16" to="t87" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
|
||||||
<connection from="t17" to="t86" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
|
||||||
<connection from="t18" to="t46" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
|
||||||
<connection from="t19" to="t85" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
|
||||||
<connection from="t20" to="t21" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
|
||||||
<connection from="t20" to="t19" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
|
||||||
<connection from="t20" to="t17" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
|
||||||
<connection from="t20" to="t16" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
|
||||||
<connection from="t21" to="t90" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
|
||||||
<connection from="t22" to="t77" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
|
||||||
<connection from="t23" to="t22" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t23" to="t22" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t23" to="t2" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t24" to="t29" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t24" to="t35" type="FALSE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t25" to="t27" type="FALSE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t25" to="t24" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t26" to="t25" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t26" to="t31" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t29" to="t28" type="FALSE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t27" to="t29" type="FALSE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t30" to="t31" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t28" to="t27" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t31" to="t32" type="FALSE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t31" to="t30" type="FALSE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t34" to="t36" type="FALSE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t32" to="t33" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t35" to="t34" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t33" to="t34" type="FALSE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t37" to="t55" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t36" to="t38" type="FALSE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t39" to="t61" type="FALSE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t37" to="t36" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t39" to="t76" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t39" to="t58" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t40" to="t50" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t41" to="t64" type="FALSE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t41" to="t82" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t41" to="t79" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t42" to="t82" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t42" to="t53" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t43" to="t82" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t43" to="t88" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t44" to="t82" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t44" to="t88" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t45" to="t82" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t45" to="t88" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t46" to="t97" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t46" to="t88" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t46" to="t11" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t47" to="t88" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t46" to="t8" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t48" to="t13" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t47" to="t13" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t48" to="t12" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t48" to="t12" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t48" to="t9" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t49" to="t52" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t49" to="t15" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t49" to="t51" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t50" to="t14" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t51" to="t83" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t51" to="t55" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t52" to="t53" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t51" to="t54" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t53" to="t82" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t52" to="t91" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t54" to="t26" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t54" to="t89" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t54" to="t35" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t55" to="t56" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t54" to="t30" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t56" to="t88" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t54" to="t24" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t57" to="t28" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t54" to="t23" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t57" to="t37" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t55" to="t38" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t57" to="t32" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t56" to="t82" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t57" to="t26" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t57" to="t56" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t57" to="t25" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t58" to="t82" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t58" to="t40" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t59" to="t58" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t59" to="t88" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t61" to="t60" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t60" to="t59" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t61" to="t89" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t61" to="t88" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t62" to="t53" type="FALSE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t62" to="t61" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t62" to="t68" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t64" to="t63" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t63" to="t64" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t64" to="t102" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t64" to="t65" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t65" to="t56" type="FALSE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t65" to="t69" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t65" to="t71" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
|
||||||
<connection from="t66" to="t67" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t66" to="t67" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t67" to="t68" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t67" to="t70" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t68" to="t72" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t68" to="t63" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t69" to="t70" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t69" to="t66" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t70" to="t73" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t70" to="t73" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t71" to="t66" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t71" to="t82" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t72" to="t69" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t72" to="t71" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t73" to="t76" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t73" to="t72" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t74" to="t88" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t74" to="t82" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t75" to="t74" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t75" to="t57" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t76" to="t75" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t75" to="t59" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t77" to="t88" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t76" to="t89" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t78" to="t60" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t77" to="t62" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t78" to="t62" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t78" to="t5" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t79" to="t102" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t83" to="t82" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t80" to="t65" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t84" to="t82" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t81" to="t39" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t85" to="t86" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t81" to="t57" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t86" to="t103" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t81" to="t52" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t86" to="t87" type="FALSE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t81" to="t23" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t87" to="t88" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t81" to="t42" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t90" to="t91" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t81" to="t3" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t91" to="t82" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t81" to="t4" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t92" to="t101" type="FALSE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t81" to="t5" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t92" to="t95" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t81" to="t83" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
|
||||||
<connection from="t81" to="t20" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
|
||||||
<connection from="t81" to="t8" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
|
||||||
<connection from="t81" to="t48" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
|
||||||
<connection from="t81" to="t41" type="FALSE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
|
||||||
<connection from="t81" to="t51" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
|
||||||
<connection from="t81" to="t95" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
|
||||||
<connection from="t81" to="t80" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
|
||||||
<connection from="t81" to="t78" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
|
||||||
<connection from="t81" to="t84" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
|
||||||
<connection from="t82" to="t81" type="FALSE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
|
||||||
<connection from="t82" to="t84" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
|
||||||
<connection from="t83" to="t6" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
|
||||||
<connection from="t84" to="t103" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
|
||||||
<connection from="t89" to="t88" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
|
||||||
<connection from="t90" to="t88" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
|
||||||
<connection from="t91" to="t88" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
|
||||||
<connection from="t93" to="t92" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t93" to="t92" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t94" to="t93" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t94" to="t105" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t95" to="t96" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t95" to="t96" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t96" to="t100" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t97" to="t9" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t96" to="t98" type="FALSE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t99" to="t102" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t98" to="t101" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t99" to="t98" type="FALSE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t99" to="t98" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t100" to="t99" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t100" to="t99" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t101" to="t37" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
|
<connection from="t101" to="t54" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
|
<connection from="t101" to="t90" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
|
<connection from="t101" to="t21" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
|
<connection from="t101" to="t40" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
|
<connection from="t101" to="t2" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
|
<connection from="t101" to="t3" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
|
<connection from="t101" to="t4" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
|
<connection from="t101" to="t78" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
|
<connection from="t101" to="t18" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
|
<connection from="t101" to="t7" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
|
<connection from="t101" to="t46" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
|
<connection from="t101" to="t39" type="FALSE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
|
<connection from="t101" to="t49" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
|
<connection from="t101" to="t85" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
|
<connection from="t101" to="t77" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
|
<connection from="t101" to="t75" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
|
<connection from="t101" to="t95" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
|
<connection from="t101" to="t94" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
|
<connection from="t101" to="t100" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
|
<connection from="t103" to="t104" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
|
<connection from="t104" to="t87" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
|
<connection from="t105" to="t82" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
</flow>
|
</flow>
|
||||||
<flow type="flow">
|
<flow type="flow">
|
||||||
<name>VoiceControl</name>
|
<name>VoiceControl</name>
|
||||||
<group>FHEM Info / Steuerung über AMAD Modul v1.0.0</group>
|
<group>FHEM Info / Steuerung über AMAD Modul v1.1.x</group>
|
||||||
<enabled>true</enabled>
|
<enabled>true</enabled>
|
||||||
<executionPolicy>QUEUE</executionPolicy>
|
<executionPolicy>QUEUE</executionPolicy>
|
||||||
<triggercontainer id="t1" x="70.0" y="-647.5" />
|
<triggercontainer id="t1" x="70.0" y="-647.5" />
|
||||||
<conditioncontainer id="t2" x="70.0" y="682.5">Expression: value != ""</conditioncontainer>
|
<conditioncontainer id="t2" x="70.0" y="682.5">Expression: value != ""</conditioncontainer>
|
||||||
<actioncontainer id="t3" x="175.0" y="962.5">Spracheingabe wurde nicht erkannt</actioncontainer>
|
<actioncontainer id="t3" x="175.0" y="962.5">Spracheingabe wurde nicht erkannt</actioncontainer>
|
||||||
<actioncontainer id="t4" x="0.0" y="1172.5">Benachrichtigung auf Bildschirm: {value} (lange)</actioncontainer>
|
<actioncontainer id="t4" x="0.0" y="1172.5">Benachrichtigung auf Bildschirm: {value} (lange)</actioncontainer>
|
||||||
<actioncontainer id="t5" x="70.0" y="437.5">AMAD Voice Control</actioncontainer>
|
<actioncontainer id="t5" x="-35.0" y="962.5">Send Voice Input Value to AMADCommBridge</actioncontainer>
|
||||||
<actioncontainer id="t6" x="-35.0" y="962.5">Send Voice Input Value to AMADCommBridge</actioncontainer>
|
<actioncontainer id="t6" x="70.0" y="437.5">AMAD Voice Control</actioncontainer>
|
||||||
<connection from="t1" to="t5" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t1" to="t6" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t2" to="t6" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t2" to="t5" type="TRUE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t2" to="t3" type="FALSE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t2" to="t3" type="FALSE" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t5" to="t2" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t5" to="t4" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
<connection from="t6" to="t4" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
<connection from="t6" to="t2" type="NORMAL" sourcePosition="SOUTH" targetPosition="NORTH" />
|
||||||
</flow>
|
</flow>
|
||||||
</data>
|
</data>
|
Loading…
x
Reference in New Issue
Block a user