<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments for Maartendamen&#039;s blog</title>
	<atom:link href="http://www.maartendamen.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.maartendamen.com</link>
	<description>Blogging on various IT subjects</description>
	<lastBuildDate>Mon, 26 Dec 2011 09:18:56 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>Comment on Getting started with z-wave and python by Jan Penninkhof</title>
		<link>http://www.maartendamen.com/2010/11/getting-started-with-z-wave-and-python/comment-page-1/#comment-3648</link>
		<dc:creator>Jan Penninkhof</dc:creator>
		<pubDate>Mon, 26 Dec 2011 09:18:56 +0000</pubDate>
		<guid isPermaLink="false">http://www.maartendamen.com/?p=438#comment-3648</guid>
		<description>Hi Maarten,

Couldn&#039;t help noticing that you&#039;ve moved from Plugwise to Z-wave devices. I&#039;m very curious on your reasons, as pricing and feature-set is quite similar. Was it the openness of the protocol or perhaps reach of the built-in radio (which is not very great in Plugwise devices).

Cheers,
Jan</description>
		<content:encoded><![CDATA[<p>Hi Maarten,</p>
<p>Couldn&#8217;t help noticing that you&#8217;ve moved from Plugwise to Z-wave devices. I&#8217;m very curious on your reasons, as pricing and feature-set is quite similar. Was it the openness of the protocol or perhaps reach of the built-in radio (which is not very great in Plugwise devices).</p>
<p>Cheers,<br />
Jan</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Jeenode infrared project part 1: getting started by Libraries / Frameworks by dweez - Pearltrees</title>
		<link>http://www.maartendamen.com/2010/05/jeenode-infrared-project-part-1-getting-started/comment-page-1/#comment-3554</link>
		<dc:creator>Libraries / Frameworks by dweez - Pearltrees</dc:creator>
		<pubDate>Sat, 10 Dec 2011 11:24:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.maartendamen.com/?p=257#comment-3554</guid>
		<description>[...] 06 Jeenode infrared project part 1: getting started &#124; Maartendamen&#039;s blog         Android Arduino Android &amp; µcontroler (Arduino) Android Android Development [+]   [...]</description>
		<content:encoded><![CDATA[<p>[...] 06 Jeenode infrared project part 1: getting started | Maartendamen&#039;s blog         Android Arduino Android &amp; µcontroler (Arduino) Android Android Development [+]   [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on My home server setup part 1: basic setup and hardware by Daniel</title>
		<link>http://www.maartendamen.com/2011/11/my-home-server-setup-part-1-basic-setup-and-hardware/comment-page-1/#comment-3471</link>
		<dc:creator>Daniel</dc:creator>
		<pubDate>Fri, 18 Nov 2011 12:55:27 +0000</pubDate>
		<guid isPermaLink="false">http://www.maartendamen.com/?p=1064#comment-3471</guid>
		<description>Very interesting to read, thinking about virtualizing my servers at home. Looking forward tho the next part.</description>
		<content:encoded><![CDATA[<p>Very interesting to read, thinking about virtualizing my servers at home. Looking forward tho the next part.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Plugwise protocol unleashed part 1: introduction by Adrian</title>
		<link>http://www.maartendamen.com/2010/01/plugwise-protocol-unleashed-part-1-introduction/comment-page-1/#comment-3451</link>
		<dc:creator>Adrian</dc:creator>
		<pubDate>Sun, 13 Nov 2011 12:38:39 +0000</pubDate>
		<guid isPermaLink="false">http://www.maartendamen.com/?p=89#comment-3451</guid>
		<description>Hello, can anyone help me please.

I am trying to write a program in Java for comunicating with the Plugwise Circle.

I wrote a simple program which opens the port and writes to its OutputStream. I tried the following:

   byte[] text = {0x05, 0x05, 0x03, 0x03, 0x30, 0x30, 0x30, 0x41, 0x42, 0x34, 0x33, 0x43, 0x0D, 0x0A};
   output.write(text);

but it doesn&#039;t work. I receive nothing. I have tried the RealTerm software with which I can send data (ASCII) to the serial port.
When I send this string:
 
   \x05\x05\x03\x03\x30\x30\x30\x41\x42\x34\x33\x43\x0D\x0A

I get back the same string i captured with portmon software.
So i thought the java code I wrote might be wrong, the way I am trying to send &quot;Hexadecimal&quot; data.
Can anyone help me please...</description>
		<content:encoded><![CDATA[<p>Hello, can anyone help me please.</p>
<p>I am trying to write a program in Java for comunicating with the Plugwise Circle.</p>
<p>I wrote a simple program which opens the port and writes to its OutputStream. I tried the following:</p>
<p>   byte[] text = {0&#215;05, 0&#215;05, 0&#215;03, 0&#215;03, 0&#215;30, 0&#215;30, 0&#215;30, 0&#215;41, 0&#215;42, 0&#215;34, 0&#215;33, 0&#215;43, 0x0D, 0x0A};<br />
   output.write(text);</p>
<p>but it doesn&#8217;t work. I receive nothing. I have tried the RealTerm software with which I can send data (ASCII) to the serial port.<br />
When I send this string:</p>
<p>   \x05\x05\x03\x03\x30\x30\x30\x41\x42\x34\x33\x43\x0D\x0A</p>
<p>I get back the same string i captured with portmon software.<br />
So i thought the java code I wrote might be wrong, the way I am trying to send &#8220;Hexadecimal&#8221; data.<br />
Can anyone help me please&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Plugwise protocol unleashed part 1: introduction by Adrian</title>
		<link>http://www.maartendamen.com/2010/01/plugwise-protocol-unleashed-part-1-introduction/comment-page-1/#comment-3448</link>
		<dc:creator>Adrian</dc:creator>
		<pubDate>Sat, 12 Nov 2011 13:26:07 +0000</pubDate>
		<guid isPermaLink="false">http://www.maartendamen.com/?p=89#comment-3448</guid>
		<description>Hello everyone.

That&#039;s a really awesome work everybody has done. I currently got a Circle+/Circle Home Start from Plugwise for my master thesis research and I wanted to write a program in Java for retrieving power consumption from the Circle. I&#039;ve read almost all the articles but I can&#039;t understand how should I send the msg to the serial port. Here is a simple code I use:

serialPort = (SerialPort) portId.open(this.getClass().getName(), TIME_OUT);
serialPort.setSerialPortParams(DATA_RATE, SerialPort.DATABITS_8, SerialPort.STOPBITS_1, SerialPort.PARITY_NONE);
// Open the Streams
input = serialPort.getInputStream();
output = serialPort.getOutputStream();
// Add event Listeners
serialPort.addEventListener(this);
serialPort.notifyOnDataAvailable(true);

String text = &quot;003E000D6F0000AF6414&quot;;
String crc16 = Checksum.getCRC16_String(text);
			
String packet = text + crc16;
			
byte[] sentPacket = HexBin.decode(packet);

output.write(sentPacket);

But I can&#039;t get any msg at all. I&#039;m not very used to serial programming.
For the CRC16 I used the code here http://domoticaforum.eu/viewtopic.php?f=39&amp;t=5803&amp;p=45093&amp;hilit=java+plugwise#p45093 (by Tiz).

I hope anyone can help me, thanks.</description>
		<content:encoded><![CDATA[<p>Hello everyone.</p>
<p>That&#8217;s a really awesome work everybody has done. I currently got a Circle+/Circle Home Start from Plugwise for my master thesis research and I wanted to write a program in Java for retrieving power consumption from the Circle. I&#8217;ve read almost all the articles but I can&#8217;t understand how should I send the msg to the serial port. Here is a simple code I use:</p>
<p>serialPort = (SerialPort) portId.open(this.getClass().getName(), TIME_OUT);<br />
serialPort.setSerialPortParams(DATA_RATE, SerialPort.DATABITS_8, SerialPort.STOPBITS_1, SerialPort.PARITY_NONE);<br />
// Open the Streams<br />
input = serialPort.getInputStream();<br />
output = serialPort.getOutputStream();<br />
// Add event Listeners<br />
serialPort.addEventListener(this);<br />
serialPort.notifyOnDataAvailable(true);</p>
<p>String text = &#8220;003E000D6F0000AF6414&#8243;;<br />
String crc16 = Checksum.getCRC16_String(text);</p>
<p>String packet = text + crc16;</p>
<p>byte[] sentPacket = HexBin.decode(packet);</p>
<p>output.write(sentPacket);</p>
<p>But I can&#8217;t get any msg at all. I&#8217;m not very used to serial programming.<br />
For the CRC16 I used the code here <a href="http://domoticaforum.eu/viewtopic.php?f=39&#038;t=5803&#038;p=45093&#038;hilit=java+plugwise#p45093" rel="nofollow">http://domoticaforum.eu/viewtopic.php?f=39&#038;t=5803&#038;p=45093&#038;hilit=java+plugwise#p45093</a> (by Tiz).</p>
<p>I hope anyone can help me, thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Byebye RabbitMQ, hello 0MQ! by Whytey</title>
		<link>http://www.maartendamen.com/2011/10/byebye-rabbitmq-hello-0mq/comment-page-1/#comment-3388</link>
		<dc:creator>Whytey</dc:creator>
		<pubDate>Thu, 20 Oct 2011 07:01:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.maartendamen.com/?p=957#comment-3388</guid>
		<description>Sounds like a great move and still supported by many languages so plugins can still be in many forms.</description>
		<content:encoded><![CDATA[<p>Sounds like a great move and still supported by many languages so plugins can still be in many forms.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Byebye RabbitMQ, hello 0MQ! by Daniel</title>
		<link>http://www.maartendamen.com/2011/10/byebye-rabbitmq-hello-0mq/comment-page-1/#comment-3379</link>
		<dc:creator>Daniel</dc:creator>
		<pubDate>Mon, 17 Oct 2011 22:14:26 +0000</pubDate>
		<guid isPermaLink="false">http://www.maartendamen.com/?p=957#comment-3379</guid>
		<description>I like the new architecture Maarten. It recalls me the lack of database server in SQLite.</description>
		<content:encoded><![CDATA[<p>I like the new architecture Maarten. It recalls me the lack of database server in SQLite.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on SCOM alert notification subscription delay sending for x minutes and don&#8217;t sent if alert is auto-resolved within that time by Ralph</title>
		<link>http://www.maartendamen.com/2009/12/scom-alert-notification-subscription-delay-sending-for-x-minutes-and-dont-sent-if-alert-is-auto-resolved-within-that-time/comment-page-1/#comment-3346</link>
		<dc:creator>Ralph</dc:creator>
		<pubDate>Thu, 29 Sep 2011 07:52:42 +0000</pubDate>
		<guid isPermaLink="false">http://www.maartendamen.com/?p=40#comment-3346</guid>
		<description>SMS notification schedule

Hi Guys, 
Need advice, i have SMS notification send after hours. The schedule is Date Range : Always ; Weekly recurrence: Except from 07:00 AM To 08:00 PM; on the selected days of the week : Monady to Friday. Then the second Schedule is always, all day, weekend days.

The problem i have, i olny recieve sms notification only on weekends.
is there any otherway to configure schedule time.</description>
		<content:encoded><![CDATA[<p>SMS notification schedule</p>
<p>Hi Guys,<br />
Need advice, i have SMS notification send after hours. The schedule is Date Range : Always ; Weekly recurrence: Except from 07:00 AM To 08:00 PM; on the selected days of the week : Monady to Friday. Then the second Schedule is always, all day, weekend days.</p>
<p>The problem i have, i olny recieve sms notification only on weekends.<br />
is there any otherway to configure schedule time.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Disable hibernation on multiple Windows 2008 servers using Windows Powershell by IT Questions</title>
		<link>http://www.maartendamen.com/2011/02/disable-hibernation-on-multiple-windows-2008-servers-using-windows-powershell/comment-page-1/#comment-3342</link>
		<dc:creator>IT Questions</dc:creator>
		<pubDate>Sun, 25 Sep 2011 04:32:13 +0000</pubDate>
		<guid isPermaLink="false">http://www.maartendamen.com/?p=613#comment-3342</guid>
		<description>&lt;strong&gt;IT Questions and answers...&lt;/strong&gt;

[...]Disable hibernation on multiple Windows 2008 servers using Windows Powershell &#124; Maartendamen&#039;s blog[...]...</description>
		<content:encoded><![CDATA[<p><strong>IT Questions and answers&#8230;</strong></p>
<p>[...]Disable hibernation on multiple Windows 2008 servers using Windows Powershell | Maartendamen&#039;s blog[...]&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Plugwise on Linux downloads back online by Bastiaan</title>
		<link>http://www.maartendamen.com/2009/11/plugwise-on-linux-downloads-back-online/comment-page-1/#comment-3316</link>
		<dc:creator>Bastiaan</dc:creator>
		<pubDate>Sun, 11 Sep 2011 18:39:38 +0000</pubDate>
		<guid isPermaLink="false">http://www.maartendamen.com/?p=17#comment-3316</guid>
		<description>Hi,

Do you have a manual about installing the POL ?

Regards,

Bastiaan</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>Do you have a manual about installing the POL ?</p>
<p>Regards,</p>
<p>Bastiaan</p>
]]></content:encoded>
	</item>
</channel>
</rss>

