<?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>Kommentare für M8IN.DE</title>
	<atom:link href="http://www.m8in.de/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.m8in.de</link>
	<description>was ich immer schon mal sagen wollte!</description>
	<lastBuildDate>Fri, 10 Feb 2012 16:22:30 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>Kommentar zu mtXcontrol unter Windows 7 64bit von George</title>
		<link>http://www.m8in.de/2011/09/14/mtxcontrol-unter-windows-7-64bit/comment-page-1/#comment-660</link>
		<dc:creator>George</dc:creator>
		<pubDate>Fri, 10 Feb 2012 16:22:30 +0000</pubDate>
		<guid isPermaLink="false">http://www.m8in.de/?p=578#comment-660</guid>
		<description>Thanks so much for trying though!</description>
		<content:encoded><![CDATA[<p>Thanks so much for trying though!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Kommentar zu mtXcontrol unter Windows 7 64bit von mc</title>
		<link>http://www.m8in.de/2011/09/14/mtxcontrol-unter-windows-7-64bit/comment-page-1/#comment-644</link>
		<dc:creator>mc</dc:creator>
		<pubDate>Tue, 07 Feb 2012 13:46:54 +0000</pubDate>
		<guid isPermaLink="false">http://www.m8in.de/?p=578#comment-644</guid>
		<description>George, i&#039;m sorry, but i think i can&#039;t help you further with your launchpad. After getting mtxcontrol running &quot;in general&quot;, i think you should ask toby again...  http://www.rngtng.com/mtxcontrol/</description>
		<content:encoded><![CDATA[<p>George, i&#8217;m sorry, but i think i can&#8217;t help you further with your launchpad. After getting mtxcontrol running &#8220;in general&#8221;, i think you should ask toby again&#8230;  <a href="http://www.rngtng.com/mtxcontrol/" rel="nofollow">http://www.rngtng.com/mtxcontrol/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Kommentar zu mtXcontrol unter Windows 7 64bit von George</title>
		<link>http://www.m8in.de/2011/09/14/mtxcontrol-unter-windows-7-64bit/comment-page-1/#comment-633</link>
		<dc:creator>George</dc:creator>
		<pubDate>Sun, 05 Feb 2012 00:44:38 +0000</pubDate>
		<guid isPermaLink="false">http://www.m8in.de/?p=578#comment-633</guid>
		<description>I did that, and it still wont detect the launchpad. Is there some way to force it to recognize it?</description>
		<content:encoded><![CDATA[<p>I did that, and it still wont detect the launchpad. Is there some way to force it to recognize it?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Kommentar zu FTDI USB2Serial an der DS211j von Diskstation: Kumm, macheme ens e Update&#8230; &#171; M8IN.DE</title>
		<link>http://www.m8in.de/2011/11/09/ftdi-usb2serial-an-der-ds211j-7/comment-page-1/#comment-630</link>
		<dc:creator>Diskstation: Kumm, macheme ens e Update&#8230; &#171; M8IN.DE</dc:creator>
		<pubDate>Sat, 04 Feb 2012 10:33:49 +0000</pubDate>
		<guid isPermaLink="false">http://www.m8in.de/?p=612#comment-630</guid>
		<description>[...] FTDI USB2Serial an der DS211j 0 comment(s) &#124; 22 view(s) [...]</description>
		<content:encoded><![CDATA[<p>[...] FTDI USB2Serial an der DS211j 0 comment(s) | 22 view(s) [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Kommentar zu mtXcontrol unter Windows 7 64bit von mc</title>
		<link>http://www.m8in.de/2011/09/14/mtxcontrol-unter-windows-7-64bit/comment-page-1/#comment-627</link>
		<dc:creator>mc</dc:creator>
		<pubDate>Tue, 31 Jan 2012 09:38:48 +0000</pubDate>
		<guid isPermaLink="false">http://www.m8in.de/?p=578#comment-627</guid>
		<description>George, i changed the source code to work with my rainbowduino - i&#039;m not using a launchpad. So please open the file &lt;code&gt;...\Processing\mtXcontrol\mtXcontrol.pde&lt;/code&gt; in the Processing IDE and change the following code
&lt;code&gt;
/*
    device = new LaunchpadDevice(this); 
    if(device == null &#124;&#124; !device.enabled()) device = new RainbowduinoDevice(this);
  */

  String ports[] = loadStrings(&quot;serial_port.txt&quot;); 
  println(&quot;Serial Port: &quot; + ports[0]); 
  device = new RainbowduinoDevice(this,ports[0]);   
&lt;/code&gt;
to the following:
&lt;code&gt;
    device = new LaunchpadDevice(this); 
    if(device == null &#124;&#124; !device.enabled()) device = new RainbowduinoDevice(this);

/*
  String ports[] = loadStrings(&quot;serial_port.txt&quot;); 
  println(&quot;Serial Port: &quot; + ports[0]); 
  device = new RainbowduinoDevice(this,ports[0]);   
  */
&lt;/code&gt;

This reactivates the original &quot;launchpad part&quot; and deactiveates my rainbowduino mod.

I hope, this works ;-)

Rregards, Martin</description>
		<content:encoded><![CDATA[<p>George, i changed the source code to work with my rainbowduino &#8211; i&#8217;m not using a launchpad. So please open the file <code>...\Processing\mtXcontrol\mtXcontrol.pde</code> in the Processing IDE and change the following code<br />
<code><br />
/*<br />
    device = new LaunchpadDevice(this);<br />
    if(device == null || !device.enabled()) device = new RainbowduinoDevice(this);<br />
  */</p>
<p>  String ports[] = loadStrings("serial_port.txt");<br />
  println("Serial Port: " + ports[0]);<br />
  device = new RainbowduinoDevice(this,ports[0]);<br />
</code><br />
to the following:<br />
<code><br />
    device = new LaunchpadDevice(this);<br />
    if(device == null || !device.enabled()) device = new RainbowduinoDevice(this);</p>
<p>/*<br />
  String ports[] = loadStrings("serial_port.txt");<br />
  println("Serial Port: " + ports[0]);<br />
  device = new RainbowduinoDevice(this,ports[0]);<br />
  */<br />
</code></p>
<p>This reactivates the original &#8220;launchpad part&#8221; and deactiveates my rainbowduino mod.</p>
<p>I hope, this works <img src='http://www.m8in.de/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
<p>Rregards, Martin</p>
]]></content:encoded>
	</item>
	<item>
		<title>Kommentar zu mtXcontrol unter Windows 7 64bit von George</title>
		<link>http://www.m8in.de/2011/09/14/mtxcontrol-unter-windows-7-64bit/comment-page-1/#comment-625</link>
		<dc:creator>George</dc:creator>
		<pubDate>Tue, 31 Jan 2012 01:10:14 +0000</pubDate>
		<guid isPermaLink="false">http://www.m8in.de/?p=578#comment-625</guid>
		<description>Ok, fixed the libraries problem, but it wont detect my launchpad.</description>
		<content:encoded><![CDATA[<p>Ok, fixed the libraries problem, but it wont detect my launchpad.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Kommentar zu Karotz Root Hack von mc</title>
		<link>http://www.m8in.de/2011/12/14/karotz-root-hack/comment-page-1/#comment-623</link>
		<dc:creator>mc</dc:creator>
		<pubDate>Mon, 30 Jan 2012 09:07:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.m8in.de/?p=632#comment-623</guid>
		<description>Hi Eric, the original Karotz&#039; passwd file looks like this: 
&lt;code&gt;root:$1$LqiRluZX$cKw/OIoSCUUK6jIP8Y6g1.:0:0:root:/usr/karotz:/bin/bash
bin:*:1:1:bin:/bin:
daemon:*:2:2:daemon:/sbin:
nobody:*:99:99:Nobody:/:
dbus:x:81:81:dbus:/var/run/dbus:/bin/sh &lt;/code&gt;</description>
		<content:encoded><![CDATA[<p>Hi Eric, the original Karotz&#8217; passwd file looks like this:<br />
<code>root:$1$LqiRluZX$cKw/OIoSCUUK6jIP8Y6g1.:0:0:root:/usr/karotz:/bin/bash<br />
bin:*:1:1:bin:/bin:<br />
daemon:*:2:2:daemon:/sbin:<br />
nobody:*:99:99:Nobody:/:<br />
dbus:x:81:81:dbus:/var/run/dbus:/bin/sh </code></p>
]]></content:encoded>
	</item>
	<item>
		<title>Kommentar zu Karotz Root Hack von Eric Betts</title>
		<link>http://www.m8in.de/2011/12/14/karotz-root-hack/comment-page-1/#comment-618</link>
		<dc:creator>Eric Betts</dc:creator>
		<pubDate>Sat, 28 Jan 2012 00:22:24 +0000</pubDate>
		<guid isPermaLink="false">http://www.m8in.de/?p=632#comment-618</guid>
		<description>Good to know; could you post the contents of the /etc/passwd file?  On that page you show how to create a new user, but not what users are already there.</description>
		<content:encoded><![CDATA[<p>Good to know; could you post the contents of the /etc/passwd file?  On that page you show how to create a new user, but not what users are already there.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Kommentar zu mtXcontrol unter Windows 7 64bit von George</title>
		<link>http://www.m8in.de/2011/09/14/mtxcontrol-unter-windows-7-64bit/comment-page-1/#comment-615</link>
		<dc:creator>George</dc:creator>
		<pubDate>Thu, 26 Jan 2012 22:32:55 +0000</pubDate>
		<guid isPermaLink="false">http://www.m8in.de/?p=578#comment-615</guid>
		<description>I did what you said, but it is unable to find my libraries. Any suggestions?</description>
		<content:encoded><![CDATA[<p>I did what you said, but it is unable to find my libraries. Any suggestions?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Kommentar zu Karotz Root Hack von mc</title>
		<link>http://www.m8in.de/2011/12/14/karotz-root-hack/comment-page-1/#comment-609</link>
		<dc:creator>mc</dc:creator>
		<pubDate>Thu, 26 Jan 2012 11:16:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.m8in.de/?p=632#comment-609</guid>
		<description>Eric,
if you mean the password shadow file (/etc/shadow) so i couldn&#039;t, because the Karotz doesn&#039;t use one. The password hash is stored in the /etc/passwd file like described here: http://openrabbit.conzi.com/doku.php?id=openrabbit:or_vorbereiten#root_passwort_aendern
Martin</description>
		<content:encoded><![CDATA[<p>Eric,<br />
if you mean the password shadow file (/etc/shadow) so i couldn&#8217;t, because the Karotz doesn&#8217;t use one. The password hash is stored in the /etc/passwd file like described here: <a href="http://openrabbit.conzi.com/doku.php?id=openrabbit:or_vorbereiten#root_passwort_aendern" rel="nofollow">http://openrabbit.conzi.com/doku.php?id=openrabbit:or_vorbereiten#root_passwort_aendern</a><br />
Martin</p>
]]></content:encoded>
	</item>
</channel>
</rss>

