
The ARDice - electronic dice based on Arduino
prusaprinters
<p>This is a electronic game dice based on Arduino. I saw various schematics with discrete components or IOs more than twenty years ago, but this one with Arduino is easy and fun to make.</p> <p>Features:</p> <ul> <li>Random number generation (1-6), the result is displayed on LEDs in a regular 6-sided dice style.</li> <li>Makes nice sound and animation when button is pressed.</li> <li>Silent mode - press the button during startup to mute all sounds.</li> <li>Sleep mode - activates after a period of inactivity.</li> </ul> <h3>Print instructions</h3><h3>Category: Electronics Print Settings</h3> <p><strong>Printer Brand:</strong> RepRap</p> <p><strong>Printer:</strong> Prusa i3</p> <p><strong>Rafts:</strong> No</p> <p><strong>Supports:</strong> No</p> <p><strong>Resolution:</strong> Standard</p> <p><strong>Infill:</strong> 20 %</p> <h3> Electronics</h3> <p><strong>Parts needed</strong></p> <ul> <li>7x 10 mm LED, any color</li> <li>7x 330 ohm resistor</li> <li>1x <a href="https://www.aliexpress.com/item/5pcs-Red-Color-Momentary-Push-Button-Switch-OFF-ON-Reset-Switch-16MM-3A-250V-AC-Non/32842823837.html">momentary pushbutton</a></li> <li>1x <a href="http://www.aliexpress.com/item/NEW-Small-round-rocker-switch-black-2PIN-2-files-Rocker-Switch-3A-250V-6A-125V-10pieces/1848324067.html">on/off rocker switch</a></li> <li>1x <a href="http://www.aliexpress.com/item/4PCS-LOT-5x7-4x6-3x7-2x8-CM-Double-Side-Copper-Prototype-PCB-Universal-Board-Experimental-Development/32262320163.html">universal PCB 30x70 mm</a></li> <li>1x <a href="http://www.aliexpress.com/item/1PCS-Nano-3-0-controller-compatible-with-nano-CH340-USB-driver-NO-CABLE-for-Arduino-NANO/32473529871.html">Arduino Nano</a> or basically any Arduino.</li> <li>1x <a href="http://www.aliexpress.com/item/10pcs-5V-Mini-Magnetic-Active-Buzzer-Alarm-Ringer-Black/32303976047.html">piezo buzzer</a></li> <li>STL headers and pins</li> <li>1x leads for 9 V battery</li> <li>1x 9 V battery</li> <li><p>4x M2.5 screws<br/> <strong>Connections</strong></p> <p>The electronics is actually pretty simple. It uses 9 digital I/O pins on the Arduino:</p> </li> <li><p>Pins D2-D8 to control LEDs</p> </li> <li>Pin D9 to connect the roll button</li> <li>Pin D10 to connect the piezo buzzer<br/> See the <a href="https://123d.circuits.io/circuits/1856516-ardice-electronic-dice-with-arduino">123D Circuits project</a> or the following schematics:</li> </ul> <p><strong>Breadboard view</strong></p> <p><strong>Schematic view</strong></p> <h3> Steps to make</h3> <p><strong>Step 1</strong></p> <p>Print the ARD_top.stl part first, so you can start to work on LEDs, while printing the ARD_bottom.stl part, which is bigger.</p> <p><strong>Step 2</strong></p> <p>Push the LEDs into the sockets. The part is designed to hide most of the body, leaving just the curved tip visible. You can use CA glue (superglue) or hot glue to fix them, but the friction itself should be good enough.</p> <p>Solder all the cathodes (shorter leads on LEDs) together and solder a wire to them.</p> <p><strong>Step 3</strong></p> <p>Solder one 330 ohm resistor to cathode on one end and a length of wire on the other end.</p> <p><strong>Step 4</strong></p> <p>Take 8 STL pins and solder the wires to the pins. First pin is ground (the cathodes), pins 2-8 are the LEDS in the order specified in the image below (when seen from top). You can also solder directly to PCB, if you don't want to test on breadboard.</p> <p>Use tape or heat shrink to isolate the leads.</p> <p><strong>LED numbering</strong></p> <p><strong>Step 5</strong></p> <ul> <li>Connect the STL pins to pins GND, D2-D8 of the Arduino.</li> <li>Connect the button between pin D9 and GND.</li> <li>Connect the buzzer between pin D10 and GND.<br/> You can use solderless breadboard or prototyping PCB, as you like.</li> </ul> <p><strong>Test setup on breadboard (resistors are hidden under heat-shrink)</strong></p> <p><strong>Step 6</strong></p> <p>Load the TestHardware.ino sketch to Arduino and run it.</p> <p>If you wired the pins correctly, the device should beep and then wait for button press. After a button press, the LEDs 1-7 should light one by one in the sequence given above and with each one shortly "click".</p> <p>If you passed this test, you are basically done, you can load the ArDice_V3.ino sketch, put it all into a nice box and enjoy. The rest of steps describes the software development process for interested.</p> <p>Sequential LED test</p> <p><strong>Number symbols</strong></p> <p>The TestNumbers.ino sketch contains definition of number symbols. The definition is specified in binary form, as a number, where each bit corresponds to single LED. The most significant bit is ignored (is always 0 in this case), because we have only 7 LEDs, thus need only 7 bits.</p> <p>The for loop in the showNumber function sets the state of each LED according to the definition of number symbol.</p> <p>The sketch is very similar to TestHardware.ino, but does not blink single LEDs, but displays numbers from 1 to 6.</p> <p>Number symbol test</p> <p><strong>Functional dice - first version</strong></p> <p>The ArDice_V1.ino sketch is basic functional dice. Upon pressing a button, it will display animation of random numbers, finally settling on the definitive value.</p> <p>We initialize random number generator by reading noise on unconnected analog pin A0. That's not the best possible solution and we should not use it for example for cryptographic purposes, but it's good enough for a game dice.</p> <p><strong>Add sleep mode with breathing</strong></p> <p>The ArDice_V2.ino sketch extends the previous version by adding timeout (30 seconds) after which the dice will 'sleep'. It will turn off the LEDs and only use the center one (LED 4, connected to pin D5) to 'breath', glow with limited and varying intensity (using PWM) to indicate the project is alive.</p> <p><strong>Add silent mode</strong></p> <p>The ArDice_V3.ino sketch is the final version. It extends the previous version by adding ability to turn off all sounds. To mute all sounds, press the button while turning on the dice</p> <p>Final version</p>
With this file you will be able to print The ARDice - electronic dice based on Arduino with your 3D printer. Click on the button and save the file on your computer to work, edit or customize your design. You can also find more 3D designs for printers on The ARDice - electronic dice based on Arduino.