Skip to content
This repository was archived by the owner on Dec 10, 2024. It is now read-only.

v4.0.1

Choose a tag to compare

@iopapamanoglou iopapamanoglou released this 03 Sep 12:57
· 75 commits to main since this release

This is a re-release of v4.0.0, but from atopile/faebryk.

Highlights

  • Introduction of fab ll: New way of making designs and library modules in faebryk
  • Direct graph synthesis (graph is at all times accessible)
  • Unit support
  • F can be used in library now
class App(Module):
    led: F.PoweredLED
    battery: F.Battery

    def __preinit__(self) -> None:
        self.led.power.connect(self.battery.power)

        # Parametrize
        self.led.led.color.merge(F.LED.Color.YELLOW)
        self.led.led.brightness.merge(
            TypicalLuminousIntensity.APPLICATION_LED_INDICATOR_INSIDE.value.value
        )