fcad_pcb
fcad_pcb copied to clipboard
Castellated holes import
I created castellated holes by putting them at the edge of the PCB. When I import the PCB by pcb.make(...)
, the entire holes are imported at the edge instead of semi-cut holes as shown in the KiCad's internal 3D viewer.
Is there an already made feature that I do not know or it is still awaiting to be implemented?
Could you please provide a sample file with this feature?
Just added this feature. It's experimental at the moment. You're welcome to test it. The turn it on, pass in castellated=True
when load your pcb file, as shown below,
pcb = kicad.KicadFcad('/path/to/some.kicad_pcb', castellated=True)
After which any of the pcb.makeXXX()
functions shall produce castellated coppers.