### LibrePCB Library Definition - AVX Source: https://context7.com/librepcb-libraries/avx.lplib/llms.txt Defines the metadata for the AVX LibrePCB library, including name, description, author, version, and dependencies. This file is crucial for LibrePCB to recognize and load the library. ```lisp (librepcb_library 8e44980d-75f7-4a1a-92f2-9823d0e181f1 (name "AVX") (description "Electronic components (unofficial).") (keywords "avx") (author "LibrePCB") (version "0.2") (created 2019-12-10T09:42:19Z) (deprecated false) (url "https://github.com/LibrePCB-Libraries/AVX.lplib") (dependency a9ddf0c6-9b1c-4730-b300-01b4f192ad40) (manufacturer "Kyocera AVX") ) ``` -------------------------------- ### Define Component with UUID Identification (LibrePCB Lisp) Source: https://context7.com/librepcb-libraries/avx.lplib/llms.txt This LibrePCB Lisp snippet shows the definition of a device using UUIDs for identification. It includes the device's UUID, name, category, component, package, and pads with associated signal UUIDs, demonstrating the library's internal referencing system. ```lisp (librepcb_device 86ae5c09-9885-436b-b8cf-361de12f29bf (name "AVX F93xxxxxxAx") (category c011cc6b-b762-498e-8494-d1994f3043cf) (component c54375c5-7149-4ded-95c5-7462f7301ee7) (package df67186a-b6cc-4caf-96c6-31aa9b4ed404) (pad 32e149f5-eb6b-4170-bd37-79d9c689cb1b (signal e010ecbb-6210-4da3-9270-ebd58656dbf0)) (pad 98a05a6d-43eb-4e3f-8467-1ae656155429 (signal af3ffca8-0085-4edb-a775-fcb759f63411)) ) ``` -------------------------------- ### Define Tolerance Variations for Capacitor Parts (LibrePCB Lisp) Source: https://context7.com/librepcb-libraries/avx.lplib/llms.txt This code illustrates defining capacitor parts with different tolerance grades (K for ±10% and M for ±20%) in LibrePCB. It shows two separate part definitions for the same capacitance and voltage rating but differing tolerance values. ```lisp (part "F930G107KBA" (manufacturer "Kyocera AVX") (attribute "CAPACITANCE" (type capacitance) (unit microfarad) (value "100")) (attribute "RATED_VOLTAGE" (type voltage) (unit volt) (value "4")) (attribute "TOLERANCE" (type string) (unit none) (value "±10%")) ) (part "F930G107MBA" (manufacturer "Kyocera AVX") (attribute "CAPACITANCE" (type capacitance) (unit microfarad) (value "100")) (attribute "RATED_VOLTAGE" (type voltage) (unit volt) (value "4")) (attribute "TOLERANCE" (type string) (unit none) (value "±20%")) ) ``` -------------------------------- ### Define Component Electrical Characteristics (LibrePCB Lisp) Source: https://context7.com/librepcb-libraries/avx.lplib/llms.txt This snippet demonstrates how to define typed attributes for electrical characteristics of a component part in LibrePCB. It shows the structure for specifying capacitance, voltage, and tolerance for a specific capacitor part. ```lisp (part "F931C476KCC" (manufacturer "Kyocera AVX") (attribute "CAPACITANCE" (type capacitance) (unit microfarad) (value "47")) (attribute "RATED_VOLTAGE" (type voltage) (unit volt) (value "16")) (attribute "TOLERANCE" (type string) (unit none) (value "±10%")) ) ``` -------------------------------- ### LibrePCB Device Definition - AVX F93 Series A-Case Capacitor Source: https://context7.com/librepcb-libraries/avx.lplib/llms.txt Defines the AVX F93 Series Tantalum Capacitor in the A-case (EIA 3216-18) for LibrePCB. It specifies the component's name, description, keywords, author, version, category, component, package, pads, and various part variations with their electrical attributes. ```lisp (librepcb_device 86ae5c09-9885-436b-b8cf-361de12f29bf (name "AVX F93xxxxxxAx") (description "AVX F93 Series Resin-Molded Tantalum J-Lead Capacitor, A case (EIA 3216-18).\n\nDatasheet: http://datasheets.avx.com/F93.pdf") (keywords "avx,f93,capacitor,tantalum,avx a") (author "Danilo Bargen") (version "0.2") (created 2019-11-18T21:39:19Z) (deprecated false) (generated_by "") (category c011cc6b-b762-498e-8494-d1994f3043cf) (component c54375c5-7149-4ded-95c5-7462f7301ee7) (package df67186a-b6cc-4caf-96c6-31aa9b4ed404) (pad 32e149f5-eb6b-4170-bd37-79d9c689cb1b (signal e010ecbb-6210-4da3-9270-ebd58656dbf0)) (pad 98a05a6d-43eb-4e3f-8467-1ae656155429 (signal af3ffca8-0085-4edb-a775-fcb759f63411)) (part "F930G226KAA" (manufacturer "Kyocera AVX") (attribute "CAPACITANCE" (type capacitance) (unit microfarad) (value "22")) (attribute "RATED_VOLTAGE" (type voltage) (unit volt) (value "4")) (attribute "TOLERANCE" (type string) (unit none) (value "±10%")) ) (part "F930J476KAA" (manufacturer "Kyocera AVX") (attribute "CAPACITANCE" (type capacitance) (unit microfarad) (value "47")) (attribute "RATED_VOLTAGE" (type voltage) (unit volt) (value "6.3")) (attribute "TOLERANCE" (type string) (unit none) (value "±10%")) ) (part "F931A106KAA" (manufacturer "Kyocera AVX") (attribute "CAPACITANCE" (type capacitance) (unit microfarad) (value "10")) (attribute "RATED_VOLTAGE" (type voltage) (unit volt) (value "10")) (attribute "TOLERANCE" (type string) (unit none) (value "±10%")) ) ) ``` -------------------------------- ### Define AVX F93 Series Tantalum Capacitor (LibrePCB Lisp) Source: https://context7.com/librepcb-libraries/avx.lplib/llms.txt This code defines a LibrePCB device for the AVX F93 Series Tantalum Capacitor in the C-Case (EIA 6032-27) form factor. It includes multiple part definitions with varying capacitance, voltage, and tolerance. It specifies attributes, pads, and links to datasheets, utilizing UUIDs for unique identification. ```lisp (librepcb_device d00fa79e-2e93-4f2c-b160-24a1f7cf8166 (name "AVX F93xxxxxxCx") (description "AVX F93 Series Resin-Molded Tantalum J-Lead Capacitor, C case (EIA 6032-27).\n\nDatasheet: http://datasheets.avx.com/F93.pdf") (keywords "avx,f93,capacitor,tantalum,avx c") (author "Danilo Bargen") (version "0.2") (created 2019-11-22T22:54:02Z) (deprecated false) (generated_by "") (category c011cc6b-b762-498e-8494-d1994f3043cf) (component c54375c5-7149-4ded-95c5-7462f7301ee7) (package 8f98b161-9173-434b-aa8d-324d93aac96b) (pad 1173978c-6296-4636-8f6f-d613db2359bf (signal af3ffca8-0085-4edb-a775-fcb759f63411)) (pad 96b6042a-96f0-4ac9-8e8f-e8ddafc2eace (signal e010ecbb-6210-4da3-9270-ebd58656dbf0)) (part "F930G227KCC" (manufacturer "Kyocera AVX") (attribute "CAPACITANCE" (type capacitance) (unit microfarad) (value "220")) (attribute "RATED_VOLTAGE" (type voltage) (unit volt) (value "4")) (attribute "TOLERANCE" (type string) (unit none) (value "±10%")) ) (part "F931C107KCC" (manufacturer "Kyocera AVX") (attribute "CAPACITANCE" (type capacitance) (unit microfarad) (value "100")) (attribute "RATED_VOLTAGE" (type voltage) (unit volt) (value "16")) (attribute "TOLERANCE" (type string) (unit none) (value "±10%")) ) (part "F931V106KCC" (manufacturer "Kyocera AVX") (attribute "CAPACITANCE" (type capacitance) (unit microfarad) (value "10")) (attribute "RATED_VOLTAGE" (type voltage) (unit volt) (value "35")) (attribute "TOLERANCE" (type string) (unit none) (value "±10%")) ) ) ``` -------------------------------- ### LibrePCB Device Definition - AVX F93 Series B-Case Capacitor Source: https://context7.com/librepcb-libraries/avx.lplib/llms.txt Defines the AVX F93 Series Tantalum Capacitor in the B-case (EIA 3528-21) for LibrePCB. It specifies the component's name, description, keywords, author, version, category, component, package, pads, and various part variations with their electrical attributes. ```lisp (librepcb_device 6a5b81e9-0b0c-4cdb-803a-da6a077c32e0 (name "AVX F93xxxxxxBx") (description "AVX F93 Series Resin-Molded Tantalum J-Lead Capacitor, B case (EIA 3528-21).\n\nDatasheet: http://datasheets.avx.com/F93.pdf") (keywords "avx,f93,capacitor,tantalum,avx b") (author "Danilo Bargen") (version "0.2") (created 2019-11-22T22:52:56Z) (deprecated false) (generated_by "") (category c011cc6b-b762-498e-8494-d1994f3043cf) (component c54375c5-7149-4ded-95c5-7462f7301ee7) (package c14a816f-152b-4e0a-8582-3df5441ac3a1) (pad 97e89176-19b9-4c62-b1cb-50df17a757ae (signal e010ecbb-6210-4da3-9270-ebd58656dbf0)) (pad ab1c529f-dd58-4cf4-b7bc-64be53daa145 (signal af3ffca8-0085-4edb-a775-fcb759f63411)) (part "F930G107KBA" (manufacturer "Kyocera AVX") (attribute "CAPACITANCE" (type capacitance) (unit microfarad) (value "100")) (attribute "RATED_VOLTAGE" (type voltage) (unit volt) (value "4")) (attribute "TOLERANCE" (type string) (unit none) (value "±10%")) ) (part "F931C106KBA" (manufacturer "Kyocera AVX") (attribute "CAPACITANCE" (type capacitance) (unit microfarad) (value "10")) (attribute "RATED_VOLTAGE" (type voltage) (unit volt) (value "16")) (attribute "TOLERANCE" (type string) (unit none) (value "±10%")) ) (part "F931V225KBA" (manufacturer "Kyocera AVX") (attribute "CAPACITANCE" (type capacitance) (unit microfarad) (value "2.2")) (attribute "RATED_VOLTAGE" (type voltage) (unit volt) (value "35")) (attribute "TOLERANCE" (type string) (unit none) (value "±10%")) ) ) ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.