<?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>Digits Domotica Blog &#187; Fritz!Box</title>
	<atom:link href="http://blog.hekkers.net/tag/fritzbox/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.hekkers.net</link>
	<description>My Weblog about Domotica and more</description>
	<lastBuildDate>Wed, 01 Feb 2012 19:32:52 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Major upgrade of Fritz!Box Plugin for Homeseer</title>
		<link>http://blog.hekkers.net/2010/01/29/major-upgrade-of-fritzbox-plugin-for-homeseer/</link>
		<comments>http://blog.hekkers.net/2010/01/29/major-upgrade-of-fritzbox-plugin-for-homeseer/#comments</comments>
		<pubDate>Fri, 29 Jan 2010 17:00:51 +0000</pubDate>
		<dc:creator>Robert Hekkers</dc:creator>
				<category><![CDATA[Domotica]]></category>
		<category><![CDATA[Fritz!Box]]></category>
		<category><![CDATA[Homeseer]]></category>
		<category><![CDATA[Plugin]]></category>

		<guid isPermaLink="false">http://blog.hekkers.net/?p=732</guid>
		<description><![CDATA[This week i published a major Upgrade for the Fritz!Box Plugin for Homeseer. As i mentioned before, there were still some interesting things that could be added to the Plug-in and i thought it was time to revive the Plugin by adding some functionality that was asked for, make it future proof by supporting the [...]]]></description>
			<content:encoded><![CDATA[<p>This week i published a major Upgrade for the Fritz!Box Plugin for Homeseer.</p>
<p>As i mentioned before, there were still some interesting things that could be added to the Plug-in and i thought it was time to revive the Plugin by adding some functionality that was asked for, make it future proof by supporting the newer firmware versions. Some of the things that have been added in the last 2 weeks are:</p>
<p>- Retrieving the Phone Book from the Fritz!Box and using it for Caller ID(entification);</p>
<p>- Searching websites on the Internet for Caller ID;</p>
<p>- Supporting the challenge/response security mechanism built into new firmware;</p>
<p>- Switching the WLAN from Homeseer;</p>
<p>- some useful stuff for use in scripts;</p>
<p>- upgrade of configuration pages to ASP.NET.</p>
<p>You can read all about it in more detail on <a href="http://www.domoticaforum.eu/viewforum.php?f=44" target="_blank">domoticaforum.eu</a></p>
<p>This should do for some time; maybe some small additions or fixes, but that&#8217;s it for now; time to move on to development of another brand new and exciting Plugin! <img src='http://blog.hekkers.net/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://blog.hekkers.net/2010/01/29/major-upgrade-of-fritzbox-plugin-for-homeseer/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Extensions for the Fritz!Box Plugin for Homeseer</title>
		<link>http://blog.hekkers.net/2010/01/15/extensions-for-the-fritzbox-plugin-for-homeseer/</link>
		<comments>http://blog.hekkers.net/2010/01/15/extensions-for-the-fritzbox-plugin-for-homeseer/#comments</comments>
		<pubDate>Fri, 15 Jan 2010 17:00:20 +0000</pubDate>
		<dc:creator>Robert Hekkers</dc:creator>
				<category><![CDATA[Domotica]]></category>
		<category><![CDATA[Fritz!Box]]></category>
		<category><![CDATA[Homeseer]]></category>
		<category><![CDATA[Plugin]]></category>

		<guid isPermaLink="false">http://blog.hekkers.net/?p=709</guid>
		<description><![CDATA[It has been quiet regarding the Fritz!Box Plugin for Homeseer for a while, but that&#8217;s going to change; when others start creating scripts around my Plugin then you know there&#8217;s something missing and it&#8217;s time to have a look at it&#8230; The last couple of days i was looking at how i could spend the [...]]]></description>
			<content:encoded><![CDATA[<p>It has been quiet regarding the Fritz!Box Plugin for Homeseer for a while, but that&#8217;s going to change; when others start creating scripts around my Plugin then you know there&#8217;s something missing and it&#8217;s time to have a look at it&#8230;</p>
<p>The last couple of days i was looking at how i could spend the huge amounts of free time i have lately and decided to spend it on extending the Plugin with some extra features; the Fritz!Box has a lot to offer, so there are still a lot of things to explore.</p>
<p>But first i had to tackle the <strong><a href="http://www.avm.de/de/Extern/Technical_Note_Session_ID.pdf" target="_blank">new way of logging in</a></strong> to the Web-interface that has changed in the recent firmware versions (xx.04.74 and higher). This new method of logging in involves calculating <strong><a href="http://en.wikipedia.org/wiki/MD5" target="_blank">MD5</a></strong> value based on a challenge provided by the Fritz!Box, and having read once that a lot of faulty MD5 routines exist, i decided to look into that issue first. I mean, creating additional functionality without supporting the latest firmware sounds rather stupid to me.<br />
OK, the sequence of actions to do a successful login were clear to me, that wouldn&#8217;t be the problem; only thing i hoped for was that the calculation of the MD5 hash would succeed with the .NET provided classes/routines. So i created a simple function that could return the MD5 of a given string:</p>
<p><img class="size-full wp-image-710 alignnone" title="MD5-Hash" src="http://blog.hekkers.net/wp-content/uploads/2010/01/capture15-1-2010-141555.png" alt="MD5-Hash" width="597" height="84" /></p>
<p>The resulting md5bytes should contain the correct hash value when each byte was written as hex string value and all 16 of them were concatenated. But something strange was going on&#8230;</p>
<p>The AVM documentation stated the resulting MD5 should be: <span style="color: #ff0000;"><span style="text-decoration: underline;">9e</span>224a41eeefa284df7bb0f26c2913e2</span> And what did i get? <span style="color: #ff0000;"><span style="text-decoration: underline;">58</span>224a41eeefa284df7bb0f26c2913e2</span>.</p>
<p>What&#8217;s this&#8230; well OK, it&#8217;s almost the same, maybe it will work, lol.<br />
On the contrary, this ain&#8217;t funny at all of course&#8230; what&#8217;s going on here ??? I just didn&#8217;t know what was wrong; was it the encoding? The AVM guideline speaks of UTF-16LE (LE = Little Endian), BOM, trailing 0-bytes, Codepoints; not really the stuff i deal with on a daily basis, so &#8230;??</p>
<p>Searching MSDN i found this:</p>
<p><img class="alignnone size-full wp-image-711" title="Not mine" src="http://blog.hekkers.net/wp-content/uploads/2010/01/capture15-1-2010-142146.png" alt="Not mine" width="582" height="261" /></p>
<p>With just a tiny adjustment (there where the cursor is) and it worked&#8230;</p>
<p>I still don&#8217;t understand why; these things can really bug me and now i&#8217;m struggling to either just go on and let it be, or go to the bottom of this?</p>
<p>Let&#8217;s hope i don&#8217;t encounter to much of these mysteries..  <img src='http://blog.hekkers.net/wp-includes/images/smilies/icon_sad.gif' alt=':-(' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://blog.hekkers.net/2010/01/15/extensions-for-the-fritzbox-plugin-for-homeseer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fritz!Box Plugin for Homeseer released and working ok</title>
		<link>http://blog.hekkers.net/2009/04/22/fritzbox-plugin-released-and-working-ok/</link>
		<comments>http://blog.hekkers.net/2009/04/22/fritzbox-plugin-released-and-working-ok/#comments</comments>
		<pubDate>Wed, 22 Apr 2009 22:33:05 +0000</pubDate>
		<dc:creator>Robert Hekkers</dc:creator>
				<category><![CDATA[Domotica]]></category>
		<category><![CDATA[Fritz!Box]]></category>
		<category><![CDATA[Homeseer]]></category>
		<category><![CDATA[Plugin]]></category>

		<guid isPermaLink="false">http://blog.hekkers.net/?p=170</guid>
		<description><![CDATA[Fritz!Box Plugin for Homeseer released]]></description>
			<content:encoded><![CDATA[<p>After being released on March 25, 2009 it seems the Fritz!Box Plugin for Homeseer is doing fine. <a href="http://www.bwired.nl" target="_blank">Pieter Knuvers</a>, webmaster of <a href="http://www.domoticaforum.eu/viewforum.php?f=44" target="_blank">Domoticaforum.eu</a> dedicated a forum to my plugin. New requests keep coming in for additions to the plugin and few bugs have been reported since the first release. So you could say that the first Homeseer Plugin i ever made is a success. And there are more Plugins to come, 4 new Plugins are planned already <img src='http://blog.hekkers.net/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' />  That&#8217;s all i can say for now&#8230; More information about the Plugin can be found <a href="http://www.domoticaforum.eu/viewforum.php?f=44" target="_blank">here</a>. (Dutch)</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.hekkers.net/2009/04/22/fritzbox-plugin-released-and-working-ok/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fritz!Box Plugin for Homeseer progressing</title>
		<link>http://blog.hekkers.net/2009/03/10/fritzbox-plugin-for-homeseer-progressing/</link>
		<comments>http://blog.hekkers.net/2009/03/10/fritzbox-plugin-for-homeseer-progressing/#comments</comments>
		<pubDate>Tue, 10 Mar 2009 22:27:13 +0000</pubDate>
		<dc:creator>Robert Hekkers</dc:creator>
				<category><![CDATA[Domotica]]></category>
		<category><![CDATA[Fritz!Box]]></category>
		<category><![CDATA[Homeseer]]></category>
		<category><![CDATA[Plugin]]></category>

		<guid isPermaLink="false">http://blog.hekkers.net/?p=125</guid>
		<description><![CDATA[Work on the Fritz!Box Plugin for Homeseer is progressing. Currently it&#8217;s being tested while i&#8217;m working on the code to log all phone calls to an Access database. The Plugin has been tested with the Fritz!Box FON WLAN 7170 and the 7270. Other models will be added to this list as more users will start [...]]]></description>
			<content:encoded><![CDATA[<div id="attachment_130" class="wp-caption alignnone" style="width: 775px"><img class="size-full wp-image-130" title="Fritz!Box Plugin Devices in Homeseer" src="http://blog.hekkers.net/wp-content/uploads/2009/03/capture_10-3-2009-1952301.png" alt="capture_10-3-2009-1952301" width="765" height="119" /><p class="wp-caption-text">Fritz!Box Plugin Devices in Homeseer</p></div>
<p>Work on the Fritz!Box Plugin for Homeseer is progressing. Currently it&#8217;s being tested while i&#8217;m working on the code to log all phone calls to an Access database.</p>
<p>The Plugin has been tested with the Fritz!Box FON WLAN 7170 and the 7270. Other models will be added to this list as more users will start using the Plugin.</p>
<p>This is what the Plugin Config page looks like:</p>
<div id="attachment_128" class="wp-caption alignnone" style="width: 576px"><img class="size-full wp-image-128" title="Fritz!Box Plugin Configuration Page" src="http://blog.hekkers.net/wp-content/uploads/2009/03/capture_10-3-2009-1958081.png" alt="capture_10-3-2009-1958081" width="566" height="295" /><p class="wp-caption-text">Fritz!Box Plugin Configuration Page</p></div>
<p>The nicest feature (IMO) is that the information displayed in the Devicestring is user configurable.</p>
<p>That means that the user has control of what pieces of information (incoming or outgoing, phone numbers, call duration) are shown and their sequence.</p>
<p>I must say, after getting a bit familiar with Homeseer (i&#8217;ve never used it before, but had to install it to test my own plugin), i&#8217;m beginning to like writing Plugins for it <img src='http://blog.hekkers.net/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' />  But using Homeseer as a regular user? No, not my cup of tea&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.hekkers.net/2009/03/10/fritzbox-plugin-for-homeseer-progressing/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Homeseer Plugin for my Fritz!Box FON 7170</title>
		<link>http://blog.hekkers.net/2009/03/01/homeseer-plugin-for-my-fritzbox-fon-7170/</link>
		<comments>http://blog.hekkers.net/2009/03/01/homeseer-plugin-for-my-fritzbox-fon-7170/#comments</comments>
		<pubDate>Sun, 01 Mar 2009 03:27:01 +0000</pubDate>
		<dc:creator>Robert Hekkers</dc:creator>
				<category><![CDATA[Domotica]]></category>
		<category><![CDATA[Fritz!Box]]></category>
		<category><![CDATA[Homeseer]]></category>
		<category><![CDATA[Plugin]]></category>

		<guid isPermaLink="false">http://blog.hekkers.net/?p=74</guid>
		<description><![CDATA[Since a few days i&#8217;m developing a Homeseer plugin for my Fritz!Box FON 7170. Not for myself ofcourse (i&#8217;m not using Homeseer), but just to see if i could do a thing like that. And to help a Domotica buddy ofcourse Not knowing anything about Homeseer, i managed to create a plugin that could serve [...]]]></description>
			<content:encoded><![CDATA[<p>Since a few days i&#8217;m developing a Homeseer plugin for my Fritz!Box FON 7170.</p>
<div id="attachment_75" class="wp-caption alignleft" style="width: 160px"><img class="size-full wp-image-75" title="Fritz!Box FON 7170" src="http://blog.hekkers.net/wp-content/uploads/2009/03/fbf7170.jpeg" alt="Fritz!Box FON 7170" width="150" height="108" /><p class="wp-caption-text">Fritz!Box FON 7170</p></div>
<p>Not for myself ofcourse (i&#8217;m not using Homeseer), but just to see if i could do a thing like that. And to help a Domotica buddy ofcourse <img src='http://blog.hekkers.net/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>Not knowing anything about Homeseer, i managed to create a plugin that could serve as a trigger for Homeseer events. The plugin is going to be tested in the next couple of days. I hope everything will work out as expected and the plugin is stable enough to continue building on  a Homeseer plugin that could be usefull to all those who own both Homeseer and this Fritz.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.hekkers.net/2009/03/01/homeseer-plugin-for-my-fritzbox-fon-7170/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

