Simple single-color 8x8x8 LED Cube with AVRs
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.
Thomas Buck 4961757466 Removed wrong copyright notices. 12 years ago
AudioFirmware Removed wrong copyright notices. 12 years ago
CubeControl Removed wrong copyright notices. 12 years ago
CubeFirmware Removed wrong copyright notices. 12 years ago
Hardware Fucked up file access rights. 12 years ago
HardwareEmulator Removed wrong copyright notices. 12 years ago
UploadTest Removed wrong copyright notices. 12 years ago
.gitignore Fucked up file access rights. 12 years ago
COPYING aaah 12 years ago
README.md Removed wrong copyright notices. 12 years ago
lookUp.c Removed wrong copyright notices. 12 years ago

README.md

8x8x8 LED Cube

8x8x8 Single Color LED Cube built with an AtMega32.

Hardware

This LED-Cube uses an AtMega32 for displaying animations and an AtMega8 for Audio Visualizations. I first built the Circuit on a 160x100mm hole-grid board. This was very cumbersome, so I created a dual-sided PCB Layout with SMD Parts. You can find this Layout and the Schematic in the Hardware folder, as PNGs and Eagle files. There’s also a partlist.

CubeFirmware

CubeFirmware controls the AtMega32, which in turn displays images and communicates over USB. It’s in the CubeFirmware folder. Compile with avr-gcc, using the makefile (just run ‘make’).

AudioFirmware

This firmware controls the AtMega8, which interfaces the MSGEQ7 to get sound data. It is addressed by the CubeFirmware as a TWI-Slave.

CubeControl

CubeControl is a PC software, written in Java and mostly platform-independent, to create Animations for the Cube and send them to it. It depends on Java3D to display a rotatable, clickable 3D View of the LED-Cube. It comes with it’s own Serial Library to communicate with the Cube. Compile it with the makefile. You need a working javac and gcc in your Path. To compile under windows get something like MinGW or try Microsofts compiler.

License

See the included LICENSE file. This software is released as GPLv3. It incorporates some code from Peter Danneger (his TWI Library and a button debounce routine), released as GPLv2.