Merge kicad/master

This commit is contained in:
Oliver 2016-10-18 15:39:09 +11:00
commit 4859902b4a
33 changed files with 18261 additions and 15575 deletions

View file

@ -1,162 +0,0 @@
KiCad Library Convention
========================
Revision 1.0, November 15th 2015
Devised by Carl Poirier
With help from members of:
kicad-lib-committers@lists.launchpad.net
kicad-developers@lists.launchpad.net
1. General Rules
----------------
1.1. Writing uses C-style naming with the first letter of each word being capitalized. Ex: "Socket_Strip_Straight_2x06"
1.2. Every acronym has all of its letters capitalized.
1.3. Manufacturer name is capitalized as usual. Ex: NEC, Microchip
1.4. When dimensions are used in part name, they are in millimeters, decimal places separated by a dot, and unit is not mentioned. Ex: "C_Rect_L13_W4_P10"
1.5. Filename is the same as the part name.
1.6. The order of elements in names must be the same as the enumerations presented in this document.
1.7. Reference fields are prefilled with the reference designator of the part (IEEE 315-1975).
2. Symbol Library Names (.lib files)
------------------------------------
2.1. Manufacturer.
2.2. Category or family of parts. ex: "Capacitors", "Spartan6", etc.
3. General Rules for Symbols
----------------------------
3.1. Using a 100mils grid, pin ends and origin must lie on grid nodes (IEC-60617).
3.2. For black-box symbols, pins have a length of 100mils. Large pin numbers can be accommodated by incrementing the width in steps of 50mil.
3.3. Origin is placed in the middle of symbol.
3.4. Black-box components group pins logically, for example by function set, and ports in counter-clockwise position.
3.5. Whenever possible, inputs are on the left and outputs are on the right.
3.6. Field text uses a common size of 50mils.
3.7. The Value field is prefilled with the object name.
3.8. Description and keywords properties contain the relevant information.
4. Symbol Names
---------------
4.1. Name of symbol, may be shortened for common components or use reference designator of the symbol (IEEE 315-1975). ex: "Conn_4x2", "C", etc.
4.2. Manufacturer.
4.3. Part number, including extension for specific footprint. (JEDEC for common devices, ex: 1N4001)
4.4. Any modification to the original symbol, indicated by appending the reason. Ex: different pin ordering: "Transistor_PNP_Pinswap1"
4.5. Indication of quantity if symbol is an array. ex: resistor array: "Resistor_x8"
5. Footprint Library Names (.pretty repositories)
-------------------------------------------------
5.1. Part type (resistor, cap, etc), must be in plural form.
5.2. Package type (SOIC, SMD, etc).
5.3. Manufacturer.
5.4. Part number.
6. General Rules for Footprints
-------------------------------
6.1. Follows datasheet recommendation unless intentional variation, for example longer pads for hand soldering.
6.2. Pad 1 is on the left first, then at the top, except at the top for PLCC (IPC-7351).
6.3. For through-hole components, footprint anchor is set on pad 1.
6.4. For surface-mount devices, footprint anchor is placed in the middle with respect to device lead ends. (IPC-7351)
6.5. Silkscreen is not superposed to pads, its outline is completely visible after board assembly, uses 0.15mm line width and provides a reference mark for pin 1. (IPC-7351)
6.6. Courtyard line has a width 0.05mm. This line is placed so that its clearance is measured from its center to the edges of pads and body, and its position is rounded on a grid of 0.05mm.
6.7. Courtyard clearance is 0.25mm except for components smaller than 0603 at 0.15mm, connectors, SMD canned capacitors and crystals at 0.5mm and BGA at 1.0mm. (IPC-7251, IPC-7351B)
6.8. Cannot be duplicated to match a different pin ordering. This is to be handled in the symbol libraries.
6.9. Value and reference have a height of 1mm.
7. Names for footprints of Surface-Mount Devices (SMD)
------------------------------------------------------
7.1. Specific package feature first, not separated by anything. Ex: "TSSOP"
7.2. Package name, numbers separated from letters using hyphen. Ex: "SOT-89"
7.3. Variation of package, separated by another hyphen. Ex: SOT-23 with 5 pins: "SOT-23-5", Exposed pad under package: "QFP-48-1EP"
7.4. If it's a manufacturer-specific package, name can be appended, separated by an underscore.
7.5. Any modification to the original footprint, indicated by appending the reason. Ex: longer pads used to facilitate hand soldering of a QFN component: "QFN-52_HandSoldering"
8. Names for footprints of common devices, such as resistors, capacitors, etc
-----------------------------------------------------------------------------
8.1. Name of part, may be shortened for common components. ex: "Cap", "Socket_Strip", etc.
8.2. Dimension, which may include at its end the positioning. Ex: "5x7mm_Horiz", "1x02_Angled"
8.3. Pad distance, in the form of an RM rating.
8.4. Any modification to the original footprint, indicated by appending the reason.
9. Names for footprints of specific devices
-------------------------------------------
9.1. Name of part.
9.2. Part number. Ex: "Oscillator_SI570"
9.3. Any modification to the original footprint, indicated by appending the reason.
10. Footprint properties
------------------------
10.1. Footprint name must match its filename. (.kicad_mod files)
10.2. Doc property contains a full description of footprint.
10.3. Keywords are separated by spaces.
10.4. Value is filled with footprint name and is placed on the fabrication layer.
10.5. Attributes is set to the appropriate value, see tooltip for more information.
10.6. All other properties are left to default values. (Move and Place: Free; Auto Place: 0 and 0, Local Clearance Values: 0)
10.7. 3D Shape ".wrl" files are named the same as their footprint and are placed in a folder named the same as the footprint library replacing the ".pretty" with ".3dshapes".
Changelog
---------
Revision 1.0, November 15th 2015
1. Fixed some repetition.
2. Added rule 3.8 from the checklib scripts.
3. Tagged as 1.0 for the KiCad 4.0.0 release.
Revision 0.11, April 6th 2015
1. Updated rule 1.4 about dimensions. Units in millimeters are now implicit.
Revision 0.10, March 1st 2015
1. Moved the footprint value property to the fabrication layer
2. Pin length is enforced only for black-box symbols
3. Some reorganization has been done.
Revision 0.9, February 14th 2015
1. Added section and rules about footprint properties
2. Specified the path to 3d models
3. Moved the reference fields rule to the general section
Revision 0.8, January 19th 2015
1. More thorough rule about courtyard has been split over 6.6 and 6.7.
Revision 0.7, September 18th 2014
1. Added rule 6.6 for courtyard
Revision 0.6, September 14th 2014
1. Specified in 6.9 that value and reference designators must be placed on silkscreen.
Revision 0.5, August 6th 2014
1. Specified in 6.5 that only the outline must be completely visible after assembly.
2. Rule 3.8 moved from section 1 since it pertains only to symbols.
Revision 0.4, July 30th 2014
1. Completion of convention for symbols.
2. Rule 6.7 moved from section 1 since it pertains only to footprints.
Revision 0.3, June 8th 2014
1. Specified that pin ordering duplicates are to be handled in symbol libraries.
2. Specified the rules for footprint silkscreen.
Revision 0.2, May 19th 2014
1. Minor clarifications to few items.
2. Exposed pad is now considered as a variation of a package, thus separated by hyphen instead of plus sign.
3. Added 2-level numbering.
Revision 0.1, May 8th 2014
1. Initial Commit

View file

@ -1,5 +1,23 @@
EESchema-DOCLIB Version 2.0
#
$CMP SN65220
D USB port transient suppressors
K USB suppressor
F http://www.ti.com/lit/ds/symlink/sn65220.pdf
$ENDCMP
#
$CMP SN65240
D USB port transient suppressors
K USB suppressor
F http://www.ti.com/lit/ds/symlink/sn65220.pdf
$ENDCMP
#
$CMP SN75240
D USB port transient suppressors
K USB suppressor
F http://www.ti.com/lit/ds/symlink/sn65220.pdf
$ENDCMP
#
$CMP USB6B1
D 5V Data line protection
K ESD USB

View file

@ -1,6 +1,68 @@
EESchema-LIBRARY Version 2.3
#encoding utf-8
#
# SN65220
#
DEF SN65220 U 0 0 Y Y 1 F N
F0 "U" 0 225 50 H V C CNN
F1 "SN65220" 0 150 50 H V C CNN
F2 "TO_SOT_Packages_SMD:SOT-23-6" 350 -150 50 H I L CNN
F3 "" 0 150 50 H I C CNN
$FPLIST
SOT-23*
$ENDFPLIST
DRAW
S -400 100 400 -100 0 1 10 f
P 2 0 1 0 -100 -100 -100 0 N
P 2 0 1 0 100 -100 100 0 N
P 2 0 1 0 400 0 -400 0 N
P 4 0 1 0 -270 -50 -250 -30 -250 30 -230 50 N
P 4 0 1 0 -250 0 -150 50 -150 -50 -250 0 F
P 4 0 1 0 250 0 150 50 150 -50 250 0 F
P 4 0 1 0 270 50 250 30 250 -30 230 -50 N
X ~ 1 300 -300 200 U 50 50 1 1 N N
X GND 2 100 -300 200 U 50 50 1 1 W
X ~ 3 -300 -300 200 U 50 50 1 1 N N
X B 4 600 0 200 L 50 50 1 1 I
X GND 5 -100 -300 200 U 50 50 1 1 W
X A 6 -600 0 200 R 50 50 1 1 I
ENDDRAW
ENDDEF
#
# SN75240
#
DEF SN75240 U 0 0 Y Y 2 L N
F0 "U" 0 225 50 H V C CNN
F1 "SN75240" 0 150 50 H V C CNN
F2 "" 150 -150 50 H I L CNN
F3 "" 200 -150 50 H I C CNN
ALIAS SN65240
$FPLIST
DIP*7.62mm*
TSSOP*4.4x3mm*0.65mm*
$ENDFPLIST
DRAW
P 2 0 0 0 -300 0 -250 0 N
P 2 0 0 0 -150 0 150 0 N
P 2 0 0 0 -100 -100 -100 0 N
P 2 0 0 0 100 -100 100 0 N
P 2 0 0 0 250 0 300 0 N
P 4 0 0 0 -270 -50 -250 -30 -250 30 -230 50 N
P 4 0 0 0 -250 0 -150 50 -150 -50 -250 0 F
P 4 0 0 0 150 50 150 -50 250 0 150 50 F
P 4 0 0 0 230 -50 250 -30 250 30 270 50 N
S -300 100 300 -100 0 1 10 f
X GND 5 -100 -300 200 U 50 50 1 1 W
X B 6 500 0 200 L 50 50 1 1 I
X GND 7 100 -300 200 U 50 50 1 1 W
X A 8 -500 0 200 R 50 50 1 1 I
X GND 1 -100 -300 200 U 50 50 2 1 W
X C 2 -500 0 200 R 50 50 2 1 I
X GND 3 100 -300 200 U 50 50 2 1 W
X D 4 500 0 200 L 50 50 2 1 I
ENDDRAW
ENDDEF
#
# SRV05
#
DEF SRV05 U 0 0 Y Y 1 F N

View file

@ -1,5 +1,131 @@
EESchema-DOCLIB Version 2.0
#
$CMP LM5051
D Low side OR-ing FET controller, -6V to -100V operation
K negative low-side or-ing ideal-diode
F http://www.ti.com/lit/ds/symlink/lm5051.pdf
$ENDCMP
#
$CMP LM5060
D High side protection controller, +5.5V to +65V operation, VSSOP-10 package
K high-voltage mosfet-driver hot-swap
F http://www.ti.com/lit/ds/symlink/lm5060.pdf
$ENDCMP
#
$CMP LT1641-1
D High voltage hot swap controller, +9V to +80V operation, with latching feature
K high-voltage hot-swap
F http://cds.linear.com/docs/en/datasheet/164112fc.pdf
$ENDCMP
#
$CMP LT1641-2
D High voltage hot swap controller, +9V to +80V operation, with auto-retry feature
K high-voltage hot-swap
F http://cds.linear.com/docs/en/datasheet/164112fc.pdf
$ENDCMP
#
$CMP LTC4357DCB
D Ideal diode controller, 9-80V operation, DFN-6 package
K ideal-diode or-ing
F http://cds.linear.com/docs/en/datasheet/4357fd.pdf
$ENDCMP
#
$CMP LTC4357MS8
D Ideal diode controller, 9-80V operation, MSOP-8 package
K ideal-diode or-ing
F http://cds.linear.com/docs/en/datasheet/4357fd.pdf
$ENDCMP
#
$CMP LTC4359-DCB
D Ideal diode controller with reverse input protection, DFN-6 package
K ideal-diode or-ing reverse-protection
F http://cds.linear.com/docs/en/datasheet/4359fb.pdf
$ENDCMP
#
$CMP LTC4359-MS8
D Ideal diode controller with reverse input protection, MSOP-8 package
K ideal-diode or-ing reverse-protection
F http://cds.linear.com/docs/en/datasheet/4359fb.pdf
$ENDCMP
#
$CMP LTC4364CDE
D Surge stopper with ideal diode, UV and OV protection, -40V to +80V operation, DFN-14 package, 0°C to +40°C
K ideal-diode or-ing reverse-protection undervoltage overvoltage surge-stopper
F http://cds.linear.com/docs/en/datasheet/436412f.pdf
$ENDCMP
#
$CMP LTC4364CMS
D Surge stopper with ideal diode, UV and OV protection, -40V to +80V operation, MSOP-16 package, 0°C to +40°C
K ideal-diode or-ing reverse-protection undervoltage overvoltage surge-stopper
F http://cds.linear.com/docs/en/datasheet/436412f.pdf
$ENDCMP
#
$CMP LTC4364CS
D Surge stopper with ideal diode, UV and OV protection -40V to +80V in SOIC-16 package, 0°C to +40°C
K ideal-diode or-ing reverse-protection undervoltage overvoltage surge-stopper
F http://cds.linear.com/docs/en/datasheet/436412f.pdf
$ENDCMP
#
$CMP LTC4364HDE
D Surge stopper with ideal diode, UV and OV protection -40V to +80V in DFN-14 package, -40°C to +125°C
K surge overvoltage undervoltage reverse-polarity protection diode ORing MOSFET driver
F http://cds.linear.com/docs/en/datasheet/436412f.pdf
$ENDCMP
#
$CMP LTC4364HMS
D Surge stopper with ideal diode, UV and OV protection -40V to +80V in MSOP-16 package, -40°C to +125°C
K surge overvoltage undervoltage reverse-polarity protection diode ORing MOSFET driver
F http://cds.linear.com/docs/en/datasheet/436412f.pdf
$ENDCMP
#
$CMP LTC4364HS
D Surge stopper with ideal diode, UV and OV protection -40V to +80V in SOIC-16 package, -40°C to +125°C
K surge overvoltage undervoltage reverse-polarity protection diode ORing MOSFET driver
F http://cds.linear.com/docs/en/datasheet/436412f.pdf
$ENDCMP
#
$CMP LTC4364IDE
D Surge stopper with ideal diode, UV and OV protection -40V to +80V in DFN-14 package, -40°C to +85°C
K surge overvoltage undervoltage reverse-polarity protection diode ORing MOSFET driver
F http://cds.linear.com/docs/en/datasheet/436412f.pdf
$ENDCMP
#
$CMP LTC4364IMS
D Surge stopper with ideal diode, UV and OV protection -40V to +80V in MSOP-16 package, -40°C to +85°C
K surge overvoltage undervoltage reverse-polarity protection diode ORing MOSFET driver
F http://cds.linear.com/docs/en/datasheet/436412f.pdf
$ENDCMP
#
$CMP LTC4364IS
D Surge stopper with ideal diode, UV and OV protection -40V to +80V in SOIC-16 package, -40°C to +85°C
K surge overvoltage undervoltage reverse-polarity protection diode ORing MOSFET driver
F http://cds.linear.com/docs/en/datasheet/436412f.pdf
$ENDCMP
#
$CMP LTC4365DDB
D Overvoltage, Undervoltage and Reverse Supply Protection Controller, 3x2mm DFN-8 package, 50Hz/60Hz noise rejection
K overvoltage undervoltage reverse-polarity protection
F http://cds.linear.com/docs/en/datasheet/4365fa.pdf
$ENDCMP
#
$CMP LTC4365DDB-1
D Overvoltage, Undervoltage and Reverse Supply Protection Controller, 3x2mm DFN-8 package, 1ms fault recovery
K overvoltage undervoltage reverse-polarity protection
F http://www.linear.com/docs/29832
$ENDCMP
#
$CMP LTC4365TS8
D Overvoltage, Undervoltage and Reverse Supply Protection Controller, TSOT23-8 package, 50Hz/60Hz noise rejection
K overvoltage undervoltage reverse-polarity protection
F http://cds.linear.com/docs/en/datasheet/4365fa.pdf
$ENDCMP
#
$CMP LTC4365TS8-1
D Overvoltage, Undervoltage and Reverse Supply Protection Controller, TSOT23-8 package, 1ms fault recovery
K overvoltage undervoltage reverse-polarity protection
F http://www.linear.com/docs/29832
$ENDCMP
#
$CMP LTC4417CGN
D Prioritized PowerPath controller QFN-24
K switch power FET sequence
@ -18,10 +144,184 @@ K switch power FET sequence
F http://cds.linear.com/docs/en/datasheet/4417f.pdf
$ENDCMP
#
$CMP MIC2026
D Dual-Channel Power Distribution Switch
K PWR SWITCH
F micrel\mic2026.pdf
$CMP LTC4440EMS8
D High-side, N-Channel, Mosfet driver, 80V input, -40°C to +85°C, MSOP-8 package
K high-side mosfet-driver
F http://cds.linear.com/docs/en/datasheet/4440fb.pdf
$ENDCMP
#
$CMP LTC4440ES6
D High-side, N-Channel, Mosfet driver, 80V input, -40°C to +85°C, SOT23-6 package
K high-side mosfet-driver
F http://cds.linear.com/docs/en/datasheet/4440fb.pdf
$ENDCMP
#
$CMP LTC4440IMS8
D High-side, N-Channel, Mosfet driver, 80V input, -40°C to +125°C, MSOP-8 package
K high-side mosfet-driver
F http://cds.linear.com/docs/en/datasheet/4440fb.pdf
$ENDCMP
#
$CMP LTC4440IS6
D High-side, N-Channel, Mosfet driver, 80V input, -40°C to +85°C, SOT23-6 package
K high-side mosfet-driver
F http://cds.linear.com/docs/en/datasheet/4440fb.pdf
$ENDCMP
#
$CMP MCP100-270D
D Microcontroller reset monitor, 2.70V threshold, active low output
K supervisor reset push-pull
F http://ww1.microchip.com/downloads/en/DeviceDoc/11187f.pdf
$ENDCMP
#
$CMP MCP100-300D
D Microcontroller reset monitor, 3.00V threshold, active low output
K supervisor reset push-pull
F http://ww1.microchip.com/downloads/en/DeviceDoc/11187f.pdf
$ENDCMP
#
$CMP MCP100-315D
D Microcontroller reset monitor, 3.15V threshold, active low output
K supervisor reset push-pull
F http://ww1.microchip.com/downloads/en/DeviceDoc/11187f.pdf
$ENDCMP
#
$CMP MCP100-450D
D Microcontroller reset monitor, 4.50V threshold, active low output
K supervisor reset push-pull
F http://ww1.microchip.com/downloads/en/DeviceDoc/11187f.pdf
$ENDCMP
#
$CMP MCP100-460D
D Microcontroller reset monitor, 4.60V threshold, active low output
K supervisor reset push-pull
F http://ww1.microchip.com/downloads/en/DeviceDoc/11187f.pdf
$ENDCMP
#
$CMP MCP100-475D
D Microcontroller reset monitor, 4.75V threshold, active low output
K supervisor reset push-pull
F http://ww1.microchip.com/downloads/en/DeviceDoc/11187f.pdf
$ENDCMP
#
$CMP MCP100-485D
D Microcontroller reset monitor, 4.85V threshold, active low output
K supervisor reset push-pull
F http://ww1.microchip.com/downloads/en/DeviceDoc/11187f.pdf
$ENDCMP
#
$CMP MCP101-270D
D Microcontroller reset monitor, 2.70V threshold, active high output
K supervisor reset push-pull
F http://ww1.microchip.com/downloads/en/DeviceDoc/11187f.pdf
$ENDCMP
#
$CMP MCP101-300D
D Microcontroller reset monitor, 3.00V threshold, active high output
K supervisor reset push-pull
F http://ww1.microchip.com/downloads/en/DeviceDoc/11187f.pdf
$ENDCMP
#
$CMP MCP101-315D
D Microcontroller reset monitor, 3.15V threshold, active high output
K supervisor reset push-pull
F http://ww1.microchip.com/downloads/en/DeviceDoc/11187f.pdf
$ENDCMP
#
$CMP MCP101-450D
D Microcontroller reset monitor, 4.50V threshold, active high output
K supervisor reset push-pull
F http://ww1.microchip.com/downloads/en/DeviceDoc/11187f.pdf
$ENDCMP
#
$CMP MCP101-460D
D Microcontroller reset monitor, 4.60V threshold, active high output
K supervisor reset push-pull
F http://ww1.microchip.com/downloads/en/DeviceDoc/11187f.pdf
$ENDCMP
#
$CMP MCP101-475D
D Microcontroller reset monitor, 4.75V threshold, active high output
K supervisor reset push-pull
F http://ww1.microchip.com/downloads/en/DeviceDoc/11187f.pdf
$ENDCMP
#
$CMP MCP101-485D
D Microcontroller reset monitor, 4.85V threshold, active high output
K supervisor reset push-pull
F http://ww1.microchip.com/downloads/en/DeviceDoc/11187f.pdf
$ENDCMP
#
$CMP MCP1415
D 1.5A High speed power MOSFET driver with inverting output
K mosfet gate driver
F http://ww1.microchip.com/downloads/en/DeviceDoc/20002092F.pdf
$ENDCMP
#
$CMP MCP1415R
D 1.5A High speed power MOSFET driver with inverting output
K mosfet gate driver
F http://ww1.microchip.com/downloads/en/DeviceDoc/20002092F.pdf
$ENDCMP
#
$CMP MCP1416
D 1.5A High speed power MOSFET driver with non-inverting output
K mosfet gate driver
F http://ww1.microchip.com/downloads/en/DeviceDoc/20002092F.pdf
$ENDCMP
#
$CMP MCP1416R
D 1.5A High speed power MOSFET driver with non-inverting output
K mosfet gate driver
F http://ww1.microchip.com/downloads/en/DeviceDoc/20002092F.pdf
$ENDCMP
#
$CMP MIC2026-1BM
D Dual-channel, high side, power distribution switch, 2.7V-5.5V, Active High Output, in SOIC-8 Package
K mosfet distribution
F http://ww1.microchip.com/downloads/en/DeviceDoc/mic2026.pdf
$ENDCMP
#
$CMP MIC2026-1BN
D Dual-channel, high side, power distribution switch, 2.7V-5.5V, Active High Output, in DIP-8 Package
K mosfet distribution
F http://ww1.microchip.com/downloads/en/DeviceDoc/mic2026.pdf
$ENDCMP
#
$CMP MIC2026-2BM
D Dual-channel, high side, power distribution switch, 2.7V-5.5V, Active Low Output, in SOIC-8 Package
K mosfet distribution
F http://www.micrel.com/_PDF/mic2026.pdf
$ENDCMP
#
$CMP MIC2026-2BN
D Dual-channel, high side, power distribution switch, 2.7V-5.5V, Active Low Output, in DIP-8 Package
K mosfet distribution
F http://www.micrel.com/_PDF/mic2026.pdf
$ENDCMP
#
$CMP MIC2587-1
D Positive high voltage hot swap controller +10V to +80V with latched operation
K power switch FET driver
F http://ww1.microchip.com/downloads/en/DeviceDoc/mic2587-87r.pdf
$ENDCMP
#
$CMP MIC2587R-1
D Positive high voltage hot swap controller +10V to +80V with auto-retry operation
K power switch FET driver
F http://ww1.microchip.com/downloads/en/DeviceDoc/mic2587-87r.pdf
$ENDCMP
#
$CMP TCM809
D Microcontroller reset monitor, active low output
K supervisor reset push-pull
F http://ww1.microchip.com/downloads/en/DeviceDoc/21661E.pdf
$ENDCMP
#
$CMP TCM810
D Microcontroller reset monitor, active high output
K supervisor reset push-pull
F http://ww1.microchip.com/downloads/en/DeviceDoc/21661E.pdf
$ENDCMP
#
#End Doc Library

View file

@ -3,24 +3,73 @@ EESchema-LIBRARY Version 2.3
#
# LM5051
#
DEF LM5051 U 0 1 Y Y 1 F N
F0 "U" 250 250 50 H V C CNN
F1 "LM5051" -150 250 50 H V C CNN
F2 "" 400 -50 50 H V C CNN
DEF LM5051 U 0 40 Y Y 1 F N
F0 "U" -250 250 50 H V C CNN
F1 "LM5051" 100 250 50 H V L CNN
F2 "Housings_SOIC:SOIC-8_3.9x4.9mm_Pitch1.27mm" 0 -500 50 H I C CNN
F3 "" 400 -50 50 H V C CNN
$FPLIST
SOIC
SOIC*Pitch1.27mm*
$ENDFPLIST
DRAW
S -300 200 300 -200 0 1 0 f
S -300 200 300 -300 0 1 10 f
X Line 1 400 100 100 L 50 50 1 1 W
X VCC 2 400 0 100 L 50 50 1 1 P
X OFF 3 -400 100 100 R 50 50 1 1 I
X ~FGD 4 -400 0 100 R 50 50 1 1 C
X VSS 5 200 -300 100 U 50 50 1 1 P
X INN 6 -100 -300 100 U 50 50 1 1 I
X VSS 7 100 -300 100 U 50 50 1 1 P
X GATE 8 0 -300 100 U 50 50 1 1 O
X VSS 5 200 -400 100 U 50 50 1 1 W
X INN 6 -200 -400 100 U 50 50 1 1 I
X INP 7 100 -400 100 U 50 50 1 1 W
X GATE 8 0 -400 100 U 50 50 1 1 O
ENDDRAW
ENDDEF
#
# LM5060
#
DEF LM5060 U 0 40 Y Y 1 F N
F0 "U" -300 -450 50 H V L CNN
F1 "LM5060" 50 -450 50 H V L CNN
F2 "Housings_SSOP:MSOP-10_3x3mm_Pitch0.5mm" 200 -600 50 H I C CNN
F3 "" 0 450 50 H I C CNN
$FPLIST
*SOP*3x3mm*Pitch0.5mm*
$ENDFPLIST
DRAW
X GND 6 0 -500 100 U 50 50 1 0 W
S 300 300 -300 -400 0 1 10 f
X SENSE 1 -100 400 100 D 50 50 1 1 I
X VIN 2 -200 400 100 D 50 50 1 1 W
X OVP 3 -400 -200 100 R 50 50 1 1 I
X UVLO 4 -400 -100 100 R 50 50 1 1 I
X EN 5 -400 -300 100 R 50 50 1 1 I
X TIMER 7 400 -100 100 L 50 50 1 1 I
X ~PGD 8 400 -200 100 L 50 50 1 1 C
X OUT 9 200 400 100 D 50 50 1 1 I
X GATE 10 100 400 100 D 50 50 1 1 O
ENDDRAW
ENDDEF
#
# LT1641-1
#
DEF LT1641-1 U 0 40 Y Y 1 F N
F0 "U" -200 -450 50 H V R CNN
F1 "LT1641-1" 150 -450 50 H V L CNN
F2 "Housings_SOIC:SOIC-8_3.9x4.9mm_Pitch1.27mm" 50 -600 50 H I C CNN
F3 "" 250 -500 50 H V C CNN
ALIAS LT1641-2 MIC2587-1 MIC2587R-1
$FPLIST
SOIC*Pitch_1.27mm*
$ENDFPLIST
DRAW
X GND 4 100 -500 100 U 50 50 1 0 W
S 300 300 -300 -400 0 1 10 f
X ON 1 -400 -100 100 R 50 50 1 1 I
X FB 2 400 0 100 L 50 50 1 1 I
X PWRGD 3 400 -100 100 L 50 50 1 1 C
X TIMER 5 -400 -300 100 R 50 50 1 1 I
X GATE 6 100 400 100 D 50 50 1 1 O
X Sense 7 -100 400 100 D 50 50 1 1 I
X Vcc 8 -200 400 100 D 50 50 1 1 W
ENDDRAW
ENDDEF
#
@ -59,6 +108,208 @@ X CLN 19 700 400 300 L 50 50 1 1 I
ENDDRAW
ENDDEF
#
# LTC4357DCB
#
DEF LTC4357DCB U 0 40 Y Y 1 F N
F0 "U" 250 250 50 H V L CNN
F1 "LTC4357DCB" 250 -250 50 H V L CNN
F2 "" 250 -150 50 H V L CNN
F3 "" 0 -250 50 H V C CNN
$FPLIST
DFN*1EP*3.2mm*Pitch0.5mm*
$ENDFPLIST
DRAW
S -200 300 200 -300 0 1 10 f
X OUT 1 100 400 100 D 50 50 1 1 I
X IN 2 -300 0 100 R 50 50 1 1 I
X GATE 3 -100 400 100 D 50 50 1 1 O
X GND 4 0 -400 100 U 50 50 1 1 W
X NC 5 -300 -100 100 R 50 50 1 1 N N
X Vdd 6 300 0 100 L 50 50 1 1 W
X PAD 7 100 -400 100 U 50 50 1 1 W
ENDDRAW
ENDDEF
#
# LTC4357MS8
#
DEF LTC4357MS8 U 0 40 Y Y 1 F N
F0 "U" 250 250 50 H V L CNN
F1 "LTC4357MS8" 250 -250 50 H V L CNN
F2 "Housings_SSOP:MSOP-8_3x3mm_Pitch0.65mm" 250 -150 50 H I L CNN
F3 "" 0 -250 50 H V C CNN
$FPLIST
MSOP*3x3mm*Pitch0.65mm*
$ENDFPLIST
DRAW
S -200 300 200 -300 0 1 10 f
X IN 1 -300 0 100 R 50 50 1 1 I
X NC 2 -300 -100 100 R 50 50 1 1 N N
X NC 3 -300 -200 100 R 50 50 1 1 N N
X GATE 4 -100 400 100 D 50 50 1 1 O
X GND 5 0 -400 100 U 50 50 1 1 W
X NC 6 100 -400 100 U 50 50 1 1 N N
X Vdd 7 300 0 100 L 50 50 1 1 W
X OUT 8 100 400 100 D 50 50 1 1 I
ENDDRAW
ENDDEF
#
# LTC4359-DCB
#
DEF LTC4359-DCB U 0 40 Y Y 1 F N
F0 "U" -200 350 50 H V L CNN
F1 "LTC4359-DCB" 250 -250 50 H V L CNN
F2 "" 250 -150 50 H I L CNN
F3 "" 0 -250 50 H V C CNN
$FPLIST
DFN*1EP*3x2mm*Pitch0.65mm*
$ENDFPLIST
DRAW
S -200 300 200 -300 0 1 10 f
X OUT 1 300 0 100 L 50 50 1 1 I
X GATE 2 100 400 100 D 50 50 1 1 O
X SRC 3 0 400 100 D 50 50 1 1 I
X IN 4 -300 0 100 R 50 50 1 1 W
X ~SHDN 5 -300 -100 100 R 50 50 1 1 I
X Vss 6 0 -400 100 U 50 50 1 1 W
X Pad 7 100 -400 100 U 50 50 1 1 W
ENDDRAW
ENDDEF
#
# LTC4359-MS8
#
DEF LTC4359-MS8 U 0 40 Y Y 1 F N
F0 "U" -200 350 50 H V L CNN
F1 "LTC4359-MS8" 250 -250 50 H V L CNN
F2 "Housings_SSOP:MSOP-8_3x3mm_Pitch0.65mm" 250 -150 50 H I L CNN
F3 "" 0 -250 50 H V C CNN
$FPLIST
MSOP*3x3mm*Pitch0.65mm*
$ENDFPLIST
DRAW
S -200 300 200 -300 0 1 10 f
X GATE 1 100 400 100 D 50 50 1 1 O
X SRC 2 0 400 100 D 50 50 1 1 I
X NC 3 -100 -400 100 U 50 50 1 1 N N
X IN 4 -300 0 100 R 50 50 1 1 W
X ~SHDN 5 -300 -100 100 R 50 50 1 1 I
X Vss 6 0 -400 100 U 50 50 1 1 W
X NC 7 100 -400 100 U 50 50 1 1 N N
X OUT 8 300 0 100 L 50 50 1 1 I
ENDDRAW
ENDDEF
#
# LTC4364CDE
#
DEF LTC4364CDE U 0 40 Y Y 1 F N
F0 "U" -450 350 50 H V C CNN
F1 "LTC4364CDE" 400 -450 50 H V C CNN
F2 "Housings_DFN_QFN:DFN-14-1EP_3x4mm_Pitch0.5mm" 0 -650 50 H I C CNN
F3 "" -450 350 50 H V C CNN
ALIAS LTC4364IDE LTC4364HDE
$FPLIST
DFN*3x4mm*Pitch0.5mm*
$ENDFPLIST
DRAW
S -500 300 500 -400 0 1 10 f
X OUT 1 300 400 100 D 50 50 1 1 I
X SENSE 2 200 400 100 D 50 50 1 1 I
X DGATE 3 0 400 100 D 50 50 1 1 O
X SOURCE 4 -100 400 100 D 50 50 1 1 I
X GATE 5 -200 400 100 D 50 50 1 1 O
X VCC 6 -600 200 100 R 50 50 1 1 W
X ~SHDN 7 -600 0 100 R 50 50 1 1 I
X UV 8 -600 -200 100 R 50 50 1 1 I
X OV 9 -600 -300 100 R 50 50 1 1 I
X GND 10 0 -500 100 U 50 50 1 1 W
X ~FLT 11 600 -300 100 L 50 50 1 1 C
X ENOUT 12 600 -200 100 L 50 50 1 1 C
X TMR 13 -200 -500 100 U 50 50 1 1 I
X FB 14 600 0 100 L 50 50 1 1 I
X GND 15 100 -500 100 U 50 50 1 1 W
ENDDRAW
ENDDEF
#
# LTC4364CMS
#
DEF LTC4364CMS U 0 40 Y Y 1 F N
F0 "U" -450 350 50 H V C CNN
F1 "LTC4364CMS" 400 -450 50 H V C CNN
F2 "" 0 -600 50 H I C CNN
F3 "" -450 350 50 H V C CNN
ALIAS LTC4364IMS LTC4364IS LTC4364HMS LTC4364HS LTC4364CS
$FPLIST
MSOP*3x4mm*Pitch0.5mm*
$ENDFPLIST
DRAW
S -500 300 500 -400 0 1 10 f
X OUT 1 300 400 100 D 50 50 1 1 I
X SENSE 2 200 400 100 D 50 50 1 1 I
X NC 3 600 100 100 L 50 50 1 1 N N
X DGATE 4 0 400 100 D 50 50 1 1 O
X SOURCE 5 -100 400 100 D 50 50 1 1 I
X HGATE 6 -200 400 100 D 50 50 1 1 O
X NC 7 600 200 100 L 50 50 1 1 N N
X VCC 8 -600 200 100 R 50 50 1 1 W
X ~SHDN 9 -600 0 100 R 50 50 1 1 I
X UV 10 -600 -200 100 R 50 50 1 1 I
X OV 11 -600 -300 100 R 50 50 1 1 I
X GND 12 0 -500 100 U 50 50 1 1 W
X ~FLT 13 600 -300 100 L 50 50 1 1 C
X ENOUT 14 600 -200 100 L 50 50 1 1 C
X TMR 15 -200 -500 100 U 50 50 1 1 I
X FB 16 600 0 100 L 50 50 1 1 I
ENDDRAW
ENDDEF
#
# LTC4365DDB
#
DEF LTC4365DDB U 0 40 Y Y 1 F N
F0 "U" -300 350 50 H V L CNN
F1 "LTC4365DDB" 50 350 50 H V L CNN
F2 "Housings_DFN_QFN:DFN-8-1EP_2x3mm_Pitch0.5mm" 0 -500 50 H I C CNN
F3 "" 0 100 50 H V C CNN
ALIAS LTC4365DDB-1
$FPLIST
DFN*1EP*2x3mm*Pitch0.5mm*
$ENDFPLIST
DRAW
S -300 300 300 -300 0 1 10 f
X GND 1 100 -400 100 U 50 50 1 1 W
X OV 2 -400 -200 100 R 50 50 1 1 I
X UV 3 -400 -100 100 R 50 50 1 1 I
X Vin 4 -400 200 100 R 50 50 1 1 W
X GATE 5 0 400 100 D 50 50 1 1 O
X Vout 6 400 200 100 L 50 50 1 1 I
X ~FAULT 7 400 100 100 L 50 50 1 1 C
X ~SHDN 8 -400 100 100 R 50 50 1 1 I
X GND 9 0 -400 100 U 50 50 1 1 W
ENDDRAW
ENDDEF
#
# LTC4365TS8
#
DEF LTC4365TS8 U 0 40 Y Y 1 F N
F0 "U" -300 350 50 H V L CNN
F1 "LTC4365TS8" 100 350 50 H V L CNN
F2 "" -300 250 50 H V C CNN
F3 "" 0 100 50 H V C CNN
ALIAS LTC4365TS8-1
$FPLIST
*SOT-23*
$ENDFPLIST
DRAW
S -300 300 300 -300 0 1 10 f
X Vin 1 -400 200 100 R 50 50 1 1 W
X UV 2 -400 -100 100 R 50 50 1 1 I
X OV 3 -400 -200 100 R 50 50 1 1 I
X GND 4 0 -400 100 U 50 50 1 1 W
X ~SHDN 5 -400 100 100 R 50 50 1 1 I
X ~FAULT 6 400 100 100 L 50 50 1 1 C
X Vout 7 400 200 100 L 50 50 1 1 I
X GATE 8 0 400 100 D 50 50 1 1 O
ENDDRAW
ENDDEF
#
# LTC4417CGN
#
DEF LTC4417CGN U 0 30 Y Y 1 F N
@ -100,6 +351,53 @@ X V3 19 -500 0 150 R 50 50 1 1 I
ENDDRAW
ENDDEF
#
# LTC4440EMS8
#
DEF LTC4440EMS8 U 0 40 Y Y 1 F N
F0 "U" -300 350 50 H V L CNN
F1 "LTC4440EMS8" -50 350 50 H V L CNN
F2 "Housings_SSOP:MSOP-8-1EP_3x3mm_Pitch0.65mm" 0 -400 50 H I C CNN
F3 "" -100 450 50 H I C CNN
ALIAS LTC4440IMS8
$FPLIST
MSOP*1EP*3x3mm*Pitch0.65mm*
$ENDFPLIST
DRAW
S -300 300 300 -200 0 1 10 f
X INP 1 -400 0 100 R 50 50 1 1 I
X GND 2 -100 -300 100 U 50 50 1 1 W
X VCC 3 -100 400 100 D 50 50 1 1 W
X GND 4 0 -300 100 U 50 50 1 1 W
X NC 5 -200 -300 100 U 50 50 1 1 N N
X BOOST 6 400 200 100 L 50 50 1 1 I
X TG 7 400 0 100 L 50 50 1 1 O
X TS 8 400 -100 100 L 50 50 1 1 I
X PAD 9 100 -300 100 U 50 50 1 1 W
ENDDRAW
ENDDEF
#
# LTC4440ES6
#
DEF LTC4440ES6 U 0 40 Y Y 1 F N
F0 "U" -300 350 50 H V L CNN
F1 "LTC4440ES6" -50 350 50 H V L CNN
F2 "TO_SOT_Packages_SMD:SOT-23-6" 0 -400 50 H I C CNN
F3 "" -100 450 50 H I C CNN
ALIAS LTC4440IS6
$FPLIST
SOT-23*
$ENDFPLIST
DRAW
S -300 300 300 -200 0 1 10 f
X VCC 1 -100 400 100 D 50 50 1 1 W
X GND 2 0 -300 100 U 50 50 1 1 W
X INP 3 -400 0 100 R 50 50 1 1 I
X TS 4 400 -100 100 L 50 50 1 1 I
X TG 5 400 0 100 L 50 50 1 1 O
X BOOST 6 400 200 100 L 50 50 1 1 I
ENDDRAW
ENDDEF
#
# MC33064D
#
DEF MC33064D U 0 20 Y Y 1 F N
@ -132,6 +430,151 @@ X Gbd 3 0 -300 150 U 50 40 1 1 I
ENDDRAW
ENDDEF
#
# MCP100-270D
#
DEF MCP100-270D U 0 40 Y Y 1 F N
F0 "U" 0 350 50 H V L CNN
F1 "MCP100-270D" -50 -350 50 H V L CNN
F2 "" -400 150 50 H V C CNN
F3 "" -300 250 50 H V C CNN
ALIAS MCP100-300D MCP100-315D MCP100-450D MCP100-460D MCP100-475D MCP100-485D
$FPLIST
SOT-23*
TO-92*
$ENDFPLIST
DRAW
S -200 300 200 -300 1 1 10 f
X ~RST 1 300 0 100 L 50 50 1 1 O
X VDD 2 -100 400 100 D 50 50 1 1 W
X VSS 3 -100 -400 100 U 50 50 1 1 W
ENDDRAW
ENDDEF
#
# MCP101-270D
#
DEF MCP101-270D U 0 40 Y Y 1 F N
F0 "U" 0 350 50 H V L CNN
F1 "MCP101-270D" -50 -350 50 H V L CNN
F2 "" -400 150 50 H V C CNN
F3 "" -300 250 50 H V C CNN
ALIAS MCP101-300D MCP101-315D MCP101-450D MCP101-460D MCP101-475D MCP101-485D
$FPLIST
SOT-23*
TO-92*
$ENDFPLIST
DRAW
S -200 300 200 -300 1 1 10 f
X RST 1 300 0 100 L 50 50 1 1 O
X VDD 2 -100 400 100 D 50 50 1 1 W
X VSS 3 -100 -400 100 U 50 50 1 1 W
ENDDRAW
ENDDEF
#
# MCP1415
#
DEF MCP1415 U 0 40 Y Y 1 F N
F0 "U" -200 250 50 H V L CNN
F1 "MCP1415" 50 250 50 H V L CNN
F2 "TO_SOT_Packages_SMD:SOT-23-5" 0 -400 50 H I C CIN
F3 "" -200 250 50 H V C CNN
$FPLIST
SOT-23*
$ENDFPLIST
DRAW
S -200 200 300 -200 0 1 10 f
X NC 1 -100 -300 100 U 50 50 1 1 N N
X Vdd 2 0 300 100 D 50 50 1 1 W
X IN 3 -300 0 100 R 50 50 1 1 I
X GND 4 0 -300 100 U 50 50 1 1 W
X ~OUT 5 400 0 100 L 50 50 1 1 O
ENDDRAW
ENDDEF
#
# MCP1415R
#
DEF MCP1415R U 0 40 Y Y 1 F N
F0 "U" -200 250 50 H V L CNN
F1 "MCP1415R" 50 250 50 H V L CNN
F2 "TO_SOT_Packages_SMD:SOT-23-5" 0 -400 50 H I C CIN
F3 "" -200 250 50 H V C CNN
$FPLIST
SOT-23*
$ENDFPLIST
DRAW
S -200 200 300 -200 0 1 10 f
X NC 1 -100 -300 100 U 50 50 1 1 N N
X GND 2 0 -300 100 U 50 50 1 1 W
X IN 3 -300 0 100 R 50 50 1 1 I
X ~OUT 4 400 0 100 L 50 50 1 1 O
X Vdd 5 0 300 100 D 50 50 1 1 W
ENDDRAW
ENDDEF
#
# MCP1416
#
DEF MCP1416 U 0 40 Y Y 1 F N
F0 "U" -200 250 50 H V L CNN
F1 "MCP1416" 50 250 50 H V L CNN
F2 "TO_SOT_Packages_SMD:SOT-23-5" 0 -400 50 H I C CIN
F3 "" -200 250 50 H V C CNN
$FPLIST
SOT-23*
$ENDFPLIST
DRAW
S -200 200 300 -200 0 1 10 f
X NC 1 -100 -300 100 U 50 50 1 1 N N
X Vdd 2 0 300 100 D 50 50 1 1 W
X IN 3 -300 0 100 R 50 50 1 1 I
X GND 4 0 -300 100 U 50 50 1 1 W
X OUT 5 400 0 100 L 50 50 1 1 O
ENDDRAW
ENDDEF
#
# MCP1416R
#
DEF MCP1416R U 0 40 Y Y 1 F N
F0 "U" -200 250 50 H V L CNN
F1 "MCP1416R" 50 250 50 H V L CNN
F2 "TO_SOT_Packages_SMD:SOT-23-5" 0 -400 50 H I C CIN
F3 "" -200 250 50 H V C CNN
$FPLIST
SOT-23*
$ENDFPLIST
DRAW
S -200 200 300 -200 0 1 10 f
X NC 1 -100 -300 100 U 50 50 1 1 N N
X GND 2 0 -300 100 U 50 50 1 1 W
X IN 3 -300 0 100 R 50 50 1 1 I
X OUT 4 400 0 100 L 50 50 1 1 O
X Vdd 5 0 300 100 D 50 50 1 1 W
ENDDRAW
ENDDEF
#
# MIC2026-1BN
#
DEF MIC2026-1BN U 0 30 Y Y 1 F N
F0 "U" -300 450 50 H V L CNN
F1 "MIC2026-1BN" 500 450 50 H V R CNN
F2 "" 0 0 50 H V C CNN
F3 "" 0 0 50 H V C CNN
ALIAS MIC2026-1BM MIC2026-2BN MIC2026-2BM
$FPLIST
SOIC*
DIP*
$ENDFPLIST
DRAW
S -300 -400 300 400 0 1 10 f
X ENA 1 -400 300 100 R 50 50 1 1 I
X FLGA 2 -400 200 100 R 50 50 1 1 O
X FLGB 3 -400 -100 100 R 50 50 1 1 O
X ENB 4 -400 0 100 R 50 50 1 1 I
X OUTB 5 400 -100 100 L 50 50 1 1 w
X GND 6 0 -500 100 U 50 50 1 1 W
X IN 7 400 300 100 L 50 50 1 1 W
X OUTA 8 400 100 100 L 50 50 1 1 w
ENDDRAW
ENDDEF
#
# RT9701
#
DEF RT9701 U 0 30 Y Y 1 F N
@ -152,6 +595,44 @@ X VOUT 5 500 0 150 L 50 50 1 1 P
ENDDRAW
ENDDEF
#
# TCM809
#
DEF TCM809 U 0 40 Y Y 1 F N
F0 "U" 0 350 50 H V L CNN
F1 "TCM809" -50 -350 50 H V L CNN
F2 "" -400 150 50 H V C CNN
F3 "" -300 250 50 H V C CNN
$FPLIST
SOT-23*
SC-70*
$ENDFPLIST
DRAW
S -200 300 200 -300 1 1 10 f
X GND 1 -100 -400 100 U 50 50 1 1 W
X ~RESET~ 2 300 0 100 L 50 50 1 1 O
X VCC 3 -100 400 100 D 50 50 1 1 W
ENDDRAW
ENDDEF
#
# TCM810
#
DEF TCM810 U 0 40 Y Y 1 F N
F0 "U" 0 350 50 H V L CNN
F1 "TCM810" -50 -350 50 H V L CNN
F2 "" -400 150 50 H V C CNN
F3 "" -300 250 50 H V C CNN
$FPLIST
SOT-23*
SC-70*
$ENDFPLIST
DRAW
S -200 300 200 -300 1 1 10 f
X GND 1 -100 -400 100 U 50 50 1 1 W
X RESET 2 300 0 100 L 50 50 1 1 O
X VCC 3 -100 400 100 D 50 50 1 1 W
ENDDRAW
ENDDEF
#
# TL7702
#
DEF TL7702 U 0 40 Y Y 1 F N
@ -173,28 +654,4 @@ X VCC 8 0 550 200 D 50 50 1 1 W
ENDDRAW
ENDDEF
#
# MIC2026
#
DEF MIC2026 U 0 30 Y Y 1 F N
F0 "U" 0 450 50 H V C CNN
F1 "MIC2026" 0 -450 50 H V C CNN
F2 "" 0 0 50 H V C CNN
F3 "" 0 0 50 H V C CNN
$FPLIST
SO8E
8DIP300
$ENDFPLIST
DRAW
S -500 -400 500 400 0 1 0 N
X ENA 1 -800 300 300 R 50 50 1 1 I
X FLGA 2 -800 100 300 R 50 50 1 1 O
X FLGB 3 -800 -100 300 R 50 50 1 1 O
X ENB 4 -800 -300 300 R 50 50 1 1 I
X OUTB 5 800 -100 300 L 50 50 1 1 w
X GND 6 800 -300 300 L 50 50 1 1 W
X IN 7 800 300 300 L 50 50 1 1 W
X OUTA 8 800 100 300 L 50 50 1 1 w
ENDDRAW
ENDDEF
#
#End Library

View file

@ -7558,10 +7558,10 @@ ALIAS ATTINY45-S ATTINY85-S
DRAW
S -1200 350 1200 -350 0 1 10 f
X PB5(~RESET~/dW/ADC0/PCINT5) 1 -1350 -250 150 R 40 40 1 1 B
X PB3(XTAL1/CLKI/OC1B/ADC3/PCINT3) 2 -1350 -50 150 R 40 40 1 1 B
X PB3(XTAL1/CLKI/~OC1B~/ADC3/PCINT3) 2 -1350 -50 150 R 40 40 1 1 B
X PB4(XTAL2/CLKO/OC1B/ADC2/PCINT4) 3 -1350 -150 150 R 40 40 1 1 B
X GND 4 1350 -250 150 L 40 40 1 1 W
X PB0(MOSI/DI/SDA/AIN0/OC0A/OC1A/AREF/PCINT0) 5 -1350 250 150 R 40 40 1 1 B
X PB0(MOSI/DI/SDA/AIN0/OC0A/~OC1A~/AREF/PCINT0) 5 -1350 250 150 R 40 40 1 1 B
X PB1(MISO/DO/AIN1/OC0B/OC1A/PCINT1) 6 -1350 150 150 R 40 40 1 1 B
X PB2(SCK/USCK/SCL/T0/INT0/ADC1/PCINT2) 7 -1350 50 150 R 40 40 1 1 B
X VCC 8 1350 250 150 L 40 40 1 1 W
@ -10898,16 +10898,16 @@ F1 "AVR-ISP-10" -340 -330 50 H V L BNN
F2 "AVR-ISP-10" -750 50 50 V I C CNN
F3 "" 0 0 50 H V C CNN
DRAW
T 0 -380 -100 45 0 0 0 SCK Normal 1 C C
T 0 230 200 45 0 0 0 VCC Normal 1 C C
T 0 230 -200 45 0 1 0 GND Normal 1 C C
T 0 230 -100 45 0 1 0 GND Normal 1 C C
T 0 230 0 45 0 1 0 GND Normal 1 C C
T 0 230 100 45 0 1 0 GND Normal 1 C C
T 0 -450 100 45 0 1 0 LED/NC Normal 1 C C
T 0 -400 -200 45 0 1 0 MISO Normal 1 C C
T 0 -390 200 45 0 1 0 MOSI Normal 1 C C
T 0 -370 0 45 0 1 0 RST Normal 1 C C
T 0 -380 -100 45 0 0 0 SCK Normal 1 C C
T 0 230 200 45 0 0 0 VCC Normal 1 C C
T 0 230 -200 45 0 1 0 GND Normal 1 C C
T 0 230 -100 45 0 1 0 GND Normal 1 C C
T 0 230 0 45 0 1 0 GND Normal 1 C C
T 0 230 100 45 0 1 0 GND Normal 1 C C
T 0 -450 100 45 0 1 0 LED/NC Normal 1 C C
T 0 -400 -200 45 0 1 0 MISO Normal 1 C C
T 0 -390 200 45 0 1 0 MOSI Normal 1 C C
T 0 -370 0 45 0 1 0 RST Normal 1 C C
S -280 -230 130 -250 0 1 0 F
S -280 -40 -260 -250 0 1 0 F
S -260 290 -280 40 0 1 0 F
@ -10934,12 +10934,12 @@ F1 "AVR-ISP-6" -265 -230 50 H V L BNN
F2 "AVR-ISP-6" -520 40 50 V I C CNN
F3 "" -25 0 50 H V C CNN
DRAW
T 0 -315 5 45 0 0 0 SCK Normal 1 C C
T 0 275 110 45 0 0 0 VCC Normal 1 C C
T 0 285 -105 45 0 1 0 GND Normal 1 C C
T 0 -333 102 45 0 1 0 MISO Normal 1 C C
T 0 307 -2 45 0 1 0 MOSI Normal 1 C C
T 0 -315 -100 45 0 1 0 RST Normal 1 C C
T 0 -315 5 45 0 0 0 SCK Normal 1 C C
T 0 275 110 45 0 0 0 VCC Normal 1 C C
T 0 285 -105 45 0 1 0 GND Normal 1 C C
T 0 -333 102 45 0 1 0 MISO Normal 1 C C
T 0 307 -2 45 0 1 0 MOSI Normal 1 C C
T 0 -315 -100 45 0 1 0 RST Normal 1 C C
S -205 -140 165 -160 0 1 0 F
S -205 200 155 180 0 1 0 F
S -200 -160 -220 -40 0 1 0 F
@ -10965,16 +10965,16 @@ $FPLIST
AVR-JTAG-10
$ENDFPLIST
DRAW
T 0 230 200 45 0 0 0 GND Normal 1 C C
T 0 -360 -100 45 0 0 0 NC Normal 1 C C
T 0 240 -200 45 0 1 0 GND Normal 1 C C
T 0 290 0 45 0 1 0 nSRST Normal 1 C C
T 0 290 -100 45 0 1 0 nTRST Normal 1 C C
T 0 -380 200 45 0 1 0 TCK Normal 1 C C
T 0 -370 -200 45 0 1 0 TDI Normal 1 C C
T 0 -380 100 45 0 1 0 TDO Normal 1 C C
T 0 -380 0 45 0 1 0 TMS Normal 1 C C
T 0 260 100 45 0 1 0 VREF Normal 1 C C
T 0 230 200 45 0 0 0 GND Normal 1 C C
T 0 -360 -100 45 0 0 0 NC Normal 1 C C
T 0 240 -200 45 0 1 0 GND Normal 1 C C
T 0 290 0 45 0 1 0 nSRST Normal 1 C C
T 0 290 -100 45 0 1 0 nTRST Normal 1 C C
T 0 -380 200 45 0 1 0 TCK Normal 1 C C
T 0 -370 -200 45 0 1 0 TDI Normal 1 C C
T 0 -380 100 45 0 1 0 TDO Normal 1 C C
T 0 -380 0 45 0 1 0 TMS Normal 1 C C
T 0 260 100 45 0 1 0 VREF Normal 1 C C
S -280 -230 130 -250 0 1 0 F
S -280 -40 -260 -250 0 1 0 F
S -260 290 -280 40 0 1 0 F
@ -11001,12 +11001,12 @@ F1 "AVR-PDI-6" -210 -245 50 H V L BNN
F2 "AVR-PDI-6" -445 35 50 V I C CNN
F3 "" 0 0 50 H V C CNN
DRAW
T 0 -350 0 45 0 0 0 NC Normal 1 C C
T 0 310 110 45 0 0 0 VCC Normal 1 C C
T 0 310 -105 45 0 1 0 GND Normal 1 C C
T 0 332 -2 45 0 1 0 NC Normal 1 C C
T 0 -300 -100 45 0 1 0 PDI_C Normal 1 C C
T 0 -298 102 45 0 1 0 PDI_D Normal 1 C C
T 0 -350 0 45 0 0 0 NC Normal 1 C C
T 0 310 110 45 0 0 0 VCC Normal 1 C C
T 0 310 -105 45 0 1 0 GND Normal 1 C C
T 0 332 -2 45 0 1 0 NC Normal 1 C C
T 0 -300 -100 45 0 1 0 PDI_C Normal 1 C C
T 0 -298 102 45 0 1 0 PDI_D Normal 1 C C
S -180 -140 190 -160 0 1 0 F
S -180 200 180 180 0 1 0 F
S -175 -160 -195 -40 0 1 0 F
@ -11029,12 +11029,12 @@ F1 "AVR-TPI-6" -210 -245 50 H V L BNN
F2 "AVR-PDI-6" -445 35 50 V I C CNN
F3 "" 0 0 50 H V C CNN
DRAW
T 0 -300 0 45 0 0 0 TPI_C Normal 1 C C
T 0 310 110 45 0 0 0 VTG Normal 1 C C
T 0 310 -105 45 0 1 0 GND Normal 1 C C
T 0 332 -2 45 0 1 0 NC Normal 1 C C
T 0 -320 -100 45 0 1 0 RES Normal 1 C C
T 0 -298 102 45 0 1 0 TPI_D Normal 1 C C
T 0 -300 0 45 0 0 0 TPI_C Normal 1 C C
T 0 310 110 45 0 0 0 VTG Normal 1 C C
T 0 310 -105 45 0 1 0 GND Normal 1 C C
T 0 332 -2 45 0 1 0 NC Normal 1 C C
T 0 -320 -100 45 0 1 0 RES Normal 1 C C
T 0 -298 102 45 0 1 0 TPI_D Normal 1 C C
S -180 -140 190 -160 0 1 0 F
S -180 200 180 180 0 1 0 F
S -175 -160 -195 -40 0 1 0 F

View file

@ -12,6 +12,12 @@ K battery nickel cadmium metal hydride
F http://www.ti.com.cn/cn/lit/ds/symlink/bq2003.pdf
$ENDCMP
#
$CMP BQ24075
D USB-Friendly Li-Ion Battery Charger and Power-Path Management
K USB Charge
F http://www.ti.com/lit/ds/symlink/bq24075.pdf
$ENDCMP
#
$CMP BQ76940
D Lithium battery monitor, 9-15 cells, integrated balancing, I2C interface
K lithium battery balance charge afe

View file

@ -82,6 +82,39 @@ X VCC 16 0 1100 100 D 50 50 1 1 W
ENDDRAW
ENDDEF
#
# BQ24075
#
DEF BQ24075 U 0 40 Y Y 1 F N
F0 "U" -200 625 50 H V R CNN
F1 "BQ24075" -200 550 50 H V R CNN
F2 "" 250 -550 50 H I L CNN
F3 "" 200 200 50 H V C CNN
$FPLIST
RGT*
QFN*
$ENDFPLIST
DRAW
S -500 500 500 -500 0 1 10 f
X TS 1 600 -400 100 L 50 50 1 1 w
X BAT 2 600 -100 100 L 50 50 1 1 W
X BAT 3 600 -200 100 L 50 50 1 1 W
X ~CE 4 -200 -600 100 U 50 50 1 1 I
X EN2 5 600 100 100 L 50 50 1 1 I
X EN1 6 0 -600 100 U 50 50 1 1 I
X ~PGOOD 7 -100 600 100 D 50 50 1 1 O
X VSS 8 -600 -300 100 R 50 50 1 1 W
X ~CHG 9 100 600 100 D 50 50 1 1 O
X OUT 10 600 400 100 L 50 50 1 1 w
X OUT 11 600 300 100 L 50 50 1 1 w
X ILM 12 100 -600 100 U 50 50 1 1 I
X IN 13 -600 300 100 R 50 50 1 1 W
X TMR 14 -100 -600 100 U 50 50 1 1 I
X SYSOFF 15 -600 0 100 R 50 50 1 1 I
X ISET 16 200 -600 100 U 50 50 1 1 I
X PAD 17 -600 -400 100 R 50 50 1 1 U
ENDDRAW
ENDDEF
#
# BQ76940
#
DEF BQ76940 U 0 40 Y Y 1 F N

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

View file

@ -1,23 +1,48 @@
EESchema-DOCLIB Version 2.0
#
$CMP Battery
D Battery
K batt voltage-source cell
$ENDCMP
#
$CMP C
D Unpolarized capacitor
K cap capacitor
$ENDCMP
#
$CMP CP
D Polarised capacitor
K cap capacitor
$ENDCMP
#
$CMP CP1
D Polarised capacitor
K cap capacitor
$ENDCMP
#
$CMP CP1_Small
D Polarised capacitor
K cap capacitor
$ENDCMP
#
$CMP CP_Small
D Polarised capacitor
K cap capacitor
$ENDCMP
#
$CMP CRYSTAL
D Two pin crystal
K quartz ceramic resonator oscillator
$ENDCMP
#
$CMP CRYSTAL_SMD
D Crystal with ground connection
K oscillator quartz resonator gnd
$ENDCMP
#
$CMP CRYSTAL_Small
D Two pin crystal, small symbol
K quartz ceramic resonator oscillator
$ENDCMP
#
$CMP CTRIM
@ -27,194 +52,207 @@ $ENDCMP
#
$CMP C_Small
D Unpolarized capacitor
$ENDCMP
#
$CMP Coded_Switch
D 4 bits rotary switch
K Rotary, Hex
$ENDCMP
#
$CMP Crystal
D Two pin crystal
K Quartz, Ceramic, Filter, Resonator
$ENDCMP
#
$CMP Crystal_Small
D Two pin crystal
K Quartz, Resonator, Ceramic, Filter
K capacitor cap
$ENDCMP
#
$CMP D
D Diode
K diode
$ENDCMP
#
$CMP DUAL_POT
D Potentionmetre
K R
$CMP DELAY_LINE
D Delay line
K delay propogation retard impedance
$ENDCMP
#
$CMP D_BRIDGE
D Diode bridge
K rectifier acdc
$ENDCMP
#
$CMP D_Schottky
D Diode schottky
D Schottky diode
K diode schotty
$ENDCMP
#
$CMP D_Schottky_Small
D Diode Schottky
D Schottky diode, small symbol
K diode schottky
$ENDCMP
#
$CMP D_Schottky_x2_ACom_AKK
D Double diode Schottky (Serie)
K DEV DIODE
D Dual schottky diode, common anode
K diode
$ENDCMP
#
$CMP D_Schottky_x2_ACom_KAK
D Double diode Schottky (Serie)
K DEV DIODE
D Dual schottky diode, common anode
K diode
$ENDCMP
#
$CMP D_Schottky_x2_ACom_KKA
D Double diode Schottky (Serie)
K DEV DIODE
D Dual schottky diode, common anode
K diode
$ENDCMP
#
$CMP D_Schottky_x2_KCom_AAK
D Double diode Schottky (Serie)
K DEV DIODE
D Dual schottky diode, common cathode
K diode
$ENDCMP
#
$CMP D_Schottky_x2_KCom_AKA
D Double diode Schottky (Serie)
K DEV DIODE
D Dual schottky diode, common cathode
K diode
$ENDCMP
#
$CMP D_Schottky_x2_KCom_KAA
D Double diode Schottky (Serie)
K DEV DIODE
D Dual schottky diode, common cathode
K diode
$ENDCMP
#
$CMP D_Schottky_x2_Serial_ACK
D Double diode Schottky (Serie)
K DEV DIODE
D Dual schottky diode
K diode
$ENDCMP
#
$CMP D_Schottky_x2_Serial_AKC
D Double diode Schottky (Serie)
K DEV DIODE
D Dual schottky diode
K diode
$ENDCMP
#
$CMP D_Schottky_x2_Serial_CAK
D Double diode Schottky (Serie)
K DEV DIODE
D Dual schottky diode
K diode
$ENDCMP
#
$CMP D_Schottky_x2_Serial_CKA
D Double diode Schottky (Serie)
K DEV DIODE
D Dual schottky diode
K diode
$ENDCMP
#
$CMP D_Schottky_x2_Serial_KAC
D Double diode Schottky (Serie)
K DEV DIODE
D Dual schottky diode
K diode
$ENDCMP
#
$CMP D_Schottky_x2_Serial_KCA
D Double diode Schottky (Serie)
K DEV DIODE
D Dual schottky diode
K diode
$ENDCMP
#
$CMP D_Small
D Diode
K diode
$ENDCMP
#
$CMP Darl_NPN
D Darlington NPN transistor
K Q
$CMP EMI_FILTER_2pin
D EMI Filter, two pins
K emi electromagnetic interference noise
$ENDCMP
#
$CMP Diode_Bridge
D Diode bridge
K Graetz
$CMP EMI_FILTER_3pin
D EMI Filter, three pins
K electromagnetic interference noise
$ENDCMP
#
$CMP EMI_FILTER
D Filtre EMI
K EMI
$CMP FUSE
D Fuse, generic
K fuse
$ENDCMP
#
$CMP EMI_FILTER2
D Filtre EMI
K EMI
$CMP FUSE_POLARISED_Small
D Fuse, polarised
K fuse
$ENDCMP
#
$CMP FILTER
D Filtre EMI
K EMI
$CMP FUSE_Small
D Fuse, small symbol
K fuse
$ENDCMP
#
$CMP FP_Small
D Fuse polarised
$CMP HEATSINK
D Heatsink
K thermal heat temperature
$ENDCMP
#
$CMP F_Small
D Fuse
$CMP INDUCTOR
D Inductor
K inductor choke coil reactor magnetic
$ENDCMP
#
$CMP Jumper_NC_Small
D Jumper normally close
K Jumper, Link
$CMP INDUCTOR_Small
D Inductor, small symbol
K inductor choke coil reactor magnetic
$ENDCMP
#
$CMP Jumper_NO_Small
D Jumper normally open
K Jumper, Link
$CMP JUMPER
D Jumper, generic, normally closed
K jumper bridge link nc
$ENDCMP
#
$CMP JUMPER_NC_Dual
D Dual Jumper, normally closed
K jumper bridge link nc
$ENDCMP
#
$CMP JUMPER_NC_Small
D Jumper, normally closed
K jumper link bridge
$ENDCMP
#
$CMP JUMPER_NO_Small
D Jumper, normally open
K jumper link bridge
$ENDCMP
#
$CMP LED
K LED
D LED generic
K led diode
$ENDCMP
#
$CMP LED_Dual
D LED dual, common cathode
K led diode bicolor dual
$ENDCMP
#
$CMP LED_RABG
D Common Anode RGB LED
K RGB LED
D LED, RGB, common anode
K RGB LED diode
$ENDCMP
#
$CMP LED_RCBG
D Common Cathode RGB LED
K RGB LED
D LED, RGB, common cathode
K RGB LED diode
$ENDCMP
#
$CMP LED_RGB
D LED RGB 6 pins
K led rgb diode
$ENDCMP
#
$CMP LED_RGB_CA
D Common Anode RGB LED
K led rgb diode
$ENDCMP
#
$CMP LED_RGB_EP
D LED RGB 6 pins, exposed pad
K led rgb diode
$ENDCMP
#
$CMP L_Small
D Inductor
$ENDCMP
#
$CMP Led_RGB_CA
D Common Anode RGB LED
K RGB LED
$ENDCMP
#
$CMP Led_Small
D Led
$ENDCMP
#
$CMP Led_x2
D DOUBLE type Bicolore
K LED
$ENDCMP
#
$CMP PHOTORESISTOR
D Photo resistor
$CMP LED_Small
D LED, small symbol
K led diode light-emitting-diode
$ENDCMP
#
$CMP POT
D Potentionmetre
K R
D Potentionmeter
K resistor variable
$ENDCMP
#
$CMP POT_Dual
D Potentiometer, dual
K resistor variable
$ENDCMP
#
$CMP Q_NIGBT_CEG
@ -367,6 +405,11 @@ D Transistor NPN, collector connected to mounting plane (general)
K npn transistor
$ENDCMP
#
$CMP Q_PHOTO_NPN
D Phototransistor, ligh sensistive transistor
K light photo opto transistor
$ENDCMP
#
$CMP Q_PJFET_DGS
D Transistor P-JFET (general)
K pjfet p-jfet transistor
@ -479,7 +522,7 @@ $ENDCMP
#
$CMP R
D Resistor
K R DEV
K r res resistor
$ENDCMP
#
$CMP RF_SHIELD_ONE_PIECE
@ -506,35 +549,37 @@ $ENDCMP
#
$CMP RR8
D 8 resistors
K R DEV
K r
$ENDCMP
#
$CMP RVAR
D Variable resistor
K resistor var potentiometer
$ENDCMP
#
$CMP R_PACK4
D 4 resistors Pack
K R DEV
K r
$ENDCMP
#
$CMP R_PACK8
D 8 resistors Pack
K R DEV
K r
$ENDCMP
#
$CMP R_PHOTO
D Photoresistor, light sensitive resistor
K resistor variable light opto
$ENDCMP
#
$CMP R_Small
D Resistor
D Resistor, small symbol
K r resistor
$ENDCMP
#
$CMP SCHDPAK
D Diode schotty - cms
K DIODE SCHOTTKY CMS
$ENDCMP
#
$CMP SCR
D Thyristor
$ENDCMP
#
$CMP SP3T
D 3 position switch, SP3T
K switch SP3T
D Diode schottky - cms
K diode SCHOTTKY CMS
$ENDCMP
#
$CMP SPEAKER
@ -542,68 +587,144 @@ D Audio speaker, 2 pins, generic symbol
K buzzer beeper sound
$ENDCMP
#
$CMP SPST
D Interrupteur simple
K switch
$CMP SW_CODED
D Rotary switch, 4-bit encoding
K rotary hex
$ENDCMP
#
$CMP SWITCH_INV
D inverseur
K switch
$CMP SW_DPST
D Double Pole Single Throw (DPST) Switch
K switch dual double-pole single-throw OFF-ON
$ENDCMP
#
$CMP SWITCH_INV_MSM
D Switch inverseur M S M
K switch
$CMP SW_DPST_Small
D Double Pole Single Throw (DPST) Switch, small symbol
K switch dual double-pole single-throw OFF-ON
$ENDCMP
#
$CMP SW_PUSH
D Button
K Switch
D Push button switch, normally open, two pins
K switch normally-open pushbutton push-button
$ENDCMP
#
$CMP SW_PUSH_SMALL
D Button
K switch
$CMP SW_PUSH_Small
D Push button switch, normally open, two pins, small symbol
K switch normally-open pushbutton push-button
$ENDCMP
#
$CMP SW_PUSH_SMALL_H
D Button
K switch
$CMP SW_PUSH_Small_Horizontal
D Push button switch, generic, small symbol, two pins
K switch normally-open pushbutton push-button
$ENDCMP
#
$CMP Switch_DPST
D Double Pole Single Throw (DPST) Switch
K switch
$CMP SW_SP3T
D Switch, three position, single pole triple throw, 3 position switch, SP3T
K switch sp3t ON-ON-ON
$ENDCMP
#
$CMP Switch_SPDT_x2
D Double Single Pole Double Throw (SPDT) switch
$CMP SW_SP3T_Small
D Switch, three position, single pole triple throw, 3 position switch, SP3T, small symbol
K switch sp3t ON-ON-ON
$ENDCMP
#
$CMP SW_SPDT
D Switch, single pole double throw
K switch single-pole double-throw spdt ON-ON
$ENDCMP
#
$CMP SW_SPDT_MSM
D Switch, single pole double throw, center OFF position
K switch spdt single-pole double-throw ON-OFF-ON
$ENDCMP
#
$CMP SW_SPDT_Small
D Switch, single pole double throw, small symbol
K switch single-pole double-throw spdt ON-ON
$ENDCMP
#
$CMP SW_SPDT_x2
D Dual Single Pole Double Throw switch
K switch single-pole double-throw spdt ON-ON
$ENDCMP
#
$CMP SW_SPST
D Single Pole Single Throw (SPST) switch
K switch OFF-ON
$ENDCMP
#
$CMP SW_SPST_Small
D Single Pole Single Throw (SPST) switch, small symbol
K switch lever
$ENDCMP
#
$CMP TEST
D Testpoint, connection for test equipment
K tp testpoint
$ENDCMP
#
$CMP THERMISTOR
D Resistance
K R DEV
D Thermistor, temperature-dependent resistor
K r res thermistor
$ENDCMP
#
$CMP THYRISTOR
D Diode simple
K DEV DIODE
D Solid-state thyristor, silicon-controlled rectifier, with gate pin
K scr diode switch
$ENDCMP
#
$CMP TRANSFORMER_1P_1S
D Transformer, single primary, single secondary
K transformer coil magnet
$ENDCMP
#
$CMP TRANSFORMER_1P_1S_SO8
D Transformer, single primary, single secondary, SO-8 package
K transformer coil magnet
$ENDCMP
#
$CMP TRANSFORMER_1P_2S
D Transformer, single primary, dual secondary
K transformer coil magnet
$ENDCMP
#
$CMP TRANSFORMER_AUDIO
D Audio transformer
K transformer coil magnet sound
$ENDCMP
#
$CMP TRANSFORMER_SP_1S
D Transformer, split primary, single secondary
K transformer coil magnet
$ENDCMP
#
$CMP TRANSFORMER_SP_2S
D Transformer, split primary, dual secondary
K transformer coil magnet
$ENDCMP
#
$CMP TVS
D Transient voltage suppressor diode (bi-directional)
K DEV TVS TRANSIENT SUPPROESSOR ESD
K tvs esd
$ENDCMP
#
$CMP VR
D VARISTANCE
K VR DEV
$CMP VARICAP
D Variable capacitor
K capacitor diode
$ENDCMP
#
$CMP VARISTOR
D Voltage dependent resistor
K vdr resistance
$ENDCMP
#
$CMP ZENER
D Diode zener
K DEV DIODE
K diode
$ENDCMP
#
$CMP ZENER_Small
D Zener diode, small symbol
K diode zener
$ENDCMP
#
#End Doc Library

File diff suppressed because it is too large Load diff

View file

@ -495,6 +495,42 @@ K op amp amplifier operational
F http://ww1.microchip.com/downloads/en/DeviceDoc/21314g.pdf
$ENDCMP
#
$CMP NCS210
D Bidirectional zero-drift current shunt, 200V/V gain, -0.3V to +26V common mode range
K Current sensor shunt monitor
F http://www.onsemi.com/pub_link/Collateral/NCS210-D.PDF
$ENDCMP
#
$CMP NCS211
D Bidirectional zero-drift current shunt, 500V/V gain, -0.3V to +26V common mode range
K Current sensor shunt monitor
F http://www.onsemi.com/pub_link/Collateral/NCS210-D.PDF
$ENDCMP
#
$CMP NCS212
D Bidirectional zero-drift current shunt, 1000V/V gain, -0.3V to +26V common mode range
K Current sensor shunt monitor
F http://www.onsemi.com/pub_link/Collateral/NCS210-D.PDF
$ENDCMP
#
$CMP NCS213
D Bidirectional zero-drift current shunt, 50V/V gain, -0.3V to +26V common mode range
K Current sensor shunt monitor
F http://www.onsemi.com/pub_link/Collateral/NCS210-D.PDF
$ENDCMP
#
$CMP NCS214
D Bidirectional zero-drift current shunt, 100V/V gain, -0.3V to +26V common mode range
K Current sensor shunt monitor
F http://www.onsemi.com/pub_link/Collateral/NCS210-D.PDF
$ENDCMP
#
$CMP NCS215
D Bidirectional zero-drift current shunt, 75V/V gain, -0.3V to +26V common mode range
K Current sensor shunt monitor
F http://www.onsemi.com/pub_link/Collateral/NCS210-D.PDF
$ENDCMP
#
$CMP NE5532
D Dual Op amp (low noice)
K ampliop
@ -555,4 +591,16 @@ K AmpliOp Mos
F http://www.ti.com.cn/cn/lit/ds/symlink/tlc274.pdf
$ENDCMP
#
$CMP LT1492
D Dual Low Power Single-Supply Precision OpAmps, 5MHz FBP, 3V/µs SR
K operational amplifier opamp Precision
F http://cds.linear.com/docs/en/datasheet/14923f.pdf
$ENDCMP
#
$CMP LT1493
D Quad Low Power Single-Supply Precision OpAmps, 5MHz FBP, 3V/µs SR, SSOP package
K operational amplifier opamp Precision
F http://cds.linear.com/docs/en/datasheet/14923f.pdf
$ENDCMP
#
#End Doc Library

View file

@ -1144,7 +1144,7 @@ ENDDEF
# MAX4080F
#
DEF MAX4080F U 0 40 Y Y 1 F N
F0 "U" -350 350 50 H V L CNN
F0 "U" -300 350 50 H V L CNN
F1 "MAX4080F" 100 350 50 H V L CNN
F2 "" 650 -700 50 H V C CNN
F3 "" 0 400 50 H I C CNN
@ -1154,22 +1154,22 @@ $FPLIST
MSOP*
$ENDFPLIST
DRAW
S -350 300 400 -200 0 1 10 f
X RS+ 1 -450 100 100 R 50 50 1 1 I
S -300 300 400 -200 0 1 10 f
X RS+ 1 -400 100 100 R 50 50 1 1 I
X Vcc 2 0 400 100 D 50 50 1 1 W
X NC 3 100 -300 100 U 50 50 1 1 N N
X GND 4 0 -300 100 U 50 50 1 1 W
X OUT 5 500 200 100 L 50 50 1 1 O
X NC 6 200 -300 100 U 50 50 1 1 N N
X NC 7 300 -300 100 U 50 50 1 1 N N
X RS- 8 -450 -100 100 R 50 50 1 1 I
X RS- 8 -400 -100 100 R 50 50 1 1 I
ENDDRAW
ENDDEF
#
# MAX4081F
#
DEF MAX4081F U 0 40 Y Y 1 F N
F0 "U" -350 350 50 H V L CNN
F0 "U" -300 350 50 H V L CNN
F1 "MAX4081F" 100 350 50 H V L CNN
F2 "" 650 -700 50 H V C CNN
F3 "" 650 -700 50 H V C CNN
@ -1179,15 +1179,15 @@ $FPLIST
MSOP*
$ENDFPLIST
DRAW
S -350 300 400 -200 0 1 10 f
X RS+ 1 -450 100 100 R 50 50 1 1 I
S -300 300 400 -200 0 1 10 f
X RS+ 1 -400 100 100 R 50 50 1 1 I
X Vcc 2 0 400 100 D 50 50 1 1 I
X NC 3 500 100 100 L 50 50 1 1 N N
X GND 4 0 -300 100 U 50 50 1 1 I
X OUT 5 500 200 100 L 50 50 1 1 I
X REF1B 6 500 -100 100 L 50 50 1 1 I
X REF1A 7 500 0 100 L 50 50 1 1 I
X RS- 8 -450 -100 100 R 50 50 1 1 I
X RS- 8 -400 -100 100 R 50 50 1 1 I
ENDDRAW
ENDDEF
#
@ -1323,6 +1323,28 @@ X V- 5 -100 -300 150 U 50 50 1 1 I
ENDDRAW
ENDDEF
#
# NCS210
#
DEF NCS210 U 0 40 Y Y 1 F N
F0 "U" -300 350 50 H V L CNN
F1 "NCS210" 100 350 50 H V L CNN
F2 "TO_SOT_Packages_SMD:SC-70-6" 0 -400 50 H I C CNN
F3 "" 0 0 50 H I C CNN
ALIAS NCS212 NCS211 NCS213 NCS214 NCS215
$FPLIST
SC-70*
$ENDFPLIST
DRAW
S -300 300 400 -200 0 1 10 f
X REF 1 500 0 100 L 50 50 1 1 I
X GND 2 0 -300 100 U 50 50 1 1 W
X Vs 3 0 400 100 D 50 50 1 1 W
X +IN 4 -400 100 100 R 50 50 1 1 I
X -IN 5 -400 -100 100 R 50 50 1 1 I
X OUT 6 500 200 100 L 50 50 1 1 O
ENDDRAW
ENDDEF
#
# OP275
#
DEF OP275 U 0 10 Y Y 2 F N
@ -1390,4 +1412,59 @@ X V+ 7 -100 300 150 D 50 50 1 1 P
ENDDRAW
ENDDEF
#
# LT1492
#
DEF LT1492 U 0 20 Y Y 2 F N
F0 "U" 0 200 50 H V L CNN
F1 "LT1492" 0 -200 50 H V L CNN
F2 "" 0 0 50 H V C CNN
F3 "" 0 0 50 H V C CNN
$FPLIST
DIL-8-300
DIP-8
DIL-8
SOIC-8
$ENDFPLIST
DRAW
P 4 0 1 10 -200 200 200 0 -200 -200 -200 200 f
X V- 4 -100 -300 150 U 50 50 0 1 W
X V+ 8 -100 300 150 D 50 50 0 1 W
X ~ 1 300 0 100 L 50 50 1 1 O
X - 2 -300 -100 100 R 50 50 1 1 I
X + 3 -300 100 100 R 50 50 1 1 I
X + 5 -300 100 100 R 50 50 2 1 I
X - 6 -300 -100 100 R 50 50 2 1 I
X ~ 7 300 0 100 L 50 50 2 1 O
ENDDRAW
ENDDEF
#
# LT1493
#
DEF LT1493 U 0 20 Y Y 4 F N
F0 "U" 0 200 50 H V L CNN
F1 "LT1493" 0 -200 50 H V L CNN
F2 "" -50 100 50 H V C CNN
F3 "" 50 200 50 H V C CNN
$FPLIST
SOIC-16
$ENDFPLIST
DRAW
P 4 0 1 10 -200 200 200 0 -200 -200 -200 200 f
X V- 13 -100 -300 150 U 50 50 0 1 W
X V+ 4 -100 300 150 D 50 50 0 1 W
X ~ 1 300 0 100 L 50 50 1 1 O
X - 2 -300 -100 100 R 50 50 1 1 I
X + 3 -300 100 100 R 50 50 1 1 I
X + 5 -300 100 100 R 50 50 2 1 I
X - 6 -300 -100 100 R 50 50 2 1 I
X ~ 7 300 0 100 L 50 50 2 1 O
X ~ 10 300 0 100 L 50 50 3 1 O
X - 11 -300 -100 100 R 50 50 3 1 I
X + 12 -300 100 100 R 50 50 3 1 I
X + 14 -300 100 100 R 50 50 4 1 I
X - 15 -300 -100 100 R 50 50 4 1 I
X ~ 16 300 0 100 L 50 50 4 1 O
ENDDRAW
ENDDEF
#
#End Library

View file

@ -1,45 +1,87 @@
EESchema-DOCLIB Version 2.0
#
$CMP ENC28J60-C/SS
D ENC28J60 Single Chip Ethernet Interface, SSOP-28
K ENC Ethernet
F http://ww1.microchip.com/downloads/en/devicedoc/39662a.pdf
$ENDCMP
#
$CMP ENC28J60-I/ML
D ENC28J60 Single Chip Ethernet Interface, QFN-28+EP
K ENC Ethernet
F http://ww1.microchip.com/downloads/en/devicedoc/39662a.pdf
$ENDCMP
#
$CMP ENC28J60-I/SO
D ENC28J60 Single Chip Ethernet Interface, SOIC-28
K ENC Ethernet
F http://ww1.microchip.com/downloads/en/devicedoc/39662a.pdf
$ENDCMP
#
$CMP ENC28J60-I/SP
D ENC28J60 Single Chip Ethernet Interface, PDIP-28
K ENC Ethernet
F http://ww1.microchip.com/downloads/en/devicedoc/39662a.pdf
$ENDCMP
#
$CMP MCP2515-E/ST
D Stand-Alone CAN Controller with SPI Interface, TSSOP-20, Extended temperature range
K CAN Controller SPI
F http://ww1.microchip.com/downloads/en/DeviceDoc/21801e.pdf
$ENDCMP
#
$CMP MCP2515-I/ST
D Stand-Alone CAN Controller with SPI Interface, TSSOP-20, Industrial temperature range
K CAN Controller SPI
F http://ww1.microchip.com/downloads/en/DeviceDoc/21801e.pdf
$ENDCMP
#
$CMP USB3300
D Hi-Speed USB Host, Device or OTG PHY with ULPI Interface
K USB OTG Hi-Speed PHY ULPI Interface
F http://microchip.com/downloads/en/DeviceDoc/00001783A.pdf
$ENDCMP
#
#End Doc Library
EESchema-DOCLIB Version 2.0
#
$CMP ENC28J60-C/SS
D ENC28J60 Single Chip Ethernet Interface, SSOP-28
K ENC Ethernet
F http://ww1.microchip.com/downloads/en/devicedoc/39662a.pdf
$ENDCMP
#
$CMP ENC28J60-I/ML
D ENC28J60 Single Chip Ethernet Interface, QFN-28+EP
K ENC Ethernet
F http://ww1.microchip.com/downloads/en/devicedoc/39662a.pdf
$ENDCMP
#
$CMP ENC28J60-I/SO
D ENC28J60 Single Chip Ethernet Interface, SOIC-28
K ENC Ethernet
F http://ww1.microchip.com/downloads/en/devicedoc/39662a.pdf
$ENDCMP
#
$CMP ENC28J60-I/SP
D ENC28J60 Single Chip Ethernet Interface, PDIP-28
K ENC Ethernet
F http://ww1.microchip.com/downloads/en/devicedoc/39662a.pdf
$ENDCMP
#
$CMP MCP23008
D 8-Bit I/O Expander with I²C Interface (PDIP/SOIC)
K IO Expander I²C IIC I2C
F http://ww1.microchip.com/downloads/en/DeviceDoc/21919e.pdf
$ENDCMP
#
$CMP MCP23008_SSOP
D 8-Bit I/O Expander with I²C Interface (SSOP)
K IO Expander I²C IIC I2C
F http://ww1.microchip.com/downloads/en/DeviceDoc/21919e.pdf
$ENDCMP
#
$CMP MCP23016
D 16-Bit I/O Expander with I²C Interface (PDIP/SOIC/SSOP)
K IO Expander I²C IIC I2C
F http://ww1.microchip.com/downloads/en/DeviceDoc/20090C.pdf
$ENDCMP
#
$CMP MCP23017
D 16-Bit I/O Expander with I²C Interface (PDIP/SOIC/SSOP)
K IO Expander I²C IIC I2C
F http://ww1.microchip.com/downloads/en/DeviceDoc/20001952C.pdf
$ENDCMP
#
$CMP MCP23S08
D 8-Bit I/O Expander with SPI Interface (PDIP/SOIC)
K IO Expander SPI
F http://ww1.microchip.com/downloads/en/DeviceDoc/21919e.pdf
$ENDCMP
#
$CMP MCP23S08_SSOP
D 8-Bit I/O Expander with SPI Interface (SSOP)
K IO Expander SPI
F http://ww1.microchip.com/downloads/en/DeviceDoc/21919e.pdf
$ENDCMP
#
$CMP MCP23S17
D 16-Bit I/O Expander with SPI Interface (PDIP/SOIC/SSOP)
K IO Expander SPI
F http://ww1.microchip.com/downloads/en/DeviceDoc/20001952C.pdf
$ENDCMP
#
$CMP MCP2515-E/ST
D Stand-Alone CAN Controller with SPI Interface, TSSOP-20, Extended temperature range
K CAN Controller SPI
F http://ww1.microchip.com/downloads/en/DeviceDoc/21801e.pdf
$ENDCMP
#
$CMP MCP2515-I/ST
D Stand-Alone CAN Controller with SPI Interface, TSSOP-20, Industrial temperature range
K CAN Controller SPI
F http://ww1.microchip.com/downloads/en/DeviceDoc/21801e.pdf
$ENDCMP
#
$CMP USB3300
D Hi-Speed USB Host, Device or OTG PHY with ULPI Interface
K USB OTG Hi-Speed PHY ULPI Interface
F http://microchip.com/downloads/en/DeviceDoc/00001783A.pdf
$ENDCMP
#
#End Doc Library

View file

@ -1,261 +1,526 @@
EESchema-LIBRARY Version 2.3
#encoding utf-8
#
# ENC28J60-C/SS
#
DEF ENC28J60-C/SS IC 0 40 Y Y 1 F N
F0 "IC" -550 950 50 H V L CNN
F1 "ENC28J60-C/SS" 200 950 50 H V L CNN
F2 "SSOP-28" 0 0 50 H V C CIN
F3 "" 0 0 50 H V C CNN
$FPLIST
SSOP*
$ENDFPLIST
DRAW
S -550 900 550 -900 0 1 10 f
X VCAP 1 700 -800 150 L 50 50 1 1 I
X VSS 2 -100 -1050 150 U 50 50 1 1 W
X CLKOUT 3 -700 -800 150 R 50 50 1 1 O
X ~INT 4 -700 100 150 R 50 50 1 1 O
X ~WOL 5 -700 0 150 R 50 50 1 1 O
X SO 6 -700 500 150 R 50 50 1 1 O
X SI 7 -700 600 150 R 50 50 1 1 I
X SCK 8 -700 400 150 R 50 50 1 1 I
X ~CS 9 -700 300 150 R 50 50 1 1 I
X ~RESET 10 -700 800 150 R 50 50 1 1 I
X VDDPLL 20 100 1050 150 D 50 50 1 1 W
X VSSRX 11 700 200 150 L 50 50 1 1 W
X VSSPLL 21 100 -1050 150 U 50 50 1 1 W
X TPIN- 12 700 300 150 L 50 50 1 1 I
X VSSOSC 22 -700 -600 150 R 50 50 1 1 W
X TPIN+ 13 700 400 150 L 50 50 1 1 I
X OSC1 23 -700 -300 150 R 50 50 1 1 I
X RBIAS 14 700 -600 150 L 50 50 1 1 I
X OSC2 24 -700 -500 150 R 50 50 1 1 I
X VDDTX 15 700 0 150 L 50 50 1 1 W
X VDDOSC 25 -700 -200 150 R 50 50 1 1 W
X TPOUT- 16 700 -200 150 L 50 50 1 1 O
X LEDB 26 700 700 150 L 50 50 1 1 O
X TPOUT+ 17 700 -100 150 L 50 50 1 1 O
X LEDA 27 700 800 150 L 50 50 1 1 O
X VSSTX 18 700 -300 150 L 50 50 1 1 W
X VDD 28 -100 1050 150 D 50 50 1 1 W
X VDDRX 19 700 500 150 L 50 50 1 1 W
ENDDRAW
ENDDEF
#
# ENC28J60-I/ML
#
DEF ENC28J60-I/ML IC 0 40 Y Y 1 F N
F0 "IC" -550 950 50 H V L CNN
F1 "ENC28J60-I/ML" 200 950 50 H V L CNN
F2 "QFN-28" 0 0 50 H V C CIN
F3 "" 0 0 50 H V C CNN
$FPLIST
QFP*
$ENDFPLIST
DRAW
S -550 900 550 -900 0 1 10 f
X ~WOL 1 -700 0 150 R 50 50 1 1 O
X SO 2 -700 500 150 R 50 50 1 1 O
X SI 3 -700 600 150 R 50 50 1 1 I
X SCK 4 -700 400 150 R 50 50 1 1 I
X ~CS 5 -700 300 150 R 50 50 1 1 I
X ~RESET 6 -700 800 150 R 50 50 1 1 I
X VSSRX 7 700 200 150 L 50 50 1 1 w
X TPIN- 8 700 300 150 L 50 50 1 1 I
X TPIN+ 9 700 400 150 L 50 50 1 1 I
X RBIAS 10 700 -600 150 L 50 50 1 1 I
X OSC2 20 -700 -500 150 R 50 50 1 1 O
X VDDTX 11 700 0 150 L 50 50 1 1 W
X VDDOSC 21 -700 -200 150 R 50 50 1 1 W
X TPOUT- 12 700 -200 150 L 50 50 1 1 O
X LEDB 22 700 700 150 L 50 50 1 1 O
X TPOUT+ 13 700 -100 150 L 50 50 1 1 O
X LEDA 23 700 800 150 L 50 50 1 1 O
X VSSTX 14 700 -300 150 L 50 50 1 1 w
X VDD 24 -100 1050 150 D 50 50 1 1 W
X VDDRX 15 700 500 150 L 50 50 1 1 W
X VCAP 25 700 -800 150 L 50 50 1 1 I
X VDDPLL 16 100 1050 150 D 50 50 1 1 W
X VSS 26 -100 -1050 150 U 50 50 1 1 W
X VSSPLL 17 100 -1050 150 U 50 50 1 1 W
X CLKOUT 27 -700 -800 150 R 50 50 1 1 O
X VSSOSC 18 -700 -600 150 R 50 50 1 1 W
X ~INT 28 -700 100 150 R 50 50 1 1 O
X OSC1 19 -700 -300 150 R 50 50 1 1 I
ENDDRAW
ENDDEF
#
# ENC28J60-I/SO
#
DEF ENC28J60-I/SO IC 0 40 Y Y 1 F N
F0 "IC" -550 950 50 H V L CNN
F1 "ENC28J60-I/SO" 200 950 50 H V L CNN
F2 "SOIC-28" 0 0 50 H V C CIN
F3 "" 0 0 50 H V C CNN
$FPLIST
SOIC*
$ENDFPLIST
DRAW
S -550 900 550 -900 0 1 10 f
X VCAP 1 700 -800 150 L 50 50 1 1 I
X VSS 2 -100 -1050 150 U 50 50 1 1 W
X CLKOUT 3 -700 -800 150 R 50 50 1 1 O
X ~INT 4 -700 100 150 R 50 50 1 1 O
X ~WOL 5 -700 0 150 R 50 50 1 1 O
X SO 6 -700 500 150 R 50 50 1 1 O
X SI 7 -700 600 150 R 50 50 1 1 I
X SCK 8 -700 400 150 R 50 50 1 1 I
X ~CS 9 -700 300 150 R 50 50 1 1 I
X ~RESET 10 -700 800 150 R 50 50 1 1 I
X VDDPLL 20 100 1050 150 D 50 50 1 1 W
X VSSRX 11 700 200 150 L 50 50 1 1 W
X VSSPLL 21 100 -1050 150 U 50 50 1 1 W
X TPIN- 12 700 300 150 L 50 50 1 1 I
X VSSOSC 22 -700 -600 150 R 50 50 1 1 W
X TPIN+ 13 700 400 150 L 50 50 1 1 I
X OSC1 23 -700 -300 150 R 50 50 1 1 I
X RBIAS 14 700 -600 150 L 50 50 1 1 I
X OSC2 24 -700 -500 150 R 50 50 1 1 I
X VDDTX 15 700 0 150 L 50 50 1 1 W
X VDDOSC 25 -700 -200 150 R 50 50 1 1 W
X TPOUT- 16 700 -200 150 L 50 50 1 1 O
X LEDB 26 700 700 150 L 50 50 1 1 O
X TPOUT+ 17 700 -100 150 L 50 50 1 1 O
X LEDA 27 700 800 150 L 50 50 1 1 O
X VSSTX 18 700 -300 150 L 50 50 1 1 W
X VDD 28 -100 1050 150 D 50 50 1 1 W
X VDDRX 19 700 500 150 L 50 50 1 1 W
ENDDRAW
ENDDEF
#
# ENC28J60-I/SP
#
DEF ENC28J60-I/SP IC 0 40 Y Y 1 F N
F0 "IC" -550 950 50 H V L CNN
F1 "ENC28J60-I/SP" 200 950 50 H V L CNN
F2 "DIP-28" 0 0 50 H V C CIN
F3 "" 0 0 50 H V C CNN
$FPLIST
DIP*
PDIP*
$ENDFPLIST
DRAW
S -550 900 550 -900 0 1 10 f
X VCAP 1 700 -800 150 L 50 50 1 1 I
X VSS 2 -100 -1050 150 U 50 50 1 1 W
X CLKOUT 3 -700 -800 150 R 50 50 1 1 O
X ~INT 4 -700 100 150 R 50 50 1 1 O
X ~WOL 5 -700 0 150 R 50 50 1 1 O
X SO 6 -700 500 150 R 50 50 1 1 O
X SI 7 -700 600 150 R 50 50 1 1 I
X SCK 8 -700 400 150 R 50 50 1 1 I
X ~CS 9 -700 300 150 R 50 50 1 1 I
X ~RESET 10 -700 800 150 R 50 50 1 1 I
X VDDPLL 20 100 1050 150 D 50 50 1 1 W
X VSSRX 11 700 200 150 L 50 50 1 1 W
X VSSPLL 21 100 -1050 150 U 50 50 1 1 W
X TPIN- 12 700 300 150 L 50 50 1 1 I
X VSSOSC 22 -700 -600 150 R 50 50 1 1 W
X TPIN+ 13 700 400 150 L 50 50 1 1 I
X OSC1 23 -700 -300 150 R 50 50 1 1 I
X RBIAS 14 700 -600 150 L 50 50 1 1 I
X OSC2 24 -700 -500 150 R 50 50 1 1 I
X VDDTX 15 700 0 150 L 50 50 1 1 W
X VDDOSC 25 -700 -200 150 R 50 50 1 1 W
X TPOUT- 16 700 -200 150 L 50 50 1 1 O
X LEDB 26 700 700 150 L 50 50 1 1 O
X TPOUT+ 17 700 -100 150 L 50 50 1 1 O
X LEDA 27 700 800 150 L 50 50 1 1 O
X VSSTX 18 700 -300 150 L 50 50 1 1 W
X VDD 28 -100 1050 150 D 50 50 1 1 W
X VDDRX 19 700 500 150 L 50 50 1 1 W
ENDDRAW
ENDDEF
#
# MCP2515-E/ST
#
DEF MCP2515-E/ST U 0 40 Y Y 1 F N
F0 "U" -400 775 50 H V R CNN
F1 "MCP2515-E/ST" 750 800 50 H V R TNN
F2 "Housings_SSOP:TSSOP-20_4.4x6.5mm_Pitch0.65mm" 0 -900 50 H I C CIN
F3 "" 100 -800 50 H V C CNN
ALIAS MCP2515-I/ST
$FPLIST
TSSOP*
$ENDFPLIST
DRAW
S -500 700 500 -700 0 1 10 f
X TXCAN 1 600 500 100 L 50 50 1 1 O
X RXCAN 2 600 600 100 L 50 50 1 1 I
X CLKOUT/SOF 3 -600 -400 100 R 50 50 1 1 O
X ~TX0RTS 4 600 -300 100 L 50 50 1 1 I
X ~TX1RTS 5 600 -400 100 L 50 50 1 1 I
X NC 6 -600 0 100 R 50 50 1 1 N N
X ~TX2RTS 7 600 -500 100 L 50 50 1 1 I
X OSC2 8 -600 -200 100 R 50 50 1 1 O
X OSC1 9 -600 -300 100 R 50 50 1 1 I C
X VSS 10 0 -800 100 U 50 50 1 1 W
X VDD 20 0 800 100 D 50 50 1 1 W
X ~RX1BF 11 600 -200 100 L 50 50 1 1 O
X ~RX0BF 12 600 -100 100 L 50 50 1 1 O
X ~INT 13 600 0 100 L 50 50 1 1 O
X SCK 14 -600 300 100 R 50 50 1 1 I
X NC 15 -600 -100 100 R 50 50 1 1 N N
X SI 16 -600 600 100 R 50 50 1 1 I
X SO 17 -600 500 100 R 50 50 1 1 O
X ~CS 18 -600 400 100 R 50 50 1 1 I
X ~RESET 19 600 -600 100 L 50 50 1 1 I
ENDDRAW
ENDDEF
#
# USB3300
#
DEF USB3300 U 0 40 Y Y 1 F N
F0 "U" 0 50 50 H V C CNN
F1 "USB3300" 0 -50 50 H V C CNN
F2 "" 0 0 50 H V C CNN
F3 "" 0 0 50 H V C CNN
$FPLIST
*QFN*32*
$ENDFPLIST
DRAW
S 650 -950 -650 950 0 1 0 f
X GND 1 -100 -1100 150 U 50 50 1 1 W
X GND 2 0 -1100 150 U 50 50 1 1 W
X CPEN 3 -800 -200 150 R 50 50 1 1 O
X VBUS 4 -800 700 150 R 50 50 1 1 W
X ID 5 -800 400 150 R 50 50 1 1 I
X VDD3.3 6 -200 1100 150 D 50 50 1 1 W
X DP 7 -800 500 150 R 50 50 1 1 B
X DM 8 -800 600 150 R 50 50 1 1 B
X RESET 9 800 -800 150 L 50 50 1 1 I
X EXTVBUS 10 -800 -300 150 R 50 50 1 1 I
X DATA4 20 800 100 150 L 50 50 1 1 B
X VDD3.3 30 100 1100 150 D 50 50 1 1 W
X NXT 11 800 -400 150 L 50 50 1 1 O
X DATA3 21 800 0 150 L 50 50 1 1 B
X REG_EN 31 -800 -500 150 R 50 50 1 1 B
X DIR 12 800 -500 150 L 50 50 1 1 O
X DATA2 22 800 -100 150 L 50 50 1 1 B
X RBIAS 32 -800 -700 150 R 50 50 1 1 P
X STP 13 800 -600 150 L 50 50 1 1 I
X DATA1 23 800 -200 150 L 50 50 1 1 B
X GND 33 100 -1100 150 U 50 50 1 1 W
X CLKOUT 14 800 -700 150 L 50 50 1 1 O
X DATA0 24 800 -300 150 L 50 50 1 1 B
X VDD1.8 15 800 800 150 L 50 50 1 1 w
X VDD3.3 25 0 1100 150 D 50 50 1 1 W
X VDD3.3 16 -100 1100 150 D 50 50 1 1 W
X VDD1.8 26 800 700 150 L 50 50 1 1 w
X DATA7 17 800 400 150 L 50 50 1 1 B
X XO 27 -800 200 150 R 50 50 1 1 O
X DATA6 18 800 300 150 L 50 50 1 1 B
X XI 28 -800 0 150 R 50 50 1 1 I
X DATA5 19 800 200 150 L 50 50 1 1 B
X VDDA1.8 29 800 600 150 L 50 50 1 1 w
ENDDRAW
ENDDEF
#
#End Library
EESchema-LIBRARY Version 2.3
#encoding utf-8
#
# ENC28J60-C/SS
#
DEF ENC28J60-C/SS IC 0 40 Y Y 1 F N
F0 "IC" -550 950 50 H V L CNN
F1 "ENC28J60-C/SS" 200 950 50 H V L CNN
F2 "SSOP-28" 0 0 50 H V C CIN
F3 "" 0 0 50 H V C CNN
$FPLIST
SSOP*
$ENDFPLIST
DRAW
S -550 900 550 -900 0 1 10 f
X VCAP 1 700 -800 150 L 50 50 1 1 I
X VSS 2 -100 -1050 150 U 50 50 1 1 W
X CLKOUT 3 -700 -800 150 R 50 50 1 1 O
X ~INT 4 -700 100 150 R 50 50 1 1 O
X ~WOL 5 -700 0 150 R 50 50 1 1 O
X SO 6 -700 500 150 R 50 50 1 1 O
X SI 7 -700 600 150 R 50 50 1 1 I
X SCK 8 -700 400 150 R 50 50 1 1 I
X ~CS 9 -700 300 150 R 50 50 1 1 I
X ~RESET 10 -700 800 150 R 50 50 1 1 I
X VDDPLL 20 100 1050 150 D 50 50 1 1 W
X VSSRX 11 700 200 150 L 50 50 1 1 W
X VSSPLL 21 100 -1050 150 U 50 50 1 1 W
X TPIN- 12 700 300 150 L 50 50 1 1 I
X VSSOSC 22 -700 -600 150 R 50 50 1 1 W
X TPIN+ 13 700 400 150 L 50 50 1 1 I
X OSC1 23 -700 -300 150 R 50 50 1 1 I
X RBIAS 14 700 -600 150 L 50 50 1 1 I
X OSC2 24 -700 -500 150 R 50 50 1 1 I
X VDDTX 15 700 0 150 L 50 50 1 1 W
X VDDOSC 25 -700 -200 150 R 50 50 1 1 W
X TPOUT- 16 700 -200 150 L 50 50 1 1 O
X LEDB 26 700 700 150 L 50 50 1 1 O
X TPOUT+ 17 700 -100 150 L 50 50 1 1 O
X LEDA 27 700 800 150 L 50 50 1 1 O
X VSSTX 18 700 -300 150 L 50 50 1 1 W
X VDD 28 -100 1050 150 D 50 50 1 1 W
X VDDRX 19 700 500 150 L 50 50 1 1 W
ENDDRAW
ENDDEF
#
# ENC28J60-I/ML
#
DEF ENC28J60-I/ML IC 0 40 Y Y 1 F N
F0 "IC" -550 950 50 H V L CNN
F1 "ENC28J60-I/ML" 200 950 50 H V L CNN
F2 "QFN-28" 0 0 50 H V C CIN
F3 "" 0 0 50 H V C CNN
$FPLIST
QFP*
$ENDFPLIST
DRAW
S -550 900 550 -900 0 1 10 f
X ~WOL 1 -700 0 150 R 50 50 1 1 O
X SO 2 -700 500 150 R 50 50 1 1 O
X SI 3 -700 600 150 R 50 50 1 1 I
X SCK 4 -700 400 150 R 50 50 1 1 I
X ~CS 5 -700 300 150 R 50 50 1 1 I
X ~RESET 6 -700 800 150 R 50 50 1 1 I
X VSSRX 7 700 200 150 L 50 50 1 1 w
X TPIN- 8 700 300 150 L 50 50 1 1 I
X TPIN+ 9 700 400 150 L 50 50 1 1 I
X RBIAS 10 700 -600 150 L 50 50 1 1 I
X OSC2 20 -700 -500 150 R 50 50 1 1 O
X VDDTX 11 700 0 150 L 50 50 1 1 W
X VDDOSC 21 -700 -200 150 R 50 50 1 1 W
X TPOUT- 12 700 -200 150 L 50 50 1 1 O
X LEDB 22 700 700 150 L 50 50 1 1 O
X TPOUT+ 13 700 -100 150 L 50 50 1 1 O
X LEDA 23 700 800 150 L 50 50 1 1 O
X VSSTX 14 700 -300 150 L 50 50 1 1 w
X VDD 24 -100 1050 150 D 50 50 1 1 W
X VDDRX 15 700 500 150 L 50 50 1 1 W
X VCAP 25 700 -800 150 L 50 50 1 1 I
X VDDPLL 16 100 1050 150 D 50 50 1 1 W
X VSS 26 -100 -1050 150 U 50 50 1 1 W
X VSSPLL 17 100 -1050 150 U 50 50 1 1 W
X CLKOUT 27 -700 -800 150 R 50 50 1 1 O
X VSSOSC 18 -700 -600 150 R 50 50 1 1 W
X ~INT 28 -700 100 150 R 50 50 1 1 O
X OSC1 19 -700 -300 150 R 50 50 1 1 I
ENDDRAW
ENDDEF
#
# ENC28J60-I/SO
#
DEF ENC28J60-I/SO IC 0 40 Y Y 1 F N
F0 "IC" -550 950 50 H V L CNN
F1 "ENC28J60-I/SO" 200 950 50 H V L CNN
F2 "SOIC-28" 0 0 50 H V C CIN
F3 "" 0 0 50 H V C CNN
$FPLIST
SOIC*
$ENDFPLIST
DRAW
S -550 900 550 -900 0 1 10 f
X VCAP 1 700 -800 150 L 50 50 1 1 I
X VSS 2 -100 -1050 150 U 50 50 1 1 W
X CLKOUT 3 -700 -800 150 R 50 50 1 1 O
X ~INT 4 -700 100 150 R 50 50 1 1 O
X ~WOL 5 -700 0 150 R 50 50 1 1 O
X SO 6 -700 500 150 R 50 50 1 1 O
X SI 7 -700 600 150 R 50 50 1 1 I
X SCK 8 -700 400 150 R 50 50 1 1 I
X ~CS 9 -700 300 150 R 50 50 1 1 I
X ~RESET 10 -700 800 150 R 50 50 1 1 I
X VDDPLL 20 100 1050 150 D 50 50 1 1 W
X VSSRX 11 700 200 150 L 50 50 1 1 W
X VSSPLL 21 100 -1050 150 U 50 50 1 1 W
X TPIN- 12 700 300 150 L 50 50 1 1 I
X VSSOSC 22 -700 -600 150 R 50 50 1 1 W
X TPIN+ 13 700 400 150 L 50 50 1 1 I
X OSC1 23 -700 -300 150 R 50 50 1 1 I
X RBIAS 14 700 -600 150 L 50 50 1 1 I
X OSC2 24 -700 -500 150 R 50 50 1 1 I
X VDDTX 15 700 0 150 L 50 50 1 1 W
X VDDOSC 25 -700 -200 150 R 50 50 1 1 W
X TPOUT- 16 700 -200 150 L 50 50 1 1 O
X LEDB 26 700 700 150 L 50 50 1 1 O
X TPOUT+ 17 700 -100 150 L 50 50 1 1 O
X LEDA 27 700 800 150 L 50 50 1 1 O
X VSSTX 18 700 -300 150 L 50 50 1 1 W
X VDD 28 -100 1050 150 D 50 50 1 1 W
X VDDRX 19 700 500 150 L 50 50 1 1 W
ENDDRAW
ENDDEF
#
# ENC28J60-I/SP
#
DEF ENC28J60-I/SP IC 0 40 Y Y 1 F N
F0 "IC" -550 950 50 H V L CNN
F1 "ENC28J60-I/SP" 200 950 50 H V L CNN
F2 "DIP-28" 0 0 50 H V C CIN
F3 "" 0 0 50 H V C CNN
$FPLIST
DIP*
PDIP*
$ENDFPLIST
DRAW
S -550 900 550 -900 0 1 10 f
X VCAP 1 700 -800 150 L 50 50 1 1 I
X VSS 2 -100 -1050 150 U 50 50 1 1 W
X CLKOUT 3 -700 -800 150 R 50 50 1 1 O
X ~INT 4 -700 100 150 R 50 50 1 1 O
X ~WOL 5 -700 0 150 R 50 50 1 1 O
X SO 6 -700 500 150 R 50 50 1 1 O
X SI 7 -700 600 150 R 50 50 1 1 I
X SCK 8 -700 400 150 R 50 50 1 1 I
X ~CS 9 -700 300 150 R 50 50 1 1 I
X ~RESET 10 -700 800 150 R 50 50 1 1 I
X VDDPLL 20 100 1050 150 D 50 50 1 1 W
X VSSRX 11 700 200 150 L 50 50 1 1 W
X VSSPLL 21 100 -1050 150 U 50 50 1 1 W
X TPIN- 12 700 300 150 L 50 50 1 1 I
X VSSOSC 22 -700 -600 150 R 50 50 1 1 W
X TPIN+ 13 700 400 150 L 50 50 1 1 I
X OSC1 23 -700 -300 150 R 50 50 1 1 I
X RBIAS 14 700 -600 150 L 50 50 1 1 I
X OSC2 24 -700 -500 150 R 50 50 1 1 I
X VDDTX 15 700 0 150 L 50 50 1 1 W
X VDDOSC 25 -700 -200 150 R 50 50 1 1 W
X TPOUT- 16 700 -200 150 L 50 50 1 1 O
X LEDB 26 700 700 150 L 50 50 1 1 O
X TPOUT+ 17 700 -100 150 L 50 50 1 1 O
X LEDA 27 700 800 150 L 50 50 1 1 O
X VSSTX 18 700 -300 150 L 50 50 1 1 W
X VDD 28 -100 1050 150 D 50 50 1 1 W
X VDDRX 19 700 500 150 L 50 50 1 1 W
ENDDRAW
ENDDEF
#
# MCP23008
#
DEF MCP23008 U 0 40 Y Y 1 F N
F0 "U" -100 625 50 H V R CNN
F1 "MCP23008" -100 550 50 H V R CNN
F2 "" 50 -650 50 H I L CNN
F3 "" 250 600 50 H I C CNN
$FPLIST
DIP-18
SOIC-18
$ENDFPLIST
DRAW
S -400 500 400 -600 0 1 10 f
X SCL 1 500 0 100 L 50 50 1 1 I
X SDA 2 500 -100 100 L 50 50 1 1 B
X A2 3 500 -500 100 L 50 50 1 1 I
X A1 4 500 -400 100 L 50 50 1 1 I
X A0 5 500 -300 100 L 50 50 1 1 I
X ~RESET 6 500 400 100 L 50 50 1 1 I
X INT 8 500 300 100 L 50 50 1 1 O
X GND 9 0 -700 100 U 50 50 1 1 W
X GPB0 10 -500 300 100 R 50 50 1 1 B
X GPB1 11 -500 200 100 R 50 50 1 1 B
X GPB2 12 -500 100 100 R 50 50 1 1 B
X GPB3 13 -500 0 100 R 50 50 1 1 B
X GPB4 14 -500 -100 100 R 50 50 1 1 B
X GPB5 15 -500 -200 100 R 50 50 1 1 B
X GPB6 16 -500 -300 100 R 50 50 1 1 B
X GPB7 17 -500 -400 100 R 50 50 1 1 B
X VCC 18 0 600 100 D 50 50 1 1 W
ENDDRAW
ENDDEF
#
# MCP23008_SSOP
#
DEF MCP23008_SSOP U 0 40 Y Y 1 F N
F0 "U" -100 625 50 H V R CNN
F1 "MCP23008_SSOP" -100 550 50 H V R CNN
F2 "" 50 -650 50 H I L CNN
F3 "" 250 600 50 H I C CNN
$FPLIST
SSOP-20
$ENDFPLIST
DRAW
S -400 500 400 -600 0 1 10 f
X SCL 1 500 0 100 L 50 50 1 1 I
X SDA 2 500 -100 100 L 50 50 1 1 B
X A2 3 500 -500 100 L 50 50 1 1 I
X A1 4 500 -400 100 L 50 50 1 1 I
X A0 5 500 -300 100 L 50 50 1 1 I
X ~RESET 6 500 400 100 L 50 50 1 1 I
X INT 8 500 300 100 L 50 50 1 1 O
X GND 9 0 -700 100 U 50 50 1 1 W
X GPB0 12 -500 300 100 R 50 50 1 1 B
X GPB1 13 -500 200 100 R 50 50 1 1 B
X GPB2 14 -500 100 100 R 50 50 1 1 B
X GPB3 15 -500 0 100 R 50 50 1 1 B
X GPB4 16 -500 -100 100 R 50 50 1 1 B
X GPB5 17 -500 -200 100 R 50 50 1 1 B
X GPB6 18 -500 -300 100 R 50 50 1 1 B
X GPB7 19 -500 -400 100 R 50 50 1 1 B
X VCC 20 0 600 100 D 50 50 1 1 W
ENDDRAW
ENDDEF
#
# MCP23016
#
DEF MCP23016 U 0 40 Y Y 1 F N
F0 "U" -100 1025 50 H V R CNN
F1 "MCP23016" -100 950 50 H V R CNN
F2 "" 150 -950 50 H I L CNN
F3 "" 250 1000 50 H I C CNN
$FPLIST
DIP-28_W7.62mm*
SOIC-28
SSOP-28
$ENDFPLIST
DRAW
S -400 900 400 -900 0 1 10 f
X GND 1 -100 -1000 100 U 50 50 1 1 W
X GPB0 2 -500 800 100 R 50 50 1 1 B
X GPB1 3 -500 700 100 R 50 50 1 1 B
X GPB2 4 -500 600 100 R 50 50 1 1 B
X GPB3 5 -500 500 100 R 50 50 1 1 B
X ~INT 6 500 300 100 L 50 50 1 1 O
X GPB4 7 -500 400 100 R 50 50 1 1 B
X CLK 9 500 800 100 L 50 50 1 1 I
X GND 10 0 -1000 100 U 50 50 1 1 W
X TP 10 500 700 100 L 50 50 1 1 O N
X VCC 20 0 1000 100 D 50 50 1 1 W
X GPB5 11 -500 300 100 R 50 50 1 1 B
X GPA0 21 -500 -100 100 R 50 50 1 1 B
X GPB6 12 -500 200 100 R 50 50 1 1 B
X GPA1 22 -500 -200 100 R 50 50 1 1 B
X GPB7 13 -500 100 100 R 50 50 1 1 B
X GPA2 23 -500 -300 100 R 50 50 1 1 B
X SCL 14 500 -300 100 L 50 50 1 1 I
X GPA3 24 -500 -400 100 R 50 50 1 1 B
X SDA 15 500 -400 100 L 50 50 1 1 B
X GPA4 25 -500 -500 100 R 50 50 1 1 B
X A0 16 500 -600 100 L 50 50 1 1 I
X GPA5 26 -500 -600 100 R 50 50 1 1 B
X A1 17 500 -700 100 L 50 50 1 1 I
X GPA6 27 -500 -700 100 R 50 50 1 1 B
X A2 18 500 -800 100 L 50 50 1 1 I
X GPA7 28 -500 -800 100 R 50 50 1 1 B
X GND 19 100 -1000 100 U 50 50 1 1 W
ENDDRAW
ENDDEF
#
# MCP23017
#
DEF MCP23017 U 0 40 Y Y 1 F N
F0 "U" -100 1025 50 H V R CNN
F1 "MCP23017" -100 950 50 H V R CNN
F2 "" 50 -950 50 H I L CNN
F3 "" 250 1000 50 H I C CNN
$FPLIST
DIP-28_W7.62mm*
SOIC-28
SSOP-28
$ENDFPLIST
DRAW
S -400 900 400 -900 0 1 10 f
X GPB0 1 -500 800 100 R 50 50 1 1 B
X GPB1 2 -500 700 100 R 50 50 1 1 B
X GPB2 3 -500 600 100 R 50 50 1 1 B
X GPB3 4 -500 500 100 R 50 50 1 1 B
X GPB4 5 -500 400 100 R 50 50 1 1 B
X GPB5 6 -500 300 100 R 50 50 1 1 B
X GPB6 7 -500 200 100 R 50 50 1 1 B
X GPB7 8 -500 100 100 R 50 50 1 1 B
X VCC 9 0 1000 100 D 50 50 1 1 W
X GND 10 0 -1000 100 U 50 50 1 1 W
X INTA 20 500 300 100 L 50 50 1 1 O
X GPA0 21 -500 -100 100 R 50 50 1 1 B
X SCL 12 500 -300 100 L 50 50 1 1 I
X GPA1 22 -500 -200 100 R 50 50 1 1 B
X SDA 13 500 -400 100 L 50 50 1 1 B
X GPA2 23 -500 -300 100 R 50 50 1 1 B
X GPA3 24 -500 -400 100 R 50 50 1 1 B
X A0 15 500 -600 100 L 50 50 1 1 I
X GPA4 25 -500 -500 100 R 50 50 1 1 B
X A1 16 500 -700 100 L 50 50 1 1 I
X GPA5 26 -500 -600 100 R 50 50 1 1 B
X A2 17 500 -800 100 L 50 50 1 1 I
X GPA6 27 -500 -700 100 R 50 50 1 1 B
X ~RESET 18 500 800 100 L 50 50 1 1 I
X GPA7 28 -500 -800 100 R 50 50 1 1 B
X INTB 19 500 400 100 L 50 50 1 1 O
ENDDRAW
ENDDEF
#
# MCP23S08
#
DEF MCP23S08 U 0 40 Y Y 1 F N
F0 "U" -100 625 50 H V R CNN
F1 "MCP23S08" -100 550 50 H V R CNN
F2 "" 50 -650 50 H I L CNN
F3 "" 250 600 50 H I C CNN
$FPLIST
DIP-18
SOIC-18
$ENDFPLIST
DRAW
S -400 500 400 -600 0 1 10 f
X SCK 1 500 0 100 L 50 50 1 1 I
X SI 2 500 -100 100 L 50 50 1 1 I
X SO 3 500 -200 100 L 50 50 1 1 O
X A1 4 500 -500 100 L 50 50 1 1 I
X A0 5 500 -400 100 L 50 50 1 1 I
X ~RESET 6 500 400 100 L 50 50 1 1 I
X ~CS 7 500 100 100 L 50 50 1 1 I
X INT 8 500 300 100 L 50 50 1 1 O
X GND 9 0 -700 100 U 50 50 1 1 W
X GPB0 10 -500 300 100 R 50 50 1 1 B
X GPB1 11 -500 200 100 R 50 50 1 1 B
X GPB2 12 -500 100 100 R 50 50 1 1 B
X GPB3 13 -500 0 100 R 50 50 1 1 B
X GPB4 14 -500 -100 100 R 50 50 1 1 B
X GPB5 15 -500 -200 100 R 50 50 1 1 B
X GPB6 16 -500 -300 100 R 50 50 1 1 B
X GPB7 17 -500 -400 100 R 50 50 1 1 B
X VCC 18 0 600 100 D 50 50 1 1 W
ENDDRAW
ENDDEF
#
# MCP23S08_SSOP
#
DEF MCP23S08_SSOP U 0 40 Y Y 1 F N
F0 "U" -100 625 50 H V R CNN
F1 "MCP23S08_SSOP" -100 550 50 H V R CNN
F2 "" 50 -650 50 H I L CNN
F3 "" 250 600 50 H I C CNN
$FPLIST
SSOP-20
$ENDFPLIST
DRAW
S -400 500 400 -600 0 1 10 f
X SCK 1 500 0 100 L 50 50 1 1 I
X SI 2 500 -100 100 L 50 50 1 1 I
X SO 3 500 -200 100 L 50 50 1 1 O
X A1 4 500 -500 100 L 50 50 1 1 I
X A0 5 500 -400 100 L 50 50 1 1 I
X ~RESET 6 500 400 100 L 50 50 1 1 I
X ~CS 7 500 100 100 L 50 50 1 1 I
X INT 8 500 300 100 L 50 50 1 1 O
X GND 9 0 -700 100 U 50 50 1 1 W
X GPB0 12 -500 300 100 R 50 50 1 1 B
X GPB1 13 -500 200 100 R 50 50 1 1 B
X GPB2 14 -500 100 100 R 50 50 1 1 B
X GPB3 15 -500 0 100 R 50 50 1 1 B
X GPB4 16 -500 -100 100 R 50 50 1 1 B
X GPB5 17 -500 -200 100 R 50 50 1 1 B
X GPB6 18 -500 -300 100 R 50 50 1 1 B
X GPB7 19 -500 -400 100 R 50 50 1 1 B
X VCC 20 0 600 100 D 50 50 1 1 W
ENDDRAW
ENDDEF
#
# MCP23S17
#
DEF MCP23S17 U 0 40 Y Y 1 F N
F0 "U" -100 1025 50 H V R CNN
F1 "MCP23S17" -100 950 50 H V R CNN
F2 "" 50 -950 50 H I L CNN
F3 "" 250 1000 50 H I C CNN
$FPLIST
DIP-28_W7.62mm*
SOIC-28
SSOP-28
$ENDFPLIST
DRAW
S -400 900 400 -900 0 1 10 f
X GPB0 1 -500 800 100 R 50 50 1 1 B
X GPB1 2 -500 700 100 R 50 50 1 1 B
X GPB2 3 -500 600 100 R 50 50 1 1 B
X GPB3 4 -500 500 100 R 50 50 1 1 B
X GPB4 5 -500 400 100 R 50 50 1 1 B
X GPB5 6 -500 300 100 R 50 50 1 1 B
X GPB6 7 -500 200 100 R 50 50 1 1 B
X GPB7 8 -500 100 100 R 50 50 1 1 B
X VCC 9 0 1000 100 D 50 50 1 1 W
X GND 10 0 -1000 100 U 50 50 1 1 W
X INTA 20 500 300 100 L 50 50 1 1 O
X ~CS 11 500 -100 100 L 50 50 1 1 I
X GPA0 21 -500 -100 100 R 50 50 1 1 B
X SCK 12 500 -200 100 L 50 50 1 1 I
X GPA1 22 -500 -200 100 R 50 50 1 1 B
X SI 13 500 -300 100 L 50 50 1 1 O
X GPA2 23 -500 -300 100 R 50 50 1 1 B
X SO 14 500 -400 100 L 50 50 1 1 O
X GPA3 24 -500 -400 100 R 50 50 1 1 B
X A0 15 500 -600 100 L 50 50 1 1 I
X GPA4 25 -500 -500 100 R 50 50 1 1 B
X A1 16 500 -700 100 L 50 50 1 1 I
X GPA5 26 -500 -600 100 R 50 50 1 1 B
X A2 17 500 -800 100 L 50 50 1 1 I
X GPA6 27 -500 -700 100 R 50 50 1 1 B
X ~RESET 18 500 800 100 L 50 50 1 1 I
X GPA7 28 -500 -800 100 R 50 50 1 1 B
X INTB 19 500 400 100 L 50 50 1 1 O
ENDDRAW
ENDDEF
#
# MCP2515-E/ST
#
DEF MCP2515-E/ST U 0 40 Y Y 1 F N
F0 "U" -400 775 50 H V R CNN
F1 "MCP2515-E/ST" 750 800 50 H V R TNN
F2 "Housings_SSOP:TSSOP-20_4.4x6.5mm_Pitch0.65mm" 0 -900 50 H I C CIN
F3 "" 100 -800 50 H V C CNN
ALIAS MCP2515-I/ST
$FPLIST
TSSOP*
$ENDFPLIST
DRAW
S -500 700 500 -700 0 1 10 f
X TXCAN 1 600 500 100 L 50 50 1 1 O
X RXCAN 2 600 600 100 L 50 50 1 1 I
X CLKOUT/SOF 3 -600 -400 100 R 50 50 1 1 O
X ~TX0RTS 4 600 -300 100 L 50 50 1 1 I
X ~TX1RTS 5 600 -400 100 L 50 50 1 1 I
X NC 6 -600 0 100 R 50 50 1 1 N N
X ~TX2RTS 7 600 -500 100 L 50 50 1 1 I
X OSC2 8 -600 -200 100 R 50 50 1 1 O
X OSC1 9 -600 -300 100 R 50 50 1 1 I C
X VSS 10 0 -800 100 U 50 50 1 1 W
X VDD 20 0 800 100 D 50 50 1 1 W
X ~RX1BF 11 600 -200 100 L 50 50 1 1 O
X ~RX0BF 12 600 -100 100 L 50 50 1 1 O
X ~INT 13 600 0 100 L 50 50 1 1 O
X SCK 14 -600 300 100 R 50 50 1 1 I
X NC 15 -600 -100 100 R 50 50 1 1 N N
X SI 16 -600 600 100 R 50 50 1 1 I
X SO 17 -600 500 100 R 50 50 1 1 O
X ~CS 18 -600 400 100 R 50 50 1 1 I
X ~RESET 19 600 -600 100 L 50 50 1 1 I
ENDDRAW
ENDDEF
#
# USB3300
#
DEF USB3300 U 0 40 Y Y 1 F N
F0 "U" 0 50 50 H V C CNN
F1 "USB3300" 0 -50 50 H V C CNN
F2 "" 0 0 50 H V C CNN
F3 "" 0 0 50 H V C CNN
$FPLIST
*QFN*32*
$ENDFPLIST
DRAW
S 650 -950 -650 950 0 1 0 f
X GND 1 -100 -1100 150 U 50 50 1 1 W
X GND 2 0 -1100 150 U 50 50 1 1 W
X CPEN 3 -800 -200 150 R 50 50 1 1 O
X VBUS 4 -800 700 150 R 50 50 1 1 W
X ID 5 -800 400 150 R 50 50 1 1 I
X VDD3.3 6 -200 1100 150 D 50 50 1 1 W
X DP 7 -800 500 150 R 50 50 1 1 B
X DM 8 -800 600 150 R 50 50 1 1 B
X RESET 9 800 -800 150 L 50 50 1 1 I
X EXTVBUS 10 -800 -300 150 R 50 50 1 1 I
X DATA4 20 800 100 150 L 50 50 1 1 B
X VDD3.3 30 100 1100 150 D 50 50 1 1 W
X NXT 11 800 -400 150 L 50 50 1 1 O
X DATA3 21 800 0 150 L 50 50 1 1 B
X REG_EN 31 -800 -500 150 R 50 50 1 1 B
X DIR 12 800 -500 150 L 50 50 1 1 O
X DATA2 22 800 -100 150 L 50 50 1 1 B
X RBIAS 32 -800 -700 150 R 50 50 1 1 P
X STP 13 800 -600 150 L 50 50 1 1 I
X DATA1 23 800 -200 150 L 50 50 1 1 B
X GND 33 100 -1100 150 U 50 50 1 1 W
X CLKOUT 14 800 -700 150 L 50 50 1 1 O
X DATA0 24 800 -300 150 L 50 50 1 1 B
X VDD1.8 15 800 800 150 L 50 50 1 1 w
X VDD3.3 25 0 1100 150 D 50 50 1 1 W
X VDD3.3 16 -100 1100 150 D 50 50 1 1 W
X VDD1.8 26 800 700 150 L 50 50 1 1 w
X DATA7 17 800 400 150 L 50 50 1 1 B
X XO 27 -800 200 150 R 50 50 1 1 O
X DATA6 18 800 300 150 L 50 50 1 1 B
X XI 28 -800 0 150 R 50 50 1 1 I
X DATA5 19 800 200 150 L 50 50 1 1 B
X VDDA1.8 29 800 600 150 L 50 50 1 1 w
ENDDRAW
ENDDEF
#
#End Library

View file

@ -66,4 +66,52 @@ K Stepper driver
F http://www.onsemi.com/pub_link/Collateral/EN6507-D.PDF
$ENDCMP
#
$CMP SLA7070MPRT
D Unipolar 2-phase stepper motor driver, Full and Half step, 1A
K Stepper driver
F http://www.semicon.sanken-ele.co.jp/sk_content/sla7070mprt_ds_en.pdf
$ENDCMP
#
$CMP SLA7071MPRT
D Unipolar 2-phase stepper motor driver, Full and Half step, 1.5A
K Stepper driver
F http://www.semicon.sanken-ele.co.jp/sk_content/sla7071mprt_ds_en.pdf
$ENDCMP
#
$CMP SLA7072MPRT
D Unipolar 2-phase stepper motor driver, Full and Half step, 2A
K Stepper driver
F http://www.semicon.sanken-ele.co.jp/sk_content/sla7072mprt_ds_en.pdf
$ENDCMP
#
$CMP SLA7073MPRT
D Unipolar 2-phase stepper motor driver, Full and Half step, 3A
K Stepper driver
F http://www.semicon.sanken-ele.co.jp/sk_content/sla7073mprt_ds_en.pdf
$ENDCMP
#
$CMP SLA7075MPRT
D Unipolar 2-phase stepper motor driver, Microstep, 1A
K Stepper driver
F http://www.semicon.sanken-ele.co.jp/sk_content/sla7075mprt_ds_en.pdf
$ENDCMP
#
$CMP SLA7076MPRT
D Unipolar 2-phase stepper motor driver, Microstep, 1.5A
K Stepper driver
F http://www.semicon.sanken-ele.co.jp/sk_content/sla7076mprt_ds_en.pdf
$ENDCMP
#
$CMP SLA7077MPRT
D Unipolar 2-phase stepper motor driver, Microstep, 2A
K Stepper driver
F http://www.semicon.sanken-ele.co.jp/sk_content/sla7077mprt_ds_en.pdf
$ENDCMP
#
$CMP SLA7078MPRT
D Unipolar 2-phase stepper motor driver, Microstep, 3A
K Stepper driver
F http://www.semicon.sanken-ele.co.jp/sk_content/sla7078mprt_ds_en.pdf
$ENDCMP
#
#End Doc Library

View file

@ -330,4 +330,82 @@ X ENABLE 15 -500 -200 100 R 50 50 1 1 I
ENDDRAW
ENDDEF
#
# SLA7070MPRT
#
DEF SLA7070MPRT U 0 40 Y Y 1 F N
F0 "U" -400 1000 50 H V C CNN
F1 "SLA7070MPRT" 300 -1000 50 H V C CNN
F2 "" 0 0 50 H V C CIN
F3 "" 0 0 50 H V C CNN
ALIAS SLA7071MPRT SLA7072MPRT SLA7073MPRT
$FPLIST
ZIP23
$ENDFPLIST
DRAW
S -450 950 450 -950 0 1 10 f
X OUTA 1 600 800 150 L 50 50 1 1 O
X OUTA 2 600 700 150 L 50 50 1 1 O
X ~OUTA~ 3 600 600 150 L 50 50 1 1 O
X ~OUTA~ 4 600 500 150 L 50 50 1 1 O
X SENSE_A 5 600 -200 150 L 50 50 1 1 O
X N.C. 6 600 -800 150 L 50 50 1 1 N
X M1 7 -600 300 150 R 50 50 1 1 I
X M2 8 -600 200 150 R 50 50 1 1 I
X M3 9 -600 100 150 R 50 50 1 1 I
X CLOCK 10 -600 -100 150 R 50 50 1 1 I
X VBB 11 -100 1100 150 D 50 50 1 1 W
X GND 12 0 -1100 150 U 50 50 1 1 W
X REF/SLEEP1 13 -600 500 150 R 50 50 1 1 I
X VDD 14 100 1100 150 D 50 50 1 1 W
X RESET 15 -600 700 150 R 50 50 1 1 I
X CW/CCW 16 -600 -300 150 R 50 50 1 1 I
X SYNC 17 -600 -500 150 R 50 50 1 1 I
X FLAG 18 600 -600 150 L 50 50 1 1 O
X SENSE_B 19 600 -400 150 L 50 50 1 1 O
X ~OUTB~ 20 600 300 150 L 50 50 1 1 O
X ~OUTB~ 21 600 200 150 L 50 50 1 1 O
X OUTB 22 600 100 150 L 50 50 1 1 O
X OUTB 23 600 0 150 L 50 50 1 1 O
ENDDRAW
ENDDEF
#
# SLA7075MPRT
#
DEF SLA7075MPRT U 0 40 Y Y 1 F N
F0 "U" -400 1000 50 H V C CNN
F1 "SLA7075MPRT" 300 -1000 50 H V C CNN
F2 "" 0 0 50 H V C CIN
F3 "" 0 0 50 H V C CNN
ALIAS SLA7076MPRT SLA7077MPRT SLA7078MPRT
$FPLIST
ZIP23
$ENDFPLIST
DRAW
S -450 950 450 -950 0 1 10 f
X OUTA 1 600 800 150 L 50 50 1 1 O
X OUTA 2 600 700 150 L 50 50 1 1 O
X ~OUTA~ 3 600 600 150 L 50 50 1 1 O
X ~OUTA~ 4 600 500 150 L 50 50 1 1 O
X SENSE_A 5 600 -200 150 L 50 50 1 1 O
X MO 6 600 -800 150 L 50 50 1 1 O
X M1 7 -600 300 150 R 50 50 1 1 I
X M2 8 -600 200 150 R 50 50 1 1 I
X M3 9 -600 100 150 R 50 50 1 1 I
X CLOCK 10 -600 -100 150 R 50 50 1 1 I
X VBB 11 -100 1100 150 D 50 50 1 1 W
X GND 12 0 -1100 150 U 50 50 1 1 W
X REF/SLEEP1 13 -600 500 150 R 50 50 1 1 I
X VDD 14 100 1100 150 D 50 50 1 1 W
X RESET 15 -600 700 150 R 50 50 1 1 I
X CW/CCW 16 -600 -300 150 R 50 50 1 1 I
X SYNC 17 -600 -500 150 R 50 50 1 1 I
X FLAG 18 600 -600 150 L 50 50 1 1 O
X SENSE_B 19 600 -400 150 L 50 50 1 1 O
X ~OUTB~ 20 600 300 150 L 50 50 1 1 O
X ~OUTB~ 21 600 200 150 L 50 50 1 1 O
X OUTB 22 600 100 150 L 50 50 1 1 O
X OUTB 23 600 0 150 L 50 50 1 1 O
ENDDRAW
ENDDEF
#
#End Library

View file

@ -66,7 +66,7 @@ K DSP PCI
$ENDCMP
#
$CMP MC13192
D Zigbee controler
D Zigbee controller
K ZIGBEE
$ENDCMP
#

129
library/motors.dcm Normal file
View file

@ -0,0 +1,129 @@
EESchema-DOCLIB Version 2.0
#
$CMP Fan
D Fan
K Fan Motor
$ENDCMP
#
$CMP Fan_3pin
D Fan, tacho output, 3-pin connector
K Fan Motor tacho
F http://www.hardwarecanucks.com/forum/attachments/new-builds/16287d1330775095-help-chassis-power-fan-connectors-motherboard-asus_p8z68.jpg
$ENDCMP
#
$CMP Fan_4pin
D Fan, tacho output, PWM input, 4-pin connector
K Fan Motor tacho PWM
F http://www.formfactors.org/developer%5Cspecs%5Crev1_2_public.pdf
$ENDCMP
#
$CMP Fan_ALT
D Fan without PWM or tach, alternative symbol
K Fan Motor
$ENDCMP
#
$CMP Fan_CPU_4pin
D CPU Fan, tacho output, PWM input, 4-pin connector
K Fan Motor tacho PWM
F http://www.formfactors.org/developer%5Cspecs%5Crev1_2_public.pdf
$ENDCMP
#
$CMP Fan_IEC60617
D Fan (according to IEC-60617)
K Fan Motor IEC-60617
$ENDCMP
#
$CMP Fan_PC_Chassis
D PC chassis fan, tacho output, 3-pin connector
K Fan Motor tacho
F http://www.hardwarecanucks.com/forum/attachments/new-builds/16287d1330775095-help-chassis-power-fan-connectors-motherboard-asus_p8z68.jpg
$ENDCMP
#
$CMP Fan_Tacho
D Fan, tacho output, 3-pin connector
K Fan Motor tacho
F http://www.hardwarecanucks.com/forum/attachments/new-builds/16287d1330775095-help-chassis-power-fan-connectors-motherboard-asus_p8z68.jpg
$ENDCMP
#
$CMP Fan_Tacho_PWM
D Fan, tacho output, PWM input, 4-pin connector
K Fan Motor tacho PWM
F http://www.formfactors.org/developer%5Cspecs%5Crev1_2_public.pdf
$ENDCMP
#
$CMP Motor_AC
D AC Motor
K AC Motor
$ENDCMP
#
$CMP Motor_DC
D DC Motor
K DC Motor
$ENDCMP
#
$CMP Motor_DC_ALT
D DC Motor, alternative symbol
K DC Motor
$ENDCMP
#
$CMP Motor_Servo
D Servo Motor (Futaba, HiTec, JR connector)
K Servo Motor
F http://forums.parallax.com/uploads/attachments/46831/74481.png
$ENDCMP
#
$CMP Motor_Servo_AirTronics
D Servo Motor (AirTronics connector)
K Servo Motor
F http://forums.parallax.com/uploads/attachments/46831/74481.png
$ENDCMP
#
$CMP Motor_Servo_Futaba_J
D Servo Motor (Futuba J-connector)
K Servo Motor
F http://forums.parallax.com/uploads/attachments/46831/74481.png
$ENDCMP
#
$CMP Motor_Servo_Grapner_JR
D Servo Motor (Graupner JR connector)
K Servo Motor
F http://forums.parallax.com/uploads/attachments/46831/74481.png
$ENDCMP
#
$CMP Motor_Servo_Hitec
D Servo Motor (HiTec connector)
K Servo Motor
F http://forums.parallax.com/uploads/attachments/46831/74481.png
$ENDCMP
#
$CMP Motor_Servo_JR
D Servo Motor (JR connector)
K Servo Motor
F http://forums.parallax.com/uploads/attachments/46831/74481.png
$ENDCMP
#
$CMP Motor_Servo_Robbe
D Servo Motor (Robbe connector)
K Servo Motor
F http://forums.parallax.com/uploads/attachments/46831/74481.png
$ENDCMP
#
$CMP Stepper_Motor_bipolar
D 4-wire bipolar stepper motor
K bipolar stepper motor
F http://www.infineon.com/dgdl/Application-Note-TLE8110EE_driving_UniPolarStepperMotor_V1.1.pdf?fileId=db3a30431be39b97011be5d0aa0a00b0
$ENDCMP
#
$CMP Stepper_Motor_unipolar_5pin
D 5-wire unipolar stepper motor
K unipolar stepper motor
F http://www.infineon.com/dgdl/Application-Note-TLE8110EE_driving_UniPolarStepperMotor_V1.1.pdf?fileId=db3a30431be39b97011be5d0aa0a00b0
$ENDCMP
#
$CMP Stepper_Motor_unipolar_6pin
D 6-wire unipolar stepper motor
K unipolar stepper motor
F http://www.infineon.com/dgdl/Application-Note-TLE8110EE_driving_UniPolarStepperMotor_V1.1.pdf?fileId=db3a30431be39b97011be5d0aa0a00b0
$ENDCMP
#
#End Doc Library

405
library/motors.lib Normal file
View file

@ -0,0 +1,405 @@
EESchema-LIBRARY Version 2.3
#encoding utf-8
#
# Fan
#
DEF Fan M 0 0 Y Y 1 F N
F0 "M" 100 200 50 H V L CNN
F1 "Fan" 100 -100 50 H V L TNN
F2 "" 0 10 50 H I C CNN
F3 "" 0 10 50 H I C CNN
$FPLIST
Pin_Headers:Pin_Header_Straight_1x02
Connect:bornier2
TerminalBlock*2pol
$ENDFPLIST
DRAW
A -98 94 113 297 -910 0 1 0 N 0 150 -100 -20
A 0 -70 112 1534 266 0 1 0 N -100 -20 100 -20
A 103 95 115 -915 1519 0 1 0 N 100 -20 0 150
C 0 40 128 0 1 10 N
P 2 0 1 0 0 -200 0 -180 N
P 2 0 1 0 0 -88 0 -104 N
P 2 0 1 0 0 168 0 182 N
P 2 0 1 0 0 180 0 200 N
X + 1 0 300 100 D 50 50 1 1 P
X - 2 0 -200 100 U 50 50 1 1 P
ENDDRAW
ENDDEF
#
# Fan_ALT
#
DEF Fan_ALT M 0 0 N Y 1 F N
F0 "M" 150 200 50 H V L BNN
F1 "Fan_ALT" 150 100 50 H V L BNN
F2 "" 0 -50 50 H I C CNN
F3 "" 0 -50 50 H I C CNN
$FPLIST
Pin_Headers:Pin_Header_Straight_1x02
Connect:bornier2
TerminalBlock*2pol
$ENDFPLIST
DRAW
A -160 -90 184 -1506 1506 0 1 0 N 0 0 0 -180
A -142 -45 149 -1624 1232 0 1 0 N 0 0 -60 -170
A -90 160 184 -1506 1506 0 1 0 N 0 0 -180 0
A -45 142 149 -1624 1232 0 1 0 N 0 0 -170 60
A 45 -142 149 -1624 1232 0 1 0 N 0 0 170 -60
A 90 -160 184 -1506 1506 0 1 0 N 0 0 180 0
A 142 45 149 -1624 1232 0 1 0 N 0 0 60 170
A 160 90 184 -1506 1506 0 1 0 N 0 0 0 180
C 0 0 180 0 1 10 N
P 2 0 1 0 0 -200 0 -180 N
P 2 0 1 0 0 180 0 200 N
X + 1 0 300 100 D 50 50 1 1 P
X - 2 0 -300 100 U 50 50 1 1 P
ENDDRAW
ENDDEF
#
# Fan_IEC60617
#
DEF Fan_IEC60617 M 0 0 Y Y 1 F N
F0 "M" 150 150 50 H V L CNN
F1 "Fan_IEC60617" 150 100 50 H V L TNN
F2 "" 50 -140 50 H I L CNN
F3 "" 0 10 50 H I C CNN
$FPLIST
Pin_Headers:Pin_Header_Straight_1x02
Connect:bornier2
TerminalBlock*2pol
$ENDFPLIST
DRAW
C 0 40 100 0 1 0 N
S -130 170 130 -90 0 1 10 f
P 2 0 1 0 -60 -40 90 0 N
P 2 0 1 0 -60 120 90 80 N
P 2 0 1 0 0 -200 0 -180 N
P 2 0 1 0 0 -88 0 -104 N
P 2 0 1 0 0 168 0 182 N
P 2 0 1 0 0 180 0 200 N
X + 1 0 300 100 D 50 50 1 1 P
X - 2 0 -200 100 U 50 50 1 1 P
ENDDRAW
ENDDEF
#
# Fan_Tacho
#
DEF Fan_Tacho M 0 0 Y Y 1 F N
F0 "M" 100 100 50 H V L CNN
F1 "Fan_Tacho" 100 -200 50 H V L TNN
F2 "" 0 -90 50 H I C CNN
F3 "" 0 -90 50 H I C CNN
ALIAS Fan_3pin Fan_PC_Chassis
$FPLIST
Pin_Headers:Fan_Pin_Header_Straight_1x03
Pin_Headers:Pin_Header_Straight_1x03
TerminalBlock*3pol
bornier3
$ENDFPLIST
DRAW
A -200 -40 20 1800 900 0 0 0 N -220 -40 -200 -20
A -200 -40 20 -1799 -1 0 0 0 N -220 -40 -180 -40
P 2 0 0 0 -200 -20 -210 -15 N
P 2 0 0 0 -200 -20 -205 -30 N
P 3 0 0 0 -160 0 -160 -60 -130 -60 N
A -98 -6 113 297 -910 0 1 0 N 0 50 -100 -120
A 0 -170 112 1534 266 0 1 0 N -100 -120 100 -120
A 103 -5 115 -915 1519 0 1 0 N 100 -120 0 50
C 0 -60 128 0 1 10 N
P 2 0 1 0 -160 0 -200 0 N
P 2 0 1 0 0 -300 0 -280 N
P 2 0 1 0 0 -188 0 -204 N
P 2 0 1 0 0 68 0 82 N
P 2 0 1 0 0 80 0 100 N
X Tacho 1 -300 0 100 R 50 50 1 1 P
X + 2 0 200 100 D 50 50 1 1 P
X - 3 0 -300 100 U 50 50 1 1 P
ENDDRAW
ENDDEF
#
# Fan_Tacho_PWM
#
DEF Fan_Tacho_PWM M 0 0 Y Y 1 F N
F0 "M" 100 200 50 H V L CNN
F1 "Fan_Tacho_PWM" 100 -100 50 H V L TNN
F2 "" 0 10 50 H I C CNN
F3 "" 0 10 50 H I C CNN
ALIAS Fan_CPU_4pin Fan_4pin
$FPLIST
Pin_Headers:Fan_Pin_Header_Straight_1x04
Pin_Headers:Pin_Header_Straight_1x04
TerminalBlock*4pol
bornier4
$ENDFPLIST
DRAW
A -200 60 20 1800 900 0 0 0 N -220 60 -200 80
A -200 60 20 -1799 -1 0 0 0 N -220 60 -180 60
P 2 0 0 0 -200 80 -210 85 N
P 2 0 0 0 -200 80 -205 70 N
P 3 0 0 0 -160 100 -160 40 -130 40 N
A -98 94 113 297 -910 0 1 0 N 0 150 -100 -20
A 0 -70 112 1534 266 0 1 0 N -100 -20 100 -20
A 103 95 115 -915 1519 0 1 0 N 100 -20 0 150
C 0 40 128 0 1 10 N
P 2 0 1 0 -160 100 -200 100 N
P 2 0 1 0 0 -200 0 -180 N
P 2 0 1 0 0 -88 0 -104 N
P 2 0 1 0 0 168 0 182 N
P 2 0 1 0 0 180 0 200 N
P 4 0 1 0 -100 -40 -160 -40 -160 -100 -200 -100 N
P 10 0 1 0 -210 -130 -200 -130 -200 -120 -190 -120 -190 -130 -170 -130 -170 -120 -160 -120 -160 -130 -140 -130 N
X - 1 0 -200 100 U 50 50 1 1 P
X + 2 0 300 100 D 50 50 1 1 P
X Tacho 3 -300 100 100 R 50 50 1 1 P
X PWM 4 -300 -100 100 R 50 50 1 1 I
ENDDRAW
ENDDEF
#
# Motor_AC
#
DEF Motor_AC M 0 0 Y Y 1 F N
F0 "M" 100 100 50 H V L CNN
F1 "Motor_AC" 100 -200 50 H V L TNN
F2 "" 0 -90 50 H I C CNN
F3 "" 0 -90 50 H I C CNN
$FPLIST
Pin_Headers:Pin_Header_Straight_1x02
Connect:bornier2
TerminalBlock*2pol
$ENDFPLIST
DRAW
A -29 -108 31 -1763 -225 0 0 0 N -60 -110 0 -120
A 28 -132 30 1568 36 0 0 0 N 0 -120 60 -130
P 5 0 0 0 -40 -80 -40 40 0 -40 40 40 40 -80 N
C 0 -60 128 0 1 10 N
P 2 0 1 0 0 -300 0 -280 N
P 2 0 1 0 0 -188 0 -204 N
P 2 0 1 0 0 68 0 82 N
P 2 0 1 0 0 80 0 100 N
X ~ 1 0 200 100 D 50 50 1 1 P
X ~ 2 0 -300 100 U 50 50 1 1 P
ENDDRAW
ENDDEF
#
# Motor_DC
#
DEF Motor_DC M 0 0 Y Y 1 F N
F0 "M" 100 100 50 H V L CNN
F1 "Motor_DC" 100 -200 50 H V L TNN
F2 "" 0 -90 50 H I C CNN
F3 "" 0 -90 50 H I C CNN
$FPLIST
Pin_Headers:Pin_Header_Straight_1x02
Connect:bornier2
TerminalBlock*2pol
$ENDFPLIST
DRAW
P 5 0 0 0 -50 -130 -50 20 0 -80 50 20 50 -130 N
C 0 -60 128 0 1 10 N
P 2 0 1 0 0 -300 0 -280 N
P 2 0 1 0 0 -188 0 -204 N
P 2 0 1 0 0 68 0 82 N
P 2 0 1 0 0 80 0 100 N
X + 1 0 200 100 D 50 50 1 1 P
X - 2 0 -300 100 U 50 50 1 1 P
ENDDRAW
ENDDEF
#
# Motor_DC_ALT
#
DEF Motor_DC_ALT M 0 0 Y Y 1 F N
F0 "M" 100 100 50 H V L CNN
F1 "Motor_DC_ALT" 100 -200 50 H V L TNN
F2 "" 0 -90 50 H I C CNN
F3 "" 0 -90 50 H I C CNN
$FPLIST
Pin_Headers:Pin_Header_Straight_1x02
Connect:bornier2
TerminalBlock*2pol
$ENDFPLIST
DRAW
C 0 -60 117 0 0 10 N
P 4 0 0 0 -50 -170 -50 -200 50 -200 50 -170 N
P 4 0 0 0 -50 50 -50 80 50 80 50 50 N
P 5 0 0 0 -50 -130 -50 20 0 -80 50 20 50 -130 N
P 2 0 1 0 0 80 0 100 N
X + 1 0 200 100 D 50 50 1 1 P
X - 2 0 -300 100 U 50 50 1 1 P
ENDDRAW
ENDDEF
#
# Motor_Servo
#
DEF Motor_Servo M 0 1 Y Y 1 F N
F0 "M" -200 175 50 H V L CNN
F1 "Motor_Servo" -200 -160 50 H V L TNN
F2 "" 0 -190 50 H I C CNN
F3 "" 0 -190 50 H I C CNN
ALIAS Motor_Servo_JR Motor_Servo_Hitec Motor_Servo_Futaba_J Motor_Servo_Robbe Motor_Servo_Grapner_JR
$FPLIST
Pin_Headers:Pin_Header_Straight_1x03
$ENDFPLIST
DRAW
A 125 0 76 1132 -1132 0 1 0 N 95 70 95 -70
A 267 142 37 1173 -273 0 1 0 N 250 175 300 125
C 125 0 7 0 1 0 N
C 125 0 56 0 1 0 N
C 235 110 5 0 1 0 N
C 255 130 5 0 1 0 N
C 275 150 5 0 1 0 N
P 2 0 1 0 95 -70 80 -70 N
P 2 0 1 0 95 -70 90 -55 N
P 2 0 1 0 95 70 75 70 N
P 2 0 1 0 95 70 90 55 N
P 2 0 1 0 250 175 100 50 N
P 2 0 1 0 300 125 165 -40 N
P 5 0 1 10 200 140 -200 140 -200 -140 250 -140 250 60 N
X PWM 1 -300 100 100 R 50 50 1 1 P
X + 2 -300 0 100 R 50 50 1 1 P
X - 3 -300 -100 100 R 50 50 1 1 P
ENDDRAW
ENDDEF
#
# Motor_Servo_AirTronics
#
DEF Motor_Servo_AirTronics M 0 1 Y Y 1 F N
F0 "M" -200 175 50 H V L CNN
F1 "Motor_Servo_AirTronics" -200 -160 50 H V L TNN
F2 "" 0 -190 50 H I C CNN
F3 "" 0 -190 50 H I C CNN
$FPLIST
Pin_Headers:Pin_Header_Straight_1x03
$ENDFPLIST
DRAW
A 125 0 76 1132 -1132 0 1 0 N 95 70 95 -70
A 267 142 37 1173 -273 0 1 0 N 250 175 300 125
C 125 0 7 0 1 0 N
C 125 0 56 0 1 0 N
C 235 110 5 0 1 0 N
C 255 130 5 0 1 0 N
C 275 150 5 0 1 0 N
P 2 0 1 0 95 -70 80 -70 N
P 2 0 1 0 95 -70 90 -55 N
P 2 0 1 0 95 70 75 70 N
P 2 0 1 0 95 70 90 55 N
P 2 0 1 0 250 175 100 50 N
P 2 0 1 0 300 125 165 -40 N
P 5 0 1 10 250 60 250 -140 -200 -140 -200 140 200 140 N
X + 1 -300 0 100 R 50 50 1 1 P
X - 2 -300 -100 100 R 50 50 1 1 P
X PWM 3 -300 100 100 R 50 50 1 1 P
ENDDRAW
ENDDEF
#
# Stepper_Motor_bipolar
#
DEF Stepper_Motor_bipolar M 0 0 Y N 1 F N
F0 "M" 150 100 50 H V L CNN
F1 "Stepper_Motor_bipolar" 150 50 50 H V L TNN
F2 "" 10 -10 50 H I C CNN
F3 "" 10 -10 50 H I C CNN
$FPLIST
Pin_Headers:Pin_Header_Straight_1x04
Connect:bornier4
TerminalBlock*4pol
$ENDFPLIST
DRAW
P 5 0 0 0 -50 -70 -50 80 0 -20 50 80 50 -70 N
A -175 -75 25 -899 899 0 1 0 N -175 -100 -175 -50
A -175 -25 25 -899 899 0 1 0 N -175 -50 -175 0
A -175 25 25 -899 899 0 1 0 N -175 0 -175 50
A -175 75 25 -899 899 0 1 0 N -175 50 -175 100
A -75 175 25 -1799 -1 0 1 0 N -100 175 -50 175
A -25 175 25 -1799 -1 0 1 0 N -50 175 0 175
A 25 175 25 -1799 -1 0 1 0 N 0 175 50 175
A 75 175 25 -1799 -1 0 1 0 N 50 175 100 175
C 0 0 128 0 1 10 N
P 2 0 1 0 -200 -100 -175 -100 N
P 2 0 1 0 -200 100 -175 100 N
P 2 0 1 0 -100 200 -100 175 N
P 2 0 1 0 100 200 100 175 N
X ~ 1 -100 300 100 D 50 50 1 1 P
X - 2 100 300 100 D 50 50 1 1 P
X ~ 3 -300 100 100 R 50 50 1 1 P
X ~ 4 -300 -100 100 R 50 50 1 1 P
ENDDRAW
ENDDEF
#
# Stepper_Motor_unipolar_5pin
#
DEF Stepper_Motor_unipolar_5pin M 0 0 Y N 1 F N
F0 "M" 150 100 50 H V L CNN
F1 "Stepper_Motor_unipolar_5pin" 150 50 50 H V L TNN
F2 "" 10 -10 50 H I C CNN
F3 "" 10 -10 50 H I C CNN
$FPLIST
Pin_Headers:Pin_Header_Straight_1x05
Connect:bornier5
TerminalBlock*5pol
$ENDFPLIST
DRAW
P 5 0 0 0 -50 -70 -50 80 0 -20 50 80 50 -70 N
A -175 -75 25 -899 899 0 1 0 N -175 -100 -175 -50
A -175 -25 25 -899 899 0 1 0 N -175 -50 -175 0
A -175 25 25 -899 899 0 1 0 N -175 0 -175 50
A -175 75 25 -899 899 0 1 0 N -175 50 -175 100
A -75 175 25 -1799 -1 0 1 0 N -100 175 -50 175
A -25 175 25 -1799 -1 0 1 0 N -50 175 0 175
A 25 175 25 -1799 -1 0 1 0 N 0 175 50 175
A 75 175 25 -1799 -1 0 1 0 N 50 175 100 175
C -200 200 0 0 1 0 F
C -200 200 10 0 1 0 F
C 0 0 128 0 1 10 N
P 2 0 1 0 -200 -100 -175 -100 N
P 2 0 1 0 -200 100 -175 100 N
P 2 0 1 0 -100 175 -100 200 N
P 2 0 1 0 100 175 100 200 N
P 3 0 1 0 -200 200 -200 0 -175 0 N
P 3 0 1 0 0 175 0 200 -200 200 N
X ~ 1 -200 300 100 D 50 50 1 1 P
X ~ 2 -100 300 100 D 50 50 1 1 P
X - 3 100 300 100 D 50 50 1 1 P
X ~ 4 -300 100 100 R 50 50 1 1 P
X ~ 5 -300 -100 100 R 50 50 1 1 P
ENDDRAW
ENDDEF
#
# Stepper_Motor_unipolar_6pin
#
DEF Stepper_Motor_unipolar_6pin M 0 0 Y N 1 F N
F0 "M" 150 100 50 H V L CNN
F1 "Stepper_Motor_unipolar_6pin" 150 50 50 H V L TNN
F2 "" 10 -10 50 H I C CNN
F3 "" 10 -10 50 H I C CNN
$FPLIST
Pin_Headers:Pin_Header_Straight_1x06
Connect:bornier6
TerminalBlock*6pol
$ENDFPLIST
DRAW
P 5 0 0 0 -50 -70 -50 80 0 -20 50 80 50 -70 N
A -175 -75 25 -899 899 0 1 0 N -175 -100 -175 -50
A -175 -25 25 -899 899 0 1 0 N -175 -50 -175 0
A -175 25 25 -899 899 0 1 0 N -175 0 -175 50
A -175 75 25 -899 899 0 1 0 N -175 50 -175 100
A -75 175 25 -1799 -1 0 1 0 N -100 175 -50 175
A -25 175 25 -1799 -1 0 1 0 N -50 175 0 175
A 25 175 25 -1799 -1 0 1 0 N 0 175 50 175
A 75 175 25 -1799 -1 0 1 0 N 50 175 100 175
C 0 0 128 0 1 10 N
P 2 0 1 0 -200 -100 -175 -100 N
P 2 0 1 0 -200 100 -175 100 N
P 2 0 1 0 -175 0 -200 0 N
P 2 0 1 0 -100 175 -100 200 N
P 2 0 1 0 0 175 0 200 N
P 2 0 1 0 100 175 100 200 N
X ~ 1 -100 300 100 D 50 50 1 1 P
X ~ 2 0 300 100 D 50 50 1 1 P
X - 3 100 300 100 D 50 50 1 1 P
X ~ 4 -300 100 100 R 50 50 1 1 P
X ~ 5 -300 0 100 R 50 50 1 1 P
X ~ 6 -300 -100 100 R 50 50 1 1 P
ENDDRAW
ENDDEF
#
#End Library

View file

@ -22,6 +22,12 @@ K High Speed Optocoupler
F http://www.semicon.toshiba.co.jp/docs/datasheet/en/Opto/6N135_6N136_en_datasheet_071001.pdf
$ENDCMP
#
$CMP ACPL-P343
D Gate Drive Optocoupler, Output Current 4.0/4.0A, Propagation Delay 200ns, Stretched SO-6
K MOSFET Driver IGBT Driver Optocoupler
F http://www.avagotech.com/docs/AV02-2928EN
$ENDCMP
#
$CMP ASMT-YTC2-0AA02
D Triple LED RVB (Avago Technology)
F http://www.avagotech.com/docs/AV02-2589EN
@ -111,8 +117,14 @@ K Opto-Triac Opto Triac Random Phase Mini-Flat
F http://www.fairchildsemi.com/ds/FO/FODM3053.pdf
$ENDCMP
#
$CMP HCPL063
D Dual High Speed HCMOS/LSTTL/TTL Compatible Optocoupler, DIP-8, SOIC-8
K High Speed Optocoupler
F http://docs.avagotech.com/docs/AV02-0391EN
$ENDCMP
#
$CMP HCPL3120
D Gate Drive Optocoupler, Output Current 2,5[A]
D Gate Drive Optocoupler, Output Current 2.5/2.5A, PDIP-8
K MOSFET Driver IGBT Driver Optocoupler
F http://www.avagotech.com/docs/AV02-0161EN
$ENDCMP
@ -525,7 +537,7 @@ F http://www.semicon.toshiba.co.jp/docs/datasheet/en/Opto/TLP222A_TLP222A-2_en_d
$ENDCMP
#
$CMP TLP250
D Gate Drive Optocoupler, Output Current 1,5[A]
D Gate Drive Optocoupler, Output Current 1.5/1.5A
K MOSFET Driver IGBT Driver Optocoupler
F http://toshiba.semicon-storage.com/info/docget.jsp?did=16821&prodName=TLP250
$ENDCMP

View file

@ -68,6 +68,71 @@ X ~ 8 300 200 100 L 50 50 1 1 P
ENDDRAW
ENDDEF
#
# ACPL-P343
#
DEF ACPL-P343 U 0 0 Y N 1 F N
F0 "U" 0 500 50 H V C CNN
F1 "ACPL-P343" 0 400 50 H V C CNN
F2 "Housings_SOIC:SOIC-6_4.58x6.81mm_Pitch1.27mm" 0 -400 50 H I C CIN
F3 "" -90 5 50 H V L CNN
$FPLIST
SOIC-6_4.58x6.81mm_Pitch1.27mm
$ENDFPLIST
DRAW
C 200 -300 10 0 1 0 F
C 200 -225 10 0 1 0 F
C 200 -75 10 0 1 0 F
C 200 0 10 0 1 0 F
C 200 75 10 0 1 0 F
C 200 225 10 0 1 0 F
C 200 300 10 0 1 0 F
S -300 350 300 -350 0 1 10 f
S 25 250 25 250 0 1 0 N
S 25 250 25 300 0 1 0 N
P 2 0 1 10 -225 -25 -175 -25 N
P 2 0 1 10 -25 25 -75 25 N
P 2 0 1 0 50 -150 75 -150 N
P 2 0 1 0 50 150 75 150 N
P 2 0 1 0 75 -200 75 -100 N
P 2 0 1 0 75 100 75 200 N
P 2 0 1 20 100 -225 100 -75 N
P 2 0 1 20 100 75 100 225 N
P 2 0 1 0 175 -75 100 -75 N
P 2 0 1 0 175 225 100 225 N
P 2 0 1 0 200 -225 200 -300 N
P 2 0 1 0 200 0 300 0 N
P 2 0 1 0 200 75 200 -75 N
P 2 0 1 0 200 300 200 225 N
P 2 0 1 10 250 -125 200 -125 N
P 2 0 1 10 250 175 200 175 N
P 2 0 1 0 300 300 25 300 N
P 3 0 1 0 -50 -25 -50 -100 0 -100 N
P 3 0 1 0 -50 25 -50 100 0 100 N
P 3 0 1 0 25 -250 25 -300 300 -300 N
P 3 0 1 0 175 -75 225 -75 225 -125 N
P 3 0 1 0 175 225 225 225 225 175 N
P 3 0 1 0 225 -175 225 -225 100 -225 N
P 3 0 1 0 225 125 225 75 100 75 N
P 4 0 1 0 -300 300 -200 300 -200 -300 -300 -300 N
P 4 0 1 10 -200 -25 -225 25 -175 25 -200 -25 F
P 4 0 1 0 -150 10 -129 30 -129 10 -99 40 N
P 4 0 1 0 -99 40 -119 30 -109 20 -99 40 N
P 4 0 1 10 -50 25 -25 -25 -75 -25 -50 25 F
P 4 0 1 0 130 225 175 240 175 210 130 225 F
P 4 0 1 0 175 -225 130 -210 130 -240 175 -225 F
P 4 0 1 10 225 -125 250 -175 200 -175 225 -125 F
P 4 0 1 10 225 175 250 125 200 125 225 175 F
P 5 0 1 0 50 250 50 -250 0 -250 0 250 50 250 N
P 7 0 1 0 -150 -30 -129 -10 -129 -30 -99 0 -119 -10 -109 -20 -99 0 N
X A 1 -400 300 100 R 50 50 1 1 P
X NC 2 -400 0 100 R 50 50 1 1 N N
X C 3 -400 -300 100 R 50 50 1 1 P
X VEE 4 400 -300 100 L 50 50 1 1 w
X VO 5 400 0 100 L 50 50 1 1 P
X VCC 6 400 300 100 L 50 50 1 1 W
ENDDRAW
ENDDEF
#
# ASMT-YTC2-0AA02
#
DEF ASMT-YTC2-0AA02 U 0 1 Y N 1 F N
@ -218,6 +283,60 @@ X ~ 4 300 100 100 L 50 50 1 1 P
ENDDRAW
ENDDEF
#
# HCPL063
#
DEF HCPL063 U 0 0 Y N 1 F N
F0 "U" 0 475 50 H V C CNN
F1 "HCPL063" 0 400 50 H V C CNN
F2 "" 0 -400 50 H V C CIN
F3 "" 10 205 50 H V L CNN
$FPLIST
DIP*
SOIC*
$ENDFPLIST
DRAW
C 160 -100 10 0 1 10 F
C 160 100 10 0 1 10 F
S -200 350 200 -350 0 1 10 f
P 2 0 1 10 -125 -175 -75 -175 N
P 2 0 1 10 -125 175 -75 175 N
P 2 0 1 0 20 -290 20 -340 N
P 2 0 1 0 20 -200 20 -250 N
P 2 0 1 0 20 -110 20 -160 N
P 2 0 1 0 20 -20 20 -70 N
P 2 0 1 0 20 70 20 20 N
P 2 0 1 0 20 160 20 110 N
P 2 0 1 0 20 250 20 200 N
P 2 0 1 0 20 340 20 290 N
P 2 0 1 0 170 -100 200 -100 N
P 2 0 1 0 170 100 200 100 N
P 3 0 1 0 -200 -300 -100 -300 -100 -225 N
P 3 0 1 0 -200 300 -100 300 -100 225 N
P 3 0 1 0 -100 -175 -100 -100 -200 -100 N
P 3 0 1 0 -100 175 -100 100 -200 100 N
P 3 0 1 0 200 -300 100 -300 100 -100 N
P 3 0 1 0 200 300 100 300 100 100 N
P 4 0 1 10 -100 -175 -125 -225 -75 -225 -100 -175 F
P 4 0 1 10 -100 175 -125 225 -75 225 -100 175 F
P 4 0 1 0 -50 -190 -29 -170 -29 -190 1 -160 N
P 4 0 1 0 -50 210 -29 230 -29 210 1 240 N
P 4 0 1 0 1 -160 -19 -170 -9 -180 1 -160 N
P 4 0 1 0 1 240 -19 230 -9 220 1 240 N
P 4 0 1 0 150 -100 50 -150 50 -50 150 -100 F
P 4 0 1 0 150 100 50 50 50 150 150 100 F
P 7 0 1 0 -50 -230 -29 -210 -29 -230 1 -200 -19 -210 -9 -220 1 -200 N
P 7 0 1 0 -50 170 -29 190 -29 170 1 200 -19 190 -9 180 1 200 N
X A1 1 -300 300 100 R 50 50 1 1 P
X C1 2 -300 100 100 R 50 50 1 1 P
X A2 3 -300 -100 100 R 50 50 1 1 P
X C2 4 -300 -300 100 R 50 50 1 1 P
X GND 5 300 -300 100 L 50 50 1 1 W
X VO2 6 300 -100 100 L 50 50 1 1 C
X VO1 7 300 100 100 L 50 50 1 1 C
X VCC 8 300 300 100 L 50 50 1 1 W
ENDDRAW
ENDDEF
#
# HCPL2731
#
DEF HCPL2731 U 0 30 Y N 2 F N
@ -257,13 +376,13 @@ ENDDEF
#
# HCPL3120
#
DEF HCPL3120 U 0 40 Y Y 1 F N
F0 "U" -250 500 50 H V C CNN
F1 "HCPL3120" -100 400 50 H V C CNN
F2 "DIP-8" -150 -400 50 H V L CIN
DEF HCPL3120 U 0 0 Y N 1 F N
F0 "U" 0 500 50 H V C CNN
F1 "HCPL3120" 0 400 50 H V C CNN
F2 "Housings_DIP:DIP-8_W7.62mm" 0 -400 50 H I C CIN
F3 "" -90 5 50 H V L CNN
$FPLIST
DIP-8*
DIP*
$ENDFPLIST
DRAW
C 200 -300 10 0 1 0 F
@ -308,14 +427,14 @@ P 4 0 1 0 300 -100 250 -100 250 100 300 100 N
P 5 0 1 0 50 250 50 -250 0 -250 0 250 50 250 N
P 5 0 1 0 145 85 165 105 185 65 145 85 145 85 F
P 7 0 1 0 -150 -30 -129 -10 -129 -30 -99 0 -119 -10 -109 -20 -99 0 N
X ~ 1 -400 300 100 R 50 50 1 1 N N
X ~ 2 -400 100 100 R 50 50 1 1 P
X ~ 3 -400 -100 100 R 50 50 1 1 P
X ~ 4 -400 -300 100 R 50 50 1 1 N N
X ~ 5 400 -300 100 L 50 50 1 1 w
X ~ 6 400 -100 100 L 50 50 1 1 P
X ~ 7 400 100 100 L 50 50 1 1 P
X ~ 8 400 300 100 L 50 50 1 1 W
X NC 1 -400 300 100 R 50 50 1 1 N N
X A 2 -400 100 100 R 50 50 1 1 P
X C 3 -400 -100 100 R 50 50 1 1 P
X NC 4 -400 -300 100 R 50 50 1 1 N N
X VEE 5 400 -300 100 L 50 50 1 1 w
X VO 6 400 -100 100 L 50 50 1 1 P
X VO 7 400 100 100 L 50 50 1 1 P
X VCC 8 400 300 100 L 50 50 1 1 W
ENDDRAW
ENDDEF
#
@ -2000,13 +2119,13 @@ ENDDEF
#
# TLP250
#
DEF TLP250 U 0 40 Y Y 1 F N
F0 "U" -250 500 50 H V C CNN
F1 "TLP250" -150 400 50 H V C CNN
F2 "DIP-8" -150 -400 50 H V L CIN
DEF TLP250 U 0 0 Y N 1 F N
F0 "U" 0 500 50 H V C CNN
F1 "TLP250" 0 400 50 H V C CNN
F2 "Housings_DIP:DIP-8_W7.62mm" 0 -400 50 H I C CIN
F3 "" -155 0 50 H V L CNN
$FPLIST
DIP-8*
DIP*
$ENDFPLIST
DRAW
C 200 -300 10 0 1 0 F
@ -2045,14 +2164,14 @@ P 5 0 1 0 50 250 50 -250 0 -250 0 250 50 250 N
P 5 0 1 0 145 85 165 105 185 65 145 85 145 85 F
P 5 0 1 0 185 -85 165 -65 145 -105 185 -85 185 -85 F
P 7 0 1 0 -150 -30 -129 -10 -129 -30 -99 0 -119 -10 -109 -20 -99 0 N
X ~ 1 -400 300 100 R 50 50 1 1 N N
X ~ 2 -400 100 100 R 50 50 1 1 P
X ~ 3 -400 -100 100 R 50 50 1 1 P
X ~ 4 -400 -300 100 R 50 50 1 1 N N
X ~ 5 400 -300 100 L 50 50 1 1 w
X ~ 6 400 -100 100 L 50 50 1 1 P
X ~ 7 400 100 100 L 50 50 1 1 P
X ~ 8 400 300 100 L 50 50 1 1 W
X NC 1 -400 300 100 R 50 50 1 1 N N
X A 2 -400 100 100 R 50 50 1 1 P
X C 3 -400 -100 100 R 50 50 1 1 P
X NC 4 -400 -300 100 R 50 50 1 1 N N
X VEE 5 400 -300 100 L 50 50 1 1 w
X VO 6 400 -100 100 L 50 50 1 1 P
X VO 7 400 100 100 L 50 50 1 1 P
X VCC 8 400 300 100 L 50 50 1 1 W
ENDDRAW
ENDDEF
#

View file

@ -2064,6 +2064,12 @@ K Voltage Regulator 0.5A Positive
F http://www.fairchildsemi.com/ds/LM/LM78M05.pdf
$ENDCMP
#
$CMP MCP1700T-3002E/TT
D 250mA Low Quiscent Current LDO, 3.0V output, SOT-23-3 package
K regulator linear ldo
F http://ww1.microchip.com/downloads/en/DeviceDoc/20001826C.pdf
$ENDCMP
#
$CMP MCP1754ST-1802E/MB
D MCP1754ST, Fixed 150mA Low Dropout Voltage Regulator, Positive
K REGULATOR LDO

View file

@ -1553,6 +1553,24 @@ X OUT 3 400 50 150 L 50 50 1 1 w
ENDDRAW
ENDDEF
#
# MCP1700T-3002E/TT
#
DEF MCP1700T-3002E/TT U 0 30 Y Y 1 F N
F0 "U" 100 -200 50 H V C CNN
F1 "MCP1700T-3002E/TT" 0 300 50 H V C CNN
F2 "" 0 100 50 H V C CNN
F3 "" 0 100 50 H V C CNN
$FPLIST
SOT-23*
$ENDFPLIST
DRAW
S -200 200 200 -100 0 1 10 f
X GND 1 0 -200 100 U 50 50 1 1 W
X VO 2 300 100 100 L 50 50 1 1 w
X VI 3 -300 100 100 R 50 50 1 1 W
ENDDRAW
ENDDEF
#
# MCP1754ST-5002E/MB
#
DEF MCP1754ST-5002E/MB U 0 30 Y Y 1 F N

View file

@ -300,50 +300,50 @@ K Thermocouple Converter
F http://www.maximintegrated.com/en/products/analog/sensors-and-sensor-interface/MAX31855.html#popuppdf
$ENDCMP
#
$CMP MCP9700AT-E/LT
D Low power, analog thermistor temperature sensor, 4C accuracy, -40C to +125C, in SC-70-5 package
K temperature sensor thermistor
F http://ww1.microchip.com/downloads/en/DeviceDoc/21942e.pdf
$ENDCMP
#
$CMP MCP9700AT-E/TT
D Low power, analog thermistor temperature sensor, 4C accuracy, -40C to +125C, in SOT-23-3 package
K temperature sensor thermistor
F http://ww1.microchip.com/downloads/en/DeviceDoc/21942e.pdf
$ENDCMP
#
$CMP MCP9700AT-H/LT
D Low power, analog thermistor temperature sensor, 4C accuracy, -40C to +150C, in SC-70-5 package
K temperature sensor thermistor
F http://ww1.microchip.com/downloads/en/DeviceDoc/21942e.pdf
$ENDCMP
#
$CMP MCP9700AT-H/TT
D Low power, analog thermistor temperature sensor, 4C accuracy, -40C to +150C, in SOT-23-3 package
K temperature sensor thermistor
F http://ww1.microchip.com/downloads/en/DeviceDoc/21942e.pdf
$ENDCMP
#
$CMP MCP9700T-E/LT
D Low power, analog thermistor temperature sensor, 2C accuracy, -40C to +125C, in SC-70-5 package
D Low power, analog thermistor temperature sensor, ±4C accuracy, -40C to +125C, in SC-70-5 package
K temperature sensor thermistor
F http://ww1.microchip.com/downloads/en/DeviceDoc/21942e.pdf
$ENDCMP
#
$CMP MCP9700T-E/TT
D Low power, analog thermistor temperature sensor, 2C accuracy, -40C to +125C, in SOT-23-3 package
D Low power, analog thermistor temperature sensor, ±4C accuracy, -40C to +125C, in SOT-23-3 package
K temperature sensor thermistor
F http://ww1.microchip.com/downloads/en/DeviceDoc/21942e.pdf
$ENDCMP
#
$CMP MCP9700T-H/LT
D Low power, analog thermistor temperature sensor, 2C accuracy, -40C to +150C, in SC-70-5 package
D Low power, analog thermistor temperature sensor, ±4C accuracy, -40C to +150C, in SC-70-5 package
K temperature sensor thermistor
F http://ww1.microchip.com/downloads/en/DeviceDoc/21942e.pdf
$ENDCMP
#
$CMP MCP9700T-H/TT
D Low power, analog thermistor temperature sensor, 2C accuracy, -40C to +150C, in SOT-23-3 package
D Low power, analog thermistor temperature sensor, ±4C accuracy, -40C to +150C, in SOT-23-3 package
K temperature sensor thermistor
F http://ww1.microchip.com/downloads/en/DeviceDoc/21942e.pdf
$ENDCMP
#
$CMP MCP9700AT-E/LT
D Low power, analog thermistor temperature sensor, ±2C accuracy, -40C to +125C, in SC-70-5 package
K temperature sensor thermistor
F http://ww1.microchip.com/downloads/en/DeviceDoc/21942e.pdf
$ENDCMP
#
$CMP MCP9700AT-E/TT
D Low power, analog thermistor temperature sensor, ±2C accuracy, -40C to +125C, in SOT-23-3 package
K temperature sensor thermistor
F http://ww1.microchip.com/downloads/en/DeviceDoc/21942e.pdf
$ENDCMP
#
$CMP MCP9700AT-H/LT
D Low power, analog thermistor temperature sensor, ±2C accuracy, -40C to +150C, in SC-70-5 package
K temperature sensor thermistor
F http://ww1.microchip.com/downloads/en/DeviceDoc/21942e.pdf
$ENDCMP
#
$CMP MCP9700AT-H/TT
D Low power, analog thermistor temperature sensor, ±2C accuracy, -40C to +150C, in SOT-23-3 package
K temperature sensor thermistor
F http://ww1.microchip.com/downloads/en/DeviceDoc/21942e.pdf
$ENDCMP
@ -360,6 +360,30 @@ K MEMS Microphone
F http://www.st.com/st-web-ui/static/active/en/resource/technical/document/datasheet/DM00025467.pdf
$ENDCMP
#
$CMP MPU-6000
D InvenSense 6-Axis Motion Sensor, Gyroscope, Accelerometer, I2C/SPI
K mems
F https://store.invensense.com/datasheets/invensense/MPU-6050_DataSheet_V3%204.pdf
$ENDCMP
#
$CMP MPU-6050
D InvenSense 6-Axis Motion Sensor, Gyroscope, Accelerometer, I2C
K mems
F https://store.invensense.com/datasheets/invensense/MPU-6050_DataSheet_V3%204.pdf
$ENDCMP
#
$CMP MPU-9150
D InvenSense 9-Axis Motion Sensor, Accelerometer, Gyroscope, Compass, I2C
K mems magnetometer
F https://www.invensense.com/wp-content/uploads/2015/02/MPU-9150-Datasheet.pdf
$ENDCMP
#
$CMP MPU-9250
D InvenSense 9-Axis Motion Sensor, Accelerometer, Gyroscope, Compass, I2C/SPI
K mems magnetometer
F https://store.invensense.com/datasheets/invensense/MPU9250REV1.0.pdf
$ENDCMP
#
$CMP MPXA6115A
D Absolute pressure sensor, 15 to 115kPa, analog output, integrated signal conditioning, temperature compensated, SO package
K absolute pressure sensor
@ -384,6 +408,12 @@ K absolute pressure sensor
F http://www.nxp.com/files/sensors/doc/data_sheet/MPXA6115A.pdf
$ENDCMP
#
$CMP SHT1x
D Temperature and humidity module
K digital temperature humidity sensor
F https://www.sensirion.com/fileadmin/user_upload/customers/sensirion/Dokumente/Humidity_Sensors/Sensirion_Humidity_Sensors_SHT1x_Datasheet_V5.pdf
$ENDCMP
#
$CMP TLV493D
D Low power 3D magnetic sensor, I2C interface, SOT23-6 package
K magnetic field i2c

View file

@ -723,7 +723,7 @@ ENDDEF
DEF MCP9700AT-E/LT U 0 40 Y Y 1 F N
F0 "U" -250 250 50 H V C CNN
F1 "MCP9700AT-E/LT" 50 250 50 H V L CNN
F2 "" 50 -250 50 H V L CNN
F2 "TO_SOT_Packages_SMD:SC-70-5" 0 -400 50 H I C CNN
F3 "" 0 0 50 H V C CNN
ALIAS MCP9700AT-H/LT MCP9700T-E/LT MCP9700T-H/LT
$FPLIST
@ -754,7 +754,7 @@ ENDDEF
DEF MCP9700T-H/TT U 0 40 Y Y 1 F N
F0 "U" -250 250 50 H V C CNN
F1 "MCP9700T-H/TT" 50 250 50 H V L CNN
F2 "" 100 -250 50 H V L CNN
F2 "TO_SOT_Packages_SMD:SOT-23" 0 -400 50 H I C CNN
F3 "" -150 250 50 H V C CNN
ALIAS MCP9700T-E/TT MCP9700AT-H/TT MCP9700AT-E/TT
$FPLIST
@ -821,6 +821,122 @@ X VDD 6 -400 100 100 R 50 50 1 1 W
ENDDRAW
ENDDEF
#
# MPU-6000
#
DEF MPU-6000 U 0 40 Y Y 1 F N
F0 "U" -450 550 50 H V C CNN
F1 "MPU-6000" 300 -550 50 H V C CNN
F2 "" 0 -800 50 H I C CNN
F3 "" 0 -150 50 H I C CNN
$FPLIST
QFN-24*4x4mm_Pitch0.5mm*
$ENDFPLIST
DRAW
S -500 500 500 -500 0 1 10 f
X CLKIN 1 -700 -300 200 R 50 50 1 1 I C
X AUX_SDA 6 700 100 200 L 50 50 1 1 B
X AUX_SCL 7 700 0 200 L 50 50 1 1 O C
X ~CS 8 -700 0 200 R 50 50 1 1 I
X AD0/MISO 9 -700 200 200 R 50 50 1 1 B
X REGOUT 10 700 -300 200 L 50 50 1 1 P
X CPOUT 20 700 -200 200 L 50 50 1 1 P
X FSYNC 11 -700 -200 200 R 50 50 1 1 I
X INT 12 700 300 200 L 50 50 1 1 O
X VDD 13 0 700 200 D 50 50 1 1 W
X SCL/SCLK 23 -700 100 200 R 50 50 1 1 I
X SDA/MOSI 24 -700 300 200 R 50 50 1 1 B
X GND 18 0 -700 200 U 50 50 1 1 W
ENDDRAW
ENDDEF
#
# MPU-6050
#
DEF MPU-6050 U 0 40 Y Y 1 F N
F0 "U" -450 550 50 H V C CNN
F1 "MPU-6050" 300 -550 50 H V C CNN
F2 "" 0 -800 50 H I C CNN
F3 "" 0 -150 50 H I C CNN
$FPLIST
QFN-24*4x4mm_Pitch0.5mm*
$ENDFPLIST
DRAW
S -500 500 500 -500 0 1 10 f
X CLKIN 1 -700 -300 200 R 50 50 1 1 I C
X AUX_SDA 6 700 100 200 L 50 50 1 1 B
X AUX_SCL 7 700 0 200 L 50 50 1 1 O C
X VDDIO 8 -100 700 200 D 50 50 1 1 W
X AD0 9 -700 100 200 R 50 50 1 1 I
X REGOUT 10 700 -300 200 L 50 50 1 1 P
X CPOUT 20 700 -200 200 L 50 50 1 1 P
X FSYNC 11 -700 -200 200 R 50 50 1 1 I
X INT 12 700 300 200 L 50 50 1 1 O
X VDD 13 100 700 200 D 50 50 1 1 W
X SCL 23 -700 200 200 R 50 50 1 1 I
X SDA 24 -700 300 200 R 50 50 1 1 B
X GND 18 0 -700 200 U 50 50 1 1 W
ENDDRAW
ENDDEF
#
# MPU-9150
#
DEF MPU-9150 U 0 40 Y Y 1 F N
F0 "U" -450 550 50 H V C CNN
F1 "MPU-9150" 350 -550 50 H V C CNN
F2 "" 0 -800 50 H I C CNN
F3 "" 0 -150 50 H I C CNN
$FPLIST
QFN-24*4x4mm_Pitch0.5mm*
$ENDFPLIST
DRAW
S -500 500 500 -500 0 1 10 f
X CLKIN 1 -700 -300 200 R 50 50 1 1 I C
X VDD 3 100 700 200 D 50 50 1 1 W
X AUX_SDA 6 700 100 200 L 50 50 1 1 B
X AUX_SCL 7 700 0 200 L 50 50 1 1 O C
X VDDIO 8 -100 700 200 D 50 50 1 1 W
X AD0 9 -700 100 200 R 50 50 1 1 I
X REGOUT 10 700 -300 200 L 50 50 1 1 P
X CPOUT 20 700 -200 200 L 50 50 1 1 P
X FSYNC 11 -700 -200 200 R 50 50 1 1 I
X INT 12 700 300 200 L 50 50 1 1 O
X VDD 13 200 700 200 D 50 50 1 1 W
X SCL 23 -700 200 200 R 50 50 1 1 I
X SDA 24 -700 300 200 R 50 50 1 1 B
X GND 15 -100 -700 200 U 50 50 1 1 W
X GND 17 0 -700 200 U 50 50 1 1 W
X GND 18 100 -700 200 U 50 50 1 1 W
ENDDRAW
ENDDEF
#
# MPU-9250
#
DEF MPU-9250 U 0 40 Y Y 1 F N
F0 "U" -450 750 50 H V C CNN
F1 "MPU-9250" 300 -750 50 H V C CNN
F2 "" 0 -1000 50 H I C CNN
F3 "" 0 -150 50 H I C CNN
$FPLIST
QFN-24*3x3mm_Pitch0.4mm*
$ENDFPLIST
DRAW
S -500 700 500 -700 0 1 10 f
X RESV_VDDIO 1 700 -300 200 L 50 50 1 1 I
X AUX_SDA 6 700 100 200 L 50 50 1 1 B
X AUX_SCL 7 700 0 200 L 50 50 1 1 O C
X VDDIO 8 -100 900 200 D 50 50 1 1 W
X AD0/MISO 9 -700 200 200 R 50 50 1 1 B
X REGOUT 10 700 -200 200 L 50 50 1 1 P
X RESV_GND 20 700 -400 200 L 50 50 1 1 W
X FSYNC 11 -700 -200 200 R 50 50 1 1 I
X INT 12 700 300 200 L 50 50 1 1 O
X ~CS 22 -700 0 200 R 50 50 1 1 I
X VDD 13 100 900 200 D 50 50 1 1 W
X SCL/SCLK 23 -700 100 200 R 50 50 1 1 I
X SDA/MOSI 24 -700 300 200 R 50 50 1 1 B
X GND 18 0 -900 200 U 50 50 1 1 W
ENDDRAW
ENDDEF
#
# MPXA6115A
#
DEF MPXA6115A U 0 40 Y Y 1 F N
@ -846,6 +962,25 @@ X NC 8 100 -300 100 U 50 50 1 1 N N
ENDDRAW
ENDDEF
#
# SHT1x
#
DEF SHT1x U 0 40 Y Y 1 F N
F0 "U" 150 250 50 H V C CNN
F1 "SHT1x" 100 -250 50 H V C CNN
F2 "" 150 250 50 H V C CNN
F3 "" 150 250 50 H V C CNN
$FPLIST
SHT1x
$ENDFPLIST
DRAW
S -200 200 200 -200 0 1 0 f
X GND 1 -100 -300 100 U 50 50 1 1 W
X DATA 2 300 100 100 L 50 50 1 1 B
X SCK 3 300 -100 100 L 50 50 1 1 I
X VDD 4 -100 300 100 D 50 50 1 1 W
ENDDRAW
ENDDEF
#
# TLV493D
#
DEF TLV493D U 0 40 Y Y 1 F N

View file

@ -198,6 +198,18 @@ K ARM 7TDM uC TMS470
F http://www.ti.com/lit/ds/symlink/tms470r1b768.pdf
$ENDCMP
#
$CMP TPS2044D
D Quad power-distribution switcher
K 4-chanel power-distribution USB
F http://www.ti.com/lit/ds/symlink/tps2044.pdf
$ENDCMP
#
$CMP TPS2054D
D Quad power-distribution switcher
K 4-chanel power-distribution USB
F http://www.ti.com/lit/ds/symlink/tps2044.pdf
$ENDCMP
#
$CMP TPS2513
D USB Dedicated Charging Port Controller
K USB Charge

View file

@ -14,20 +14,20 @@ $FPLIST
$ENDFPLIST
DRAW
S -300 300 300 -300 0 1 10 f
P 2 0 1 0 -50 -250 -50 -300 N
P 2 0 1 0 -50 -150 -50 -200 N
P 2 0 1 0 -50 -50 -50 -100 N
P 2 0 1 0 -50 50 -50 0 N
P 2 0 1 0 -50 150 -50 100 N
P 2 0 1 0 -50 250 -50 200 N
P 2 0 1 0 50 -250 50 -300 N
P 2 0 1 0 50 -150 50 -200 N
P 2 0 1 0 50 -50 50 -100 N
P 2 0 1 0 50 50 50 0 N
P 2 0 1 0 50 150 50 100 N
P 2 0 1 0 50 250 50 200 N
P 4 0 1 0 -25 -175 -25 -225 25 -200 -25 -175 N
P 4 0 1 0 -25 -75 -25 -125 25 -100 -25 -75 N
P 2 0 1 0 -50 -250 -50 -300 N
P 2 0 1 0 -50 -150 -50 -200 N
P 2 0 1 0 -50 -50 -50 -100 N
P 2 0 1 0 -50 50 -50 0 N
P 2 0 1 0 -50 150 -50 100 N
P 2 0 1 0 -50 250 -50 200 N
P 2 0 1 0 50 -250 50 -300 N
P 2 0 1 0 50 -150 50 -200 N
P 2 0 1 0 50 -50 50 -100 N
P 2 0 1 0 50 50 50 0 N
P 2 0 1 0 50 150 50 100 N
P 2 0 1 0 50 250 50 200 N
P 4 0 1 0 -25 -175 -25 -225 25 -200 -25 -175 N
P 4 0 1 0 -25 -75 -25 -125 25 -100 -25 -75 N
X VCC1 1 -400 200 100 R 50 50 1 1 W
X INA 2 -400 -100 100 R 50 50 1 1 I
X INB 3 -400 -200 100 R 50 50 1 1 I
@ -52,20 +52,20 @@ $FPLIST
$ENDFPLIST
DRAW
S -300 300 300 -300 0 1 10 f
P 2 0 1 0 -50 -250 -50 -300 N
P 2 0 1 0 -50 -150 -50 -200 N
P 2 0 1 0 -50 -50 -50 -100 N
P 2 0 1 0 -50 50 -50 0 N
P 2 0 1 0 -50 150 -50 100 N
P 2 0 1 0 -50 250 -50 200 N
P 2 0 1 0 50 -250 50 -300 N
P 2 0 1 0 50 -150 50 -200 N
P 2 0 1 0 50 -50 50 -100 N
P 2 0 1 0 50 50 50 0 N
P 2 0 1 0 50 150 50 100 N
P 2 0 1 0 50 250 50 200 N
P 4 0 1 0 -25 -175 -25 -225 25 -200 -25 -175 N
P 4 0 1 0 -25 -100 25 -75 25 -125 -25 -100 N
P 2 0 1 0 -50 -250 -50 -300 N
P 2 0 1 0 -50 -150 -50 -200 N
P 2 0 1 0 -50 -50 -50 -100 N
P 2 0 1 0 -50 50 -50 0 N
P 2 0 1 0 -50 150 -50 100 N
P 2 0 1 0 -50 250 -50 200 N
P 2 0 1 0 50 -250 50 -300 N
P 2 0 1 0 50 -150 50 -200 N
P 2 0 1 0 50 -50 50 -100 N
P 2 0 1 0 50 50 50 0 N
P 2 0 1 0 50 150 50 100 N
P 2 0 1 0 50 250 50 200 N
P 4 0 1 0 -25 -175 -25 -225 25 -200 -25 -175 N
P 4 0 1 0 -25 -100 25 -75 25 -125 -25 -100 N
X VCC1 1 -400 200 100 R 50 50 1 1 W
X OUTA 2 -400 -100 100 R 50 50 1 1 O
X INB 3 -400 -200 100 R 50 50 1 1 I
@ -90,30 +90,30 @@ $FPLIST
$ENDFPLIST
DRAW
S -300 500 300 -500 0 1 10 f
P 2 0 1 0 -50 -450 -50 -500 N
P 2 0 1 0 -50 -350 -50 -400 N
P 2 0 1 0 -50 -250 -50 -300 N
P 2 0 1 0 -50 -150 -50 -200 N
P 2 0 1 0 -50 -50 -50 -100 N
P 2 0 1 0 -50 50 -50 0 N
P 2 0 1 0 -50 150 -50 100 N
P 2 0 1 0 -50 250 -50 200 N
P 2 0 1 0 -50 350 -50 300 N
P 2 0 1 0 -50 450 -50 400 N
P 2 0 1 0 50 -450 50 -500 N
P 2 0 1 0 50 -350 50 -400 N
P 2 0 1 0 50 -250 50 -300 N
P 2 0 1 0 50 -150 50 -200 N
P 2 0 1 0 50 -50 50 -100 N
P 2 0 1 0 50 50 50 0 N
P 2 0 1 0 50 150 50 100 N
P 2 0 1 0 50 250 50 200 N
P 2 0 1 0 50 350 50 300 N
P 2 0 1 0 50 450 50 400 N
P 4 0 1 0 -25 -375 -25 -425 25 -400 -25 -375 N
P 4 0 1 0 -25 -275 -25 -325 25 -300 -25 -275 N
P 4 0 1 0 -25 -175 -25 -225 25 -200 -25 -175 N
P 4 0 1 0 -25 -75 -25 -125 25 -100 -25 -75 N
P 2 0 1 0 -50 -450 -50 -500 N
P 2 0 1 0 -50 -350 -50 -400 N
P 2 0 1 0 -50 -250 -50 -300 N
P 2 0 1 0 -50 -150 -50 -200 N
P 2 0 1 0 -50 -50 -50 -100 N
P 2 0 1 0 -50 50 -50 0 N
P 2 0 1 0 -50 150 -50 100 N
P 2 0 1 0 -50 250 -50 200 N
P 2 0 1 0 -50 350 -50 300 N
P 2 0 1 0 -50 450 -50 400 N
P 2 0 1 0 50 -450 50 -500 N
P 2 0 1 0 50 -350 50 -400 N
P 2 0 1 0 50 -250 50 -300 N
P 2 0 1 0 50 -150 50 -200 N
P 2 0 1 0 50 -50 50 -100 N
P 2 0 1 0 50 50 50 0 N
P 2 0 1 0 50 150 50 100 N
P 2 0 1 0 50 250 50 200 N
P 2 0 1 0 50 350 50 300 N
P 2 0 1 0 50 450 50 400 N
P 4 0 1 0 -25 -375 -25 -425 25 -400 -25 -375 N
P 4 0 1 0 -25 -275 -25 -325 25 -300 -25 -275 N
P 4 0 1 0 -25 -175 -25 -225 25 -200 -25 -175 N
P 4 0 1 0 -25 -75 -25 -125 25 -100 -25 -75 N
X VCC1 1 -400 400 100 R 50 50 1 1 W
X GND1 2 -400 300 100 R 50 50 1 1 W
X INA 3 -400 -100 100 R 50 50 1 1 I
@ -145,30 +145,30 @@ $FPLIST
$ENDFPLIST
DRAW
S -300 500 300 -500 0 1 10 f
P 2 0 1 0 -50 -450 -50 -500 N
P 2 0 1 0 -50 -350 -50 -400 N
P 2 0 1 0 -50 -250 -50 -300 N
P 2 0 1 0 -50 -150 -50 -200 N
P 2 0 1 0 -50 -50 -50 -100 N
P 2 0 1 0 -50 50 -50 0 N
P 2 0 1 0 -50 150 -50 100 N
P 2 0 1 0 -50 250 -50 200 N
P 2 0 1 0 -50 350 -50 300 N
P 2 0 1 0 -50 450 -50 400 N
P 2 0 1 0 50 -450 50 -500 N
P 2 0 1 0 50 -350 50 -400 N
P 2 0 1 0 50 -250 50 -300 N
P 2 0 1 0 50 -150 50 -200 N
P 2 0 1 0 50 -50 50 -100 N
P 2 0 1 0 50 50 50 0 N
P 2 0 1 0 50 150 50 100 N
P 2 0 1 0 50 250 50 200 N
P 2 0 1 0 50 350 50 300 N
P 2 0 1 0 50 450 50 400 N
P 4 0 1 0 -25 -400 25 -375 25 -425 -25 -400 N
P 4 0 1 0 -25 -275 -25 -325 25 -300 -25 -275 N
P 4 0 1 0 -25 -175 -25 -225 25 -200 -25 -175 N
P 4 0 1 0 -25 -75 -25 -125 25 -100 -25 -75 N
P 2 0 1 0 -50 -450 -50 -500 N
P 2 0 1 0 -50 -350 -50 -400 N
P 2 0 1 0 -50 -250 -50 -300 N
P 2 0 1 0 -50 -150 -50 -200 N
P 2 0 1 0 -50 -50 -50 -100 N
P 2 0 1 0 -50 50 -50 0 N
P 2 0 1 0 -50 150 -50 100 N
P 2 0 1 0 -50 250 -50 200 N
P 2 0 1 0 -50 350 -50 300 N
P 2 0 1 0 -50 450 -50 400 N
P 2 0 1 0 50 -450 50 -500 N
P 2 0 1 0 50 -350 50 -400 N
P 2 0 1 0 50 -250 50 -300 N
P 2 0 1 0 50 -150 50 -200 N
P 2 0 1 0 50 -50 50 -100 N
P 2 0 1 0 50 50 50 0 N
P 2 0 1 0 50 150 50 100 N
P 2 0 1 0 50 250 50 200 N
P 2 0 1 0 50 350 50 300 N
P 2 0 1 0 50 450 50 400 N
P 4 0 1 0 -25 -400 25 -375 25 -425 -25 -400 N
P 4 0 1 0 -25 -275 -25 -325 25 -300 -25 -275 N
P 4 0 1 0 -25 -175 -25 -225 25 -200 -25 -175 N
P 4 0 1 0 -25 -75 -25 -125 25 -100 -25 -75 N
X VCC1 1 -400 400 100 R 50 50 1 1 W
X GND1 2 -400 300 100 R 50 50 1 1 W
X INA 3 -400 -100 100 R 50 50 1 1 I
@ -201,30 +201,30 @@ $FPLIST
$ENDFPLIST
DRAW
S -300 500 300 -500 0 1 10 f
P 2 0 1 0 -50 -450 -50 -500 N
P 2 0 1 0 -50 -350 -50 -400 N
P 2 0 1 0 -50 -250 -50 -300 N
P 2 0 1 0 -50 -150 -50 -200 N
P 2 0 1 0 -50 -50 -50 -100 N
P 2 0 1 0 -50 50 -50 0 N
P 2 0 1 0 -50 150 -50 100 N
P 2 0 1 0 -50 250 -50 200 N
P 2 0 1 0 -50 350 -50 300 N
P 2 0 1 0 -50 450 -50 400 N
P 2 0 1 0 50 -450 50 -500 N
P 2 0 1 0 50 -350 50 -400 N
P 2 0 1 0 50 -250 50 -300 N
P 2 0 1 0 50 -150 50 -200 N
P 2 0 1 0 50 -50 50 -100 N
P 2 0 1 0 50 50 50 0 N
P 2 0 1 0 50 150 50 100 N
P 2 0 1 0 50 250 50 200 N
P 2 0 1 0 50 350 50 300 N
P 2 0 1 0 50 450 50 400 N
P 4 0 1 0 -25 -400 25 -375 25 -425 -25 -400 N
P 4 0 1 0 -25 -300 25 -275 25 -325 -25 -300 N
P 4 0 1 0 -25 -175 -25 -225 25 -200 -25 -175 N
P 4 0 1 0 -25 -75 -25 -125 25 -100 -25 -75 N
P 2 0 1 0 -50 -450 -50 -500 N
P 2 0 1 0 -50 -350 -50 -400 N
P 2 0 1 0 -50 -250 -50 -300 N
P 2 0 1 0 -50 -150 -50 -200 N
P 2 0 1 0 -50 -50 -50 -100 N
P 2 0 1 0 -50 50 -50 0 N
P 2 0 1 0 -50 150 -50 100 N
P 2 0 1 0 -50 250 -50 200 N
P 2 0 1 0 -50 350 -50 300 N
P 2 0 1 0 -50 450 -50 400 N
P 2 0 1 0 50 -450 50 -500 N
P 2 0 1 0 50 -350 50 -400 N
P 2 0 1 0 50 -250 50 -300 N
P 2 0 1 0 50 -150 50 -200 N
P 2 0 1 0 50 -50 50 -100 N
P 2 0 1 0 50 50 50 0 N
P 2 0 1 0 50 150 50 100 N
P 2 0 1 0 50 250 50 200 N
P 2 0 1 0 50 350 50 300 N
P 2 0 1 0 50 450 50 400 N
P 4 0 1 0 -25 -400 25 -375 25 -425 -25 -400 N
P 4 0 1 0 -25 -300 25 -275 25 -325 -25 -300 N
P 4 0 1 0 -25 -175 -25 -225 25 -200 -25 -175 N
P 4 0 1 0 -25 -75 -25 -125 25 -100 -25 -75 N
X VCC1 1 -400 400 100 R 50 50 1 1 W
X GND1 2 -400 300 100 R 50 50 1 1 W
X INA 3 -400 -100 100 R 50 50 1 1 I
@ -632,16 +632,16 @@ F1 "TMS320LF2406" 1050 2400 50 H V C CNN
F2 "" 0 0 50 H V C CNN
F3 "" 0 0 50 H V C CNN
DRAW
T 1 -1000 1250 40 0 0 1 ANALOG Normal 0 C C
T 1 -700 -200 60 0 0 1 COMMUNICATIONS Normal 0 C C
T 1 500 50 60 0 0 1 EVENT Normal 0 C C
T 1 500 1550 60 0 0 1 EVENT Normal 0 C C
T 1 -1000 1250 40 0 0 1 ANALOG Normal 0 C C
T 1 -700 -200 60 0 0 1 COMMUNICATIONS Normal 0 C C
T 1 500 50 60 0 0 1 EVENT Normal 0 C C
T 1 500 1550 60 0 0 1 EVENT Normal 0 C C
S -1600 2300 1600 -2350 0 1 0 N
P 3 0 1 0 -1050 2300 -1050 350 -1600 350 N
P 4 0 1 0 -1600 -750 -550 -750 -550 -1450 -1600 -1450 N
P 4 0 1 0 -1600 250 -750 250 -750 -650 -1600 -650 N
P 4 0 1 0 700 2250 550 2250 550 850 750 850 N
P 4 0 1 0 750 750 550 750 550 -650 750 -650 N
P 3 0 1 0 -1050 2300 -1050 350 -1600 350 N
P 4 0 1 0 -1600 -750 -550 -750 -550 -1450 -1600 -1450 N
P 4 0 1 0 -1600 250 -750 250 -750 -650 -1600 -650 N
P 4 0 1 0 700 2250 550 2250 550 850 750 850 N
P 4 0 1 0 750 750 550 750 550 -650 750 -650 N
X ADCIN1 77 -1900 2100 300 R 50 50 0 1 I
X BOOT_EN*/XF 0 -1900 -1850 300 R 50 50 1 1 I
X TRST 1 1900 -1600 300 L 50 50 1 1 I I
@ -901,6 +901,68 @@ X HET[4] 139 -1500 100 150 R 50 50 1 1 P
ENDDRAW
ENDDEF
#
# TPS2044D
#
DEF TPS2044D U 0 40 Y Y 2 L N
F0 "U" 0 425 50 H V C CNN
F1 "TPS2044D" 0 350 50 H V C CNN
F2 "Housings_SOIC:SOIC-16_3.9x9.9mm_Pitch1.27mm" 0 -450 50 H V C CNN
F3 "" -50 300 50 H V C CNN
$FPLIST
SOIC*3.9x9.9mm*1.27mm*
$ENDFPLIST
DRAW
S -300 300 300 -400 0 1 10 f
X GND 1 500 -300 200 L 50 50 1 1 W
X IN1 2 500 200 200 L 50 50 1 1 W
X ~EN1 3 -500 -200 200 R 50 50 1 1 I
X ~EN2 4 -500 -300 200 R 50 50 1 1 I
X ~OC2 13 -500 100 200 R 50 50 1 1 C
X OUT2 14 500 -100 200 L 50 50 1 1 w
X OUT1 15 500 0 200 L 50 50 1 1 w
X ~OC1 16 -500 200 200 R 50 50 1 1 C
X GND 5 500 -300 200 L 50 50 2 1 W
X IN2 6 500 200 200 L 50 50 2 1 W
X ~EN3 7 -500 -200 200 R 50 50 2 1 I
X ~EN4 8 -500 -300 200 R 50 50 2 1 I
X ~OC4 9 -500 100 200 R 50 50 2 1 C
X OUT4 10 500 -100 200 L 50 50 2 1 w
X OUT3 11 500 0 200 L 50 50 2 1 w
X ~OC3 12 -500 200 200 R 50 50 2 1 C
ENDDRAW
ENDDEF
#
# TPS2054D
#
DEF TPS2054D U 0 40 Y Y 2 L N
F0 "U" 0 425 50 H V C CNN
F1 "TPS2054D" 0 350 50 H V C CNN
F2 "Housings_SOIC:SOIC-16_3.9x9.9mm_Pitch1.27mm" 0 -450 50 H V C CNN
F3 "" -50 300 50 H V C CNN
$FPLIST
SOIC*3.9x9.9mm*1.27mm*
$ENDFPLIST
DRAW
S -300 300 300 -400 0 1 10 f
X GND 1 500 -300 200 L 50 50 1 1 W
X IN1 2 500 200 200 L 50 50 1 1 W
X EN1 3 -500 -200 200 R 50 50 1 1 I
X EN2 4 -500 -300 200 R 50 50 1 1 I
X ~OC2 13 -500 100 200 R 50 50 1 1 C
X OUT2 14 500 -100 200 L 50 50 1 1 W
X OUT1 15 500 0 200 L 50 50 1 1 w
X ~OC1 16 -500 200 200 R 50 50 1 1 C
X GND 5 500 -300 200 L 50 50 2 1 W
X IN2 6 500 200 200 L 50 50 2 1 W
X EN3 7 -500 -200 200 R 50 50 2 1 I
X EN4 8 -500 -300 200 R 50 50 2 1 I
X ~OC4 9 -500 100 200 R 50 50 2 1 C
X OUT4 10 500 -100 200 L 50 50 2 1 w
X OUT3 11 500 0 200 L 50 50 2 1 w
X ~OC3 12 -500 200 200 R 50 50 2 1 C
ENDDRAW
ENDDEF
#
# TPS2513
#
DEF TPS2513 U 0 40 Y Y 1 F N

View file

@ -1,11 +1,11 @@
(fp_lib_table
(lib (name Air_Coils_SML_NEOSID)(type Github)(uri ${KIGITHUB}/Air_Coils_SML_NEOSID.pretty)(options "")(descr HAMxx31A_HDMxx31A))
(lib (name Buttons_Switches_SMD)(type Github)(uri ${KIGITHUB}/Buttons_Switches_SMD.pretty)(options "")(descr "Buttons and switches, surface mount"))
(lib (name Buttons_Switches_ThroughHole)(type Github)(uri ${KIGITHUB}/Buttons_Switches_ThroughHole.pretty)(options "")(descr "Buttons and switches, through hole"))
(lib (name Buttons_Switches_THT)(type Github)(uri ${KIGITHUB}/Buttons_Switches_THT.pretty)(options "")(descr "Buttons and switches, through hole"))
(lib (name Buzzers_Beepers)(type Github)(uri ${KIGITHUB}/Buzzers_Beepers.pretty)(options "")(descr "Audio signalling devices"))
(lib (name Capacitors_SMD)(type Github)(uri ${KIGITHUB}/Capacitors_SMD.pretty)(options "")(descr "Capacitors, surface mount"))
(lib (name Capacitors_Tantalum_SMD)(type Github)(uri ${KIGITHUB}/Capacitors_Tantalum_SMD.pretty)(options "")(descr "Tantalum capacitors, surface mount"))
(lib (name Capacitors_ThroughHole)(type Github)(uri ${KIGITHUB}/Capacitors_ThroughHole.pretty)(options "")(descr "Capacitors, through hole"))
(lib (name Capacitors_THT)(type Github)(uri ${KIGITHUB}/Capacitors_THT.pretty)(options "")(descr "Capacitors, through hole"))
(lib (name Choke_Axial_ThroughHole)(type Github)(uri ${KIGITHUB}/Choke_Axial_ThroughHole.pretty)(options "")(descr "Chokes, axial, throuh hole"))
(lib (name Choke_Common-Mode_Wurth)(type Github)(uri ${KIGITHUB}/Choke_Common-Mode_Wurth.pretty)(options "")(descr "Chokes, common mode"))
(lib (name Choke_Radial_ThroughHole)(type Github)(uri ${KIGITHUB}/Choke_Radial_ThroughHole.pretty)(options "")(descr "Chokes, radial, through hole"))
@ -15,18 +15,22 @@
(lib (name Connectors_Hirose)(type Github)(uri ${KIGITHUB}/Connectors_Hirose.pretty)(options "")(descr "Hirose connector footprints www.hirose.com"))
(lib (name Connectors_JAE)(type Github)(uri ${KIGITHUB}/Connectors_JAE.pretty)(options "")(descr "JAE connector footprints http://www.jae.com/jccom/en/connectors"))
(lib (name Connectors_JST)(type Github)(uri ${KIGITHUB}/Connectors_JST.pretty)(options "")(descr "JST connector footprints www.jst.com"))
(lib (name Connectors_Mini-Universal)(type Github)(uri ${KIGITHUB}/Connectors_Mini-Universal.pretty)(options "")(descr Mate-N-Lok))
(lib (name Connectors_Molex)(type Github)(uri ${KIGITHUB}/Connectors_Molex.pretty)(options "")(descr "Molex connector foottprints www.molex.com"))
(lib (name Connectors_Multicomp)(type Github)(uri ${KIGITHUB}/Connectors_Multicomp.pretty)(options "")(descr "Multicomp connector footprints"))
(lib (name Connectors_Phoenix)(type Github)(uri ${KIGITHUB}/Connectors_Phoenix.pretty)(options "")(descr "Phoenix connector footprints"))
(lib (name Connectors_Samtec)(type Github)(uri ${KIGITHUB}/Connectors_Samtec.pretty)(options "")(descr "Samtec connector footprints"))
(lib (name Connect)(type Github)(uri ${KIGITHUB}/Connect.pretty)(options "")(descr "Assorted connector footprints"))
(lib (name Connectors_TE-Connectivity)(type Github)(uri ${KIGITHUB}/Connectors_TE-Connectivity.pretty)(options "")(descr "TE Connectivity connector footprints www.te.com"))
(lib (name Connectors_Terminal_Blocks)(type Github)(uri ${KIGITHUB}/Connectors_Terminal_Blocks.pretty)(options "")(descr "Terminal block connectors"))
(lib (name Connectors_WAGO)(type Github)(uri ${KIGITHUB}/Connectors_WAGO.pretty)(options "")(descr "WAGO connector footprints www.wago.com"))
(lib (name Connectors)(type Github)(uri ${KIGITHUB}/Connectors.pretty)(options "")(descr "Assorted connector footprints"))
(lib (name Converters_DCDC_ACDC)(type Github)(uri ${KIGITHUB}/Converters_DCDC_ACDC.pretty)(options "")(descr "DC-DC and AC-DC convertor modules"))
(lib (name Crystals)(type Github)(uri ${KIGITHUB}/Crystals.pretty)(options "")(descr "Crystals and oscillators"))
(lib (name Diodes_SMD)(type Github)(uri ${KIGITHUB}/Diodes_SMD.pretty)(options "")(descr "Diodes, surface mount"))
(lib (name Diodes_ThroughHole)(type Github)(uri ${KIGITHUB}/Diodes_ThroughHole.pretty)(options "")(descr "Diodes, through hole"))
(lib (name Diodes_THT)(type Github)(uri ${KIGITHUB}/Diodes_THT.pretty)(options "")(descr "Diodes, through hole"))
(lib (name Discret)(type Github)(uri ${KIGITHUB}/Discret.pretty)(options "")(descr "Deprecated - will be removed"))
(lib (name Displays_7-Segment)(type Github)(uri ${KIGITHUB}/Displays_7-Segment.pretty)(options "")(descr "Seven segment displays"))
(lib (name Display)(type Github)(uri ${KIGITHUB}/Display.pretty)(options "")(descr "Display modules"))
(lib (name Displays)(type Github)(uri ${KIGITHUB}/Displays.pretty)(options "")(descr "Display modules"))
(lib (name Divers)(type Github)(uri ${KIGITHUB}/Divers.pretty)(options "")(descr "Deprecated - will be removed"))
(lib (name EuroBoard_Outline)(type Github)(uri ${KIGITHUB}/EuroBoard_Outline.pretty)(options "")(descr "Deprecated - will be removed"))
(lib (name Fiducials)(type Github)(uri ${KIGITHUB}/Fiducials.pretty)(options "")(descr "Fiducial markings"))
@ -58,21 +62,17 @@
(lib (name Pin_Headers)(type Github)(uri ${KIGITHUB}/Pin_Headers.pretty)(options "")(descr "Male pin headers."))
(lib (name Potentiometers)(type Github)(uri ${KIGITHUB}/Potentiometers.pretty)(options "")(descr "Potentiometers / variable resistors"))
(lib (name Power_Integrations)(type Github)(uri ${KIGITHUB}/Power_Integrations.pretty)(options "")(descr "The way you like them."))
(lib (name Relays_ThroughHole)(type Github)(uri ${KIGITHUB}/Relays_ThroughHole.pretty)(options "")(descr "Through hole relay packages"))
(lib (name Relays_THT)(type Github)(uri ${KIGITHUB}/Relays_THT.pretty)(options "")(descr "Through hole relay packages"))
(lib (name Resistors_SMD)(type Github)(uri ${KIGITHUB}/Resistors_SMD.pretty)(options "")(descr "Resistors, surface mount"))
(lib (name Resistors_ThroughHole)(type Github)(uri ${KIGITHUB}/Resistors_ThroughHole.pretty)(options "")(descr "Resistors, through hole"))
(lib (name Resistors_THT)(type Github)(uri ${KIGITHUB}/Resistors_THT.pretty)(options "")(descr "Resistors, through hole"))
(lib (name Resistors_Universal)(type Github)(uri ${KIGITHUB}/Resistors_Universal.pretty)(options "")(descr Experimental))
(lib (name RF_Modules)(type Github)(uri ${KIGITHUB}/RF_Modules.pretty)(options "")(descr "Radio-frequency / wireless modules"))
(lib (name Shielding_Cabinets)(type Github)(uri ${KIGITHUB}/Shielding_Cabinets.pretty)(options "")(descr "RF / EMI shields"))
(lib (name SMD_Packages)(type Github)(uri ${KIGITHUB}/SMD_Packages.pretty)(options "")(descr "This library content will be moved elsewhere. Don't add anything in it."))
(lib (name Sockets_BNC)(type Github)(uri ${KIGITHUB}/Sockets_BNC.pretty)(options "")(descr "BNC connector footprints"))
(lib (name Sockets_Mini-Universal)(type Github)(uri ${KIGITHUB}/Sockets_Mini-Universal.pretty)(options "")(descr Mate-N-Lok))
(lib (name Sockets_MOLEX_KK-System)(type Github)(uri ${KIGITHUB}/Sockets_MOLEX_KK-System.pretty)(options "")(descr "Deprecated - will be removed"))
(lib (name Socket_Strips)(type Github)(uri ${KIGITHUB}/Socket_Strips.pretty)(options "")(descr "Female socket strips."))
(lib (name Sockets)(type Github)(uri ${KIGITHUB}/Sockets.pretty)(options "")(descr "The way you like them."))
(lib (name Sockets_WAGO734)(type Github)(uri ${KIGITHUB}/Sockets_WAGO734.pretty)(options "")(descr "The way you like them."))
(lib (name Symbols)(type Github)(uri ${KIGITHUB}/Symbols.pretty)(options "")(descr "The way you like them."))
(lib (name Terminal_Blocks)(type Github)(uri ${KIGITHUB}/Terminal_Blocks.pretty)(options "")(descr "Terminal block connectors"))
(lib (name TO_SOT_Packages_SMD)(type Github)(uri ${KIGITHUB}/TO_SOT_Packages_SMD.pretty)(options "")(descr "Surface mount transistor packages"))
(lib (name TO_SOT_Packages_THT)(type Github)(uri ${KIGITHUB}/TO_SOT_Packages_THT.pretty)(options "")(descr "Through hole transistor packages"))
(lib (name Transformers_CHK)(type Github)(uri ${KIGITHUB}/Transformers_CHK.pretty)(options "")(descr "The way you like them."))

View file

@ -1,11 +1,11 @@
(fp_lib_table
(lib (name Air_Coils_SML_NEOSID)(type KiCad)(uri ${KISYSMOD}/Air_Coils_SML_NEOSID.pretty)(options "")(descr HAMxx31A_HDMxx31A))
(lib (name Buttons_Switches_SMD)(type KiCad)(uri ${KISYSMOD}/Buttons_Switches_SMD.pretty)(options "")(descr "Buttons and switches, surface mount"))
(lib (name Buttons_Switches_ThroughHole)(type KiCad)(uri ${KISYSMOD}/Buttons_Switches_ThroughHole.pretty)(options "")(descr "Buttons and switches, through hole"))
(lib (name Buttons_Switches_THT)(type KiCad)(uri ${KISYSMOD}/Buttons_Switches_THT.pretty)(options "")(descr "Buttons and switches, through hole"))
(lib (name Buzzers_Beepers)(type KiCad)(uri ${KISYSMOD}/Buzzers_Beepers.pretty)(options "")(descr "Audio signalling devices"))
(lib (name Capacitors_SMD)(type KiCad)(uri ${KISYSMOD}/Capacitors_SMD.pretty)(options "")(descr "Capacitors, surface mount"))
(lib (name Capacitors_Tantalum_SMD)(type KiCad)(uri ${KISYSMOD}/Capacitors_Tantalum_SMD.pretty)(options "")(descr "Tantalum capacitors, surface mount"))
(lib (name Capacitors_ThroughHole)(type KiCad)(uri ${KISYSMOD}/Capacitors_ThroughHole.pretty)(options "")(descr "Capacitors, through hole"))
(lib (name Capacitors_THT)(type KiCad)(uri ${KISYSMOD}/Capacitors_THT.pretty)(options "")(descr "Capacitors, through hole"))
(lib (name Choke_Axial_ThroughHole)(type KiCad)(uri ${KISYSMOD}/Choke_Axial_ThroughHole.pretty)(options "")(descr "Chokes, axial, throuh hole"))
(lib (name Choke_Common-Mode_Wurth)(type KiCad)(uri ${KISYSMOD}/Choke_Common-Mode_Wurth.pretty)(options "")(descr "Chokes, common mode"))
(lib (name Choke_Radial_ThroughHole)(type KiCad)(uri ${KISYSMOD}/Choke_Radial_ThroughHole.pretty)(options "")(descr "Chokes, radial, through hole"))
@ -15,18 +15,22 @@
(lib (name Connectors_Hirose)(type KiCad)(uri ${KISYSMOD}/Connectors_Hirose.pretty)(options "")(descr "Hirose connector footprints www.hirose.com"))
(lib (name Connectors_JAE)(type KiCad)(uri ${KISYSMOD}/Connectors_JAE.pretty)(options "")(descr "JAE connector footprints http://www.jae.com/jccom/en/connectors"))
(lib (name Connectors_JST)(type KiCad)(uri ${KISYSMOD}/Connectors_JST.pretty)(options "")(descr "JST connector footprints www.jst.com"))
(lib (name Connectors_Mini-Universal)(type KiCad)(uri ${KISYSMOD}/Connectors_Mini-Universal.pretty)(options "")(descr Mate-N-Lok))
(lib (name Connectors_Molex)(type KiCad)(uri ${KISYSMOD}/Connectors_Molex.pretty)(options "")(descr "Molex connector foottprints www.molex.com"))
(lib (name Connectors_Multicomp)(type KiCad)(uri ${KISYSMOD}/Connectors_Multicomp.pretty)(options "")(descr "Multicomp connector footprints"))
(lib (name Connectors_Phoenix)(type KiCad)(uri ${KISYSMOD}/Connectors_Phoenix.pretty)(options "")(descr "Phoenix connector footprints"))
(lib (name Connectors_Samtec)(type KiCad)(uri ${KISYSMOD}/Connectors_Samtec.pretty)(options "")(descr "Samtec connector footprints"))
(lib (name Connect)(type KiCad)(uri ${KISYSMOD}/Connect.pretty)(options "")(descr "Assorted connector footprints"))
(lib (name Connectors_TE-Connectivity)(type KiCad)(uri ${KISYSMOD}/Connectors_TE-Connectivity.pretty)(options "")(descr "TE Connectivity connector footprints www.te.com"))
(lib (name Connectors_Terminal_Blocks)(type KiCad)(uri ${KISYSMOD}/Connectors_Terminal_Blocks.pretty)(options "")(descr "Terminal block connectors"))
(lib (name Connectors_WAGO)(type KiCad)(uri ${KISYSMOD}/Connectors_WAGO.pretty)(options "")(descr "WAGO connector footprints www.wago.com"))
(lib (name Connectors)(type KiCad)(uri ${KISYSMOD}/Connectors.pretty)(options "")(descr "Assorted connector footprints"))
(lib (name Converters_DCDC_ACDC)(type KiCad)(uri ${KISYSMOD}/Converters_DCDC_ACDC.pretty)(options "")(descr "DC-DC and AC-DC convertor modules"))
(lib (name Crystals)(type KiCad)(uri ${KISYSMOD}/Crystals.pretty)(options "")(descr "Crystals and oscillators"))
(lib (name Diodes_SMD)(type KiCad)(uri ${KISYSMOD}/Diodes_SMD.pretty)(options "")(descr "Diodes, surface mount"))
(lib (name Diodes_ThroughHole)(type KiCad)(uri ${KISYSMOD}/Diodes_ThroughHole.pretty)(options "")(descr "Diodes, through hole"))
(lib (name Diodes_THT)(type KiCad)(uri ${KISYSMOD}/Diodes_THT.pretty)(options "")(descr "Diodes, through hole"))
(lib (name Discret)(type KiCad)(uri ${KISYSMOD}/Discret.pretty)(options "")(descr "Deprecated - will be removed"))
(lib (name Displays_7-Segment)(type KiCad)(uri ${KISYSMOD}/Displays_7-Segment.pretty)(options "")(descr "Seven segment displays"))
(lib (name Display)(type KiCad)(uri ${KISYSMOD}/Display.pretty)(options "")(descr "Display modules"))
(lib (name Displays)(type KiCad)(uri ${KISYSMOD}/Displays.pretty)(options "")(descr "Display modules"))
(lib (name Divers)(type KiCad)(uri ${KISYSMOD}/Divers.pretty)(options "")(descr "Deprecated - will be removed"))
(lib (name EuroBoard_Outline)(type KiCad)(uri ${KISYSMOD}/EuroBoard_Outline.pretty)(options "")(descr "Deprecated - will be removed"))
(lib (name Fiducials)(type KiCad)(uri ${KISYSMOD}/Fiducials.pretty)(options "")(descr "Fiducial markings"))
@ -38,7 +42,7 @@
(lib (name Housings_DIP)(type KiCad)(uri ${KISYSMOD}/Housings_DIP.pretty)(options "")(descr "Through hole IC packages, DIP"))
(lib (name Housings_QFP)(type KiCad)(uri ${KISYSMOD}/Housings_QFP.pretty)(options "")(descr "Surface mount IC packages, QFP / LQFP / TQFP"))
(lib (name Housings_SIP)(type KiCad)(uri ${KISYSMOD}/Housings_SIP.pretty)(options "")(descr "SIP housings"))
(lib (name Housings_SOIC)(type KiCad)(uri ${KISYSMOD}/Housings_SOIC.pretty)(options "")(descr "SOIC packages/housings"))
(lib (name Housings_SOIC)(type KiCad)(uri ${KISYSMOD}/Housings_SOIC.pretty)(options "")(descr "The way you like them."))
(lib (name Housings_SSOP)(type KiCad)(uri ${KISYSMOD}/Housings_SSOP.pretty)(options "")(descr "SSOP, TSSOP, MSOP, QSOP, VSO packages"))
(lib (name Inductors_NEOSID)(type KiCad)(uri ${KISYSMOD}/Inductors_NEOSID.pretty)(options "")(descr "The way you like them."))
(lib (name Inductors)(type KiCad)(uri ${KISYSMOD}/Inductors.pretty)(options "")(descr "Inductors"))
@ -58,21 +62,17 @@
(lib (name Pin_Headers)(type KiCad)(uri ${KISYSMOD}/Pin_Headers.pretty)(options "")(descr "Male pin headers."))
(lib (name Potentiometers)(type KiCad)(uri ${KISYSMOD}/Potentiometers.pretty)(options "")(descr "Potentiometers / variable resistors"))
(lib (name Power_Integrations)(type KiCad)(uri ${KISYSMOD}/Power_Integrations.pretty)(options "")(descr "The way you like them."))
(lib (name Relays_ThroughHole)(type KiCad)(uri ${KISYSMOD}/Relays_ThroughHole.pretty)(options "")(descr "Through hole relay packages"))
(lib (name Relays_THT)(type KiCad)(uri ${KISYSMOD}/Relays_THT.pretty)(options "")(descr "Through hole relay packages"))
(lib (name Resistors_SMD)(type KiCad)(uri ${KISYSMOD}/Resistors_SMD.pretty)(options "")(descr "Resistors, surface mount"))
(lib (name Resistors_ThroughHole)(type KiCad)(uri ${KISYSMOD}/Resistors_ThroughHole.pretty)(options "")(descr "Resistors, through hole"))
(lib (name Resistors_THT)(type KiCad)(uri ${KISYSMOD}/Resistors_THT.pretty)(options "")(descr "Resistors, through hole"))
(lib (name Resistors_Universal)(type KiCad)(uri ${KISYSMOD}/Resistors_Universal.pretty)(options "")(descr Experimental))
(lib (name RF_Modules)(type KiCad)(uri ${KISYSMOD}/RF_Modules.pretty)(options "")(descr "Radio-frequency / wireless modules"))
(lib (name Shielding_Cabinets)(type KiCad)(uri ${KISYSMOD}/Shielding_Cabinets.pretty)(options "")(descr "RF / EMI shields"))
(lib (name SMD_Packages)(type KiCad)(uri ${KISYSMOD}/SMD_Packages.pretty)(options "")(descr "This library content will be moved elsewhere. Don't add anything in it."))
(lib (name Sockets_BNC)(type KiCad)(uri ${KISYSMOD}/Sockets_BNC.pretty)(options "")(descr "BNC connector footprints"))
(lib (name Sockets_Mini-Universal)(type KiCad)(uri ${KISYSMOD}/Sockets_Mini-Universal.pretty)(options "")(descr Mate-N-Lok))
(lib (name Sockets_MOLEX_KK-System)(type KiCad)(uri ${KISYSMOD}/Sockets_MOLEX_KK-System.pretty)(options "")(descr "Deprecated - will be removed"))
(lib (name Socket_Strips)(type KiCad)(uri ${KISYSMOD}/Socket_Strips.pretty)(options "")(descr "Female socket strips."))
(lib (name Sockets)(type KiCad)(uri ${KISYSMOD}/Sockets.pretty)(options "")(descr "The way you like them."))
(lib (name Sockets_WAGO734)(type KiCad)(uri ${KISYSMOD}/Sockets_WAGO734.pretty)(options "")(descr "The way you like them."))
(lib (name Symbols)(type KiCad)(uri ${KISYSMOD}/Symbols.pretty)(options "")(descr "The way you like them."))
(lib (name Terminal_Blocks)(type KiCad)(uri ${KISYSMOD}/Terminal_Blocks.pretty)(options "")(descr "Terminal block connectors"))
(lib (name TO_SOT_Packages_SMD)(type KiCad)(uri ${KISYSMOD}/TO_SOT_Packages_SMD.pretty)(options "")(descr "Surface mount transistor packages"))
(lib (name TO_SOT_Packages_THT)(type KiCad)(uri ${KISYSMOD}/TO_SOT_Packages_THT.pretty)(options "")(descr "Through hole transistor packages"))
(lib (name Transformers_CHK)(type KiCad)(uri ${KISYSMOD}/Transformers_CHK.pretty)(options "")(descr "The way you like them."))