<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[Wunschliste Blockly-Elemente]]></title><description><![CDATA[<p dir="auto">Hallo liebe Community,</p>
<p dir="auto">in einem anderen Thread kam der Wunsch nach einem neuen Blockly-Element.<br />
<img src="/assets/uploads/files/1552256520717-697ad2f0-c52d-4a4d-8c53-cbb132b4fc6a-image.png" alt="697ad2f0-c52d-4a4d-8c53-cbb132b4fc6a-image.png" class=" img-fluid img-markdown" /><br />
Da das recht gut geklappt hatte dachte ich mir ich frag mal was für Elemente ihr noch so vermisst?<br />
Oder auch Elemente die sonst nur per Javascript zu lösen sind (zum Beispiel ist auch ein Element für getIdByName() geplant).<br />
Ich schau dann mal was sich davon realisieren lässt und evtl. landet es dann im Adapter :)</p>
<p dir="auto">Also was braucht ihr noch für Blockly-Element?<br />
Falls es einen Wunsch schon gibt benutzt bitte die Vote Funktion, damit ich weiß, welche Funktion am wichtigsten ist.</p>
<p dir="auto">Aktuelle ToDo-Liste und Status:</p>
<ul>
<li>Regex Elemente (Suchen oder ersetzen) - In Planung</li>
<li>Get Name of channel above</li>
<li>Und/Oder mit variabler Anzahl - In Arbeit</li>
<li>HTTP Post request - Nachschauen wie realisierbar</li>
<li>"Fortgeschritten" überschrift für komplizierte Elemente</li>
<li>Globale Funktionen aufrufen<br />
<section class="spoiler-wrapper"><button class="spoiler-control btn btn-default">Erfolgreich erledigt:</button><section style="display:none" class="spoiler-content"></section></section></li>
<li>Datenpunkt erstellen modifizieren</li>
<li>Selector Block für IDs als Array</li>
<li>Regex für Trigger</li>
<li>"Alle Instanzen" sayit Blockly Element</li>
</ul>
]]></description><link>https://forum.iobroker.net/topic/20845/wunschliste-blockly-elemente</link><generator>RSS for Node</generator><lastBuildDate>Thu, 16 Jul 2026 23:36:54 GMT</lastBuildDate><atom:link href="https://forum.iobroker.net/topic/20845.rss" rel="self" type="application/rss+xml"/><pubDate>Sun, 10 Mar 2019 22:23:26 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Wunschliste Blockly-Elemente on Fri, 28 Jul 2023 05:41:02 GMT]]></title><description><![CDATA[<p dir="auto">Lebt dieses Thema noch?<br />
Ich bin aktuell auf das gleiche Problem gestoßen, dass ich aus einer Liste einen bekannten Wert löschen wollte und so einen Block nicht gefunden habe. Man könnte natürlich eine Schleife drüber laufen lassen und falls der Wert dem gesuchten Wert entspricht, die betroffene Stelle aus der Liste entfernen.<br />
Die Javascript Lösung sieht so aus:</p>
<pre><code>var arr = ['three', 'seven', 'eleven'];
var filteredArray = arr.filter(e =&gt; e !== 'seven')
</code></pre>
<p dir="auto">Letztendlich wird auch hier wie ich verstehe das Array durchlaufen und ein neues ohne den gesuchten Wert erzeugt, es sei aber wohl schneller als mit der slice Funktion von Javascript.<br />
Man könnte das in einen Javascript Block mit Ergebnis packen, oder aber man führt einen neuen Block ein?<br />
<img src="/assets/uploads/files/1690522354014-4261f9af-d1c6-4a82-849a-eed62adb11fd-image.png" alt="4261f9af-d1c6-4a82-849a-eed62adb11fd-image.png" class=" img-fluid img-markdown" /><br />
in der Funktion steckt:</p>
<pre><code>liste.filter(e =&gt; e !== filter);
</code></pre>
<p dir="auto">Wenn man die ursprüngliche Liste nicht verlieren möchte, muss man das Ganze so machen:<br />
<img src="/assets/uploads/files/1690522614871-bbd69e00-f4fc-43cd-994d-354faf3713b5-image.png" alt="bbd69e00-f4fc-43cd-994d-354faf3713b5-image.png" class=" img-fluid img-markdown" /><br />
in der Funktion steckt:</p>
<pre><code>var f = liste.filter(e =&gt; e !== filter);
return f;
</code></pre>
]]></description><link>https://forum.iobroker.net/post/1021998</link><guid isPermaLink="true">https://forum.iobroker.net/post/1021998</guid><dc:creator><![CDATA[h07d0q]]></dc:creator><pubDate>Fri, 28 Jul 2023 05:41:02 GMT</pubDate></item><item><title><![CDATA[Reply to Wunschliste Blockly-Elemente on Sat, 13 Feb 2021 12:51:21 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/dslraser" aria-label="Profile: dslraser">@<bdi>dslraser</bdi></a> genau das gleiche habe ich auch grade festgestellt : D ist aber ne super nützliche Funktion. Hab direkt den Methodennamen eingetragen zB. calc_time() (Klammern nicht vergessen)</p>
<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/thewhobox" aria-label="Profile: thewhobox">@<bdi>thewhobox</bdi></a> : Hast du das Feature mit der einstellbaren Skalierung für Variablen evtl. mit aufgenommen?  Hab grade auf 4.8.4 aktualisiert und das nimmt das timeout weiterhin nur ms. Oder gibt es sogar Gründe warum die Skalierung durch das Blockly hier nicht funktioniert?</p>
<p dir="auto">grüße</p>
]]></description><link>https://forum.iobroker.net/post/580479</link><guid isPermaLink="true">https://forum.iobroker.net/post/580479</guid><dc:creator><![CDATA[madjack84]]></dc:creator><pubDate>Sat, 13 Feb 2021 12:51:21 GMT</pubDate></item><item><title><![CDATA[Reply to Wunschliste Blockly-Elemente on Tue, 12 Jan 2021 18:42:35 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/perry" aria-label="Profile: perry">@<bdi>perry</bdi></a> ich verstehe zwar nicht warum ich falsch bin, aber mein Wunsch wäre eben diese ausgabe auf oberster ebene</p>
]]></description><link>https://forum.iobroker.net/post/557022</link><guid isPermaLink="true">https://forum.iobroker.net/post/557022</guid><dc:creator><![CDATA[dos1973]]></dc:creator><pubDate>Tue, 12 Jan 2021 18:42:35 GMT</pubDate></item><item><title><![CDATA[Reply to Wunschliste Blockly-Elemente on Tue, 12 Jan 2021 10:43:00 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/dos1973" aria-label="Profile: dos1973">@<bdi>dos1973</bdi></a> ok ... <img src="https://forum.iobroker.net/assets/plugins/nodebb-plugin-emoji/emoji/android/1f607.png?v=ba16ebd4856" class="not-responsive emoji emoji-android emoji--innocent" style="height:23px;width:auto;vertical-align:middle" title=":innocent:" alt="😇" />  ... hast Recht ... <img src="https://forum.iobroker.net/assets/plugins/nodebb-plugin-emoji/emoji/android/1f601.png?v=ba16ebd4856" class="not-responsive emoji emoji-android emoji--grin" style="height:23px;width:auto;vertical-align:middle" title=":grin:" alt="😁" /></p>
]]></description><link>https://forum.iobroker.net/post/556611</link><guid isPermaLink="true">https://forum.iobroker.net/post/556611</guid><dc:creator><![CDATA[perry]]></dc:creator><pubDate>Tue, 12 Jan 2021 10:43:00 GMT</pubDate></item><item><title><![CDATA[Reply to Wunschliste Blockly-Elemente on Thu, 07 Jan 2021 08:47:10 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/perry" aria-label="Profile: perry">@<bdi>perry</bdi></a><br />
Der Thread heisst doch „Wunschliste“ ;-)</p>
]]></description><link>https://forum.iobroker.net/post/552871</link><guid isPermaLink="true">https://forum.iobroker.net/post/552871</guid><dc:creator><![CDATA[dos1973]]></dc:creator><pubDate>Thu, 07 Jan 2021 08:47:10 GMT</pubDate></item><item><title><![CDATA[Reply to Wunschliste Blockly-Elemente on Thu, 07 Jan 2021 06:56:13 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/dos1973" aria-label="Profile: dos1973">@<bdi>dos1973</bdi></a><br />
Moin dos1973 ... ich vermute du bist im falschen thread ... glaube kaum, das dir hier geholfen werden kann <img src="https://forum.iobroker.net/assets/plugins/nodebb-plugin-emoji/emoji/android/1f914.png?v=ba16ebd4856" class="not-responsive emoji emoji-android emoji--thinking_face" style="height:23px;width:auto;vertical-align:middle" title=":thinking_face:" alt="🤔" /></p>
]]></description><link>https://forum.iobroker.net/post/552820</link><guid isPermaLink="true">https://forum.iobroker.net/post/552820</guid><dc:creator><![CDATA[perry]]></dc:creator><pubDate>Thu, 07 Jan 2021 06:56:13 GMT</pubDate></item><item><title><![CDATA[Reply to Wunschliste Blockly-Elemente on Thu, 07 Jan 2021 00:04:31 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/thewhobox" aria-label="Profile: thewhobox">@<bdi>thewhobox</bdi></a> sagte in <a href="/post/240101">Wunschliste Blockly-Elemente</a>:</p>
<blockquote>
<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/iomountain" aria-label="Profile: iomountain">@<bdi>iomountain</bdi></a> Selector Blockly ist fertig :) (Gibt alle IDs als Array zurück)<br />
<img src="/assets/uploads/files/1552337092167-72f039d4-bf81-4751-8d0f-1aec5a64e7f3-image.png" alt="72f039d4-bf81-4751-8d0f-1aec5a64e7f3-image.png" class=" img-fluid img-markdown" /></p>
</blockquote>
<p dir="auto">kann ich auch nur das erhalten? also nur die oberste ebene</p>
<p dir="auto"><img src="/assets/uploads/files/1609977840338-bildschirmfoto-2021-01-07-um-01.03.49.png" alt="Bildschirmfoto 2021-01-07 um 01.03.49.png" class=" img-fluid img-markdown" /></p>
]]></description><link>https://forum.iobroker.net/post/552797</link><guid isPermaLink="true">https://forum.iobroker.net/post/552797</guid><dc:creator><![CDATA[dos1973]]></dc:creator><pubDate>Thu, 07 Jan 2021 00:04:31 GMT</pubDate></item><item><title><![CDATA[Reply to Wunschliste Blockly-Elemente on Wed, 06 Jan 2021 10:20:34 GMT]]></title><description><![CDATA[<p dir="auto">Mein Wunsch wäre ein XML Konverter wo ich die einzelnen Elemente abfragen und ausgeben kann.<br />
Habe diverse XML Abfragen und komme mit Java und xml2js einfach nicht weiter. Von daher wäre ich für einen XML Konverter dankbar :-)</p>
]]></description><link>https://forum.iobroker.net/post/552225</link><guid isPermaLink="true">https://forum.iobroker.net/post/552225</guid><dc:creator><![CDATA[claus1993]]></dc:creator><pubDate>Wed, 06 Jan 2021 10:20:34 GMT</pubDate></item><item><title><![CDATA[Reply to Wunschliste Blockly-Elemente on Tue, 05 Jan 2021 13:43:41 GMT]]></title><description><![CDATA[<p dir="auto">Nachtrag: Prima wäre auch, wenn es ein "info - Datum - blockly" geben würde, worin das aktuelle Änderungsdatum enthalten wäre, was sich immer dann verändert, wenn das blockly NEU abgespeichert wird ... Danke<br />
cu perry</p>
]]></description><link>https://forum.iobroker.net/post/551506</link><guid isPermaLink="true">https://forum.iobroker.net/post/551506</guid><dc:creator><![CDATA[perry]]></dc:creator><pubDate>Tue, 05 Jan 2021 13:43:41 GMT</pubDate></item><item><title><![CDATA[Reply to Wunschliste Blockly-Elemente on Thu, 07 Jan 2021 06:52:21 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/iomountain" aria-label="Profile: iomountain">@<bdi>iomountain</bdi></a> sagte in <a href="/post/275495">Wunschliste Blockly-Elemente</a>:</p>
<blockquote>
<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/iomountain" aria-label="Profile: iomountain">@<bdi>iomountain</bdi></a> sagte in <a href="/post/251657">Wunschliste Blockly-Elemente</a>:</p>
<blockquote>
<p dir="auto">Was ich noch brauchen könnte:<br />
Eine Kommentar Klammer:<br />
<img src="/assets/uploads/files/1554885682451-5f2b6178-406e-41fd-a908-126e3f019f16-image.png" alt="5f2b6178-406e-41fd-a908-126e3f019f16-image.png" class=" img-fluid img-markdown" /><br />
Wäre auch Hilfreich um einen komplette Blöcke zu kopieren.</p>
</blockquote>
<p dir="auto">Wollte nur mal anfragen wie die Chance steht so ein Element zu bekommen?<br />
Bin gerade dabei für mich hilfreiche Codeschnipsel zu organisieren, da wäre sowas hilfreich.<br />
Noch schöner wäre es wenn man den Inhalt auch zusammenfalten kann.</p>
</blockquote>
<p dir="auto">Guten Tag Forum ... habe diesen Post gefunden und würde in sehr sehr sehr <img src="https://forum.iobroker.net/assets/plugins/nodebb-plugin-emoji/emoji/android/1f607.png?v=ba16ebd4856" class="not-responsive emoji emoji-android emoji--innocent" style="height:23px;width:auto;vertical-align:middle" title=":innocent:" alt="😇" />  begrüßen ... vielleicht noch den Wunsch/Hinweis, das bei MOUSEOVER der "GRIFF"-Bereich größer gestaltet werden sollte, damit man nicht so häufig daneben greift und sein blockly dadurch zerstört ... und ... "by the way" ... Baustein-zusammen-falten (Text aber stehen lassen)  ... evt auch andere Farben wählen können ... die Länge evt vergrößern (von ca 50 auf evt 100 Stellen) ... mehrer Zeilen schreiben können ....  in dem "Info-Baustein" eine Nummer vergeben, sodaß bei Änderungen des Textes alle GLEICHE Nummern sich verändern würden (gleichartige Beschreibung für gleichartige Vorgänge) ...<br />
hmmm ... mir ist es so ergangen, das wenn man sich damit JETZT beschäftigt ist ein Blockly eigentlich klar ... wenn es aber dann läuft  und man sich dann so in unregelmäßigen Abständen (5-8 Monaten) wieder damit beschäftigt und dann keine vernünftige Beschreibung vorfindet, dann ist man aufgeschmissen ... DANK AN ALLE ENTWICKLER ... <img src="https://forum.iobroker.net/assets/plugins/nodebb-plugin-emoji/emoji/android/1f44d.png?v=ba16ebd4856" class="not-responsive emoji emoji-android emoji--+1" style="height:23px;width:auto;vertical-align:middle" title=":+1:" alt="👍" />  <img src="https://forum.iobroker.net/assets/plugins/nodebb-plugin-emoji/emoji/android/1f44f.png?v=ba16ebd4856" class="not-responsive emoji emoji-android emoji--clap" style="height:23px;width:auto;vertical-align:middle" title=":clap:" alt="👏" />   <img src="https://forum.iobroker.net/assets/plugins/nodebb-plugin-emoji/emoji/android/1f917.png?v=ba16ebd4856" class="not-responsive emoji emoji-android emoji--hugging_face" style="height:23px;width:auto;vertical-align:middle" title=":hugging_face:" alt="🤗" /><br />
cu perry</p>
]]></description><link>https://forum.iobroker.net/post/551363</link><guid isPermaLink="true">https://forum.iobroker.net/post/551363</guid><dc:creator><![CDATA[perry]]></dc:creator><pubDate>Thu, 07 Jan 2021 06:52:21 GMT</pubDate></item><item><title><![CDATA[Reply to Wunschliste Blockly-Elemente on Wed, 30 Sep 2020 09:07:38 GMT]]></title><description><![CDATA[<p dir="auto">Wie kann man Bilder in spezifischer Auflösung senden?<br />
-&gt; Bilder, egal welche Größe imm sehr groß / voll skaliert dargestellt. Kann ich eine Auflösung übergeben?</p>
]]></description><link>https://forum.iobroker.net/post/496327</link><guid isPermaLink="true">https://forum.iobroker.net/post/496327</guid><dc:creator><![CDATA[oberfragger]]></dc:creator><pubDate>Wed, 30 Sep 2020 09:07:38 GMT</pubDate></item><item><title><![CDATA[Reply to Wunschliste Blockly-Elemente on Thu, 23 Jul 2020 05:36:56 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/excal-foley" aria-label="Profile: Excal-Foley">@<bdi>Excal-Foley</bdi></a></p>
<p dir="auto">Ist es möglich, in Deinem Keyboard Block noch ein Feld für den Empfänger/User einzubauen? Das wäre grandios :)</p>
<p dir="auto">Ich habe dazu auch gerade ein Issue auf GitHub erstellt.</p>
<p dir="auto"><img src="/assets/uploads/files/1595482589929-5967f333-8a7e-40c4-b5f2-767259f22aa0-grafik.png" alt="5967f333-8a7e-40c4-b5f2-767259f22aa0-grafik.png" class=" img-fluid img-markdown" /></p>
]]></description><link>https://forum.iobroker.net/post/465298</link><guid isPermaLink="true">https://forum.iobroker.net/post/465298</guid><dc:creator><![CDATA[skvarel]]></dc:creator><pubDate>Thu, 23 Jul 2020 05:36:56 GMT</pubDate></item><item><title><![CDATA[Reply to Wunschliste Blockly-Elemente on Wed, 20 May 2020 09:58:28 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/excal-foley" aria-label="Profile: Excal-Foley">@<bdi>Excal-Foley</bdi></a><br />
genial! hätte mir teilweise viel arbeit erspart :D  danke!</p>
<p dir="auto">kann man sich da noch eine inline_keyboard mit dazu basteln? Habe das gerade mal Probiert... allerdings ohne erfolg</p>
]]></description><link>https://forum.iobroker.net/post/435397</link><guid isPermaLink="true">https://forum.iobroker.net/post/435397</guid><dc:creator><![CDATA[backfisch88]]></dc:creator><pubDate>Wed, 20 May 2020 09:58:28 GMT</pubDate></item><item><title><![CDATA[Reply to Wunschliste Blockly-Elemente on Tue, 19 May 2020 20:04:24 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/dslraser" aria-label="Profile: dslraser">@<bdi>dslraser</bdi></a> Ah, sehr gut, auf die Idee, das da einfach in Klartext reinzuschreiben, bin ich gar nicht gekommen! Danke!</p>
]]></description><link>https://forum.iobroker.net/post/435206</link><guid isPermaLink="true">https://forum.iobroker.net/post/435206</guid><dc:creator><![CDATA[s.bormann]]></dc:creator><pubDate>Tue, 19 May 2020 20:04:24 GMT</pubDate></item><item><title><![CDATA[Reply to Wunschliste Blockly-Elemente on Tue, 19 May 2020 20:04:35 GMT]]></title><description><![CDATA[<p dir="auto">@s-bormann sagte in <a href="/post/435204">Wunschliste Blockly-Elemente</a>:</p>
<blockquote>
<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/dslraser" aria-label="Profile: dslraser">@<bdi>dslraser</bdi></a> Bei mir kann ich die ms nur fest einstellen und nicht als Variable "einklicken"</p>
</blockquote>
<p dir="auto">Hier mal ein Beispiel wo ich das mit Lampen probiert habe (war nur ein Test für meine Bewässerung)</p>
<p dir="auto"><img src="/assets/uploads/files/1589918552447-bildschirmfoto-2020-05-19-um-22.01.33.png" alt="Bildschirmfoto 2020-05-19 um 22.01.33.png" class=" img-fluid img-markdown" /></p>
<p dir="auto">Die ms muß dann so heißen wie die Variable, also so geschrieben werden.</p>
]]></description><link>https://forum.iobroker.net/post/435205</link><guid isPermaLink="true">https://forum.iobroker.net/post/435205</guid><dc:creator><![CDATA[dslraser]]></dc:creator><pubDate>Tue, 19 May 2020 20:04:35 GMT</pubDate></item><item><title><![CDATA[Reply to Wunschliste Blockly-Elemente on Tue, 19 May 2020 19:59:12 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/dslraser" aria-label="Profile: dslraser">@<bdi>dslraser</bdi></a> Bei mir kann ich die ms nur fest einstellen und nicht als Variable "einklicken"</p>
]]></description><link>https://forum.iobroker.net/post/435204</link><guid isPermaLink="true">https://forum.iobroker.net/post/435204</guid><dc:creator><![CDATA[s.bormann]]></dc:creator><pubDate>Tue, 19 May 2020 19:59:12 GMT</pubDate></item><item><title><![CDATA[Reply to Wunschliste Blockly-Elemente on Tue, 19 May 2020 19:58:09 GMT]]></title><description><![CDATA[<p dir="auto">@s-bormann<br />
geht, aber nur mit/in ms</p>
]]></description><link>https://forum.iobroker.net/post/435203</link><guid isPermaLink="true">https://forum.iobroker.net/post/435203</guid><dc:creator><![CDATA[dslraser]]></dc:creator><pubDate>Tue, 19 May 2020 19:58:09 GMT</pubDate></item><item><title><![CDATA[Reply to Wunschliste Blockly-Elemente on Tue, 19 May 2020 19:57:06 GMT]]></title><description><![CDATA[<p dir="auto">Hi, ich habe auch noch einen Wunsch für ein Element:<br />
Bei timeouts sollte die Zeitdauer als Variable einstellbar sein.<br />
Danke und VG!!</p>
]]></description><link>https://forum.iobroker.net/post/435202</link><guid isPermaLink="true">https://forum.iobroker.net/post/435202</guid><dc:creator><![CDATA[s.bormann]]></dc:creator><pubDate>Tue, 19 May 2020 19:57:06 GMT</pubDate></item><item><title><![CDATA[Reply to Wunschliste Blockly-Elemente on Wed, 13 May 2020 09:47:56 GMT]]></title><description><![CDATA[<p dir="auto">Hi, ich habe noch mal eine Frage zu globalen Scripten:<br />
Kann man das (ohne den Umweg über JS-Script) in Blockly implementieren?<br />
In der Einführung steht: Erfolgreich erledigt, und dann kommt ein leerer Spoiler :)</p>
<p dir="auto">Ich habe viele Blocklys, in denen ich die gleichen Hilfs-Funktionen verwende. Ist super nervig, diese immer wieder neu importieren zu müssen. Da wären globale Funktionen geradezu ideal!</p>
<p dir="auto">VG!</p>
]]></description><link>https://forum.iobroker.net/post/431146</link><guid isPermaLink="true">https://forum.iobroker.net/post/431146</guid><dc:creator><![CDATA[s.bormann]]></dc:creator><pubDate>Wed, 13 May 2020 09:47:56 GMT</pubDate></item><item><title><![CDATA[Reply to Wunschliste Blockly-Elemente on Fri, 24 Apr 2020 16:37:51 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/excal-foley" aria-label="Profile: Excal-Foley">@<bdi>Excal-Foley</bdi></a><br />
Ich habe es mal nur zum "Spaß" in einem Blockly probiert, funktioniert.</p>
<p dir="auto"><img src="/assets/uploads/files/1587746267354-screenshot_20200424-175404_telegram.jpg" alt="Screenshot_20200424-175404_Telegram.jpg" class=" img-fluid img-markdown" /></p>
]]></description><link>https://forum.iobroker.net/post/418672</link><guid isPermaLink="true">https://forum.iobroker.net/post/418672</guid><dc:creator><![CDATA[dslraser]]></dc:creator><pubDate>Fri, 24 Apr 2020 16:37:51 GMT</pubDate></item><item><title><![CDATA[Reply to Wunschliste Blockly-Elemente on Wed, 22 Apr 2020 11:51:17 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/excal-foley" aria-label="Profile: Excal-Foley">@<bdi>Excal-Foley</bdi></a><br />
danke Dir, auch wieder was gelernt.</p>
]]></description><link>https://forum.iobroker.net/post/417164</link><guid isPermaLink="true">https://forum.iobroker.net/post/417164</guid><dc:creator><![CDATA[dslraser]]></dc:creator><pubDate>Wed, 22 Apr 2020 11:51:17 GMT</pubDate></item><item><title><![CDATA[Reply to Wunschliste Blockly-Elemente on Wed, 22 Apr 2020 11:41:43 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/dslraser" aria-label="Profile: dslraser">@<bdi>dslraser</bdi></a> Danke für die Erklärung :)</p>
<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/sandmanyz" aria-label="Profile: Sandmanyz">@<bdi>Sandmanyz</bdi></a> man kann das einfach mit den allgemeinen Send-Block nachbauen, deshalb würde ich hierfür kein separaten Block machen.</p>
<p dir="auto"><img src="/assets/uploads/files/1587555282101-6836d3d4-46cd-4ec7-9c2e-5a7de565e86c-image.png" alt="6836d3d4-46cd-4ec7-9c2e-5a7de565e86c-image.png" class=" img-fluid img-markdown" /><br />
</p><section class="spoiler-wrapper"><button class="spoiler-control btn btn-default">Spoiler: xml-code zum importieren</button><section style="display:none" class="spoiler-content"><p></p>
<pre><code>&lt;block xmlns="http://www.w3.org/1999/xhtml" type="sendto_custom"&gt;
  &lt;mutation items="text,caption,user" with_statement="false"&gt;&lt;/mutation&gt;
  &lt;field name="INSTANCE"&gt;telegram.0&lt;/field&gt;
  &lt;field name="COMMAND"&gt;send&lt;/field&gt;
  &lt;field name="WITH_STATEMENT"&gt;FALSE&lt;/field&gt;
  &lt;field name="LOG"&gt;&lt;/field&gt;
  &lt;value name="ARG0"&gt;
    &lt;shadow type="text"&gt;
      &lt;field name="TEXT"&gt;/opt/iobroker/iobroker-data/files/javascript.admin/google-blockly/custom/images/logic_between.png&lt;/field&gt;
    &lt;/shadow&gt;
  &lt;/value&gt;
  &lt;value name="ARG1"&gt;
    &lt;shadow type="text"&gt;
      &lt;field name="TEXT"&gt;Bildunterschrift&lt;/field&gt;
    &lt;/shadow&gt;
  &lt;/value&gt;
  &lt;value name="ARG2"&gt;
    &lt;shadow type="text"&gt;
      &lt;field name="TEXT"&gt;Stefan&lt;/field&gt;
    &lt;/shadow&gt;
  &lt;/value&gt;
&lt;/block&gt;
</code></pre>
<p dir="auto"></p></section></section><p></p>
]]></description><link>https://forum.iobroker.net/post/417161</link><guid isPermaLink="true">https://forum.iobroker.net/post/417161</guid><dc:creator><![CDATA[Excal Foley]]></dc:creator><pubDate>Wed, 22 Apr 2020 11:41:43 GMT</pubDate></item><item><title><![CDATA[Reply to Wunschliste Blockly-Elemente on Tue, 21 Apr 2020 14:12:10 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/excal-foley" aria-label="Profile: Excal-Foley">@<bdi>Excal-Foley</bdi></a> sagte in <a href="/post/416186">Wunschliste Blockly-Elemente</a>:</p>
<blockquote>
<p dir="auto">Ich hab mit Telegram und ioBroker noch kein</p>
</blockquote>
<p dir="auto">Das hier z.B. versendet ein Bild</p>
<p dir="auto"><img src="/assets/uploads/files/1587478017101-bildschirmfoto-2020-04-21-um-16.06.13.png" alt="Bildschirmfoto 2020-04-21 um 16.06.13.png" class=" img-fluid img-markdown" /></p>
<p dir="auto">Das ist der JS-Code vom Blockly</p>
<pre><code>sendTo("telegram", "send", {
    text: 'iobroker-data/files/iqontrol.meta/userimages/usericons/05RTLHD.png',
    user: 'Heiko'
});
</code></pre>
<p dir="auto">Sieht dann so aus</p>
<p dir="auto"><img src="/assets/uploads/files/1587478127289-bildschirmfoto-2020-04-21-um-16.08.37.png" alt="Bildschirmfoto 2020-04-21 um 16.08.37.png" class=" img-fluid img-markdown" /></p>
<p dir="auto">In Javascript geht dann z.B. in einer Nachricht soetwas</p>
<pre><code>sendTo("telegram", "send", {
    text: 'iobroker-data/files/iqontrol.meta/userimages/usericons/05RTLHD.png',caption: '👀Testbild 👀',
    user: 'Heiko'
});
</code></pre>
<p dir="auto">Sieht dann so aus (und es kommt nur eine Nachricht)</p>
<p dir="auto"><img src="/assets/uploads/files/1587478235614-bildschirmfoto-2020-04-21-um-16.10.27.png" alt="Bildschirmfoto 2020-04-21 um 16.10.27.png" class=" img-fluid img-markdown" /></p>
<p dir="auto">Ich denke mal das meint <a class="plugin-mentions-user plugin-mentions-a" href="/user/sandmanyz" aria-label="Profile: Sandmanyz">@<bdi>Sandmanyz</bdi></a><br />
Das geht in Blockly aktuell nicht.</p>
]]></description><link>https://forum.iobroker.net/post/416491</link><guid isPermaLink="true">https://forum.iobroker.net/post/416491</guid><dc:creator><![CDATA[dslraser]]></dc:creator><pubDate>Tue, 21 Apr 2020 14:12:10 GMT</pubDate></item><item><title><![CDATA[Reply to Wunschliste Blockly-Elemente on Tue, 21 Apr 2020 08:06:29 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/sandmanyz" aria-label="Profile: Sandmanyz">@<bdi>Sandmanyz</bdi></a><br />
Mein Telegram-Block erstellt eine Tastatur auf dem Handy und versendet nur Text (mit Emojis).<br />
Ich hab mit Telegram und ioBroker noch keine Bilder versendet und weis nicht wie das geht. Wenn du mir genauer erklärst was du machen möchtest, kann ich mal schauen, ob ich daraus ein Block machen kann.</p>
]]></description><link>https://forum.iobroker.net/post/416186</link><guid isPermaLink="true">https://forum.iobroker.net/post/416186</guid><dc:creator><![CDATA[Excal Foley]]></dc:creator><pubDate>Tue, 21 Apr 2020 08:06:29 GMT</pubDate></item></channel></rss>