<?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>Hue Archive - I MAKE YOU INTELLIGENT</title>
	<atom:link href="https://www.imakeyouintelligent.com/tag/hue/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.imakeyouintelligent.com/tag/hue/</link>
	<description>Mach die Welt ein bisschen intelligenter</description>
	<lastBuildDate>Sat, 17 Oct 2020 08:40:15 +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>Hue Archive - I MAKE YOU INTELLIGENT</title>
	<link>https://www.imakeyouintelligent.com/tag/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>
	</channel>
</rss>
