Skip to main content

Board pinout diagram generator (with ltchiptool plugin GUI editor)

Project description

boardgen

Automagically generate beautiful Adafruit-like pinout diagrams for IoT boards ✨

Introduction

Boardgen allows to generate vector images, containing pinout diagrams for any IoT module. The images are inspired by Adafruit's great, well-recognized pinouts, and look like this one:

demo

It is a Python tool that uses simple JSON files for defining shapes, colors, pin layouts and numbers. These files are then processed and drawn onto a .SVG image.

Defining new boards is fully done in JSON and doesn't require Python programming, nor SVG knowledge.

Usage

Boardgen can be used as a library (see cli.py for an example) or with its built-in CLI program.

  1. pip install boardgen
  2. boardgen --help
  3. boardgen list boards to get a list of available boards
  4. boardgen draw <board name> to produce an image file in your working directory
Usage: boardgen [OPTIONS] COMMAND [ARGS]...

  boardgen CLI v0.1.0

Options:
  --boards TEXT     Custom boards directories
  --shapes TEXT     Custom shapes directories
  --templates TEXT  Custom templates directories
  --presets TEXT    Custom presets .json
  --roles TEXT      Custom roles .json
  --flash TEXT      Custom flash regions .json
  --help            Show this message and exit.

Commands:
  draw  Draw board diagrams
  list  List boards/templates/etc

Board definitions

Writing board definitions means putting a .JSON file to a directory and specifying this directory using the --boards option.

Boardgen is meant to be used with PlatformIO-style board definition files. An example of such a board can be found here (libretiny/boards/wr3.json).

Note that the board manifest uses "_base" definitions. These are merged recursively with the manifest, and this result is expected to produce a complete file.

Apart from PlatformIO default variables (such as build, debug, upload or name, url and vendor) the board definition contains a Pcb object.

Templates

A Template is a JSON object containing lists of shapes for each side of a PCB. Additionally, it contains a mapping of pin names to shape IDs to allow automatic alignment of pinout labels.

{
	"name": "demo-template",
	"title": "Demo template",
	"width": 10,
	"height": 20,
	"front": [
		{"info": "List of front side shapes goes here"},
		{
			"comment": "this is a sample rectangle",
			"id": "shape1",
			"type": "rect",
			"pos": "0,0",
			"size": "10,20",
			"fill": {"color": "black"}
		}
	],
	"back": [],
	"pads": {
		"1": "demo-template.front.shape1",
		"2": "demo-template.front.shape2",
		"3": "demo-template.front.shape3",
		"4": "demo-template.front.shape4",
	}
}

Shapes

A shape JSON file is an array of multiple shape objects. Including shape JSON files is possible. For example, to include my-shape.json:

{
	"name": "my-shape",
	"id": "id-of-my-shape",
	"pos": "5,10"
}

Each shape is a JSON object, which has a common set of attributes:

  • pos - REQUIRED: defines the anchor of a shape (in milimeters)
  • preset (or a presets array) - used to merge the shape object with a preset object (see "boardgen list presets")
  • id - used to refer to the shape's anchor from the pads mapping
  • vars - mapping of variables for ${VAR} substitution, optional

Rectangles

  • type: must be "rect"
  • pos: REQUIRED: rectangle top-left corner position
  • size: REQUIRED: rectangle size ("width,height") in milimeters
  • fill: see FillStyle below
  • stroke: see FillStyle below
  • rx: X corner radius
  • ry: Y corner radius

Circles

  • type: must be "circle"
  • pos: REQUIRED: circle center position
  • d: diameter (milimeters), OR:
  • r: radius (milimeters) - one of d and r is required
  • fill: see FillStyle below
  • stroke: see FillStyle below

Text

  • type: must be "text"
  • pos: REQUIRED: text center position
  • font_size: REQUIRED: font size
  • text: REQUIRED: string to draw
  • fill: see FillStyle below

FillStyle

  • color: string (color name, HTML hex), fill/stroke color
  • lgrad: linear gradient as a list ["x,y", "color", "x,y", "color"]
    • 1st stop position
    • 1st stop color
    • 2nd stop position
    • 2nd stop color
  • width: stroke width (not used for "fill")

Support

As this project is just a quick solution that'll be used in LibreTiny for generating pinouts, it's not really well documented. If you find this project interesting and need any help using it, feel free to open an issue and I'll try to provide more examples and info on how to use it.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

boardgen-0.12.0.tar.gz (46.5 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

boardgen-0.12.0-py3-none-any.whl (68.4 kB view details)

Uploaded Python 3

File details

Details for the file boardgen-0.12.0.tar.gz.

File metadata

  • Download URL: boardgen-0.12.0.tar.gz
  • Upload date:
  • Size: 46.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/2.3.1 CPython/3.10.19 Linux/6.11.0-1018-azure

File hashes

Hashes for boardgen-0.12.0.tar.gz
Algorithm Hash digest
SHA256 faf9fe19c4ad69a1c812d82414f0e4be1f3663c37d12765ed124c309a5afc6cd
MD5 fd6c9692718dd50986f01c676ba2d3ce
BLAKE2b-256 cdbebb36ccf651db657b559a581affb505d97adc776727b4666c407fa095ab03

See more details on using hashes here.

File details

Details for the file boardgen-0.12.0-py3-none-any.whl.

File metadata

  • Download URL: boardgen-0.12.0-py3-none-any.whl
  • Upload date:
  • Size: 68.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/2.3.1 CPython/3.10.19 Linux/6.11.0-1018-azure

File hashes

Hashes for boardgen-0.12.0-py3-none-any.whl
Algorithm Hash digest
SHA256 eef969776424d63a2881dca3c4965762825993ced9df0b3cce4a5c3880daffbf
MD5 d0f0492cadeddcfb461c70c072aa7ca5
BLAKE2b-256 6824ffd28e1e51ab0cd26a5cd57d743af606d824fb33a52a04725cc914fbae7e

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page