Moin!
Ich würde ja gerne skriptzeilen aus dem Forum in ein IPS Skript kopieren.
Leider klappt das nicht, weder mit „rechte Maustaste“ noch mit Tastenkombi.
Habt ihr einen Tipp für mich?
VG
Marcus
Um diese Zeilen geht es aktuell…
<?php
SetValue($_IPS[‚VARIABLE‘], $_IPS[‚VALUE‘]);
If ($_IPS[‚VALUE‘]==true)
{$AcCommand="{„acState“:{„on“:true}}";}
Else
{$AcCommand="{„acState“:{„on“:false}}";}
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL,„https://home.sensibo.com/api/v2/pods/2MBXUhuw/acStates?apiKey=7A82FqICUxl66yRggTJy“);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS,
$AcCommand);
// Receive server response …
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$server_output = curl_exec($ch);
curl_close ($ch);
echo $server_output;
?>