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.html 10KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8" />
  5. <title>8x8x8 LED Cube - xythobuz.org</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@me.com">
  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.org</h1>
  36. <h2><a href="http://www.liveleak.com/view?i=0cd_1295609192">"It turns blue..."</a></h2>
  37. </div>
  38. <div id="lang"><span id="lang2">Translation:
  39. <a href='ledcube.de.html'>de</a> | <a href='ledcube.html'>en</a>
  40. </span></div>
  41. <div class="colmask leftmenu"><div class="colleft">
  42. <div class="content">
  43. <div id="flattr">
  44. <a class="FlattrButton" href="http://www.xythobuz.org/ledcube.html" title="8x8x8 LED Cube">AVR LED Cube with Java Software and Music Visualization</a>
  45. </div>
  46. <div id="twitter">
  47. <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>
  48. </div>
  49. <div id="reddit">
  50. <script type="text/javascript">reddit_url = "http://www.xythobuz.org/ledcube.html";</script>
  51. <script type="text/javascript" src="http://www.reddit.com/static/button/button2.js"></script>
  52. </div>
  53. <div id="github">
  54. <a href="https://github.com/xythobuz/LED-Cube" class="gitforked-button gitforked-forks gitforked-watchers">Fork</a>
  55. </div>
  56. <h1>8x8x8 LED Cube</h1>
  57. <p>Get the <a href="https://github.com/xythobuz/LED-Cube/zipball/master">current Codebase as Zip</a>.</p>
  58. <iframe width="640" height="360" src="http://www.youtube.com/embed/czxCxTBSgHM?feature=player_detailpage" frameborder="0" allowfullscreen></iframe>
  59. <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>
  60. <p><a href="/img/cube14.jpg"><img alt="Foto 1" src="/img/cube14_small.jpg" /></a>
  61. <a href="/img/cube11.jpg"><img alt="Foto 2" src="/img/cube11_small.jpg" /></a></p>
  62. <h2>Hardware</h2>
  63. <p>An AtMega32 controls 8 8bit Latches. These 64 bits control, via a PNP Transistor, the anodes of 8 LEDs, each.</p>
  64. <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>
  65. <p>It can talk to a PC via USB with a FT232RL. A 1Mbit FRAM is accessed over TWI (or I2C).</p>
  66. <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>
  67. <p>An extensive part list can be found in the Github repository, in Hardware, called parts.txt.</p>
  68. <p><a href="/img/cube10.jpg"><img alt="Foto 3" src="/img/cube10_small.jpg" /></a>
  69. <a href="/img/cube12.jpg"><img alt="Foto 4" src="/img/cube12_small.jpg" /></a></p>
  70. <h2>Software</h2>
  71. <p>The software is composed of 3 parts. The CubeFirmware for the AtMega32, the AudioFirmware for the AtMega8 and CubeControl, the PC software.</p>
  72. <h3>CubeFirmware</h3>
  73. <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>
  74. <p><a href="/img/kuehler1.jpg"><img alt="Foto 7" src="/img/kuehler1_small.jpg" /></a>
  75. <a href="/img/kuehler2.jpg"><img alt="Foto 8" src="/img/kuehler2_small.jpg" /></a></p>
  76. <h3>AudioFirmware</h3>
  77. <p>It gets data from the MSGEQ7 and sends it via TWI.</p>
  78. <h3>CubeControl</h3>
  79. <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>
  80. <p><a href="/img/cubecontrol.png"><img alt="Screenshot" src="/img/cubecontrol_small.png" /></a>
  81. <a href="/img/cubeschem.png"><img alt="Schematic" src="/img/cubeschem_small.png" /></a></p>
  82. <h3>Hardware Emulator</h3>
  83. <p>Allows you to test CubeControl without a real Cube. Unix only!</p>
  84. <h3>UploadTest</h3>
  85. <p>Small CLI tool to send testdata or stored animations from CubeControl. Unix only!</p>
  86. <h2>Download</h2>
  87. <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>
  88. <p><a href="/img/cube13.jpg"><img alt="Foto 5" src="/img/cube13_small.jpg" /></a>
  89. <a href="/img/cube15.jpg"><img alt="Foto 6" src="/img/cube15_small.jpg" /></a></p>
  90. <div id="disqus_thread"></div>
  91. <script type="text/javascript">
  92. var disqus_shortname = "xythobuz";
  93. (function() {
  94. var dsq = document.createElement("script"); dsq.type = "text/javascript"; dsq.async = true;
  95. dsq.src = "http://" + disqus_shortname + ".disqus.com/embed.js";
  96. (document.getElementsByTagName("head")[0] || document.getElementsByTagName("body")[0]).appendChild(dsq);
  97. })();
  98. </script>
  99. <noscript>Please enable JavaScript to view the <a href="http://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
  100. <a href="http://disqus.com" class="dsq-brlink">comments powered by <span class="logo-disqus">Disqus</span></a>
  101. </div>
  102. <div class="nav">
  103. <h3>Thomas Buck</h3>
  104. <div id="logo"><img id="logoImg" src="http://www.gravatar.com/avatar/8d18fec40a74782052fb4c007d212475?s=180" alt="Avatar"></div>
  105. <p id="bio">
  106. I'm a 19 year old Information Engineering student from Germany, mostly building cool stuff with AVR microcontrollers. Programming in C, Java and a bit of Python is my passion and I'm looking forward to earn my living with it.
  107. </p>
  108. <iframe src="http://githubbadge.appspot.com/badge/xythobuz?a=0" style="border: 0;height: 142px;width: 200px;overflow: hidden;"></iframe>
  109. <ul id="menuList">
  110. <li><a href="/index.html">Home</a></li>
  111. <li><a href="/blog.html">Blog</a></li>
  112. <li><a href="/contact.html">Contact</a></li>
  113. <li>&nbsp;</li>
  114. <li><a href="/ledcube.html">8x8x8 LED Cube</a></li>
  115. <li><a href="/yasab.html">YASAB AVR Bootloader</a></li>
  116. <li><a href="/avrnetstack.html">avrNetStack</a></li>
  117. <li><a href="/avrserial.html">AVR Serial Library</a></li>
  118. <li><a href="/serialdebug.html">Serial Debug</a></li>
  119. <li><a href="/ledmatrix.html">LED Matrix</a></li>
  120. <li><a href="/ssop28.html">SSOP28 - DIL Adapter</a></li>
  121. <li><a href="/xyrobot.html">xyRobot</a></li>
  122. <li><a href="/bluetooth.html">Bluetooth UART (BTM-222)</a></li>
  123. <li><a href="/k6x4008.html">K6x4008 SRAM</a></li>
  124. <li><a href="/xyrobotremote.html">xyRobotRemote</a></li>
  125. <li><a href="/rremote.html">rRemote</a></li>
  126. <li>&nbsp;</li>
  127. <li><a href="/c250.html">Mio C250 Unlock</a></li>
  128. <li><a href="/nas.html">IB-NAS6210 Linux</a></li>
  129. <li><a href="/ultimatenotifier.html">Ultimate Notifier Script</a></li>
  130. <li><a href="/serialhelper.html">Serial Helper</a></li>
  131. </ul>
  132. <div id="recent">
  133. Recent blog posts:
  134. <ul id="recentList">
  135. <li class="recentList"><a href="/2013_03_25_doxygen.html">xyControl Doxygen Dokumentation</a></li><li class="recentDate">2013-03-25</li>
  136. <li class="recentList"><a href="/2013_03_16_pid.html">xyCopter PID-Parameter</a></li><li class="recentDate">2013-03-16</li>
  137. <li class="recentList"><a href="/2013_03_13_test_rig.html">Quadrocopter Test Rig Video</a></li><li class="recentDate">2013-03-13</li>
  138. <li class="recentList"><a href="/2013_03_12_test_rig.html">Quadrocopter Testvorrichtung</a></li><li class="recentDate">2013-03-12</li>
  139. <li class="recentList"><a href="/2013_03_10_yasab.html">xyCopter loves YASAB</a></li><li class="recentDate">2013-03-10</li>
  140. </ul>
  141. </div>
  142. </div>
  143. </div></div>
  144. <img id="dude" alt="The Dude abides..." src="/img/dude.png">
  145. <img id="walter" alt="Mark it zero!" src="/img/walter.png">
  146. <div id="footer">
  147. Built with <a href="http://bitbucket.org/obensonne/poole">Poole</a>
  148. &middot;
  149. Licensed as <a href="http://creativecommons.org/licenses/by/3.0">CC-BY</a>
  150. &middot;
  151. <a href="http://validator.w3.org/check?uri=referer">Validate HTML</a>
  152. &middot;
  153. <a href="http://jigsaw.w3.org/css-validator/validator?uri=xythobuz.org%2Fstyle.css&amp;profile=css3">Validate CSS</a>
  154. &middot;
  155. <a href="http://feed1.w3.org/check.cgi?url=http://www.xythobuz.org/rss.xml">Validate RSS</a>
  156. &middot;
  157. <a href="http://www.validome.org/google/validate?url=http://www.xythobuz.org&amp;googleTyp=SITEMAP">Validate Sitemap</a>
  158. </div>
  159. <script src="http://gitforked.com/api/1.1/button.js" type="text/javascript"></script>
  160. </body>
  161. </html>