No Description

tuanchris 5fa0579e0b fix intermitten failure on rpi3b & 4 7 months ago
.github bee3913eec Update docker-publish.yml 1 year ago
firmware 685b358663 update config file 8 months ago
modules f63e174126 Add ultra clear pattern (#63) 8 months ago
patterns f63e174126 Add ultra clear pattern (#63) 8 months ago
static 1bc7f156e5 quick fix 9 months ago
steps_calibration c20fd7c00c Dlc32 fastapi (#46) 11 months ago
templates f63e174126 Add ultra clear pattern (#63) 8 months ago
.env.example c20fd7c00c Dlc32 fastapi (#46) 11 months ago
.gitignore 8dd838ce9c change pattern preview to png 9 months ago
CHANGELOG.md d4ef5d6df1 Add schedule, play/pause, table config, and table status (#27) 1 year ago
Dockerfile 5fa0579e0b fix intermitten failure on rpi3b & 4 7 months ago
LICENSE d4ef5d6df1 Add schedule, play/pause, table config, and table status (#27) 1 year ago
PATTERN_CREDITS.md c20fd7c00c Dlc32 fastapi (#46) 11 months ago
README.md c20fd7c00c Dlc32 fastapi (#46) 11 months ago
__init__.py c20fd7c00c Dlc32 fastapi (#46) 11 months ago
app.py 8dd838ce9c change pattern preview to png 9 months ago
docker-compose.yml 3345265345 fix .json files mounting 11 months ago
mirror_pattern.py f4e8905abd add script to mirror pattern for text, undo script transformation 1 year ago
requirements.txt 5fa0579e0b fix intermitten failure on rpi3b & 4 7 months ago

README.md

Dune Weaver

Dune Weaver Gif

Dune Weaver is a project for a mesmerizing, motorized sand table that draws intricate patterns in sand using a steel ball moved by a magnet. This project combines hardware and software, leveraging an Arduino for hardware control and a Python/Flask-based web interface for interaction.

Check out the wiki here for more details.


The Dune Weaver comes in two versions:

  1. Small Version (Mini Dune Weaver):

    • Uses two 28BYJ-48 DC 5V stepper motors.
    • Controlled via ULN2003 motor drivers.
    • Powered by an ESP32.
  2. Larger Version (Dune Weaver):

    • Uses two NEMA 17 or NEMA 23 stepper motors.
    • Controlled via TMC2209 or DRV8825 motor drivers.
    • Powered by an Arduino UNO with a CNC shield.

Each version operates similarly but differs in power, precision, and construction cost.

The sand table consists of two main bases:

  1. Lower Base: Houses all the electronic components, including motor drivers, and power connections.
  2. Upper Base: Contains the sand and the marble, which is moved by a magnet beneath.

Both versions of the table use two stepper motors:

  • Radial Axis Motor: Controls the in-and-out movement of the arm.
  • Angular Axis Motor: Controls the rotational movement of the arm.

The small version uses 28BYJ-48 motors driven by ULN2003 drivers, while the larger version uses NEMA 17 or NEMA 23 motors with TMC2209 or DRV8825 drivers.: Controls the in-and-out movement of the arm.

  • Angular Axis Motor: Controls the rotational movement of the arm.

Each motor is connected to a motor driver that dictates step and direction. The motor drivers are, in turn, connected to the ESP32 board, which serves as the system's main controller. The entire table is powered by a single USB cable attached to the ESP32.


Coordinate System

Unlike traditional CNC machines that use an X-Y coordinate system, the sand table operates on a theta-rho (θ, ρ) coordinate system:

  • Theta (θ): Represents the angular position of the arm, with 2π radians (360 degrees) for one full revolution.
  • Rho (ρ): Represents the radial distance of the marble from the center, with 0 at the center and 1 at the perimeter.

This system allows the table to create intricate radial designs that differ significantly from traditional Cartesian-based CNC machines.


Homing and Position Tracking

Unlike conventional CNC machines, the sand table does not have a limit switch for homing. Instead, it uses a crash-homing method:

  1. Upon power-on, the radial axis moves inward to its physical limit, ensuring the marble is positioned at the center.
  2. The software then assumes this as the home position (0,0 in polar coordinates).
  3. The system continuously tracks all executed coordinates to maintain an accurate record of the marble’s position.

Mechanical Constraints and Software Adjustments

Coupled Angular and Radial Motion

Due to the hardware design choice, the angular axis does not move independently. This means that when the angular motor moves one full revolution, the radial axis also moves slightly—either inwards or outwards, depending on the rotation direction.

To counteract this behavior, the software:

  • Monitors how many revolutions the angular axis has moved.
  • Applies an offset to the radial axis to compensate for unintended movements.

This correction ensures that the table accurately follows the intended path without accumulating errors over time.


Each pattern file consists of lines with theta and rho values (in degrees and normalized units, respectively), separated by a space. Comments start with #.

Example:

# Example pattern
0 0.5
90 0.7
180 0.5
270 0.7

API Endpoints

The project exposes RESTful APIs for various actions. Here are some key endpoints: • List Serial Ports: /list_serial_ports (GET) • Connect to Serial: /connect (POST) • Upload Pattern: /upload_theta_rho (POST) • Run Pattern: /run_theta_rho (POST) • Stop Execution: /stop_execution (POST)

Project Structure

dune-weaver/
├── app.py              # Flask app and core logic
├── patterns/           # Directory for theta-rho files
├── static/             # Static files (CSS, JS)
├── templates/          # HTML templates for the web interface
├── README.md           # Project documentation
├── requirements.txt    # Python dependencies
└── arduino/            # Arduino firmware

Happy sand drawing with Dune Weaver! 🌟