cube-3d

Cube 3D

Releases Discord badge GitHub last commit Issues License badge

This is an application for generating code for a LED cube. It generates the necessary code for programming the LED cube with either Arduino or C, using Atmel Studio. Currently, this works for a 4x4x4 LED cube and will eventually include other sizes. The Arduino/Atmega328 code and details can be found in the LED-Cube-Code repository. The application will be simulating the LED cube as well in the future.

Table of Contents

Installing

Download the latest application (.exe) from releases and follow the install wizard. It works for Windows 10 and possibly earlier Windows OS’es (not tested).

Usage

The application generates a pattern table for a 4x4x4 LED cube and makes it easy to visualize the patterns. The code for programming the LED cube comes with the application and also exist in its own repository LED-Cube-Code.

cube.png

Code Editor

Possibly the most important part of the application is the code editor. This enables editing of what’s going to become the pattern.h file, which contains all patterns for the LED cube. The code editor responds to Enter for generating patterns. It will then generate a pattern line depending on which LEDs are lit on the cube. By pressing Delete you simply delete the latest line. It has an input field for the time variable, by changing this you change how long (in ms) a pattern will be displayed on the cube. There are also two buttons for increasing and decreasing the code size and editor, these are the + and - buttons.

code_editor.png

By default the code in the editor is not editable. By clicking the Edit button you can edit the code. The thought is that you can add comments to structure the code and change it if something went wrong. Just a FYI, don’t edit the code outside of the array as that might break the functionality of the hotkeys and make the exported files be exported wrongly. When you are in edit mode, Enter will not work to generate code. When edit mode is enabled the code editor goes gray as shown in the image.

code_editor_edit.png

Export

When you are happy with the code generated in the code editor, you can export it. There are two options, exporting as Arduino project or exporting just the pattern file. Exporting the Arduino project gives you a folder with the Arduino code for the LED cube and the pattern.h file, while exporting the pattern file simply gives pattern.h. Whatever is in the code editor is going to be in pattern.h. Remember to always write a filename or foldername for export to work. The exporter will always ask you where to export the code.

export.png

Settings

This is the panel where you can customize the cube. The environment the cube is in has four lights in the traditional Three-point lighting plus a roof light. Adjust these lights if you feel the need to do so. The intensity of the LEDs can also be adjusted.

The cube consists of a box, PCB, LED legs and LEDs. You can switch off the cube box, PCB and LED legs for a cleaner look. This is of course up to your preferences. The code editor can also be turned off if you wish to just inspect the cube or for the future release with simulation.

settings.png

File

This button contains the About information and the Hotkeys information. Seeing what hotkeys exists and how to use them is very useful for an efficient workflow. In the future this will probably include Save Project and similar as well.

file.png

Zoom and Rotate

To zoom in on the cube simply use the scroll wheel or touchpad to zoom. To rotate the cube right click and drag the cube around. Whenever you right click you will reset the camera. This is both great if you want to go back to the default camera position and annoying if you dont. This is a known limitation that will be solved in a future update. The 3D model of the cube is wired exactly as a real life one would be, so if you want to visualize the wiring you can zoom in on the connections.

YouTube Tutorials

Watch the YouTube tutorials: (coming soon)

Future Improvements

Some of the things on the list for future improvements and features are:

Help and Contributing

Check out the Discord server if you need help with the code not working or if you have suggestions for improvement! The YouTube channel has video tutorials to help out as well. (YouTube videos coming soon)

License

This project is licensed under the MIT license and is open source. You are free to use this project as you wish as long as you credit the work. See the LICENSE file for details. I would highly appreciate if you contributed to the project that you share it so this can be a big open source project!

Authors

Marius C. K. Gulbrandsen

Acknowledgement

Big thanks to my brother Stig Thomas Gulbrandsen for helping with Unity and C# issues, it has been much appreciated. Also, thank you to Denis who created a Unity-WinForms wrapper. He has been immensely helpful with getting WinForms to work. Thanks to Judah Perez for creating an awesome HSV-Color Picker.