123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="utf-8" />
- <title>8x8x8 LED Cube - xythobuz.de</title>
- <meta name="description" content="AVR LED Cube with Java Software and Music Visualization" />
- <meta name="keywords" content="xythobuz" />
- <link rel="author" href="/xythobuz@xythobuz.de">
- <link rel="shortcut icon" href="/img/favicon.ico">
- <script type="text/javascript" src="/js/sh_main.js"></script>
- <link type="text/css" rel="stylesheet" href="/css/sh_bright.min.css" />
- <link rel="stylesheet" href="/css/style.css" type="text/css" media="screen" />
- <link rel="alternate" type="application/rss+xml" title="Blog" href="/rss.xml">
- <link rel="stylesheet" href="/css/gh-fork-ribbon.css" />
- <link href='http://fonts.googleapis.com/css?family=Droid+Sans:400,700' rel='stylesheet' type='text/css'>
- <script type='text/javascript'>
- /* <![CDATA[ */
- (function() {
- var s = document.createElement('script');
- var t = document.getElementsByTagName('script')[0];
- s.type = 'text/javascript';
- s.async = true;
- s.src = '//api.flattr.com/js/0.6/load.js?mode=auto&uid=xythobuz&category=text';
- t.parentNode.insertBefore(s, t);
- })();
- /* ]]> */
- </script>
- </head>
- <body onload="sh_highlightDocument('/js/sh/', '.min.js');">
- <div class="github-fork-ribbon-wrapper right">
- <div class="github-fork-ribbon"><a href="
- https://github.com/xythobuz/LED-Cube
- ">Fork me on GitHub</a></div></div>
- <div id="header">
- <h1>xythobuz.de</h1>
- <h2><a href="http://www.liveleak.com/view?i=0cd_1295609192">"It turns blue..."</a></h2>
- </div>
- <div id="lang"><span id="lang2">Translation:
- <a href='ledcube.de.html'>de</a> | <a href='ledcube.html'>en</a>
- </span></div>
- <div class="colmask leftmenu"><div class="colleft">
- <div class="content">
-
- <div id="flattr">
- <a class="FlattrButton" href="http://www.xythobuz.de/ledcube.html" title="8x8x8 LED Cube">AVR LED Cube with Java Software and Music Visualization</a>
- </div>
- <div id="twitter">
- <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>
- </div>
- <div id="reddit">
- <script type="text/javascript">reddit_url = "http://www.xythobuz.de/ledcube.html";</script>
- <script type="text/javascript" src="http://www.reddit.com/static/button/button2.js"></script>
- </div>
- <div id="github">
- <a href="https://github.com/xythobuz/LED-Cube" class="gitforked-button gitforked-forks gitforked-watchers">Fork</a>
- </div>
-
- <h1>8x8x8 LED Cube</h1>
- <p>Get the <a href="https://github.com/xythobuz/LED-Cube/zipball/master">current Codebase as Zip</a>.</p>
- <iframe width="640" height="360" src="http://www.youtube.com/embed/czxCxTBSgHM?feature=player_detailpage" frameborder="0" allowfullscreen></iframe>
-
- <p>My friends Max (<a href="mailto:hutattedonmyarm@me.com">hutattedonmyarm@me.com</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>
- <p><a href="/img/cube14.jpg"><img alt="Foto 1" src="/img/cube14_small.jpg" /></a>
- <a href="/img/cube11.jpg"><img alt="Foto 2" src="/img/cube11_small.jpg" /></a></p>
- <h2>Hardware</h2>
- <p>An AtMega32 controls 8 8bit Latches. These 64 bits control, via a PNP Transistor, the anodes of 8 LEDs, each.</p>
- <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>
- <p>It can talk to a PC via USB with a FT232RL. A 1Mbit FRAM is accessed over TWI (or I2C).</p>
- <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>
- <p>An extensive part list can be found in the Github repository, in Hardware, called parts.txt.</p>
- <p><a href="/img/cube10.jpg"><img alt="Foto 3" src="/img/cube10_small.jpg" /></a>
- <a href="/img/cube12.jpg"><img alt="Foto 4" src="/img/cube12_small.jpg" /></a></p>
- <h2>Software</h2>
- <p>The software is composed of 3 parts. The CubeFirmware for the AtMega32, the AudioFirmware for the AtMega8 and CubeControl, the PC software.</p>
- <h3>CubeFirmware</h3>
- <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>
- <p><a href="/img/kuehler1.jpg"><img alt="Foto 7" src="/img/kuehler1_small.jpg" /></a>
- <a href="/img/kuehler2.jpg"><img alt="Foto 8" src="/img/kuehler2_small.jpg" /></a></p>
- <h3>AudioFirmware</h3>
- <p>It gets data from the MSGEQ7 and sends it via TWI.</p>
- <h3>CubeControl</h3>
- <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>
- <p><a href="/img/cubecontrol.png"><img alt="Screenshot" src="/img/cubecontrol_small.png" /></a>
- <a href="/img/cubeschem.png"><img alt="Schematic" src="/img/cubeschem_small.png" /></a></p>
- <h3>Hardware Emulator</h3>
- <p>Allows you to test CubeControl without a real Cube. Unix only!</p>
- <h3>UploadTest</h3>
- <p>Small CLI tool to send testdata or stored animations from CubeControl. Unix only!</p>
- <h2>Download</h2>
- <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>
- <p><a href="/img/cube13.jpg"><img alt="Foto 5" src="/img/cube13_small.jpg" /></a>
- <a href="/img/cube15.jpg"><img alt="Foto 6" src="/img/cube15_small.jpg" /></a></p>
-
- <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 id="disqus_thread"></div>
- <script type="text/javascript">
- var disqus_shortname = "xythobuz";
- (function() {
- var dsq = document.createElement("script"); dsq.type = "text/javascript"; dsq.async = true;
- dsq.src = "http://" + disqus_shortname + ".disqus.com/embed.js";
- (document.getElementsByTagName("head")[0] || document.getElementsByTagName("body")[0]).appendChild(dsq);
- })();
- </script>
- <noscript>Please enable JavaScript to view the <a href="http://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
- <a href="http://disqus.com" class="dsq-brlink">comments powered by <span class="logo-disqus">Disqus</span></a>
-
- </div>
- <div class="nav">
- <h3>Thomas Buck</h3>
-
- <div id="logo"><img id="logoImg" src="http://www.gravatar.com/avatar/8d18fec40a74782052fb4c007d212475?s=180" alt="Avatar"></div>
-
- <p id="bio">
- 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 Free Software.
- </p>
-
- <ul id="menuList">
- <li><a href="/index.html">Home</a></li>
- <li><a href="/blog.html">Blog</a></li>
- <li><a href="/contact.html">Contact</a></li>
- <li> </li>
- <li><a href="/ledcube.html">8x8x8 LED Cube</a></li>
- <li><a href="/yasab.html">YASAB AVR Bootloader</a></li>
- <li><a href="/avrnetstack.html">avrNetStack</a></li>
- <li><a href="/avrserial.html">AVR Serial Library</a></li>
- <li><a href="/serialdebug.html">Serial Debug</a></li>
- <li><a href="/ledmatrix.html">LED Matrix</a></li>
- <li><a href="/ssop28.html">SSOP28 - DIL Adapter</a></li>
- <li><a href="/xyrobot.html">xyRobot</a></li>
- <li><a href="/bluetooth.html">Bluetooth UART (BTM-222)</a></li>
- <li><a href="/k6x4008.html">K6x4008 SRAM</a></li>
- <li><a href="/xyrobotremote.html">xyRobotRemote</a></li>
- <li><a href="/rremote.html">rRemote</a></li>
- <li> </li>
- <li><a href="/c250.html">Mio C250 Unlock</a></li>
- <li><a href="/nas.html">IB-NAS6210 Linux</a></li>
- <li><a href="/ultimatenotifier.html">Ultimate Notifier Script</a></li>
- <li><a href="/serialhelper.html">Serial Helper</a></li>
- </ul>
-
- <div id="recent">
- Recent blog posts:
- <ul id="recentList">
- <li class="recentList"><a href="/2013_04_11_rss.html">RSS Probleme</a></li><li class="recentDate">2013-04-11</li>
- <li class="recentList"><a href="/2013_04_04_html5.html">Kein DRM in HTML5</a></li><li class="recentDate">2013-04-04</li>
- <li class="recentList"><a href="/2013_04_02_zaphod.html">Neuer Webserver</a></li><li class="recentDate">2013-04-02</li>
- <li class="recentList"><a href="/2013_03_25_doxygen.html">xyControl Doxygen Dokumentation</a></li><li class="recentDate">2013-03-25</li>
- <li class="recentList"><a href="/2013_03_16_pid.html">xyCopter PID-Parameter</a></li><li class="recentDate">2013-03-16</li>
- </ul>
- </div>
- </div>
- </div></div>
-
- <img id="dude" alt="The Dude abides..." src="/img/dude.png">
- <img id="walter" alt="Mark it zero!" src="/img/walter.png">
-
- <div id="footer">
- Built with <a href="http://bitbucket.org/obensonne/poole">Poole</a>
- ·
- Licensed as <a href="http://creativecommons.org/licenses/by/3.0">CC-BY</a>
- ·
- <a href="http://validator.w3.org/check?uri=referer">Validate HTML</a>
- ·
- <a href="http://jigsaw.w3.org/css-validator/validator?uri=xythobuz.de%2Fstyle.css&profile=css3">Validate CSS</a>
- ·
- <a href="http://feed1.w3.org/check.cgi?url=http://www.xythobuz.de/rss.xml">Validate RSS</a>
- ·
- <a href="http://www.validome.org/google/validate?url=http://www.xythobuz.de&googleTyp=SITEMAP">Validate Sitemap</a>
- </div>
- <img src="/stats/count.php?img" alt="Analytics">
- <script src="http://gitforked.com/api/1.1/button.js" type="text/javascript"></script>
- </body>
- </html>
|