My static website generator using poole https://www.xythobuz.de
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

ledcube.mob.html 12KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8" />
  5. <title>8x8x8 LED Cube - xythobuz.de</title>
  6. <meta name="description" content="AVR LED Cube with Java Software and Music Visualization" />
  7. <meta name="keywords" content="xythobuz" />
  8. <link rel="author" href="/xythobuz@xythobuz.de">
  9. <link rel="shortcut icon" href="/img/favicon.ico">
  10. <script type="text/javascript" src="/js/sh_main.js"></script>
  11. <link type="text/css" rel="stylesheet" href="/css/sh_bright.min.css" />
  12. <link rel="stylesheet" href="/css/style.css" type="text/css" media="screen" />
  13. <link rel="alternate" type="application/rss+xml" title="Blog" href="/rss.xml">
  14. <link rel="stylesheet" href="/css/gh-fork-ribbon.css" />
  15. <link href='http://fonts.googleapis.com/css?family=Droid+Sans:400,700' rel='stylesheet' type='text/css'>
  16. <script type='text/javascript'>
  17. /* <![CDATA[ */
  18. (function() {
  19. var s = document.createElement('script');
  20. var t = document.getElementsByTagName('script')[0];
  21. s.type = 'text/javascript';
  22. s.async = true;
  23. s.src = '//api.flattr.com/js/0.6/load.js?mode=auto&uid=xythobuz&category=text';
  24. t.parentNode.insertBefore(s, t);
  25. })();
  26. /* ]]> */
  27. </script>
  28. </head>
  29. <body onload="sh_highlightDocument('/js/sh/', '.min.js');">
  30. <div class="github-fork-ribbon-wrapper right">
  31. <div class="github-fork-ribbon"><a href="
  32. https://github.com/xythobuz/LED-Cube
  33. ">Fork me on GitHub</a></div></div>
  34. <div id="header">
  35. <h1>xythobuz.de</h1>
  36. <p><a href="http://xythobuz.de/lastmusic">♫</a></p>
  37. <h2><a href="http://www.liveleak.com/view?i=0cd_1295609192">"It turns blue..."</a></h2>
  38. </div>
  39. <div id="lang"><span id="lang2">Translation:
  40. <a href='ledcube.de.html'>de</a> | <a href='ledcube.html'>en</a>
  41. </span></div>
  42. <div class="colmask leftmenu"><div class="colleft">
  43. <div class="content">
  44. <h1>8x8x8 LED Cube</h1>
  45. <p>Get the <a href="https://github.com/xythobuz/LED-Cube/zipball/master">current Codebase as Zip</a>.</p>
  46. <iframe width="640" height="360" src="http://www.youtube.com/embed/czxCxTBSgHM" frameborder="0" allowfullscreen></iframe>
  47. <p><a href="http://www.youtube.com/watch?v=czxCxTBSgHM"><code>Youtube Link</code></a></p>
  48. <p>My friends Max (<a href="&#109;&#97;&#105;&#108;&#116;&#111;&#58;&#104;&#117;&#116;&#97;&#116;&#116;&#101;&#100;&#111;&#110;&#109;&#121;&#97;&#114;&#109;&#64;&#109;&#101;&#46;&#99;&#111;&#109;">&#104;&#117;&#116;&#97;&#116;&#116;&#101;&#100;&#111;&#110;&#109;&#121;&#97;&#114;&#109;&#64;&#109;&#101;&#46;&#99;&#111;&#109;</a>) and Felix built this single-color 8x8x8 LED Cube with me. On this page, you can get the Software as well as Schematics and the PCB Layout licensed under the GPLv3. Have fun!</p>
  49. <p><a href="/img/cube14.jpg"><img alt="Foto 1" src="/img/cube14_small.jpg" /></a>
  50. <a href="/img/cube11.jpg"><img alt="Foto 2" src="/img/cube11_small.jpg" /></a></p>
  51. <h2>Hardware</h2>
  52. <p>An AtMega32 controls 8 8bit Latches. These 64 bits control, via a PNP Transistor, the anodes of 8 LEDs, each.</p>
  53. <p>There are also 8 N-Channel MOSFETs connected to the AtMega32. They each control the cathodes of 64 LEDs on a Y-Plane.</p>
  54. <p>It can talk to a PC via USB with a FT232RL. A 1Mbit FRAM is accessed over TWI (or I2C).</p>
  55. <p>There's also an AtMega8 which acts as a TWI Slave and sends audio data to the AtMega32. This data comes from a MSGEQ7.</p>
  56. <p>An extensive part list can be found in the Github repository, in Hardware, called parts.txt.</p>
  57. <p><a href="/img/cube10.jpg"><img alt="Foto 3" src="/img/cube10_small.jpg" /></a>
  58. <a href="/img/cube12.jpg"><img alt="Foto 4" src="/img/cube12_small.jpg" /></a></p>
  59. <h2>Software</h2>
  60. <p>The software is composed of 3 parts. The CubeFirmware for the AtMega32, the AudioFirmware for the AtMega8 and CubeControl, the PC software.</p>
  61. <h3>CubeFirmware</h3>
  62. <p>It's main work is to load images from the FRAM or the AtMega8 and display it. It also monitors the serial Port and reacts accordingly.</p>
  63. <p><a href="/img/kuehler1.jpg"><img alt="Foto 7" src="/img/kuehler1_small.jpg" /></a>
  64. <a href="/img/kuehler2.jpg"><img alt="Foto 8" src="/img/kuehler2_small.jpg" /></a></p>
  65. <h3>AudioFirmware</h3>
  66. <p>It gets data from the MSGEQ7 and sends it via TWI.</p>
  67. <h3>CubeControl</h3>
  68. <p>Depends on <a href="http://www.oracle.com/technetwork/java/javase/tech/index-jsp-138252.html">Java3D</a>. It renders a rotatable 3D View of the cube. You can then create animations, load and save them, and upload them to the Cube. It has it's own C Library for Windows and Unix to talk to the serial port.</p>
  69. <p><a href="/img/cubecontrol.png"><img alt="Screenshot" src="/img/cubecontrol_small.png" /></a>
  70. <a href="/img/cubeschem.png"><img alt="Schematic" src="/img/cubeschem_small.png" /></a></p>
  71. <h3>Hardware Emulator</h3>
  72. <p>Allows you to test CubeControl without a real Cube. Unix only!</p>
  73. <h3>UploadTest</h3>
  74. <p>Small CLI tool to send testdata or stored animations from CubeControl. Unix only!</p>
  75. <h2>Download</h2>
  76. <p>Get the whole code, as well as schematics and the PCB layout as PNG and Eagle files, from the <a href="https://github.com/xythobuz/LED-Cube">GitHub Repository</a>.</p>
  77. <p><a href="/img/cube13.jpg"><img alt="Foto 5" src="/img/cube13_small.jpg" /></a>
  78. <a href="/img/cube15.jpg"><img alt="Foto 6" src="/img/cube15_small.jpg" /></a></p>
  79. <span id="flattr">
  80. <a class="FlattrButton" href="http://www.xythobuz.de/ledcube.html" title="8x8x8 LED Cube">AVR LED Cube with Java Software and Music Visualization</a>
  81. </span>
  82. <span id="twitter">
  83. <a href="https://twitter.com/share" class="twitter-share-button" data-via="xythobuz" data-dnt="true" data-related="xythobuz" data-count="vertical">Tweet</a><script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0];if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src="//platform.twitter.com/widgets.js";fjs.parentNode.insertBefore(js,fjs);}}(document,"script","twitter-wjs");</script>
  84. </span>
  85. <span id="reddit">
  86. <script type="text/javascript">reddit_url = "http://www.xythobuz.de/ledcube.html";</script>
  87. <script type="text/javascript" src="http://www.reddit.com/static/button/button2.js"></script>
  88. </span>
  89. <span id="github">
  90. <a href="https://github.com/xythobuz/LED-Cube" class="gitforked-button gitforked-forks gitforked-watchers">Fork</a>
  91. </span>
  92. <div id="print"><script>var pfHeaderImgUrl = '';var pfHeaderTagline = '';var pfdisableClickToDel = 0;var pfHideImages = 0;var pfImageDisplayStyle = 'right';var pfDisablePDF = 0;var pfDisableEmail = 0;var pfDisablePrint = 0;var pfCustomCSS = '';var pfBtVersion='1';(function(){var js, pf;pf = document.createElement('script');pf.type = 'text/javascript';if('https:' == document.location.protocol){js='https://pf-cdn.printfriendly.com/ssl/main.js'}else{js='http://cdn.printfriendly.com/printfriendly.js'}pf.src=js;document.getElementsByTagName('head')[0].appendChild(pf)})();</script><a href="http://www.printfriendly.com" style="color:#6D9F00;text-decoration:none;" class="printfriendly" onclick="window.print();return false;" title="Printer Friendly and PDF"><img style="border:none;margin:0 6px" src="https://pf-cdn.printfriendly.com/images/icons/pf-print-icon.gif" width="16" height="15" alt="Print Friendly Version of this page" />Print <img style="border:none;margin:0 6px" src="https://pf-cdn.printfriendly.com/images/icons/pf-pdf-icon.gif" width="12" height="12" alt="Get a PDF version of this webpage" />PDF</a></div>
  93. <div id="disqus_thread"></div>
  94. <script type="text/javascript">
  95. var disqus_shortname = "xythobuz";
  96. (function() {
  97. var dsq = document.createElement("script"); dsq.type = "text/javascript"; dsq.async = true;
  98. dsq.src = "http://" + disqus_shortname + ".disqus.com/embed.js";
  99. (document.getElementsByTagName("head")[0] || document.getElementsByTagName("body")[0]).appendChild(dsq);
  100. })();
  101. </script>
  102. <noscript>Please enable JavaScript to view the <a href="http://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
  103. <a href="http://disqus.com" class="dsq-brlink">comments powered by <span class="logo-disqus">Disqus</span></a>
  104. </div>
  105. <div class="nav">
  106. <h3>Thomas Buck</h3>
  107. <div id="logo"><img id="logoImg" src="http://www.gravatar.com/avatar/8d18fec40a74782052fb4c007d212475?s=180" alt="Avatar"></div>
  108. <p id="bio">
  109. I'm a 19 year old Information Engineering student from Germany, mostly building cool stuff with AVR microcontrollers. All of my projects are released as <a href="http://www.gnu.org/philosophy/free-sw.html">Free Software</a> on my <a href="https://github.com/xythobuz">GitHub Profile</a>.
  110. </p>
  111. <ul id="menuList">
  112. <li><a href="/index.html">Home</a></li>
  113. <li><a href="/blog.html">Blog</a></li>
  114. <li><a href="/contact.html">Contact</a></li>
  115. <li>&nbsp;</li>
  116. <li><a href="/ledcube.html">8x8x8 LED Cube</a></li>
  117. <li><a href="/yasab.html">YASAB AVR Bootloader</a></li>
  118. <li><a href="/avrnetstack.html">avrNetStack</a></li>
  119. <li><a href="/xycontrol.html">xyControl</a></li>
  120. <li><a href="/avrserial.html">AVR Serial Library</a></li>
  121. <li><a href="/serialdebug.html">Serial Debug</a></li>
  122. <li><a href="/ledmatrix.html">LED Matrix</a></li>
  123. <li><a href="/ssop28.html">SSOP28 - DIL Adapter</a></li>
  124. <li><a href="/xyrobot.html">xyRobot</a></li>
  125. <li><a href="/bluetooth.html">Bluetooth UART (BTM-222)</a></li>
  126. <li><a href="/k6x4008.html">K6x4008 SRAM</a></li>
  127. <li><a href="/xyrobotremote.html">xyRobotRemote</a></li>
  128. <li><a href="/rremote.html">rRemote</a></li>
  129. <li>&nbsp;</li>
  130. <li><a href="/c250.html">Mio C250 Unlock</a></li>
  131. <li><a href="/nas.html">IB-NAS6210 Linux</a></li>
  132. <li><a href="/ultimatenotifier.html">Ultimate Notifier Script</a></li>
  133. <li><a href="/serialhelper.html">Serial Helper</a></li>
  134. </ul>
  135. <div id="recent">
  136. Recent blog posts:
  137. <ul id="recentList">
  138. <li class="recentList"><a href="/2013_05_09_itunes.html">Musikgeschmack</a></li><li class="recentDate">2013-05-09</li>
  139. <li class="recentList"><a href="/2013_05_05_debian.html">Debian Update</a></li><li class="recentDate">2013-05-05</li>
  140. <li class="recentList"><a href="/2013_04_26_iphone_lens.html">iPhone Linse</a></li><li class="recentDate">2013-04-26</li>
  141. <li class="recentList"><a href="/2013_04_24_bitrot.html">Softwareverrottung</a></li><li class="recentDate">2013-04-24</li>
  142. <li class="recentList"><a href="/2013_04_23_pad.html">PCB Pads suck</a></li><li class="recentDate">2013-04-23</li>
  143. </ul>
  144. </div>
  145. </div>
  146. </div></div>
  147. <img id="dude" alt="The Dude abides..." src="/img/dude.png">
  148. <img id="walter" alt="Mark it zero!" src="/img/walter.png">
  149. <div id="footer">
  150. Built with <a href="http://bitbucket.org/obensonne/poole">Poole</a>
  151. &middot;
  152. Licensed as <a href="http://creativecommons.org/licenses/by/3.0">CC-BY</a>
  153. &middot;
  154. <a href="http://validator.w3.org/check?uri=referer">Validate HTML</a>
  155. &middot;
  156. <a href="http://jigsaw.w3.org/css-validator/validator?uri=xythobuz.de%2Fstyle.css&amp;profile=css3">Validate CSS</a>
  157. &middot;
  158. <a href="http://feed1.w3.org/check.cgi?url=http://www.xythobuz.de/rss.xml">Validate RSS</a>
  159. &middot;
  160. <a href="http://www.validome.org/google/validate?url=http://www.xythobuz.de&amp;googleTyp=SITEMAP">Validate Sitemap</a>
  161. </div>
  162. <img src="/stats/count.php?img" alt="Analytics">
  163. <script src="http://gitforked.com/api/1.1/button.js" type="text/javascript"></script>
  164. <script type="text/javascript">
  165. var _gaq = _gaq || [];
  166. _gaq.push(['_setAccount', 'UA-39163591-1']);
  167. _gaq.push(['_setDomainName', 'xythobuz.org']);
  168. _gaq.push(['_setAllowLinker', true]);
  169. _gaq.push(['_trackPageview']);
  170. (function() {
  171. var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
  172. ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
  173. var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
  174. })();
  175. </script>
  176. </body>
  177. </html>