You have a fair number of problems. From the parts checking script (available on github) edited for brevity ![:slight_smile: :slight_smile:]()
(warnings deleted)
Both breadboard and schematic lack layerIds in the svg. The only thing this affects is export of the part as an svg (the part won’t show up).
Error 69: File
’svg.breadboard.125-seven-segment_60ac6a288b245897b2d6acdaaf1d3581_1_breadboard.svg.bak’
At line 17
Found a drawing element before a layerId (or no layerId)
Error 69: File
’svg.schematic.125-seven-segment_60ac6a288b245897b2d6acdaaf1d3581_1_schematic.svg.bak’
At line 12
Found a drawing element before a layerId (or no layerId)
…
Error 18: File
’part.125-seven-segment_edd752848691e8bf069be053932fe577_4.fzp.bak’
Connector connector4terminal is in the fzp file but not the svg file. (typo?)
svg svg.schematic.125-seven-segment_60ac6a288b245897b2d6acdaaf1d3581_1_schematic.svg.bak
This lack is what is causing the lines in schematic in this sketch to terminate in the middle of the pin instead of the end as they should.
led_test.fzz (20.5 KB)
then pcb is mostly broken. It lacks a part outline for the part on the silkscreen (which the script doesn’t notice but I do) and non of the pads have holes making the pcb useless.
Error 65: File
’svg.pcb.125-seven-segment_60ac6a288b245897b2d6acdaaf1d3581_1_pcb.svg.bak’
At line 50
Connector connector0pad is an ellipse not a circle, (gerber generation will break.)
Error 74: File
’svg.pcb.125-seven-segment_60ac6a288b245897b2d6acdaaf1d3581_1_pcb.svg.bak’
At line 50
Connector connector0pad has no radius no hole will be generated
You likely have been bit by a translate in pcb layer. There is one message for each of the 10 pads and indeed exporting gerbers results in no holes in the pads.
Peter