<?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>Philips Hue Archive - I MAKE YOU INTELLIGENT</title>
	<atom:link href="https://www.imakeyouintelligent.com/category/smart-home-systeme/philips-hue/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.imakeyouintelligent.com/category/smart-home-systeme/philips-hue/</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>Philips Hue Archive - I MAKE YOU INTELLIGENT</title>
	<link>https://www.imakeyouintelligent.com/category/smart-home-systeme/philips-hue/</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>Node-Red: Nicht HomeKit zertifizierte Lampen an HomeKit anbinden via Hue Teil1</title>
		<link>https://www.imakeyouintelligent.com/node-red-nicht-homekit-zertifizierte-lampen-an-homekit-anbinden-via-hue-teil1/</link>
					<comments>https://www.imakeyouintelligent.com/node-red-nicht-homekit-zertifizierte-lampen-an-homekit-anbinden-via-hue-teil1/#comments</comments>
		
		<dc:creator><![CDATA[Marvin Heyder]]></dc:creator>
		<pubDate>Sat, 25 Nov 2017 13:24:58 +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[Smart-Home Systeme]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[color]]></category>
		<category><![CDATA[Converter]]></category>
		<category><![CDATA[HomeKit]]></category>
		<category><![CDATA[HSL]]></category>
		<category><![CDATA[Hue]]></category>
		<category><![CDATA[Innr]]></category>
		<category><![CDATA[Lightify]]></category>
		<category><![CDATA[Node-Red]]></category>
		<category><![CDATA[Osram]]></category>
		<category><![CDATA[Philips]]></category>
		<category><![CDATA[RGB]]></category>
		<category><![CDATA[Umrechner]]></category>
		<guid isPermaLink="false">http://www.imakeyouintelligent.com/?p=4221</guid>

					<description><![CDATA[<p>Der Beitrag <a href="https://www.imakeyouintelligent.com/node-red-nicht-homekit-zertifizierte-lampen-an-homekit-anbinden-via-hue-teil1/">Node-Red: Nicht HomeKit zertifizierte Lampen an HomeKit anbinden via Hue Teil1</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>In Teil 1 möchte ich erklären wie, wir eine <strong>nicht</strong> Apple HomeKit zertifizierte Lampe die wir in unserer Hue App haben via Node-Red im Apple HomeKit anbinden. Dies kann z.b eine <a href="http://www.ikea.com/de/de/catalog/categories/departments/lighting/smart_lighting/">IKEA Tradfri,</a>  <a href="https://www.innrlighting.com/de/home">Innr</a> oder <a href="https://www.osram.de/cb/lightify/lightify-home/index.jsp">OSRAM Lightify</a> sein. Diese Lampen lassen sich alle an das Philips Hue System binden &#8211; jedoch fehlt dann die Integration ins Apple HomeKit.</p>
<p>Ich werde in Teil 1 erst einmal nur auf den Weg eingehen die Lampe im Apple HomeKit zu sehen und dass sie die Änderungen aus der Philips Hue App bemerkt und Ihren Status dahingehend ändert.</p>
<p>Die Hürde, die wir hier haben ist die Umrechnung der Licht/Farbwerte aus der Philips Hue App ins Apple HomeKit. Wir müssen als <a href="https://de.wikipedia.org/wiki/RGB-Farbraum">RGB</a> welche uns die HUE App liefert in das von Apple geforderte Format <a href="https://de.wikipedia.org/wiki/HSV-Farbraum">HSL</a> umrechnen.</p>
<p>Dies habe ich mit einer Funktionsnode und der folgenden Formel erledigt:</p>
<p><div class='et-box et-shadow'>
					<div class='et-box-content'>/** * Converts an RGB color value to HSL. Conversion formula * adapted from http://en.wikipedia.org/wiki/HSL_color_space. * Assumes r, g, and b are contained in the set [0, 255] and * returns h, s, and l in the set [0, 1]. * * @param {number} r The red color value * @param {number} g The green color value * @param {number} b The blue color value * @return {Array} The HSL representation */ function rgbToHsl(r, g, b){ r /= 255, g /= 255, b /= 255; var max = Math.max(r, g, b), min = Math.min(r, g, b); var h, s, l = (max + min) / 2; if(max == min){ h = s = 0; // achromatic }else{ var d = max &#8211; min; s = l &gt; 0.5 ? d / (2 &#8211; max &#8211; min) : d / (max + min); switch(max){ case r: h = (g &#8211; b) / d + (g &lt; b ? 6 : 0); break; case g: h = (b &#8211; r) / d + 2; break; case b: h = (r &#8211; g) / d + 4; break; } h /= 6; } return [h, s, l];</div></div></p>
<p>Zu sehen hier ist der fertige Flow in Node-Red:</p>
<p><a href="http://www.imakeyouintelligent.com/wp-content/uploads/2017/11/2017-11-25_14-11-49.jpg"><img fetchpriority="high" decoding="async" class="alignnone wp-image-4222 size-large" src="http://www.imakeyouintelligent.com/wp-content/uploads/2017/11/2017-11-25_14-11-49-1024x307.jpg" alt="" width="1024" height="307" srcset="https://www.imakeyouintelligent.com/wp-content/uploads/2017/11/2017-11-25_14-11-49-1024x307.jpg 1024w, https://www.imakeyouintelligent.com/wp-content/uploads/2017/11/2017-11-25_14-11-49-600x180.jpg 600w, https://www.imakeyouintelligent.com/wp-content/uploads/2017/11/2017-11-25_14-11-49-300x90.jpg 300w, https://www.imakeyouintelligent.com/wp-content/uploads/2017/11/2017-11-25_14-11-49-768x231.jpg 768w, https://www.imakeyouintelligent.com/wp-content/uploads/2017/11/2017-11-25_14-11-49-1080x324.jpg 1080w, https://www.imakeyouintelligent.com/wp-content/uploads/2017/11/2017-11-25_14-11-49.jpg 1096w" sizes="(max-width: 1024px) 100vw, 1024px" /></a></p>
<p>In meiner Beschreibung arbeite ich mit einer Innr, dies spielt jedoch keine Rolle beim anlegen des Flows. Nach erfolgreichem hinzufügen der in Node-Red neu angelegten Lampe wird diese im Apple HomeKit wie folgt angezeigt</p>
<p><a href="http://www.imakeyouintelligent.com/wp-content/uploads/2017/11/IMG_0212.jpg"><img loading="lazy" decoding="async" class="alignnone wp-image-4226 size-medium" src="http://www.imakeyouintelligent.com/wp-content/uploads/2017/11/IMG_0212-139x300.jpg" alt="" width="139" height="300" srcset="https://www.imakeyouintelligent.com/wp-content/uploads/2017/11/IMG_0212-139x300.jpg 139w, https://www.imakeyouintelligent.com/wp-content/uploads/2017/11/IMG_0212-600x1299.jpg 600w, https://www.imakeyouintelligent.com/wp-content/uploads/2017/11/IMG_0212-768x1663.jpg 768w, https://www.imakeyouintelligent.com/wp-content/uploads/2017/11/IMG_0212-473x1024.jpg 473w, https://www.imakeyouintelligent.com/wp-content/uploads/2017/11/IMG_0212-1080x2339.jpg 1080w, https://www.imakeyouintelligent.com/wp-content/uploads/2017/11/IMG_0212.jpg 1125w" sizes="(max-width: 139px) 100vw, 139px" /></a>    <a href="http://www.imakeyouintelligent.com/wp-content/uploads/2017/11/IMG_0211.jpg"><img loading="lazy" decoding="async" class="alignnone size-medium wp-image-4227" src="http://www.imakeyouintelligent.com/wp-content/uploads/2017/11/IMG_0211-139x300.jpg" alt="" width="139" height="300" srcset="https://www.imakeyouintelligent.com/wp-content/uploads/2017/11/IMG_0211-139x300.jpg 139w, https://www.imakeyouintelligent.com/wp-content/uploads/2017/11/IMG_0211-600x1299.jpg 600w, https://www.imakeyouintelligent.com/wp-content/uploads/2017/11/IMG_0211-768x1663.jpg 768w, https://www.imakeyouintelligent.com/wp-content/uploads/2017/11/IMG_0211-473x1024.jpg 473w, https://www.imakeyouintelligent.com/wp-content/uploads/2017/11/IMG_0211-1080x2339.jpg 1080w, https://www.imakeyouintelligent.com/wp-content/uploads/2017/11/IMG_0211.jpg 1125w" sizes="(max-width: 139px) 100vw, 139px" /></a></p>
<p>Mit diesem Flow ist es nun möglich die Änderungen der Hue-Lampe im AppleHomeKit zu sehen. Der komplette Flow zum importieren:</p>
<p><div class='et-box et-shadow'>
					<div class='et-box-content'>[{&#8222;id&#8220;:&#8220;8f898b4.d25a778&#8243;,&#8220;type&#8220;:&#8220;debug&#8220;,&#8220;z&#8220;:&#8220;27ae8d45.93d07a&#8220;,&#8220;name&#8220;:&#8220;&#8220;,&#8220;active&#8220;:true,&#8220;console&#8220;:&#8220;false&#8220;,&#8220;complete&#8220;:&#8220;true&#8220;,&#8220;x&#8220;:990,&#8220;y&#8220;:1020,&#8220;wires&#8220;:[]},{&#8222;id&#8220;:&#8220;8ae927b8.6131b8&#8243;,&#8220;type&#8220;:&#8220;hue-light&#8220;,&#8220;z&#8220;:&#8220;27ae8d45.93d07a&#8220;,&#8220;name&#8220;:&#8220;Lampe Kleiderschrank&#8220;,&#8220;bridge&#8220;:&#8220;7bbf47a6.f94908&#8243;,&#8220;lightid&#8220;:&#8220;10&#8243;,&#8220;x&#8220;:340,&#8220;y&#8220;:780,&#8220;wires&#8220;:[[&#8222;63259b2b.c68274&#8220;]]},{&#8222;id&#8220;:&#8220;79edc8eb.e3258&#8243;,&#8220;type&#8220;:&#8220;inject&#8220;,&#8220;z&#8220;:&#8220;27ae8d45.93d07a&#8220;,&#8220;name&#8220;:&#8220;Ausschalten&#8220;,&#8220;topic&#8220;:&#8220;&#8220;,&#8220;payload&#8220;:&#8220;false&#8220;,&#8220;payloadType&#8220;:&#8220;bool&#8220;,&#8220;repeat&#8220;:&#8220;&#8220;,&#8220;crontab&#8220;:&#8220;&#8220;,&#8220;once&#8220;:false,&#8220;x&#8220;:130,&#8220;y&#8220;:940,&#8220;wires&#8220;:[[&#8222;8ae927b8.6131b8&#8220;]]},{&#8222;id&#8220;:&#8220;4c4c2cdc.1b76c4&#8243;,&#8220;type&#8220;:&#8220;inject&#8220;,&#8220;z&#8220;:&#8220;27ae8d45.93d07a&#8220;,&#8220;name&#8220;:&#8220;Einschalten&#8220;,&#8220;topic&#8220;:&#8220;&#8220;,&#8220;payload&#8220;:&#8220;true&#8220;,&#8220;payloadType&#8220;:&#8220;bool&#8220;,&#8220;repeat&#8220;:&#8220;&#8220;,&#8220;crontab&#8220;:&#8220;&#8220;,&#8220;once&#8220;:false,&#8220;x&#8220;:130,&#8220;y&#8220;:900,&#8220;wires&#8220;:[[&#8222;8ae927b8.6131b8&#8220;]]},{&#8222;id&#8220;:&#8220;1ab1f8f2.ce461f&#8220;,&#8220;type&#8220;:&#8220;function&#8220;,&#8220;z&#8220;:&#8220;27ae8d45.93d07a&#8220;,&#8220;name&#8220;:&#8220;Rot&#8220;,&#8220;func&#8220;:&#8220;msg.payload={\n\&#8220;on\&#8220;:[true],\n\&#8220;transitiontime\&#8220;:[5],\n\&#8220;bri\&#8220;:[100],\n\&#8220;rgb\&#8220;:[255,0,0]\n}\nreturn msg;\n&#8220;,&#8220;outputs&#8220;:1,&#8220;noerr&#8220;:0,&#8220;x&#8220;:270,&#8220;y&#8220;:1000,&#8220;wires&#8220;:[[&#8222;8ae927b8.6131b8&#8220;]]},{&#8222;id&#8220;:&#8220;8d08fc80.634d38&#8243;,&#8220;type&#8220;:&#8220;inject&#8220;,&#8220;z&#8220;:&#8220;27ae8d45.93d07a&#8220;,&#8220;name&#8220;:&#8220;&#8220;,&#8220;topic&#8220;:&#8220;&#8220;,&#8220;payload&#8220;:&#8220;&#8220;,&#8220;payloadType&#8220;:&#8220;date&#8220;,&#8220;repeat&#8220;:&#8220;&#8220;,&#8220;crontab&#8220;:&#8220;&#8220;,&#8220;once&#8220;:false,&#8220;x&#8220;:120,&#8220;y&#8220;:1000,&#8220;wires&#8220;:[[&#8222;1ab1f8f2.ce461f&#8220;]]},{&#8222;id&#8220;:&#8220;68ad4cf8.166f44&#8243;,&#8220;type&#8220;:&#8220;function&#8220;,&#8220;z&#8220;:&#8220;27ae8d45.93d07a&#8220;,&#8220;name&#8220;:&#8220;Grün&#8220;,&#8220;func&#8220;:&#8220;msg.payload={\n\&#8220;on\&#8220;:[true],\n\&#8220;transitiontime\&#8220;:[5],\n\&#8220;bri\&#8220;:[100],\n\&#8220;rgb\&#8220;:[0,255,0]\n}\nreturn msg;\n&#8220;,&#8220;outputs&#8220;:1,&#8220;noerr&#8220;:0,&#8220;x&#8220;:270,&#8220;y&#8220;:1040,&#8220;wires&#8220;:[[&#8222;8ae927b8.6131b8&#8220;]]},{&#8222;id&#8220;:&#8220;9b1304da.36eff&#8220;,&#8220;type&#8220;:&#8220;inject&#8220;,&#8220;z&#8220;:&#8220;27ae8d45.93d07a&#8220;,&#8220;name&#8220;:&#8220;&#8220;,&#8220;topic&#8220;:&#8220;&#8220;,&#8220;payload&#8220;:&#8220;&#8220;,&#8220;payloadType&#8220;:&#8220;date&#8220;,&#8220;repeat&#8220;:&#8220;&#8220;,&#8220;crontab&#8220;:&#8220;&#8220;,&#8220;once&#8220;:false,&#8220;x&#8220;:120,&#8220;y&#8220;:1040,&#8220;wires&#8220;:[[&#8222;68ad4cf8.166f44&#8220;]]},{&#8222;id&#8220;:&#8220;c5bf1afd.52427&#8243;,&#8220;type&#8220;:&#8220;homekit-service&#8220;,&#8220;z&#8220;:&#8220;27ae8d45.93d07a&#8220;,&#8220;accessory&#8220;:&#8220;299f9416.0ec254&#8243;,&#8220;name&#8220;:&#8220;&#8220;,&#8220;serviceName&#8220;:&#8220;Lightbulb&#8220;,&#8220;x&#8220;:680,&#8220;y&#8220;:780,&#8220;wires&#8220;:[[&#8222;15f5e4fa.608d6b&#8220;]]},{&#8222;id&#8220;:&#8220;63259b2b.c68274&#8243;,&#8220;type&#8220;:&#8220;function&#8220;,&#8220;z&#8220;:&#8220;27ae8d45.93d07a&#8220;,&#8220;name&#8220;:&#8220;Schnitstelle&#8220;,&#8220;func&#8220;:&#8220;var ausgabe = {};\n\nausgabe[\&#8220;Brightness\&#8220;] = msg.payload.brightness;\nausgabe[\&#8220;On\&#8220;] = msg.payload.on;\n\nausgabe[\&#8220;Hue\&#8220;] = rgbToHsl(msg.payload.rgb[0],msg.payload.rgb[1],msg.payload.rgb[2])[0]\nausgabe[\&#8220;Saturation\&#8220;] = rgbToHsl(msg.payload.rgb[0],msg.payload.rgb[1],msg.payload.rgb[2])[1]\nausgabe[\&#8220;ColorTemperature\&#8220;] = rgbToHsl(msg.payload.rgb[0],msg.payload.rgb[1],msg.payload.rgb[2])[2]\n\nmsg.payload = ausgabe;\ndelete msg.info;\nreturn msg;\n\n\n\n\n\n\n\n\n/**\n * Converts an RGB color value to HSL. Conversion formula\n * adapted from http://en.wikipedia.org/wiki/HSL_color_space.\n * Assumes r, g, and b are contained in the set [0, 255] and\n * returns h, s, and l in the set [0, 1].\n *\n * @param {number} r The red color value\n * @param {number} g The green color value\n * @param {number} b The blue color value\n * @return {Array} The HSL representation\n */\nfunction rgbToHsl(r, g, b){\n r /= 255, g /= 255, b /= 255;\n var max = Math.max(r, g, b), min = Math.min(r, g, b);\n var h, s, l = (max + min) / 2;\n\n if(max == min){\n h = s = 0; // achromatic\n }else{\n var d = max &#8211; min;\n s = l &gt; 0.5 ? d / (2 &#8211; max &#8211; min) : d / (max + min);\n switch(max){\n case r: h = (g &#8211; b) / d + (g &lt; b ? 6 : 0); break;\n case g: h = (b &#8211; r) / d + 2; break;\n case b: h = (r &#8211; g) / d + 4; break;\n }\n h /= 6;\n }\n\n return [h, s, l];\n}&#8220;,&#8220;outputs&#8220;:1,&#8220;noerr&#8220;:0,&#8220;x&#8220;:530,&#8220;y&#8220;:780,&#8220;wires&#8220;:[[&#8222;c5bf1afd.52427&#8220;]]},{&#8222;id&#8220;:&#8220;15f5e4fa.608d6b&#8220;,&#8220;type&#8220;:&#8220;function&#8220;,&#8220;z&#8220;:&#8220;27ae8d45.93d07a&#8220;,&#8220;name&#8220;:&#8220;Schnitstelle&#8220;,&#8220;func&#8220;:&#8220;var ausgabe = {};\nausgabe[\&#8220;rgb\&#8220;] = {};\n\nausgabe[\&#8220;brightness\&#8220;] = msg.payload.Brightness;\nausgabe[\&#8220;on\&#8220;] = msg.payload.On;\n\nausgabe[\&#8220;rgb\&#8220;][0] = hslToRgb(msg.payload.Hue, msg.payload.Saturation, msg.payload.ColorTemperature)[0]\nausgabe[\&#8220;rgb\&#8220;][1] = hslToRgb(msg.payload.Hue, msg.payload.Saturation, msg.payload.ColorTemperature)[1]\nausgabe[\&#8220;rgb\&#8220;][2] = hslToRgb(msg.payload.Hue, msg.payload.Saturation, msg.payload.ColorTemperature)[2]\n\nmsg.payload = ausgabe;\ndelete msg.hab;\nreturn msg;\n\n\n\n\n\n/**\n * Converts an HSL color value to RGB. Conversion formula\n * adapted from http://en.wikipedia.org/wiki/HSL_color_space.\n * Assumes h, s, and l are contained in the set [0, 1] and\n * returns r, g, and b in the set [0, 255].\n *\n * @param {number} h The hue\n * @param {number} s The saturation\n * @param {number} l The lightness\n * @return {Array} The RGB representation\n */\nfunction hslToRgb(h, s, l){\n var r, g, b;\n\n if(s == 0){\n r = g = b = l; // achromatic\n }else{\n var hue2rgb = function hue2rgb(p, q, t){\n if(t &lt; 0) t += 1;\n if(t &gt; 1) t -= 1;\n if(t &lt; 1/6) return p + (q &#8211; p) * 6 * t;\n if(t &lt; 1/2) return q;\n if(t &lt; 2/3) return p + (q &#8211; p) * (2/3 &#8211; t) * 6;\n return p;\n }\n\n var q = l &lt; 0.5 ? l * (1 + s) : l + s &#8211; l * s;\n var p = 2 * l &#8211; q;\n r = hue2rgb(p, q, h + 1/3);\n g = hue2rgb(p, q, h);\n b = hue2rgb(p, q, h &#8211; 1/3);\n }\n\n return [Math.round(r * 255), Math.round(g * 255), Math.round(b * 255)];\n}&#8220;,&#8220;outputs&#8220;:1,&#8220;noerr&#8220;:0,&#8220;x&#8220;:830,&#8220;y&#8220;:780,&#8220;wires&#8220;:[[&#8222;8f898b4.d25a778&#8220;]]},{&#8222;id&#8220;:&#8220;7bbf47a6.f94908&#8243;,&#8220;type&#8220;:&#8220;hue-bridge&#8220;,&#8220;z&#8220;:&#8220;&#8220;,&#8220;name&#8220;:&#8220;Philips hue 2.OG&#8220;,&#8220;bridge&#8220;:&#8220;192.168.178.82&#8243;,&#8220;key&#8220;:&#8220;1c9-iDOTUO1F6sdEy3rYArh6oYkrbH9zHy3eXwpO&#8220;,&#8220;interval&#8220;:&#8220;3000&#8243;},{&#8222;id&#8220;:&#8220;299f9416.0ec254&#8243;,&#8220;type&#8220;:&#8220;homekit-accessory&#8220;,&#8220;z&#8220;:&#8220;&#8220;,&#8220;accessoryName&#8220;:&#8220;HueTest&#8220;,&#8220;pinCode&#8220;:&#8220;111-11-111&#8243;,&#8220;port&#8220;:&#8220;&#8220;,&#8220;manufacturer&#8220;:&#8220;Default Manufacturer&#8220;,&#8220;model&#8220;:&#8220;Default Model&#8220;,&#8220;serialNo&#8220;:&#8220;Default Serial Number&#8220;,&#8220;accessoryType&#8220;:&#8220;5&#8243;}]</div></div></p>
<p>[ratings id=&#8220;4221&#8243;]</p></div>
			</div>
			</div>
				
				
				
				
			</div>
				
				
			</div>
<p>Der Beitrag <a href="https://www.imakeyouintelligent.com/node-red-nicht-homekit-zertifizierte-lampen-an-homekit-anbinden-via-hue-teil1/">Node-Red: Nicht HomeKit zertifizierte Lampen an HomeKit anbinden via Hue Teil1</a> erschien zuerst auf <a href="https://www.imakeyouintelligent.com">I MAKE YOU INTELLIGENT</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.imakeyouintelligent.com/node-red-nicht-homekit-zertifizierte-lampen-an-homekit-anbinden-via-hue-teil1/feed/</wfw:commentRss>
			<slash:comments>11</slash:comments>
		
		
			</item>
		<item>
		<title>Philips Hue: Probleme beim verbinden/koppeln &#8211; Lampenfinder</title>
		<link>https://www.imakeyouintelligent.com/philips-hue-probleme-beim-verbindenkoppeln-lampenfinder/</link>
					<comments>https://www.imakeyouintelligent.com/philips-hue-probleme-beim-verbindenkoppeln-lampenfinder/#respond</comments>
		
		<dc:creator><![CDATA[Marvin Heyder]]></dc:creator>
		<pubDate>Wed, 04 Oct 2017 15:35:11 +0000</pubDate>
				<category><![CDATA[Philips Hue]]></category>
		<category><![CDATA[Smart-Home Systeme]]></category>
		<category><![CDATA[Hue]]></category>
		<category><![CDATA[Lampenfinder]]></category>
		<category><![CDATA[Philips]]></category>
		<category><![CDATA[Smart-Home]]></category>
		<guid isPermaLink="false">http://www.imakeyouintelligent.com/?p=4157</guid>

					<description><![CDATA[<p>Der Beitrag <a href="https://www.imakeyouintelligent.com/philips-hue-probleme-beim-verbindenkoppeln-lampenfinder/">Philips Hue: Probleme beim verbinden/koppeln &#8211; Lampenfinder</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_1 et_section_regular" >
				
				
				
				
				
				
				<div class="et_pb_row et_pb_row_1">
				<div class="et_pb_column et_pb_column_4_4 et_pb_column_1  et_pb_css_mix_blend_mode_passthrough et-last-child">
				
				
				
				
				<div class="et_pb_module et_pb_text et_pb_text_1  et_pb_text_align_left et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_text_inner"><p>Der Philips Hue Lampenfinder kann bei dem Problem helfen wenn mal wieder die ein oder andere Birne des Philips Hue System etwas störrisch ist. <strong>Wichtig hierbei aber auch wieder, das Hue Device muss sich in ca. 30cm nähe der Bridge befinden. </strong></p>
<p>Bei dem Problem kann folgendes Program von Philips helfen, welches für alle aber primär Hue Developer freigegeben ist, es handelt sich hier bei um eine Java Applikation die es sowohl für MS Windows als auch für Apple OSx und Linux gibt.</p>
<p>Windows: <a href="http://www.developers.meethue.com/sites/default/files/lampfinder.jar" target="_blank" rel="nofollow noopener">http://www.developers.meethue.com/sites/default/files/lampfinder.jar</a><br />
(Apple OSx/Linux)<a href="http://www.developers.meethue.com/sites/default/files/lampfinder_v1.0.jar" target="_blank" rel="nofollow noopener"> http://www.developers.meethue.com/sites/default/files/lampfinder_v1.0.jar</a></p>
<p>Die Oberfläche ist selbsterklärend:</p>
<p><a href="http://www.imakeyouintelligent.com/wp-content/uploads/2017/10/2017-10-04_17-29-43.jpg"><img loading="lazy" decoding="async" class="alignnone wp-image-4159 size-full" src="http://www.imakeyouintelligent.com/wp-content/uploads/2017/10/2017-10-04_17-29-43.jpg" alt="" width="850" height="400" srcset="https://www.imakeyouintelligent.com/wp-content/uploads/2017/10/2017-10-04_17-29-43.jpg 850w, https://www.imakeyouintelligent.com/wp-content/uploads/2017/10/2017-10-04_17-29-43-600x282.jpg 600w, https://www.imakeyouintelligent.com/wp-content/uploads/2017/10/2017-10-04_17-29-43-300x141.jpg 300w, https://www.imakeyouintelligent.com/wp-content/uploads/2017/10/2017-10-04_17-29-43-768x361.jpg 768w" sizes="(max-width: 850px) 100vw, 850px" /></a></p>
<p><a href="http://www.imakeyouintelligent.com/wp-content/uploads/2017/10/2017-10-04_17-30-08.jpg"><img loading="lazy" decoding="async" class="alignnone wp-image-4158 size-full" src="http://www.imakeyouintelligent.com/wp-content/uploads/2017/10/2017-10-04_17-30-08.jpg" alt="" width="850" height="400" srcset="https://www.imakeyouintelligent.com/wp-content/uploads/2017/10/2017-10-04_17-30-08.jpg 850w, https://www.imakeyouintelligent.com/wp-content/uploads/2017/10/2017-10-04_17-30-08-600x282.jpg 600w, https://www.imakeyouintelligent.com/wp-content/uploads/2017/10/2017-10-04_17-30-08-300x141.jpg 300w, https://www.imakeyouintelligent.com/wp-content/uploads/2017/10/2017-10-04_17-30-08-768x361.jpg 768w" sizes="(max-width: 850px) 100vw, 850px" /></a></p>
<p>[ratings id=&#8220;4157&#8243;]</p></div>
			</div>
			</div>
				
				
				
				
			</div>
				
				
			</div>
<p>Der Beitrag <a href="https://www.imakeyouintelligent.com/philips-hue-probleme-beim-verbindenkoppeln-lampenfinder/">Philips Hue: Probleme beim verbinden/koppeln &#8211; Lampenfinder</a> erschien zuerst auf <a href="https://www.imakeyouintelligent.com">I MAKE YOU INTELLIGENT</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.imakeyouintelligent.com/philips-hue-probleme-beim-verbindenkoppeln-lampenfinder/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Philips Hue Update: Oktober 2017 Support für mehr Zubehör v2.16.0</title>
		<link>https://www.imakeyouintelligent.com/philips-hue-update-oktober-2017-support-fuer-mehr-zubehoer-v2-16-0/</link>
					<comments>https://www.imakeyouintelligent.com/philips-hue-update-oktober-2017-support-fuer-mehr-zubehoer-v2-16-0/#respond</comments>
		
		<dc:creator><![CDATA[Marvin Heyder]]></dc:creator>
		<pubDate>Tue, 03 Oct 2017 18:40:11 +0000</pubDate>
				<category><![CDATA[Internet of Things (IoT)]]></category>
		<category><![CDATA[Node-RED]]></category>
		<category><![CDATA[Philips Hue]]></category>
		<category><![CDATA[Smart-Home Systeme]]></category>
		<category><![CDATA[Hue]]></category>
		<category><![CDATA[Node-Red]]></category>
		<category><![CDATA[Philips]]></category>
		<category><![CDATA[Smart-Home]]></category>
		<category><![CDATA[Update]]></category>
		<guid isPermaLink="false">http://www.imakeyouintelligent.com/?p=4152</guid>

					<description><![CDATA[<p>Der Beitrag <a href="https://www.imakeyouintelligent.com/philips-hue-update-oktober-2017-support-fuer-mehr-zubehoer-v2-16-0/">Philips Hue Update: Oktober 2017 Support für mehr Zubehör v2.16.0</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_2 et_section_regular" >
				
				
				
				
				
				
				<div class="et_pb_row et_pb_row_2">
				<div class="et_pb_column et_pb_column_4_4 et_pb_column_2  et_pb_css_mix_blend_mode_passthrough et-last-child">
				
				
				
				
				<div class="et_pb_module et_pb_text et_pb_text_2  et_pb_text_align_left et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_text_inner"><p>Philips hat gerade (03.10.2017) ein Update für die Hue App Version 2.16.0 und damit inbegriffen die Hue Bridge herausgebracht. Dem ca. 100MB großen Update sind wie der Release Note zu entnehmen, der Support für mehr Philips Hue Zubehör, wie zb. der Motion-Sensor/Bewergungsmelder inbegriffen</p>
<p><div class='et-box et-info'>
					<div class='et-box-content'>Apple HomeKit compatibility for Hue accessories – Philips Hue is extending its Apple HomeKit compatibility for Hue accessories: Hue tap, Hue dimmer switch and Hue motion sensor. Meaning with a press of a button, or movement of your body, you can activate your favorite Apple Home app scenes. To set up automations, you need an Apple TV (4th generation) with tvOS 10 or an iPad with iOS 10 or later.</div></div></p>
<p><a href="http://www.imakeyouintelligent.com/wp-content/uploads/2017/10/IMG_2759.jpg"><img loading="lazy" decoding="async" class="alignnone wp-image-4153 size-large" src="http://www.imakeyouintelligent.com/wp-content/uploads/2017/10/IMG_2759-576x1024.jpg" alt="" width="576" height="1024" srcset="https://www.imakeyouintelligent.com/wp-content/uploads/2017/10/IMG_2759-576x1024.jpg 576w, https://www.imakeyouintelligent.com/wp-content/uploads/2017/10/IMG_2759-600x1067.jpg 600w, https://www.imakeyouintelligent.com/wp-content/uploads/2017/10/IMG_2759-169x300.jpg 169w, https://www.imakeyouintelligent.com/wp-content/uploads/2017/10/IMG_2759.jpg 750w" sizes="(max-width: 576px) 100vw, 576px" /></a></p>
<p>Nun können neben dem Hue Tap-Schalter auch der Hue Dimmer-Schalter für Szenenansteuerung verwendet werden. Wenn wir uns den Bewegungsmelder genauer anschauen, erstellt dieser nach dem Update 3 weitere Geräte im Apple Homekit:</p>
<ul>
<li>LUX Messer</li>
<li>Temperatur</li>
<li>Bewegung</li>
</ul>
<p>Letzteres macht meinen Artikel: <a href="http://www.imakeyouintelligent.com/node-red-philips-hue-motion-sensor-an-home-kit-anbinden/">Node-Red: Philips-Hue Motion-Sensor an Home-Kit anbinden</a> etwas überflüssig ;) Jedoch hat man weiterhin das Problem das der Motion-Sensor dann immer nur zu den in Home-Kit definierbaren Zeitspannen einen Notification ausgibt und sich nicht Steuer lässt, hierzu mehr in: <a href="http://www.imakeyouintelligent.com/node-red-alarmanlage-mit-amazon-dash-button-und-philips-hue-bewegungsmelder/">Node-Red: Alarmanlage mit Amazon Dash Button und Philips Hue Bewegungsmelder</a> in dem Wir mit der Traffic die Kommunikation zwischen Hue Motion-Sensor und Homekit unterbinden.</p>
<p>[ratings id=&#8220;4152&#8243;]</p></div>
			</div>
			</div>
				
				
				
				
			</div>
				
				
			</div>
<p>Der Beitrag <a href="https://www.imakeyouintelligent.com/philips-hue-update-oktober-2017-support-fuer-mehr-zubehoer-v2-16-0/">Philips Hue Update: Oktober 2017 Support für mehr Zubehör v2.16.0</a> erschien zuerst auf <a href="https://www.imakeyouintelligent.com">I MAKE YOU INTELLIGENT</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.imakeyouintelligent.com/philips-hue-update-oktober-2017-support-fuer-mehr-zubehoer-v2-16-0/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Philips Hue: IKEA TRADFRI GU10 LED an Hue anbinden</title>
		<link>https://www.imakeyouintelligent.com/philips-hue-ikea-tradfri-gu10-led-an-hue-anbinden/</link>
					<comments>https://www.imakeyouintelligent.com/philips-hue-ikea-tradfri-gu10-led-an-hue-anbinden/#comments</comments>
		
		<dc:creator><![CDATA[Marvin Heyder]]></dc:creator>
		<pubDate>Tue, 03 Oct 2017 15:49:55 +0000</pubDate>
				<category><![CDATA[Philips Hue]]></category>
		<category><![CDATA[Smart-Home Systeme]]></category>
		<category><![CDATA[Hue]]></category>
		<category><![CDATA[IKEA]]></category>
		<category><![CDATA[Philips]]></category>
		<category><![CDATA[TRADFRI]]></category>
		<guid isPermaLink="false">http://www.imakeyouintelligent.com/?p=4142</guid>

					<description><![CDATA[<p>Der Beitrag <a href="https://www.imakeyouintelligent.com/philips-hue-ikea-tradfri-gu10-led-an-hue-anbinden/">Philips Hue: IKEA TRADFRI GU10 LED an Hue anbinden</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_3 et_section_regular" >
				
				
				
				
				
				
				<div class="et_pb_row et_pb_row_3">
				<div class="et_pb_column et_pb_column_4_4 et_pb_column_3  et_pb_css_mix_blend_mode_passthrough et-last-child">
				
				
				
				
				<div class="et_pb_module et_pb_text et_pb_text_3  et_pb_text_align_left et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_text_inner"><p>Ich wollte kurz vom Anbinden der IKEA TRADFRI an die Philips Hue Bridge berichten.</p>
<p>Für folgendes günstiges Modell habe ich mich entschieden: <a href="http://www.ikea.com/de/de/catalog/products/80365270/">TRÅDFRI LED-Lampe GU10 400 lm, kabellos dimmbar warmes Tageslicht</a><br />Es gibt inzwischen auch noch eine teurere Alternative die nicht nur dimmbar ist sondern auch den Tageslichtweißton ändern kann:<br /><a href="http://www.ikea.com/de/de/catalog/products/00318292/">TRÅDFRI LED-Lampe GU10 400 lm, kabellos dimmbar, Weißspektrum</a> diese schlägt wohl auch mit dem doppelten Preis zu Buche wobei dies im Gegensatz zu den Philips Hue <a href="https://www.amazon.de/Philips-hue-personal-Erweiterung-Energieklasse/dp/B00IHZJ51A/ref=pd_bxgy_201_2?_encoding=UTF8&amp;psc=1&amp;refRID=YCHTQJPGGD7PKXC35X13">Philips hue &#8211; LED personal wireless lighting &#8211; 1 x 6.5W GU10</a> immer noch günstig ist. Nur kann man diese beiden auch nicht ganz vergleichen da die IKEA kein RGB können.</p>
<p>Darauf zu achten ist, dass ihr Birnen mit folgender Bezeichnung kauft, erst mit dieser ist das Koppel an die Philips Hue Bridge ohne Probleme möglich:</p>
<p><a href="http://www.imakeyouintelligent.com/wp-content/uploads/2017/10/IMG_2756.jpg"><img loading="lazy" decoding="async" class="alignnone wp-image-4144 size-large" src="http://www.imakeyouintelligent.com/wp-content/uploads/2017/10/IMG_2756-768x1024.jpg" alt="" width="768" height="1024" srcset="https://www.imakeyouintelligent.com/wp-content/uploads/2017/10/IMG_2756-768x1024.jpg 768w, https://www.imakeyouintelligent.com/wp-content/uploads/2017/10/IMG_2756-600x800.jpg 600w, https://www.imakeyouintelligent.com/wp-content/uploads/2017/10/IMG_2756-225x300.jpg 225w, https://www.imakeyouintelligent.com/wp-content/uploads/2017/10/IMG_2756-1080x1440.jpg 1080w, https://www.imakeyouintelligent.com/wp-content/uploads/2017/10/IMG_2756.jpg 1575w" sizes="(max-width: 768px) 100vw, 768px" /></a></p>
<p>Zum koppeln/verbinden mit der Philips Hue Bridge gibt es nich viel zu sagen, dies läuft so ab wie mit allen anderen Lampen auch, wichtig ist wieder dass man sich mit der Birne in der Nähe der Philips Hue Bridge beim Koppeln befindet.</p>
<p>Die Binnen werden in der Hue wie folgt erkannt:</p>
<p><a href="http://www.imakeyouintelligent.com/wp-content/uploads/2017/10/IMG_2758.jpg"><img loading="lazy" decoding="async" class="alignnone wp-image-4145 size-large" src="http://www.imakeyouintelligent.com/wp-content/uploads/2017/10/IMG_2758-576x1024.jpg" alt="" width="576" height="1024" srcset="https://www.imakeyouintelligent.com/wp-content/uploads/2017/10/IMG_2758-576x1024.jpg 576w, https://www.imakeyouintelligent.com/wp-content/uploads/2017/10/IMG_2758-600x1067.jpg 600w, https://www.imakeyouintelligent.com/wp-content/uploads/2017/10/IMG_2758-169x300.jpg 169w, https://www.imakeyouintelligent.com/wp-content/uploads/2017/10/IMG_2758.jpg 750w" sizes="(max-width: 576px) 100vw, 576px" /></a></p>
<p>Leider sind die IKEA LEDs natürlich nicht Apple Home-Kit fähig, aber dafür werde ich in einem zusätzlichen Post erklären wie wir diese via Node-Red auch in unser Apple Home-Kit bekommen.</p>
<p>In folgendem Beitrag erkläre ich die Anbindung an das AppleHomeKit: <a href="http://www.imakeyouintelligent.com/node-red-nicht-homekit-zertifizierte-lampen-an-homekit-anbinden-via-hue-teil1/">Node-Red: Nicht HomeKit zertifizierte Lampen an HomeKit anbinden via Hue Teil1</a></p></div>
			</div><div class="et_pb_module et_pb_code et_pb_code_0">
				
				
				
				
				<div class="et_pb_code_inner"><iframe style="width:120px;height:240px;" marginwidth="0" marginheight="0" scrolling="no" frameborder="0" src="//ws-eu.amazon-adsystem.com/widgets/q?ServiceVersion=20070822&#038;OneJS=1&#038;Operation=GetAdHtml&#038;MarketPlace=DE&#038;source=ac&#038;ref=tf_til&#038;ad_type=product_link&#038;tracking_id=heydemar03-21&#038;marketplace=amazon&#038;region=DE&#038;placement=B016151IPI&#038;asins=B016151IPI&#038;linkId=7fb8294c300a5a83a889c039efbc2c9e&#038;show_border=false&#038;link_opens_in_new_window=false&#038;price_color=333333&#038;title_color=0066c0&#038;bg_color=ffffff">
    </iframe></div>
			</div>
			</div>
				
				
				
				
			</div>
				
				
			</div>
<p>Der Beitrag <a href="https://www.imakeyouintelligent.com/philips-hue-ikea-tradfri-gu10-led-an-hue-anbinden/">Philips Hue: IKEA TRADFRI GU10 LED an Hue anbinden</a> erschien zuerst auf <a href="https://www.imakeyouintelligent.com">I MAKE YOU INTELLIGENT</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.imakeyouintelligent.com/philips-hue-ikea-tradfri-gu10-led-an-hue-anbinden/feed/</wfw:commentRss>
			<slash:comments>2</slash:comments>
		
		
			</item>
		<item>
		<title>Node-Red: Alarmanlage mit Amazon Dash Button und Philips Hue Bewegungsmelder</title>
		<link>https://www.imakeyouintelligent.com/node-red-alarmanlage-mit-amazon-dash-button-und-philips-hue-bewegungsmelder/</link>
					<comments>https://www.imakeyouintelligent.com/node-red-alarmanlage-mit-amazon-dash-button-und-philips-hue-bewegungsmelder/#respond</comments>
		
		<dc:creator><![CDATA[Marvin Heyder]]></dc:creator>
		<pubDate>Sat, 30 Sep 2017 10:23:20 +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[Smart-Home Systeme]]></category>
		<guid isPermaLink="false">http://www.imakeyouintelligent.com/?p=4122</guid>

					<description><![CDATA[<p>Der Beitrag <a href="https://www.imakeyouintelligent.com/node-red-alarmanlage-mit-amazon-dash-button-und-philips-hue-bewegungsmelder/">Node-Red: Alarmanlage mit Amazon Dash Button und Philips Hue Bewegungsmelder</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_4 et_section_regular" >
				
				
				
				
				
				
				<div class="et_pb_row et_pb_row_4">
				<div class="et_pb_column et_pb_column_4_4 et_pb_column_4  et_pb_css_mix_blend_mode_passthrough et-last-child">
				
				
				
				
				<div class="et_pb_module et_pb_text et_pb_text_4  et_pb_text_align_left et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_text_inner"><p>In meinem Beitrag &#8222;<a href="http://www.imakeyouintelligent.com/node-red-philips-hue-motion-sensor-an-home-kit-anbinden/">Node-Red: Philips-Hue Motion-Sensor an Home-Kit anbinden&#8220;</a> welcher auch hier zu finden ist: <a href="https://flows.nodered.org/flow/ec188c736385e113551d6ce8470b1a31">Philips Hue Motion-Sensor to AppleHomeKit,</a> habe ich darüber berichtet wie man einen Philips Hue Bewegungsmelder via Node-Red an das Apple Home-Kit bindet und dort via Push-Notifications benachrichtigt wird.</p>
<p>Es gibt im Home-Kit die Möglichkeit die Benachrichtigungszeiten an zu passen, das passt aber nun nicht immer, oder man möchte halt erst benachrichtigt werden, wenn man das Haus verlässt und einen Amazon Dash Button gedrückt hat.</p>
<p><a href="http://www.imakeyouintelligent.com/wp-content/uploads/2017/09/IMG_2743.jpg"><img loading="lazy" decoding="async" class="alignnone wp-image-4123 size-large" src="http://www.imakeyouintelligent.com/wp-content/uploads/2017/09/IMG_2743-576x1024.jpg" alt="" width="576" height="1024" srcset="https://www.imakeyouintelligent.com/wp-content/uploads/2017/09/IMG_2743-576x1024.jpg 576w, https://www.imakeyouintelligent.com/wp-content/uploads/2017/09/IMG_2743-600x1067.jpg 600w, https://www.imakeyouintelligent.com/wp-content/uploads/2017/09/IMG_2743-169x300.jpg 169w, https://www.imakeyouintelligent.com/wp-content/uploads/2017/09/IMG_2743.jpg 750w" sizes="(max-width: 576px) 100vw, 576px" /></a></p>
<p>Ich habe nun nach einer Lösung gesucht wie ich die Notification via Hardware Ein- und Ausschalten kann, hierzu ziehe ich wieder den Amazon Dash Button heran. Mit diesem schalte ich eine Funktion die wiederum die &#8222;Ampel&#8220; in Node-Red auf &#8222;Allow&#8220; oder &#8222;Stop&#8220; stellt. Das Bewegungsereignis wird also trotzdem verarbeitet nur nicht an das Home-Kit weitergegeben. Die Ampel hätte man auch vor den Switch direkt hinter den Bewegungsmelder setzen können. Die Funktion wäre gleich ;)</p>
<p>Mit folgendem Flow ist es möglich die Benachrichtigung Ein- und Aus zu schalten:</p>
<p><a href="http://www.imakeyouintelligent.com/wp-content/uploads/2017/09/2017-09-30_12-19-51.jpg"><img loading="lazy" decoding="async" class="alignnone size-large wp-image-4124" src="http://www.imakeyouintelligent.com/wp-content/uploads/2017/09/2017-09-30_12-19-51-1024x201.jpg" alt="" width="1024" height="201" srcset="https://www.imakeyouintelligent.com/wp-content/uploads/2017/09/2017-09-30_12-19-51-1024x201.jpg 1024w, https://www.imakeyouintelligent.com/wp-content/uploads/2017/09/2017-09-30_12-19-51-600x117.jpg 600w, https://www.imakeyouintelligent.com/wp-content/uploads/2017/09/2017-09-30_12-19-51-300x59.jpg 300w, https://www.imakeyouintelligent.com/wp-content/uploads/2017/09/2017-09-30_12-19-51-768x150.jpg 768w, https://www.imakeyouintelligent.com/wp-content/uploads/2017/09/2017-09-30_12-19-51-1080x211.jpg 1080w, https://www.imakeyouintelligent.com/wp-content/uploads/2017/09/2017-09-30_12-19-51.jpg 1144w" sizes="(max-width: 1024px) 100vw, 1024px" /></a></p>
<p>Die Amazon Dash Button &#8211; Toggle Funktion<div class='et-box et-info'>
					<div class='et-box-content'>[{&#8222;id&#8220;:&#8220;700232a0.8181b4&#8243;,&#8220;type&#8220;:&#8220;function&#8220;,&#8220;z&#8220;:&#8220;493a3d1f.c5ee64&#8243;,&#8220;name&#8220;:&#8220;Toogle&#8220;,&#8220;func&#8220;:&#8220;let state = context.get(&#8217;state&#8216;);\nlet out = \&#8220;\&#8220;;\nif(state == null){\n context.set(&#8217;state&#8216;,false);\n}\n\nif(state == true){\n state = false;\n output = \&#8220;STOP\&#8220;;\n}else{\n state = true;\n output = \&#8220;GO\&#8220;\n}\n\ncontext.set(&#8217;state&#8216;,state);\nreturn { \&#8220;payload\&#8220;:output };&#8220;,&#8220;outputs&#8220;:&#8220;1&#8243;,&#8220;noerr&#8220;:0,&#8220;x&#8220;:548,&#8220;y&#8220;:138,&#8220;wires&#8220;:[[&#8222;a3b2e4fe.ffeab&#8220;,&#8220;203ed2dd.de0506&#8243;]]}]</div></div> :</p>
<p>[ratings id=&#8220;4122&#8243;]</p></div>
			</div>
			</div>
				
				
				
				
			</div>
				
				
			</div>
<p>Der Beitrag <a href="https://www.imakeyouintelligent.com/node-red-alarmanlage-mit-amazon-dash-button-und-philips-hue-bewegungsmelder/">Node-Red: Alarmanlage mit Amazon Dash Button und Philips Hue Bewegungsmelder</a> erschien zuerst auf <a href="https://www.imakeyouintelligent.com">I MAKE YOU INTELLIGENT</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.imakeyouintelligent.com/node-red-alarmanlage-mit-amazon-dash-button-und-philips-hue-bewegungsmelder/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Node-Red: Philips-Hue Motion-Sensor an Home-Kit anbinden</title>
		<link>https://www.imakeyouintelligent.com/node-red-philips-hue-motion-sensor-an-home-kit-anbinden/</link>
					<comments>https://www.imakeyouintelligent.com/node-red-philips-hue-motion-sensor-an-home-kit-anbinden/#respond</comments>
		
		<dc:creator><![CDATA[Marvin Heyder]]></dc:creator>
		<pubDate>Sat, 23 Sep 2017 12:54:54 +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[Smart-Home Systeme]]></category>
		<guid isPermaLink="false">http://www.imakeyouintelligent.com/?p=4083</guid>

					<description><![CDATA[<p>Der Beitrag <a href="https://www.imakeyouintelligent.com/node-red-philips-hue-motion-sensor-an-home-kit-anbinden/">Node-Red: Philips-Hue Motion-Sensor an Home-Kit anbinden</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_5 et_section_regular" >
				
				
				
				
				
				
				<div class="et_pb_row et_pb_row_5">
				<div class="et_pb_column et_pb_column_4_4 et_pb_column_5  et_pb_css_mix_blend_mode_passthrough et-last-child">
				
				
				
				
				<div class="et_pb_module et_pb_text et_pb_text_5  et_pb_text_align_left et_pb_bg_layout_light">
				
				
				
				
				<div class="et_pb_text_inner"><p>Um nach mehr aus den Philips-Hue Bewegungsmeldern alias Motion-Sensor zu holen habe ich den Ansatz verfolgt diese via Node-Red an das Apple Home-Kit zu binden.</p>
<p>Mit folgendem Flow auch relativ einfach:</p>
<p><a href="http://www.imakeyouintelligent.com/wp-content/uploads/2017/09/2017-09-23_14-52-41.jpg"><img loading="lazy" decoding="async" class="alignnone size-full wp-image-4085" src="http://www.imakeyouintelligent.com/wp-content/uploads/2017/09/2017-09-23_14-52-41.jpg" alt="" width="1115" height="70" srcset="https://www.imakeyouintelligent.com/wp-content/uploads/2017/09/2017-09-23_14-52-41.jpg 1115w, https://www.imakeyouintelligent.com/wp-content/uploads/2017/09/2017-09-23_14-52-41-600x38.jpg 600w, https://www.imakeyouintelligent.com/wp-content/uploads/2017/09/2017-09-23_14-52-41-300x19.jpg 300w, https://www.imakeyouintelligent.com/wp-content/uploads/2017/09/2017-09-23_14-52-41-768x48.jpg 768w, https://www.imakeyouintelligent.com/wp-content/uploads/2017/09/2017-09-23_14-52-41-1024x64.jpg 1024w, https://www.imakeyouintelligent.com/wp-content/uploads/2017/09/2017-09-23_14-52-41-1080x68.jpg 1080w" sizes="(max-width: 1115px) 100vw, 1115px" /></a></p>
<p>Den Flow könnt ihr euch direkt bei Node-Red kopieren: <a href="https://flows.nodered.org/flow/ec188c736385e113551d6ce8470b1a31">Node-Red &#8211; Flows</a></p>
<p><div class='et-box et-info'>
					<div class='et-box-content'>[{&#8222;id&#8220;:&#8220;e7648e5b.c18458&#8243;,&#8220;type&#8220;:&#8220;hue-motion&#8220;,&#8220;z&#8220;:&#8220;99c7e5c.9dd5798&#8243;,&#8220;name&#8220;:&#8220;Treppenhaus 2.OG Motion Sensor&#8220;,&#8220;bridge&#8220;:&#8220;f35d62f4.17ab98&#8243;,&#8220;sensorid&#8220;:&#8220;8&#8243;,&#8220;x&#8220;:180,&#8220;y&#8220;:140,&#8220;wires&#8220;:[[&#8222;d21dc881.ec5ae8&#8220;]]},{&#8222;id&#8220;:&#8220;6c3d31ec.f01c48&#8243;,&#8220;type&#8220;:&#8220;change&#8220;,&#8220;z&#8220;:&#8220;99c7e5c.9dd5798&#8243;,&#8220;name&#8220;:&#8220;&#8220;,&#8220;rules&#8220;:[{&#8222;t&#8220;:&#8220;change&#8220;,&#8220;p&#8220;:&#8220;payload&#8220;,&#8220;pt&#8220;:&#8220;msg&#8220;,&#8220;from&#8220;:&#8220;true&#8220;,&#8220;fromt&#8220;:&#8220;bool&#8220;,&#8220;to&#8220;:&#8220;MotionDetected&#8220;,&#8220;tot&#8220;:&#8220;msg&#8220;},{&#8222;t&#8220;:&#8220;delete&#8220;,&#8220;p&#8220;:&#8220;payload&#8220;,&#8220;pt&#8220;:&#8220;msg&#8220;},{&#8222;t&#8220;:&#8220;set&#8220;,&#8220;p&#8220;:&#8220;payload.MotionDetected&#8220;,&#8220;pt&#8220;:&#8220;msg&#8220;,&#8220;to&#8220;:&#8220;true&#8220;,&#8220;tot&#8220;:&#8220;bool&#8220;}],&#8220;action&#8220;:&#8220;&#8220;,&#8220;property&#8220;:&#8220;&#8220;,&#8220;from&#8220;:&#8220;&#8220;,&#8220;to&#8220;:&#8220;&#8220;,&#8220;reg&#8220;:false,&#8220;x&#8220;:780,&#8220;y&#8220;:120,&#8220;wires&#8220;:[[&#8222;f543dc27.ebba4&#8220;]]},{&#8222;id&#8220;:&#8220;533ab53a.aa6ae4&#8243;,&#8220;type&#8220;:&#8220;switch&#8220;,&#8220;z&#8220;:&#8220;99c7e5c.9dd5798&#8243;,&#8220;name&#8220;:&#8220;&#8220;,&#8220;property&#8220;:&#8220;payload&#8220;,&#8220;propertyType&#8220;:&#8220;msg&#8220;,&#8220;rules&#8220;:[{&#8222;t&#8220;:&#8220;true&#8220;},{&#8222;t&#8220;:&#8220;false&#8220;}],&#8220;checkall&#8220;:&#8220;true&#8220;,&#8220;outputs&#8220;:2,&#8220;x&#8220;:590,&#8220;y&#8220;:140,&#8220;wires&#8220;:[[&#8222;6c3d31ec.f01c48&#8220;],[&#8222;c44d6315.4d3018&#8220;]]},{&#8222;id&#8220;:&#8220;d21dc881.ec5ae8&#8243;,&#8220;type&#8220;:&#8220;change&#8220;,&#8220;z&#8220;:&#8220;99c7e5c.9dd5798&#8243;,&#8220;name&#8220;:&#8220;&#8220;,&#8220;rules&#8220;:[{&#8222;t&#8220;:&#8220;set&#8220;,&#8220;p&#8220;:&#8220;payload&#8220;,&#8220;pt&#8220;:&#8220;msg&#8220;,&#8220;to&#8220;:&#8220;payload.motion&#8220;,&#8220;tot&#8220;:&#8220;msg&#8220;}],&#8220;action&#8220;:&#8220;&#8220;,&#8220;property&#8220;:&#8220;&#8220;,&#8220;from&#8220;:&#8220;&#8220;,&#8220;to&#8220;:&#8220;&#8220;,&#8220;reg&#8220;:false,&#8220;x&#8220;:420,&#8220;y&#8220;:140,&#8220;wires&#8220;:[[&#8222;533ab53a.aa6ae4&#8220;]]},{&#8222;id&#8220;:&#8220;c44d6315.4d3018&#8243;,&#8220;type&#8220;:&#8220;change&#8220;,&#8220;z&#8220;:&#8220;99c7e5c.9dd5798&#8243;,&#8220;name&#8220;:&#8220;&#8220;,&#8220;rules&#8220;:[{&#8222;t&#8220;:&#8220;change&#8220;,&#8220;p&#8220;:&#8220;payload&#8220;,&#8220;pt&#8220;:&#8220;msg&#8220;,&#8220;from&#8220;:&#8220;false&#8220;,&#8220;fromt&#8220;:&#8220;bool&#8220;,&#8220;to&#8220;:&#8220;MotionDetected&#8220;,&#8220;tot&#8220;:&#8220;msg&#8220;},{&#8222;t&#8220;:&#8220;delete&#8220;,&#8220;p&#8220;:&#8220;payload&#8220;,&#8220;pt&#8220;:&#8220;msg&#8220;},{&#8222;t&#8220;:&#8220;set&#8220;,&#8220;p&#8220;:&#8220;payload.MotionDetected&#8220;,&#8220;pt&#8220;:&#8220;msg&#8220;,&#8220;to&#8220;:&#8220;false&#8220;,&#8220;tot&#8220;:&#8220;bool&#8220;}],&#8220;action&#8220;:&#8220;&#8220;,&#8220;property&#8220;:&#8220;&#8220;,&#8220;from&#8220;:&#8220;&#8220;,&#8220;to&#8220;:&#8220;&#8220;,&#8220;reg&#8220;:false,&#8220;x&#8220;:780,&#8220;y&#8220;:160,&#8220;wires&#8220;:[[&#8222;f543dc27.ebba4&#8220;]]},{&#8222;id&#8220;:&#8220;f543dc27.ebba4&#8243;,&#8220;type&#8220;:&#8220;homekit-service&#8220;,&#8220;z&#8220;:&#8220;99c7e5c.9dd5798&#8243;,&#8220;accessory&#8220;:&#8220;8e940f35.deb528&#8243;,&#8220;name&#8220;:&#8220;MotionSensor Treppenhaus 2.OG&#8220;,&#8220;serviceName&#8220;:&#8220;MotionSensor&#8220;,&#8220;x&#8220;:1080,&#8220;y&#8220;:140,&#8220;wires&#8220;:[[]]},{&#8222;id&#8220;:&#8220;f35d62f4.17ab98&#8243;,&#8220;type&#8220;:&#8220;hue-bridge&#8220;,&#8220;z&#8220;:&#8220;&#8220;,&#8220;name&#8220;:&#8220;Philips hue 2.OG&#8220;,&#8220;bridge&#8220;:&#8220;192.168.178.82&#8243;,&#8220;key&#8220;:&#8220;1c9-iDOTUO1F6sdEy3rYArh6oYkrbH9zHy3eXwpO&#8220;,&#8220;interval&#8220;:&#8220;3000&#8243;},{&#8222;id&#8220;:&#8220;8e940f35.deb528&#8243;,&#8220;type&#8220;:&#8220;homekit-accessory&#8220;,&#8220;z&#8220;:&#8220;&#8220;,&#8220;accessoryName&#8220;:&#8220;Hue MotionSensor Treppenhaus &#8211; 2.OG&#8220;,&#8220;pinCode&#8220;:&#8220;111-11-111&#8243;,&#8220;port&#8220;:&#8220;&#8220;,&#8220;manufacturer&#8220;:&#8220;Default Manufacturer&#8220;,&#8220;model&#8220;:&#8220;Default Model&#8220;,&#8220;serialNo&#8220;:&#8220;Default Serial Number&#8220;,&#8220;accessoryType&#8220;:&#8220;10&#8243;}]</div></div></p>
<p>Der Flow erlaubt es euch jede Bewegung die vom Philips Hue Bewegungsmelder delektiert wird als Push auf eurem iPhone/iPad/AppleWatch anzuzeigen.</p></div>
			</div>
			</div>
				
				
				
				
			</div>
				
				
			</div>
<p>Der Beitrag <a href="https://www.imakeyouintelligent.com/node-red-philips-hue-motion-sensor-an-home-kit-anbinden/">Node-Red: Philips-Hue Motion-Sensor an Home-Kit anbinden</a> erschien zuerst auf <a href="https://www.imakeyouintelligent.com">I MAKE YOU INTELLIGENT</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.imakeyouintelligent.com/node-red-philips-hue-motion-sensor-an-home-kit-anbinden/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<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_6 et_section_regular" >
				
				
				
				
				
				
				<div class="et_pb_row et_pb_row_6">
				<div class="et_pb_column et_pb_column_4_4 et_pb_column_6  et_pb_css_mix_blend_mode_passthrough et-last-child">
				
				
				
				
				<div class="et_pb_module et_pb_text et_pb_text_6  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>
