Salvador E. Tropea
Salvador E. Tropea
Currently I have KiCad 8.0.1 docker images working, but they use unstable Linux. KiCad people didn't create packages for an Ubuntu compatible with the current Debian stable, don't know why...
Interesting, KiCad can generate GenCAD files, but I couldn't verify they are properly created. I was able to load the copper layers using OpenBoardView and a web based tool. But...
> Out of curiosity which tool was that? I don't remember, it was something like EasyEda or similar free web EDA. > I have a copy of a very old...
My 2 cents: @qu1ck why not using other mechanism for the config file? For the rest: I think the points here is that people using the command line can easily...
Hi @wiserst ! The problem is with the rectangle used for the edge cuts. As a workaround: replace it by 4 lines. BTW: Using fonts for your PCB makes it...
Hi @yaqwsx ! The problem is that KiCad 7.0.1 is generating polygon paths, in this case a rectangle: M 78.7300,28.0000 138.7300,28.0000 138.7300,96.0000 78.7300,96.0000 Z But it can be anything: M...
The following patch solves the problem: ```diff diff --git a/kibot/PcbDraw/plot.py b/kibot/PcbDraw/plot.py index 9dc45ba9..8df84469 100644 --- a/kibot/PcbDraw/plot.py +++ b/kibot/PcbDraw/plot.py @@ -408,7 +408,22 @@ def get_board_polygon(svg_elements: etree.Element) -> etree.Element: for group in...
Ugh! Patch for the patch: ```diff diff --git a/kibot/PcbDraw/plot.py b/kibot/PcbDraw/plot.py index 8df84469..23b7d31f 100644 --- a/kibot/PcbDraw/plot.py +++ b/kibot/PcbDraw/plot.py @@ -408,12 +408,12 @@ def get_board_polygon(svg_elements: etree.Element) -> etree.Element: for group in svg_elements:...
Hi @synesthesiam! did you have time to review it?