Skip to main content

Polymorphic Blocks

Python

subcircuit generator library based hardware description language for circuit board design

Polymorphic Blocks is an open-source, Python-based hardware description language (HDL) for schematic-equivalent design of printed circuit boards (PCBs). Its library of components provide a high-level abstraction for circuit design while subcircuit generators automate the calculation of fine details. Abstract component interfaces enable these libraries to be general across applications and component vendors.

Generates stable KiCad netlists to be routed in the KiCad PCB Editor.

Built Boards

Many boards have been built with this system, from a mechanical keyboard macropad, to battery-powered IoT devices, to a USB source-measure unit. Check out the examples page!

Example: from HDL to Keyboard

Overall flow: write HDL -> generate netlist -> import into KiCad PCB editor -> place and route (optionally iterating with HDL) -> export BoM and Gerbers -> optionally generate JLC PCBA data

A simplified version of the getting started tutorial is this snippet for a 3x4 mechanical keyboard:

from edg import *

class Keyboard(SimpleBoardTop):
    def contents(self) -> None:
        super().contents()

        self.usb = self.Block(UsbCReceptacle())
        self.reg = self.Block(LinearRegulator(3.3 * Volt(tol=0.05)))
        self.connect(self.usb.gnd, self.reg.gnd)
        self.connect(self.usb.pwr, self.reg.pwr_in)

        with self.implicit_connect(
            ImplicitConnect(self.reg.pwr_out, [Power]),
            ImplicitConnect(self.reg.gnd, [Common]),
        ) as imp:
            self.mcu = imp.Block(IoController())
            self.connect(self.usb.usb, self.mcu.usb.request())

            self.sw = self.Block(SwitchMatrix(ncols=3, nrows=4))
            self.connect(self.sw.cols, self.mcu.gpio.request_vector("sw_col"))
            self.connect(self.sw.rows, self.mcu.gpio.request_vector("sw_row"))

            self.enc = imp.Block(DigitalRotaryEncoder())
            self.connect(self.enc.a, self.mcu.gpio.request("enc_a"))
            self.connect(self.enc.b, self.mcu.gpio.request("enc_b"))
            self.connect(self.enc.with_mixin(DigitalRotaryEncoderSwitch()).sw, self.mcu.gpio.request("enc_sw"))

    def refinements(self) -> Refinements:
        return super().refinements() + Refinements(
            class_refinements=[
                (IoController, Ch32v203),
                (Switch, KailhSocket),
            ])

compile_board_inplace(Keyboard)

The system:

  • provides a library of subcircuit generators, like switch matrices and USB-C ports, that automatically include supporting components like decoupling capacitors and pullup resistors
  • automatically selects generic parts like resistors and diodes against builtin parts tables
  • performs basic electrical checks on the design, including voltage and current limits, automating some common datasheet parameter checking
  • runs fully locally

This generates:

  • a netlist that can be imported into the KiCad PCB editor
    • ... including hierarchical data, allowing subcircuit replication / channelization
    • ... and have stable tstamps, allowing incremental updates to in-progress board layouts
  • a JLCPCB-compatible BoM
    • including a postprocessing script to shift part rotations from KiCad-generated component placements for JLC PCBA
  • a JSON representation of the full design, including connectivity and solved circuit values, to integrate with custom / third-party tooling

macropad.webp

Advanced capabilities include:

  • multi-board support including connector-pair management
  • cross-hierarchy packing of multi-pack devices like dual op-amps and quad resistors
  • standard abstract component interfaces, allowing for custom implementations of parts like resistors (including from a parts table), and microcontrollers
  • full support for user component definition; very little is hard-coded into the infrastructure

Getting Started

pip install edg

On first run, the system will automatically download a compatible Java runtime for the core compiler.

Then, work through building a mechanical keyboard (including subcircuit layout replication) in the getting started tutorial.

Also check out the reference documentation for a concise list of capabilities.

Some documentation is available for library parts construction. Be warned, this is more complex and less polished. See the library block definition tutorial using KiCad schematic import and the library construction reference.

Compared to Hierarchical Schematics

The main goal of this HDL is to enable the creation of general subcircuit libraries that can be reused across many applications.

While graphical schematic tools support hierarchical sheets, direct re-use is limited because the sheets encode a lot of per-design information, like a specific resistor values or footprints. Different users may have different requirements (e.g., different resistor values for a LED based on its input voltage, or preference for through-hole vs. surface-mount components).

This HDL addresses those limitations with two mechanisms:

  • Generators allow the implementation of the subcircuit to depend on high-level parameters. A LED circuit could automatically size its resistor based on the input voltage.
  • Abstract parts allow the subcircuit to use generic parts with generic interfaces, which many parts can implement. An abstract resistor interface could be implemented by through-hole and surface-mount resistors, enabling a generic LED circuit and deferring the choice. The top-level designer can then specify refinements to make the specific choice of parts.

Both of these combined also present a higher level of abstraction for the board designer, more at the system architecture level-of-design than schematics. We suspect this will also make it easier for novices to design boards, reducing the knowledge barrier to entry.

Graphical Tooling

The fundamental design structure is the hierarchical block diagram, and we expect graphical tooling can layer cleanly on top of the HDL core. Our current focus is on the HDL core and parts libraries, but we are open to collaborations with those interested in building graphical tooling. We suspect this may be particularly useful for novice users.

We built a proof-of-concept mixed textual / graphical IDE plugin for IntelliJ / PyCharm. It has some nifty concepts (including a block diagram visualizer and design space sweep) but is rough around the edges and only sees basic maintenance. It could be a good source for ideas for community developers.

Additional Notes

Project Status

This is functional has been used to produce a wide variety of boards over the years. While the core is reasonably stable, as a pre-v1.0-release there are no formal guarantees of API stability. In practice, deprecation shims are / will be maintained for common features if APIs change.

This started as an academic research project and continues to be developed as a personal project post-graduation, including for designing boards for fun.

(Some) Dragons Be Ahead

Many functional boards have been built with this system and most of the library parts have been physically tested (some across many designs), but there may still be bugs and edge cases. You are recommended to sanity check generated designs during layout.

Be prepared for things to be rough around the edges. The error messages in particular are not great and need work.

Building boards with the included libraries should be relatively straightforward, but building custom library parts is a more complex process.

Scope

The current libraries best support intermediate-level (and simpler) PCB designs. This includes circuits with discrete microcontrollers, microcontroller modules (like ESP32s), and socketed dev boards. Libraries include common subcircuits like switch matrices, digitally attached peripherals like I2C sensors, voltage converters, and some analog signal conditioning circuits. Check out the subcircuits library folder and parts library folder.

There is no prescribed architecture and microcontrollers are not required.

ESPHome boards are a great fit.

Designs that do not decompose neatly(ish) into subcircuits blocks are a poor fit.

There is no support for high-speed digital design (like DDR memories). There are some experimental RF subcircuits.

The electrical checks are not a design assurance tool and only automate some of the most common datasheet checks. More advanced parameters, especially performance characteristics not related to maximum ratings, are currently out of scope of the electronics model.

Parameter Engine

This system has a concept of parameters (variables, think voltages and currents) that can be attached to blocks and propagate through ports. This is limited to directed assignments, with the goal of deterministic, predictable compilation.

Assertions are supported on parameters to enforce electrical correctness checks.

Solving may happen within a single block with arbitrary Python code (for example, find the best set of E12 resistor values to implement a divider), but not across multiple blocks. Search involving multiple blocks must be handled by the block exposing tuning knobs and the user turning those knobs with recompilation.

Parts Data

Most passive parts / discretes are selected from a 2022 JLCPCB parts table (included in this repository). JLC no longer makes parts tables publicly available.

This parts table still works well and boards have been built using this table as recently as 2026. Some basic parts have drifted and some parts may be no longer stocked.

Contributing

We take pull requests and would love to see contributions and collaborations!

See CONTRIBUTING.md for details.

Papers

This started as an academic project, though with the goal of broader adoption. Check out our papers (all open-access), which have more details:

Misc

  • What is EDG?: Embedded Device Generation (or more generally Electronic Device Generation) was a prior version of this project that focused on algorithms and models for embedded device synthesis, though it lacked a user-facing component. This project is a continuation of that work focusing on an end-to-end system, and for most of its development cycle has been called edg. But, for the purposes of writing research papers, naming collisions are confusing and bad, and we chose to keep the repo and paper name consistent.

Download files

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

Source Distribution

edg-0.5.1.tar.gz (18.6 MB view details)

Uploaded Source

Built Distribution

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

edg-0.5.1-py3-none-any.whl (19.0 MB view details)

Uploaded Python 3

File details

Details for the file edg-0.5.1.tar.gz.

File metadata

  • Download URL: edg-0.5.1.tar.gz
  • Upload date:
  • Size: 18.6 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for edg-0.5.1.tar.gz
Algorithm Hash digest
SHA256 b3529214fe43f294281c0e21bba4676579a19a411f19fa2ec7f6bd9eed1c4019
MD5 e2bc5275ee30e6c614f26747bdec76fd
BLAKE2b-256 f9190a5e51057447ad38d734e97a62eeba119be415f6b667fdb5b5c76df553e1

See more details on using hashes here.

Provenance

The following attestation bundles were made for edg-0.5.1.tar.gz:

Publisher: release.yml on BerkeleyHCI/PolymorphicBlocks

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file edg-0.5.1-py3-none-any.whl.

File metadata

  • Download URL: edg-0.5.1-py3-none-any.whl
  • Upload date:
  • Size: 19.0 MB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for edg-0.5.1-py3-none-any.whl
Algorithm Hash digest
SHA256 baee2edcf636d946e3ef5f085244ca7085e63b5c9bc99396366f86cb8172ccd1
MD5 f20236d46da9be26274f59e115c7d05a
BLAKE2b-256 7c6fe9f56907944ef469c06fa1dbbe66adba77d2cb540c101c83e489e6dfbf27

See more details on using hashes here.

Provenance

The following attestation bundles were made for edg-0.5.1-py3-none-any.whl:

Publisher: release.yml on BerkeleyHCI/PolymorphicBlocks

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Release history Release notifications | RSS feed

0.5.2

2 files

This release

0.5.1 This release

2 files

0.5.0

2 files

0.2.0

2 files

0.0.1

2 files

0.0.0

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page