<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Rademacher Home-Pilot Archive - I MAKE YOU INTELLIGENT</title>
	<atom:link href="https://www.imakeyouintelligent.com/category/smart-home-systeme/rademacher-home-pilot/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.imakeyouintelligent.com/category/smart-home-systeme/rademacher-home-pilot/</link>
	<description>Mach die Welt ein bisschen intelligenter</description>
	<lastBuildDate>Sun, 22 Sep 2024 06:09:14 +0000</lastBuildDate>
	<language>de</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.4</generator>

<image>
	<url>https://www.imakeyouintelligent.com/wp-content/uploads/2018/01/cropped-square_v4-32x32.png</url>
	<title>Rademacher Home-Pilot Archive - I MAKE YOU INTELLIGENT</title>
	<link>https://www.imakeyouintelligent.com/category/smart-home-systeme/rademacher-home-pilot/</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>Rademacher HomePilot: JSON API via Webbrowser ansteuern</title>
		<link>https://www.imakeyouintelligent.com/rademacher-homepilot-json-api-via-webbrowser-ansteuern/</link>
					<comments>https://www.imakeyouintelligent.com/rademacher-homepilot-json-api-via-webbrowser-ansteuern/#comments</comments>
		
		<dc:creator><![CDATA[Marvin Heyder]]></dc:creator>
		<pubDate>Fri, 15 Sep 2017 14:31:53 +0000</pubDate>
				<category><![CDATA[Apple Home-Kit]]></category>
		<category><![CDATA[Internet of Things (IoT)]]></category>
		<category><![CDATA[Node-RED]]></category>
		<category><![CDATA[Philips Hue]]></category>
		<category><![CDATA[Rademacher Home-Pilot]]></category>
		<category><![CDATA[Smart-Home Systeme]]></category>
		<category><![CDATA[Aktore]]></category>
		<category><![CDATA[API]]></category>
		<category><![CDATA[Home-Pilot2]]></category>
		<category><![CDATA[NodeRed]]></category>
		<category><![CDATA[Rademacher]]></category>
		<category><![CDATA[Rohrmotor]]></category>
		<category><![CDATA[Schnittstelle]]></category>
		<category><![CDATA[Smart-Home]]></category>
		<category><![CDATA[URL]]></category>
		<category><![CDATA[WebBrowser]]></category>
		<guid isPermaLink="false">http://www.imakeyouintelligent.com/?p=3961</guid>

					<description><![CDATA[<p>Der Beitrag <a href="https://www.imakeyouintelligent.com/rademacher-homepilot-json-api-via-webbrowser-ansteuern/">Rademacher HomePilot: JSON API via Webbrowser ansteuern</a> erschien zuerst auf <a href="https://www.imakeyouintelligent.com">I MAKE YOU INTELLIGENT</a>.</p>
]]></description>
										<content:encoded><![CDATA[<div class="et_pb_section et_pb_section_0 et_section_regular" >
				
				
				
				
				
				
				<div class="et_pb_row et_pb_row_0">
				<div class="et_pb_column et_pb_column_4_4 et_pb_column_0  et_pb_css_mix_blend_mode_passthrough et-last-child">
				
				
				
				
				<div class="et_pb_module et_pb_text et_pb_text_0  et_pb_text_align_left et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_text_inner"><p>Rademacher hat mit seinem HomePilot ein geniales Produkt auf den Markt geworfen um Smart zu Hause zb. die Rolladen zu steuern und auch noch eine HomePilot API die relativ easy verständlich ist. Nur leider kann das System out of box nicht mit Apple Home-Kit, Alexa oder der Home-Matic kommunizieren.</p>
<p>Jedoch ist die Schnittstelle relativ einfach zu verstehen.<br />Über den Aufruf im LAN: <strong>http://IP-HOMEPILOT/deviceajax.do?devices=1</strong><br />bekommt man eine Auflistung der alle an den HomePilot gekoppelten Geräte und deren Konfiguration.</p>
<p>Am Beispiel des DuoFern Rohrmotors (<span id="lblProductName" class="label">RolloTube DuoFern) </span>bauen wir uns nun einmal einen Link mit dem wir den Rolladen auf 50% senken/heben.</p>
<p><strong>http://IP-HOMEPILOT/deviceajax.do?cid=9&amp;did=10001&amp;goto=50&amp;command=0</strong></p>
<p>Hierbei sind zwei Werte wichtig:<br /><strong>did=10001</strong> &#8211;&gt; dies ist die eindeutige Device-ID des Aktors welche ihr wie oben beschrieben über <strong>http://IP-HOMEPILOT/deviceajax.do?devices=1</strong> herausfinden könnt.</p>
<p><strong>goto=50</strong> &#8211;&gt; mit diesem Wert sagen wir dem Rohrmotor auf welche Position er fahren soll.</p>
<p>Wenn ihr nun die oben zusammengebaute URL in euren Browser eintragt und diese bestätigt fährt der Aktor (<span id="lblProductName" class="label">RolloTube DuoFern) </span>mit der <strong>did=10001</strong> auf Position 50.<br />Im Anschluss erhalten wir noch eine Bestätigung des Aktors:<br /><strong>{&#8222;message&#8220;:&#8220;Command used:9 position:100&#8243;,&#8220;status&#8220;:&#8220;uisuccess&#8220;}</strong><br />Diesen können wir z.b in <a href="https://nodered.org">Node-Red</a> weiterverarbeiten.</p>
<p>Dort ist es uns dann möglich den Aktor in Apple Homekit einzubinden. Oder mit einem Dash Button bestimmte Gruppen hoch und runter zu fahren. Man kann es sogar soweit treiben das wir mit einem Amazon Dash Button eine Szene auslösen die wie folgt aussehen kann:</p>
<ul>
<li>Schalte den Samsung SmartTV ab.</li>
<li>Fahre die Rademacher Rollanden einer bestimmten Gruppe herunter.</li>
<li>Schalte die Philips Hue Lampen aus.</li>
<li>Aktiviere die Bewegungserkennung für bestimmte Philips Hue Bewegungsmelder und informiere via Apple Homkit bei Bewegung.</li>
</ul>
<p> </p>
<p><strong>//EDIT</strong> &#8211; Mir wurden folgende Infos zugespielt, diese sollte ich doch auch bitte einmal veröffentlichen: </p>
<p>SWITCH:</p>
<div class="codecolorer-container text default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap;">{&quot;name&quot;:&quot;TURN_ON_CMD&quot;} &lt;br /&gt;{&quot;name&quot;:&quot;TURN_OFF_CMD&quot;}</div></div>
</p>
<p>THERMOSTAT:</p>
<div class="codecolorer-container text default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap;">{&quot;name&quot;:&quot;TARGET_TEMPERATURE_CFG&quot;,&quot;value&quot;:16}</div></div>
</p>
<p>LIST OF DEVICES:<br /><a class="onebox" href="http://homepilotip/v4/devices" target="_blank" rel="noopener noreferrer">http://HomePilotIP/v4/devices</a></p>
<p>DEVICE STATE:<br />GET<br /><a class="onebox" href="http://homepilotip/devices/deviceID" target="_blank" rel="noopener noreferrer">http://HomePilotIP/devices/deviceID <span class="badge badge-notification clicks" title="5 clicks">5</span></a></p>
<p>Für Rolladen: <br />PUT</p>
<pre>

<div class="codecolorer-container text default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap;">{&quot;name&quot;:&quot;POS_UP_CMD&quot;}<br />
{&quot;name&quot;:&quot;POS_DOWN_CMD&quot;}<br />
{&quot;name&quot;:&quot;STOP_CMD&quot;}</div></div>

</pre></div>
			</div>
			</div>
				
				
				
				
			</div>
				
				
			</div>
<p>Der Beitrag <a href="https://www.imakeyouintelligent.com/rademacher-homepilot-json-api-via-webbrowser-ansteuern/">Rademacher HomePilot: JSON API via Webbrowser ansteuern</a> erschien zuerst auf <a href="https://www.imakeyouintelligent.com">I MAKE YOU INTELLIGENT</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.imakeyouintelligent.com/rademacher-homepilot-json-api-via-webbrowser-ansteuern/feed/</wfw:commentRss>
			<slash:comments>19</slash:comments>
		
		
			</item>
	</channel>
</rss>
