Alexandru Stan
Alexandru Stan
I wanted to draw a page of a bigger schematic that would focus only on the SD card interface. Something like this:  Usually you have...
I really want to label my chips beyond the reference designator. Note (which should prevent merging this as is perhaps): If the value is empty now, you'll get this blank...
I've been working on some complex importing from kicad. The importer is not finished yet, so I have some malformed schematics (ex: stuff isn't all the way connected). I came...
I keep seeing connections that are redundant. Note a lot of the VCCs, they connect one way, but then they go around the part and connect from the other side...
```diff index d42fef2..2928e40 100755 --- a/examples/servo_micro.py +++ b/examples/servo_micro.py @@ -576,7 +576,7 @@ pp3300
Thanks Alan for finding this! For the following test file: ```python from pcbdl import * pp3300 = Net("PP3300") led = LED() pp3300
Nets should be able to get labeled with the net name. If a net doesn't go anywhere but one pin, it should make a little stub, long enough to fit...
Sometimes one wants to write something like this near an MCU: ```python saved_net_variable = Net("MORE_HERE") ^ R("100") ^ Net("NEARBY_PIN")
I don't really want people to have to worry about refdeses inside the code. Part initializations should not be littered with refdes="Uwhatever". Right now Context.autoname, beyond numbering parts automatically, also...