Convert SVG files to Prusa Core One G-code for plastic welding
Project description
MicroWeldr
A Python package that converts SVG files to Prusa Core One G-code for plastic "spot" welding applications. The package processes SVG vector graphics and generates G-code that creates weld spots along the paths without extruding any plastic material.
Optimized for Prusa Core One: Includes chamber temperature control (M141/M191), proper bed dimensions (250×220×270mm), CoreXY-specific settings, and layed back mode (currently not working) - designed for when your printer is positioned on its back (door pointing up) so liquids can be pipetted into pouches and gravity holds them in place before heat sealing.
This allows for rapid microfluidics prototyping with a 3d printer. While the edges are not as smooth as a laser weld, the 3d printer is more available than a laser welder.
Project Structure
microweldr/
├── microweldr/ # Main package
│ ├── core/ # Core functionality
│ ├── validation/ # Validation modules
│ ├── animation/ # Animation generation
│ └── cli/ # Command line interface
├── tests/ # Test suite
│ ├── unit/ # Unit tests
│ └── integration/ # Integration tests
├── examples/ # Example files and configurations
├── docs/ # Documentation
└── pyproject.toml # Poetry configuration
Features
- SVG Processing: Converts SVG paths, lines, circles, and rectangles to weld points
- Color-based Weld Types:
- Black elements → Normal welds
- Blue elements → Light welds (lower temperature, shorter dwell time)
- Red elements → Stop points (pause for user intervention)
- Configurable Parameters: TOML-based configuration for temperatures, heights, and timing
- Bed Leveling: Optional automatic bed leveling (can be disabled)
- Animation Output: Generates animated SVG showing the welding sequence
- Proper G-code Structure: Includes heating, cooling, and safety procedures
- PrusaLink Integration: Direct G-code submission to Prusa MINI via PrusaLink API
Installation
From PyPI (Recommended)
pip install microweldr
That's it! All validation and development tools are included by default.
Development Installation
# Clone repository
git clone https://github.com/retospect/microweldr.git
cd microweldr
# Install in editable mode
pip install -e .
Available Commands
After installation, these console commands are available:
Main Commands
# SVG to G-code conversion
microweldr input.svg -o output.gcode
# Print with automatic monitoring
microweldr input.svg --submit-to-printer --monitor
microweldr input.svg --submit-to-printer --monitor --monitor-mode pipetting
Utility Commands
# Printer control tool
microweldr-control status # Check printer status
microweldr-control monitor # Monitor current print
microweldr-control stop # Stop current print
# Test PrusaLink connection
microweldr-test
Configuration
Edit config.toml to adjust welding parameters:
[temperatures]
bed_temperature = 80 # °C
nozzle_temperature = 200 # °C for normal welds
chamber_temperature = 35 # °C - Core One chamber temperature
use_chamber_heating = false # Set to false to disable chamber heating (useful if sensor is not working)
[movement]
move_height = 5.0 # mm - safe travel height
weld_height = 0.2 # mm - welding height
[normal_welds]
weld_temperature = 200 # °C
dot_spacing = 0.3 # mm - final desired spacing
initial_dot_spacing = 8.0 # mm - spacing for first pass (wider)
cooling_time_between_passes = 2.0 # seconds - cooling between passes
[light_welds]
weld_temperature = 180 # °C - lower temperature
spot_dwell_time = 0.3 # seconds - shorter time
dot_spacing = 0.3 # mm - final desired spacing
initial_dot_spacing = 12.0 # mm - spacing for first pass (wider)
cooling_time_between_passes = 1.5 # seconds - cooling between passes
[nozzle]
outer_diameter = 0.4 # mm - nozzle outer diameter
inner_diameter = 0.2 # mm - nozzle inner diameter (opening)
[animation]
time_between_welds = 0.1 # seconds - time between weld points in animation
pause_time = 3.0 # seconds - how long pause messages are displayed
min_animation_duration = 10.0 # seconds - minimum total animation time
Configuration File Loading
MicroWeldr looks for configuration files in the following order (first found wins):
Main Configuration (config.toml)
- Command line specified:
-c custom_config.tomlor--config custom_config.toml - Current directory:
./config.toml - Examples directory:
./examples/config.toml(if running from repo root) - Package defaults: Built-in fallback configuration
Secrets Configuration (secrets.toml)
Used for PrusaLink printer connection settings:
- Command line specified:
--secrets-config custom_secrets.toml - Current directory:
./secrets.toml - Examples directory:
./examples/secrets.toml - No secrets file: PrusaLink features disabled (local G-code generation only)
Configuration Hierarchy
- Built-in defaults provide base configuration
- Main config file overrides defaults
- Command line arguments override config file settings
- SVG attributes override all other settings (per-element)
File Locations Examples
# Using default config in current directory
microweldr input.svg # Uses ./config.toml
# Using custom config file
microweldr input.svg -c my_config.toml # Uses my_config.toml
# Using custom secrets file
microweldr input.svg --secrets-config my_secrets.toml
# Both custom configs
microweldr input.svg -c my_config.toml --secrets-config my_secrets.toml
Config File Templates
config.toml: Main welding parameters (temperatures, speeds, etc.)examples/config.toml: Optimized settings for new userssecrets.toml: PrusaLink connection settings (not in git)secrets.toml.template: Template for PrusaLink setup
Missing Files Behavior
- No config.toml: Uses built-in defaults (safe for basic operation)
- No secrets.toml: PrusaLink disabled, local G-code generation only
- Invalid config: Falls back to defaults with warnings
- Partial config: Missing sections use defaults
Layed Back Mode (⚠️ EXPERIMENTAL - NOT WORKING YET)
⚠️ WARNING: Layed back mode is currently under development and does not work properly. Use standard upright mode for reliable operation.
The SVG welder was designed to support "layed back printer operation" - when your printer is chillin' on its back with the door pointing up for easy access to microfluidic devices. However, this mode is currently experiencing technical issues.
Known Issues:
- ❌ Calibration conflicts with manual positioning
- ❌ Z-axis homing issues when printer is on its back
- ❌ Coordinate system needs adjustment for inverted orientation
- ❌ Safety features need refinement for this configuration
Current Recommendation:
[printer]
layed_back_mode = false # Use standard upright mode for now
Future Development:
Once the issues are resolved, layed back mode will provide:
- Easy access for pipetting and microfluidic operations
- Manual positioning with trusted coordinates
- Optimized G-code for inverted printer orientation
📍 Manual Positioning Required
IMPORTANT: Before starting any print (your printer is trusting you completely!):
- Manually position the print head to the rear right corner of the bed
- Set Z-height manually - position nozzle at desired starting height above bed
- All positioning trusted - the printer is chillin' and trusts your complete setup
- G92 X0 Y0 Z0 sets all axes as origin (no automatic homing performed)
🛡️ Safety Features for Layed Back Mode
- ✅ No automatic homing (prevents all endpoint errors when printer is on its back)
- ✅ Fully manual positioning (complete trust in your setup for all axes)
- ✅ No bed leveling (too risky when printer is layed back)
- ✅ Slower movements (3000 mm/min travel, 150 mm/min Z-axis - no rush!)
- ✅ Disabled stepper timeout (M84 S0 - printer stays relaxed)
- ✅ Gentle Z positioning (slow movements to avoid crashes)
⚙️ Standard Mode (For Uptight Printers)
Set layed_back_mode = false for normal upright printer operation with full homing and bed leveling.
PrusaLink Configuration
To enable direct G-code submission to your Prusa Core One, you need to configure PrusaLink access:
1. Setup PrusaLink on Your Printer
- Enable PrusaLink on your Prusa Core One (should be enabled by default on newer firmware)
- Connect your printer to your network (WiFi or Ethernet)
- Note your printer's IP address (check printer display or router) or find its
.localhostname
2. Find Your Printer's Address
You can use either:
- IP Address: Check your printer's display or router's connected devices
- .local hostname: Usually
prusacoreone.localor similar (check printer display for exact name)
3. Get Authentication Credentials
Choose ONE method:
Method A: LCD Password (Recommended - Easier)
- Check your printer's LCD display for the password (usually shown in network settings)
- No web interface setup needed
Method B: API Key (Alternative)
- Open your printer's web interface:
http://YOUR_PRINTER_IPorhttp://prusacoreone.local - Go to Settings → API
- Generate or copy your API key
4. Configure secrets.toml
Copy the template and fill in your details:
cp secrets.toml.template secrets.toml
Edit secrets.toml:
[prusalink]
host = "192.168.1.100" # Your printer's IP address
# OR use .local hostname:
# host = "prusacoreone.local" # More convenient, doesn't change with DHCP
# Method A: LCD Password (recommended)
username = "maker" # Default username (usually "maker")
password = "your-lcd-password" # Password from printer's LCD display
# Method B: API Key (alternative - comment out Method A if using this)
# username = "maker"
# api_key = "your-api-key-here" # From printer's web interface
default_storage = "local" # "local" or "usb"
auto_start_print = true # Whether to start printing immediately
timeout = 30 # Connection timeout in seconds
5. Test Connection
microweldr-test
6. Submit G-code to Printer
# Generate and submit G-code (starts printing immediately with default config)
microweldr input.svg --submit-to-printer
# Force immediate printing (overrides config)
microweldr input.svg --submit-to-printer --auto-start-print
# Use USB storage instead of local
microweldr input.svg --submit-to-printer --printer-storage usb
# Upload without starting (override config default)
microweldr input.svg --submit-to-printer --no-auto-start
# Queue the file for later printing (clearer intent)
microweldr input.svg --submit-to-printer --queue-only
Printing Modes
The SVG welder supports three different printing modes when submitting to your printer:
🚀 Immediate Printing (Default)
Files are uploaded and printing starts immediately:
microweldr input.svg --submit-to-printer
# or force immediate printing:
microweldr input.svg --submit-to-printer --auto-start-print
📋 Queue Mode
Files are uploaded and queued for later printing:
microweldr input.svg --submit-to-printer --queue-only
Use this when:
- You want to prepare multiple files
- The printer is currently busy
- You want to review the file before printing
📁 Upload Only
Files are uploaded without any automatic behavior:
microweldr input.svg --submit-to-printer --no-auto-start
Usage
Basic Usage
# Convert SVG to G-code
microweldr input.svg
# Using the module directly
python -m microweldr.cli.main input.svg
Advanced Options
# Specify output file
microweldr input.svg -o output.gcode
# Skip bed leveling
microweldr input.svg --skip-bed-leveling
# Use custom configuration
microweldr input.svg -c custom_config.toml
# Skip animation generation
microweldr input.svg --no-animation
# Skip validation
microweldr input.svg --no-validation
# Verbose output
microweldr input.svg --verbose
Quick Start with Examples
# Run with example files
make run-example
make run-comprehensive
Command Line Options
input_svg: Input SVG file path (required)-o, --output: Output G-code file path (default: input_name.gcode)-c, --config: Configuration file path (default: config.toml)--skip-bed-leveling: Skip automatic bed leveling--no-animation: Skip generating animation SVG--no-validation: Skip validation steps--verbose, -v: Enable verbose output--weld-sequence: Welding sequence algorithm (linear, binary, farthest, skip)--submit-to-printer: Submit G-code to PrusaLink after generation--secrets-config: Path to secrets configuration file (default: secrets.toml)--printer-storage: Target storage on printer (local or usb)--auto-start-print: Automatically start printing after upload (overrides config)--no-auto-start: Do not start printing after upload (overrides config)--queue-only: Queue the file without starting (clearer intent than --no-auto-start)
SVG Requirements
Coordinate System
- SVG coordinates should be in millimeters
- Origin (0,0) corresponds to the printer bed origin
Element Processing Order
- Elements are processed in order of their SVG ID attributes
- IDs with numeric components are sorted numerically
- Elements without IDs are processed last
Color-Based Weld Types
MicroWeldr interprets SVG element colors to determine weld behavior:
Recognized Colors:
- Black elements (default): Normal welding with full temperature and multi-pass
- Blue elements: Light welding with reduced temperature and shorter dwell time
- Red elements: Stop points with custom pause messages for manual intervention
- Pink/Magenta elements: Pipetting stops for microfluidic device filling
Other Colors (Ignored):
- All other colors (green, orange, purple, yellow, etc.): Completely ignored - no G-code generated
- Gray elements: Ignored (commonly used for labels and annotations)
- White elements: Ignored
- Any unlisted color: Ignored and skipped during processing
Color Specification:
Colors can be specified via:
strokeattribute:stroke="black"fillattribute:fill="blue"styleattribute:style="fill:red;stroke:none"
Best Practice for Labels:
Use non-weld colors (orange, purple, green, gray) for text labels and annotations to prevent unintended G-code generation:
<!-- These will be ignored (no welding) -->
<text fill="orange">Temperature: 130°C</text>
<text fill="purple">Dwell: 0.1s</text>
<text fill="gray">Calibration Grid</text>
Pipetting Stops for Microfluidics 🧪
Pink/Magenta elements create pipetting stops specifically designed for microfluidic device operation:
Supported Colors:
magenta,pink,fuchsia#ff00ff,#f0f,#ff69b4,#ffc0cbrgb(255,0,255),rgb(255,105,180),rgb(255,192,203)
Use Cases:
- Reagent filling: Pause to add reagents to pouches
- Sample injection: Stop for sample introduction
- Buffer addition: Add buffers or washing solutions
- Collection: Insert collection tubes or containers
Example:
<!-- Pipetting stop with custom message -->
<circle cx="60" cy="50" r="8" fill="magenta"
title="Fill with 10μL reagent A using micropipette"/>
Custom Pause Messages
Both red elements (stop points) and pink elements (pipetting stops) can include custom messages displayed on the printer screen. Messages can be specified using any of these SVG attributes (in order of priority):
data-message="Your custom message"- Recommended custom data attributetitle="Your custom message"- Standard SVG title attributedesc="Your custom message"- SVG description elementaria-label="Your custom message"- Accessibility label
If no message is specified, the default "Manual intervention required" will be used.
Example:
<!-- Stop with custom message -->
<circle cx="50" cy="50" r="2" fill="red" data-message="Check weld quality and adjust temperature"/>
<!-- Stop using title attribute -->
<rect x="10" y="10" width="5" height="5" fill="red" title="Insert second plastic sheet"/>
Special SVG Attributes
MicroWeldr recognizes several custom SVG attributes that allow fine-grained control over welding parameters and behavior:
Custom Pause Messages
Control what message appears on the printer screen during stops:
data-message="text"- Custom pause message (recommended)title="text"- Standard SVG title attributedesc="text"- SVG description elementaria-label="text"- Accessibility label
Priority Order: data-message > title > desc > aria-label > default message
Custom Welding Parameters
Override default welding settings per element:
data-temp="180"- Custom temperature in °Cdata-dwell="0.5"- Custom dwell time in secondsdata-height="0.03"- Custom weld height in mmdata-spacing="1.5"- Custom dot spacing in mm
Processing Control
Control how elements are processed:
data-skip="true"- Skip this element entirelydata-priority="10"- Processing priority (lower = earlier)id="weld_001"- Element ID for ordering (numeric IDs sorted)
Animation Control
Customize animation appearance:
data-animate="false"- Exclude from animationdata-color="#ff0000"- Custom animation colordata-delay="2.0"- Extra delay before this element (seconds)
Complete Example
<!-- Normal weld with custom parameters -->
<line x1="10" y1="10" x2="50" y2="10"
stroke="black"
data-temp="160"
data-dwell="0.3"
data-height="0.025"
id="weld_001"/>
<!-- Stop point with custom message and priority -->
<circle cx="30" cy="30" r="2"
fill="red"
data-message="Insert reagent tube and press continue"
data-priority="5"
title="Reagent insertion point"/>
<!-- Light weld with custom spacing -->
<path d="M 60,20 L 80,20 L 80,40 Z"
stroke="blue"
data-spacing="0.8"
data-animate="true"
data-color="#00aaff"/>
<!-- Pipetting stop with custom parameters -->
<rect x="70" y="50" width="5" height="5"
fill="magenta"
data-message="Pipette 5μL sample into chamber"
data-delay="1.0"
aria-label="Sample injection point"/>
Parameter Inheritance
- Global defaults from
config.tomlapply to all elements - Color-based defaults (normal/light welds) override global defaults
- Custom attributes override both global and color-based defaults
- Invalid values fall back to defaults with warnings
Validation
- Temperature: 100-300°C (validated against printer limits)
- Dwell time: 0.1-5.0 seconds (prevents damage)
- Height: 0.01-1.0 mm (prevents crashes)
- Spacing: 0.1-10.0 mm (reasonable welding density)
Supported SVG Elements
<path>- Follows path commands (M, L, Z supported)<line>- Straight lines between two points<circle>- Circular paths<rect>- Rectangular paths
G-code Output
The generated G-code includes:
- Initialization: Homing, absolute positioning
- Bed Leveling: Optional automatic bed leveling (G29)
- Heating: Bed and nozzle to specified temperatures
- User Pause: For inserting plastic sheets (M0)
- Multi-Pass Welding Process:
- Pass 1: Create initial dots with wide spacing (allows plastic to set)
- Cooling Period: Wait between passes for plastic to cool
- Pass 2+: Fill in between previous dots until desired density achieved
- Each dot: Move to position → Lower → Dwell → Raise
- Cooldown: Lower temperatures and home axes
Sending G-code to Prusa Printer
Once you've generated the G-code file, you can send it to your Prusa Core One printer using several methods:
Method 1: PrusaConnect (Recommended)
Best for: Remote monitoring and cloud-based printing
-
Upload via Web Interface:
- Open connect.prusa3d.com in your browser
- Log in to your Prusa account
- Select your printer from the dashboard
- Click "Upload G-code" or drag and drop your
.gcodefile - The file will be transferred to your printer automatically
-
Start the Print:
- The G-code will appear in your printer's file list
- Select the file on the printer's touchscreen
- Press "Print" to begin the welding process
- Monitor progress remotely via PrusaConnect dashboard
Method 2: USB Drive
Best for: Offline printing and large files
-
Prepare USB Drive:
- Use a FAT32 formatted USB drive
- Copy your
.gcodefile to the root directory or a folder - Safely eject the USB drive from your computer
-
Load on Printer:
- Insert the USB drive into the printer's USB port
- Navigate to "Print from USB" on the touchscreen
- Browse and select your G-code file
- Press "Print" to start welding
Method 3: PrusaLink (Local Network)
Best for: Local network printing without cloud dependency
-
Access PrusaLink Interface:
- Find your printer's IP address (Settings → Network → Wi-Fi Info)
- Open
http://[printer-ip-address]in your browser - Or use the Prusa app to connect locally
-
Upload G-code:
- Click "Upload G-code" in the PrusaLink interface
- Select your
.gcodefile - The file transfers directly to the printer over your local network
-
Start Printing:
- Select the uploaded file from the printer's interface
- Begin the welding process
Pre-Print Checklist
Before starting the welding process:
Printer Preparation
- Clean the bed: Remove any residue from previous prints
- Check nozzle: Ensure nozzle is clean and appropriate for welding
- Verify temperatures: Confirm bed and nozzle temperature settings match your plastic
- Load filament: Even though no extrusion occurs, some printers require filament to be loaded
Material Preparation
- Plastic sheets ready: Have your plastic sheets cut to size and ready to insert
- Workspace clear: Ensure adequate ventilation for plastic welding
- Safety equipment: Have appropriate safety gear (ventilation, eye protection)
G-code Verification
- Review animation: Check the generated
*_animation.svgfile to verify weld pattern - Validate settings: Confirm temperatures and timing are appropriate for your materials
- Check pause points: Note where manual intervention will be required
During the Welding Process
Initial Setup Phase
- Homing: Printer will home all axes automatically
- Bed Leveling: If enabled, automatic bed leveling will run (G29)
- Heating: Bed and nozzle will heat to specified temperatures
- User Pause: Printer will pause with message "Insert plastic sheets and press continue"
Welding Phase
- Multi-pass welding: Printer follows the programmed sequence
- Pause points: Respond to custom pause messages (red elements in SVG)
- Monitor progress: Watch for proper weld formation and material behavior
- Temperature management: Printer automatically manages heating between weld types
Completion
- Cooldown: Printer will automatically cool down nozzle and bed
- Homing: Final homing sequence
- Completion message: Printer indicates welding is complete
Troubleshooting Transfer Issues
File Not Recognized
- Ensure file has
.gcodeextension - Check file size (some methods have limits)
- Verify G-code syntax with a G-code viewer
Connection Problems
- PrusaConnect: Check internet connection and printer online status
- PrusaLink: Verify printer and computer are on same network
- USB: Try different USB drive or reformat as FAT32
Upload Failures
- Check available storage space on printer
- Try smaller file sizes or reduce complexity
- Restart printer network connection if needed
File Management Tips
- Organize files: Use descriptive names like
project_name_v1.gcode - Keep backups: Save both SVG source and generated G-code files
- Version control: Include date/version in filenames for tracking
- Clean up: Regularly remove old files from printer storage
Safety Reminders
- Never leave unattended: Always supervise the welding process
- Emergency stop: Know how to use the printer's emergency stop function
- Ventilation: Ensure adequate ventilation for plastic welding fumes
- Temperature safety: Be cautious around heated components
Multi-Pass Welding System
The welder implements an intelligent multi-pass system that allows plastic to cool between welding operations:
How It Works
- Initial Pass: Places dots with wide spacing (
initial_dot_spacing) - Cooling Period: Waits for
cooling_time_between_passesto let plastic cool - Subsequent Passes: Progressively fills in between existing dots
- Final Density: Achieves the desired
dot_spacingthrough multiple passes
Benefits
- Prevents Overheating: Allows plastic to cool between passes
- Better Quality: Reduces warping and material degradation
- Consistent Results: Each dot gets proper cooling time
- Automatic Calculation: Number of passes calculated from spacing ratio
Configuration Example
[normal_welds]
dot_spacing = 2.0 # Final 2mm spacing
initial_dot_spacing = 8.0 # Start with 8mm spacing
cooling_time_between_passes = 2.0 # 2 seconds between passes
This creates 3 passes: 8mm → 4mm → 2mm spacing with 2-second cooling between each pass.
Animation Output
The script generates an enhanced animated SVG file showing:
- Realistic nozzle rings that flip into existence at each weld point
- Temperature-based visualization with color-coded heat zones
- Overlapping ring patterns showing actual nozzle contact areas
- Pause messages displayed with yellow background and red text
- Timing information displayed in header (duration, intervals, pause time)
- Enhanced legend with nozzle ring examples and dimensions
- Endless loop animation with realistic timing
Animation Features
- Realistic nozzle visualization: Shows outer diameter (contact area) and inner diameter (heated zone)
- Flip animation: Nozzle rings scale and flip into existence with realistic physics
- Temperature visualization: Orange/red rings for normal welds, blue rings for light welds
- Heat effects: Subtle glow animation around weld points
- Configurable nozzle dimensions: Set actual nozzle OD/ID in configuration
- 10x scale factor: Nozzle dimensions scaled up for visibility in animation
- Pause message display: Stop points show custom messages for specified
pause_time - Smart duration calculation: Automatically calculates total time based on weld count and pauses
Validation Features
MicroWeldr automatically validates all inputs and outputs:
Input SVG Validation
- Structure Check: Verifies proper SVG root element and namespace
- Attribute Validation: Checks for required width/height attributes
- Syntax Validation: Uses lxml for robust XML syntax checking
G-code Output Validation
- Command Verification: Validates G-code syntax and structure
- Sequence Checking: Ensures proper initialization, homing, and temperature commands
- Movement Validation: Confirms presence of required movement commands
- Safety Verification: Checks for proper heating/cooling sequences
Animation SVG Validation
- Element Counting: Verifies presence of animation and circle elements
- Structure Validation: Ensures proper SVG animation syntax
- Content Verification: Confirms animation elements match expected output
All validation is non-blocking - the script continues processing even if validation fails, but provides detailed feedback about any issues found.
Sample Files
The repository includes several example files:
example.svg: Basic demonstration of all weld types and pause messagespause_examples.svg: Comprehensive examples of different pause message attributescomprehensive_sample.svg: Full-featured sample demonstrating all capabilities including:- Multiple normal weld shapes (lines, rectangles, circles, complex paths)
- Light weld patterns with curved paths
- Stop points with various message attributes
- Processing order indicators
- Complete workflow demonstration
Example Workflow
- Create an SVG file with your welding pattern (or use
comprehensive_sample.svg) - Use black paths for normal welds, blue for light welds
- Add red elements where you need manual stops with custom messages
- Run the script:
python svg_to_gcode_welder.py pattern.svg - Review validation output for any issues
- Load the generated G-code file on your Prusa Core One
- Insert plastic sheets when prompted
- Monitor the welding process and respond to custom pause messages
Safety Notes
- Always supervise the welding process
- Ensure proper ventilation when welding plastics
- Verify temperatures are appropriate for your plastic materials
- Test with small samples before full production runs
- The script includes safety pauses - use them to check progress
Troubleshooting
Common Issues
- SVG not parsing: Ensure SVG uses standard elements and attributes
- Wrong coordinates: Verify SVG units are in millimeters
- Missing weld points: Check dot spacing configuration
- Temperature issues: Adjust temperatures in config.toml for your materials
Debug Tips
- Check the generated animation SVG to verify path interpretation
- Use a G-code viewer to preview the toolpath
- Start with simple test patterns before complex designs
Running the Examples
For Installed Package
If you've installed microweldr as a package:
# Install the package
pip install microweldr
# Run examples (assuming you have the example files)
microweldr example.svg
microweldr example.svg --verbose
microweldr example.svg -o my_output.gcode
For Development/Source Code
If you're working with the source code:
# Setup (one-time)
python -m venv venv
source venv/bin/activate # macOS/Linux (venv\Scripts\activate on Windows)
pip install -e .
# Run examples (with venv activated)
microweldr examples/example.svg
microweldr examples/comprehensive_sample.svg
microweldr examples/example.svg --verbose
# Alternative methods
python -m microweldr.cli.main examples/example.svg
📖 For detailed development setup, see DEVELOPMENT.md
Example Files Included
examples/example.svg: Basic demonstration with normal welds, light welds, and stop pointsexamples/comprehensive_sample.svg: Full-featured demo showing all capabilitiesexamples/pause_examples.svg: Examples of different pause message formatsexamples/config.toml: Complete configuration file with all parameters
Expected Output
Each run generates:
- G-code file:
example.gcode- Ready to load on Prusa Core One - Animation file:
example_animation.svg- Visual preview of welding sequence - Console output: Processing details and validation results
Alternative Run Methods
# Using Python module (with virtual environment activated)
python -m microweldr.cli.main examples/example.svg
# With custom configuration
microweldr examples/example.svg -c my_config.toml
License
This project is open source. Use at your own risk and ensure proper safety precautions when operating 3D printing equipment.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file microweldr-2.1.0.tar.gz.
File metadata
- Download URL: microweldr-2.1.0.tar.gz
- Upload date:
- Size: 54.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
53461b7748516ff5ca3ba6f35fad7e44609070ab9243aaabf89eda3e86c2061d
|
|
| MD5 |
694a24ba58f089672a3707449ee90b4c
|
|
| BLAKE2b-256 |
12c0dc6274db4d468a7b27aadb2a6904af9464d751c4af8f8ff0e6f6e850ca6d
|
File details
Details for the file microweldr-2.1.0-py3-none-any.whl.
File metadata
- Download URL: microweldr-2.1.0-py3-none-any.whl
- Upload date:
- Size: 54.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2916929c464cfc242001a6de8a43228cca31e518e1db4e7eb043e0485b48732c
|
|
| MD5 |
5812f499d4981f32269e40f91fd3b481
|
|
| BLAKE2b-256 |
d0d637da10759a3b5e1a75364758dc4f16b8d5a1e763791fbfe655b11257615d
|