How to design and develop a 3D printed multiplication tables learning tool

INTRODUCTION AND SCOPE

Multiplication tables are a challenge for kids to learn, but they could be turned into a game! This procedure aims to explain how to design and create a 3D printed multiplication tables learning tool (mandala) based upon the Montessori method. This is usually called the Montessori wheel or mandala of multiplication tables.

MATERIALS AND EQUIPMENT

3D Printer and PLA material (one color of choice), 1 meter long colored (possibly not the same color of the 3D printed part) wire.

PROCEDURE

  1. Download the stl file of the Montessori mandala (Hardware resources, link 2)
  2. 3D Print the Montessori mandala (Image 1)
  3. Tie the wire on the upper pin (position 12am), the other pins are numbered clockwise from 1 to 9
  4. While counting the multiplication tables (possible from 1 to 9), the wire must be turned around the corresponding pin (Image 2). For each sequence a different geometrical shape is created on the wheel. For example, by executing the sequence for the four multiplication table a star is created with the wire on the wheel (Image 2).

IMAGES

montessori wheel 3D printed
Image 1 – 3D printed Montessori wheel
montessori wheel example four multiplication table photo
Image 1 – 3D printed Montessori wheel example of four multiplication table

HARDWARE RESOURCES

  1. Used 3D printer: Sharebot NG.
  2. Stl file: 3D printed Montessori wheel mandala multiplication tables.stl
  3. G-code from stl file generated with Slic3r

SOFTWARE RESOURCES

None

CREDITS

None

DISCLAIMER

The project is provided in the spirit of open source and can be implemented, modified and shared according to CC BY-SA license (see footer). No liability is taken for any issues arising from the provided information.

CHANGELOG

  • 23/APR/2018 – New release

How to design a 3D printed lamp with a lithographic 3D printed photo

INTRODUCTION AND SCOPE

Table or bedsides lamps are common objects in modern homes not only to light up but also to decorate. This procedure aims to explain how to design a 3D printed table or bedside lamp with a lithographic 3D printed photo, that creates a very original and personal look.

MATERIALS AND EQUIPMENT

3D Printer and PLA material (black for the case and white for the 3D printed photo), 1 white or coloured LED, 1 battery.

PROCEDURE

  1. Take a picture and if not already black&white, make it so with any picture formatting program e.g. Microsoft Powerpoint (Picture Tools – Format – Color – Black and White Recolor). Save it in JPEG format.
  2. Reduce at minimum the size of the picture with any picture formatting program e.g. Microsoft Office Picture Manager (Edit Pictures – Compress pictures – Web Pages – Save)
  3. Download Processing and run it. Download the Model Builder library, unzip the library file, and copy the folder into Processing’s “libraries” folder. Once this is done restart Processing. Download the Lithograph3DPrint Processing sketch.
  4. Open the folder Lithograph3DPrint. Copy any grayscale images (preferably Black and White per step1, to optimize processing time) you want to convert into this folder.
  5. To run the sketch, replace the part in quotes in following line: String name = “your_file_name_here.jpg” with the name of your grayscale image. Define in the sketch the X and Z dimensions (X drives the size of the image and the time needed to print, while Z drives the print resolution and opacity, depending on the material selected):
    1. float widthDim = 150;//width dimension (in mm)
    2. float zDim = 1.00;//max vertical displacement (in mm)
    3. float thickness = 0.40;//base thickness (in mm)
  6. Run the sketch, after a minute or two Processing will tell you that it is writing an STL file and that it is finished. The resulting file will be located in the sketch’s folder named “NAME_OF_ORIGINAL_FILE.stl”
  7. Move the newly created stl file in the appropriate stl folder and open it with netfabb. Analyze the file and if errors are found, correct them (Repair tool – Execute – Apply – Save)
  8. Open the repaired stl file with Repetier Host and create the G code for the appropriate material (White PLA successfully tested) and the appropriate slice settings (Medium quality is recommended). The slicing process can take minutes if the image is large in size
  9. 3D Print the lithograph and the lamp case (Hardware resources, link 2); both dimensions matching the 150mm square shape of the 3D printed photo (Image 1)
  10. Backlight it with custom LEDs (Hardware resources, link 4 and 5) or bulb light according to aesthetic, safety and feasibility (Image 1).

IMAGES

3D printed lamp with a lithographic 3D printed photo
Image 1 – 3D printed lamp with a lithographic 3D printed photo

HARDWARE RESOURCES

  1. Used 3D printer: Sharebot NG.
  2. Stl file (for the lamp case): 3D printed lamp case.stl
  3. G-code from stl file generated with Slic3r
  4. Wiring up LEDs
  5. LED resistor calculator

SOFTWARE RESOURCES

  1. Processing
  2. Model Builder library
  3. Lithograph3DPrint

CREDITS

  1. Github: amandaghassaei
  2. Amandaghassaei.com

DISCLAIMER

The project is provided in the spirit of open source and can be implemented, modified and shared according to CC BY-SA license (see footer). No liability is taken for any issues arising from the provided information.

CHANGELOG

  • 18/AUG/2017 – New release

How to design and develop a power supply for an arduino clone

INTRODUCTION AND SCOPE

An Atmega 328P without arduino board can achieve the same capabilities of the arduino board, using the same arduino IDE programming and coding environment. Using an Atmega 328P chip without arduino board is powerful, cheap and functional. For a fully standalone setup, this requires a dedicated power supply. This procedure explains how to design and develop a power supply for an arduino clone.

MATERIALS AND EQUIPMENT

DC/DC Step-up Converter with USB 5 Volt output, 3D printed Flexing battery case (1 or 2 battery slots), 1 or 2 AA batteries, Wiring, Soldering.

PROCEDURE

  1. Wire and solder the USB power and ground pins on the DC/DC Step-up Converter with USB 5 Volt output (Hardware resources, link 1) (Image 2). The recommended DC/DC Step-up Converter can take as an input a voltage between 0.9 and 5 Volt and gives an output of 5 Volt with 500mA (when connecting 2 AA batteries) or 200mA (when connecting 1 AA battery)
  2. Wire and solder the battery power and ground pins on the DC/DC Step-up Converter with USB 5 Volt output (Hardware resources, link 1) (Image 1).
  3. 3D print the flexible battery case according to the recommendations at the provided resource (Hardware resources, link 2). The suggestion is to print single battery cases (1 or 2 depending on requirement)
  4. Wire the flexible battery case(s) in series to the battery power and ground pins on the DC/DC Step-up Converter with USB 5 Volt output (Image 1)
  5. Insert the charged AA battery into the flexible battery case(s)
  6. Provide power supply from the USB power and ground outputs of the DC/DC Step-up Converter to the standalone Atmega 328P (Hardware resources, link 3)

IMAGES

Power supply for an arduino clone
Image 1 – Power supply for an arduino clone
USB type A pinout
Image 2 – USB type A pinout

HARDWARE RESOURCES

  1. DC/DC Step-up Converter with USB 5 Volt output
  2. Flexing battery case
  3. How to design and develop a simple, small sized and fully functional arduino clone

SOFTWARE RESOURCES

N/A

CREDITS

  1. Arduino to Breadboard

DISCLAIMER

The project is provided in the spirit of open source and can be implemented, modified and shared according to CC BY-SA license (see footer). No liability is taken for any issues arising from the provided information.

CHANGELOG

  • 13/FEB/2017 – New release

How to solve USB connection issues between computer and Rumba Taurino board

INTRODUCTION AND SCOPE

USB connection is an important feature to ensure the rumba taurino board remains operative. Unfortunately, problems can frequently arise. This procedure aims to explain how to solve USB connection issues between computer and Rumba Taurino board.

MATERIALS AND EQUIPMENT

Rumba taurino board, USB cable, Two-pins bridge.

PROCEDURE

  1. Switch on the computer (defined PC below). 3D printer or similar (defined device below) must be off.
  2. Under PC Device Manager (link: Start> Run> Driver) check if there are RUMBA TAURINO BOARD devices installed but not recognized (unknown). If there are unknown devices, remove them.
  3. With device off, identify the two pins highlighted in red (see Images sections). Short the two pins to switch to DFU mode (Device Firmware Update). More details on DFU mode can be found at the link provided under credits (link 3).
  4. Connect the USB cable to the PC and then to the device.
  5. Switch on the device.
  6. Wait for 10 seconds and then remove the short on the two pins (avoid making short-circuit with other pins). The LED of the serial communication (TX and RX) start blinking.
  7. PC detects new hardware and tries to install the driver. This automatic task should give a system error and fail to install any driver.
  8. Download the DFU programmer and the drivers for the USB connection of the Rumba Taurino board that can be found at the link provided under credits (link 1). Save it on PC and unzip it. This is the path of the driver and DFU programmer required in step 9 and 10.
  9. Open the tool for manual installation of drivers (link: Start> Run> hdwwiz). Select the option install from list, select show all devices, disk driver and insert the path where the drivers for the USB connection of the Rumba Taurino board are saved on the PC. From the list select ATmega16U2 to install the driver for the USB connection of the Rumba Taurino board.
  10. Run the DFU programmer to flash the USB port. If a message on memory error check appears, click a keyboard button to flash the port.
  11. If needed and if not already available on the PC, install the driver for Rumba Taurino board (not the USB driver installed in step 9!), that can be downloaded at the link provided under credits (link 2).
  12. Switch off the device and switch on again to verify that it is now recognized by the PC and a USB port is assigned. Under devices the Rumba Taurino board icon appears.

IMAGES

Rumba Taurino two pins to short
Rumba Taurino two pins to short

HARDWARE RESOURCES

See Credits.

SOFTWARE RESOURCES

See Credits.

CREDITS

  1. Rumba Taurino Board PC USB connection (github)
  2. RUMBA_TAURINO_DriverSetup (reprap)
  3. DFU Mode (arduino)

DISCLAIMER

The project is provided in the spirit of open source and can be implemented, modified and shared according to CC BY-SA license (see footer). No liability is taken for any issues arising from the provided information.

CHANGELOG

  • 07/JUN/2015 – New release
  • 16/FEB/2016 – Verbiage improved in step 2, Step 8 added, Description improved in step 9-10-11, Resource references improved with numbering
  • 05/OCT/2016 – Project structure improved with sections: Introduction and scope, Materials and Equipment, Procedure, Hardware resources, Software resources, Credits and Disclaimer.

Launching open source projects

This article launches a series of open source hardware and software projects that will be shared in the next future.

According to opensource.com, open hardware or open source hardware refers to the design specifications of a physical object which are licensed in such a way that said object can be studied, modified, created, and distributed by anyone. Open hardware is a set of design principles and legal practices, not a specific type of object. The term can therefore refer to any number of objects—like automobiles, chairs, computers, robots, or even houses.

Like open source software, the source code for open hardware (schematics, blueprints, logic designs, CAD drawings, etc) is available for modification or enhancement by anyone under permissive licenses. Users with access to the tools that can read and manipulate these source files can update and improve the code that underlies the physical device. They can add features or fix bugs in the software. The license governing the reproduction of open hardware must allow modification and distribution of those design files in a way that allows others to easily obtain them. This makes possible and even encourages studying, troubleshooting, modifying, and improving open hardware.

Open source hardware and software

This site uses cookies. If you consent, accept this message. For more options, read the Privacy Policy

The cookie settings on this website are set to "allow cookies" to give you the best browsing experience possible. If you continue to use this website without changing your cookie settings or you click "Accept" below then you are consenting to this.

Close