Kicad AutoRouter, ARRR. An autorouter kludge for KiCad 6 and Python 3. https://spacecruft.org/spacecruft/kararrr
 
 
 
Go to file
jebba 1ad0732337 kararrr screenshot 2022-01-15 01:24:57 -07:00
docs mv docs and examples 2022-01-15 00:40:47 -07:00
examples kararrr screenshot 2022-01-15 01:24:57 -07:00
.gitignore ignore tmp 2022-01-15 00:31:12 -07:00
LICENSE GPLv2 2022-01-15 00:29:15 -07:00
README.md kararrr screenshot 2022-01-15 01:24:57 -07:00
layer.py xrange is range in py3 2022-01-15 01:08:43 -07:00
mymath.py zip, not w/ itertools 2022-01-15 01:16:52 -07:00
pcb.py xrange is range in py3 2022-01-15 01:08:43 -07:00
requirements.txt dat not req! 2022-01-15 01:01:30 -07:00
router.py py3 print... 2022-01-15 01:18:14 -07:00
view.py xrange is range in py3 2022-01-15 01:08:43 -07:00
view_mpl.py xrange is range in py3 2022-01-15 01:08:43 -07:00

README.md

KARARRR

Kicad AutoRouter, ARRR <make pirate sound>.

An autorouter kludge for KiCad 6 and Python 3.

kararrr screenshot

Installation

HOWTO install.

git clone https://spacecruft.org/spacecruft/kararrr
cd kararrr

# Install python deps as you like, such as:
pip3 install --user --upgrade -r requirements.txt

Usage

HOWTO use.

# Process netlist with live view.
python3 pcb.py --v 1 examples/netlist.pcb | python3 view.py

# Process netlist, redirect to "anim" file.
python3 pcb.py --v 1 examples/netlist.pcb > anim

# View "anim" file using aggDraw.
python3 view.py anim

# View "anim" file using matplotlib
python3 view_mpl.py anim

Upstream

Based on Python-PCB for Python2 by Chris Hinsley, released under the GPLv2 license, source code available here:

Disclaimer

Alpha software, not for use.

This somewhat works standalone now in Python3, but not with KiCad.

Copyright

GPLv2 license.

Copyright (C) 2014, 2015, Chris Hinsley

Copyright (C) 2022, Jeff Moe