<?xml version="1.0" encoding="iso-8859-1" ?>
<?xml-stylesheet type="text/xsl" href="RSS_xslt_style.asp" version="1.0" ?>
<rss version="2.0" xmlns:WebWizForums="http://syndication.webwizguide.info/rss_namespace/">
 <channel>
  <title>CE LAB FORUM</title>
  <link>http://lab.binus.ac.id/pk/diskusi</link>
  <description>This is an XML content feed of; CE LAB FORUM : Last 10 Posts</description>
  <copyright>Copyright (c) 2006 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Thu, 18 Mar 2010 02:21:49 +0000</pubDate>
  <lastBuildDate>Wed, 17 Mar 2010 11:06:05 +0000</lastBuildDate>
  <docs>http://blogs.law.harvard.edu/tech/rss</docs>
  <generator>Web Wiz Forums 8.05a</generator>
  <ttl>30</ttl>
  <WebWizForums:feedURL>lab.binus.ac.id/pk/diskusi/RSS_topic_feed.asp</WebWizForums:feedURL>
  <image>
   <title>CE LAB FORUM</title>
   <url>http://lab.binus.ac.id/pk/diskusi/forum_images/celab.jpg</url>
   <link>http://lab.binus.ac.id/pk/diskusi</link>
  </image>
  <item>
   <title>JUAL BELI : DVD Exchange House - Toko DVD Online #1 di Indones</title>
   <link>http://lab.binus.ac.id/pk/diskusi/forum_posts.asp?TID=157&amp;PID=1893#1893</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://lab.binus.ac.id/pk/diskusi/member_profile.asp?PF=106">justmen</a><br /><strong>Subject:</strong> DVD Exchange House - Toko DVD Online #1 di Indones<br /><strong>Posted:</strong> 17 Mar 2010 at 11:06am<br /><br /><u><font size="5">Thriller Collection</font></u> :<br><br><font size="5">The Blair Witch Project (1999)</font><br><br><a href="http://www.dvdexchangehouse.com/product_info.php/products_id/193" target="_blank"><font size="4">Klik Disini Untuk Melihatnya</font></a><br><br><br><img src="http://www.dvdexchangehouse.com/images/custom/Cover_Image/Blair_Witch_1_500.jpg" border="0" />]]>
   </description>
   <pubDate>Wed, 17 Mar 2010 11:06:05 +0000</pubDate>
   <guid isPermaLink="true">http://lab.binus.ac.id/pk/diskusi/forum_posts.asp?TID=157&amp;PID=1893#1893</guid>
  </item> 
  <item>
   <title>JUAL BELI : DVD Exchange House - Toko DVD Online #1 di Indones</title>
   <link>http://lab.binus.ac.id/pk/diskusi/forum_posts.asp?TID=157&amp;PID=1892#1892</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://lab.binus.ac.id/pk/diskusi/member_profile.asp?PF=106">justmen</a><br /><strong>Subject:</strong> DVD Exchange House - Toko DVD Online #1 di Indones<br /><strong>Posted:</strong> 16 Mar 2010 at 1:58pm<br /><br /><u><font size="5">Thriller Collection</font></u> :<br><br><font size="5">Identity (Special Edition) (2003)</font><br><br><a href="http://www.dvdexchangehouse.com/product_info.php/products_id/74" target="_blank"><font size="4">Klik Disini Untuk Melihatnya</font></a><br><br><br><img src="http://www.dvdexchangehouse.com/images/custom/Cover_Image/Identity_500.jpg" border="0" />]]>
   </description>
   <pubDate>Tue, 16 Mar 2010 13:58:55 +0000</pubDate>
   <guid isPermaLink="true">http://lab.binus.ac.id/pk/diskusi/forum_posts.asp?TID=157&amp;PID=1892#1892</guid>
  </item> 
  <item>
   <title>AVR UNIVERSITY : AVR code part 01</title>
   <link>http://lab.binus.ac.id/pk/diskusi/forum_posts.asp?TID=290&amp;PID=1891#1891</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://lab.binus.ac.id/pk/diskusi/member_profile.asp?PF=12">Kyrios</a><br /><strong>Subject:</strong> AVR code part 01<br /><strong>Posted:</strong> 15 Mar 2010 at 1:57pm<br /><br />AVR code I/O part 01:<br>This code use AVRStudio and WinAVR (third party), ATmega8535.<br><br><table width="99%"><tr><td class="BBquote"><strong><em>Originally posted by kyrios</strong></em><br /><br /><br>#include &lt;avr/io.h&gt; //standard library<br>#include &lt;stdint.h&gt; //&nbsp; old version use #include &lt;inttypes.h&gt;<br><br>#ifndef F_CPU<br>#define F_CPU 4000000UL // define frequency<br>#endif<br><br>#include &lt;util/delay.h&gt;<br><br>int main(void){<br>&nbsp; DDRA = 0x00; /*&nbsp;&nbsp; set portA as input&nbsp;&nbsp; */<br>&nbsp; PORTA = 0xFF;&nbsp; /*&nbsp; pull-up active&nbsp;&nbsp; */<br>&nbsp; DDRC = 0xff; /*&nbsp;&nbsp; set portC as output&nbsp;&nbsp; */<br>&nbsp; PORTC = 0x00; /*&nbsp;&nbsp; no pull-up active&nbsp;&nbsp; */<br>&nbsp; while(1){<br>&nbsp;&nbsp;&nbsp; /*&nbsp;&nbsp; Testing I/O&nbsp;&nbsp; */<br>&nbsp;&nbsp;&nbsp; PORTC = 0x00; //&nbsp; you can use it as 1 byte<br>&nbsp;&nbsp;&nbsp; loop_until_bit_is_set(PINA,PA1);<br>&nbsp;&nbsp;&nbsp; PORTC = 0xff;<br>&nbsp;&nbsp;&nbsp; loop_until_bit_is_set(PINA,PA1);<br><br>&nbsp;&nbsp;&nbsp; PORTC &amp;= ~(1&lt;&lt;PC0); //&nbsp; you can use it as a bit<br>&nbsp;&nbsp;&nbsp; loop_until_bit_is_set(PINA,PA1);<br>&nbsp;&nbsp;&nbsp; PORTC |= (1&lt;&lt;PC0);<br>&nbsp;&nbsp;&nbsp; loop_until_bit_is_set(PINA,PA1);<br>&nbsp; }<br>}<br></td></tr></table><br>explanation :<br>at AVR we can set the direction port using DDRx i.e. DDRA for PORTA, DDRB for PORTB, DDRC for PORTC and DDRD for PORTD.<br>If bit DDRx is set, it is define that you are using PORTx as output, and if bit DDRx is clear, it is define that you are using PORTx as input.<br><br>In AVR, to check the input pin, it is use PINx in the code. to give an output ,it is use PORTx in the code. <br>In WinAVR, you can't set or clear a PORT directly as a bit, you must use "bit manipulation".<br><br>In the code above, <br><i>PORTC |= (1&lt;&lt;PC0) </i>and <i>PORTC &amp;= (1&lt;&lt;PC0)</i>, it's mean that PORTC at bit 0 is set and PORTC at bit 0 is clear.<br><br>so can I use bit manipulation for checking input?<br>of course you can.<br>In the code above:<i><br>loop_until_bit_is_set(PINA,PA1);, </i>it's mean that the code will keep looping at the same line until PINA at bit 1 is set. This code as the same as: <br><i>while(!(PINA&amp;(1&lt;&lt;PA1))</i>. <br><br><i>loop_until_bit_is_clear(%WaitingPIN%, %WaitingBit%), </i>it's mean that the code will kepp looping at the same line until %WaitingPIN% at bit %WaitingBit% is clear. This code as the same as :<i><br>While(%WaitingPIN%&amp;(1&lt;&lt;%WaitingBit%)).</i> <br><br><br><br><span style="font-size:10px"><br /><br />Edited by Kyrios - 16 Mar 2010 at 11:23am</span>]]>
   </description>
   <pubDate>Mon, 15 Mar 2010 13:57:37 +0000</pubDate>
   <guid isPermaLink="true">http://lab.binus.ac.id/pk/diskusi/forum_posts.asp?TID=290&amp;PID=1891#1891</guid>
  </item> 
  <item>
   <title>JUAL BELI : DVD Exchange House - Toko DVD Online #1 di Indones</title>
   <link>http://lab.binus.ac.id/pk/diskusi/forum_posts.asp?TID=157&amp;PID=1890#1890</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://lab.binus.ac.id/pk/diskusi/member_profile.asp?PF=106">justmen</a><br /><strong>Subject:</strong> DVD Exchange House - Toko DVD Online #1 di Indones<br /><strong>Posted:</strong> 15 Mar 2010 at 11:09am<br /><br /><u><font size="5">Thriller Collection</font></u> :<br><br><font size="5">The Prophecy: Forsaken (2005)</font><br><br><a href="http://www.dvdexchangehouse.com/product_info.php/products_id/592" target="_blank"><font size="4">Klik Disini Untuk Melihatnya</font></a><br><br><br><img src="http://www.dvdexchangehouse.com/images/custom/Cover_Image/Prophecy_5_500.jpg" border="0" />]]>
   </description>
   <pubDate>Mon, 15 Mar 2010 11:09:53 +0000</pubDate>
   <guid isPermaLink="true">http://lab.binus.ac.id/pk/diskusi/forum_posts.asp?TID=157&amp;PID=1890#1890</guid>
  </item> 
  <item>
   <title>JUAL BELI : DVD Exchange House - Toko DVD Online #1 di Indones</title>
   <link>http://lab.binus.ac.id/pk/diskusi/forum_posts.asp?TID=157&amp;PID=1889#1889</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://lab.binus.ac.id/pk/diskusi/member_profile.asp?PF=106">justmen</a><br /><strong>Subject:</strong> DVD Exchange House - Toko DVD Online #1 di Indones<br /><strong>Posted:</strong> 14 Mar 2010 at 1:44pm<br /><br /><u><font size="5">Thriller Collection</font></u> :<br><br><font size="5">The Prophecy: Uprising (2005)</font><br><br><a href="http://www.dvdexchangehouse.com/product_info.php/products_id/591" target="_blank"><font size="4">Klik Disini Untuk Melihatnya</font></a><br><br><br><img src="http://www.dvdexchangehouse.com/images/custom/Cover_Image/Prophecy_4_500.jpg" border="0" />]]>
   </description>
   <pubDate>Sun, 14 Mar 2010 13:44:25 +0000</pubDate>
   <guid isPermaLink="true">http://lab.binus.ac.id/pk/diskusi/forum_posts.asp?TID=157&amp;PID=1889#1889</guid>
  </item> 
  <item>
   <title>JUAL BELI : DVD Exchange House - Toko DVD Online #1 di Indones</title>
   <link>http://lab.binus.ac.id/pk/diskusi/forum_posts.asp?TID=157&amp;PID=1888#1888</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://lab.binus.ac.id/pk/diskusi/member_profile.asp?PF=106">justmen</a><br /><strong>Subject:</strong> DVD Exchange House - Toko DVD Online #1 di Indones<br /><strong>Posted:</strong> 13 Mar 2010 at 4:11pm<br /><br /><u><font size="5">Thriller Collection</font></u> :<br><br><font size="5">The Prophecy 3: The Ascent (2000)</font><br><br><a href="http://www.dvdexchangehouse.com/product_info.php/products_id/590" target="_blank"><font size="4">Klik Disini Untuk Melihatnya</font></a><br><br><br><img src="http://www.dvdexchangehouse.com/images/custom/Cover_Image/Prophecy_3_500.jpg" border="0" />]]>
   </description>
   <pubDate>Sat, 13 Mar 2010 16:11:06 +0000</pubDate>
   <guid isPermaLink="true">http://lab.binus.ac.id/pk/diskusi/forum_posts.asp?TID=157&amp;PID=1888#1888</guid>
  </item> 
  <item>
   <title>JUAL BELI : DVD Exchange House - Toko DVD Online #1 di Indones</title>
   <link>http://lab.binus.ac.id/pk/diskusi/forum_posts.asp?TID=157&amp;PID=1887#1887</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://lab.binus.ac.id/pk/diskusi/member_profile.asp?PF=106">justmen</a><br /><strong>Subject:</strong> DVD Exchange House - Toko DVD Online #1 di Indones<br /><strong>Posted:</strong> 12 Mar 2010 at 12:48pm<br /><br /><u><font size="5">Thriller Collection</font></u> :<br><font size="5"><br>The Prophecy II (1998)</font><br><br><a href="http://www.dvdexchangehouse.com/product_info.php/products_id/589" target="_blank"><font size="4">Klik Disini Untuk Melihatnya</font></a><br><br><br><img src="http://www.dvdexchangehouse.com/images/custom/Cover_Image/Prophecy_2_500.jpg" border="0" />]]>
   </description>
   <pubDate>Fri, 12 Mar 2010 12:48:21 +0000</pubDate>
   <guid isPermaLink="true">http://lab.binus.ac.id/pk/diskusi/forum_posts.asp?TID=157&amp;PID=1887#1887</guid>
  </item> 
  <item>
   <title>JUAL BELI : DVD Exchange House - Toko DVD Online #1 di Indones</title>
   <link>http://lab.binus.ac.id/pk/diskusi/forum_posts.asp?TID=157&amp;PID=1886#1886</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://lab.binus.ac.id/pk/diskusi/member_profile.asp?PF=106">justmen</a><br /><strong>Subject:</strong> DVD Exchange House - Toko DVD Online #1 di Indones<br /><strong>Posted:</strong> 11 Mar 2010 at 1:46pm<br /><br /><u><font size="5">Thriller Collection</font></u> :<br><br><font size="5">The Prophecy (1995)</font><br><br><a href="http://www.dvdexchangehouse.com/product_info.php/products_id/588" target="_blank"><font size="4">Klik Disini Untuk Melihatny</font>a</a><br><br><br><img src="http://www.dvdexchangehouse.com/images/custom/Cover_Image/Prophecy_1_500.jpg" border="0" />]]>
   </description>
   <pubDate>Thu, 11 Mar 2010 13:46:15 +0000</pubDate>
   <guid isPermaLink="true">http://lab.binus.ac.id/pk/diskusi/forum_posts.asp?TID=157&amp;PID=1886#1886</guid>
  </item> 
  <item>
   <title>JUAL BELI : DVD Exchange House - Toko DVD Online #1 di Indones</title>
   <link>http://lab.binus.ac.id/pk/diskusi/forum_posts.asp?TID=157&amp;PID=1885#1885</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://lab.binus.ac.id/pk/diskusi/member_profile.asp?PF=106">justmen</a><br /><strong>Subject:</strong> DVD Exchange House - Toko DVD Online #1 di Indones<br /><strong>Posted:</strong> 10 Mar 2010 at 11:51am<br /><br /><u><font size="5">Thriller Collection</font></u> :<br><font size="5"><br>Ghost Ship (Widescreen Edition) (2002)</font><br><br><a href="http://www.dvdexchangehouse.com/product_info.php/products_id/83" target="_blank"><font size="4">Klik Disini Untuk Melihatnya</font></a><br><br><br><img src="http://www.dvdexchangehouse.com/images/custom/Cover_Image/Ghost_Ship_500.jpg" border="0" />]]>
   </description>
   <pubDate>Wed, 10 Mar 2010 11:51:37 +0000</pubDate>
   <guid isPermaLink="true">http://lab.binus.ac.id/pk/diskusi/forum_posts.asp?TID=157&amp;PID=1885#1885</guid>
  </item> 
  <item>
   <title>JUAL BELI : DVD Exchange House - Toko DVD Online #1 di Indones</title>
   <link>http://lab.binus.ac.id/pk/diskusi/forum_posts.asp?TID=157&amp;PID=1884#1884</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://lab.binus.ac.id/pk/diskusi/member_profile.asp?PF=106">justmen</a><br /><strong>Subject:</strong> DVD Exchange House - Toko DVD Online #1 di Indones<br /><strong>Posted:</strong> 09 Mar 2010 at 12:42pm<br /><br /><u><font size="5">Thriller Collection</font></u> :<br><br><font size="5">Exorcist: The Beginning (Widescreen) (2004)</font><br><br><a href="http://www.dvdexchangehouse.com/product_info.php/products_id/42" target="_blank"><font size="4">Klik Disini Untuk Melihatnya</font></a><br><br><br><img src="http://www.dvdexchangehouse.com/images/custom/Cover_Image/Exorcist_Beginning_500.jpg" border="0" />]]>
   </description>
   <pubDate>Tue, 09 Mar 2010 12:42:45 +0000</pubDate>
   <guid isPermaLink="true">http://lab.binus.ac.id/pk/diskusi/forum_posts.asp?TID=157&amp;PID=1884#1884</guid>
  </item> 
 </channel>
</rss>