diff options
author | Trygve Laugstøl <trygvis@inamo.no> | 2019-05-29 18:58:14 +0200 |
---|---|---|
committer | Trygve Laugstøl <trygvis@inamo.no> | 2019-05-29 18:58:14 +0200 |
commit | ee2b510b37d2832a67bb13cf27cbe520adff6b71 (patch) | |
tree | bb693c627fbe999b48bf301809222c3f039cca41 /src/ee/xml | |
parent | 75e5bbd0679f4212ad6e9a402c9c68b7b5f40cae (diff) | |
download | ee-python-ee2b510b37d2832a67bb13cf27cbe520adff6b71.tar.gz ee-python-ee2b510b37d2832a67bb13cf27cbe520adff6b71.tar.bz2 ee-python-ee2b510b37d2832a67bb13cf27cbe520adff6b71.tar.xz ee-python-ee2b510b37d2832a67bb13cf27cbe520adff6b71.zip |
kicad.dl: Classifying net-ties and test points as such.
pn-part-search-list: Better value-based searches. Better filtering of
irrelevant parts.
Diffstat (limited to 'src/ee/xml')
-rw-r--r-- | src/ee/xml/uris.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/ee/xml/uris.py b/src/ee/xml/uris.py index 355df83..d2e3f5b 100644 --- a/src/ee/xml/uris.py +++ b/src/ee/xml/uris.py @@ -9,6 +9,9 @@ INDUCTOR = "http://purl.org/ee/part-type#inductor" CRYSTAL = "http://purl.org/ee/part-type#inductor" TRANSISTOR = "http://purl.org/ee/part-type#transistor" +NET_TIE = "http://purl.org/ee/part-type#net-tie" +TEST_POINT = "http://purl.org/ee/part-type#test-point" + _DIGIKEY_FACT_KEY_PREFIX = "http://purl.org/ee/digikey-fact-key#" |