-
Notifications
You must be signed in to change notification settings - Fork 27
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Missing "lib_name" field in schematicSymbols #46
Comments
Can't find this token in the KiCad documentation for schematic symbols .. What KiCad version your file belongs to? In KiCad 6, the lib name might be insoide of "lib_id", we are currently discussing similar changes for the Library Symbol class in #41 Can you provide a full example of what you are trying to parse? |
SWD_via_USB-C.zip |
It wouldn't be the first time that a token is missing in the KiCad documentation. I'm going to take a closer look on this later this week, thanks for sharing the example. |
Description: The optional field "lib_name" is missing in schematicSymbols and is used to create alternative symbols directly in the schematic. As a result, components modified in the schematic are not displayed.
Example from schematic file: (symbol (lib_id "") (lib_name "USBLC6-4SC6_1") (at 43.18 135.89 0) (unit 1)
Solution: The field can be added by adding the following code to the class SchematicSymbol() in schitems.py:
The text was updated successfully, but these errors were encountered: