Dave Vandenbout
Dave Vandenbout
`fp_libs` is a `dict` that holds the full path to each file containing footprints. The key for each dictionary entry should be the nickname for the library file. I think...
I'm really not sure what's happening here. The code isn't exactly like what you linked to because it uses `sp.node()` instead of just `node()`. I assume you did something like...
This is to be expected since the routing done by `generate_schematic` is very rudimentary. I'm working through @shanemmattner's code and extending it (in the `gensch` branch), but I don't expect...
kipart currently only works with version 5 symbol libraries. What's your current solution to using it for version 6? Just import it using KiCad6? (Or are you not using version...
You can try the updated kipart using this command: ```bash pip install git+https://github.com/devbisme/kipart ``` Let me know if there are any problems. Then I can upload it to PyPi.
I updated `kilib2csv` so it can handle KiCad V6 symbol libraries. You can install it like this: ```python pip install git+https://github.com/devbisme/KiPart@v6 ``` Unfortunately, this version of KiPart only works with...
I updated the `v6` branch to remove the dependency on `kiutils`. Now it should work with any version of Python.
In my limited experience with PyParsing, I've found it really slow. Also, the parsing statements can have some non-obvious interactions and can be really hard to follow after you haven't...
Thanks for the update!
I've re-run the code listing using the `development` branch of skidl and there were no errors and the netlist had the correct footprints. It's not clear how you are running...