diff --git a/content/14_networking.md b/content/14_networking.md index a4893cb973fed2d5ef80b2740de28590c4f5e787..ca9d34876f05d904a9d598898abdc1cdbfca1a01 100644 --- a/content/14_networking.md +++ b/content/14_networking.md @@ -5,19 +5,18 @@ menu = "main" weight = 15 +++ -Files: [audio_interface.sch](/designs/14_audio_interface.sch) [audio_interface.brd](/designs/14_audio_interface.brd) +Files: [audio_interface.sch](/designs/14_audio_interface.sch) [audio_interface.brd](/designs/14_audio_interface.brd) [audio_interface_2.sch](/designs/14_audio_interface_2.sch) [audio_interface.brd_2](/designs/14_audio_interface_2.brd) [serial_cpp](https://gitlab.cba.mit.edu/erik/serial_cpp) [lufa](https://gitlab.cba.mit.edu/erik/lufa) (see Demos/Devices/ClassDriver/VirtualSerial) - -This week we're making machines talk to each other. I've used I2C before, so want to venture into using USB to connect my own boards with computers. +This week we're making machines talk to each other. I've used I2C before, so I'm curious to venture into the wonderful world of USB. ## Board Design -For part of my final project I want to make my own USB audio recording device. So I'll try to develop all the necessary electronics this week. I have all the analog circuitry I need from [inputs week](../10_input_devices). But I don't have a board ready to go with a USB-capable microcontroller (bit-banging will not suffice, since I need the CPU to be available for audio processing). I've heard that [LUFA](http://www.fourwalledcubicle.com/LUFA.php) is much nicer than ATMEL's own USB [libraries](https://www.microchip.com/wwwAppNotes/AppNotes.aspx?appnote=en591207) so I'll try to use that. I'd like to use an XMEGA board, since they are fast, have a good amount of memory for audio applications, and I've used them [recently](../12_machine_week). LUFA's [XMEGA support](http://www.fourwalledcubicle.com/files/LUFA/Doc/120219/html/_page__x_m_e_g_a_support.html) is technically experimental, but people have been using it since [2013](https://www.avrfreaks.net/forum/lufa-xmega-hello-world). So I think it should be ok. +For part of my final project I want to make my own USB audio recording device. So I'll try to develop all the necessary electronics this week. I have the analog circuitry I need from [inputs week](../10_input_devices). But I don't have a board ready to go with a USB-capable microcontroller (bit-banging will not suffice, since I need the CPU to be available for audio processing). I've heard that [LUFA](http://www.fourwalledcubicle.com/LUFA.php) is much nicer than ATMEL's own USB [libraries](https://www.microchip.com/wwwAppNotes/AppNotes.aspx?appnote=en591207) so I'll try to use that. I'd like to use an XMEGA board, since they are fast, have a good amount of memory for audio applications, and I've used them [recently](../12_machine_week). LUFA's [XMEGA support](http://www.fourwalledcubicle.com/files/LUFA/Doc/120219/html/_page__x_m_e_g_a_support.html) is technically experimental, but people have been using it since [2013](https://www.avrfreaks.net/forum/lufa-xmega-hello-world). So I think it should be ok.  -On the left I have my microcontroller. I'm using an external 16MHz crystal to give it an accurate clock signal. High speed USB 2.0 requires a 48Mhz clock, which I can get by multiplying the crystal's output by 3 using the XMEGA's phase locked loop (PLL). On top I have my power section, including a regulator to bump USB's 5V power down to 3.3V, some filtering capacitors, and a power indicator LED. The two circuit groups with op-amps together amplify and bias the audio input, as I learned in [inputs week](../10_input_devices). Finally I have some headers that provide convenient debugging access to certain signals, and a 0-ohm resistor I needed to connect all my ground signals. +On the left I have my microcontroller. I'm using an external 16MHz crystal to give it an accurate clock signal. High speed USB 2.0 requires a 48MHz clock, which I can get by multiplying the crystal's output by 3 using the XMEGA's phase locked loop (PLL). On top I have my power section, including a regulator to bump USB's 5V power down to 3.3V, some filtering capacitors, and a power indicator LED. The two circuit groups with op-amps together amplify and bias the audio input, as I learned in [inputs week](../10_input_devices). Finally I have some headers that provide convenient debugging access to certain signals, and a 0-ohm resistor I needed to connect all my ground signals.  @@ -30,7 +29,7 @@ I milled the board on a Roland SRM-20. For the most part the smaller traces work  -I soldered the XMEGA and the USB connector first, since I knew jumping the USB power wire and dealing with the tiny XMEGA traces would be the trickiest tasks. The XMEGA's leads are smaller than anything I'd soldered before, but it still went fine. Most of them I soldered individually, but in a few places I globed pins together and later removed the excess solder to unshort them. Generous amounts of flux were essential, since I used a very fine guage of solder that doesn't have a flux core. To connect the USB power, I took a small piece of wire and used it to jump directly from the USB conenctor pin to the trace. It was so short that it was almost impossible to solder one side without melting the other, but eventually I got it to stick in place with good quality joints on either side. (In the photo below it looks like it's shorted to the USB plug chassis, but this isn't the case.) After these I soldered on the minimal number of other components to get the power indicator LED working (ok, the crystal wasn't necessary but I had already taken it out). +I soldered the XMEGA and the USB connector first, since I knew jumping the USB power wire and dealing with the tiny XMEGA traces would be the trickiest tasks. The XMEGA's leads are smaller than anything I'd soldered before, but it still went fine. Most of them I soldered individually, but in a few places I globed pins together and later removed the excess solder to unshort them. Generous amounts of flux were essential, since I used a very fine gauge of solder that doesn't have a flux core. To connect the USB power, I took a small piece of wire and used it to jump directly from the USB connector pin to the trace. It was so short that it was almost impossible to solder one side without melting (and thus destabilizing) the other, but eventually I got it to stick in place with good quality joints on both sides. (In the photo below it looks like it's shorted to the USB plug chassis, but the jumper wire is safely above the leftmost lead.) After these I soldered on the minimal number of other components to get the power indicator LED working (ok, the crystal wasn't necessary but I had already taken it out).  @@ -39,9 +38,69 @@ From here it was a routine soldering job.  -## Software +## Software (First Attempt) -I started by flashing it with an empty hello world program, to verify that it could be programmed at all. Then I started writing the USB software. Unfortunately, disaster struck: I accidentally tore off the USB connector. I'm in the process of fixing this now. +I started by flashing it with an empty hello world program, to verify that it could be programmed at all. Then I cloned LUFA and started trying to adapt an example to work for my board. Unfortunately, disaster struck: I accidentally tore off the USB connector. I knew this was a risk, since I had waited to solder on the  +I figured it was worth a shot at repairing. + + + +I think I got most of the leads reconnected, though in the image above the power jumper has some really ugly (and maybe cold) joints. Eventually I decided I should save myself the frustration of working with a damaged board. Especially since I learned of a few things I could have done better. + + +## Back to the Drawing Board + +Or back to board drawing, as it were. Anyway, I wanted to make a few changes before milling again: + +- Add additional bypass capacitors near all the XMEGA's power pins +- Get rid of the 22 ohm resistors (unlike the ATmegas, the ATxmegas have these internally) +- Switch to a single-ended op-amp configuration +- Add mounting holes and pads for an external audio jack and volume knob + +The first is just good practice for microcontrollers. I added 0.1uF caps near all the XMEGA's power pins, and a few 10uF caps near potentially large current sinks (i.e. LEDs and op-amps). I had added the 22ohm resistors because all the [examples](../../../../../863.17/CBA/people/tomasero/index.html) I [looked at](../../../../../863.14/CBA/people/andrew_mao/week11) had them. But after going through the XMEGA's datasheet in more detail, I found that it has an "integrated on-chip USB transceiver, no external components needed". I wanted to go to a single-ended op-amp configuration to make it simpler to add a potentiometer to control gain. With my current differential setup, I would have to use a double-ganged pot, and if the two resistances didn't stay exactly the same at all times there'd be additional error in my output. So I'll just connect one side of the input to ground, and send the other through an AC-coupled non-inverting amplifier with a DC bias. Finally, the gain control knob and audio jack will be better off mounted to the chassis of the device rather than the board, so that the board doesn't bear any unnecessary mechanical load. It would be nice to attach the USB jack to the chassis as well, but the USB jacks we have in stock are surface mount, and since it's good to keep the data leads as short as possible, I'll leave it on the board. + + + + +If I lay this out a third time, I'll make more careful use of the grid. I could also move the LEDS to the left of the XMEGA, and connect the audio signal to a pin on its bottom side, to shorten my critical analog traces. Speaking of which, I could have a separate analog ground plane and voltage rail. But this will definitely work for now. + + +## More Milling + +I hoped that the ripped leads on my first board were a fluke, so I milled the second one just like the first. But the same thing happened, in the exact same place. + + + +Rather than deal with jumpers again, I thought I'd fix the manufacturing. So I grabbed a 0.01" endmill to use just for the USB pads. + + + + + + +## Software (Second Attempt) + +To begin I'd like to make my board become a USB virtual serial device, since this is probably the simplest example that LUFA has, and I already have my own C++ to listen to serial devices. (Side note: I wasn't sure my code would work with USB virtual serial devices, but Linux presents these devices as device files in `/dev` just like the FTDI device I used before. So though different drivers are being invoked under the hood, at the level of `libserialport` they look the same.) + +Though the LUFA code looked quite daunting at first, I only needed to change a few things to get it to run on my board. First, I commented out everything referencing code from `LEDS.h` and `Joystick.h`, since I don't want to create these files for my board (and I don't even have a joystick). Instead of reading a value from a joystick, I'll just spam "hello world" all the time. In the Makefile, I set `ARCH` to `XMEGA`, and the clock rate to 48MHz. + +After programming, my serial port code detects a new device: `/dev/ttyACM0`. When I open the port, I get see a constant stream of "hello world" as expected. + + + +Since this week is ultimately about networks with addresses, let's try to find the address that my board is assigned by my computer. I grepped for "address" in LUFA and after following a few function calls found my way to `LUFA/Drivers/USB/Core/XMEGA/Device_XMEGA.h`. At line 217 LUFA is writing the newly assigned address to one of the XMEGA's registers. + +{{< highlight c >}} +static inline void USB_Device_EnableDeviceAddress(const uint8_t Address) +{ + USB.ADDR = Address; +} +{{< /highlight >}} + +Instead of spamming hello world, I can read back this register and make my board output its own address. + + + diff --git a/static/designs/14_audio_interface_2.brd b/static/designs/14_audio_interface_2.brd new file mode 100644 index 0000000000000000000000000000000000000000..5c201e183509dc5c0602d9f5ec4462969aa170cd --- /dev/null +++ b/static/designs/14_audio_interface_2.brd @@ -0,0 +1,1419 @@ +<?xml version="1.0" encoding="utf-8"?> +<!DOCTYPE eagle SYSTEM "eagle.dtd"> +<eagle version="9.1.3"> +<drawing> +<settings> +<setting alwaysvectorfont="yes"/> +<setting verticaltext="up"/> +</settings> +<grid distance="50" unitdist="mil" unit="mil" style="lines" multiple="1" display="no" altdistance="5" altunitdist="mil" altunit="mil"/> +<layers> +<layer number="1" name="Top" color="4" fill="1" visible="yes" active="yes"/> +<layer number="2" name="Route2" color="16" fill="1" visible="no" active="no"/> +<layer number="3" name="Route3" color="17" fill="1" visible="no" active="no"/> +<layer number="4" name="Route4" color="18" fill="1" visible="no" active="no"/> +<layer number="5" name="Route5" color="19" fill="1" visible="no" active="no"/> +<layer number="6" name="Route6" color="25" fill="1" visible="no" active="no"/> +<layer number="7" name="Route7" color="26" fill="1" visible="no" active="no"/> +<layer number="8" name="Route8" color="27" fill="1" visible="no" active="no"/> +<layer number="9" name="Route9" color="28" fill="1" visible="no" active="no"/> +<layer number="10" name="Route10" color="29" fill="1" visible="no" active="no"/> +<layer number="11" name="Route11" color="30" fill="1" visible="no" active="no"/> +<layer number="12" name="Route12" color="20" fill="1" visible="no" active="no"/> +<layer number="13" name="Route13" color="21" fill="1" visible="no" active="no"/> +<layer number="14" name="Route14" color="22" fill="1" visible="no" active="no"/> +<layer number="15" name="Route15" color="23" fill="1" visible="no" active="no"/> +<layer number="16" name="Bottom" color="1" fill="1" visible="yes" active="yes"/> +<layer number="17" name="Pads" color="2" fill="1" visible="yes" active="yes"/> +<layer number="18" name="Vias" color="2" fill="1" visible="yes" active="yes"/> +<layer number="19" name="Unrouted" color="6" fill="1" visible="yes" active="yes"/> +<layer number="20" name="Dimension" color="24" fill="1" visible="yes" active="yes"/> +<layer number="21" name="tPlace" color="7" fill="1" visible="yes" active="yes"/> +<layer number="22" name="bPlace" color="7" fill="1" visible="yes" active="yes"/> +<layer number="23" name="tOrigins" color="15" fill="1" visible="yes" active="yes"/> +<layer number="24" name="bOrigins" color="15" fill="1" visible="yes" active="yes"/> +<layer number="25" name="tNames" color="7" fill="1" visible="yes" active="yes"/> +<layer number="26" name="bNames" color="7" fill="1" visible="yes" active="yes"/> +<layer number="27" name="tValues" color="7" fill="1" visible="yes" active="yes"/> +<layer number="28" name="bValues" color="7" fill="1" visible="yes" active="yes"/> +<layer number="29" name="tStop" color="7" fill="3" visible="yes" active="yes"/> +<layer number="30" name="bStop" color="7" fill="6" visible="yes" active="yes"/> +<layer number="31" name="tCream" color="7" fill="4" visible="yes" active="yes"/> +<layer number="32" name="bCream" color="7" fill="5" visible="yes" active="yes"/> +<layer number="33" name="tFinish" color="6" fill="3" visible="yes" active="yes"/> +<layer number="34" name="bFinish" color="6" fill="6" visible="yes" active="yes"/> +<layer number="35" name="tGlue" color="7" fill="4" visible="yes" active="yes"/> +<layer number="36" name="bGlue" color="7" fill="5" visible="yes" active="yes"/> +<layer number="37" name="tTest" color="7" fill="1" visible="yes" active="yes"/> +<layer number="38" name="bTest" color="7" fill="1" visible="yes" active="yes"/> +<layer number="39" name="tKeepout" color="4" fill="11" visible="yes" active="yes"/> +<layer number="40" name="bKeepout" color="1" fill="11" visible="yes" active="yes"/> +<layer number="41" name="tRestrict" color="4" fill="10" visible="yes" active="yes"/> +<layer number="42" name="bRestrict" color="1" fill="10" visible="yes" active="yes"/> +<layer number="43" name="vRestrict" color="2" fill="10" visible="yes" active="yes"/> +<layer number="44" name="Drills" color="7" fill="1" visible="yes" active="yes"/> +<layer number="45" name="Holes" color="7" fill="1" visible="yes" active="yes"/> +<layer number="46" name="Milling" color="3" fill="1" visible="yes" active="yes"/> +<layer number="47" name="Measures" color="7" fill="1" visible="yes" active="yes"/> +<layer number="48" name="Document" color="7" fill="1" visible="yes" active="yes"/> +<layer number="49" name="Reference" color="7" fill="1" visible="yes" active="yes"/> +<layer number="50" name="dxf" color="7" fill="1" visible="no" active="no"/> +<layer number="51" name="tDocu" color="7" fill="1" visible="yes" active="yes"/> +<layer number="52" name="bDocu" color="7" fill="1" visible="yes" active="yes"/> +<layer number="53" name="tGND_GNDA" color="7" fill="9" visible="no" active="no"/> +<layer number="54" name="bGND_GNDA" color="1" fill="9" visible="no" active="no"/> +<layer number="56" name="wert" color="7" fill="1" visible="no" active="no"/> +<layer number="57" name="tCAD" color="7" fill="1" visible="no" active="no"/> +<layer number="59" name="tCarbon" color="7" fill="1" visible="no" active="no"/> +<layer number="60" name="bCarbon" color="7" fill="1" visible="no" active="no"/> +<layer number="88" name="SimResults" color="9" fill="1" visible="no" active="no"/> +<layer number="89" name="SimProbes" color="9" fill="1" visible="no" active="no"/> +<layer number="90" name="Modules" color="5" fill="1" visible="no" active="no"/> +<layer number="91" name="Nets" color="2" fill="1" visible="no" active="no"/> +<layer number="92" name="Busses" color="1" fill="1" visible="no" active="no"/> +<layer number="93" name="Pins" color="2" fill="1" visible="no" active="no"/> +<layer number="94" name="Symbols" color="4" fill="1" visible="no" active="no"/> +<layer number="95" name="Names" color="7" fill="1" visible="no" active="no"/> +<layer number="96" name="Values" color="7" fill="1" visible="no" active="no"/> +<layer number="97" name="Info" color="7" fill="1" visible="no" active="no"/> +<layer number="98" name="Guide" color="6" fill="1" visible="no" active="no"/> +<layer number="99" name="SpiceOrder" color="7" fill="1" visible="no" active="no"/> +<layer number="100" name="Muster" color="7" fill="1" visible="no" active="no"/> +<layer number="101" name="Patch_Top" color="12" fill="4" visible="yes" active="yes"/> +<layer number="102" name="Vscore" color="7" fill="1" visible="yes" active="yes"/> +<layer number="103" name="tMap" color="7" fill="1" visible="yes" active="yes"/> +<layer number="104" name="Name" color="7" fill="1" visible="yes" active="yes"/> +<layer number="105" name="tPlate" color="7" fill="1" visible="yes" active="yes"/> +<layer number="106" name="bPlate" color="7" fill="1" visible="yes" active="yes"/> +<layer number="107" name="Crop" color="7" fill="1" visible="yes" active="yes"/> +<layer number="108" name="tplace-old" color="10" fill="1" visible="yes" active="yes"/> +<layer number="109" name="ref-old" color="11" fill="1" visible="yes" active="yes"/> +<layer number="110" name="fp0" color="7" fill="1" visible="yes" active="yes"/> +<layer number="111" name="LPC17xx" color="7" fill="1" visible="yes" active="yes"/> +<layer number="112" name="tSilk" color="7" fill="1" visible="yes" active="yes"/> +<layer number="113" name="IDFDebug" color="7" fill="1" visible="yes" active="yes"/> +<layer number="114" name="Badge_Outline" color="7" fill="1" visible="yes" active="yes"/> +<layer number="115" name="ReferenceISLANDS" color="7" fill="1" visible="yes" active="yes"/> +<layer number="116" name="Patch_BOT" color="9" fill="4" visible="yes" active="yes"/> +<layer number="118" name="Rect_Pads" color="7" fill="1" visible="yes" active="yes"/> +<layer number="121" name="_tsilk" color="7" fill="1" visible="yes" active="yes"/> +<layer number="122" name="_bsilk" color="7" fill="1" visible="yes" active="yes"/> +<layer number="123" name="tTestmark" color="7" fill="1" visible="yes" active="yes"/> +<layer number="124" name="bTestmark" color="7" fill="1" visible="yes" active="yes"/> +<layer number="125" name="_tNames" color="7" fill="1" visible="yes" active="yes"/> +<layer number="126" name="_bNames" color="7" fill="1" visible="yes" active="yes"/> +<layer number="127" name="_tValues" color="7" fill="1" visible="yes" active="yes"/> +<layer number="128" name="_bValues" color="7" fill="1" visible="yes" active="yes"/> +<layer number="129" name="Mask" color="7" fill="1" visible="yes" active="yes"/> +<layer number="131" name="tAdjust" color="7" fill="1" visible="yes" active="yes"/> +<layer number="132" name="bAdjust" color="7" fill="1" visible="yes" active="yes"/> +<layer number="144" name="Drill_legend" color="7" fill="1" visible="yes" active="yes"/> +<layer number="150" name="Notes" color="7" fill="1" visible="yes" active="yes"/> +<layer number="151" name="HeatSink" color="7" fill="1" visible="yes" active="yes"/> +<layer number="152" name="_bDocu" color="7" fill="1" visible="yes" active="yes"/> +<layer number="153" name="FabDoc1" color="7" fill="1" visible="yes" active="yes"/> +<layer number="154" name="FabDoc2" color="7" fill="1" visible="yes" active="yes"/> +<layer number="155" name="FabDoc3" color="7" fill="1" visible="yes" active="yes"/> +<layer number="199" name="Contour" color="7" fill="1" visible="yes" active="yes"/> +<layer number="200" name="200bmp" color="1" fill="10" visible="yes" active="yes"/> +<layer number="201" name="201bmp" color="2" fill="10" visible="yes" active="yes"/> +<layer number="202" name="202bmp" color="3" fill="10" visible="yes" active="yes"/> +<layer number="203" name="203bmp" color="4" fill="10" visible="yes" active="yes"/> +<layer number="204" name="204bmp" color="5" fill="10" visible="yes" active="yes"/> +<layer number="205" name="205bmp" color="6" fill="10" visible="yes" active="yes"/> +<layer number="206" name="206bmp" color="7" fill="10" visible="yes" active="yes"/> +<layer number="207" name="207bmp" color="8" fill="10" visible="yes" active="yes"/> +<layer number="208" name="208bmp" color="9" fill="10" visible="yes" active="yes"/> +<layer number="209" name="209bmp" color="7" fill="1" visible="yes" active="yes"/> +<layer number="210" name="210bmp" color="7" fill="1" visible="yes" active="yes"/> +<layer number="211" name="211bmp" color="7" fill="1" visible="yes" active="yes"/> +<layer number="212" name="212bmp" color="7" fill="1" visible="yes" active="yes"/> +<layer number="213" name="213bmp" color="7" fill="1" visible="yes" active="yes"/> +<layer number="214" name="214bmp" color="7" fill="1" visible="yes" active="yes"/> +<layer number="215" name="215bmp" color="7" fill="1" visible="yes" active="yes"/> +<layer number="216" name="216bmp" color="7" fill="1" visible="yes" active="yes"/> +<layer number="217" name="217bmp" color="18" fill="1" visible="no" active="no"/> +<layer number="218" name="218bmp" color="19" fill="1" visible="no" active="no"/> +<layer number="219" name="219bmp" color="20" fill="1" visible="no" active="no"/> +<layer number="220" name="220bmp" color="21" fill="1" visible="no" active="no"/> +<layer number="221" name="221bmp" color="22" fill="1" visible="no" active="no"/> +<layer number="222" name="222bmp" color="23" fill="1" visible="no" active="no"/> +<layer number="223" name="223bmp" color="24" fill="1" visible="no" active="no"/> +<layer number="224" name="224bmp" color="25" fill="1" visible="no" active="no"/> +<layer number="225" name="225bmp" color="7" fill="1" visible="yes" active="yes"/> +<layer number="226" name="226bmp" color="7" fill="1" visible="yes" active="yes"/> +<layer number="227" name="227bmp" color="7" fill="1" visible="yes" active="yes"/> +<layer number="228" name="228bmp" color="7" fill="1" visible="yes" active="yes"/> +<layer number="229" name="229bmp" color="7" fill="1" visible="yes" active="yes"/> +<layer number="230" name="230bmp" color="7" fill="1" visible="yes" active="yes"/> +<layer number="231" name="231bmp" color="7" fill="1" visible="yes" active="yes"/> +<layer number="232" name="Eagle3D_PG2" color="7" fill="1" visible="yes" active="yes"/> +<layer number="233" name="Eagle3D_PG3" color="7" fill="1" visible="yes" active="yes"/> +<layer number="248" name="Housing" color="7" fill="1" visible="yes" active="yes"/> +<layer number="249" name="Edge" color="7" fill="1" visible="yes" active="yes"/> +<layer number="250" name="Descript" color="3" fill="1" visible="no" active="no"/> +<layer number="251" name="SMDround" color="12" fill="11" visible="no" active="no"/> +<layer number="254" name="cooling" color="7" fill="1" visible="yes" active="yes"/> +<layer number="255" name="routoute" color="7" fill="1" visible="yes" active="yes"/> +</layers> +<board> +<fusionsync huburn="a.cGVyc29uYWw6dWUyYTE0ZDg1" projecturn="a.cGVyc29uYWw6dWUyYTE0ZDg1IzIwMTgwODMxMTQ2NDczOTAx" f3durn="urn:adsk.wipprod:dm.lineage:E-xu7etZSGKsRThGe79Gug" pcbguid="2d36f4da-d078-41de-9816-c8005b6e9bd8" lastpulledtime="" lastsyncedchangeguid="ad5fea73-5707-638a-ff4a-af6a9432a009"/> +<plain> +<wire x1="40.64" y1="-5.08" x2="2.54" y2="-5.08" width="0.1524" layer="20"/> +<wire x1="0" y1="2.54" x2="0" y2="45.72" width="0.1524" layer="20"/> +<wire x1="0" y1="45.72" x2="2.54" y2="48.26" width="0.1524" layer="20" curve="-90"/> +<wire x1="2.54" y1="48.26" x2="40.64" y2="48.26" width="0.1524" layer="20"/> +<wire x1="40.64" y1="48.26" x2="43.18" y2="45.72" width="0.1524" layer="20" curve="-90"/> +<wire x1="43.18" y1="45.72" x2="43.18" y2="2.54" width="0.1524" layer="20"/> +<text x="5.0292" y="22.0726" size="1.778" layer="1" font="vector" rot="R90">USB Audio v2</text> +<wire x1="0" y1="2.54" x2="0" y2="-2.54" width="0.2032" layer="20"/> +<wire x1="0" y1="-2.54" x2="2.54" y2="-5.08" width="0.2032" layer="20" curve="90"/> +<wire x1="40.64" y1="-5.08" x2="43.18" y2="-2.54" width="0.2032" layer="20" curve="90"/> +<wire x1="43.18" y1="-2.54" x2="43.18" y2="2.54" width="0.2032" layer="20"/> +</plain> +<libraries> +<library name="fab"> +<packages> +<package name="C1206"> +<description><b>CAPACITOR</b></description> +<wire x1="-2.473" y1="0.983" x2="2.473" y2="0.983" width="0.0508" layer="39"/> +<wire x1="2.473" y1="-0.983" x2="-2.473" y2="-0.983" width="0.0508" layer="39"/> +<wire x1="-2.473" y1="-0.983" x2="-2.473" y2="0.983" width="0.0508" layer="39"/> +<wire x1="2.473" y1="0.983" x2="2.473" y2="-0.983" width="0.0508" layer="39"/> +<wire x1="-0.965" y1="0.787" x2="0.965" y2="0.787" width="0.1016" layer="51"/> +<wire x1="-0.965" y1="-0.787" x2="0.965" y2="-0.787" width="0.1016" layer="51"/> +<smd name="1" x="-1.4" y="0" dx="1.6" dy="1.8" layer="1"/> +<smd name="2" x="1.4" y="0" dx="1.6" dy="1.8" layer="1"/> +<text x="-1.27" y="1.27" size="1.27" layer="25">>NAME</text> +<text x="-1.27" y="-2.54" size="1.27" layer="27">>VALUE</text> +<rectangle x1="-1.7018" y1="-0.8509" x2="-0.9517" y2="0.8491" layer="51"/> +<rectangle x1="0.9517" y1="-0.8491" x2="1.7018" y2="0.8509" layer="51"/> +<rectangle x1="-0.1999" y1="-0.4001" x2="0.1999" y2="0.4001" layer="35"/> +</package> +<package name="SOT23-5"> +<description><b>Small Outline Transistor</b>, 5 lead</description> +<wire x1="-1.544" y1="0.713" x2="1.544" y2="0.713" width="0.1524" layer="21"/> +<wire x1="1.544" y1="0.713" x2="1.544" y2="-0.712" width="0.1524" layer="21"/> +<wire x1="1.544" y1="-0.712" x2="-1.544" y2="-0.712" width="0.1524" layer="21"/> +<wire x1="-1.544" y1="-0.712" x2="-1.544" y2="0.713" width="0.1524" layer="21"/> +<smd name="5" x="-0.95" y="1.306" dx="0.5334" dy="1.1938" layer="1"/> +<smd name="4" x="0.95" y="1.306" dx="0.5334" dy="1.1938" layer="1"/> +<smd name="1" x="-0.95" y="-1.306" dx="0.5334" dy="1.1938" layer="1"/> +<smd name="2" x="0" y="-1.306" dx="0.5334" dy="1.1938" layer="1"/> +<smd name="3" x="0.95" y="-1.306" dx="0.5334" dy="1.1938" layer="1"/> +<text x="-1.778" y="-1.778" size="1.27" layer="25" ratio="10" rot="R90">>NAME</text> +<text x="3.048" y="-1.778" size="1.27" layer="27" ratio="10" rot="R90">>VALUE</text> +<rectangle x1="-1.1875" y1="0.7126" x2="-0.7125" y2="1.5439" layer="51"/> +<rectangle x1="0.7125" y1="0.7126" x2="1.1875" y2="1.5439" layer="51"/> +<rectangle x1="-1.1875" y1="-1.5437" x2="-0.7125" y2="-0.7124" layer="51"/> +<rectangle x1="-0.2375" y1="-1.5437" x2="0.2375" y2="-0.7124" layer="51"/> +<rectangle x1="0.7125" y1="-1.5437" x2="1.1875" y2="-0.7124" layer="51"/> +</package> +<package name="SOT23"> +<description><b>SOT 23</b></description> +<wire x1="1.4224" y1="0.6604" x2="1.4224" y2="-0.6604" width="0.1524" layer="51"/> +<wire x1="1.4224" y1="-0.6604" x2="-1.4224" y2="-0.6604" width="0.1524" layer="51"/> +<wire x1="-1.4224" y1="-0.6604" x2="-1.4224" y2="0.6604" width="0.1524" layer="51"/> +<wire x1="-1.4224" y1="0.6604" x2="1.4224" y2="0.6604" width="0.1524" layer="51"/> +<wire x1="-1.4224" y1="-0.1524" x2="-1.4224" y2="0.6604" width="0.1524" layer="21"/> +<wire x1="-1.4224" y1="0.6604" x2="-0.8636" y2="0.6604" width="0.1524" layer="21"/> +<wire x1="1.4224" y1="0.6604" x2="1.4224" y2="-0.1524" width="0.1524" layer="21"/> +<wire x1="0.8636" y1="0.6604" x2="1.4224" y2="0.6604" width="0.1524" layer="21"/> +<smd name="3" x="0" y="1.1" dx="1" dy="1.4" layer="1"/> +<smd name="2" x="0.95" y="-1.1" dx="1" dy="1.4" layer="1"/> +<smd name="1" x="-0.95" y="-1.1" dx="1" dy="1.4" layer="1"/> +<text x="-1.905" y="1.905" size="1.27" layer="25">>NAME</text> +<text x="-1.905" y="-3.175" size="1.27" layer="27">>VALUE</text> +<rectangle x1="-0.2286" y1="0.7112" x2="0.2286" y2="1.2954" layer="51"/> +<rectangle x1="0.7112" y1="-1.2954" x2="1.1684" y2="-0.7112" layer="51"/> +<rectangle x1="-1.1684" y1="-1.2954" x2="-0.7112" y2="-0.7112" layer="51"/> +</package> +<package name="R1206"> +<description><b>RESISTOR</b></description> +<wire x1="0.9525" y1="-0.8128" x2="-0.9652" y2="-0.8128" width="0.1524" layer="51"/> +<wire x1="0.9525" y1="0.8128" x2="-0.9652" y2="0.8128" width="0.1524" layer="51"/> +<wire x1="-2.473" y1="0.983" x2="2.473" y2="0.983" width="0.0508" layer="39"/> +<wire x1="2.473" y1="0.983" x2="2.473" y2="-0.983" width="0.0508" layer="39"/> +<wire x1="2.473" y1="-0.983" x2="-2.473" y2="-0.983" width="0.0508" layer="39"/> +<wire x1="-2.473" y1="-0.983" x2="-2.473" y2="0.983" width="0.0508" layer="39"/> +<smd name="2" x="1.422" y="0" dx="1.6" dy="1.803" layer="1"/> +<smd name="1" x="-1.422" y="0" dx="1.6" dy="1.803" layer="1"/> +<text x="-1.27" y="1.27" size="1.27" layer="25">>NAME</text> +<text x="-1.27" y="-2.54" size="1.27" layer="27">>VALUE</text> +<rectangle x1="-1.6891" y1="-0.8763" x2="-0.9525" y2="0.8763" layer="51"/> +<rectangle x1="0.9525" y1="-0.8763" x2="1.6891" y2="0.8763" layer="51"/> +<rectangle x1="-0.3" y1="-0.7" x2="0.3" y2="0.7" layer="35"/> +</package> +<package name="6MM_SWITCH"> +<description><b>OMRON SWITCH</b></description> +<wire x1="3.302" y1="-0.762" x2="3.048" y2="-0.762" width="0.1524" layer="21"/> +<wire x1="3.302" y1="-0.762" x2="3.302" y2="0.762" width="0.1524" layer="21"/> +<wire x1="3.048" y1="0.762" x2="3.302" y2="0.762" width="0.1524" layer="21"/> +<wire x1="3.048" y1="1.016" x2="3.048" y2="2.54" width="0.1524" layer="51"/> +<wire x1="-3.302" y1="0.762" x2="-3.048" y2="0.762" width="0.1524" layer="21"/> +<wire x1="-3.302" y1="0.762" x2="-3.302" y2="-0.762" width="0.1524" layer="21"/> +<wire x1="-3.048" y1="-0.762" x2="-3.302" y2="-0.762" width="0.1524" layer="21"/> +<wire x1="3.048" y1="2.54" x2="2.54" y2="3.048" width="0.1524" layer="51"/> +<wire x1="2.54" y1="-3.048" x2="3.048" y2="-2.54" width="0.1524" layer="51"/> +<wire x1="3.048" y1="-2.54" x2="3.048" y2="-1.016" width="0.1524" layer="51"/> +<wire x1="-2.54" y1="3.048" x2="-3.048" y2="2.54" width="0.1524" layer="51"/> +<wire x1="-3.048" y1="2.54" x2="-3.048" y2="1.016" width="0.1524" layer="51"/> +<wire x1="-2.54" y1="-3.048" x2="-3.048" y2="-2.54" width="0.1524" layer="51"/> +<wire x1="-3.048" y1="-2.54" x2="-3.048" y2="-1.016" width="0.1524" layer="51"/> +<wire x1="-1.27" y1="1.27" x2="-1.27" y2="-1.27" width="0.0508" layer="51"/> +<wire x1="1.27" y1="-1.27" x2="-1.27" y2="-1.27" width="0.0508" layer="51"/> +<wire x1="1.27" y1="-1.27" x2="1.27" y2="1.27" width="0.0508" layer="51"/> +<wire x1="-1.27" y1="1.27" x2="1.27" y2="1.27" width="0.0508" layer="51"/> +<wire x1="-1.27" y1="3.048" x2="-1.27" y2="2.794" width="0.0508" layer="21"/> +<wire x1="1.27" y1="2.794" x2="-1.27" y2="2.794" width="0.0508" layer="21"/> +<wire x1="1.27" y1="2.794" x2="1.27" y2="3.048" width="0.0508" layer="21"/> +<wire x1="1.143" y1="-2.794" x2="-1.27" y2="-2.794" width="0.0508" layer="21"/> +<wire x1="1.143" y1="-2.794" x2="1.143" y2="-3.048" width="0.0508" layer="21"/> +<wire x1="-1.27" y1="-2.794" x2="-1.27" y2="-3.048" width="0.0508" layer="21"/> +<wire x1="2.54" y1="-3.048" x2="2.159" y2="-3.048" width="0.1524" layer="51"/> +<wire x1="-2.54" y1="-3.048" x2="-2.159" y2="-3.048" width="0.1524" layer="51"/> +<wire x1="-2.159" y1="-3.048" x2="-1.27" y2="-3.048" width="0.1524" layer="21"/> +<wire x1="-2.54" y1="3.048" x2="-2.159" y2="3.048" width="0.1524" layer="51"/> +<wire x1="2.54" y1="3.048" x2="2.159" y2="3.048" width="0.1524" layer="51"/> +<wire x1="2.159" y1="3.048" x2="1.27" y2="3.048" width="0.1524" layer="21"/> +<wire x1="1.27" y1="3.048" x2="-1.27" y2="3.048" width="0.1524" layer="21"/> +<wire x1="-1.27" y1="3.048" x2="-2.159" y2="3.048" width="0.1524" layer="21"/> +<wire x1="-1.27" y1="-3.048" x2="1.143" y2="-3.048" width="0.1524" layer="21"/> +<wire x1="1.143" y1="-3.048" x2="2.159" y2="-3.048" width="0.1524" layer="21"/> +<wire x1="3.048" y1="-0.762" x2="3.048" y2="-1.016" width="0.1524" layer="21"/> +<wire x1="3.048" y1="0.762" x2="3.048" y2="1.016" width="0.1524" layer="21"/> +<wire x1="-3.048" y1="-0.762" x2="-3.048" y2="-1.016" width="0.1524" layer="21"/> +<wire x1="-3.048" y1="0.762" x2="-3.048" y2="1.016" width="0.1524" layer="21"/> +<wire x1="-1.27" y1="-2.159" x2="1.27" y2="-2.159" width="0.1524" layer="51"/> +<wire x1="1.27" y1="2.286" x2="-1.27" y2="2.286" width="0.1524" layer="51"/> +<wire x1="-2.413" y1="1.27" x2="-2.413" y2="0.508" width="0.1524" layer="51"/> +<wire x1="-2.413" y1="-0.508" x2="-2.413" y2="-1.27" width="0.1524" layer="51"/> +<wire x1="-2.413" y1="0.508" x2="-2.159" y2="-0.381" width="0.1524" layer="51"/> +<circle x="0" y="0" radius="1.778" width="0.1524" layer="21"/> +<circle x="-2.159" y="-2.159" radius="0.508" width="0.1524" layer="51"/> +<circle x="2.159" y="-2.032" radius="0.508" width="0.1524" layer="51"/> +<circle x="2.159" y="2.159" radius="0.508" width="0.1524" layer="51"/> +<circle x="-2.159" y="2.159" radius="0.508" width="0.1524" layer="51"/> +<circle x="0" y="0" radius="0.635" width="0.0508" layer="51"/> +<circle x="0" y="0" radius="0.254" width="0.1524" layer="21"/> +<smd name="1" x="-3.302" y="2.286" dx="2.286" dy="1.524" layer="1"/> +<smd name="2" x="3.302" y="2.286" dx="2.286" dy="1.524" layer="1"/> +<smd name="3" x="-3.302" y="-2.286" dx="2.286" dy="1.524" layer="1"/> +<smd name="4" x="3.302" y="-2.286" dx="2.286" dy="1.524" layer="1"/> +<text x="-3.048" y="3.683" size="1.27" layer="25" ratio="10">>NAME</text> +<text x="-3.048" y="-5.08" size="1.27" layer="27" ratio="10">>VALUE</text> +<text x="-4.318" y="1.651" size="1.27" layer="51" ratio="10">1</text> +<text x="3.556" y="1.524" size="1.27" layer="51" ratio="10">2</text> +<text x="-4.572" y="-2.794" size="1.27" layer="51" ratio="10">3</text> +<text x="3.556" y="-2.794" size="1.27" layer="51" ratio="10">4</text> +</package> +<package name="2-SMD-5X3MM"> +<wire x1="-2.5" y1="1.3" x2="-2.5" y2="1.6" width="0.127" layer="21"/> +<wire x1="-2.5" y1="1.6" x2="2.5" y2="1.6" width="0.127" layer="21"/> +<wire x1="2.5" y1="1.6" x2="2.5" y2="1.3" width="0.127" layer="21"/> +<wire x1="2.5" y1="-1.3" x2="2.5" y2="-1.6" width="0.127" layer="21"/> +<wire x1="2.5" y1="-1.6" x2="-2.5" y2="-1.6" width="0.127" layer="21"/> +<wire x1="-2.5" y1="-1.6" x2="-2.5" y2="-1.3" width="0.127" layer="21"/> +<smd name="P$1" x="-2" y="0" dx="2" dy="2.4" layer="1"/> +<smd name="P$2" x="2" y="0" dx="2" dy="2.4" layer="1"/> +<text x="-2.54" y="2.54" size="1.27" layer="25">>NAME</text> +<text x="-2.54" y="-3.81" size="1.27" layer="27">>VALUE</text> +</package> +<package name="2X03SMD"> +<smd name="1" x="-2.54" y="2.54" dx="2.54" dy="1.27" layer="1"/> +<smd name="3" x="-2.54" y="0" dx="2.54" dy="1.27" layer="1"/> +<smd name="5" x="-2.54" y="-2.54" dx="2.54" dy="1.27" layer="1"/> +<smd name="2" x="2.92" y="2.54" dx="2.54" dy="1.27" layer="1"/> +<smd name="4" x="2.92" y="0" dx="2.54" dy="1.27" layer="1"/> +<smd name="6" x="2.92" y="-2.54" dx="2.54" dy="1.27" layer="1"/> +<text x="-5.08" y="2.54" size="1.27" layer="27">1</text> +<text x="-3.81" y="3.81" size="1.27" layer="25">>NAME</text> +<text x="-3.81" y="-5.08" size="1.27" layer="27">>VALUE</text> +</package> +<package name="TQFP44-13THIN"> +<description><b>Thin Quad Flat Pack</b><p> +package type TQ</description> +<wire x1="-4.8" y1="4.4" x2="-4.4" y2="4.8" width="0.2032" layer="21"/> +<wire x1="-4.4" y1="4.8" x2="4.4" y2="4.8" width="0.2032" layer="21"/> +<wire x1="4.4" y1="4.8" x2="4.8" y2="4.4" width="0.2032" layer="21"/> +<wire x1="4.8" y1="4.4" x2="4.8" y2="-4.4" width="0.2032" layer="21"/> +<wire x1="4.8" y1="-4.4" x2="4.4" y2="-4.8" width="0.2032" layer="21"/> +<wire x1="4.4" y1="-4.8" x2="-4.4" y2="-4.8" width="0.2032" layer="21"/> +<wire x1="-4.4" y1="-4.8" x2="-4.8" y2="-4.4" width="0.2032" layer="21"/> +<wire x1="-4.8" y1="-4.4" x2="-4.8" y2="4.4" width="0.2032" layer="21"/> +<circle x="-4" y="4" radius="0.2827" width="0.254" layer="21"/> +<smd name="1" x="-5.8" y="4" dx="1.524" dy="0.3302" layer="1"/> +<smd name="2" x="-5.8" y="3.2" dx="1.524" dy="0.3302" layer="1"/> +<smd name="3" x="-5.8" y="2.4" dx="1.524" dy="0.3302" layer="1"/> +<smd name="4" x="-5.8" y="1.6" dx="1.524" dy="0.3302" layer="1"/> +<smd name="5" x="-5.8" y="0.8" dx="1.524" dy="0.3302" layer="1"/> +<smd name="6" x="-5.8" y="0" dx="1.524" dy="0.3302" layer="1"/> +<smd name="7" x="-5.8" y="-0.8" dx="1.524" dy="0.3302" layer="1"/> +<smd name="8" x="-5.8" y="-1.6" dx="1.524" dy="0.3302" layer="1"/> +<smd name="9" x="-5.8" y="-2.4" dx="1.524" dy="0.3302" layer="1"/> +<smd name="10" x="-5.8" y="-3.2" dx="1.524" dy="0.3302" layer="1"/> +<smd name="11" x="-5.8" y="-4" dx="1.524" dy="0.3302" layer="1"/> +<smd name="12" x="-4" y="-5.8" dx="0.3302" dy="1.524" layer="1"/> +<smd name="13" x="-3.2" y="-5.8" dx="0.3302" dy="1.524" layer="1"/> +<smd name="14" x="-2.4" y="-5.8" dx="0.3302" dy="1.524" layer="1"/> +<smd name="15" x="-1.6" y="-5.8" dx="0.3302" dy="1.524" layer="1"/> +<smd name="16" x="-0.8" y="-5.8" dx="0.3302" dy="1.524" layer="1"/> +<smd name="17" x="0" y="-5.8" dx="0.3302" dy="1.524" layer="1"/> +<smd name="18" x="0.8" y="-5.8" dx="0.3302" dy="1.524" layer="1"/> +<smd name="19" x="1.6" y="-5.8" dx="0.3302" dy="1.524" layer="1"/> +<smd name="20" x="2.4" y="-5.8" dx="0.3302" dy="1.524" layer="1"/> +<smd name="21" x="3.2" y="-5.8" dx="0.3302" dy="1.524" layer="1"/> +<smd name="22" x="4" y="-5.8" dx="0.3302" dy="1.524" layer="1"/> +<smd name="23" x="5.8" y="-4" dx="1.524" dy="0.3302" layer="1"/> +<smd name="24" x="5.8" y="-3.2" dx="1.524" dy="0.3302" layer="1"/> +<smd name="25" x="5.8" y="-2.4" dx="1.524" dy="0.3302" layer="1"/> +<smd name="26" x="5.8" y="-1.6" dx="1.524" dy="0.3302" layer="1"/> +<smd name="27" x="5.8" y="-0.8" dx="1.524" dy="0.3302" layer="1"/> +<smd name="28" x="5.8" y="0" dx="1.524" dy="0.3302" layer="1"/> +<smd name="29" x="5.8" y="0.8" dx="1.524" dy="0.3302" layer="1"/> +<smd name="30" x="5.8" y="1.6" dx="1.524" dy="0.3302" layer="1"/> +<smd name="31" x="5.8" y="2.4" dx="1.524" dy="0.3302" layer="1"/> +<smd name="32" x="5.8" y="3.2" dx="1.524" dy="0.3302" layer="1"/> +<smd name="33" x="5.8" y="4" dx="1.524" dy="0.3302" layer="1"/> +<smd name="34" x="4" y="5.8" dx="0.3302" dy="1.524" layer="1"/> +<smd name="35" x="3.2" y="5.8" dx="0.3302" dy="1.524" layer="1"/> +<smd name="36" x="2.4" y="5.8" dx="0.3302" dy="1.524" layer="1"/> +<smd name="37" x="1.6" y="5.8" dx="0.3302" dy="1.524" layer="1"/> +<smd name="38" x="0.8" y="5.8" dx="0.3302" dy="1.524" layer="1"/> +<smd name="39" x="0" y="5.8" dx="0.3302" dy="1.524" layer="1"/> +<smd name="40" x="-0.8" y="5.8" dx="0.3302" dy="1.524" layer="1"/> +<smd name="41" x="-1.6" y="5.8" dx="0.3302" dy="1.524" layer="1"/> +<smd name="42" x="-2.4" y="5.8" dx="0.3302" dy="1.524" layer="1"/> +<smd name="43" x="-3.2" y="5.8" dx="0.3302" dy="1.524" layer="1"/> +<smd name="44" x="-4" y="5.8" dx="0.3302" dy="1.524" layer="1"/> +<text x="-4.064" y="6.858" size="1.016" layer="25">>NAME</text> +<text x="-4.064" y="-1.7701" size="1.778" layer="27">>VALUE</text> +<rectangle x1="-6.1001" y1="3.8001" x2="-4.95" y2="4.1999" layer="51"/> +<rectangle x1="-6.1001" y1="3" x2="-4.95" y2="3.4" layer="51"/> +<rectangle x1="-6.1001" y1="2.1999" x2="-4.95" y2="2.5999" layer="51"/> +<rectangle x1="-6.1001" y1="1.4" x2="-4.95" y2="1.8001" layer="51"/> +<rectangle x1="-6.1001" y1="0.5999" x2="-4.95" y2="1" layer="51"/> +<rectangle x1="-6.1001" y1="-0.1999" x2="-4.95" y2="0.1999" layer="51"/> +<rectangle x1="-6.1001" y1="-1" x2="-4.95" y2="-0.5999" layer="51"/> +<rectangle x1="-6.1001" y1="-1.8001" x2="-4.95" y2="-1.4" layer="51"/> +<rectangle x1="-6.1001" y1="-2.5999" x2="-4.95" y2="-2.1999" layer="51"/> +<rectangle x1="-6.1001" y1="-3.4" x2="-4.95" y2="-3" layer="51"/> +<rectangle x1="-6.1001" y1="-4.1999" x2="-4.95" y2="-3.8001" layer="51"/> +<rectangle x1="-4.1999" y1="-6.1001" x2="-3.8001" y2="-4.95" layer="51"/> +<rectangle x1="-3.4" y1="-6.1001" x2="-3" y2="-4.95" layer="51"/> +<rectangle x1="-2.5999" y1="-6.1001" x2="-2.1999" y2="-4.95" layer="51"/> +<rectangle x1="-1.8001" y1="-6.1001" x2="-1.4" y2="-4.95" layer="51"/> +<rectangle x1="-1" y1="-6.1001" x2="-0.5999" y2="-4.95" layer="51"/> +<rectangle x1="-0.1999" y1="-6.1001" x2="0.1999" y2="-4.95" layer="51"/> +<rectangle x1="0.5999" y1="-6.1001" x2="1" y2="-4.95" layer="51"/> +<rectangle x1="1.4" y1="-6.1001" x2="1.8001" y2="-4.95" layer="51"/> +<rectangle x1="2.1999" y1="-6.1001" x2="2.5999" y2="-4.95" layer="51"/> +<rectangle x1="3" y1="-6.1001" x2="3.4" y2="-4.95" layer="51"/> +<rectangle x1="3.8001" y1="-6.1001" x2="4.1999" y2="-4.95" layer="51"/> +<rectangle x1="4.95" y1="-4.1999" x2="6.1001" y2="-3.8001" layer="51"/> +<rectangle x1="4.95" y1="-3.4" x2="6.1001" y2="-3" layer="51"/> +<rectangle x1="4.95" y1="-2.5999" x2="6.1001" y2="-2.1999" layer="51"/> +<rectangle x1="4.95" y1="-1.8001" x2="6.1001" y2="-1.4" layer="51"/> +<rectangle x1="4.95" y1="-1" x2="6.1001" y2="-0.5999" layer="51"/> +<rectangle x1="4.95" y1="-0.1999" x2="6.1001" y2="0.1999" layer="51"/> +<rectangle x1="4.95" y1="0.5999" x2="6.1001" y2="1" layer="51"/> +<rectangle x1="4.95" y1="1.4" x2="6.1001" y2="1.8001" layer="51"/> +<rectangle x1="4.95" y1="2.1999" x2="6.1001" y2="2.5999" layer="51"/> +<rectangle x1="4.95" y1="3" x2="6.1001" y2="3.4" layer="51"/> +<rectangle x1="4.95" y1="3.8001" x2="6.1001" y2="4.1999" layer="51"/> +<rectangle x1="3.8001" y1="4.95" x2="4.1999" y2="6.1001" layer="51"/> +<rectangle x1="3" y1="4.95" x2="3.4" y2="6.1001" layer="51"/> +<rectangle x1="2.1999" y1="4.95" x2="2.5999" y2="6.1001" layer="51"/> +<rectangle x1="1.4" y1="4.95" x2="1.8001" y2="6.1001" layer="51"/> +<rectangle x1="0.5999" y1="4.95" x2="1" y2="6.1001" layer="51"/> +<rectangle x1="-0.1999" y1="4.95" x2="0.1999" y2="6.1001" layer="51"/> +<rectangle x1="-1" y1="4.95" x2="-0.5999" y2="6.1001" layer="51"/> +<rectangle x1="-1.8001" y1="4.95" x2="-1.4" y2="6.1001" layer="51"/> +<rectangle x1="-2.5999" y1="4.95" x2="-2.1999" y2="6.1001" layer="51"/> +<rectangle x1="-3.4" y1="4.95" x2="-3" y2="6.1001" layer="51"/> +<rectangle x1="-4.1999" y1="4.95" x2="-3.8001" y2="6.1001" layer="51"/> +</package> +<package name="DX4R005HJ5_64"> +<wire x1="3.25" y1="-2.6" x2="-3.25" y2="-2.6" width="0.127" layer="21"/> +<wire x1="-3.25" y1="2.6" x2="-3.25" y2="0" width="0.127" layer="51"/> +<wire x1="3.25" y1="2.6" x2="3.25" y2="0" width="0.127" layer="51"/> +<wire x1="-1.75" y1="2.6" x2="1.75" y2="2.6" width="0.127" layer="51"/> +<wire x1="-3.25" y1="-2.2" x2="-3.25" y2="-2.6" width="0.127" layer="51"/> +<wire x1="3.25" y1="-2.6" x2="3.25" y2="-2.2" width="0.127" layer="51"/> +<smd name="GND@3" x="-2.175" y="-1.1" dx="2.15" dy="1.9" layer="1"/> +<smd name="GND@4" x="2.175" y="-1.1" dx="2.15" dy="1.9" layer="1"/> +<smd name="GND@1" x="-2.5" y="1.95" dx="1.2" dy="1.3" layer="1"/> +<smd name="GND@2" x="2.5" y="1.95" dx="1.2" dy="1.3" layer="1"/> +<smd name="D+" x="0" y="1.6" dx="0.254" dy="1.35" layer="1"/> +<smd name="D-" x="-0.65" y="1.6" dx="0.254" dy="1.35" layer="1"/> +<smd name="VBUS" x="-1.3" y="1.6" dx="0.254" dy="1.35" layer="1"/> +<smd name="ID" x="0.65" y="1.6" dx="0.254" dy="1.35" layer="1"/> +<smd name="GND" x="1.3" y="1.6" dx="0.254" dy="1.35" layer="1"/> +<text x="-3.4925" y="-1.27" size="0.6096" layer="25" font="vector" rot="R90">>Name</text> +<text x="4.1275" y="-1.5875" size="0.6096" layer="27" font="vector" rot="R90">>Value</text> +</package> +<package name="R1206FAB"> +<wire x1="-2.032" y1="1.016" x2="2.032" y2="1.016" width="0.127" layer="21"/> +<wire x1="2.032" y1="1.016" x2="2.032" y2="-1.016" width="0.127" layer="21"/> +<wire x1="2.032" y1="-1.016" x2="-2.032" y2="-1.016" width="0.127" layer="21"/> +<wire x1="-2.032" y1="-1.016" x2="-2.032" y2="1.016" width="0.127" layer="21"/> +<smd name="1" x="-1.651" y="0" dx="1.27" dy="1.905" layer="1"/> +<smd name="2" x="1.651" y="0" dx="1.27" dy="1.905" layer="1"/> +<text x="-1.778" y="1.27" size="1.016" layer="25" ratio="15">>NAME</text> +<text x="-1.778" y="-2.286" size="1.016" layer="27" ratio="15">>VALUE</text> +</package> +<package name="LED1206FAB"> +<description>LED1206 FAB style (smaller pads to allow trace between)</description> +<wire x1="-2.032" y1="1.016" x2="2.032" y2="1.016" width="0.127" layer="21"/> +<wire x1="2.032" y1="1.016" x2="2.032" y2="-1.016" width="0.127" layer="21"/> +<wire x1="2.032" y1="-1.016" x2="-2.032" y2="-1.016" width="0.127" layer="21"/> +<wire x1="-2.032" y1="-1.016" x2="-2.032" y2="1.016" width="0.127" layer="21"/> +<smd name="1" x="-1.651" y="0" dx="1.27" dy="1.905" layer="1"/> +<smd name="2" x="1.651" y="0" dx="1.27" dy="1.905" layer="1"/> +<text x="-1.778" y="1.27" size="1.016" layer="25" ratio="15">>NAME</text> +<text x="-1.778" y="-2.286" size="1.016" layer="27" ratio="15">>VALUE</text> +</package> +<package name="C1206FAB"> +<wire x1="-2.032" y1="1.016" x2="2.032" y2="1.016" width="0.127" layer="21"/> +<wire x1="2.032" y1="1.016" x2="2.032" y2="-1.016" width="0.127" layer="21"/> +<wire x1="2.032" y1="-1.016" x2="-2.032" y2="-1.016" width="0.127" layer="21"/> +<wire x1="-2.032" y1="-1.016" x2="-2.032" y2="1.016" width="0.127" layer="21"/> +<smd name="1" x="-1.651" y="0" dx="1.27" dy="1.905" layer="1"/> +<smd name="2" x="1.651" y="0" dx="1.27" dy="1.905" layer="1"/> +<text x="-1.778" y="1.27" size="1.016" layer="25" ratio="15">>NAME</text> +<text x="-1.778" y="-2.286" size="1.016" layer="27" ratio="15">>VALUE</text> +</package> +</packages> +</library> +<library name="SparkFun-Connectors" urn="urn:adsk.eagle:library:513"> +<description><h3>SparkFun Connectors</h3> +This library contains electrically-functional connectors. +<br> +<br> +We've spent an enormous amount of time creating and checking these footprints and parts, but it is <b> the end user's responsibility</b> to ensure correctness and suitablity for a given componet or application. +<br> +<br>If you enjoy using this library, please buy one of our products at <a href=" www.sparkfun.com">SparkFun.com</a>. +<br> +<br> +<b>Licensing:</b> Creative Commons ShareAlike 4.0 International - https://creativecommons.org/licenses/by-sa/4.0/ +<br> +<br> +You are welcome to use this library for commercial purposes. For attribution, we ask that when you begin to sell your device using our footprint, you email us with a link to the product being sold. We want bragging rights that we helped (in a very small part) to create your 8th world wonder. We would like the opportunity to feature your device on our homepage.</description> +<packages> +<package name="1X08" urn="urn:adsk.eagle:footprint:37760/1" library_version="1"> +<description><h3>Plated Through Hole -8 Pin</h3> +<p>Specifications: +<ul><li>Pin count:8</li> +<li>Pin pitch:0.1"</li> +</ul></p> +<p>Example device(s): +<ul><li>CONN_08</li> +</ul></p></description> +<wire x1="14.605" y1="1.27" x2="15.875" y2="1.27" width="0.2032" layer="21"/> +<wire x1="15.875" y1="1.27" x2="16.51" y2="0.635" width="0.2032" layer="21"/> +<wire x1="16.51" y1="-0.635" x2="15.875" y2="-1.27" width="0.2032" layer="21"/> +<wire x1="11.43" y1="0.635" x2="12.065" y2="1.27" width="0.2032" layer="21"/> +<wire x1="12.065" y1="1.27" x2="13.335" y2="1.27" width="0.2032" layer="21"/> +<wire x1="13.335" y1="1.27" x2="13.97" y2="0.635" width="0.2032" layer="21"/> +<wire x1="13.97" y1="-0.635" x2="13.335" y2="-1.27" width="0.2032" layer="21"/> +<wire x1="13.335" y1="-1.27" x2="12.065" y2="-1.27" width="0.2032" layer="21"/> +<wire x1="12.065" y1="-1.27" x2="11.43" y2="-0.635" width="0.2032" layer="21"/> +<wire x1="14.605" y1="1.27" x2="13.97" y2="0.635" width="0.2032" layer="21"/> +<wire x1="13.97" y1="-0.635" x2="14.605" y2="-1.27" width="0.2032" layer="21"/> +<wire x1="15.875" y1="-1.27" x2="14.605" y2="-1.27" width="0.2032" layer="21"/> +<wire x1="6.985" y1="1.27" x2="8.255" y2="1.27" width="0.2032" layer="21"/> +<wire x1="8.255" y1="1.27" x2="8.89" y2="0.635" width="0.2032" layer="21"/> +<wire x1="8.89" y1="-0.635" x2="8.255" y2="-1.27" width="0.2032" layer="21"/> +<wire x1="8.89" y1="0.635" x2="9.525" y2="1.27" width="0.2032" layer="21"/> +<wire x1="9.525" y1="1.27" x2="10.795" y2="1.27" width="0.2032" layer="21"/> +<wire x1="10.795" y1="1.27" x2="11.43" y2="0.635" width="0.2032" layer="21"/> +<wire x1="11.43" y1="-0.635" x2="10.795" y2="-1.27" width="0.2032" layer="21"/> +<wire x1="10.795" y1="-1.27" x2="9.525" y2="-1.27" width="0.2032" layer="21"/> +<wire x1="9.525" y1="-1.27" x2="8.89" y2="-0.635" width="0.2032" layer="21"/> +<wire x1="3.81" y1="0.635" x2="4.445" y2="1.27" width="0.2032" layer="21"/> +<wire x1="4.445" y1="1.27" x2="5.715" y2="1.27" width="0.2032" layer="21"/> +<wire x1="5.715" y1="1.27" x2="6.35" y2="0.635" width="0.2032" layer="21"/> +<wire x1="6.35" y1="-0.635" x2="5.715" y2="-1.27" width="0.2032" layer="21"/> +<wire x1="5.715" y1="-1.27" x2="4.445" y2="-1.27" width="0.2032" layer="21"/> +<wire x1="4.445" y1="-1.27" x2="3.81" y2="-0.635" width="0.2032" layer="21"/> +<wire x1="6.985" y1="1.27" x2="6.35" y2="0.635" width="0.2032" layer="21"/> +<wire x1="6.35" y1="-0.635" x2="6.985" y2="-1.27" width="0.2032" layer="21"/> +<wire x1="8.255" y1="-1.27" x2="6.985" y2="-1.27" width="0.2032" layer="21"/> +<wire x1="-0.635" y1="1.27" x2="0.635" y2="1.27" width="0.2032" layer="21"/> +<wire x1="0.635" y1="1.27" x2="1.27" y2="0.635" width="0.2032" layer="21"/> +<wire x1="1.27" y1="-0.635" x2="0.635" y2="-1.27" width="0.2032" layer="21"/> +<wire x1="1.27" y1="0.635" x2="1.905" y2="1.27" width="0.2032" layer="21"/> +<wire x1="1.905" y1="1.27" x2="3.175" y2="1.27" width="0.2032" layer="21"/> +<wire x1="3.175" y1="1.27" x2="3.81" y2="0.635" width="0.2032" layer="21"/> +<wire x1="3.81" y1="-0.635" x2="3.175" y2="-1.27" width="0.2032" layer="21"/> +<wire x1="3.175" y1="-1.27" x2="1.905" y2="-1.27" width="0.2032" layer="21"/> +<wire x1="1.905" y1="-1.27" x2="1.27" y2="-0.635" width="0.2032" layer="21"/> +<wire x1="-1.27" y1="0.635" x2="-1.27" y2="-0.635" width="0.2032" layer="21"/> +<wire x1="-0.635" y1="1.27" x2="-1.27" y2="0.635" width="0.2032" layer="21"/> +<wire x1="-1.27" y1="-0.635" x2="-0.635" y2="-1.27" width="0.2032" layer="21"/> +<wire x1="0.635" y1="-1.27" x2="-0.635" y2="-1.27" width="0.2032" layer="21"/> +<wire x1="17.145" y1="1.27" x2="18.415" y2="1.27" width="0.2032" layer="21"/> +<wire x1="18.415" y1="1.27" x2="19.05" y2="0.635" width="0.2032" layer="21"/> +<wire x1="19.05" y1="0.635" x2="19.05" y2="-0.635" width="0.2032" layer="21"/> +<wire x1="19.05" y1="-0.635" x2="18.415" y2="-1.27" width="0.2032" layer="21"/> +<wire x1="17.145" y1="1.27" x2="16.51" y2="0.635" width="0.2032" layer="21"/> +<wire x1="16.51" y1="-0.635" x2="17.145" y2="-1.27" width="0.2032" layer="21"/> +<wire x1="18.415" y1="-1.27" x2="17.145" y2="-1.27" width="0.2032" layer="21"/> +<pad name="1" x="0" y="0" drill="1.016" diameter="1.8796" rot="R90"/> +<pad name="2" x="2.54" y="0" drill="1.016" diameter="1.8796" rot="R90"/> +<pad name="3" x="5.08" y="0" drill="1.016" diameter="1.8796" rot="R90"/> +<pad name="4" x="7.62" y="0" drill="1.016" diameter="1.8796" rot="R90"/> +<pad name="5" x="10.16" y="0" drill="1.016" diameter="1.8796" rot="R90"/> +<pad name="6" x="12.7" y="0" drill="1.016" diameter="1.8796" rot="R90"/> +<pad name="7" x="15.24" y="0" drill="1.016" diameter="1.8796" rot="R90"/> +<pad name="8" x="17.78" y="0" drill="1.016" diameter="1.8796" rot="R90"/> +<rectangle x1="14.986" y1="-0.254" x2="15.494" y2="0.254" layer="51"/> +<rectangle x1="12.446" y1="-0.254" x2="12.954" y2="0.254" layer="51"/> +<rectangle x1="9.906" y1="-0.254" x2="10.414" y2="0.254" layer="51"/> +<rectangle x1="7.366" y1="-0.254" x2="7.874" y2="0.254" layer="51"/> +<rectangle x1="4.826" y1="-0.254" x2="5.334" y2="0.254" layer="51"/> +<rectangle x1="2.286" y1="-0.254" x2="2.794" y2="0.254" layer="51"/> +<rectangle x1="-0.254" y1="-0.254" x2="0.254" y2="0.254" layer="51"/> +<rectangle x1="17.526" y1="-0.254" x2="18.034" y2="0.254" layer="51"/> +<text x="-1.27" y="1.397" size="0.6096" layer="25" font="vector" ratio="20">>NAME</text> +<text x="-1.27" y="-2.032" size="0.6096" layer="27" font="vector" ratio="20">>VALUE</text> +</package> +<package name="1X02_NO_SILK" urn="urn:adsk.eagle:footprint:37666/1" library_version="1"> +<description><h3>Plated Through Hole - No Silk Outline</h3> +<p>Specifications: +<ul><li>Pin count:2</li> +<li>Pin pitch:0.1"</li> +</ul></p> +<p>Example device(s): +<ul><li>CONN_02</li> +</ul></p></description> +<pad name="1" x="0" y="0" drill="1.016" diameter="1.8796" rot="R90"/> +<pad name="2" x="2.54" y="0" drill="1.016" diameter="1.8796" rot="R90"/> +<rectangle x1="2.286" y1="-0.254" x2="2.794" y2="0.254" layer="51"/> +<rectangle x1="-0.254" y1="-0.254" x2="0.254" y2="0.254" layer="51"/> +<text x="-1.27" y="1.397" size="0.6096" layer="25" font="vector" ratio="20">>NAME</text> +<text x="-1.27" y="-2.032" size="0.6096" layer="27" font="vector" ratio="20">>VALUE</text> +</package> +<package name="1X04_NO_SILK" urn="urn:adsk.eagle:footprint:37711/1" library_version="1"> +<description><h3>Plated Through Hole - 4 Pin No Silk Outline</h3> +<p>Specifications: +<ul><li>Pin count:4</li> +<li>Pin pitch:0.1"</li> +</ul></p> +<p>Example device(s): +<ul><li>CONN_04</li> +</ul></p></description> +<pad name="1" x="0" y="0" drill="1.016" diameter="1.8796" rot="R90"/> +<pad name="2" x="2.54" y="0" drill="1.016" diameter="1.8796" rot="R90"/> +<pad name="3" x="5.08" y="0" drill="1.016" diameter="1.8796" rot="R90"/> +<pad name="4" x="7.62" y="0" drill="1.016" diameter="1.8796" rot="R90"/> +<rectangle x1="7.366" y1="-0.254" x2="7.874" y2="0.254" layer="51"/> +<rectangle x1="4.826" y1="-0.254" x2="5.334" y2="0.254" layer="51"/> +<rectangle x1="2.286" y1="-0.254" x2="2.794" y2="0.254" layer="51"/> +<rectangle x1="-0.254" y1="-0.254" x2="0.254" y2="0.254" layer="51"/> +<text x="-1.27" y="1.397" size="0.6096" layer="25" font="vector" ratio="20">>NAME</text> +<text x="-1.27" y="-2.032" size="0.6096" layer="27" font="vector" ratio="20">>VALUE</text> +</package> +</packages> +<packages3d> +<package3d name="1X08" urn="urn:adsk.eagle:package:38138/1" type="box" library_version="1"> +<description>Plated Through Hole -8 Pin +Specifications: +Pin count:8 +Pin pitch:0.1" + +Example device(s): +CONN_08 +</description> +<packageinstances> +<packageinstance name="1X08"/> +</packageinstances> +</package3d> +<package3d name="1X02_NO_SILK" urn="urn:adsk.eagle:package:38051/1" type="box" library_version="1"> +<description>Plated Through Hole - No Silk Outline +Specifications: +Pin count:2 +Pin pitch:0.1" + +Example device(s): +CONN_02 +</description> +<packageinstances> +<packageinstance name="1X02_NO_SILK"/> +</packageinstances> +</package3d> +<package3d name="1X04_NO_SILK" urn="urn:adsk.eagle:package:38094/1" type="box" library_version="1"> +<description>Plated Through Hole - 4 Pin No Silk Outline +Specifications: +Pin count:4 +Pin pitch:0.1" + +Example device(s): +CONN_04 +</description> +<packageinstances> +<packageinstance name="1X04_NO_SILK"/> +</packageinstances> +</package3d> +</packages3d> +</library> +<library name="holes" urn="urn:adsk.eagle:library:237"> +<description><b>Mounting Holes and Pads</b><p> +<author>Created by librarian@cadsoft.de</author></description> +<packages> +<package name="3,0" urn="urn:adsk.eagle:footprint:14240/1" library_version="1"> +<description><b>MOUNTING HOLE</b> 3.0 mm with drill center</description> +<wire x1="-2.159" y1="0" x2="0" y2="-2.159" width="2.4892" layer="51" curve="90" cap="flat"/> +<wire x1="0" y1="2.159" x2="2.159" y2="0" width="2.4892" layer="51" curve="-90" cap="flat"/> +<circle x="0" y="0" radius="3.429" width="0.1524" layer="21"/> +<circle x="0" y="0" radius="0.762" width="0.4572" layer="51"/> +<circle x="0" y="0" radius="3.048" width="2.032" layer="39"/> +<circle x="0" y="0" radius="3.048" width="2.032" layer="43"/> +<circle x="0" y="0" radius="3.048" width="2.032" layer="40"/> +<circle x="0" y="0" radius="3.048" width="2.032" layer="41"/> +<circle x="0" y="0" radius="3.048" width="2.032" layer="42"/> +<circle x="0" y="0" radius="1.6" width="0.2032" layer="21"/> +<text x="-1.27" y="-3.81" size="1.27" layer="48">3,0</text> +<hole x="0" y="0" drill="3"/> +</package> +</packages> +<packages3d> +<package3d name="3,0" urn="urn:adsk.eagle:package:14277/1" type="box" library_version="1"> +<description>MOUNTING HOLE 3.0 mm with drill center</description> +<packageinstances> +<packageinstance name="3,0"/> +</packageinstances> +</package3d> +</packages3d> +</library> +</libraries> +<attributes> +</attributes> +<variantdefs> +</variantdefs> +<classes> +<class number="0" name="default" width="0" drill="0"> +</class> +</classes> +<designrules name="default *"> +<description language="de"><b>EAGLE Design Rules</b> +<p> +Die Standard-Design-Rules sind so gewählt, dass sie für +die meisten Anwendungen passen. Sollte ihre Platine +besondere Anforderungen haben, treffen Sie die erforderlichen +Einstellungen hier und speichern die Design Rules unter +einem neuen Namen ab.</description> +<description language="en"><b>EAGLE Design Rules</b> +<p> +The default Design Rules have been set to cover +a wide range of applications. Your particular design +may have different requirements, so please make the +necessary adjustments and save your customized +design rules under a new name.</description> +<param name="layerSetup" value="(1*16)"/> +<param name="mtCopper" value="0.035mm 0.035mm 0.035mm 0.035mm 0.035mm 0.035mm 0.035mm 0.035mm 0.035mm 0.035mm 0.035mm 0.035mm 0.035mm 0.035mm 0.035mm 0.035mm"/> +<param name="mtIsolate" value="1.5mm 0.15mm 0.2mm 0.15mm 0.2mm 0.15mm 0.2mm 0.15mm 0.2mm 0.15mm 0.2mm 0.15mm 0.2mm 0.15mm 0.2mm"/> +<param name="mdWireWire" value="18mil"/> +<param name="mdWirePad" value="20mil"/> +<param name="mdWireVia" value="18mil"/> +<param name="mdPadPad" value="18mil"/> +<param name="mdPadVia" value="18mil"/> +<param name="mdViaVia" value="18mil"/> +<param name="mdSmdPad" value="18mil"/> +<param name="mdSmdVia" value="18mil"/> +<param name="mdSmdSmd" value="18mil"/> +<param name="mdViaViaSameLayer" value="6mil"/> +<param name="mnLayersViaInSmd" value="2"/> +<param name="mdCopperDimension" value="18mil"/> +<param name="mdDrill" value="18mil"/> +<param name="mdSmdStop" value="0mil"/> +<param name="msWidth" value="8mil"/> +<param name="msDrill" value="0.35mm"/> +<param name="msMicroVia" value="9.99mm"/> +<param name="msBlindViaRatio" value="0.5"/> +<param name="rvPadTop" value="0.25"/> +<param name="rvPadInner" value="0.25"/> +<param name="rvPadBottom" value="0.25"/> +<param name="rvViaOuter" value="0.25"/> +<param name="rvViaInner" value="0.25"/> +<param name="rvMicroViaOuter" value="0.25"/> +<param name="rvMicroViaInner" value="0.25"/> +<param name="rlMinPadTop" value="10mil"/> +<param name="rlMaxPadTop" value="20mil"/> +<param name="rlMinPadInner" value="10mil"/> +<param name="rlMaxPadInner" value="20mil"/> +<param name="rlMinPadBottom" value="10mil"/> +<param name="rlMaxPadBottom" value="20mil"/> +<param name="rlMinViaOuter" value="8mil"/> +<param name="rlMaxViaOuter" value="20mil"/> +<param name="rlMinViaInner" value="8mil"/> +<param name="rlMaxViaInner" value="20mil"/> +<param name="rlMinMicroViaOuter" value="4mil"/> +<param name="rlMaxMicroViaOuter" value="20mil"/> +<param name="rlMinMicroViaInner" value="4mil"/> +<param name="rlMaxMicroViaInner" value="20mil"/> +<param name="psTop" value="-1"/> +<param name="psBottom" value="-1"/> +<param name="psFirst" value="-1"/> +<param name="psElongationLong" value="100"/> +<param name="psElongationOffset" value="100"/> +<param name="mvStopFrame" value="1"/> +<param name="mvCreamFrame" value="0"/> +<param name="mlMinStopFrame" value="4mil"/> +<param name="mlMaxStopFrame" value="4mil"/> +<param name="mlMinCreamFrame" value="0mil"/> +<param name="mlMaxCreamFrame" value="0mil"/> +<param name="mlViaStopLimit" value="0mil"/> +<param name="srRoundness" value="0"/> +<param name="srMinRoundness" value="0mil"/> +<param name="srMaxRoundness" value="0mil"/> +<param name="slThermalIsolate" value="19mil"/> +<param name="slThermalsForVias" value="0"/> +<param name="dpMaxLengthDifference" value="10mm"/> +<param name="dpGapFactor" value="2.5"/> +<param name="checkAngle" value="0"/> +<param name="checkFont" value="1"/> +<param name="checkRestrict" value="1"/> +<param name="checkStop" value="0"/> +<param name="checkValues" value="0"/> +<param name="checkNames" value="1"/> +<param name="checkWireStubs" value="1"/> +<param name="checkPolygonWidth" value="0"/> +<param name="useDiameter" value="13"/> +<param name="maxErrors" value="50"/> +</designrules> +<autorouter> +<pass name="Default"> +<param name="RoutingGrid" value="50mil"/> +<param name="AutoGrid" value="1"/> +<param name="Efforts" value="0"/> +<param name="TopRouterVariant" value="1"/> +<param name="tpViaShape" value="round"/> +<param name="PrefDir.1" value="a"/> +<param name="PrefDir.2" value="0"/> +<param name="PrefDir.3" value="0"/> +<param name="PrefDir.4" value="0"/> +<param name="PrefDir.5" value="0"/> +<param name="PrefDir.6" value="0"/> +<param name="PrefDir.7" value="0"/> +<param name="PrefDir.8" value="0"/> +<param name="PrefDir.9" value="0"/> +<param name="PrefDir.10" value="0"/> +<param name="PrefDir.11" value="0"/> +<param name="PrefDir.12" value="0"/> +<param name="PrefDir.13" value="0"/> +<param name="PrefDir.14" value="0"/> +<param name="PrefDir.15" value="0"/> +<param name="PrefDir.16" value="a"/> +<param name="cfVia" value="8"/> +<param name="cfNonPref" value="5"/> +<param name="cfChangeDir" value="2"/> +<param name="cfOrthStep" value="2"/> +<param name="cfDiagStep" value="3"/> +<param name="cfExtdStep" value="0"/> +<param name="cfBonusStep" value="1"/> +<param name="cfMalusStep" value="1"/> +<param name="cfPadImpact" value="4"/> +<param name="cfSmdImpact" value="4"/> +<param name="cfBusImpact" value="0"/> +<param name="cfHugging" value="3"/> +<param name="cfAvoid" value="4"/> +<param name="cfPolygon" value="10"/> +<param name="cfBase.1" value="0"/> +<param name="cfBase.2" value="1"/> +<param name="cfBase.3" value="1"/> +<param name="cfBase.4" value="1"/> +<param name="cfBase.5" value="1"/> +<param name="cfBase.6" value="1"/> +<param name="cfBase.7" value="1"/> +<param name="cfBase.8" value="1"/> +<param name="cfBase.9" value="1"/> +<param name="cfBase.10" value="1"/> +<param name="cfBase.11" value="1"/> +<param name="cfBase.12" value="1"/> +<param name="cfBase.13" value="1"/> +<param name="cfBase.14" value="1"/> +<param name="cfBase.15" value="1"/> +<param name="cfBase.16" value="0"/> +<param name="mnVias" value="20"/> +<param name="mnSegments" value="9999"/> +<param name="mnExtdSteps" value="9999"/> +<param name="mnRipupLevel" value="10"/> +<param name="mnRipupSteps" value="100"/> +<param name="mnRipupTotal" value="100"/> +</pass> +<pass name="Follow-me" refer="Default" active="yes"> +</pass> +<pass name="Busses" refer="Default" active="yes"> +<param name="cfNonPref" value="4"/> +<param name="cfBusImpact" value="4"/> +<param name="cfHugging" value="0"/> +<param name="mnVias" value="0"/> +</pass> +<pass name="Route" refer="Default" active="yes"> +</pass> +<pass name="Optimize1" refer="Default" active="yes"> +<param name="cfVia" value="99"/> +<param name="cfExtdStep" value="10"/> +<param name="cfHugging" value="1"/> +<param name="mnExtdSteps" value="1"/> +<param name="mnRipupLevel" value="0"/> +</pass> +<pass name="Optimize2" refer="Optimize1" active="yes"> +<param name="cfNonPref" value="0"/> +<param name="cfChangeDir" value="6"/> +<param name="cfExtdStep" value="0"/> +<param name="cfBonusStep" value="2"/> +<param name="cfMalusStep" value="2"/> +<param name="cfPadImpact" value="2"/> +<param name="cfSmdImpact" value="2"/> +<param name="cfHugging" value="0"/> +</pass> +<pass name="Optimize3" refer="Optimize2" active="yes"> +<param name="cfChangeDir" value="8"/> +<param name="cfPadImpact" value="0"/> +<param name="cfSmdImpact" value="0"/> +</pass> +<pass name="Optimize4" refer="Optimize3" active="yes"> +<param name="cfChangeDir" value="25"/> +</pass> +</autorouter> +<elements> +<element name="C1" library="fab" package="C1206" value=".1uF" x="37.338" y="31.6992" rot="R180"/> +<element name="C2" library="fab" package="C1206" value="10uF" x="37.338" y="34.1122" rot="R180"/> +<element name="C3" library="fab" package="C1206" value="16pF" x="22.352" y="43.2054" rot="R270"/> +<element name="C4" library="fab" package="C1206" value="16pF" x="19.2786" y="43.2054" rot="R270"/> +<element name="C7" library="fab" package="C1206" value=".1uF" x="11.6078" y="10.9982" rot="R180"/> +<element name="C8" library="fab" package="C1206" value="10uF" x="37.338" y="25.5524" rot="R180"/> +<element name="IC1" library="fab" package="SOT23-5" value="OPAMPSOT23-5" x="15.0368" y="0.7112"/> +<element name="IC2" library="fab" package="SOT23-5" value="OPAMPSOT23-5" x="5.8166" y="15.621"/> +<element name="IC3" library="fab" package="SOT23" value="" x="37.592" y="28.829" rot="R270"/> +<element name="R8" library="fab" package="R1206" value="50k" x="11.6078" y="17.145" rot="R180"/> +<element name="R9" library="fab" package="R1206" value="50k" x="11.6078" y="13.7668" rot="R180"/> +<element name="S1" library="fab" package="6MM_SWITCH" value="" x="28.956" y="42.418"/> +<element name="U$2" library="fab" package="2-SMD-5X3MM" value="CRYSTAL 16MHz" x="21.336" y="37.1094" rot="R180"/> +<element name="U$3" library="fab" package="2X03SMD" value="AVRISPSMD" x="29.9466" y="33.909" rot="R90"/> +<element name="U$7" library="fab" package="TQFP44-13THIN" value="ATXMEGA_A4UTQFP-44-1-64" x="21.336" y="23.622"/> +<element name="X1" library="fab" package="DX4R005HJ5_64" value="MICRO-USB_1/64" x="41.1226" y="20.2438" rot="R90"/> +<element name="R12" library="fab" package="R1206FAB" value="22" x="31.496" y="21.6408"/> +<element name="R13" library="fab" package="R1206FAB" value="22" x="31.496" y="18.8468"/> +<element name="R1" library="fab" package="R1206FAB" value="250" x="18.3388" y="6.8834"/> +<element name="R2" library="fab" package="R1206FAB" value="250" x="18.3388" y="9.6774"/> +<element name="R6" library="fab" package="R1206FAB" value="10k" x="36.6268" y="7.493" rot="R270"/> +<element name="R10" library="fab" package="R1206FAB" value="10k" x="37.338" y="37.2618"/> +<element name="U$6" library="fab" package="LED1206FAB" value="LEDFAB1206" x="23.9268" y="6.8834" rot="R180"/> +<element name="U$1" library="fab" package="LED1206FAB" value="LEDFAB1206" x="23.9268" y="9.6774" rot="R180"/> +<element name="J2" library="SparkFun-Connectors" library_urn="urn:adsk.eagle:library:513" package="1X08" package3d_urn="urn:adsk.eagle:package:38138/1" value="" x="11.303" y="43.9166" rot="R270"> +<attribute name="PROD_ID" value="CONN-08438" x="11.303" y="43.9166" size="1.778" layer="27" rot="R270" display="off"/> +</element> +<element name="J3" library="SparkFun-Connectors" library_urn="urn:adsk.eagle:library:513" package="1X02_NO_SILK" package3d_urn="urn:adsk.eagle:package:38051/1" value="" x="35.5346" y="19.4818" rot="R90"/> +<element name="U$5" library="fab" package="LED1206FAB" value="LEDFAB1206" x="29.4132" y="12.4714" rot="R180"/> +<element name="J4" library="SparkFun-Connectors" library_urn="urn:adsk.eagle:library:513" package="1X02_NO_SILK" package3d_urn="urn:adsk.eagle:package:38051/1" value="" x="36.6268" y="11.557" rot="R90"/> +<element name="R14" library="fab" package="R1206FAB" value="0" x="8.8646" y="21.4376" rot="R270"/> +<element name="C10" library="fab" package="C1206" value=".1uF" x="26.7716" y="15.24" rot="R180"/> +<element name="R11" library="fab" package="R1206FAB" value="250" x="29.464" y="9.7028"/> +<element name="C12" library="fab" package="C1206" value=".1uF" x="31.5468" y="25.3746" rot="R180"/> +<element name="C6" library="fab" package="C1206" value=".1uF" x="12.2428" y="21.4376" rot="R270"/> +<element name="R4" library="fab" package="R1206FAB" value="2.5k" x="24.3586" y="0.8636" rot="R90"/> +<element name="J6" library="SparkFun-Connectors" library_urn="urn:adsk.eagle:library:513" package="1X04_NO_SILK" package3d_urn="urn:adsk.eagle:package:38094/1" value="" x="39.6748" y="6.477" rot="R90"> +<attribute name="PROD_ID" value="CONN-09696" x="39.6748" y="6.477" size="1.778" layer="27" rot="R90" display="off"/> +</element> +<element name="R5" library="fab" package="R1206FAB" value="20k" x="18.5928" y="0.9652" rot="R270"/> +<element name="C13" library="fab" package="C1206FAB" value="2pF" x="28.7528" y="-0.3048" rot="R180"/> +<element name="C14" library="fab" package="C1206FAB" value="10uF" x="21.6408" y="0.9652" rot="R270"/> +<element name="H1" library="holes" library_urn="urn:adsk.eagle:library:237" package="3,0" package3d_urn="urn:adsk.eagle:package:14277/1" value="MOUNT-HOLE3.0" x="38.1" y="0"/> +<element name="H2" library="holes" library_urn="urn:adsk.eagle:library:237" package="3,0" package3d_urn="urn:adsk.eagle:package:14277/1" value="MOUNT-HOLE3.0" x="5.08" y="0"/> +<element name="H3" library="holes" library_urn="urn:adsk.eagle:library:237" package="3,0" package3d_urn="urn:adsk.eagle:package:14277/1" value="MOUNT-HOLE3.0" x="5.08" y="43.18"/> +<element name="R3" library="fab" package="R1206FAB" value="250" x="18.288" y="12.3952"/> +<element name="U$4" library="fab" package="LED1206FAB" value="LEDFAB1206" x="23.876" y="12.3952" rot="R180"/> +<element name="H4" library="holes" library_urn="urn:adsk.eagle:library:237" package="3,0" package3d_urn="urn:adsk.eagle:package:14277/1" value="MOUNT-HOLE3.0" x="38.1" y="43.18"/> +<element name="C9" library="fab" package="C1206FAB" value="10uF" x="29.4386" y="6.8834" rot="R180"/> +<element name="C5" library="fab" package="C1206FAB" value="10uF" x="11.6332" y="6.7564" rot="R180"/> +</elements> +<signals> +<signal name="GND"> +<contactref element="X1" pad="GND"/> +<contactref element="C1" pad="1"/> +<contactref element="C2" pad="1"/> +<contactref element="IC3" pad="3"/> +<contactref element="C8" pad="1"/> +<contactref element="C4" pad="1"/> +<contactref element="C3" pad="1"/> +<contactref element="U$3" pad="6"/> +<contactref element="S1" pad="1"/> +<contactref element="S1" pad="2"/> +<contactref element="IC1" pad="2"/> +<contactref element="C7" pad="1"/> +<contactref element="R9" pad="1"/> +<contactref element="IC2" pad="2"/> +<contactref element="U$7" pad="8"/> +<contactref element="U$7" pad="38"/> +<contactref element="U$7" pad="30"/> +<contactref element="U$7" pad="18"/> +<polygon width="0.1524" layer="1"> +<vertex x="-2.54" y="50.8"/> +<vertex x="45.72" y="50.8"/> +<vertex x="45.72" y="-5.8674"/> +<vertex x="-2.54" y="-5.8674"/> +</polygon> +<wire x1="5.8166" y1="14.315" x2="5.9665" y2="14.1651" width="0.2032" layer="1"/> +<contactref element="U$5" pad="2"/> +<contactref element="C12" pad="1"/> +<contactref element="C6" pad="1"/> +<contactref element="J4" pad="2"/> +<contactref element="C10" pad="1"/> +<contactref element="J6" pad="4"/> +<contactref element="C13" pad="1"/> +<contactref element="C9" pad="1"/> +<contactref element="C5" pad="1"/> +<wire x1="38.738" y1="25.5524" x2="39.5226" y2="21.5438" width="0" layer="19" extent="1-1"/> +</signal> +<signal name="+5V"> +<contactref element="X1" pad="VBUS"/> +<contactref element="IC3" pad="2"/> +<contactref element="C8" pad="2"/> +<wire x1="31.8516" y1="17.59715625" x2="32.18945625" y2="17.2593" width="0.2032" layer="1"/> +<wire x1="35.61695625" y1="17.2593" x2="32.18945625" y2="17.2593" width="0.2032" layer="1"/> +<wire x1="39.5226" y1="18.9438" x2="38.984634375" y2="18.9438" width="0.2032" layer="1"/> +<wire x1="38.984634375" y1="18.9438" x2="36.111265625" y2="17.753609375" width="0.2032" layer="1" curve="45"/> +<wire x1="36.111265625" y1="17.753609375" x2="35.61695625" y2="17.2593" width="0.2032" layer="1"/> +<wire x1="36.322" y1="27.879" x2="36.492" y2="27.879" width="0.2032" layer="1"/> +<wire x1="35.938" y1="25.5524" x2="36.322" y2="25.9364" width="0.2032" layer="1"/> +<wire x1="36.322" y1="25.9364" x2="36.322" y2="27.879" width="0.2032" layer="1"/> +<wire x1="35.938" y1="25.4" x2="33.7917" y2="23.2537" width="0.2032" layer="1"/> +<wire x1="33.7917" y1="23.2537" x2="32.2297375" y2="23.2537" width="0.2032" layer="1"/> +<wire x1="32.2297375" y1="23.2537" x2="31.8516" y2="22.8755625" width="0.2032" layer="1"/> +<wire x1="31.8516" y1="22.8755625" x2="31.8516" y2="17.59715625" width="0.2032" layer="1"/> +<wire x1="35.938" y1="25.5524" x2="35.938" y2="25.4" width="0.2032" layer="1"/> +</signal> +<signal name="N$1"> +<contactref element="U$2" pad="P$2"/> +<contactref element="C4" pad="2"/> +<contactref element="U$7" pad="37"/> +<wire x1="19.336" y1="37.1094" x2="19.2786" y2="37.1668" width="0.2032" layer="1"/> +<wire x1="19.2786" y1="37.1668" x2="19.2786" y2="41.8054" width="0.2032" layer="1"/> +<wire x1="19.336" y1="37.1094" x2="21.448103125" y2="34.997296875" width="0.2032" layer="1"/> +<wire x1="21.448103125" y1="34.997296875" x2="22.936" y2="31.40519375" width="0.2032" layer="1" curve="-45"/> +<wire x1="22.936" y1="31.40519375" x2="22.936" y2="29.422" width="0.2032" layer="1"/> +</signal> +<signal name="N$2"> +<contactref element="U$2" pad="P$1"/> +<contactref element="C3" pad="2"/> +<contactref element="U$7" pad="36"/> +<wire x1="23.336" y1="37.1094" x2="22.352" y2="38.0934" width="0.2032" layer="1"/> +<wire x1="22.352" y1="38.0934" x2="22.352" y2="41.8054" width="0.2032" layer="1"/> +<wire x1="23.736" y1="29.422" x2="23.736" y2="36.7094" width="0.2032" layer="1"/> +<wire x1="23.736" y1="36.7094" x2="23.336" y2="37.1094" width="0.2032" layer="1"/> +</signal> +<signal name="D+"> +<contactref element="X1" pad="D+"/> +<contactref element="R12" pad="2"/> +<contactref element="J3" pad="2"/> +<wire x1="39.5226" y1="20.2438" x2="39.127134375" y2="20.2438" width="0.2032" layer="1"/> +<wire x1="39.127134375" y1="20.2438" x2="35.9861625" y2="21.5448375" width="0.2032" layer="1" curve="-45"/> +<wire x1="35.9861625" y1="21.5448375" x2="35.5346" y2="21.9964" width="0.2032" layer="1"/> +<wire x1="35.5346" y1="21.9964" x2="35.5346" y2="22.0218" width="0.2032" layer="1"/> +<wire x1="35.4584" y1="21.9456" x2="35.5346" y2="22.0218" width="0.2032" layer="1"/> +<wire x1="33.4518" y1="21.9456" x2="35.4584" y2="21.9456" width="0.2032" layer="1"/> +<wire x1="33.147" y1="21.6408" x2="33.4518" y2="21.9456" width="0.2032" layer="1"/> +</signal> +<signal name="D-"> +<contactref element="X1" pad="D-"/> +<contactref element="R13" pad="2"/> +<contactref element="J3" pad="1"/> +<wire x1="39.5226" y1="19.5938" x2="35.6466" y2="19.5938" width="0.2032" layer="1"/> +<wire x1="35.5346" y1="19.4818" x2="33.782" y2="19.4818" width="0.2032" layer="1"/> +<wire x1="35.6466" y1="19.5938" x2="35.5346" y2="19.4818" width="0.2032" layer="1"/> +<wire x1="33.782" y1="19.4818" x2="33.147" y2="18.8468" width="0.2032" layer="1"/> +</signal> +<signal name="N$5"> +<contactref element="U$3" pad="1"/> +<contactref element="U$7" pad="34"/> +<wire x1="25.336" y1="29.9808" x2="26.7242" y2="31.369" width="0.2032" layer="1"/> +<wire x1="26.7242" y1="31.369" x2="27.4066" y2="31.369" width="0.2032" layer="1"/> +<wire x1="25.336" y1="29.422" x2="25.336" y2="29.9808" width="0.2032" layer="1"/> +</signal> +<signal name="N$7"> +<contactref element="S1" pad="4"/> +<contactref element="S1" pad="3"/> +<contactref element="U$3" pad="5"/> +<contactref element="U$7" pad="35"/> +<wire x1="32.4866" y1="31.369" x2="32.4866" y2="31.75" width="0.2032" layer="1"/> +<contactref element="R10" pad="1"/> +<wire x1="25.654" y1="40.132" x2="32.258" y2="40.132" width="0.2032" layer="1"/> +<wire x1="24.5359" y1="29.4221" x2="24.5359" y2="31.09074375" width="0.2032" layer="1"/> +<wire x1="24.5359" y1="31.09074375" x2="25.4" y2="31.95484375" width="0.2032" layer="1"/> +<wire x1="30.7594" y1="33.4772" x2="32.4866" y2="31.75" width="0.2032" layer="1"/> +<wire x1="25.4" y1="39.878" x2="25.654" y2="40.132" width="0.2032" layer="1"/> +<wire x1="25.4" y1="33.4772" x2="30.7594" y2="33.4772" width="0.2032" layer="1"/> +<wire x1="25.4" y1="31.95484375" x2="25.4" y2="33.4772" width="0.2032" layer="1"/> +<wire x1="24.536" y1="29.422" x2="24.5359" y2="29.4221" width="0.2032" layer="1"/> +<wire x1="32.258" y1="40.132" x2="33.1978" y2="40.132" width="0.2032" layer="1"/> +<wire x1="33.1978" y1="40.132" x2="35.7886" y2="37.5412" width="0.2032" layer="1"/> +<wire x1="25.4" y1="33.4772" x2="25.4" y2="39.878" width="0.2032" layer="1"/> +<wire x1="35.7886" y1="37.5412" x2="35.7886" y2="37.3634" width="0.2032" layer="1"/> +<wire x1="35.7886" y1="37.3634" x2="35.687" y2="37.2618" width="0.2032" layer="1"/> +</signal> +<signal name="N$6"> +<contactref element="U$5" pad="1"/> +<contactref element="R11" pad="2"/> +<wire x1="31.115" y1="9.7028" x2="31.115" y2="12.4206" width="0.2032" layer="1"/> +<wire x1="31.115" y1="12.4206" x2="31.0642" y2="12.4714" width="0.2032" layer="1"/> +</signal> +<signal name="AUDIO"> +<contactref element="U$7" pad="3"/> +<contactref element="J2" pad="8"/> +<contactref element="R14" pad="2"/> +<wire x1="5.67255625" y1="19.7866" x2="8.8646" y2="19.7866" width="0.2032" layer="1"/> +<wire x1="11.4046" y1="25.891315625" x2="11.303" y2="26.1366" width="0.2032" layer="1" curve="45"/> +<wire x1="11.4046" y1="26.035" x2="15.504615625" y2="26.035" width="0.2032" layer="1"/> +<wire x1="15.504615625" y1="26.035" x2="15.536" y2="26.022" width="0.2032" layer="1" curve="-45"/> +<wire x1="11.303" y1="26.1366" x2="11.4046" y2="26.035" width="0.2032" layer="1"/> +<contactref element="IC1" pad="1"/> +<contactref element="R6" pad="2"/> +<contactref element="R14" pad="1"/> +<wire x1="11.4046" y1="25.6286" x2="11.4046" y2="26.035" width="0.2032" layer="1"/> +<wire x1="5.67255625" y1="19.7866" x2="3.1242" y2="17.23824375" width="0.2032" layer="1"/> +<contactref element="J6" pad="1"/> +<wire x1="36.6268" y1="5.842" x2="39.0398" y2="5.842" width="0.2032" layer="1"/> +<wire x1="39.0398" y1="5.842" x2="39.6748" y2="6.477" width="0.2032" layer="1"/> +<wire x1="14.0843" y1="-0.5923" x2="14.0843" y2="0.2081625" width="0.2032" layer="1"/> +<wire x1="26.7433375" y1="2.2225" x2="32.7025" y2="2.2225" width="0.2032" layer="1"/> +<wire x1="25.27791875" y1="0.75708125" x2="26.7433375" y2="2.2225" width="0.2032" layer="1"/> +<wire x1="14.0843" y1="0.2081625" x2="14.4878375" y2="0.6117" width="0.2032" layer="1"/> +<wire x1="25.15091875" y1="0.63008125" x2="25.27791875" y2="0.75708125" width="0.2032" layer="1"/> +<wire x1="25.02391875" y1="0.6117" x2="25.1325375" y2="0.6117" width="0.2032" layer="1"/> +<wire x1="8.8646" y1="23.0886" x2="11.4046" y2="25.6286" width="0.2032" layer="1"/> +<wire x1="32.7025" y1="2.2225" x2="36.322" y2="5.842" width="0.2032" layer="1"/> +<wire x1="3.1242" y1="17.23824375" x2="3.1242" y2="10.56515625" width="0.2032" layer="1"/> +<wire x1="3.1242" y1="10.56515625" x2="14.0868" y2="-0.39744375" width="0.2032" layer="1"/> +<wire x1="36.322" y1="5.842" x2="36.6268" y2="5.842" width="0.2032" layer="1"/> +<wire x1="14.0868" y1="-0.39744375" x2="14.0868" y2="-0.5948" width="0.2032" layer="1"/> +<wire x1="14.4878375" y1="0.6117" x2="25.02391875" y2="0.6117" width="0.2032" layer="1"/> +<wire x1="25.1325375" y1="0.6117" x2="25.15091875" y2="0.63008125" width="0.2032" layer="1"/> +<wire x1="14.0868" y1="-0.5948" x2="14.0843" y2="-0.5923" width="0.2032" layer="1"/> +<wire x1="8.8646" y1="19.7866" x2="8.8646" y2="23.0886" width="0" layer="19" extent="1-1"/> +</signal> +<signal name="V_BIAS"> +<contactref element="IC2" pad="4"/> +<contactref element="IC2" pad="1"/> +<contactref element="R5" pad="1"/> +<wire x1="11.5982" y1="5.5487375" x2="13.6273375" y2="3.5196" width="0.2032" layer="1"/> +<wire x1="17.7020625" y1="3.175" x2="18.034" y2="3.175" width="0.2032" layer="1"/> +<wire x1="10.9852625" y1="8.5454" x2="11.5982" y2="7.9324625" width="0.2032" layer="1"/> +<wire x1="11.5982" y1="7.9324625" x2="11.5982" y2="5.5487375" width="0.2032" layer="1"/> +<wire x1="13.6273375" y1="3.5196" x2="17.3574625" y2="3.5196" width="0.2032" layer="1"/> +<wire x1="17.3574625" y1="3.5196" x2="17.7020625" y2="3.175" width="0.2032" layer="1"/> +<wire x1="9.0941375" y1="8.5454" x2="4.8641" y2="12.7754375" width="0.2032" layer="1"/> +<wire x1="9.0941375" y1="8.5454" x2="10.9852625" y2="8.5454" width="0.2032" layer="1"/> +<wire x1="18.034" y1="3.175" x2="18.5928" y2="2.6162" width="0.2032" layer="1"/> +<wire x1="5.34609375" y1="15.621" x2="6.3246" y2="15.621" width="0.2032" layer="1"/> +<wire x1="6.3246" y1="15.621" x2="6.7666" y2="16.063" width="0.2032" layer="1"/> +<wire x1="6.7666" y1="16.063" x2="6.7666" y2="16.927" width="0.2032" layer="1"/> +<wire x1="4.8641" y1="12.7754375" x2="4.8641" y2="14.3125" width="0.2032" layer="1"/> +<wire x1="4.8641" y1="14.3125" x2="4.8666" y2="14.315" width="0.2032" layer="1"/> +<wire x1="4.8666" y1="14.315" x2="4.8666" y2="15.14150625" width="0.2032" layer="1"/> +<wire x1="4.8666" y1="15.14150625" x2="5.34609375" y2="15.621" width="0.2032" layer="1"/> +</signal> +<signal name="N$12"> +<contactref element="IC2" pad="3"/> +<contactref element="R8" pad="1"/> +<contactref element="R9" pad="2"/> +<contactref element="C7" pad="2"/> +<wire x1="10.135" y1="11.071" x2="10.2078" y2="10.9982" width="0.2032" layer="1"/> +<wire x1="13.0298" y1="17.145" x2="13.0298" y2="16.9918" width="0.2032" layer="1"/> +<wire x1="13.0298" y1="16.9918" x2="10.1858" y2="14.1478" width="0.2032" layer="1"/> +<wire x1="10.1858" y1="13.7668" x2="10.1858" y2="13.6144" width="0.2032" layer="1"/> +<wire x1="10.1858" y1="13.6144" x2="10.1858" y2="11.1218" width="0.2032" layer="1"/> +<wire x1="10.1858" y1="11.1218" x2="10.135" y2="11.071" width="0.2032" layer="1"/> +<wire x1="6.7666" y1="14.315" x2="9.4852" y2="14.315" width="0.2032" layer="1"/> +<wire x1="9.4852" y1="14.315" x2="10.1858" y2="13.6144" width="0.2032" layer="1"/> +<wire x1="10.1858" y1="14.1478" x2="10.1858" y2="13.7668" width="0.2032" layer="1"/> +</signal> +<signal name="+3V3"> +<contactref element="U$7" pad="9"/> +<contactref element="U$7" pad="39"/> +<contactref element="U$7" pad="19"/> +<contactref element="U$7" pad="31"/> +<contactref element="C1" pad="2"/> +<contactref element="C2" pad="2"/> +<contactref element="IC3" pad="1"/> +<contactref element="IC2" pad="5"/> +<contactref element="IC1" pad="5"/> +<contactref element="R8" pad="2"/> +<contactref element="U$3" pad="2"/> +<wire x1="22.936" y1="25.832" x2="22.936" y2="21.1205" width="0.2032" layer="1"/> +<wire x1="22.936" y1="21.1205" x2="22.936" y2="17.822" width="0.2032" layer="1"/> +<wire x1="22.7459" y1="26.0221" x2="21.336" y2="27.432" width="0.2032" layer="1"/> +<wire x1="22.7459" y1="26.0221" x2="22.936" y2="25.832" width="0.2032" layer="1"/> +<wire x1="35.938" y1="31.6992" x2="35.938" y2="34.1122" width="0.2032" layer="1"/> +<contactref element="R10" pad="2"/> +<wire x1="4.8666" y1="16.59334375" x2="4.8666" y2="16.927" width="0.2032" layer="1"/> +<wire x1="4.8666" y1="16.59334375" x2="3.9141" y2="15.64084375" width="0.2032" layer="1"/> +<contactref element="U$6" pad="1"/> +<contactref element="U$1" pad="1"/> +<wire x1="27.4066" y1="35.0774" x2="27.6098" y2="34.8742" width="0.2032" layer="1"/> +<wire x1="27.4066" y1="35.0774" x2="27.4066" y2="36.829" width="0.2032" layer="1"/> +<wire x1="21.336" y1="27.432" x2="21.336" y2="29.422" width="0.2032" layer="1"/> +<wire x1="15.536" y1="21.222" x2="22.8345" y2="21.222" width="0.2032" layer="1"/> +<wire x1="22.8345" y1="21.222" x2="22.936" y2="21.1205" width="0.2032" layer="1"/> +<wire x1="27.6098" y1="34.8742" x2="35.7348" y2="34.8742" width="0.2032" layer="1"/> +<wire x1="36.4968" y1="34.1122" x2="35.7348" y2="34.8742" width="0.2032" layer="1"/> +<wire x1="15.5359" y1="21.2221" x2="13.99425625" y2="21.2221" width="0.2032" layer="1"/> +<wire x1="15.536" y1="21.222" x2="15.5359" y2="21.2221" width="0.2032" layer="1"/> +<wire x1="4.8666" y1="17.22914375" x2="5.84715625" y2="18.2097" width="0.2032" layer="1"/> +<wire x1="5.84715625" y1="18.2097" x2="8.636" y2="18.2097" width="0.2032" layer="1"/> +<wire x1="8.636" y1="18.2097" x2="9.1211" y2="18.2097" width="0.2032" layer="1"/> +<wire x1="9.1211" y1="18.2097" x2="10.1858" y2="17.145" width="0.2032" layer="1"/> +<wire x1="4.8666" y1="16.927" x2="4.8666" y2="17.22914375" width="0.2032" layer="1"/> +<wire x1="35.938" y1="34.1122" x2="36.4968" y2="34.1122" width="0.2032" layer="1"/> +<contactref element="R11" pad="1"/> +<contactref element="C12" pad="2"/> +<wire x1="27.136" y1="26.022" x2="23.126" y2="26.022" width="0.2032" layer="1"/> +<wire x1="23.126" y1="26.022" x2="22.936" y2="25.832" width="0.2032" layer="1"/> +<contactref element="C6" pad="2"/> +<wire x1="13.99425625" y1="21.2221" x2="13.99425625" y2="21.2221" width="0.2032" layer="1"/> +<wire x1="13.99425625" y1="21.2221" x2="13.4273" y2="21.2221" width="0.2032" layer="1"/> +<wire x1="13.4273" y1="21.2221" x2="12.2428" y2="20.0376" width="0.2032" layer="1"/> +<wire x1="12.2428" y1="20.0376" x2="12.2428" y2="19.202" width="0.2032" layer="1"/> +<wire x1="12.2428" y1="19.202" x2="10.1858" y2="17.145" width="0.2032" layer="1"/> +<contactref element="C10" pad="2"/> +<contactref element="U$4" pad="1"/> +<wire x1="24.3300375" y1="15.282" x2="25.3296" y2="15.282" width="0.2032" layer="1"/> +<wire x1="25.3296" y1="15.282" x2="25.3716" y2="15.24" width="0.2032" layer="1"/> +<wire x1="22.936" y1="17.822" x2="22.936" y2="16.6760375" width="0.2032" layer="1"/> +<wire x1="22.936" y1="16.6760375" x2="24.3300375" y2="15.282" width="0.2032" layer="1"/> +<wire x1="25.3716" y1="15.24" x2="25.527" y2="15.0846" width="0.2032" layer="1"/> +<wire x1="25.527" y1="15.0846" x2="25.527" y2="12.3952" width="0.2032" layer="1"/> +<wire x1="27.136" y1="26.022" x2="29.4994" y2="26.022" width="0.2032" layer="1"/> +<wire x1="29.4994" y1="26.022" x2="30.1468" y2="25.3746" width="0.2032" layer="1"/> +<wire x1="30.1468" y1="25.3746" x2="31.6962" y2="26.924" width="0.2032" layer="1"/> +<wire x1="31.6962" y1="26.924" x2="33.2486" y2="26.924" width="0.2032" layer="1"/> +<wire x1="33.2486" y1="26.924" x2="36.1036" y2="29.779" width="0.2032" layer="1"/> +<wire x1="36.1036" y1="29.779" x2="36.492" y2="29.779" width="0.2032" layer="1"/> +<contactref element="C9" pad="2"/> +<wire x1="27.813" y1="6.9088" x2="27.7876" y2="6.8834" width="0.2032" layer="1"/> +<wire x1="36.1666" y1="34.1122" x2="39.0652" y2="37.0108" width="0.2032" layer="1"/> +<wire x1="36.492" y1="29.779" x2="35.938" y2="30.333" width="0.2032" layer="1"/> +<wire x1="35.938" y1="30.333" x2="35.938" y2="31.6992" width="0.2032" layer="1"/> +<wire x1="35.938" y1="34.1122" x2="36.1666" y2="34.1122" width="0.2032" layer="1"/> +<wire x1="39.0652" y1="37.0108" x2="39.0652" y2="37.1856" width="0.2032" layer="1"/> +<wire x1="39.0652" y1="37.1856" x2="38.989" y2="37.2618" width="0.2032" layer="1"/> +<wire x1="25.5778" y1="6.8834" x2="25.5778" y2="9.6774" width="0.2032" layer="1"/> +<wire x1="25.5778" y1="9.6774" x2="25.5778" y2="12.3444" width="0.2032" layer="1"/> +<wire x1="25.5778" y1="12.3444" x2="25.527" y2="12.3952" width="0.2032" layer="1"/> +<wire x1="25.5778" y1="6.8834" x2="27.7876" y2="6.8834" width="0.2032" layer="1"/> +<wire x1="27.7876" y1="6.8834" x2="27.813" y2="6.9088" width="0.2032" layer="1"/> +<wire x1="27.7876" y1="6.8834" x2="27.7876" y2="9.6774" width="0.2032" layer="1"/> +<wire x1="27.7876" y1="9.6774" x2="27.813" y2="9.7028" width="0.2032" layer="1"/> +<wire x1="3.9141" y1="15.64084375" x2="3.9141" y2="12.3389" width="0.2032" layer="1"/> +<wire x1="9.395" y1="6.858" x2="3.9141" y2="12.3389" width="0.2032" layer="1"/> +<wire x1="14.0106" y1="2.0172" x2="9.9824" y2="6.0454" width="0.2032" layer="1"/> +<wire x1="14.0868" y1="2.0172" x2="14.0106" y2="2.0172" width="0.2032" layer="1"/> +<contactref element="C5" pad="2"/> +<wire x1="9.9822" y1="6.7564" x2="9.8806" y2="6.858" width="0.2032" layer="1"/> +<wire x1="9.8806" y1="6.858" x2="9.395" y2="6.858" width="0.2032" layer="1"/> +<wire x1="9.9822" y1="6.7564" x2="9.9824" y2="6.7562" width="0.2032" layer="1"/> +<wire x1="9.9824" y1="6.7562" x2="9.9824" y2="6.0454" width="0.2032" layer="1"/> +</signal> +<signal name="N$17"> +<contactref element="R2" pad="2"/> +<contactref element="U$1" pad="2"/> +<wire x1="19.9898" y1="9.6774" x2="22.2758" y2="9.6774" width="0.2032" layer="1"/> +</signal> +<signal name="N$18"> +<contactref element="R1" pad="2"/> +<contactref element="U$6" pad="2"/> +<wire x1="19.9898" y1="6.8834" x2="22.2758" y2="6.8834" width="0.2032" layer="1"/> +</signal> +<signal name="N$15"> +<contactref element="U$7" pad="27"/> +<contactref element="R12" pad="1"/> +<wire x1="27.136" y1="22.822" x2="27.821059375" y2="22.822" width="0.2032" layer="1"/> +<wire x1="27.821059375" y1="22.822" x2="29.845" y2="21.98365625" width="0.2032" layer="1" curve="-45.00005"/> +<wire x1="29.845" y1="21.98365625" x2="29.845" y2="21.6408" width="0.2032" layer="1"/> +</signal> +<signal name="N$16"> +<contactref element="U$7" pad="26"/> +<contactref element="R13" pad="1"/> +<wire x1="27.1361" y1="22.0221" x2="27.9146" y2="22.0221" width="0.2032" layer="1"/> +<wire x1="27.9146" y1="22.0221" x2="28.575" y2="21.3617" width="0.2032" layer="1" curve="-90"/> +<wire x1="28.575" y1="21.3617" x2="28.575" y2="20.870278125" width="0.2032" layer="1"/> +<wire x1="28.575" y1="20.870278125" x2="28.982065625" y2="19.887534375" width="0.2032" layer="1" curve="45"/> +<wire x1="29.845" y1="19.0246" x2="28.982065625" y2="19.887534375" width="0.2032" layer="1"/> +<wire x1="27.136" y1="22.022" x2="27.1361" y2="22.0221" width="0.2032" layer="1"/> +<wire x1="29.845" y1="18.8468" x2="29.845" y2="19.0246" width="0.2032" layer="1"/> +</signal> +<signal name="N$13"> +<contactref element="U$7" pad="16"/> +<contactref element="R2" pad="1"/> +<wire x1="20.5361" y1="17.8219" x2="20.536" y2="17.822" width="0.2032" layer="1"/> +<wire x1="16.6878" y1="9.6774" x2="17.8816" y2="10.8712" width="0.2032" layer="1"/> +<wire x1="17.8816" y1="10.8712" x2="17.8816" y2="13.9543125" width="0.2032" layer="1"/> +<wire x1="17.8816" y1="13.9543125" x2="18.7481875" y2="14.8209" width="0.2032" layer="1"/> +<wire x1="18.7481875" y1="14.8209" x2="20.0152" y2="14.8209" width="0.2032" layer="1"/> +<wire x1="20.0152" y1="14.8209" x2="20.5361" y2="15.3418" width="0.2032" layer="1"/> +<wire x1="20.5361" y1="15.3418" x2="20.5361" y2="17.8219" width="0.2032" layer="1"/> +</signal> +<signal name="IN+"> +<contactref element="J4" pad="1"/> +<contactref element="J6" pad="3"/> +<contactref element="C14" pad="1"/> +<wire x1="21.9329" y1="2.6162" x2="21.6408" y2="2.6162" width="0.2032" layer="1"/> +<wire x1="21.9329" y1="2.6162" x2="23.1648" y2="3.8481" width="0.2032" layer="1"/> +<wire x1="36.6268" y1="11.557" x2="39.6748" y2="11.557" width="0.2032" layer="1"/> +<wire x1="34.1757" y1="6.5151" x2="34.1757" y2="9.2992625" width="0.2032" layer="1"/> +<wire x1="34.1757" y1="9.2992625" x2="36.4334375" y2="11.557" width="0.2032" layer="1"/> +<wire x1="31.5087" y1="3.8481" x2="34.1757" y2="6.5151" width="0.2032" layer="1"/> +<wire x1="23.1648" y1="3.8481" x2="31.5087" y2="3.8481" width="0.2032" layer="1"/> +<wire x1="36.4334375" y1="11.557" x2="36.6268" y2="11.557" width="0.2032" layer="1"/> +</signal> +<signal name="PA0"> +<contactref element="J2" pad="1"/> +<contactref element="U$7" pad="40"/> +<wire x1="13.97" y1="38.2399" x2="20.5361" y2="31.6738" width="0.2032" layer="1"/> +<wire x1="20.5361" y1="31.6738" x2="20.5361" y2="29.4221" width="0.2032" layer="1"/> +<wire x1="11.303" y1="43.9166" x2="13.97" y2="41.2496" width="0.2032" layer="1"/> +<wire x1="13.97" y1="41.2496" x2="13.97" y2="38.2399" width="0.2032" layer="1"/> +<wire x1="20.5361" y1="29.4221" x2="20.536" y2="29.422" width="0.2032" layer="1"/> +</signal> +<signal name="PA1"> +<contactref element="J2" pad="2"/> +<contactref element="U$7" pad="41"/> +<wire x1="19.7361" y1="29.4221" x2="19.736" y2="29.422" width="0.2032" layer="1"/> +<wire x1="11.303" y1="41.3766" x2="13.2588" y2="39.4208" width="0.2032" layer="1"/> +<wire x1="13.2588" y1="39.4208" x2="13.2588" y2="37.91555" width="0.2032" layer="1"/> +<wire x1="13.2588" y1="37.91555" x2="19.7361" y2="31.43825" width="0.2032" layer="1"/> +<wire x1="19.7361" y1="31.43825" x2="19.7361" y2="29.4221" width="0.2032" layer="1"/> +</signal> +<signal name="PA2"> +<contactref element="J2" pad="3"/> +<contactref element="U$7" pad="42"/> +<wire x1="18.9361" y1="29.4221" x2="18.9361" y2="31.2035" width="0.2032" layer="1"/> +<wire x1="11.303" y1="38.8366" x2="18.9361" y2="31.2035" width="0.2032" layer="1"/> +<wire x1="18.936" y1="29.422" x2="18.9361" y2="29.4221" width="0.2032" layer="1"/> +</signal> +<signal name="PA3"> +<contactref element="J2" pad="4"/> +<contactref element="U$7" pad="43"/> +<wire x1="18.1361" y1="30.48114375" x2="12.33724375" y2="36.28" width="0.2032" layer="1"/> +<wire x1="18.1361" y1="29.4221" x2="18.1361" y2="30.48114375" width="0.2032" layer="1"/> +<wire x1="11.3196" y1="36.28" x2="11.303" y2="36.2966" width="0.2032" layer="1"/> +<wire x1="12.33724375" y1="36.28" x2="11.3196" y2="36.28" width="0.2032" layer="1"/> +<wire x1="18.136" y1="29.422" x2="18.1361" y2="29.4221" width="0.2032" layer="1"/> +</signal> +<signal name="PA4"> +<contactref element="J2" pad="5"/> +<contactref element="U$7" pad="44"/> +<wire x1="11.303" y1="33.7566" x2="11.345" y2="33.7146" width="0.2032" layer="1"/> +<wire x1="11.345" y1="33.7146" x2="13.7038" y2="33.7146" width="0.2032" layer="1"/> +<wire x1="13.7038" y1="33.7146" x2="17.336" y2="30.0824" width="0.2032" layer="1"/> +<wire x1="17.336" y1="30.0824" x2="17.336" y2="29.422" width="0.2032" layer="1"/> +</signal> +<signal name="PA5"> +<contactref element="J2" pad="6"/> +<contactref element="U$7" pad="1"/> +<wire x1="15.155" y1="27.622" x2="11.5604" y2="31.2166" width="0.2032" layer="1"/> +<wire x1="11.5604" y1="31.2166" x2="11.303" y2="31.2166" width="0.2032" layer="1"/> +<wire x1="15.536" y1="27.622" x2="15.155" y2="27.622" width="0.2032" layer="1"/> +</signal> +<signal name="PA6"> +<contactref element="J2" pad="7"/> +<contactref element="U$7" pad="2"/> +<wire x1="13.1576" y1="26.822" x2="11.303" y2="28.6766" width="0.2032" layer="1"/> +<wire x1="13.1576" y1="26.822" x2="15.536" y2="26.822" width="0.2032" layer="1"/> +</signal> +<signal name="N$3"> +<contactref element="IC1" pad="3"/> +<contactref element="R5" pad="2"/> +<wire x1="15.9868" y1="-0.5948" x2="18.5018" y2="-0.5948" width="0.2032" layer="1"/> +<wire x1="18.5018" y1="-0.5948" x2="18.5928" y2="-0.6858" width="0.2032" layer="1"/> +<contactref element="C14" pad="2"/> +<wire x1="18.5928" y1="-0.6858" x2="21.6408" y2="-0.6858" width="0.2032" layer="1"/> +</signal> +<signal name="R_F"> +<contactref element="R6" pad="1"/> +<contactref element="IC1" pad="4"/> +<contactref element="R4" pad="2"/> +<wire x1="15.9868" y1="1.8284375" x2="16.07041875" y2="1.74481875" width="0.2032" layer="1"/> +<wire x1="16.07041875" y1="1.74481875" x2="16.19741875" y2="1.61781875" width="0.2032" layer="1"/> +<wire x1="16.19741875" y1="1.61781875" x2="16.4436375" y2="1.3716" width="0.2032" layer="1"/> +<wire x1="16.4436375" y1="1.3716" x2="23.2156" y2="1.3716" width="0.2032" layer="1"/> +<wire x1="23.2156" y1="1.3716" x2="24.3586" y2="2.5146" width="0.2032" layer="1"/> +<wire x1="15.9868" y1="2.0172" x2="15.9868" y2="1.8284375" width="0.2032" layer="1"/> +<contactref element="J6" pad="2"/> +<wire x1="36.6268" y1="9.144" x2="36.7538" y2="9.144" width="0.2032" layer="1"/> +<wire x1="36.7538" y1="9.144" x2="39.5478" y2="9.144" width="0.2032" layer="1"/> +<wire x1="39.5478" y1="9.144" x2="39.6748" y2="9.017" width="0.2032" layer="1"/> +<wire x1="36.7538" y1="9.017" x2="36.7538" y2="9.144" width="0.2032" layer="1"/> +<wire x1="24.3586" y1="2.5146" x2="24.9047" y2="3.0607" width="0.2032" layer="1"/> +<wire x1="24.9047" y1="3.0607" x2="32.131" y2="3.0607" width="0.2032" layer="1"/> +<wire x1="32.131" y1="3.0607" x2="34.8615" y2="5.7912" width="0.2032" layer="1"/> +<wire x1="34.8615" y1="7.6990625" x2="36.1794375" y2="9.017" width="0.2032" layer="1"/> +<wire x1="34.8615" y1="5.7912" x2="34.8615" y2="7.6990625" width="0.2032" layer="1"/> +<wire x1="36.1794375" y1="9.017" x2="36.7538" y2="9.017" width="0.2032" layer="1"/> +</signal> +<signal name="N$4"> +<contactref element="R4" pad="1"/> +<contactref element="C13" pad="2"/> +<wire x1="24.3586" y1="-0.7874" x2="24.8412" y2="-0.3048" width="0.2032" layer="1"/> +<wire x1="24.8412" y1="-0.3048" x2="27.1018" y2="-0.3048" width="0.2032" layer="1"/> +</signal> +<signal name="N$8"> +<contactref element="R1" pad="1"/> +<contactref element="U$7" pad="17"/> +<wire x1="18.669" y1="13.5791625" x2="19.1233375" y2="14.0335" width="0.2032" layer="1"/> +<wire x1="21.336" y1="14.9253625" x2="21.336" y2="17.822" width="0.2032" layer="1"/> +<wire x1="20.4441375" y1="14.0335" x2="21.336" y2="14.9253625" width="0.2032" layer="1"/> +<wire x1="19.1233375" y1="14.0335" x2="20.4441375" y2="14.0335" width="0.2032" layer="1"/> +<wire x1="16.6878" y1="6.8834" x2="18.669" y2="8.8646" width="0.2032" layer="1"/> +<wire x1="18.669" y1="8.8646" x2="18.669" y2="13.5791625" width="0.2032" layer="1"/> +</signal> +<signal name="N$9"> +<contactref element="R3" pad="2"/> +<contactref element="U$4" pad="2"/> +<wire x1="19.939" y1="12.3952" x2="22.225" y2="12.3952" width="0.2032" layer="1"/> +</signal> +<signal name="N$10"> +<contactref element="R3" pad="1"/> +<contactref element="U$7" pad="15"/> +<wire x1="19.736" y1="17.822" x2="19.736" y2="16.053" width="0.2032" layer="1"/> +<wire x1="19.736" y1="16.053" x2="19.2405" y2="15.5575" width="0.2032" layer="1"/> +<wire x1="19.2405" y1="15.5575" x2="18.3476375" y2="15.5575" width="0.2032" layer="1"/> +<wire x1="16.7132" y1="12.4714" x2="16.637" y2="12.3952" width="0.2032" layer="1"/> +<wire x1="18.3476375" y1="15.5575" x2="16.7132" y2="13.9230625" width="0.2032" layer="1"/> +<wire x1="16.7132" y1="13.9230625" x2="16.7132" y2="12.4714" width="0.2032" layer="1"/> +</signal> +</signals> +<mfgpreviewcolors> +<mfgpreviewcolor name="soldermaskcolor" color="0xC8008000"/> +<mfgpreviewcolor name="silkscreencolor" color="0xFFFEFEFE"/> +<mfgpreviewcolor name="backgroundcolor" color="0xFF282828"/> +<mfgpreviewcolor name="coppercolor" color="0xFFFFBF00"/> +<mfgpreviewcolor name="substratecolor" color="0xFF786E46"/> +</mfgpreviewcolors> +</board> +</drawing> +<compatibility> +<note version="8.2" severity="warning"> +Since Version 8.2, EAGLE supports online libraries. The ids +of those online libraries will not be understood (or retained) +with this version. +</note> +<note version="8.3" severity="warning"> +Since Version 8.3, EAGLE supports Fusion synchronisation. +This feature will not be available in this version and saving +the document will break the link to the Fusion PCB feature. +</note> +<note version="8.3" severity="warning"> +Since Version 8.3, EAGLE supports URNs for individual library +assets (packages, symbols, and devices). The URNs of those assets +will not be understood (or retained) with this version. +</note> +<note version="8.3" severity="warning"> +Since Version 8.3, EAGLE supports the association of 3D packages +with devices in libraries, schematics, and board files. Those 3D +packages will not be understood (or retained) with this version. +</note> +</compatibility> +</eagle> diff --git a/static/designs/14_audio_interface_2.sch b/static/designs/14_audio_interface_2.sch new file mode 100644 index 0000000000000000000000000000000000000000..8150ce79c0b884ac9dcf3b8733c0de804b871b2b --- /dev/null +++ b/static/designs/14_audio_interface_2.sch @@ -0,0 +1,5977 @@ +<?xml version="1.0" encoding="utf-8"?> +<!DOCTYPE eagle SYSTEM "eagle.dtd"> +<eagle version="9.1.3"> +<drawing> +<settings> +<setting alwaysvectorfont="no"/> +<setting verticaltext="up"/> +</settings> +<grid distance="0.1" unitdist="inch" unit="inch" style="lines" multiple="1" display="no" altdistance="0.01" altunitdist="inch" altunit="inch"/> +<layers> +<layer number="1" name="Top" color="4" fill="1" visible="no" active="no"/> +<layer number="2" name="Route2" color="1" fill="3" visible="no" active="no"/> +<layer number="3" name="Route3" color="4" fill="3" visible="no" active="no"/> +<layer number="4" name="Route4" color="1" fill="4" visible="no" active="no"/> +<layer number="5" name="Route5" color="4" fill="4" visible="no" active="no"/> +<layer number="6" name="Route6" color="1" fill="8" visible="no" active="no"/> +<layer number="7" name="Route7" color="4" fill="8" visible="no" active="no"/> +<layer number="8" name="Route8" color="1" fill="2" visible="no" active="no"/> +<layer number="9" name="Route9" color="4" fill="2" visible="no" active="no"/> +<layer number="10" name="Route10" color="1" fill="7" visible="no" active="no"/> +<layer number="11" name="Route11" color="4" fill="7" visible="no" active="no"/> +<layer number="12" name="Route12" color="1" fill="5" visible="no" active="no"/> +<layer number="13" name="Route13" color="4" fill="5" visible="no" active="no"/> +<layer number="14" name="Route14" color="1" fill="6" visible="no" active="no"/> +<layer number="15" name="Route15" color="4" fill="6" visible="no" active="no"/> +<layer number="16" name="Bottom" color="1" fill="1" visible="no" active="no"/> +<layer number="17" name="Pads" color="2" fill="1" visible="no" active="no"/> +<layer number="18" name="Vias" color="2" fill="1" visible="no" active="no"/> +<layer number="19" name="Unrouted" color="6" fill="1" visible="no" active="no"/> +<layer number="20" name="Dimension" color="15" fill="1" visible="no" active="no"/> +<layer number="21" name="tPlace" color="7" fill="1" visible="no" active="no"/> +<layer number="22" name="bPlace" color="7" fill="1" visible="no" active="no"/> +<layer number="23" name="tOrigins" color="15" fill="1" visible="no" active="no"/> +<layer number="24" name="bOrigins" color="15" fill="1" visible="no" active="no"/> +<layer number="25" name="tNames" color="7" fill="1" visible="no" active="no"/> +<layer number="26" name="bNames" color="7" fill="1" visible="no" active="no"/> +<layer number="27" name="tValues" color="7" fill="1" visible="no" active="no"/> +<layer number="28" name="bValues" color="7" fill="1" visible="no" active="no"/> +<layer number="29" name="tStop" color="7" fill="3" visible="no" active="no"/> +<layer number="30" name="bStop" color="7" fill="6" visible="no" active="no"/> +<layer number="31" name="tCream" color="7" fill="4" visible="no" active="no"/> +<layer number="32" name="bCream" color="7" fill="5" visible="no" active="no"/> +<layer number="33" name="tFinish" color="6" fill="3" visible="no" active="no"/> +<layer number="34" name="bFinish" color="6" fill="6" visible="no" active="no"/> +<layer number="35" name="tGlue" color="7" fill="4" visible="no" active="no"/> +<layer number="36" name="bGlue" color="7" fill="5" visible="no" active="no"/> +<layer number="37" name="tTest" color="7" fill="1" visible="no" active="no"/> +<layer number="38" name="bTest" color="7" fill="1" visible="no" active="no"/> +<layer number="39" name="tKeepout" color="4" fill="11" visible="no" active="no"/> +<layer number="40" name="bKeepout" color="1" fill="11" visible="no" active="no"/> +<layer number="41" name="tRestrict" color="4" fill="10" visible="no" active="no"/> +<layer number="42" name="bRestrict" color="1" fill="10" visible="no" active="no"/> +<layer number="43" name="vRestrict" color="2" fill="10" visible="no" active="no"/> +<layer number="44" name="Drills" color="7" fill="1" visible="no" active="no"/> +<layer number="45" name="Holes" color="7" fill="1" visible="no" active="no"/> +<layer number="46" name="Milling" color="3" fill="1" visible="no" active="no"/> +<layer number="47" name="Measures" color="7" fill="1" visible="no" active="no"/> +<layer number="48" name="Document" color="7" fill="1" visible="no" active="no"/> +<layer number="49" name="Reference" color="7" fill="1" visible="no" active="no"/> +<layer number="50" name="dxf" color="7" fill="1" visible="no" active="no"/> +<layer number="51" name="tDocu" color="7" fill="1" visible="no" active="no"/> +<layer number="52" name="bDocu" color="7" fill="1" visible="no" active="no"/> +<layer number="53" name="tGND_GNDA" color="7" fill="9" visible="no" active="no"/> +<layer number="54" name="bGND_GNDA" color="1" fill="9" visible="no" active="no"/> +<layer number="56" name="wert" color="7" fill="1" visible="no" active="no"/> +<layer number="57" name="tCAD" color="7" fill="1" visible="no" active="no"/> +<layer number="59" name="tCarbon" color="7" fill="1" visible="no" active="no"/> +<layer number="60" name="bCarbon" color="7" fill="1" visible="no" active="no"/> +<layer number="88" name="SimResults" color="9" fill="1" visible="yes" active="yes"/> +<layer number="89" name="SimProbes" color="9" fill="1" visible="yes" active="yes"/> +<layer number="90" name="Modules" color="5" fill="1" visible="yes" active="yes"/> +<layer number="91" name="Nets" color="2" fill="1" visible="yes" active="yes"/> +<layer number="92" name="Busses" color="1" fill="1" visible="yes" active="yes"/> +<layer number="93" name="Pins" color="2" fill="1" visible="no" active="yes"/> +<layer number="94" name="Symbols" color="4" fill="1" visible="yes" active="yes"/> +<layer number="95" name="Names" color="7" fill="1" visible="yes" active="yes"/> +<layer number="96" name="Values" color="7" fill="1" visible="yes" active="yes"/> +<layer number="97" name="Info" color="7" fill="1" visible="yes" active="yes"/> +<layer number="98" name="Guide" color="6" fill="1" visible="yes" active="yes"/> +<layer number="99" name="SpiceOrder" color="7" fill="1" visible="yes" active="yes"/> +<layer number="100" name="Muster" color="7" fill="1" visible="no" active="no"/> +<layer number="101" name="Patch_Top" color="12" fill="4" visible="no" active="yes"/> +<layer number="102" name="Vscore" color="7" fill="1" visible="no" active="yes"/> +<layer number="103" name="tMap" color="7" fill="1" visible="no" active="yes"/> +<layer number="104" name="Name" color="7" fill="1" visible="no" active="yes"/> +<layer number="105" name="tPlate" color="7" fill="1" visible="no" active="yes"/> +<layer number="106" name="bPlate" color="7" fill="1" visible="no" active="yes"/> +<layer number="107" name="Crop" color="7" fill="1" visible="no" active="yes"/> +<layer number="108" name="tplace-old" color="10" fill="1" visible="no" active="yes"/> +<layer number="109" name="ref-old" color="11" fill="1" visible="no" active="yes"/> +<layer number="110" name="fp0" color="7" fill="1" visible="no" active="yes"/> +<layer number="111" name="LPC17xx" color="7" fill="1" visible="no" active="yes"/> +<layer number="112" name="tSilk" color="7" fill="1" visible="no" active="yes"/> +<layer number="113" name="IDFDebug" color="7" fill="1" visible="no" active="yes"/> +<layer number="114" name="Badge_Outline" color="7" fill="1" visible="no" active="yes"/> +<layer number="115" name="ReferenceISLANDS" color="7" fill="1" visible="no" active="yes"/> +<layer number="116" name="Patch_BOT" color="9" fill="4" visible="no" active="yes"/> +<layer number="118" name="Rect_Pads" color="7" fill="1" visible="no" active="yes"/> +<layer number="121" name="_tsilk" color="7" fill="1" visible="no" active="yes"/> +<layer number="122" name="_bsilk" color="7" fill="1" visible="no" active="yes"/> +<layer number="123" name="tTestmark" color="7" fill="1" visible="no" active="yes"/> +<layer number="124" name="bTestmark" color="7" fill="1" visible="no" active="yes"/> +<layer number="125" name="_tNames" color="7" fill="1" visible="no" active="yes"/> +<layer number="126" name="_bNames" color="7" fill="1" visible="no" active="yes"/> +<layer number="127" name="_tValues" color="7" fill="1" visible="no" active="yes"/> +<layer number="128" name="_bValues" color="7" fill="1" visible="no" active="yes"/> +<layer number="129" name="Mask" color="7" fill="1" visible="no" active="yes"/> +<layer number="131" name="tAdjust" color="7" fill="1" visible="no" active="yes"/> +<layer number="132" name="bAdjust" color="7" fill="1" visible="no" active="yes"/> +<layer number="144" name="Drill_legend" color="7" fill="1" visible="no" active="yes"/> +<layer number="150" name="Notes" color="7" fill="1" visible="no" active="yes"/> +<layer number="151" name="HeatSink" color="7" fill="1" visible="no" active="yes"/> +<layer number="152" name="_bDocu" color="7" fill="1" visible="no" active="yes"/> +<layer number="153" name="FabDoc1" color="7" fill="1" visible="no" active="yes"/> +<layer number="154" name="FabDoc2" color="7" fill="1" visible="no" active="yes"/> +<layer number="155" name="FabDoc3" color="7" fill="1" visible="no" active="yes"/> +<layer number="199" name="Contour" color="7" fill="1" visible="no" active="yes"/> +<layer number="200" name="200bmp" color="1" fill="10" visible="no" active="yes"/> +<layer number="201" name="201bmp" color="2" fill="10" visible="no" active="yes"/> +<layer number="202" name="202bmp" color="3" fill="10" visible="no" active="yes"/> +<layer number="203" name="203bmp" color="4" fill="10" visible="no" active="yes"/> +<layer number="204" name="204bmp" color="5" fill="10" visible="no" active="yes"/> +<layer number="205" name="205bmp" color="6" fill="10" visible="no" active="yes"/> +<layer number="206" name="206bmp" color="7" fill="10" visible="no" active="yes"/> +<layer number="207" name="207bmp" color="8" fill="10" visible="no" active="yes"/> +<layer number="208" name="208bmp" color="9" fill="10" visible="no" active="yes"/> +<layer number="209" name="209bmp" color="7" fill="1" visible="no" active="yes"/> +<layer number="210" name="210bmp" color="7" fill="1" visible="no" active="yes"/> +<layer number="211" name="211bmp" color="7" fill="1" visible="no" active="yes"/> +<layer number="212" name="212bmp" color="7" fill="1" visible="no" active="yes"/> +<layer number="213" name="213bmp" color="7" fill="1" visible="no" active="yes"/> +<layer number="214" name="214bmp" color="7" fill="1" visible="no" active="yes"/> +<layer number="215" name="215bmp" color="7" fill="1" visible="no" active="yes"/> +<layer number="216" name="216bmp" color="7" fill="1" visible="no" active="yes"/> +<layer number="217" name="217bmp" color="18" fill="1" visible="no" active="no"/> +<layer number="218" name="218bmp" color="19" fill="1" visible="no" active="no"/> +<layer number="219" name="219bmp" color="20" fill="1" visible="no" active="no"/> +<layer number="220" name="220bmp" color="21" fill="1" visible="no" active="no"/> +<layer number="221" name="221bmp" color="22" fill="1" visible="no" active="no"/> +<layer number="222" name="222bmp" color="23" fill="1" visible="no" active="no"/> +<layer number="223" name="223bmp" color="24" fill="1" visible="no" active="no"/> +<layer number="224" name="224bmp" color="25" fill="1" visible="no" active="no"/> +<layer number="225" name="225bmp" color="7" fill="1" visible="no" active="yes"/> +<layer number="226" name="226bmp" color="7" fill="1" visible="no" active="yes"/> +<layer number="227" name="227bmp" color="7" fill="1" visible="no" active="yes"/> +<layer number="228" name="228bmp" color="7" fill="1" visible="no" active="yes"/> +<layer number="229" name="229bmp" color="7" fill="1" visible="no" active="yes"/> +<layer number="230" name="230bmp" color="7" fill="1" visible="no" active="yes"/> +<layer number="231" name="231bmp" color="7" fill="1" visible="no" active="yes"/> +<layer number="232" name="Eagle3D_PG2" color="7" fill="1" visible="no" active="yes"/> +<layer number="233" name="Eagle3D_PG3" color="7" fill="1" visible="no" active="yes"/> +<layer number="248" name="Housing" color="7" fill="1" visible="no" active="yes"/> +<layer number="249" name="Edge" color="7" fill="1" visible="no" active="yes"/> +<layer number="250" name="Descript" color="3" fill="1" visible="no" active="no"/> +<layer number="251" name="SMDround" color="12" fill="11" visible="no" active="no"/> +<layer number="254" name="cooling" color="7" fill="1" visible="no" active="yes"/> +<layer number="255" name="routoute" color="7" fill="1" visible="no" active="yes"/> +</layers> +<schematic xreflabel="%F%N/%S.%C%R" xrefpart="/%S.%C%R"> +<libraries> +<library name="fab"> +<packages> +<package name="DX4R005HJ5_100"> +<wire x1="3.25" y1="-2.6" x2="-3.25" y2="-2.6" width="0.127" layer="21"/> +<wire x1="-3.25" y1="2.6" x2="-3.25" y2="0" width="0.127" layer="51"/> +<wire x1="3.25" y1="2.6" x2="3.25" y2="0" width="0.127" layer="51"/> +<wire x1="-1.75" y1="2.6" x2="1.75" y2="2.6" width="0.127" layer="51"/> +<wire x1="-3.25" y1="-2.2" x2="-3.25" y2="-2.6" width="0.127" layer="51"/> +<wire x1="3.25" y1="-2.6" x2="3.25" y2="-2.2" width="0.127" layer="51"/> +<smd name="GND@3" x="-2.175" y="-1.1" dx="2.15" dy="1.9" layer="1"/> +<smd name="GND@4" x="2.175" y="-1.1" dx="2.15" dy="1.9" layer="1"/> +<smd name="GND@1" x="-2.5" y="1.95" dx="1.2" dy="1.3" layer="1"/> +<smd name="GND@2" x="2.5" y="1.95" dx="1.2" dy="1.3" layer="1"/> +<smd name="D+" x="0" y="1.6" dx="0.35" dy="1.35" layer="1"/> +<smd name="D-" x="-0.65" y="1.6" dx="0.35" dy="1.35" layer="1"/> +<smd name="VBUS" x="-1.3" y="1.6" dx="0.35" dy="1.35" layer="1"/> +<smd name="ID" x="0.65" y="1.6" dx="0.35" dy="1.35" layer="1"/> +<smd name="GND" x="1.3" y="1.6" dx="0.35" dy="1.35" layer="1"/> +<text x="4.1275" y="-1.5875" size="0.6096" layer="27" font="vector" rot="R90">>Value</text> +<text x="-3.4925" y="-1.27" size="0.6096" layer="25" font="vector" rot="R90">>Name</text> +</package> +<package name="DX4R005HJ5"> +<wire x1="3.25" y1="-2.6" x2="-3.25" y2="-2.6" width="0.127" layer="21"/> +<wire x1="-3.25" y1="2.6" x2="-3.25" y2="0" width="0.127" layer="51"/> +<wire x1="3.25" y1="2.6" x2="3.25" y2="0" width="0.127" layer="51"/> +<wire x1="-1.75" y1="2.6" x2="1.75" y2="2.6" width="0.127" layer="51"/> +<wire x1="-3.25" y1="-2.2" x2="-3.25" y2="-2.6" width="0.127" layer="51"/> +<wire x1="3.25" y1="-2.6" x2="3.25" y2="-2.2" width="0.127" layer="51"/> +<smd name="GND@3" x="-2.175" y="-1.1" dx="2.15" dy="1.9" layer="1"/> +<smd name="GND@4" x="2.175" y="-1.1" dx="2.15" dy="1.9" layer="1"/> +<smd name="GND@1" x="-2.5" y="1.95" dx="1.2" dy="1.3" layer="1"/> +<smd name="GND@2" x="2.5" y="1.95" dx="1.2" dy="1.3" layer="1"/> +<smd name="D+" x="0" y="1.6" dx="0.4" dy="1.35" layer="1"/> +<smd name="D-" x="-0.65" y="1.6" dx="0.4" dy="1.35" layer="1"/> +<smd name="VBUS" x="-1.3" y="1.6" dx="0.4" dy="1.35" layer="1"/> +<smd name="ID" x="0.65" y="1.6" dx="0.4" dy="1.35" layer="1"/> +<smd name="GND" x="1.3" y="1.6" dx="0.4" dy="1.35" layer="1"/> +<text x="-3.4925" y="-1.27" size="0.6096" layer="25" font="vector" rot="R90">>Name</text> +<text x="4.1275" y="-1.5875" size="0.6096" layer="25" font="vector" rot="R90">>Value</text> +</package> +<package name="DX4R005HJ5_64"> +<wire x1="3.25" y1="-2.6" x2="-3.25" y2="-2.6" width="0.127" layer="21"/> +<wire x1="-3.25" y1="2.6" x2="-3.25" y2="0" width="0.127" layer="51"/> +<wire x1="3.25" y1="2.6" x2="3.25" y2="0" width="0.127" layer="51"/> +<wire x1="-1.75" y1="2.6" x2="1.75" y2="2.6" width="0.127" layer="51"/> +<wire x1="-3.25" y1="-2.2" x2="-3.25" y2="-2.6" width="0.127" layer="51"/> +<wire x1="3.25" y1="-2.6" x2="3.25" y2="-2.2" width="0.127" layer="51"/> +<smd name="GND@3" x="-2.175" y="-1.1" dx="2.15" dy="1.9" layer="1"/> +<smd name="GND@4" x="2.175" y="-1.1" dx="2.15" dy="1.9" layer="1"/> +<smd name="GND@1" x="-2.5" y="1.95" dx="1.2" dy="1.3" layer="1"/> +<smd name="GND@2" x="2.5" y="1.95" dx="1.2" dy="1.3" layer="1"/> +<smd name="D+" x="0" y="1.6" dx="0.254" dy="1.35" layer="1"/> +<smd name="D-" x="-0.65" y="1.6" dx="0.254" dy="1.35" layer="1"/> +<smd name="VBUS" x="-1.3" y="1.6" dx="0.254" dy="1.35" layer="1"/> +<smd name="ID" x="0.65" y="1.6" dx="0.254" dy="1.35" layer="1"/> +<smd name="GND" x="1.3" y="1.6" dx="0.254" dy="1.35" layer="1"/> +<text x="-3.4925" y="-1.27" size="0.6096" layer="25" font="vector" rot="R90">>Name</text> +<text x="4.1275" y="-1.5875" size="0.6096" layer="27" font="vector" rot="R90">>Value</text> +</package> +<package name="C1206"> +<description><b>CAPACITOR</b></description> +<wire x1="-2.473" y1="0.983" x2="2.473" y2="0.983" width="0.0508" layer="39"/> +<wire x1="2.473" y1="-0.983" x2="-2.473" y2="-0.983" width="0.0508" layer="39"/> +<wire x1="-2.473" y1="-0.983" x2="-2.473" y2="0.983" width="0.0508" layer="39"/> +<wire x1="2.473" y1="0.983" x2="2.473" y2="-0.983" width="0.0508" layer="39"/> +<wire x1="-0.965" y1="0.787" x2="0.965" y2="0.787" width="0.1016" layer="51"/> +<wire x1="-0.965" y1="-0.787" x2="0.965" y2="-0.787" width="0.1016" layer="51"/> +<smd name="1" x="-1.4" y="0" dx="1.6" dy="1.8" layer="1"/> +<smd name="2" x="1.4" y="0" dx="1.6" dy="1.8" layer="1"/> +<text x="-1.27" y="1.27" size="1.27" layer="25">>NAME</text> +<text x="-1.27" y="-2.54" size="1.27" layer="27">>VALUE</text> +<rectangle x1="-1.7018" y1="-0.8509" x2="-0.9517" y2="0.8491" layer="51"/> +<rectangle x1="0.9517" y1="-0.8491" x2="1.7018" y2="0.8509" layer="51"/> +<rectangle x1="-0.1999" y1="-0.4001" x2="0.1999" y2="0.4001" layer="35"/> +</package> +<package name="C1206FAB"> +<wire x1="-2.032" y1="1.016" x2="2.032" y2="1.016" width="0.127" layer="21"/> +<wire x1="2.032" y1="1.016" x2="2.032" y2="-1.016" width="0.127" layer="21"/> +<wire x1="2.032" y1="-1.016" x2="-2.032" y2="-1.016" width="0.127" layer="21"/> +<wire x1="-2.032" y1="-1.016" x2="-2.032" y2="1.016" width="0.127" layer="21"/> +<smd name="1" x="-1.651" y="0" dx="1.27" dy="1.905" layer="1"/> +<smd name="2" x="1.651" y="0" dx="1.27" dy="1.905" layer="1"/> +<text x="-1.778" y="1.27" size="1.016" layer="25" ratio="15">>NAME</text> +<text x="-1.778" y="-2.286" size="1.016" layer="27" ratio="15">>VALUE</text> +</package> +<package name="C2220"> +<description><b>CAPACITOR</b></description> +<wire x1="-3.743" y1="2.253" x2="3.743" y2="2.253" width="0.0508" layer="39"/> +<wire x1="3.743" y1="-2.253" x2="-3.743" y2="-2.253" width="0.0508" layer="39"/> +<wire x1="-3.743" y1="-2.253" x2="-3.743" y2="2.253" width="0.0508" layer="39"/> +<wire x1="3.743" y1="2.253" x2="3.743" y2="-2.253" width="0.0508" layer="39"/> +<smd name="1" x="-2.794" y="0" dx="2.032" dy="5.334" layer="1"/> +<smd name="2" x="2.794" y="0" dx="2.032" dy="5.334" layer="1"/> +<text x="-2.54" y="2.54" size="1.27" layer="25">>NAME</text> +<text x="-2.54" y="-3.81" size="1.27" layer="27">>VALUE</text> +<rectangle x1="-2.9718" y1="-0.8509" x2="-2.2217" y2="0.8491" layer="51"/> +<rectangle x1="2.2217" y1="-0.8491" x2="2.9718" y2="0.8509" layer="51"/> +</package> +<package name="2-SMD-5X3MM"> +<wire x1="-2.5" y1="1.3" x2="-2.5" y2="1.6" width="0.127" layer="21"/> +<wire x1="-2.5" y1="1.6" x2="2.5" y2="1.6" width="0.127" layer="21"/> +<wire x1="2.5" y1="1.6" x2="2.5" y2="1.3" width="0.127" layer="21"/> +<wire x1="2.5" y1="-1.3" x2="2.5" y2="-1.6" width="0.127" layer="21"/> +<wire x1="2.5" y1="-1.6" x2="-2.5" y2="-1.6" width="0.127" layer="21"/> +<wire x1="-2.5" y1="-1.6" x2="-2.5" y2="-1.3" width="0.127" layer="21"/> +<smd name="P$1" x="-2" y="0" dx="2" dy="2.4" layer="1"/> +<smd name="P$2" x="2" y="0" dx="2" dy="2.4" layer="1"/> +<text x="-2.54" y="2.54" size="1.27" layer="25">>NAME</text> +<text x="-2.54" y="-3.81" size="1.27" layer="27">>VALUE</text> +</package> +<package name="2-SMD-1-5X3-2MM"> +<smd name="P$1" x="-1.25" y="0" dx="1.1" dy="1.9" layer="1" rot="R180"/> +<smd name="P$2" x="1.25" y="0" dx="1.1" dy="1.9" layer="1" rot="R180"/> +<wire x1="-0.7" y1="0.7" x2="0.7" y2="0.7" width="0.127" layer="51"/> +<wire x1="-0.7" y1="-0.7" x2="0.7" y2="-0.7" width="0.127" layer="51"/> +</package> +<package name="R1206"> +<description><b>RESISTOR</b></description> +<wire x1="0.9525" y1="-0.8128" x2="-0.9652" y2="-0.8128" width="0.1524" layer="51"/> +<wire x1="0.9525" y1="0.8128" x2="-0.9652" y2="0.8128" width="0.1524" layer="51"/> +<wire x1="-2.473" y1="0.983" x2="2.473" y2="0.983" width="0.0508" layer="39"/> +<wire x1="2.473" y1="0.983" x2="2.473" y2="-0.983" width="0.0508" layer="39"/> +<wire x1="2.473" y1="-0.983" x2="-2.473" y2="-0.983" width="0.0508" layer="39"/> +<wire x1="-2.473" y1="-0.983" x2="-2.473" y2="0.983" width="0.0508" layer="39"/> +<smd name="2" x="1.422" y="0" dx="1.6" dy="1.803" layer="1"/> +<smd name="1" x="-1.422" y="0" dx="1.6" dy="1.803" layer="1"/> +<text x="-1.27" y="1.27" size="1.27" layer="25">>NAME</text> +<text x="-1.27" y="-2.54" size="1.27" layer="27">>VALUE</text> +<rectangle x1="-1.6891" y1="-0.8763" x2="-0.9525" y2="0.8763" layer="51"/> +<rectangle x1="0.9525" y1="-0.8763" x2="1.6891" y2="0.8763" layer="51"/> +<rectangle x1="-0.3" y1="-0.7" x2="0.3" y2="0.7" layer="35"/> +</package> +<package name="R1206W"> +<description><b>RESISTOR</b><p> +wave soldering</description> +<wire x1="-0.913" y1="0.8" x2="0.888" y2="0.8" width="0.1524" layer="51"/> +<wire x1="-0.913" y1="-0.8" x2="0.888" y2="-0.8" width="0.1524" layer="51"/> +<wire x1="-2.473" y1="0.983" x2="2.473" y2="0.983" width="0.0508" layer="39"/> +<wire x1="2.473" y1="0.983" x2="2.473" y2="-0.983" width="0.0508" layer="39"/> +<wire x1="2.473" y1="-0.983" x2="-2.473" y2="-0.983" width="0.0508" layer="39"/> +<wire x1="-2.473" y1="-0.983" x2="-2.473" y2="0.983" width="0.0508" layer="39"/> +<smd name="1" x="-1.499" y="0" dx="1.8" dy="1.2" layer="1"/> +<smd name="2" x="1.499" y="0" dx="1.8" dy="1.2" layer="1"/> +<text x="-1.905" y="1.27" size="1.27" layer="25">>NAME</text> +<text x="-1.905" y="-2.54" size="1.27" layer="27">>VALUE</text> +<rectangle x1="-1.651" y1="-0.8763" x2="-0.9009" y2="0.8738" layer="51"/> +<rectangle x1="0.889" y1="-0.8763" x2="1.6391" y2="0.8738" layer="51"/> +<rectangle x1="-0.3" y1="-0.7" x2="0.3" y2="0.7" layer="35"/> +</package> +<package name="R1206FAB"> +<wire x1="-2.032" y1="1.016" x2="2.032" y2="1.016" width="0.127" layer="21"/> +<wire x1="2.032" y1="1.016" x2="2.032" y2="-1.016" width="0.127" layer="21"/> +<wire x1="2.032" y1="-1.016" x2="-2.032" y2="-1.016" width="0.127" layer="21"/> +<wire x1="-2.032" y1="-1.016" x2="-2.032" y2="1.016" width="0.127" layer="21"/> +<smd name="1" x="-1.651" y="0" dx="1.27" dy="1.905" layer="1"/> +<smd name="2" x="1.651" y="0" dx="1.27" dy="1.905" layer="1"/> +<text x="-1.778" y="1.27" size="1.016" layer="25" ratio="15">>NAME</text> +<text x="-1.778" y="-2.286" size="1.016" layer="27" ratio="15">>VALUE</text> +</package> +<package name="2X03SMD"> +<smd name="1" x="-2.54" y="2.54" dx="2.54" dy="1.27" layer="1"/> +<smd name="3" x="-2.54" y="0" dx="2.54" dy="1.27" layer="1"/> +<smd name="5" x="-2.54" y="-2.54" dx="2.54" dy="1.27" layer="1"/> +<smd name="2" x="2.92" y="2.54" dx="2.54" dy="1.27" layer="1"/> +<smd name="4" x="2.92" y="0" dx="2.54" dy="1.27" layer="1"/> +<smd name="6" x="2.92" y="-2.54" dx="2.54" dy="1.27" layer="1"/> +<text x="-5.08" y="2.54" size="1.27" layer="27">1</text> +<text x="-3.81" y="3.81" size="1.27" layer="25">>NAME</text> +<text x="-3.81" y="-5.08" size="1.27" layer="27">>VALUE</text> +</package> +<package name="2X03"> +<description><b>PIN HEADER</b></description> +<wire x1="-3.81" y1="-1.905" x2="-3.175" y2="-2.54" width="0.1524" layer="21"/> +<wire x1="-1.905" y1="-2.54" x2="-1.27" y2="-1.905" width="0.1524" layer="21"/> +<wire x1="-1.27" y1="-1.905" x2="-0.635" y2="-2.54" width="0.1524" layer="21"/> +<wire x1="0.635" y1="-2.54" x2="1.27" y2="-1.905" width="0.1524" layer="21"/> +<wire x1="-3.81" y1="-1.905" x2="-3.81" y2="1.905" width="0.1524" layer="21"/> +<wire x1="-3.81" y1="1.905" x2="-3.175" y2="2.54" width="0.1524" layer="21"/> +<wire x1="-3.175" y1="2.54" x2="-1.905" y2="2.54" width="0.1524" layer="21"/> +<wire x1="-1.905" y1="2.54" x2="-1.27" y2="1.905" width="0.1524" layer="21"/> +<wire x1="-1.27" y1="1.905" x2="-0.635" y2="2.54" width="0.1524" layer="21"/> +<wire x1="-0.635" y1="2.54" x2="0.635" y2="2.54" width="0.1524" layer="21"/> +<wire x1="0.635" y1="2.54" x2="1.27" y2="1.905" width="0.1524" layer="21"/> +<wire x1="-1.27" y1="1.905" x2="-1.27" y2="-1.905" width="0.1524" layer="21"/> +<wire x1="1.27" y1="1.905" x2="1.27" y2="-1.905" width="0.1524" layer="21"/> +<wire x1="-0.635" y1="-2.54" x2="0.635" y2="-2.54" width="0.1524" layer="21"/> +<wire x1="-3.175" y1="-2.54" x2="-1.905" y2="-2.54" width="0.1524" layer="21"/> +<wire x1="1.27" y1="-1.905" x2="1.905" y2="-2.54" width="0.1524" layer="21"/> +<wire x1="3.175" y1="-2.54" x2="3.81" y2="-1.905" width="0.1524" layer="21"/> +<wire x1="1.27" y1="1.905" x2="1.905" y2="2.54" width="0.1524" layer="21"/> +<wire x1="1.905" y1="2.54" x2="3.175" y2="2.54" width="0.1524" layer="21"/> +<wire x1="3.175" y1="2.54" x2="3.81" y2="1.905" width="0.1524" layer="21"/> +<wire x1="3.81" y1="1.905" x2="3.81" y2="-1.905" width="0.1524" layer="21"/> +<wire x1="1.905" y1="-2.54" x2="3.175" y2="-2.54" width="0.1524" layer="21"/> +<wire x1="-3.175" y1="-2.921" x2="-1.905" y2="-2.921" width="0.127" layer="21"/> +<pad name="1" x="-2.54" y="-1.27" drill="1.016" shape="square"/> +<pad name="2" x="-2.54" y="1.27" drill="1.016" shape="octagon"/> +<pad name="3" x="0" y="-1.27" drill="1.016" shape="octagon"/> +<pad name="4" x="0" y="1.27" drill="1.016" shape="octagon"/> +<pad name="5" x="2.54" y="-1.27" drill="1.016" shape="octagon"/> +<pad name="6" x="2.54" y="1.27" drill="1.016" shape="octagon"/> +<text x="-3.81" y="3.175" size="1.27" layer="25" ratio="10">>NAME</text> +<text x="-3.81" y="-4.445" size="1.27" layer="27">>VALUE</text> +<text x="-5.08" y="-2.54" size="1.27" layer="21">1</text> +<rectangle x1="-2.794" y1="-1.524" x2="-2.286" y2="-1.016" layer="51"/> +<rectangle x1="-2.794" y1="1.016" x2="-2.286" y2="1.524" layer="51"/> +<rectangle x1="-0.254" y1="1.016" x2="0.254" y2="1.524" layer="51"/> +<rectangle x1="-0.254" y1="-1.524" x2="0.254" y2="-1.016" layer="51"/> +<rectangle x1="2.286" y1="1.016" x2="2.794" y2="1.524" layer="51"/> +<rectangle x1="2.286" y1="-1.524" x2="2.794" y2="-1.016" layer="51"/> +</package> +<package name="6MM_SWITCH"> +<description><b>OMRON SWITCH</b></description> +<wire x1="3.302" y1="-0.762" x2="3.048" y2="-0.762" width="0.1524" layer="21"/> +<wire x1="3.302" y1="-0.762" x2="3.302" y2="0.762" width="0.1524" layer="21"/> +<wire x1="3.048" y1="0.762" x2="3.302" y2="0.762" width="0.1524" layer="21"/> +<wire x1="3.048" y1="1.016" x2="3.048" y2="2.54" width="0.1524" layer="51"/> +<wire x1="-3.302" y1="0.762" x2="-3.048" y2="0.762" width="0.1524" layer="21"/> +<wire x1="-3.302" y1="0.762" x2="-3.302" y2="-0.762" width="0.1524" layer="21"/> +<wire x1="-3.048" y1="-0.762" x2="-3.302" y2="-0.762" width="0.1524" layer="21"/> +<wire x1="3.048" y1="2.54" x2="2.54" y2="3.048" width="0.1524" layer="51"/> +<wire x1="2.54" y1="-3.048" x2="3.048" y2="-2.54" width="0.1524" layer="51"/> +<wire x1="3.048" y1="-2.54" x2="3.048" y2="-1.016" width="0.1524" layer="51"/> +<wire x1="-2.54" y1="3.048" x2="-3.048" y2="2.54" width="0.1524" layer="51"/> +<wire x1="-3.048" y1="2.54" x2="-3.048" y2="1.016" width="0.1524" layer="51"/> +<wire x1="-2.54" y1="-3.048" x2="-3.048" y2="-2.54" width="0.1524" layer="51"/> +<wire x1="-3.048" y1="-2.54" x2="-3.048" y2="-1.016" width="0.1524" layer="51"/> +<wire x1="-1.27" y1="1.27" x2="-1.27" y2="-1.27" width="0.0508" layer="51"/> +<wire x1="1.27" y1="-1.27" x2="-1.27" y2="-1.27" width="0.0508" layer="51"/> +<wire x1="1.27" y1="-1.27" x2="1.27" y2="1.27" width="0.0508" layer="51"/> +<wire x1="-1.27" y1="1.27" x2="1.27" y2="1.27" width="0.0508" layer="51"/> +<wire x1="-1.27" y1="3.048" x2="-1.27" y2="2.794" width="0.0508" layer="21"/> +<wire x1="1.27" y1="2.794" x2="-1.27" y2="2.794" width="0.0508" layer="21"/> +<wire x1="1.27" y1="2.794" x2="1.27" y2="3.048" width="0.0508" layer="21"/> +<wire x1="1.143" y1="-2.794" x2="-1.27" y2="-2.794" width="0.0508" layer="21"/> +<wire x1="1.143" y1="-2.794" x2="1.143" y2="-3.048" width="0.0508" layer="21"/> +<wire x1="-1.27" y1="-2.794" x2="-1.27" y2="-3.048" width="0.0508" layer="21"/> +<wire x1="2.54" y1="-3.048" x2="2.159" y2="-3.048" width="0.1524" layer="51"/> +<wire x1="-2.54" y1="-3.048" x2="-2.159" y2="-3.048" width="0.1524" layer="51"/> +<wire x1="-2.159" y1="-3.048" x2="-1.27" y2="-3.048" width="0.1524" layer="21"/> +<wire x1="-2.54" y1="3.048" x2="-2.159" y2="3.048" width="0.1524" layer="51"/> +<wire x1="2.54" y1="3.048" x2="2.159" y2="3.048" width="0.1524" layer="51"/> +<wire x1="2.159" y1="3.048" x2="1.27" y2="3.048" width="0.1524" layer="21"/> +<wire x1="1.27" y1="3.048" x2="-1.27" y2="3.048" width="0.1524" layer="21"/> +<wire x1="-1.27" y1="3.048" x2="-2.159" y2="3.048" width="0.1524" layer="21"/> +<wire x1="-1.27" y1="-3.048" x2="1.143" y2="-3.048" width="0.1524" layer="21"/> +<wire x1="1.143" y1="-3.048" x2="2.159" y2="-3.048" width="0.1524" layer="21"/> +<wire x1="3.048" y1="-0.762" x2="3.048" y2="-1.016" width="0.1524" layer="21"/> +<wire x1="3.048" y1="0.762" x2="3.048" y2="1.016" width="0.1524" layer="21"/> +<wire x1="-3.048" y1="-0.762" x2="-3.048" y2="-1.016" width="0.1524" layer="21"/> +<wire x1="-3.048" y1="0.762" x2="-3.048" y2="1.016" width="0.1524" layer="21"/> +<wire x1="-1.27" y1="-2.159" x2="1.27" y2="-2.159" width="0.1524" layer="51"/> +<wire x1="1.27" y1="2.286" x2="-1.27" y2="2.286" width="0.1524" layer="51"/> +<wire x1="-2.413" y1="1.27" x2="-2.413" y2="0.508" width="0.1524" layer="51"/> +<wire x1="-2.413" y1="-0.508" x2="-2.413" y2="-1.27" width="0.1524" layer="51"/> +<wire x1="-2.413" y1="0.508" x2="-2.159" y2="-0.381" width="0.1524" layer="51"/> +<circle x="0" y="0" radius="1.778" width="0.1524" layer="21"/> +<circle x="-2.159" y="-2.159" radius="0.508" width="0.1524" layer="51"/> +<circle x="2.159" y="-2.032" radius="0.508" width="0.1524" layer="51"/> +<circle x="2.159" y="2.159" radius="0.508" width="0.1524" layer="51"/> +<circle x="-2.159" y="2.159" radius="0.508" width="0.1524" layer="51"/> +<circle x="0" y="0" radius="0.635" width="0.0508" layer="51"/> +<circle x="0" y="0" radius="0.254" width="0.1524" layer="21"/> +<smd name="1" x="-3.302" y="2.286" dx="2.286" dy="1.524" layer="1"/> +<smd name="2" x="3.302" y="2.286" dx="2.286" dy="1.524" layer="1"/> +<smd name="3" x="-3.302" y="-2.286" dx="2.286" dy="1.524" layer="1"/> +<smd name="4" x="3.302" y="-2.286" dx="2.286" dy="1.524" layer="1"/> +<text x="-3.048" y="3.683" size="1.27" layer="25" ratio="10">>NAME</text> +<text x="-3.048" y="-5.08" size="1.27" layer="27" ratio="10">>VALUE</text> +<text x="-4.318" y="1.651" size="1.27" layer="51" ratio="10">1</text> +<text x="3.556" y="1.524" size="1.27" layer="51" ratio="10">2</text> +<text x="-4.572" y="-2.794" size="1.27" layer="51" ratio="10">3</text> +<text x="3.556" y="-2.794" size="1.27" layer="51" ratio="10">4</text> +</package> +<package name="LED1206"> +<description>LED 1206 pads (standard pattern)</description> +<wire x1="0.9525" y1="-0.8128" x2="-0.9652" y2="-0.8128" width="0.1524" layer="51"/> +<wire x1="0.9525" y1="0.8128" x2="-0.9652" y2="0.8128" width="0.1524" layer="51"/> +<wire x1="-2.473" y1="0.983" x2="2.473" y2="0.983" width="0.0508" layer="39"/> +<wire x1="2.473" y1="0.983" x2="2.473" y2="-0.983" width="0.0508" layer="39"/> +<wire x1="2.473" y1="-0.983" x2="-2.473" y2="-0.983" width="0.0508" layer="39"/> +<wire x1="-2.473" y1="-0.983" x2="-2.473" y2="0.983" width="0.0508" layer="39"/> +<smd name="2" x="1.422" y="0" dx="1.6" dy="1.803" layer="1"/> +<smd name="1" x="-1.422" y="0" dx="1.6" dy="1.803" layer="1"/> +<text x="-1.27" y="1.27" size="1.27" layer="25">>NAME</text> +<text x="-1.27" y="-2.54" size="1.27" layer="27">>VALUE</text> +<rectangle x1="-1.6891" y1="-0.8763" x2="-0.9525" y2="0.8763" layer="51"/> +<rectangle x1="0.9525" y1="-0.8763" x2="1.6891" y2="0.8763" layer="51"/> +</package> +<package name="LED1206FAB"> +<description>LED1206 FAB style (smaller pads to allow trace between)</description> +<wire x1="-2.032" y1="1.016" x2="2.032" y2="1.016" width="0.127" layer="21"/> +<wire x1="2.032" y1="1.016" x2="2.032" y2="-1.016" width="0.127" layer="21"/> +<wire x1="2.032" y1="-1.016" x2="-2.032" y2="-1.016" width="0.127" layer="21"/> +<wire x1="-2.032" y1="-1.016" x2="-2.032" y2="1.016" width="0.127" layer="21"/> +<smd name="1" x="-1.651" y="0" dx="1.27" dy="1.905" layer="1"/> +<smd name="2" x="1.651" y="0" dx="1.27" dy="1.905" layer="1"/> +<text x="-1.778" y="1.27" size="1.016" layer="25" ratio="15">>NAME</text> +<text x="-1.778" y="-2.286" size="1.016" layer="27" ratio="15">>VALUE</text> +</package> +<package name="5MM"> +<description>5mm round through hole part.</description> +<wire x1="2.54" y1="-1.905" x2="2.54" y2="1.905" width="0.2032" layer="21"/> +<wire x1="2.54" y1="-1.905" x2="2.54" y2="1.905" width="0.254" layer="21" curve="-286.260205" cap="flat"/> +<wire x1="-1.143" y1="0" x2="0" y2="1.143" width="0.1524" layer="51" curve="-90" cap="flat"/> +<wire x1="0" y1="-1.143" x2="1.143" y2="0" width="0.1524" layer="51" curve="90" cap="flat"/> +<wire x1="-1.651" y1="0" x2="0" y2="1.651" width="0.1524" layer="51" curve="-90" cap="flat"/> +<wire x1="0" y1="-1.651" x2="1.651" y2="0" width="0.1524" layer="51" curve="90" cap="flat"/> +<wire x1="-2.159" y1="0" x2="0" y2="2.159" width="0.1524" layer="51" curve="-90" cap="flat"/> +<wire x1="0" y1="-2.159" x2="2.159" y2="0" width="0.1524" layer="51" curve="90" cap="flat"/> +<circle x="0" y="0" radius="2.54" width="0.1524" layer="21"/> +<pad name="IN" x="-1.27" y="0" drill="0.8128" diameter="1.4224"/> +<pad name="OUT" x="1.27" y="0" drill="0.8128" diameter="1.4224"/> +<text x="3.175" y="0.5334" size="1.27" layer="25" ratio="10">>NAME</text> +<text x="3.2004" y="-1.8034" size="1.27" layer="27" ratio="10">>VALUE</text> +</package> +<package name="SOT23-5"> +<description><b>Small Outline Transistor</b>, 5 lead</description> +<wire x1="-1.544" y1="0.713" x2="1.544" y2="0.713" width="0.1524" layer="21"/> +<wire x1="1.544" y1="0.713" x2="1.544" y2="-0.712" width="0.1524" layer="21"/> +<wire x1="1.544" y1="-0.712" x2="-1.544" y2="-0.712" width="0.1524" layer="21"/> +<wire x1="-1.544" y1="-0.712" x2="-1.544" y2="0.713" width="0.1524" layer="21"/> +<smd name="5" x="-0.95" y="1.306" dx="0.5334" dy="1.1938" layer="1"/> +<smd name="4" x="0.95" y="1.306" dx="0.5334" dy="1.1938" layer="1"/> +<smd name="1" x="-0.95" y="-1.306" dx="0.5334" dy="1.1938" layer="1"/> +<smd name="2" x="0" y="-1.306" dx="0.5334" dy="1.1938" layer="1"/> +<smd name="3" x="0.95" y="-1.306" dx="0.5334" dy="1.1938" layer="1"/> +<text x="-1.778" y="-1.778" size="1.27" layer="25" ratio="10" rot="R90">>NAME</text> +<text x="3.048" y="-1.778" size="1.27" layer="27" ratio="10" rot="R90">>VALUE</text> +<rectangle x1="-1.1875" y1="0.7126" x2="-0.7125" y2="1.5439" layer="51"/> +<rectangle x1="0.7125" y1="0.7126" x2="1.1875" y2="1.5439" layer="51"/> +<rectangle x1="-1.1875" y1="-1.5437" x2="-0.7125" y2="-0.7124" layer="51"/> +<rectangle x1="-0.2375" y1="-1.5437" x2="0.2375" y2="-0.7124" layer="51"/> +<rectangle x1="0.7125" y1="-1.5437" x2="1.1875" y2="-0.7124" layer="51"/> +</package> +<package name="SO08"> +<description><b>Small Outline Package</b></description> +<wire x1="-2.362" y1="-1.803" x2="2.362" y2="-1.803" width="0.1524" layer="51"/> +<wire x1="2.362" y1="-1.803" x2="2.362" y2="1.803" width="0.1524" layer="21"/> +<wire x1="2.362" y1="1.803" x2="-2.362" y2="1.803" width="0.1524" layer="51"/> +<wire x1="-2.362" y1="1.803" x2="-2.362" y2="-1.803" width="0.1524" layer="21"/> +<circle x="-1.8034" y="-0.9906" radius="0.3556" width="0.0508" layer="21"/> +<smd name="1" x="-1.905" y="-2.6162" dx="0.6096" dy="2.2098" layer="1"/> +<smd name="8" x="-1.905" y="2.6162" dx="0.6096" dy="2.2098" layer="1"/> +<smd name="2" x="-0.635" y="-2.6162" dx="0.6096" dy="2.2098" layer="1"/> +<smd name="3" x="0.635" y="-2.6162" dx="0.6096" dy="2.2098" layer="1"/> +<smd name="7" x="-0.635" y="2.6162" dx="0.6096" dy="2.2098" layer="1"/> +<smd name="6" x="0.635" y="2.6162" dx="0.6096" dy="2.2098" layer="1"/> +<smd name="4" x="1.905" y="-2.6162" dx="0.6096" dy="2.2098" layer="1"/> +<smd name="5" x="1.905" y="2.6162" dx="0.6096" dy="2.2098" layer="1"/> +<text x="4.0005" y="-2.032" size="1.27" layer="27" ratio="10" rot="R90">>VALUE</text> +<text x="-2.7305" y="-2.032" size="1.27" layer="25" ratio="10" rot="R90">>NAME</text> +<rectangle x1="-2.0828" y1="-2.8702" x2="-1.7272" y2="-1.8542" layer="51"/> +<rectangle x1="-0.8128" y1="-2.8702" x2="-0.4572" y2="-1.8542" layer="51"/> +<rectangle x1="0.4572" y1="-2.8702" x2="0.8128" y2="-1.8542" layer="51"/> +<rectangle x1="1.7272" y1="-2.8702" x2="2.0828" y2="-1.8542" layer="51"/> +<rectangle x1="-2.0828" y1="1.8542" x2="-1.7272" y2="2.8702" layer="51"/> +<rectangle x1="-0.8128" y1="1.8542" x2="-0.4572" y2="2.8702" layer="51"/> +<rectangle x1="0.4572" y1="1.8542" x2="0.8128" y2="2.8702" layer="51"/> +<rectangle x1="1.7272" y1="1.8542" x2="2.0828" y2="2.8702" layer="51"/> +</package> +<package name="TQFP44-13THIN"> +<description><b>Thin Quad Flat Pack</b><p> +package type TQ</description> +<wire x1="-4.8" y1="4.4" x2="-4.4" y2="4.8" width="0.2032" layer="21"/> +<wire x1="-4.4" y1="4.8" x2="4.4" y2="4.8" width="0.2032" layer="21"/> +<wire x1="4.4" y1="4.8" x2="4.8" y2="4.4" width="0.2032" layer="21"/> +<wire x1="4.8" y1="4.4" x2="4.8" y2="-4.4" width="0.2032" layer="21"/> +<wire x1="4.8" y1="-4.4" x2="4.4" y2="-4.8" width="0.2032" layer="21"/> +<wire x1="4.4" y1="-4.8" x2="-4.4" y2="-4.8" width="0.2032" layer="21"/> +<wire x1="-4.4" y1="-4.8" x2="-4.8" y2="-4.4" width="0.2032" layer="21"/> +<wire x1="-4.8" y1="-4.4" x2="-4.8" y2="4.4" width="0.2032" layer="21"/> +<circle x="-4" y="4" radius="0.2827" width="0.254" layer="21"/> +<smd name="1" x="-5.8" y="4" dx="1.524" dy="0.3302" layer="1"/> +<smd name="2" x="-5.8" y="3.2" dx="1.524" dy="0.3302" layer="1"/> +<smd name="3" x="-5.8" y="2.4" dx="1.524" dy="0.3302" layer="1"/> +<smd name="4" x="-5.8" y="1.6" dx="1.524" dy="0.3302" layer="1"/> +<smd name="5" x="-5.8" y="0.8" dx="1.524" dy="0.3302" layer="1"/> +<smd name="6" x="-5.8" y="0" dx="1.524" dy="0.3302" layer="1"/> +<smd name="7" x="-5.8" y="-0.8" dx="1.524" dy="0.3302" layer="1"/> +<smd name="8" x="-5.8" y="-1.6" dx="1.524" dy="0.3302" layer="1"/> +<smd name="9" x="-5.8" y="-2.4" dx="1.524" dy="0.3302" layer="1"/> +<smd name="10" x="-5.8" y="-3.2" dx="1.524" dy="0.3302" layer="1"/> +<smd name="11" x="-5.8" y="-4" dx="1.524" dy="0.3302" layer="1"/> +<smd name="12" x="-4" y="-5.8" dx="0.3302" dy="1.524" layer="1"/> +<smd name="13" x="-3.2" y="-5.8" dx="0.3302" dy="1.524" layer="1"/> +<smd name="14" x="-2.4" y="-5.8" dx="0.3302" dy="1.524" layer="1"/> +<smd name="15" x="-1.6" y="-5.8" dx="0.3302" dy="1.524" layer="1"/> +<smd name="16" x="-0.8" y="-5.8" dx="0.3302" dy="1.524" layer="1"/> +<smd name="17" x="0" y="-5.8" dx="0.3302" dy="1.524" layer="1"/> +<smd name="18" x="0.8" y="-5.8" dx="0.3302" dy="1.524" layer="1"/> +<smd name="19" x="1.6" y="-5.8" dx="0.3302" dy="1.524" layer="1"/> +<smd name="20" x="2.4" y="-5.8" dx="0.3302" dy="1.524" layer="1"/> +<smd name="21" x="3.2" y="-5.8" dx="0.3302" dy="1.524" layer="1"/> +<smd name="22" x="4" y="-5.8" dx="0.3302" dy="1.524" layer="1"/> +<smd name="23" x="5.8" y="-4" dx="1.524" dy="0.3302" layer="1"/> +<smd name="24" x="5.8" y="-3.2" dx="1.524" dy="0.3302" layer="1"/> +<smd name="25" x="5.8" y="-2.4" dx="1.524" dy="0.3302" layer="1"/> +<smd name="26" x="5.8" y="-1.6" dx="1.524" dy="0.3302" layer="1"/> +<smd name="27" x="5.8" y="-0.8" dx="1.524" dy="0.3302" layer="1"/> +<smd name="28" x="5.8" y="0" dx="1.524" dy="0.3302" layer="1"/> +<smd name="29" x="5.8" y="0.8" dx="1.524" dy="0.3302" layer="1"/> +<smd name="30" x="5.8" y="1.6" dx="1.524" dy="0.3302" layer="1"/> +<smd name="31" x="5.8" y="2.4" dx="1.524" dy="0.3302" layer="1"/> +<smd name="32" x="5.8" y="3.2" dx="1.524" dy="0.3302" layer="1"/> +<smd name="33" x="5.8" y="4" dx="1.524" dy="0.3302" layer="1"/> +<smd name="34" x="4" y="5.8" dx="0.3302" dy="1.524" layer="1"/> +<smd name="35" x="3.2" y="5.8" dx="0.3302" dy="1.524" layer="1"/> +<smd name="36" x="2.4" y="5.8" dx="0.3302" dy="1.524" layer="1"/> +<smd name="37" x="1.6" y="5.8" dx="0.3302" dy="1.524" layer="1"/> +<smd name="38" x="0.8" y="5.8" dx="0.3302" dy="1.524" layer="1"/> +<smd name="39" x="0" y="5.8" dx="0.3302" dy="1.524" layer="1"/> +<smd name="40" x="-0.8" y="5.8" dx="0.3302" dy="1.524" layer="1"/> +<smd name="41" x="-1.6" y="5.8" dx="0.3302" dy="1.524" layer="1"/> +<smd name="42" x="-2.4" y="5.8" dx="0.3302" dy="1.524" layer="1"/> +<smd name="43" x="-3.2" y="5.8" dx="0.3302" dy="1.524" layer="1"/> +<smd name="44" x="-4" y="5.8" dx="0.3302" dy="1.524" layer="1"/> +<text x="-4.064" y="6.858" size="1.016" layer="25">>NAME</text> +<text x="-4.064" y="-1.7701" size="1.778" layer="27">>VALUE</text> +<rectangle x1="-6.1001" y1="3.8001" x2="-4.95" y2="4.1999" layer="51"/> +<rectangle x1="-6.1001" y1="3" x2="-4.95" y2="3.4" layer="51"/> +<rectangle x1="-6.1001" y1="2.1999" x2="-4.95" y2="2.5999" layer="51"/> +<rectangle x1="-6.1001" y1="1.4" x2="-4.95" y2="1.8001" layer="51"/> +<rectangle x1="-6.1001" y1="0.5999" x2="-4.95" y2="1" layer="51"/> +<rectangle x1="-6.1001" y1="-0.1999" x2="-4.95" y2="0.1999" layer="51"/> +<rectangle x1="-6.1001" y1="-1" x2="-4.95" y2="-0.5999" layer="51"/> +<rectangle x1="-6.1001" y1="-1.8001" x2="-4.95" y2="-1.4" layer="51"/> +<rectangle x1="-6.1001" y1="-2.5999" x2="-4.95" y2="-2.1999" layer="51"/> +<rectangle x1="-6.1001" y1="-3.4" x2="-4.95" y2="-3" layer="51"/> +<rectangle x1="-6.1001" y1="-4.1999" x2="-4.95" y2="-3.8001" layer="51"/> +<rectangle x1="-4.1999" y1="-6.1001" x2="-3.8001" y2="-4.95" layer="51"/> +<rectangle x1="-3.4" y1="-6.1001" x2="-3" y2="-4.95" layer="51"/> +<rectangle x1="-2.5999" y1="-6.1001" x2="-2.1999" y2="-4.95" layer="51"/> +<rectangle x1="-1.8001" y1="-6.1001" x2="-1.4" y2="-4.95" layer="51"/> +<rectangle x1="-1" y1="-6.1001" x2="-0.5999" y2="-4.95" layer="51"/> +<rectangle x1="-0.1999" y1="-6.1001" x2="0.1999" y2="-4.95" layer="51"/> +<rectangle x1="0.5999" y1="-6.1001" x2="1" y2="-4.95" layer="51"/> +<rectangle x1="1.4" y1="-6.1001" x2="1.8001" y2="-4.95" layer="51"/> +<rectangle x1="2.1999" y1="-6.1001" x2="2.5999" y2="-4.95" layer="51"/> +<rectangle x1="3" y1="-6.1001" x2="3.4" y2="-4.95" layer="51"/> +<rectangle x1="3.8001" y1="-6.1001" x2="4.1999" y2="-4.95" layer="51"/> +<rectangle x1="4.95" y1="-4.1999" x2="6.1001" y2="-3.8001" layer="51"/> +<rectangle x1="4.95" y1="-3.4" x2="6.1001" y2="-3" layer="51"/> +<rectangle x1="4.95" y1="-2.5999" x2="6.1001" y2="-2.1999" layer="51"/> +<rectangle x1="4.95" y1="-1.8001" x2="6.1001" y2="-1.4" layer="51"/> +<rectangle x1="4.95" y1="-1" x2="6.1001" y2="-0.5999" layer="51"/> +<rectangle x1="4.95" y1="-0.1999" x2="6.1001" y2="0.1999" layer="51"/> +<rectangle x1="4.95" y1="0.5999" x2="6.1001" y2="1" layer="51"/> +<rectangle x1="4.95" y1="1.4" x2="6.1001" y2="1.8001" layer="51"/> +<rectangle x1="4.95" y1="2.1999" x2="6.1001" y2="2.5999" layer="51"/> +<rectangle x1="4.95" y1="3" x2="6.1001" y2="3.4" layer="51"/> +<rectangle x1="4.95" y1="3.8001" x2="6.1001" y2="4.1999" layer="51"/> +<rectangle x1="3.8001" y1="4.95" x2="4.1999" y2="6.1001" layer="51"/> +<rectangle x1="3" y1="4.95" x2="3.4" y2="6.1001" layer="51"/> +<rectangle x1="2.1999" y1="4.95" x2="2.5999" y2="6.1001" layer="51"/> +<rectangle x1="1.4" y1="4.95" x2="1.8001" y2="6.1001" layer="51"/> +<rectangle x1="0.5999" y1="4.95" x2="1" y2="6.1001" layer="51"/> +<rectangle x1="-0.1999" y1="4.95" x2="0.1999" y2="6.1001" layer="51"/> +<rectangle x1="-1" y1="4.95" x2="-0.5999" y2="6.1001" layer="51"/> +<rectangle x1="-1.8001" y1="4.95" x2="-1.4" y2="6.1001" layer="51"/> +<rectangle x1="-2.5999" y1="4.95" x2="-2.1999" y2="6.1001" layer="51"/> +<rectangle x1="-3.4" y1="4.95" x2="-3" y2="6.1001" layer="51"/> +<rectangle x1="-4.1999" y1="4.95" x2="-3.8001" y2="6.1001" layer="51"/> +</package> +<package name="QFN-44-7X7"> +<description><b>QFN-44</b> (7x7x1.8mm)<p> +Source: http://www.st.com/stonline/products/literature/ds/11020.pdf</description> +<wire x1="-3.45" y1="3.45" x2="3.45" y2="3.45" width="0.1016" layer="51"/> +<wire x1="3.45" y1="3.45" x2="3.45" y2="-3.45" width="0.1016" layer="51"/> +<wire x1="3.45" y1="-3.45" x2="-3.45" y2="-3.45" width="0.1016" layer="51"/> +<wire x1="-3.45" y1="-3.45" x2="-3.45" y2="3.45" width="0.1016" layer="51"/> +<smd name="TH" x="0" y="0" dx="5.24" dy="5.24" layer="1" stop="no"/> +<smd name="1" x="-3.325" y="2.5" dx="0.8" dy="0.3" layer="1" stop="no" cream="no"/> +<smd name="2" x="-3.325" y="2" dx="0.8" dy="0.3" layer="1" stop="no" cream="no"/> +<smd name="3" x="-3.325" y="1.5" dx="0.8" dy="0.3" layer="1" stop="no" cream="no"/> +<smd name="4" x="-3.325" y="1" dx="0.8" dy="0.3" layer="1" stop="no" cream="no"/> +<smd name="5" x="-3.325" y="0.5" dx="0.8" dy="0.3" layer="1" stop="no" cream="no"/> +<smd name="6" x="-3.325" y="0" dx="0.8" dy="0.3" layer="1" stop="no" cream="no"/> +<smd name="7" x="-3.325" y="-0.5" dx="0.8" dy="0.3" layer="1" stop="no" cream="no"/> +<smd name="8" x="-3.325" y="-1" dx="0.8" dy="0.3" layer="1" stop="no" cream="no"/> +<smd name="9" x="-3.325" y="-1.5" dx="0.8" dy="0.3" layer="1" stop="no" cream="no"/> +<smd name="10" x="-3.325" y="-2" dx="0.8" dy="0.3" layer="1" stop="no" cream="no"/> +<smd name="11" x="-3.325" y="-2.5" dx="0.8" dy="0.3" layer="1" stop="no" cream="no"/> +<smd name="12" x="-2.5" y="-3.325" dx="0.8" dy="0.3" layer="1" rot="R90" stop="no" cream="no"/> +<smd name="13" x="-2" y="-3.325" dx="0.8" dy="0.3" layer="1" rot="R90" stop="no" cream="no"/> +<smd name="14" x="-1.5" y="-3.325" dx="0.8" dy="0.3" layer="1" rot="R90" stop="no" cream="no"/> +<smd name="15" x="-1" y="-3.325" dx="0.8" dy="0.3" layer="1" rot="R90" stop="no" cream="no"/> +<smd name="16" x="-0.5" y="-3.325" dx="0.8" dy="0.3" layer="1" rot="R90" stop="no" cream="no"/> +<smd name="17" x="0" y="-3.325" dx="0.8" dy="0.3" layer="1" rot="R90" stop="no" cream="no"/> +<smd name="18" x="0.5" y="-3.325" dx="0.8" dy="0.3" layer="1" rot="R90" stop="no" cream="no"/> +<smd name="19" x="1" y="-3.325" dx="0.8" dy="0.3" layer="1" rot="R90" stop="no" cream="no"/> +<smd name="20" x="1.5" y="-3.325" dx="0.8" dy="0.3" layer="1" rot="R90" stop="no" cream="no"/> +<smd name="21" x="2" y="-3.325" dx="0.8" dy="0.3" layer="1" rot="R90" stop="no" cream="no"/> +<smd name="22" x="2.5" y="-3.325" dx="0.8" dy="0.3" layer="1" rot="R90" stop="no" cream="no"/> +<smd name="23" x="3.325" y="-2.5" dx="0.8" dy="0.3" layer="1" rot="R180" stop="no" cream="no"/> +<smd name="24" x="3.325" y="-2" dx="0.8" dy="0.3" layer="1" rot="R180" stop="no" cream="no"/> +<smd name="25" x="3.325" y="-1.5" dx="0.8" dy="0.3" layer="1" rot="R180" stop="no" cream="no"/> +<smd name="26" x="3.325" y="-1" dx="0.8" dy="0.3" layer="1" rot="R180" stop="no" cream="no"/> +<smd name="27" x="3.325" y="-0.5" dx="0.8" dy="0.3" layer="1" rot="R180" stop="no" cream="no"/> +<smd name="28" x="3.325" y="0" dx="0.8" dy="0.3" layer="1" rot="R180" stop="no" cream="no"/> +<smd name="29" x="3.325" y="0.5" dx="0.8" dy="0.3" layer="1" rot="R180" stop="no" cream="no"/> +<smd name="30" x="3.325" y="1" dx="0.8" dy="0.3" layer="1" rot="R180" stop="no" cream="no"/> +<smd name="31" x="3.325" y="1.5" dx="0.8" dy="0.3" layer="1" rot="R180" stop="no" cream="no"/> +<smd name="32" x="3.325" y="2" dx="0.8" dy="0.3" layer="1" rot="R180" stop="no" cream="no"/> +<smd name="33" x="3.325" y="2.5" dx="0.8" dy="0.3" layer="1" rot="R180" stop="no" cream="no"/> +<smd name="34" x="2.5" y="3.325" dx="0.8" dy="0.3" layer="1" rot="R270" stop="no" cream="no"/> +<smd name="35" x="2" y="3.325" dx="0.8" dy="0.3" layer="1" rot="R270" stop="no" cream="no"/> +<smd name="36" x="1.5" y="3.325" dx="0.8" dy="0.3" layer="1" rot="R270" stop="no" cream="no"/> +<smd name="37" x="1" y="3.325" dx="0.8" dy="0.3" layer="1" rot="R270" stop="no" cream="no"/> +<smd name="38" x="0.5" y="3.325" dx="0.8" dy="0.3" layer="1" rot="R270" stop="no" cream="no"/> +<smd name="39" x="0" y="3.325" dx="0.8" dy="0.3" layer="1" rot="R270" stop="no" cream="no"/> +<smd name="40" x="-0.5" y="3.325" dx="0.8" dy="0.3" layer="1" rot="R270" stop="no" cream="no"/> +<smd name="41" x="-1" y="3.325" dx="0.8" dy="0.3" layer="1" rot="R270" stop="no" cream="no"/> +<smd name="42" x="-1.5" y="3.325" dx="0.8" dy="0.3" layer="1" rot="R270" stop="no" cream="no"/> +<smd name="43" x="-2" y="3.325" dx="0.8" dy="0.3" layer="1" rot="R270" stop="no" cream="no"/> +<smd name="44" x="-2.5" y="3.325" dx="0.8" dy="0.3" layer="1" rot="R270" stop="no" cream="no"/> +<text x="-3.2" y="4" size="1.27" layer="25">>NAME</text> +<text x="-3.2" y="-5.2" size="1.27" layer="27">>VALUE</text> +<rectangle x1="-3.275" y1="3.05" x2="-3.05" y2="3.275" layer="1"/> +<rectangle x1="-3.775" y1="2.3" x2="-2.875" y2="2.7" layer="29"/> +<rectangle x1="-3.7" y1="2.375" x2="-2.95" y2="2.625" layer="31"/> +<rectangle x1="-3.775" y1="1.8" x2="-2.875" y2="2.2" layer="29"/> +<rectangle x1="-3.7" y1="1.875" x2="-2.95" y2="2.125" layer="31"/> +<rectangle x1="-3.775" y1="1.3" x2="-2.875" y2="1.7" layer="29"/> +<rectangle x1="-3.7" y1="1.375" x2="-2.95" y2="1.625" layer="31"/> +<rectangle x1="-3.775" y1="0.8" x2="-2.875" y2="1.2" layer="29"/> +<rectangle x1="-3.7" y1="0.875" x2="-2.95" y2="1.125" layer="31"/> +<rectangle x1="-3.775" y1="0.3" x2="-2.875" y2="0.7" layer="29"/> +<rectangle x1="-3.7" y1="0.375" x2="-2.95" y2="0.625" layer="31"/> +<rectangle x1="-3.775" y1="-0.2" x2="-2.875" y2="0.2" layer="29"/> +<rectangle x1="-3.7" y1="-0.125" x2="-2.95" y2="0.125" layer="31"/> +<rectangle x1="-3.775" y1="-0.7" x2="-2.875" y2="-0.3" layer="29"/> +<rectangle x1="-3.7" y1="-0.625" x2="-2.95" y2="-0.375" layer="31"/> +<rectangle x1="-3.775" y1="-1.2" x2="-2.875" y2="-0.8" layer="29"/> +<rectangle x1="-3.7" y1="-1.125" x2="-2.95" y2="-0.875" layer="31"/> +<rectangle x1="-3.775" y1="-1.7" x2="-2.875" y2="-1.3" layer="29"/> +<rectangle x1="-3.7" y1="-1.625" x2="-2.95" y2="-1.375" layer="31"/> +<rectangle x1="-3.775" y1="-2.2" x2="-2.875" y2="-1.8" layer="29"/> +<rectangle x1="-3.7" y1="-2.125" x2="-2.95" y2="-1.875" layer="31"/> +<rectangle x1="-3.775" y1="-2.7" x2="-2.875" y2="-2.3" layer="29"/> +<rectangle x1="-3.7" y1="-2.625" x2="-2.95" y2="-2.375" layer="31"/> +<rectangle x1="-2.95" y1="-3.525" x2="-2.05" y2="-3.125" layer="29" rot="R90"/> +<rectangle x1="-2.875" y1="-3.45" x2="-2.125" y2="-3.2" layer="31" rot="R90"/> +<rectangle x1="-2.45" y1="-3.525" x2="-1.55" y2="-3.125" layer="29" rot="R90"/> +<rectangle x1="-2.375" y1="-3.45" x2="-1.625" y2="-3.2" layer="31" rot="R90"/> +<rectangle x1="-1.95" y1="-3.525" x2="-1.05" y2="-3.125" layer="29" rot="R90"/> +<rectangle x1="-1.875" y1="-3.45" x2="-1.125" y2="-3.2" layer="31" rot="R90"/> +<rectangle x1="-1.45" y1="-3.525" x2="-0.55" y2="-3.125" layer="29" rot="R90"/> +<rectangle x1="-1.375" y1="-3.45" x2="-0.625" y2="-3.2" layer="31" rot="R90"/> +<rectangle x1="-0.95" y1="-3.525" x2="-0.05" y2="-3.125" layer="29" rot="R90"/> +<rectangle x1="-0.875" y1="-3.45" x2="-0.125" y2="-3.2" layer="31" rot="R90"/> +<rectangle x1="-0.45" y1="-3.525" x2="0.45" y2="-3.125" layer="29" rot="R90"/> +<rectangle x1="-0.375" y1="-3.45" x2="0.375" y2="-3.2" layer="31" rot="R90"/> +<rectangle x1="0.05" y1="-3.525" x2="0.95" y2="-3.125" layer="29" rot="R90"/> +<rectangle x1="0.125" y1="-3.45" x2="0.875" y2="-3.2" layer="31" rot="R90"/> +<rectangle x1="0.55" y1="-3.525" x2="1.45" y2="-3.125" layer="29" rot="R90"/> +<rectangle x1="0.625" y1="-3.45" x2="1.375" y2="-3.2" layer="31" rot="R90"/> +<rectangle x1="1.05" y1="-3.525" x2="1.95" y2="-3.125" layer="29" rot="R90"/> +<rectangle x1="1.125" y1="-3.45" x2="1.875" y2="-3.2" layer="31" rot="R90"/> +<rectangle x1="1.55" y1="-3.525" x2="2.45" y2="-3.125" layer="29" rot="R90"/> +<rectangle x1="1.625" y1="-3.45" x2="2.375" y2="-3.2" layer="31" rot="R90"/> +<rectangle x1="2.05" y1="-3.525" x2="2.95" y2="-3.125" layer="29" rot="R90"/> +<rectangle x1="2.125" y1="-3.45" x2="2.875" y2="-3.2" layer="31" rot="R90"/> +<rectangle x1="2.875" y1="-2.7" x2="3.775" y2="-2.3" layer="29" rot="R180"/> +<rectangle x1="2.95" y1="-2.625" x2="3.7" y2="-2.375" layer="31" rot="R180"/> +<rectangle x1="2.875" y1="-2.2" x2="3.775" y2="-1.8" layer="29" rot="R180"/> +<rectangle x1="2.95" y1="-2.125" x2="3.7" y2="-1.875" layer="31" rot="R180"/> +<rectangle x1="2.875" y1="-1.7" x2="3.775" y2="-1.3" layer="29" rot="R180"/> +<rectangle x1="2.95" y1="-1.625" x2="3.7" y2="-1.375" layer="31" rot="R180"/> +<rectangle x1="2.875" y1="-1.2" x2="3.775" y2="-0.8" layer="29" rot="R180"/> +<rectangle x1="2.95" y1="-1.125" x2="3.7" y2="-0.875" layer="31" rot="R180"/> +<rectangle x1="2.875" y1="-0.7" x2="3.775" y2="-0.3" layer="29" rot="R180"/> +<rectangle x1="2.95" y1="-0.625" x2="3.7" y2="-0.375" layer="31" rot="R180"/> +<rectangle x1="2.875" y1="-0.2" x2="3.775" y2="0.2" layer="29" rot="R180"/> +<rectangle x1="2.95" y1="-0.125" x2="3.7" y2="0.125" layer="31" rot="R180"/> +<rectangle x1="2.875" y1="0.3" x2="3.775" y2="0.7" layer="29" rot="R180"/> +<rectangle x1="2.95" y1="0.375" x2="3.7" y2="0.625" layer="31" rot="R180"/> +<rectangle x1="2.875" y1="0.8" x2="3.775" y2="1.2" layer="29" rot="R180"/> +<rectangle x1="2.95" y1="0.875" x2="3.7" y2="1.125" layer="31" rot="R180"/> +<rectangle x1="2.875" y1="1.3" x2="3.775" y2="1.7" layer="29" rot="R180"/> +<rectangle x1="2.95" y1="1.375" x2="3.7" y2="1.625" layer="31" rot="R180"/> +<rectangle x1="2.875" y1="1.8" x2="3.775" y2="2.2" layer="29" rot="R180"/> +<rectangle x1="2.95" y1="1.875" x2="3.7" y2="2.125" layer="31" rot="R180"/> +<rectangle x1="2.875" y1="2.3" x2="3.775" y2="2.7" layer="29" rot="R180"/> +<rectangle x1="2.95" y1="2.375" x2="3.7" y2="2.625" layer="31" rot="R180"/> +<rectangle x1="2.05" y1="3.125" x2="2.95" y2="3.525" layer="29" rot="R270"/> +<rectangle x1="2.125" y1="3.2" x2="2.875" y2="3.45" layer="31" rot="R270"/> +<rectangle x1="1.55" y1="3.125" x2="2.45" y2="3.525" layer="29" rot="R270"/> +<rectangle x1="1.625" y1="3.2" x2="2.375" y2="3.45" layer="31" rot="R270"/> +<rectangle x1="1.05" y1="3.125" x2="1.95" y2="3.525" layer="29" rot="R270"/> +<rectangle x1="1.125" y1="3.2" x2="1.875" y2="3.45" layer="31" rot="R270"/> +<rectangle x1="0.55" y1="3.125" x2="1.45" y2="3.525" layer="29" rot="R270"/> +<rectangle x1="0.625" y1="3.2" x2="1.375" y2="3.45" layer="31" rot="R270"/> +<rectangle x1="0.05" y1="3.125" x2="0.95" y2="3.525" layer="29" rot="R270"/> +<rectangle x1="0.125" y1="3.2" x2="0.875" y2="3.45" layer="31" rot="R270"/> +<rectangle x1="-0.45" y1="3.125" x2="0.45" y2="3.525" layer="29" rot="R270"/> +<rectangle x1="-0.375" y1="3.2" x2="0.375" y2="3.45" layer="31" rot="R270"/> +<rectangle x1="-0.95" y1="3.125" x2="-0.05" y2="3.525" layer="29" rot="R270"/> +<rectangle x1="-0.875" y1="3.2" x2="-0.125" y2="3.45" layer="31" rot="R270"/> +<rectangle x1="-1.45" y1="3.125" x2="-0.55" y2="3.525" layer="29" rot="R270"/> +<rectangle x1="-1.375" y1="3.2" x2="-0.625" y2="3.45" layer="31" rot="R270"/> +<rectangle x1="-1.95" y1="3.125" x2="-1.05" y2="3.525" layer="29" rot="R270"/> +<rectangle x1="-1.875" y1="3.2" x2="-1.125" y2="3.45" layer="31" rot="R270"/> +<rectangle x1="-2.45" y1="3.125" x2="-1.55" y2="3.525" layer="29" rot="R270"/> +<rectangle x1="-2.375" y1="3.2" x2="-1.625" y2="3.45" layer="31" rot="R270"/> +<rectangle x1="-2.95" y1="3.125" x2="-2.05" y2="3.525" layer="29" rot="R270"/> +<rectangle x1="-2.875" y1="3.2" x2="-2.125" y2="3.45" layer="31" rot="R270"/> +</package> +<package name="SOT23"> +<description><b>SOT 23</b></description> +<wire x1="1.4224" y1="0.6604" x2="1.4224" y2="-0.6604" width="0.1524" layer="51"/> +<wire x1="1.4224" y1="-0.6604" x2="-1.4224" y2="-0.6604" width="0.1524" layer="51"/> +<wire x1="-1.4224" y1="-0.6604" x2="-1.4224" y2="0.6604" width="0.1524" layer="51"/> +<wire x1="-1.4224" y1="0.6604" x2="1.4224" y2="0.6604" width="0.1524" layer="51"/> +<wire x1="-1.4224" y1="-0.1524" x2="-1.4224" y2="0.6604" width="0.1524" layer="21"/> +<wire x1="-1.4224" y1="0.6604" x2="-0.8636" y2="0.6604" width="0.1524" layer="21"/> +<wire x1="1.4224" y1="0.6604" x2="1.4224" y2="-0.1524" width="0.1524" layer="21"/> +<wire x1="0.8636" y1="0.6604" x2="1.4224" y2="0.6604" width="0.1524" layer="21"/> +<smd name="3" x="0" y="1.1" dx="1" dy="1.4" layer="1"/> +<smd name="2" x="0.95" y="-1.1" dx="1" dy="1.4" layer="1"/> +<smd name="1" x="-0.95" y="-1.1" dx="1" dy="1.4" layer="1"/> +<text x="-1.905" y="1.905" size="1.27" layer="25">>NAME</text> +<text x="-1.905" y="-3.175" size="1.27" layer="27">>VALUE</text> +<rectangle x1="-0.2286" y1="0.7112" x2="0.2286" y2="1.2954" layer="51"/> +<rectangle x1="0.7112" y1="-1.2954" x2="1.1684" y2="-0.7112" layer="51"/> +<rectangle x1="-1.1684" y1="-1.2954" x2="-0.7112" y2="-0.7112" layer="51"/> +</package> +</packages> +<symbols> +<symbol name="USB-1"> +<wire x1="6.35" y1="-2.54" x2="6.35" y2="2.54" width="0.254" layer="94"/> +<wire x1="6.35" y1="2.54" x2="-3.81" y2="2.54" width="0.254" layer="94"/> +<wire x1="-3.81" y1="2.54" x2="-3.81" y2="-2.54" width="0.254" layer="94"/> +<text x="-2.54" y="-1.27" size="2.54" layer="94">USB</text> +<text x="-4.445" y="-1.905" size="1.27" layer="95" font="vector" rot="R90">>Name</text> +<text x="8.255" y="-1.905" size="1.27" layer="96" font="vector" rot="R90">>Value</text> +<pin name="D+" x="5.08" y="5.08" visible="pad" length="short" rot="R270"/> +<pin name="D-" x="2.54" y="5.08" visible="pad" length="short" rot="R270"/> +<pin name="VBUS" x="0" y="5.08" visible="pad" length="short" rot="R270"/> +<pin name="GND" x="-2.54" y="5.08" visible="pad" length="short" rot="R270"/> +</symbol> +<symbol name="CAP-NONPOLARIZED"> +<description>non-polarized capacitor</description> +<wire x1="-1.778" y1="1.524" x2="-1.778" y2="0" width="0.254" layer="94"/> +<wire x1="-1.778" y1="0" x2="-1.778" y2="-1.524" width="0.254" layer="94"/> +<wire x1="-0.762" y1="1.524" x2="-0.762" y2="0" width="0.254" layer="94"/> +<wire x1="-0.762" y1="0" x2="-0.762" y2="-1.524" width="0.254" layer="94"/> +<wire x1="-2.54" y1="0" x2="-1.778" y2="0" width="0.1524" layer="94"/> +<wire x1="-0.762" y1="0" x2="0" y2="0" width="0.1524" layer="94"/> +<text x="-3.81" y="2.54" size="1.778" layer="95">>NAME</text> +<text x="-3.81" y="-3.81" size="1.778" layer="96">>VALUE</text> +<pin name="1" x="-5.08" y="0" visible="off" length="short" direction="pas" swaplevel="1"/> +<pin name="2" x="2.54" y="0" visible="off" length="short" direction="pas" swaplevel="1" rot="R180"/> +</symbol> +<symbol name="CRYSTAL"> +<wire x1="1.016" y1="0" x2="2.54" y2="0" width="0.1524" layer="94"/> +<wire x1="-2.54" y1="0" x2="-1.016" y2="0" width="0.1524" layer="94"/> +<wire x1="-0.381" y1="1.524" x2="-0.381" y2="-1.524" width="0.254" layer="94"/> +<wire x1="-0.381" y1="-1.524" x2="0.381" y2="-1.524" width="0.254" layer="94"/> +<wire x1="0.381" y1="-1.524" x2="0.381" y2="1.524" width="0.254" layer="94"/> +<wire x1="0.381" y1="1.524" x2="-0.381" y2="1.524" width="0.254" layer="94"/> +<wire x1="1.016" y1="1.778" x2="1.016" y2="-1.778" width="0.254" layer="94"/> +<wire x1="-1.016" y1="1.778" x2="-1.016" y2="0" width="0.254" layer="94"/> +<wire x1="-1.016" y1="0" x2="-1.016" y2="-1.778" width="0.254" layer="94"/> +<text x="-1.016" y="2.54" size="1.778" layer="95">>NAME</text> +<text x="-1.016" y="-4.318" size="1.778" layer="96">>VALUE</text> +<pin name="2" x="2.54" y="0" visible="off" length="point" direction="pas" swaplevel="1" rot="R180"/> +<pin name="1" x="-2.54" y="0" visible="off" length="point" direction="pas" swaplevel="1"/> +</symbol> +<symbol name="R-US"> +<wire x1="-2.54" y1="0" x2="-2.159" y2="1.016" width="0.2032" layer="94"/> +<wire x1="-2.159" y1="1.016" x2="-1.524" y2="-1.016" width="0.2032" layer="94"/> +<wire x1="-1.524" y1="-1.016" x2="-0.889" y2="1.016" width="0.2032" layer="94"/> +<wire x1="-0.889" y1="1.016" x2="-0.254" y2="-1.016" width="0.2032" layer="94"/> +<wire x1="-0.254" y1="-1.016" x2="0.381" y2="1.016" width="0.2032" layer="94"/> +<wire x1="0.381" y1="1.016" x2="1.016" y2="-1.016" width="0.2032" layer="94"/> +<wire x1="1.016" y1="-1.016" x2="1.651" y2="1.016" width="0.2032" layer="94"/> +<wire x1="1.651" y1="1.016" x2="2.286" y2="-1.016" width="0.2032" layer="94"/> +<wire x1="2.286" y1="-1.016" x2="2.54" y2="0" width="0.2032" layer="94"/> +<text x="-3.81" y="1.4986" size="1.778" layer="95">>NAME</text> +<text x="-3.81" y="-3.302" size="1.778" layer="96">>VALUE</text> +<pin name="2" x="5.08" y="0" visible="off" length="short" direction="pas" swaplevel="1" rot="R180"/> +<pin name="1" x="-5.08" y="0" visible="off" length="short" direction="pas" swaplevel="1"/> +</symbol> +<symbol name="AVRISP"> +<wire x1="-6.35" y1="-5.08" x2="8.89" y2="-5.08" width="0.4064" layer="94"/> +<wire x1="8.89" y1="-5.08" x2="8.89" y2="5.08" width="0.4064" layer="94"/> +<wire x1="8.89" y1="5.08" x2="-6.35" y2="5.08" width="0.4064" layer="94"/> +<wire x1="-6.35" y1="5.08" x2="-6.35" y2="-5.08" width="0.4064" layer="94"/> +<text x="-6.35" y="5.715" size="1.778" layer="95">>NAME</text> +<text x="-6.35" y="-7.62" size="1.778" layer="96">>VALUE</text> +<text x="-5.08" y="3.175" size="1.27" layer="95">MISO</text> +<text x="-5.08" y="0.635" size="1.27" layer="95">SCK</text> +<text x="-5.08" y="-1.905" size="1.27" layer="95">RST</text> +<text x="7.62" y="3.175" size="1.27" layer="95" rot="MR0">VCC</text> +<text x="7.62" y="0.635" size="1.27" layer="95" rot="MR0">MOSI</text> +<text x="7.62" y="-1.905" size="1.27" layer="95" rot="MR0">GND</text> +<pin name="MISO" x="-2.54" y="2.54" visible="off" length="short" direction="pas" function="dot"/> +<pin name="VCC" x="5.08" y="2.54" visible="off" length="short" direction="pas" function="dot" rot="R180"/> +<pin name="SCK" x="-2.54" y="0" visible="off" length="short" direction="pas" function="dot"/> +<pin name="MOSI" x="5.08" y="0" visible="off" length="short" direction="pas" function="dot" rot="R180"/> +<pin name="RST" x="-2.54" y="-2.54" visible="off" length="short" direction="pas" function="dot"/> +<pin name="GND" x="5.08" y="-2.54" visible="off" length="short" direction="pas" function="dot" rot="R180"/> +</symbol> +<symbol name="TS2"> +<wire x1="0" y1="1.905" x2="0" y2="2.54" width="0.254" layer="94"/> +<wire x1="-4.445" y1="1.905" x2="-3.175" y2="1.905" width="0.254" layer="94"/> +<wire x1="-4.445" y1="-1.905" x2="-3.175" y2="-1.905" width="0.254" layer="94"/> +<wire x1="-4.445" y1="1.905" x2="-4.445" y2="0" width="0.254" layer="94"/> +<wire x1="-4.445" y1="0" x2="-4.445" y2="-1.905" width="0.254" layer="94"/> +<wire x1="-2.54" y1="0" x2="-1.905" y2="0" width="0.1524" layer="94"/> +<wire x1="-1.27" y1="0" x2="-0.635" y2="0" width="0.1524" layer="94"/> +<wire x1="-4.445" y1="0" x2="-3.175" y2="0" width="0.1524" layer="94"/> +<wire x1="2.54" y1="2.54" x2="0" y2="2.54" width="0.1524" layer="94"/> +<wire x1="2.54" y1="-2.54" x2="0" y2="-2.54" width="0.1524" layer="94"/> +<wire x1="0" y1="-2.54" x2="-1.27" y2="1.905" width="0.254" layer="94"/> +<circle x="0" y="-2.54" radius="0.127" width="0.4064" layer="94"/> +<circle x="0" y="2.54" radius="0.127" width="0.4064" layer="94"/> +<text x="-6.35" y="-2.54" size="1.778" layer="95" rot="R90">>NAME</text> +<text x="-3.81" y="3.175" size="1.778" layer="96" rot="R90">>VALUE</text> +<pin name="P" x="0" y="-5.08" visible="pad" length="short" direction="pas" swaplevel="2" rot="R90"/> +<pin name="S" x="0" y="5.08" visible="pad" length="short" direction="pas" swaplevel="1" rot="R270"/> +<pin name="S1" x="2.54" y="5.08" visible="pad" length="short" direction="pas" swaplevel="1" rot="R270"/> +<pin name="P1" x="2.54" y="-5.08" visible="pad" length="short" direction="pas" swaplevel="2" rot="R90"/> +</symbol> +<symbol name="LED"> +<description>LED</description> +<wire x1="1.27" y1="2.54" x2="0" y2="0" width="0.254" layer="94"/> +<wire x1="0" y1="0" x2="-1.27" y2="2.54" width="0.254" layer="94"/> +<wire x1="1.27" y1="0" x2="0" y2="0" width="0.254" layer="94"/> +<wire x1="0" y1="0" x2="-1.27" y2="0" width="0.254" layer="94"/> +<wire x1="1.27" y1="2.54" x2="0" y2="2.54" width="0.254" layer="94"/> +<wire x1="0" y1="2.54" x2="-1.27" y2="2.54" width="0.254" layer="94"/> +<wire x1="0" y1="2.54" x2="0" y2="0" width="0.1524" layer="94"/> +<wire x1="-2.032" y1="1.778" x2="-3.429" y2="0.381" width="0.1524" layer="94"/> +<wire x1="-1.905" y1="0.635" x2="-3.302" y2="-0.762" width="0.1524" layer="94"/> +<text x="3.556" y="-2.032" size="1.778" layer="95" rot="R90">>NAME</text> +<text x="5.715" y="-2.032" size="1.778" layer="96" rot="R90">>VALUE</text> +<pin name="C" x="0" y="-2.54" visible="off" length="short" direction="pas" rot="R90"/> +<pin name="A" x="0" y="5.08" visible="off" length="short" direction="pas" rot="R270"/> +<polygon width="0.1524" layer="94"> +<vertex x="-3.429" y="0.381"/> +<vertex x="-3.048" y="1.27"/> +<vertex x="-2.54" y="0.762"/> +</polygon> +<polygon width="0.1524" layer="94"> +<vertex x="-3.302" y="-0.762"/> +<vertex x="-2.921" y="0.127"/> +<vertex x="-2.413" y="-0.381"/> +</polygon> +</symbol> +<symbol name="OPAMP"> +<wire x1="-3.81" y1="-1.905" x2="-3.81" y2="-3.175" width="0.1524" layer="94"/> +<wire x1="-4.445" y1="-2.54" x2="-3.175" y2="-2.54" width="0.1524" layer="94"/> +<wire x1="-4.445" y1="2.54" x2="-3.175" y2="2.54" width="0.1524" layer="94"/> +<wire x1="-2.54" y1="5.08" x2="-2.54" y2="3.8862" width="0.1524" layer="94"/> +<wire x1="-2.54" y1="-3.9116" x2="-2.54" y2="-5.08" width="0.1524" layer="94"/> +<wire x1="5.08" y1="0" x2="-5.08" y2="5.08" width="0.4064" layer="94"/> +<wire x1="-5.08" y1="5.08" x2="-5.08" y2="-5.08" width="0.4064" layer="94"/> +<wire x1="-5.08" y1="-5.08" x2="5.08" y2="0" width="0.4064" layer="94"/> +<text x="2.54" y="5.715" size="1.778" layer="95">>NAME</text> +<text x="2.54" y="-5.08" size="1.778" layer="96">>VALUE</text> +<text x="-1.27" y="4.445" size="0.8128" layer="93" rot="R90">V+</text> +<text x="-1.27" y="-5.715" size="0.8128" layer="93" rot="R90">V-</text> +<pin name="-IN" x="-7.62" y="2.54" visible="pad" length="short" direction="in"/> +<pin name="+IN" x="-7.62" y="-2.54" visible="pad" length="short" direction="in"/> +<pin name="OUT" x="7.62" y="0" visible="pad" length="short" direction="out" rot="R180"/> +<pin name="V+" x="-2.54" y="7.62" visible="pad" length="short" direction="pwr" rot="R270"/> +<pin name="V-" x="-2.54" y="-7.62" visible="pad" length="short" direction="pwr" rot="R90"/> +</symbol> +<symbol name="ATXMEGA_A4U"> +<wire x1="-20.32" y1="40.64" x2="22.86" y2="40.64" width="0.254" layer="94"/> +<wire x1="22.86" y1="40.64" x2="22.86" y2="-40.64" width="0.254" layer="94"/> +<wire x1="22.86" y1="-40.64" x2="-20.32" y2="-40.64" width="0.254" layer="94"/> +<wire x1="-20.32" y1="-40.64" x2="-20.32" y2="40.64" width="0.254" layer="94"/> +<text x="-20.32" y="-43.18" size="1.778" layer="96">>VALUE</text> +<text x="-20.32" y="41.91" size="1.778" layer="95">>NAME</text> +<pin name="PE0/SDA" x="-25.4" y="-38.1" length="middle"/> +<pin name="PE1/XCK0/SCL" x="-25.4" y="-35.56" length="middle"/> +<pin name="PE2/RXD0" x="-25.4" y="-33.02" length="middle"/> +<pin name="PE3/TXD0" x="-25.4" y="-30.48" length="middle"/> +<pin name="PD7/TXD1/SCK/DP" x="27.94" y="-20.32" length="middle" rot="R180"/> +<pin name="PD6/RXD1/MISO/DM" x="27.94" y="-22.86" length="middle" rot="R180"/> +<pin name="PD5/XCK1/MOSI" x="27.94" y="-25.4" length="middle" rot="R180"/> +<pin name="PD4/CS" x="27.94" y="-27.94" length="middle" rot="R180"/> +<pin name="PD3/TXD0" x="27.94" y="-30.48" length="middle" rot="R180"/> +<pin name="PD2/RXD0" x="27.94" y="-33.02" length="middle" rot="R180"/> +<pin name="PD1/XCK0" x="27.94" y="-35.56" length="middle" rot="R180"/> +<pin name="PD0" x="27.94" y="-38.1" length="middle" rot="R180"/> +<pin name="PC7/TXD1/SCK" x="27.94" y="2.54" length="middle" rot="R180"/> +<pin name="PC6/RXD1/MISO" x="27.94" y="0" length="middle" rot="R180"/> +<pin name="PC5/XCK1/MOSI" x="27.94" y="-2.54" length="middle" rot="R180"/> +<pin name="PC4/CS" x="27.94" y="-5.08" length="middle" rot="R180"/> +<pin name="PC3/TXD0" x="27.94" y="-7.62" length="middle" rot="R180"/> +<pin name="PC2/RXD0" x="27.94" y="-10.16" length="middle" rot="R180"/> +<pin name="PC1/SCL/XCK0" x="27.94" y="-12.7" length="middle" rot="R180"/> +<pin name="PC0/SDA" x="27.94" y="-15.24" length="middle" rot="R180"/> +<pin name="PB3" x="27.94" y="15.24" length="middle" rot="R180"/> +<pin name="PB2" x="27.94" y="12.7" length="middle" rot="R180"/> +<pin name="PB1" x="27.94" y="10.16" length="middle" rot="R180"/> +<pin name="PB0" x="27.94" y="7.62" length="middle" rot="R180"/> +<pin name="PA6" x="27.94" y="35.56" length="middle" rot="R180"/> +<pin name="PA7" x="27.94" y="38.1" length="middle" rot="R180"/> +<pin name="PA5" x="27.94" y="33.02" length="middle" rot="R180"/> +<pin name="PA4" x="27.94" y="30.48" length="middle" rot="R180"/> +<pin name="PA3" x="27.94" y="27.94" length="middle" rot="R180"/> +<pin name="PA2" x="27.94" y="25.4" length="middle" rot="R180"/> +<pin name="PA1" x="27.94" y="22.86" length="middle" rot="R180"/> +<pin name="PA0" x="27.94" y="20.32" length="middle" rot="R180"/> +<pin name="AVCC" x="-25.4" y="22.86" length="middle" direction="pwr"/> +<pin name="GND3" x="-25.4" y="7.62" visible="pad" length="middle" direction="pwr"/> +<pin name="VCC2" x="-25.4" y="17.78" visible="pad" length="middle" direction="pwr"/> +<pin name="PR0(XT2)" x="-25.4" y="-25.4" length="middle"/> +<pin name="PR1(XT1)" x="-25.4" y="-20.32" length="middle"/> +<pin name="VCC1" x="-25.4" y="15.24" visible="pad" length="middle" direction="pwr"/> +<pin name="VCC" x="-25.4" y="12.7" length="middle" direction="pwr"/> +<pin name="GND1" x="-25.4" y="2.54" visible="pad" length="middle" direction="pwr"/> +<pin name="GND" x="-25.4" y="0" length="middle" direction="pwr"/> +<pin name="PDI_DATA" x="-25.4" y="33.02" length="middle"/> +<pin name="GND2" x="-25.4" y="5.08" visible="pad" length="middle" direction="pwr"/> +<pin name="!RESET!/PDI_CLK" x="-25.4" y="38.1" length="middle"/> +</symbol> +<symbol name="REGULATOR"> +<wire x1="-6.35" y1="5.08" x2="-6.35" y2="2.54" width="0.4064" layer="94"/> +<wire x1="-6.35" y1="2.54" x2="-6.35" y2="-1.27" width="0.4064" layer="94"/> +<wire x1="-6.35" y1="-1.27" x2="0" y2="-1.27" width="0.4064" layer="94"/> +<wire x1="0" y1="-1.27" x2="6.35" y2="-1.27" width="0.4064" layer="94"/> +<wire x1="6.35" y1="-1.27" x2="6.35" y2="2.54" width="0.4064" layer="94"/> +<wire x1="6.35" y1="2.54" x2="6.35" y2="5.08" width="0.4064" layer="94"/> +<wire x1="6.35" y1="5.08" x2="-6.35" y2="5.08" width="0.4064" layer="94"/> +<wire x1="-7.62" y1="2.54" x2="-6.35" y2="2.54" width="0.254" layer="94"/> +<wire x1="0" y1="-1.27" x2="0" y2="-2.54" width="0.254" layer="94"/> +<wire x1="6.35" y1="2.54" x2="7.62" y2="2.54" width="0.254" layer="94"/> +<text x="-6.35" y="-3.81" size="1.27" layer="95">>NAME</text> +<text x="1.27" y="-3.81" size="1.27" layer="96">>VALUE</text> +<pin name="IN" x="-7.62" y="2.54" length="point"/> +<pin name="GND" x="0" y="-2.54" length="point" rot="R90"/> +<pin name="OUT" x="7.62" y="2.54" length="point" rot="R180"/> +</symbol> +</symbols> +<devicesets> +<deviceset name="MICRO-USB" prefix="X"> +<description>SMD micro USB connector as found in the fablab inventory. +Three footprint variants included: +<ol> +<li> original, as described by manufacturer's datasheet +<li> for milling with the 1/100" bit +<li> for milling with the 1/64" bit +</ol> +<p>Made by Zaerc.</description> +<gates> +<gate name="G$1" symbol="USB-1" x="0" y="0"/> +</gates> +<devices> +<device name="_1/100" package="DX4R005HJ5_100"> +<connects> +<connect gate="G$1" pin="D+" pad="D+"/> +<connect gate="G$1" pin="D-" pad="D-"/> +<connect gate="G$1" pin="GND" pad="GND"/> +<connect gate="G$1" pin="VBUS" pad="VBUS"/> +</connects> +<technologies> +<technology name=""/> +</technologies> +</device> +<device name="_ORIG" package="DX4R005HJ5"> +<connects> +<connect gate="G$1" pin="D+" pad="D+"/> +<connect gate="G$1" pin="D-" pad="D-"/> +<connect gate="G$1" pin="GND" pad="GND"/> +<connect gate="G$1" pin="VBUS" pad="VBUS"/> +</connects> +<technologies> +<technology name=""/> +</technologies> +</device> +<device name="_1/64" package="DX4R005HJ5_64"> +<connects> +<connect gate="G$1" pin="D+" pad="D+"/> +<connect gate="G$1" pin="D-" pad="D-"/> +<connect gate="G$1" pin="GND" pad="GND"/> +<connect gate="G$1" pin="VBUS" pad="VBUS"/> +</connects> +<technologies> +<technology name=""/> +</technologies> +</device> +</devices> +</deviceset> +<deviceset name="CAP-UNPOLARIZED" prefix="C" uservalue="yes"> +<gates> +<gate name=">NAME" symbol="CAP-NONPOLARIZED" x="0" y="0"/> +</gates> +<devices> +<device name="" package="C1206"> +<connects> +<connect gate=">NAME" pin="1" pad="1"/> +<connect gate=">NAME" pin="2" pad="2"/> +</connects> +<technologies> +<technology name=""/> +</technologies> +</device> +<device name="FAB" package="C1206FAB"> +<connects> +<connect gate=">NAME" pin="1" pad="1"/> +<connect gate=">NAME" pin="2" pad="2"/> +</connects> +<technologies> +<technology name=""/> +</technologies> +</device> +<device name="2220" package="C2220"> +<connects> +<connect gate=">NAME" pin="1" pad="1"/> +<connect gate=">NAME" pin="2" pad="2"/> +</connects> +<technologies> +<technology name=""/> +</technologies> +</device> +</devices> +</deviceset> +<deviceset name="CRYSTAL"> +<gates> +<gate name="G$1" symbol="CRYSTAL" x="0" y="0"/> +</gates> +<devices> +<device name="" package="2-SMD-5X3MM"> +<connects> +<connect gate="G$1" pin="1" pad="P$1"/> +<connect gate="G$1" pin="2" pad="P$2"/> +</connects> +<technologies> +<technology name=""/> +</technologies> +</device> +<device name="SMALL" package="2-SMD-1-5X3-2MM"> +<connects> +<connect gate="G$1" pin="1" pad="P$1"/> +<connect gate="G$1" pin="2" pad="P$2"/> +</connects> +<technologies> +<technology name=""/> +</technologies> +</device> +</devices> +</deviceset> +<deviceset name="RES-US" prefix="R" uservalue="yes"> +<description><b>Resistor (US Symbol)</b> +<p> +Variants with postfix FAB are widened to allow the routing of internal traces</description> +<gates> +<gate name="G$1" symbol="R-US" x="0" y="0"/> +</gates> +<devices> +<device name="1206" package="R1206"> +<connects> +<connect gate="G$1" pin="1" pad="1"/> +<connect gate="G$1" pin="2" pad="2"/> +</connects> +<technologies> +<technology name=""/> +</technologies> +</device> +<device name="1206W" package="R1206W"> +<connects> +<connect gate="G$1" pin="1" pad="1"/> +<connect gate="G$1" pin="2" pad="2"/> +</connects> +<technologies> +<technology name=""/> +</technologies> +</device> +<device name="1206FAB" package="R1206FAB"> +<connects> +<connect gate="G$1" pin="1" pad="1"/> +<connect gate="G$1" pin="2" pad="2"/> +</connects> +<technologies> +<technology name=""/> +</technologies> +</device> +</devices> +</deviceset> +<deviceset name="AVRISP"> +<gates> +<gate name="G$1" symbol="AVRISP" x="0" y="0"/> +</gates> +<devices> +<device name="SMD" package="2X03SMD"> +<connects> +<connect gate="G$1" pin="GND" pad="6"/> +<connect gate="G$1" pin="MISO" pad="1"/> +<connect gate="G$1" pin="MOSI" pad="4"/> +<connect gate="G$1" pin="RST" pad="5"/> +<connect gate="G$1" pin="SCK" pad="3"/> +<connect gate="G$1" pin="VCC" pad="2"/> +</connects> +<technologies> +<technology name=""/> +</technologies> +</device> +<device name="" package="2X03"> +<connects> +<connect gate="G$1" pin="GND" pad="6"/> +<connect gate="G$1" pin="MISO" pad="1"/> +<connect gate="G$1" pin="MOSI" pad="4"/> +<connect gate="G$1" pin="RST" pad="5"/> +<connect gate="G$1" pin="SCK" pad="3"/> +<connect gate="G$1" pin="VCC" pad="2"/> +</connects> +<technologies> +<technology name=""/> +</technologies> +</device> +</devices> +</deviceset> +<deviceset name="6MM_SWITCH" prefix="S" uservalue="yes"> +<description><b>OMRON SWITCH</b></description> +<gates> +<gate name="2" symbol="TS2" x="0" y="0"/> +</gates> +<devices> +<device name="6MM_SWITCH" package="6MM_SWITCH"> +<connects> +<connect gate="2" pin="P" pad="1"/> +<connect gate="2" pin="P1" pad="2"/> +<connect gate="2" pin="S" pad="3"/> +<connect gate="2" pin="S1" pad="4"/> +</connects> +<technologies> +<technology name=""/> +</technologies> +</device> +</devices> +</deviceset> +<deviceset name="LED"> +<description>LED</description> +<gates> +<gate name="G$1" symbol="LED" x="0" y="0"/> +</gates> +<devices> +<device name="" package="LED1206"> +<connects> +<connect gate="G$1" pin="A" pad="1"/> +<connect gate="G$1" pin="C" pad="2"/> +</connects> +<technologies> +<technology name=""/> +</technologies> +</device> +<device name="FAB1206" package="LED1206FAB"> +<connects> +<connect gate="G$1" pin="A" pad="1"/> +<connect gate="G$1" pin="C" pad="2"/> +</connects> +<technologies> +<technology name=""/> +</technologies> +</device> +<device name="5MM" package="5MM"> +<connects> +<connect gate="G$1" pin="A" pad="IN"/> +<connect gate="G$1" pin="C" pad="OUT"/> +</connects> +<technologies> +<technology name=""/> +</technologies> +</device> +</devices> +</deviceset> +<deviceset name="OPAMP" prefix="IC"> +<description><b>Rail-to-Rail Operational Amplifiers</b><p> +Single-Supply, MicroAmplifier(TM) Series</description> +<gates> +<gate name="G$1" symbol="OPAMP" x="0" y="0"/> +</gates> +<devices> +<device name="SOT23-5" package="SOT23-5"> +<connects> +<connect gate="G$1" pin="+IN" pad="3"/> +<connect gate="G$1" pin="-IN" pad="4"/> +<connect gate="G$1" pin="OUT" pad="1"/> +<connect gate="G$1" pin="V+" pad="5"/> +<connect gate="G$1" pin="V-" pad="2"/> +</connects> +<technologies> +<technology name=""/> +</technologies> +</device> +<device name="SO08" package="SO08"> +<connects> +<connect gate="G$1" pin="+IN" pad="3"/> +<connect gate="G$1" pin="-IN" pad="2"/> +<connect gate="G$1" pin="OUT" pad="6"/> +<connect gate="G$1" pin="V+" pad="7"/> +<connect gate="G$1" pin="V-" pad="4"/> +</connects> +<technologies> +<technology name=""/> +</technologies> +</device> +</devices> +</deviceset> +<deviceset name="ATXMEGA_A4U"> +<gates> +<gate name="G$1" symbol="ATXMEGA_A4U" x="0" y="0"/> +</gates> +<devices> +<device name="TQFP-44-1-64" package="TQFP44-13THIN"> +<connects> +<connect gate="G$1" pin="!RESET!/PDI_CLK" pad="35"/> +<connect gate="G$1" pin="AVCC" pad="39"/> +<connect gate="G$1" pin="GND" pad="8"/> +<connect gate="G$1" pin="GND1" pad="18"/> +<connect gate="G$1" pin="GND2" pad="30"/> +<connect gate="G$1" pin="GND3" pad="38"/> +<connect gate="G$1" pin="PA0" pad="40"/> +<connect gate="G$1" pin="PA1" pad="41"/> +<connect gate="G$1" pin="PA2" pad="42"/> +<connect gate="G$1" pin="PA3" pad="43"/> +<connect gate="G$1" pin="PA4" pad="44"/> +<connect gate="G$1" pin="PA5" pad="1"/> +<connect gate="G$1" pin="PA6" pad="2"/> +<connect gate="G$1" pin="PA7" pad="3"/> +<connect gate="G$1" pin="PB0" pad="4"/> +<connect gate="G$1" pin="PB1" pad="5"/> +<connect gate="G$1" pin="PB2" pad="6"/> +<connect gate="G$1" pin="PB3" pad="7"/> +<connect gate="G$1" pin="PC0/SDA" pad="10"/> +<connect gate="G$1" pin="PC1/SCL/XCK0" pad="11"/> +<connect gate="G$1" pin="PC2/RXD0" pad="12"/> +<connect gate="G$1" pin="PC3/TXD0" pad="13"/> +<connect gate="G$1" pin="PC4/CS" pad="14"/> +<connect gate="G$1" pin="PC5/XCK1/MOSI" pad="15"/> +<connect gate="G$1" pin="PC6/RXD1/MISO" pad="16"/> +<connect gate="G$1" pin="PC7/TXD1/SCK" pad="17"/> +<connect gate="G$1" pin="PD0" pad="20"/> +<connect gate="G$1" pin="PD1/XCK0" pad="21"/> +<connect gate="G$1" pin="PD2/RXD0" pad="22"/> +<connect gate="G$1" pin="PD3/TXD0" pad="23"/> +<connect gate="G$1" pin="PD4/CS" pad="24"/> +<connect gate="G$1" pin="PD5/XCK1/MOSI" pad="25"/> +<connect gate="G$1" pin="PD6/RXD1/MISO/DM" pad="26"/> +<connect gate="G$1" pin="PD7/TXD1/SCK/DP" pad="27"/> +<connect gate="G$1" pin="PDI_DATA" pad="34"/> +<connect gate="G$1" pin="PE0/SDA" pad="28"/> +<connect gate="G$1" pin="PE1/XCK0/SCL" pad="29"/> +<connect gate="G$1" pin="PE2/RXD0" pad="32"/> +<connect gate="G$1" pin="PE3/TXD0" pad="33"/> +<connect gate="G$1" pin="PR0(XT2)" pad="36"/> +<connect gate="G$1" pin="PR1(XT1)" pad="37"/> +<connect gate="G$1" pin="VCC" pad="9"/> +<connect gate="G$1" pin="VCC1" pad="19"/> +<connect gate="G$1" pin="VCC2" pad="31"/> +</connects> +<technologies> +<technology name=""/> +</technologies> +</device> +<device name="VFQFN-44" package="QFN-44-7X7"> +<connects> +<connect gate="G$1" pin="!RESET!/PDI_CLK" pad="35"/> +<connect gate="G$1" pin="AVCC" pad="39"/> +<connect gate="G$1" pin="GND" pad="8 TH"/> +<connect gate="G$1" pin="GND1" pad="18"/> +<connect gate="G$1" pin="GND2" pad="30"/> +<connect gate="G$1" pin="GND3" pad="38"/> +<connect gate="G$1" pin="PA0" pad="40"/> +<connect gate="G$1" pin="PA1" pad="41"/> +<connect gate="G$1" pin="PA2" pad="42"/> +<connect gate="G$1" pin="PA3" pad="43"/> +<connect gate="G$1" pin="PA4" pad="44"/> +<connect gate="G$1" pin="PA5" pad="1"/> +<connect gate="G$1" pin="PA6" pad="2"/> +<connect gate="G$1" pin="PA7" pad="3"/> +<connect gate="G$1" pin="PB0" pad="4"/> +<connect gate="G$1" pin="PB1" pad="5"/> +<connect gate="G$1" pin="PB2" pad="6"/> +<connect gate="G$1" pin="PB3" pad="7"/> +<connect gate="G$1" pin="PC0/SDA" pad="10"/> +<connect gate="G$1" pin="PC1/SCL/XCK0" pad="11"/> +<connect gate="G$1" pin="PC2/RXD0" pad="12"/> +<connect gate="G$1" pin="PC3/TXD0" pad="13"/> +<connect gate="G$1" pin="PC4/CS" pad="14"/> +<connect gate="G$1" pin="PC5/XCK1/MOSI" pad="15"/> +<connect gate="G$1" pin="PC6/RXD1/MISO" pad="16"/> +<connect gate="G$1" pin="PC7/TXD1/SCK" pad="17"/> +<connect gate="G$1" pin="PD0" pad="20"/> +<connect gate="G$1" pin="PD1/XCK0" pad="21"/> +<connect gate="G$1" pin="PD2/RXD0" pad="22"/> +<connect gate="G$1" pin="PD3/TXD0" pad="23"/> +<connect gate="G$1" pin="PD4/CS" pad="24"/> +<connect gate="G$1" pin="PD5/XCK1/MOSI" pad="25"/> +<connect gate="G$1" pin="PD6/RXD1/MISO/DM" pad="26"/> +<connect gate="G$1" pin="PD7/TXD1/SCK/DP" pad="27"/> +<connect gate="G$1" pin="PDI_DATA" pad="34"/> +<connect gate="G$1" pin="PE0/SDA" pad="28"/> +<connect gate="G$1" pin="PE1/XCK0/SCL" pad="29"/> +<connect gate="G$1" pin="PE2/RXD0" pad="32"/> +<connect gate="G$1" pin="PE3/TXD0" pad="33"/> +<connect gate="G$1" pin="PR0(XT2)" pad="36"/> +<connect gate="G$1" pin="PR1(XT1)" pad="37"/> +<connect gate="G$1" pin="VCC" pad="9"/> +<connect gate="G$1" pin="VCC1" pad="19"/> +<connect gate="G$1" pin="VCC2" pad="31"/> +</connects> +<technologies> +<technology name=""/> +</technologies> +</device> +</devices> +</deviceset> +<deviceset name="REGULATOR" prefix="IC" uservalue="yes"> +<gates> +<gate name="G$1" symbol="REGULATOR" x="0" y="0"/> +</gates> +<devices> +<device name="SOT23" package="SOT23"> +<connects> +<connect gate="G$1" pin="GND" pad="3"/> +<connect gate="G$1" pin="IN" pad="2"/> +<connect gate="G$1" pin="OUT" pad="1"/> +</connects> +<technologies> +<technology name=""/> +</technologies> +</device> +</devices> +</deviceset> +</devicesets> +</library> +<library name="supply2" urn="urn:adsk.eagle:library:372"> +<description><b>Supply Symbols</b><p> +GND, VCC, 0V, +5V, -5V, etc.<p> +Please keep in mind, that these devices are necessary for the +automatic wiring of the supply signals.<p> +The pin name defined in the symbol is identical to the net which is to be wired automatically.<p> +In this library the device names are the same as the pin names of the symbols, therefore the correct signal names appear next to the supply symbols in the schematic.<p> +<author>Created by librarian@cadsoft.de</author></description> +<packages> +</packages> +<symbols> +<symbol name="GND" urn="urn:adsk.eagle:symbol:26990/1" library_version="2"> +<wire x1="-1.27" y1="0" x2="1.27" y2="0" width="0.254" layer="94"/> +<wire x1="1.27" y1="0" x2="0" y2="-1.27" width="0.254" layer="94"/> +<wire x1="0" y1="-1.27" x2="-1.27" y2="0" width="0.254" layer="94"/> +<text x="-1.905" y="-3.175" size="1.778" layer="96">>VALUE</text> +<pin name="GND" x="0" y="2.54" visible="off" length="short" direction="sup" rot="R270"/> +</symbol> +</symbols> +<devicesets> +<deviceset name="GND" urn="urn:adsk.eagle:component:27037/1" prefix="SUPPLY" library_version="2"> +<description><b>SUPPLY SYMBOL</b></description> +<gates> +<gate name="GND" symbol="GND" x="0" y="0"/> +</gates> +<devices> +<device name=""> +<technologies> +<technology name=""/> +</technologies> +</device> +</devices> +</deviceset> +</devicesets> +</library> +<library name="supply1" urn="urn:adsk.eagle:library:371"> +<description><b>Supply Symbols</b><p> + GND, VCC, 0V, +5V, -5V, etc.<p> + Please keep in mind, that these devices are necessary for the + automatic wiring of the supply signals.<p> + The pin name defined in the symbol is identical to the net which is to be wired automatically.<p> + In this library the device names are the same as the pin names of the symbols, therefore the correct signal names appear next to the supply symbols in the schematic.<p> + <author>Created by librarian@cadsoft.de</author></description> +<packages> +</packages> +<symbols> +<symbol name="+5V" urn="urn:adsk.eagle:symbol:26929/1" library_version="1"> +<wire x1="1.27" y1="-1.905" x2="0" y2="0" width="0.254" layer="94"/> +<wire x1="0" y1="0" x2="-1.27" y2="-1.905" width="0.254" layer="94"/> +<text x="-2.54" y="-5.08" size="1.778" layer="96" rot="R90">>VALUE</text> +<pin name="+5V" x="0" y="-2.54" visible="off" length="short" direction="sup" rot="R90"/> +</symbol> +<symbol name="+3V3" urn="urn:adsk.eagle:symbol:26950/1" library_version="1"> +<wire x1="1.27" y1="-1.905" x2="0" y2="0" width="0.254" layer="94"/> +<wire x1="0" y1="0" x2="-1.27" y2="-1.905" width="0.254" layer="94"/> +<text x="-2.54" y="-5.08" size="1.778" layer="96" rot="R90">>VALUE</text> +<pin name="+3V3" x="0" y="-2.54" visible="off" length="short" direction="sup" rot="R90"/> +</symbol> +</symbols> +<devicesets> +<deviceset name="+5V" urn="urn:adsk.eagle:component:26963/1" prefix="P+" library_version="1"> +<description><b>SUPPLY SYMBOL</b></description> +<gates> +<gate name="1" symbol="+5V" x="0" y="0"/> +</gates> +<devices> +<device name=""> +<technologies> +<technology name=""/> +</technologies> +</device> +</devices> +</deviceset> +<deviceset name="+3V3" urn="urn:adsk.eagle:component:26981/1" prefix="+3V3" library_version="1"> +<description><b>SUPPLY SYMBOL</b></description> +<gates> +<gate name="G$1" symbol="+3V3" x="0" y="0"/> +</gates> +<devices> +<device name=""> +<technologies> +<technology name=""/> +</technologies> +</device> +</devices> +</deviceset> +</devicesets> +</library> +<library name="SparkFun-Connectors" urn="urn:adsk.eagle:library:513"> +<description><h3>SparkFun Connectors</h3> +This library contains electrically-functional connectors. +<br> +<br> +We've spent an enormous amount of time creating and checking these footprints and parts, but it is <b> the end user's responsibility</b> to ensure correctness and suitablity for a given componet or application. +<br> +<br>If you enjoy using this library, please buy one of our products at <a href=" www.sparkfun.com">SparkFun.com</a>. +<br> +<br> +<b>Licensing:</b> Creative Commons ShareAlike 4.0 International - https://creativecommons.org/licenses/by-sa/4.0/ +<br> +<br> +You are welcome to use this library for commercial purposes. For attribution, we ask that when you begin to sell your device using our footprint, you email us with a link to the product being sold. We want bragging rights that we helped (in a very small part) to create your 8th world wonder. We would like the opportunity to feature your device on our homepage.</description> +<packages> +<package name="1X08" urn="urn:adsk.eagle:footprint:37760/1" library_version="1"> +<description><h3>Plated Through Hole -8 Pin</h3> +<p>Specifications: +<ul><li>Pin count:8</li> +<li>Pin pitch:0.1"</li> +</ul></p> +<p>Example device(s): +<ul><li>CONN_08</li> +</ul></p></description> +<wire x1="14.605" y1="1.27" x2="15.875" y2="1.27" width="0.2032" layer="21"/> +<wire x1="15.875" y1="1.27" x2="16.51" y2="0.635" width="0.2032" layer="21"/> +<wire x1="16.51" y1="-0.635" x2="15.875" y2="-1.27" width="0.2032" layer="21"/> +<wire x1="11.43" y1="0.635" x2="12.065" y2="1.27" width="0.2032" layer="21"/> +<wire x1="12.065" y1="1.27" x2="13.335" y2="1.27" width="0.2032" layer="21"/> +<wire x1="13.335" y1="1.27" x2="13.97" y2="0.635" width="0.2032" layer="21"/> +<wire x1="13.97" y1="-0.635" x2="13.335" y2="-1.27" width="0.2032" layer="21"/> +<wire x1="13.335" y1="-1.27" x2="12.065" y2="-1.27" width="0.2032" layer="21"/> +<wire x1="12.065" y1="-1.27" x2="11.43" y2="-0.635" width="0.2032" layer="21"/> +<wire x1="14.605" y1="1.27" x2="13.97" y2="0.635" width="0.2032" layer="21"/> +<wire x1="13.97" y1="-0.635" x2="14.605" y2="-1.27" width="0.2032" layer="21"/> +<wire x1="15.875" y1="-1.27" x2="14.605" y2="-1.27" width="0.2032" layer="21"/> +<wire x1="6.985" y1="1.27" x2="8.255" y2="1.27" width="0.2032" layer="21"/> +<wire x1="8.255" y1="1.27" x2="8.89" y2="0.635" width="0.2032" layer="21"/> +<wire x1="8.89" y1="-0.635" x2="8.255" y2="-1.27" width="0.2032" layer="21"/> +<wire x1="8.89" y1="0.635" x2="9.525" y2="1.27" width="0.2032" layer="21"/> +<wire x1="9.525" y1="1.27" x2="10.795" y2="1.27" width="0.2032" layer="21"/> +<wire x1="10.795" y1="1.27" x2="11.43" y2="0.635" width="0.2032" layer="21"/> +<wire x1="11.43" y1="-0.635" x2="10.795" y2="-1.27" width="0.2032" layer="21"/> +<wire x1="10.795" y1="-1.27" x2="9.525" y2="-1.27" width="0.2032" layer="21"/> +<wire x1="9.525" y1="-1.27" x2="8.89" y2="-0.635" width="0.2032" layer="21"/> +<wire x1="3.81" y1="0.635" x2="4.445" y2="1.27" width="0.2032" layer="21"/> +<wire x1="4.445" y1="1.27" x2="5.715" y2="1.27" width="0.2032" layer="21"/> +<wire x1="5.715" y1="1.27" x2="6.35" y2="0.635" width="0.2032" layer="21"/> +<wire x1="6.35" y1="-0.635" x2="5.715" y2="-1.27" width="0.2032" layer="21"/> +<wire x1="5.715" y1="-1.27" x2="4.445" y2="-1.27" width="0.2032" layer="21"/> +<wire x1="4.445" y1="-1.27" x2="3.81" y2="-0.635" width="0.2032" layer="21"/> +<wire x1="6.985" y1="1.27" x2="6.35" y2="0.635" width="0.2032" layer="21"/> +<wire x1="6.35" y1="-0.635" x2="6.985" y2="-1.27" width="0.2032" layer="21"/> +<wire x1="8.255" y1="-1.27" x2="6.985" y2="-1.27" width="0.2032" layer="21"/> +<wire x1="-0.635" y1="1.27" x2="0.635" y2="1.27" width="0.2032" layer="21"/> +<wire x1="0.635" y1="1.27" x2="1.27" y2="0.635" width="0.2032" layer="21"/> +<wire x1="1.27" y1="-0.635" x2="0.635" y2="-1.27" width="0.2032" layer="21"/> +<wire x1="1.27" y1="0.635" x2="1.905" y2="1.27" width="0.2032" layer="21"/> +<wire x1="1.905" y1="1.27" x2="3.175" y2="1.27" width="0.2032" layer="21"/> +<wire x1="3.175" y1="1.27" x2="3.81" y2="0.635" width="0.2032" layer="21"/> +<wire x1="3.81" y1="-0.635" x2="3.175" y2="-1.27" width="0.2032" layer="21"/> +<wire x1="3.175" y1="-1.27" x2="1.905" y2="-1.27" width="0.2032" layer="21"/> +<wire x1="1.905" y1="-1.27" x2="1.27" y2="-0.635" width="0.2032" layer="21"/> +<wire x1="-1.27" y1="0.635" x2="-1.27" y2="-0.635" width="0.2032" layer="21"/> +<wire x1="-0.635" y1="1.27" x2="-1.27" y2="0.635" width="0.2032" layer="21"/> +<wire x1="-1.27" y1="-0.635" x2="-0.635" y2="-1.27" width="0.2032" layer="21"/> +<wire x1="0.635" y1="-1.27" x2="-0.635" y2="-1.27" width="0.2032" layer="21"/> +<wire x1="17.145" y1="1.27" x2="18.415" y2="1.27" width="0.2032" layer="21"/> +<wire x1="18.415" y1="1.27" x2="19.05" y2="0.635" width="0.2032" layer="21"/> +<wire x1="19.05" y1="0.635" x2="19.05" y2="-0.635" width="0.2032" layer="21"/> +<wire x1="19.05" y1="-0.635" x2="18.415" y2="-1.27" width="0.2032" layer="21"/> +<wire x1="17.145" y1="1.27" x2="16.51" y2="0.635" width="0.2032" layer="21"/> +<wire x1="16.51" y1="-0.635" x2="17.145" y2="-1.27" width="0.2032" layer="21"/> +<wire x1="18.415" y1="-1.27" x2="17.145" y2="-1.27" width="0.2032" layer="21"/> +<pad name="1" x="0" y="0" drill="1.016" diameter="1.8796" rot="R90"/> +<pad name="2" x="2.54" y="0" drill="1.016" diameter="1.8796" rot="R90"/> +<pad name="3" x="5.08" y="0" drill="1.016" diameter="1.8796" rot="R90"/> +<pad name="4" x="7.62" y="0" drill="1.016" diameter="1.8796" rot="R90"/> +<pad name="5" x="10.16" y="0" drill="1.016" diameter="1.8796" rot="R90"/> +<pad name="6" x="12.7" y="0" drill="1.016" diameter="1.8796" rot="R90"/> +<pad name="7" x="15.24" y="0" drill="1.016" diameter="1.8796" rot="R90"/> +<pad name="8" x="17.78" y="0" drill="1.016" diameter="1.8796" rot="R90"/> +<rectangle x1="14.986" y1="-0.254" x2="15.494" y2="0.254" layer="51"/> +<rectangle x1="12.446" y1="-0.254" x2="12.954" y2="0.254" layer="51"/> +<rectangle x1="9.906" y1="-0.254" x2="10.414" y2="0.254" layer="51"/> +<rectangle x1="7.366" y1="-0.254" x2="7.874" y2="0.254" layer="51"/> +<rectangle x1="4.826" y1="-0.254" x2="5.334" y2="0.254" layer="51"/> +<rectangle x1="2.286" y1="-0.254" x2="2.794" y2="0.254" layer="51"/> +<rectangle x1="-0.254" y1="-0.254" x2="0.254" y2="0.254" layer="51"/> +<rectangle x1="17.526" y1="-0.254" x2="18.034" y2="0.254" layer="51"/> +<text x="-1.27" y="1.397" size="0.6096" layer="25" font="vector" ratio="20">>NAME</text> +<text x="-1.27" y="-2.032" size="0.6096" layer="27" font="vector" ratio="20">>VALUE</text> +</package> +<package name="1X08_LOCK" urn="urn:adsk.eagle:footprint:37761/1" library_version="1"> +<description><h3>Plated Through Hole -8 Pin Locking Footprint</h3> +Holes are offset 0.005", to hold pins in place during soldering. +<p>Specifications: +<ul><li>Pin count:8</li> +<li>Pin pitch:0.1"</li> +</ul></p> +<p>Example device(s): +<ul><li>CONN_08</li> +</ul></p></description> +<wire x1="14.605" y1="1.27" x2="15.875" y2="1.27" width="0.2032" layer="21"/> +<wire x1="15.875" y1="1.27" x2="16.51" y2="0.635" width="0.2032" layer="21"/> +<wire x1="16.51" y1="-0.635" x2="15.875" y2="-1.27" width="0.2032" layer="21"/> +<wire x1="11.43" y1="0.635" x2="12.065" y2="1.27" width="0.2032" layer="21"/> +<wire x1="12.065" y1="1.27" x2="13.335" y2="1.27" width="0.2032" layer="21"/> +<wire x1="13.335" y1="1.27" x2="13.97" y2="0.635" width="0.2032" layer="21"/> +<wire x1="13.97" y1="-0.635" x2="13.335" y2="-1.27" width="0.2032" layer="21"/> +<wire x1="13.335" y1="-1.27" x2="12.065" y2="-1.27" width="0.2032" layer="21"/> +<wire x1="12.065" y1="-1.27" x2="11.43" y2="-0.635" width="0.2032" layer="21"/> +<wire x1="14.605" y1="1.27" x2="13.97" y2="0.635" width="0.2032" layer="21"/> +<wire x1="13.97" y1="-0.635" x2="14.605" y2="-1.27" width="0.2032" layer="21"/> +<wire x1="15.875" y1="-1.27" x2="14.605" y2="-1.27" width="0.2032" layer="21"/> +<wire x1="6.985" y1="1.27" x2="8.255" y2="1.27" width="0.2032" layer="21"/> +<wire x1="8.255" y1="1.27" x2="8.89" y2="0.635" width="0.2032" layer="21"/> +<wire x1="8.89" y1="-0.635" x2="8.255" y2="-1.27" width="0.2032" layer="21"/> +<wire x1="8.89" y1="0.635" x2="9.525" y2="1.27" width="0.2032" layer="21"/> +<wire x1="9.525" y1="1.27" x2="10.795" y2="1.27" width="0.2032" layer="21"/> +<wire x1="10.795" y1="1.27" x2="11.43" y2="0.635" width="0.2032" layer="21"/> +<wire x1="11.43" y1="-0.635" x2="10.795" y2="-1.27" width="0.2032" layer="21"/> +<wire x1="10.795" y1="-1.27" x2="9.525" y2="-1.27" width="0.2032" layer="21"/> +<wire x1="9.525" y1="-1.27" x2="8.89" y2="-0.635" width="0.2032" layer="21"/> +<wire x1="3.81" y1="0.635" x2="4.445" y2="1.27" width="0.2032" layer="21"/> +<wire x1="4.445" y1="1.27" x2="5.715" y2="1.27" width="0.2032" layer="21"/> +<wire x1="5.715" y1="1.27" x2="6.35" y2="0.635" width="0.2032" layer="21"/> +<wire x1="6.35" y1="-0.635" x2="5.715" y2="-1.27" width="0.2032" layer="21"/> +<wire x1="5.715" y1="-1.27" x2="4.445" y2="-1.27" width="0.2032" layer="21"/> +<wire x1="4.445" y1="-1.27" x2="3.81" y2="-0.635" width="0.2032" layer="21"/> +<wire x1="6.985" y1="1.27" x2="6.35" y2="0.635" width="0.2032" layer="21"/> +<wire x1="6.35" y1="-0.635" x2="6.985" y2="-1.27" width="0.2032" layer="21"/> +<wire x1="8.255" y1="-1.27" x2="6.985" y2="-1.27" width="0.2032" layer="21"/> +<wire x1="-0.635" y1="1.27" x2="0.635" y2="1.27" width="0.2032" layer="21"/> +<wire x1="0.635" y1="1.27" x2="1.27" y2="0.635" width="0.2032" layer="21"/> +<wire x1="1.27" y1="-0.635" x2="0.635" y2="-1.27" width="0.2032" layer="21"/> +<wire x1="1.27" y1="0.635" x2="1.905" y2="1.27" width="0.2032" layer="21"/> +<wire x1="1.905" y1="1.27" x2="3.175" y2="1.27" width="0.2032" layer="21"/> +<wire x1="3.175" y1="1.27" x2="3.81" y2="0.635" width="0.2032" layer="21"/> +<wire x1="3.81" y1="-0.635" x2="3.175" y2="-1.27" width="0.2032" layer="21"/> +<wire x1="3.175" y1="-1.27" x2="1.905" y2="-1.27" width="0.2032" layer="21"/> +<wire x1="1.905" y1="-1.27" x2="1.27" y2="-0.635" width="0.2032" layer="21"/> +<wire x1="-1.27" y1="0.635" x2="-1.27" y2="-0.635" width="0.2032" layer="21"/> +<wire x1="-0.635" y1="1.27" x2="-1.27" y2="0.635" width="0.2032" layer="21"/> +<wire x1="-1.27" y1="-0.635" x2="-0.635" y2="-1.27" width="0.2032" layer="21"/> +<wire x1="0.635" y1="-1.27" x2="-0.635" y2="-1.27" width="0.2032" layer="21"/> +<wire x1="17.145" y1="1.27" x2="18.415" y2="1.27" width="0.2032" layer="21"/> +<wire x1="18.415" y1="1.27" x2="19.05" y2="0.635" width="0.2032" layer="21"/> +<wire x1="19.05" y1="0.635" x2="19.05" y2="-0.635" width="0.2032" layer="21"/> +<wire x1="19.05" y1="-0.635" x2="18.415" y2="-1.27" width="0.2032" layer="21"/> +<wire x1="17.145" y1="1.27" x2="16.51" y2="0.635" width="0.2032" layer="21"/> +<wire x1="16.51" y1="-0.635" x2="17.145" y2="-1.27" width="0.2032" layer="21"/> +<wire x1="18.415" y1="-1.27" x2="17.145" y2="-1.27" width="0.2032" layer="21"/> +<pad name="1" x="0" y="0.127" drill="1.016" diameter="1.8796" rot="R90"/> +<pad name="2" x="2.54" y="-0.127" drill="1.016" diameter="1.8796" rot="R90"/> +<pad name="3" x="5.08" y="0.127" drill="1.016" diameter="1.8796" rot="R90"/> +<pad name="4" x="7.62" y="-0.127" drill="1.016" diameter="1.8796" rot="R90"/> +<pad name="5" x="10.16" y="0.127" drill="1.016" diameter="1.8796" rot="R90"/> +<pad name="6" x="12.7" y="-0.127" drill="1.016" diameter="1.8796" rot="R90"/> +<pad name="7" x="15.24" y="0.127" drill="1.016" diameter="1.8796" rot="R90"/> +<pad name="8" x="17.78" y="-0.127" drill="1.016" diameter="1.8796" rot="R90"/> +<rectangle x1="14.986" y1="-0.254" x2="15.494" y2="0.254" layer="51"/> +<rectangle x1="12.446" y1="-0.254" x2="12.954" y2="0.254" layer="51"/> +<rectangle x1="9.906" y1="-0.254" x2="10.414" y2="0.254" layer="51"/> +<rectangle x1="7.366" y1="-0.254" x2="7.874" y2="0.254" layer="51"/> +<rectangle x1="4.826" y1="-0.254" x2="5.334" y2="0.254" layer="51"/> +<rectangle x1="2.286" y1="-0.254" x2="2.794" y2="0.254" layer="51"/> +<rectangle x1="-0.254" y1="-0.254" x2="0.254" y2="0.254" layer="51"/> +<rectangle x1="17.526" y1="-0.254" x2="18.034" y2="0.254" layer="51"/> +<text x="-1.27" y="1.397" size="0.6096" layer="25" font="vector" ratio="20">>NAME</text> +<text x="-1.27" y="-2.032" size="0.6096" layer="27" font="vector" ratio="20">>VALUE</text> +</package> +<package name="1X08_LOCK_LONGPADS" urn="urn:adsk.eagle:footprint:37762/1" library_version="1"> +<description><h3>Plated Through Hole -8 Pin Locking Footprint with Long Pads</h3> +Holes are offset 0.005", to hold pins in place during soldering. +<p>Specifications: +<ul><li>Pin count:8</li> +<li>Pin pitch:0.1"</li> +</ul></p> +<p>Example device(s): +<ul><li>CONN_08</li> +</ul></p></description> +<wire x1="1.524" y1="0" x2="1.016" y2="0" width="0.2032" layer="21"/> +<wire x1="4.064" y1="0" x2="3.556" y2="0" width="0.2032" layer="21"/> +<wire x1="6.604" y1="0" x2="6.096" y2="0" width="0.2032" layer="21"/> +<wire x1="9.144" y1="0" x2="8.636" y2="0" width="0.2032" layer="21"/> +<wire x1="11.684" y1="0" x2="11.176" y2="0" width="0.2032" layer="21"/> +<wire x1="-1.27" y1="0" x2="-1.016" y2="0" width="0.2032" layer="21"/> +<wire x1="-1.27" y1="0" x2="-1.27" y2="0.9906" width="0.2032" layer="21"/> +<wire x1="-1.27" y1="0.9906" x2="-0.9906" y2="1.27" width="0.2032" layer="21"/> +<wire x1="-1.27" y1="0" x2="-1.27" y2="-0.9906" width="0.2032" layer="21"/> +<wire x1="-1.27" y1="-0.9906" x2="-0.9906" y2="-1.27" width="0.2032" layer="21"/> +<wire x1="14.224" y1="0" x2="13.716" y2="0" width="0.2032" layer="21"/> +<wire x1="16.764" y1="0" x2="16.256" y2="0" width="0.2032" layer="21"/> +<wire x1="19.05" y1="0" x2="19.05" y2="-0.9906" width="0.2032" layer="21"/> +<wire x1="19.05" y1="-0.9906" x2="18.7706" y2="-1.27" width="0.2032" layer="21"/> +<wire x1="19.05" y1="0" x2="19.05" y2="0.9906" width="0.2032" layer="21"/> +<wire x1="19.05" y1="0.9906" x2="18.7706" y2="1.27" width="0.2032" layer="21"/> +<wire x1="19.05" y1="0" x2="18.796" y2="0" width="0.2032" layer="21"/> +<pad name="1" x="0" y="0.127" drill="1.016" shape="long" rot="R90"/> +<pad name="2" x="2.54" y="-0.127" drill="1.016" shape="long" rot="R90"/> +<pad name="3" x="5.08" y="0.127" drill="1.016" shape="long" rot="R90"/> +<pad name="4" x="7.62" y="-0.127" drill="1.016" shape="long" rot="R90"/> +<pad name="5" x="10.16" y="0.127" drill="1.016" shape="long" rot="R90"/> +<pad name="6" x="12.7" y="-0.127" drill="1.016" shape="long" rot="R90"/> +<pad name="7" x="15.24" y="0.127" drill="1.016" shape="long" rot="R90"/> +<pad name="8" x="17.78" y="-0.127" drill="1.016" shape="long" rot="R90"/> +<rectangle x1="-0.2921" y1="-0.2921" x2="0.2921" y2="0.2921" layer="51"/> +<rectangle x1="2.2479" y1="-0.2921" x2="2.8321" y2="0.2921" layer="51"/> +<rectangle x1="4.7879" y1="-0.2921" x2="5.3721" y2="0.2921" layer="51"/> +<rectangle x1="7.3279" y1="-0.2921" x2="7.9121" y2="0.2921" layer="51" rot="R90"/> +<rectangle x1="9.8679" y1="-0.2921" x2="10.4521" y2="0.2921" layer="51"/> +<rectangle x1="12.4079" y1="-0.2921" x2="12.9921" y2="0.2921" layer="51"/> +<rectangle x1="14.9479" y1="-0.2921" x2="15.5321" y2="0.2921" layer="51"/> +<rectangle x1="17.4879" y1="-0.2921" x2="18.0721" y2="0.2921" layer="51"/> +<text x="-0.889" y="1.778" size="0.6096" layer="25" font="vector" ratio="20">>NAME</text> +<text x="-1.143" y="-2.286" size="0.6096" layer="27" font="vector" ratio="20">>VALUE</text> +</package> +<package name="1X08_LONGPADS" urn="urn:adsk.eagle:footprint:37763/1" library_version="1"> +<description><h3>Plated Through Hole -8 Pin Long Pads</h3> +<p>Specifications: +<ul><li>Pin count:8</li> +<li>Pin pitch:0.1"</li> +</ul></p> +<p>Example device(s): +<ul><li>CONN_08</li> +</ul></p></description> +<wire x1="-1.27" y1="0.635" x2="-1.27" y2="-0.635" width="0.2032" layer="21"/> +<wire x1="19.05" y1="0.635" x2="19.05" y2="-0.635" width="0.2032" layer="21"/> +<pad name="1" x="0" y="0" drill="1.1176" diameter="1.8796" shape="long" rot="R90"/> +<pad name="2" x="2.54" y="0" drill="1.1176" diameter="1.8796" shape="long" rot="R90"/> +<pad name="3" x="5.08" y="0" drill="1.1176" diameter="1.8796" shape="long" rot="R90"/> +<pad name="4" x="7.62" y="0" drill="1.1176" diameter="1.8796" shape="long" rot="R90"/> +<pad name="5" x="10.16" y="0" drill="1.1176" diameter="1.8796" shape="long" rot="R90"/> +<pad name="6" x="12.7" y="0" drill="1.1176" diameter="1.8796" shape="long" rot="R90"/> +<pad name="7" x="15.24" y="0" drill="1.1176" diameter="1.8796" shape="long" rot="R90"/> +<pad name="8" x="17.78" y="0" drill="1.1176" diameter="1.8796" shape="long" rot="R90"/> +<rectangle x1="14.986" y1="-0.254" x2="15.494" y2="0.254" layer="51"/> +<rectangle x1="12.446" y1="-0.254" x2="12.954" y2="0.254" layer="51"/> +<rectangle x1="9.906" y1="-0.254" x2="10.414" y2="0.254" layer="51"/> +<rectangle x1="7.366" y1="-0.254" x2="7.874" y2="0.254" layer="51"/> +<rectangle x1="4.826" y1="-0.254" x2="5.334" y2="0.254" layer="51"/> +<rectangle x1="2.286" y1="-0.254" x2="2.794" y2="0.254" layer="51"/> +<rectangle x1="-0.254" y1="-0.254" x2="0.254" y2="0.254" layer="51"/> +<rectangle x1="17.526" y1="-0.254" x2="18.034" y2="0.254" layer="51"/> +<text x="-1.143" y="2.159" size="0.6096" layer="25" font="vector" ratio="20">>NAME</text> +<text x="-1.016" y="-2.794" size="0.6096" layer="27" font="vector" ratio="20">>VALUE</text> +</package> +<package name="SCREWTERMINAL-3.5MM-8" urn="urn:adsk.eagle:footprint:37764/1" library_version="1"> +<description><h3>Screw Terminal 3.5mm Pitch -8 Pin PTH</h3> +<p>Specifications: +<ul><li>Pin count: 8</li> +<li>Pin pitch: 3.5mm/138mil</li> +</ul></p> +<p><a href=”https://www.sparkfun.com/datasheets/Prototyping/Screw-Terminal-3.5mm.pdf”>Datasheet referenced for footprint</a></p> +<p>Example device(s): +<ul><li>CONN_08</li> +</ul></p></description> +<wire x1="-1.75" y1="3.4" x2="26.25" y2="3.4" width="0.2032" layer="21"/> +<wire x1="26.25" y1="3.4" x2="26.25" y2="-2.8" width="0.2032" layer="21"/> +<wire x1="26.25" y1="-2.8" x2="26.25" y2="-3.6" width="0.2032" layer="21"/> +<wire x1="26.25" y1="-3.6" x2="-1.75" y2="-3.6" width="0.2032" layer="21"/> +<wire x1="-1.75" y1="-3.6" x2="-1.75" y2="-2.8" width="0.2032" layer="21"/> +<wire x1="-1.75" y1="-2.8" x2="-1.75" y2="3.4" width="0.2032" layer="21"/> +<wire x1="26.25" y1="-2.8" x2="-1.75" y2="-2.8" width="0.2032" layer="21"/> +<wire x1="-1.75" y1="-1.35" x2="-2.25" y2="-1.35" width="0.2032" layer="51"/> +<wire x1="-2.25" y1="-1.35" x2="-2.25" y2="-2.35" width="0.2032" layer="51"/> +<wire x1="-2.25" y1="-2.35" x2="-1.75" y2="-2.35" width="0.2032" layer="51"/> +<wire x1="26.25" y1="3.15" x2="26.75" y2="3.15" width="0.2032" layer="51"/> +<wire x1="26.75" y1="3.15" x2="26.75" y2="2.15" width="0.2032" layer="51"/> +<wire x1="26.75" y1="2.15" x2="26.25" y2="2.15" width="0.2032" layer="51"/> +<wire x1="1.016" y1="-1.524" x2="-0.889" y2="-1.524" width="0.2032" layer="21"/> +<wire x1="-0.889" y1="-1.524" x2="1.016" y2="-1.524" width="0.2032" layer="22"/> +<pad name="1" x="0" y="0" drill="1.2" diameter="2.032"/> +<pad name="2" x="3.5" y="0" drill="1.2" diameter="2.032"/> +<pad name="3" x="7" y="0" drill="1.2" diameter="2.032"/> +<pad name="4" x="10.5" y="0" drill="1.2" diameter="2.032"/> +<pad name="5" x="14" y="0" drill="1.2" diameter="2.032"/> +<pad name="6" x="17.5" y="0" drill="1.2" diameter="2.032"/> +<pad name="7" x="21" y="0" drill="1.2" diameter="2.032"/> +<pad name="8" x="24.5" y="0" drill="1.2" diameter="2.032"/> +<text x="11.049" y="2.286" size="0.6096" layer="25" font="vector" ratio="20">>NAME</text> +<text x="10.795" y="1.397" size="0.6096" layer="27" font="vector" ratio="20">>VALUE</text> +</package> +<package name="1X08_SMD" urn="urn:adsk.eagle:footprint:37765/1" library_version="1"> +<description><h3>SMD -8 Pin Vertical Female</h3> +<p>Specifications: +<ul><li>Pin count:8</li> +<li>Pin pitch:0.1"</li> +</ul></p> +<p><a href=”http://cdn.sparkfun.com/datasheets/Prototyping/femaleSMDheader.pdf”>Datasheet referenced for footprint</a></p> +<p>Example device(s): +<ul><li>CONN_08</li> +</ul></p></description> +<wire x1="1.37" y1="1.25" x2="-19.15" y2="1.25" width="0.127" layer="51"/> +<wire x1="-19.15" y1="1.25" x2="-19.15" y2="-1.25" width="0.127" layer="51"/> +<wire x1="-19.15" y1="-1.25" x2="1.37" y2="-1.25" width="0.127" layer="51"/> +<wire x1="1.37" y1="-1.25" x2="1.37" y2="1.25" width="0.127" layer="51"/> +<wire x1="1.37" y1="1.25" x2="1.37" y2="-1.25" width="0.127" layer="21"/> +<wire x1="-19.15" y1="-1.25" x2="-19.15" y2="1.25" width="0.127" layer="21"/> +<wire x1="0.85" y1="1.25" x2="1.37" y2="1.25" width="0.127" layer="21"/> +<wire x1="-19.15" y1="1.25" x2="-15.963" y2="1.25" width="0.127" layer="21"/> +<wire x1="-18.63" y1="-1.25" x2="-19.15" y2="-1.25" width="0.127" layer="21"/> +<wire x1="1.37" y1="-1.25" x2="-1.817" y2="-1.25" width="0.127" layer="21"/> +<wire x1="-4.377" y1="1.25" x2="-0.703" y2="1.25" width="0.127" layer="21"/> +<wire x1="-9.457" y1="1.25" x2="-5.783" y2="1.25" width="0.127" layer="21"/> +<wire x1="-14.537" y1="1.25" x2="-10.863" y2="1.25" width="0.127" layer="21"/> +<wire x1="-3.329" y1="-1.25" x2="-6.831" y2="-1.25" width="0.127" layer="21"/> +<wire x1="-8.409" y1="-1.25" x2="-11.911" y2="-1.25" width="0.127" layer="21"/> +<wire x1="-13.489" y1="-1.25" x2="-16.991" y2="-1.25" width="0.127" layer="21"/> +<smd name="7" x="-15.24" y="1.65" dx="2" dy="1" layer="1" rot="R90"/> +<smd name="5" x="-10.16" y="1.65" dx="2" dy="1" layer="1" rot="R90"/> +<smd name="3" x="-5.08" y="1.65" dx="2" dy="1" layer="1" rot="R90"/> +<smd name="1" x="0" y="1.65" dx="2" dy="1" layer="1" rot="R90"/> +<smd name="8" x="-17.78" y="-1.65" dx="2" dy="1" layer="1" rot="R90"/> +<smd name="6" x="-12.7" y="-1.65" dx="2" dy="1" layer="1" rot="R90"/> +<smd name="4" x="-7.62" y="-1.65" dx="2" dy="1" layer="1" rot="R90"/> +<smd name="2" x="-2.54" y="-1.65" dx="2" dy="1" layer="1" rot="R90"/> +<text x="-18.542" y="2.921" size="0.6096" layer="25" font="vector" ratio="20">>NAME</text> +<text x="-18.542" y="-3.556" size="0.6096" layer="27" font="vector" ratio="20">>VALUE</text> +</package> +<package name="1X08_SMD_ALT" urn="urn:adsk.eagle:footprint:37766/1" library_version="1"> +<description><h3>SMD -8 Pin Vertical Female</h3> +Alternate pin configuration +<p>Specifications: +<ul><li>Pin count:8</li> +<li>Pin pitch:0.1"</li> +</ul></p> +<p><a href=”http://cdn.sparkfun.com/datasheets/Prototyping/femaleSMDheader.pdf”>Datasheet referenced for footprint</a></p> +<p>Example device(s): +<ul><li>CONN_08</li> +</ul></p></description> +<wire x1="1.37" y1="1.25" x2="-19.15" y2="1.25" width="0.127" layer="51"/> +<wire x1="-19.15" y1="1.25" x2="-19.15" y2="-1.25" width="0.127" layer="51"/> +<wire x1="-19.15" y1="-1.25" x2="1.37" y2="-1.25" width="0.127" layer="51"/> +<wire x1="1.37" y1="-1.25" x2="1.37" y2="1.25" width="0.127" layer="51"/> +<wire x1="-19.15" y1="1.25" x2="-19.15" y2="-1.25" width="0.127" layer="21"/> +<wire x1="1.37" y1="-1.25" x2="1.37" y2="1.25" width="0.127" layer="21"/> +<wire x1="-18.63" y1="1.25" x2="-19.15" y2="1.25" width="0.127" layer="21"/> +<wire x1="1.37" y1="1.25" x2="-1.817" y2="1.25" width="0.127" layer="21"/> +<wire x1="0.85" y1="-1.25" x2="1.37" y2="-1.25" width="0.127" layer="21"/> +<wire x1="-19.15" y1="-1.25" x2="-15.963" y2="-1.25" width="0.127" layer="21"/> +<wire x1="-13.403" y1="1.25" x2="-17.077" y2="1.25" width="0.127" layer="21"/> +<wire x1="-8.323" y1="1.25" x2="-11.997" y2="1.25" width="0.127" layer="21"/> +<wire x1="-3.243" y1="1.25" x2="-6.917" y2="1.25" width="0.127" layer="21"/> +<wire x1="-14.451" y1="-1.25" x2="-10.949" y2="-1.25" width="0.127" layer="21"/> +<wire x1="-9.371" y1="-1.25" x2="-5.869" y2="-1.25" width="0.127" layer="21"/> +<wire x1="-4.291" y1="-1.25" x2="-0.789" y2="-1.25" width="0.127" layer="21"/> +<smd name="7" x="-15.24" y="-1.65" dx="2" dy="1" layer="1" rot="R270"/> +<smd name="5" x="-10.16" y="-1.65" dx="2" dy="1" layer="1" rot="R270"/> +<smd name="3" x="-5.08" y="-1.65" dx="2" dy="1" layer="1" rot="R270"/> +<smd name="1" x="0" y="-1.65" dx="2" dy="1" layer="1" rot="R270"/> +<smd name="8" x="-17.78" y="1.65" dx="2" dy="1" layer="1" rot="R270"/> +<smd name="6" x="-12.7" y="1.65" dx="2" dy="1" layer="1" rot="R270"/> +<smd name="4" x="-7.62" y="1.65" dx="2" dy="1" layer="1" rot="R270"/> +<smd name="2" x="-2.54" y="1.65" dx="2" dy="1" layer="1" rot="R270"/> +<text x="-18.796" y="2.921" size="0.6096" layer="25" font="vector" ratio="20">>NAME</text> +<text x="-18.923" y="-3.556" size="0.6096" layer="27" font="vector" ratio="20">>VALUE</text> +</package> +<package name="1X08_SMD_COMBINED" urn="urn:adsk.eagle:footprint:37767/1" library_version="1"> +<description><h3>SMD -8 Pin Vertical Female</h3> +Combined footprint configuration +<p>Specifications: +<ul><li>Pin count:8</li> +<li>Pin pitch:0.1"</li> +</ul></p> +<p><a href=”http://cdn.sparkfun.com/datasheets/Prototyping/femaleSMDheader.pdf”>Datasheet referenced for footprint</a></p> +<p>Example device(s): +<ul><li>CONN_08</li> +</ul></p></description> +<wire x1="-1.37" y1="-1.25" x2="-1.37" y2="1.25" width="0.127" layer="21"/> +<wire x1="19.15" y1="1.25" x2="19.15" y2="-1.25" width="0.127" layer="21"/> +<wire x1="-0.85" y1="-1.25" x2="-1.37" y2="-1.25" width="0.127" layer="21"/> +<wire x1="19.15" y1="-1.25" x2="18.503" y2="-1.25" width="0.127" layer="21"/> +<wire x1="18.63" y1="1.25" x2="19.15" y2="1.25" width="0.127" layer="21"/> +<wire x1="-1.37" y1="1.25" x2="-0.723" y2="1.25" width="0.127" layer="21"/> +<wire x1="14.537" y1="-1.25" x2="13.403" y2="-1.25" width="0.127" layer="21"/> +<wire x1="0.789" y1="1.25" x2="1.751" y2="1.25" width="0.127" layer="21"/> +<wire x1="3.329" y1="1.25" x2="4.291" y2="1.25" width="0.127" layer="21"/> +<wire x1="5.869" y1="1.25" x2="6.831" y2="1.25" width="0.127" layer="21"/> +<wire x1="8.409" y1="1.25" x2="9.371" y2="1.25" width="0.127" layer="21"/> +<wire x1="10.949" y1="1.25" x2="11.911" y2="1.25" width="0.127" layer="21"/> +<wire x1="13.489" y1="1.25" x2="14.451" y2="1.25" width="0.127" layer="21"/> +<wire x1="16.029" y1="1.25" x2="16.991" y2="1.25" width="0.127" layer="21"/> +<wire x1="17.077" y1="-1.25" x2="15.943" y2="-1.25" width="0.127" layer="21"/> +<wire x1="11.997" y1="-1.25" x2="10.863" y2="-1.25" width="0.127" layer="21"/> +<wire x1="9.457" y1="-1.25" x2="8.323" y2="-1.25" width="0.127" layer="21"/> +<wire x1="6.917" y1="-1.25" x2="5.783" y2="-1.25" width="0.127" layer="21"/> +<wire x1="4.377" y1="-1.25" x2="3.243" y2="-1.25" width="0.127" layer="21"/> +<wire x1="1.837" y1="-1.25" x2="0.703" y2="-1.25" width="0.127" layer="21"/> +<wire x1="17.78" y1="1.27" x2="17.78" y2="-1.27" width="0.4064" layer="1"/> +<wire x1="15.24" y1="1.27" x2="15.24" y2="-1.27" width="0.4064" layer="1"/> +<wire x1="12.7" y1="1.27" x2="12.7" y2="-1.27" width="0.4064" layer="1"/> +<wire x1="10.16" y1="1.27" x2="10.16" y2="-1.27" width="0.4064" layer="1"/> +<wire x1="7.62" y1="1.27" x2="7.62" y2="-1.27" width="0.4064" layer="1"/> +<wire x1="5.08" y1="1.27" x2="5.08" y2="-1.27" width="0.4064" layer="1"/> +<wire x1="2.54" y1="1.27" x2="2.54" y2="-1.27" width="0.4064" layer="1"/> +<wire x1="0" y1="1.27" x2="0" y2="-1.27" width="0.4064" layer="1"/> +<smd name="7@2" x="15.24" y="-1.65" dx="2" dy="1" layer="1" rot="R270"/> +<smd name="5@2" x="10.16" y="-1.65" dx="2" dy="1" layer="1" rot="R270"/> +<smd name="3@2" x="5.08" y="-1.65" dx="2" dy="1" layer="1" rot="R270"/> +<smd name="8@2" x="17.78" y="1.65" dx="2" dy="1" layer="1" rot="R270"/> +<smd name="6@2" x="12.7" y="1.65" dx="2" dy="1" layer="1" rot="R270"/> +<smd name="4@2" x="7.62" y="1.65" dx="2" dy="1" layer="1" rot="R270"/> +<smd name="2@2" x="2.54" y="1.65" dx="2" dy="1" layer="1" rot="R270"/> +<smd name="1" x="0" y="1.65" dx="2" dy="1" layer="1" rot="R90"/> +<smd name="2" x="2.54" y="-1.65" dx="2" dy="1" layer="1" rot="R90"/> +<smd name="3" x="5.08" y="1.65" dx="2" dy="1" layer="1" rot="R90"/> +<smd name="4" x="7.62" y="-1.65" dx="2" dy="1" layer="1" rot="R90"/> +<smd name="5" x="10.16" y="1.65" dx="2" dy="1" layer="1" rot="R90"/> +<smd name="6" x="12.7" y="-1.65" dx="2" dy="1" layer="1" rot="R90"/> +<smd name="7" x="15.24" y="1.65" dx="2" dy="1" layer="1" rot="R90"/> +<smd name="8" x="17.78" y="-1.65" dx="2" dy="1" layer="1" rot="R270"/> +<smd name="1@2" x="0" y="-1.65" dx="2" dy="1" layer="1" rot="R270"/> +<text x="-0.381" y="3.048" size="0.6096" layer="25" font="vector" ratio="20">>NAME</text> +<text x="-0.508" y="-3.556" size="0.6096" layer="27" font="vector" ratio="20">>VALUE</text> +</package> +<package name="BM08B-SRSS-TB" urn="urn:adsk.eagle:footprint:37768/1" library_version="1"> +<description><h3>JST Vertical Crimp Connect</h3> +<p>Specifications: +<ul><li>Pin count: 8</li> +<li>Pin pitch:1mm</li> +</ul></p> +<p><a href=”http://www.jst-mfg.com/product/pdf/eng/eSR.pdf”>Datasheet referenced for footprint</a></p> +<p>Example device(s): +<ul><li>CONN_08</li> +</ul></p></description> +<wire x1="-5" y1="3.3" x2="5" y2="3.3" width="0.127" layer="51"/> +<wire x1="-5" y1="0.4" x2="-5" y2="3.3" width="0.127" layer="51"/> +<wire x1="5" y1="0.4" x2="5" y2="3.3" width="0.127" layer="51"/> +<wire x1="-5" y1="0.4" x2="5" y2="0.4" width="0.127" layer="51"/> +<wire x1="-4.1" y1="0.35" x2="-5.05" y2="0.35" width="0.2032" layer="21"/> +<wire x1="-5.05" y1="0.35" x2="-5.05" y2="1.35" width="0.2032" layer="21"/> +<wire x1="5.05" y1="0.35" x2="4.15" y2="0.35" width="0.2032" layer="21"/> +<wire x1="5.05" y1="0.35" x2="5.05" y2="1.35" width="0.2032" layer="21"/> +<wire x1="-3.9" y1="3.4" x2="3.9" y2="3.4" width="0.2032" layer="21"/> +<circle x="-4.4" y="-0.35" radius="0.1118" width="0.4064" layer="21"/> +<smd name="1" x="-3.5" y="0" dx="0.6" dy="1.55" layer="1" rot="R180"/> +<smd name="2" x="-2.5" y="0" dx="0.6" dy="1.55" layer="1" rot="R180"/> +<smd name="3" x="-1.5" y="0" dx="0.6" dy="1.55" layer="1" rot="R180"/> +<smd name="4" x="-0.5" y="0" dx="0.6" dy="1.55" layer="1" rot="R180"/> +<smd name="5" x="0.5" y="0" dx="0.6" dy="1.55" layer="1" rot="R180"/> +<smd name="6" x="1.5" y="0" dx="0.6" dy="1.55" layer="1" rot="R180"/> +<smd name="7" x="2.5" y="0" dx="0.6" dy="1.55" layer="1" rot="R180"/> +<smd name="8" x="3.5" y="0" dx="0.6" dy="1.55" layer="1" rot="R180"/> +<smd name="P$9" x="4.8" y="2.525" dx="1.8" dy="1.2" layer="1" rot="R90"/> +<smd name="P$10" x="-4.8" y="2.525" dx="1.8" dy="1.2" layer="1" rot="R90"/> +<text x="-1.397" y="2.159" size="0.6096" layer="25" font="vector" ratio="20">>NAME</text> +<text x="-1.651" y="1.27" size="0.6096" layer="27" font="vector" ratio="20">>VALUE</text> +</package> +<package name="1X08_SMD_MALE" urn="urn:adsk.eagle:footprint:37769/1" library_version="1"> +<description><h3>SMD -8 Pin Vertical Male</h3> +<p>Specifications: +<ul><li>Pin count:8</li> +<li>Pin pitch:0.1"</li> +</ul></p> +<p><a href=”http://cdn.sparkfun.com/datasheets/Prototyping/maleSMDheader.pdf”>Datasheet referenced for footprint</a></p> +<p>Example device(s): +<ul><li>CONN_08</li> +</ul></p></description> +<wire x1="-1.27" y1="1.25" x2="-1.27" y2="-1.25" width="0.127" layer="51"/> +<wire x1="-1.27" y1="-1.25" x2="19.05" y2="-1.25" width="0.127" layer="51"/> +<wire x1="19.05" y1="-1.25" x2="19.05" y2="1.25" width="0.127" layer="51"/> +<wire x1="19.05" y1="1.25" x2="-1.27" y2="1.25" width="0.127" layer="51"/> +<wire x1="-1.27" y1="1.25" x2="-1.27" y2="-1.25" width="0.1778" layer="21"/> +<wire x1="-1.27" y1="-1.25" x2="-0.635" y2="-1.25" width="0.1778" layer="21"/> +<wire x1="-1.27" y1="1.25" x2="-0.635" y2="1.25" width="0.1778" layer="21"/> +<wire x1="0.762" y1="1.25" x2="1.778" y2="1.25" width="0.1778" layer="21"/> +<wire x1="3.302" y1="1.25" x2="4.318" y2="1.25" width="0.1778" layer="21"/> +<wire x1="5.842" y1="1.25" x2="6.858" y2="1.25" width="0.1778" layer="21"/> +<wire x1="8.382" y1="1.25" x2="9.398" y2="1.25" width="0.1778" layer="21"/> +<wire x1="10.922" y1="1.25" x2="11.938" y2="1.25" width="0.1778" layer="21"/> +<wire x1="1.778" y1="-1.25" x2="0.762" y2="-1.25" width="0.1778" layer="21"/> +<wire x1="4.318" y1="-1.25" x2="3.302" y2="-1.25" width="0.1778" layer="21"/> +<wire x1="6.858" y1="-1.25" x2="5.842" y2="-1.25" width="0.1778" layer="21"/> +<wire x1="9.398" y1="-1.25" x2="8.382" y2="-1.25" width="0.1778" layer="21"/> +<wire x1="11.938" y1="-1.25" x2="10.922" y2="-1.25" width="0.1778" layer="21"/> +<wire x1="19.05" y1="-1.25" x2="19.05" y2="1.25" width="0.1778" layer="21"/> +<wire x1="16.002" y1="1.25" x2="17.018" y2="1.25" width="0.1778" layer="21"/> +<wire x1="17.018" y1="-1.25" x2="16.002" y2="-1.25" width="0.1778" layer="21"/> +<wire x1="19.05" y1="-1.25" x2="18.415" y2="-1.25" width="0.1778" layer="21"/> +<wire x1="19.05" y1="1.25" x2="18.415" y2="1.25" width="0.1778" layer="21"/> +<wire x1="13.462" y1="1.25" x2="14.478" y2="1.25" width="0.1778" layer="21"/> +<wire x1="14.478" y1="-1.25" x2="13.462" y2="-1.25" width="0.1778" layer="21"/> +<circle x="0" y="0" radius="0.64" width="0.127" layer="51"/> +<circle x="2.54" y="0" radius="0.64" width="0.127" layer="51"/> +<circle x="5.08" y="0" radius="0.64" width="0.127" layer="51"/> +<circle x="7.62" y="0" radius="0.64" width="0.127" layer="51"/> +<circle x="10.16" y="0" radius="0.64" width="0.127" layer="51"/> +<circle x="12.7" y="0" radius="0.64" width="0.127" layer="51"/> +<circle x="15.24" y="0" radius="0.64" width="0.127" layer="51"/> +<circle x="17.78" y="0" radius="0.64" width="0.127" layer="51"/> +<rectangle x1="-0.32" y1="0" x2="0.32" y2="2.75" layer="51"/> +<rectangle x1="4.76" y1="0" x2="5.4" y2="2.75" layer="51"/> +<rectangle x1="9.84" y1="0" x2="10.48" y2="2.75" layer="51"/> +<rectangle x1="2.22" y1="-2.75" x2="2.86" y2="0" layer="51" rot="R180"/> +<rectangle x1="7.3" y1="-2.75" x2="7.94" y2="0" layer="51" rot="R180"/> +<rectangle x1="12.38" y1="-2.75" x2="13.02" y2="0" layer="51" rot="R180"/> +<rectangle x1="14.92" y1="0" x2="15.56" y2="2.75" layer="51"/> +<rectangle x1="17.46" y1="-2.75" x2="18.1" y2="0" layer="51" rot="R180"/> +<smd name="1" x="0" y="0" dx="1.02" dy="6" layer="1"/> +<smd name="2" x="2.54" y="0" dx="1.02" dy="6" layer="1"/> +<smd name="3" x="5.08" y="0" dx="1.02" dy="6" layer="1"/> +<smd name="4" x="7.62" y="0" dx="1.02" dy="6" layer="1"/> +<smd name="5" x="10.16" y="0" dx="1.02" dy="6" layer="1"/> +<smd name="6" x="12.7" y="0" dx="1.02" dy="6" layer="1"/> +<smd name="7" x="15.24" y="0" dx="1.02" dy="6" layer="1"/> +<smd name="8" x="17.78" y="0" dx="1.02" dy="6" layer="1"/> +<text x="-0.508" y="3.302" size="0.6096" layer="25" font="vector" ratio="20">>NAME</text> +<text x="-0.635" y="-3.937" size="0.6096" layer="27" font="vector" ratio="20">>VALUE</text> +</package> +<package name="1X08_NO_SILK" urn="urn:adsk.eagle:footprint:37770/1" library_version="1"> +<description><h3>Plated Through Hole -8 Pin No Silk</h3> +<p>Specifications: +<ul><li>Pin count:8</li> +<li>Pin pitch:0.1"</li> +</ul></p> +<p>Example device(s): +<ul><li>CONN_08</li> +</ul></p></description> +<pad name="1" x="0" y="0" drill="1.016" diameter="1.8796" rot="R90"/> +<pad name="2" x="2.54" y="0" drill="1.016" diameter="1.8796" rot="R90"/> +<pad name="3" x="5.08" y="0" drill="1.016" diameter="1.8796" rot="R90"/> +<pad name="4" x="7.62" y="0" drill="1.016" diameter="1.8796" rot="R90"/> +<pad name="5" x="10.16" y="0" drill="1.016" diameter="1.8796" rot="R90"/> +<pad name="6" x="12.7" y="0" drill="1.016" diameter="1.8796" rot="R90"/> +<pad name="7" x="15.24" y="0" drill="1.016" diameter="1.8796" rot="R90"/> +<pad name="8" x="17.78" y="0" drill="1.016" diameter="1.8796" rot="R90"/> +<rectangle x1="14.986" y1="-0.254" x2="15.494" y2="0.254" layer="51"/> +<rectangle x1="12.446" y1="-0.254" x2="12.954" y2="0.254" layer="51"/> +<rectangle x1="9.906" y1="-0.254" x2="10.414" y2="0.254" layer="51"/> +<rectangle x1="7.366" y1="-0.254" x2="7.874" y2="0.254" layer="51"/> +<rectangle x1="4.826" y1="-0.254" x2="5.334" y2="0.254" layer="51"/> +<rectangle x1="2.286" y1="-0.254" x2="2.794" y2="0.254" layer="51"/> +<rectangle x1="-0.254" y1="-0.254" x2="0.254" y2="0.254" layer="51"/> +<rectangle x1="17.526" y1="-0.254" x2="18.034" y2="0.254" layer="51"/> +<text x="-1.27" y="1.397" size="0.6096" layer="25" font="vector" ratio="20">>NAME</text> +<text x="-1.27" y="-2.032" size="0.6096" layer="27" font="vector" ratio="20">>VALUE</text> +</package> +<package name="1X08_LOCK_NO_SILK" urn="urn:adsk.eagle:footprint:37771/1" library_version="1"> +<description><h3>Plated Through Hole -8 Pin Locking Footprint No Silk</h3> +Holes are offset 0.005", to hold pins in place during soldering. +<p>Specifications: +<ul><li>Pin count:8</li> +<li>Pin pitch:0.1"</li> +</ul></p> +<p>Example device(s): +<ul><li>CONN_08</li> +</ul></p></description> +<pad name="1" x="0" y="0.127" drill="1.016" diameter="1.8796" rot="R90"/> +<pad name="2" x="2.54" y="-0.127" drill="1.016" diameter="1.8796" rot="R90"/> +<pad name="3" x="5.08" y="0.127" drill="1.016" diameter="1.8796" rot="R90"/> +<pad name="4" x="7.62" y="-0.127" drill="1.016" diameter="1.8796" rot="R90"/> +<pad name="5" x="10.16" y="0.127" drill="1.016" diameter="1.8796" rot="R90"/> +<pad name="6" x="12.7" y="-0.127" drill="1.016" diameter="1.8796" rot="R90"/> +<pad name="7" x="15.24" y="0.127" drill="1.016" diameter="1.8796" rot="R90"/> +<pad name="8" x="17.78" y="-0.127" drill="1.016" diameter="1.8796" rot="R90"/> +<rectangle x1="14.986" y1="-0.254" x2="15.494" y2="0.254" layer="51"/> +<rectangle x1="12.446" y1="-0.254" x2="12.954" y2="0.254" layer="51"/> +<rectangle x1="9.906" y1="-0.254" x2="10.414" y2="0.254" layer="51"/> +<rectangle x1="7.366" y1="-0.254" x2="7.874" y2="0.254" layer="51"/> +<rectangle x1="4.826" y1="-0.254" x2="5.334" y2="0.254" layer="51"/> +<rectangle x1="2.286" y1="-0.254" x2="2.794" y2="0.254" layer="51"/> +<rectangle x1="-0.254" y1="-0.254" x2="0.254" y2="0.254" layer="51"/> +<rectangle x1="17.526" y1="-0.254" x2="18.034" y2="0.254" layer="51"/> +<text x="-1.27" y="1.397" size="0.6096" layer="25" font="vector" ratio="20">>NAME</text> +<text x="-1.27" y="-2.032" size="0.6096" layer="27" font="vector" ratio="20">>VALUE</text> +</package> +<package name="1X08_FEMALE_LOCK" urn="urn:adsk.eagle:footprint:37772/1" library_version="1"> +<description><h3>Plated Through Hole -8 Pin Locking Female Headers</h3> +Holes are offset 0.005" to hold pins in place during soldering. +<p>Specifications: +<ul><li>Pin count:8</li> +<li>Pin pitch:0.1"</li> +</ul></p> +<p><a href=”https://cdn.sparkfun.com/datasheets/Prototyping/SP-140520-XX-001.pdf”>Datasheet referenced for footprint</a></p> +<p>Example device(s): +<ul><li>CONN_08</li> +</ul></p></description> +<wire x1="-1.27" y1="1.27" x2="-1.27" y2="-1.27" width="0.2032" layer="21"/> +<wire x1="-1.27" y1="1.27" x2="19.05" y2="1.27" width="0.2032" layer="21"/> +<wire x1="19.05" y1="-1.27" x2="-1.27" y2="-1.27" width="0.2032" layer="21"/> +<wire x1="19.05" y1="1.27" x2="19.05" y2="-1.27" width="0.2032" layer="21"/> +<pad name="1" x="0" y="0.2286" drill="1.016" diameter="1.8796" rot="R90"/> +<pad name="2" x="2.54" y="-0.2286" drill="1.016" diameter="1.8796" rot="R90"/> +<pad name="3" x="5.08" y="0.2286" drill="1.016" diameter="1.8796" rot="R90"/> +<pad name="4" x="7.62" y="-0.2286" drill="1.016" diameter="1.8796" rot="R90"/> +<pad name="5" x="10.16" y="0.2286" drill="1.016" diameter="1.8796" rot="R90"/> +<pad name="6" x="12.7" y="-0.2286" drill="1.016" diameter="1.8796" rot="R90"/> +<pad name="7" x="15.24" y="0.2286" drill="1.016" diameter="1.8796" rot="R90"/> +<pad name="8" x="17.78" y="-0.2286" drill="1.016" diameter="1.8796" rot="R90"/> +<rectangle x1="-0.3175" y1="-0.1905" x2="0.3175" y2="0.1905" layer="51"/> +<rectangle x1="2.2225" y1="-0.1905" x2="2.8575" y2="0.1905" layer="51"/> +<rectangle x1="4.7625" y1="-0.1905" x2="5.3975" y2="0.1905" layer="51"/> +<rectangle x1="7.3025" y1="-0.1905" x2="7.9375" y2="0.1905" layer="51"/> +<rectangle x1="9.8425" y1="-0.1905" x2="10.4775" y2="0.1905" layer="51"/> +<rectangle x1="12.3825" y1="-0.1905" x2="13.0175" y2="0.1905" layer="51"/> +<rectangle x1="14.9225" y1="-0.1905" x2="15.5575" y2="0.1905" layer="51"/> +<rectangle x1="17.4625" y1="-0.1905" x2="18.0975" y2="0.1905" layer="51"/> +<text x="-1.27" y="1.397" size="0.6096" layer="25" font="vector" ratio="20">>NAME</text> +<text x="-1.27" y="-2.032" size="0.6096" layer="27" font="vector" ratio="20">>VALUE</text> +</package> +<package name="1X02" urn="urn:adsk.eagle:footprint:37654/1" library_version="1"> +<description><h3>Plated Through Hole</h3> +<p>Specifications: +<ul><li>Pin count:2</li> +<li>Pin pitch:0.1"</li> +</ul></p> +<p>Example device(s): +<ul><li>CONN_02</li> +</ul></p></description> +<wire x1="-0.635" y1="1.27" x2="0.635" y2="1.27" width="0.2032" layer="21"/> +<wire x1="0.635" y1="1.27" x2="1.27" y2="0.635" width="0.2032" layer="21"/> +<wire x1="1.27" y1="-0.635" x2="0.635" y2="-1.27" width="0.2032" layer="21"/> +<wire x1="1.27" y1="0.635" x2="1.905" y2="1.27" width="0.2032" layer="21"/> +<wire x1="1.905" y1="1.27" x2="3.175" y2="1.27" width="0.2032" layer="21"/> +<wire x1="3.175" y1="1.27" x2="3.81" y2="0.635" width="0.2032" layer="21"/> +<wire x1="3.81" y1="-0.635" x2="3.175" y2="-1.27" width="0.2032" layer="21"/> +<wire x1="3.175" y1="-1.27" x2="1.905" y2="-1.27" width="0.2032" layer="21"/> +<wire x1="1.905" y1="-1.27" x2="1.27" y2="-0.635" width="0.2032" layer="21"/> +<wire x1="-1.27" y1="0.635" x2="-1.27" y2="-0.635" width="0.2032" layer="21"/> +<wire x1="-0.635" y1="1.27" x2="-1.27" y2="0.635" width="0.2032" layer="21"/> +<wire x1="-1.27" y1="-0.635" x2="-0.635" y2="-1.27" width="0.2032" layer="21"/> +<wire x1="0.635" y1="-1.27" x2="-0.635" y2="-1.27" width="0.2032" layer="21"/> +<wire x1="3.81" y1="0.635" x2="3.81" y2="-0.635" width="0.2032" layer="21"/> +<pad name="1" x="0" y="0" drill="1.016" diameter="1.8796" rot="R90"/> +<pad name="2" x="2.54" y="0" drill="1.016" diameter="1.8796" rot="R90"/> +<rectangle x1="2.286" y1="-0.254" x2="2.794" y2="0.254" layer="51"/> +<rectangle x1="-0.254" y1="-0.254" x2="0.254" y2="0.254" layer="51"/> +<text x="-1.27" y="1.397" size="0.6096" layer="25" font="vector" ratio="20">>NAME</text> +<text x="-1.27" y="-2.032" size="0.6096" layer="27" font="vector" ratio="20">>VALUE</text> +</package> +<package name="MOLEX-1X2" urn="urn:adsk.eagle:footprint:37655/1" library_version="1"> +<description><h3>Molex 2-Pin Plated Through-Hole</h3> +<p>Specifications: +<ul><li>Pin count:2</li> +<li>Pin pitch:0.1"</li> +</ul></p> +<p><a href=”https://www.sparkfun.com/datasheets/Prototyping/2pin_molex_set_19iv10.pdf”>Datasheet referenced for footprint</a></p> +<p>Example device(s): +<ul><li>CONN_02</li> +</ul></p></description> +<wire x1="-1.27" y1="3.048" x2="-1.27" y2="-2.54" width="0.127" layer="21"/> +<wire x1="3.81" y1="3.048" x2="3.81" y2="-2.54" width="0.127" layer="21"/> +<wire x1="3.81" y1="3.048" x2="-1.27" y2="3.048" width="0.127" layer="21"/> +<wire x1="3.81" y1="-2.54" x2="2.54" y2="-2.54" width="0.127" layer="21"/> +<wire x1="2.54" y1="-2.54" x2="0" y2="-2.54" width="0.127" layer="21"/> +<wire x1="0" y1="-2.54" x2="-1.27" y2="-2.54" width="0.127" layer="21"/> +<wire x1="0" y1="-2.54" x2="0" y2="-1.27" width="0.127" layer="21"/> +<wire x1="0" y1="-1.27" x2="2.54" y2="-1.27" width="0.127" layer="21"/> +<wire x1="2.54" y1="-1.27" x2="2.54" y2="-2.54" width="0.127" layer="21"/> +<pad name="1" x="0" y="0" drill="1.016" diameter="1.8796" shape="square"/> +<pad name="2" x="2.54" y="0" drill="1.016" diameter="1.8796"/> +<text x="-1.27" y="3.302" size="0.6096" layer="25" font="vector" ratio="20">>NAME</text> +<text x="-1.27" y="-2.794" size="0.6096" layer="27" font="vector" ratio="20" align="top-left">>VALUE</text> +</package> +<package name="SCREWTERMINAL-3.5MM-2" urn="urn:adsk.eagle:footprint:37656/1" library_version="1"> +<description><h3>Screw Terminal 3.5mm Pitch - 2 Pin PTH</h3> +<p>Specifications: +<ul><li>Pin count: 2</li> +<li>Pin pitch: 3.5mm/138mil</li> +</ul></p> +<p><a href=”https://www.sparkfun.com/datasheets/Prototyping/Screw-Terminal-3.5mm.pdf”>Datasheet referenced for footprint</a></p> +<p>Example device(s): +<ul><li>CONN_02</li> +</ul></p></description> +<circle x="2" y="3" radius="0.2828" width="0.127" layer="51"/> +<wire x1="-1.75" y1="3.4" x2="5.25" y2="3.4" width="0.2032" layer="21"/> +<wire x1="5.25" y1="3.4" x2="5.25" y2="-2.8" width="0.2032" layer="21"/> +<wire x1="5.25" y1="-2.8" x2="5.25" y2="-3.6" width="0.2032" layer="21"/> +<wire x1="5.25" y1="-3.6" x2="-1.75" y2="-3.6" width="0.2032" layer="21"/> +<wire x1="-1.75" y1="-3.6" x2="-1.75" y2="-2.8" width="0.2032" layer="21"/> +<wire x1="-1.75" y1="-2.8" x2="-1.75" y2="3.4" width="0.2032" layer="21"/> +<wire x1="5.25" y1="-2.8" x2="-1.75" y2="-2.8" width="0.2032" layer="21"/> +<wire x1="-1.75" y1="-1.35" x2="-2.25" y2="-1.35" width="0.2032" layer="51"/> +<wire x1="-2.25" y1="-1.35" x2="-2.25" y2="-2.35" width="0.2032" layer="51"/> +<wire x1="-2.25" y1="-2.35" x2="-1.75" y2="-2.35" width="0.2032" layer="51"/> +<wire x1="5.25" y1="3.15" x2="5.75" y2="3.15" width="0.2032" layer="51"/> +<wire x1="5.75" y1="3.15" x2="5.75" y2="2.15" width="0.2032" layer="51"/> +<wire x1="5.75" y1="2.15" x2="5.25" y2="2.15" width="0.2032" layer="51"/> +<pad name="1" x="0" y="0" drill="1.2" diameter="2.032" shape="square"/> +<pad name="2" x="3.5" y="0" drill="1.2" diameter="2.032"/> +<text x="-1.27" y="2.54" size="0.6096" layer="25" font="vector" ratio="20">>NAME</text> +<text x="-1.27" y="1.27" size="0.6096" layer="27" font="vector" ratio="20">>VALUE</text> +</package> +<package name="JST-2-SMD" urn="urn:adsk.eagle:footprint:37657/1" library_version="1"> +<description><h3>JST-Right Angle Male Header SMT</h3> +<p>Specifications: +<ul><li>Pin count: 2</li> +<li>Pin pitch: 2mm</li> +</ul></p> +<p><a href=”http://www.4uconnector.com/online/object/4udrawing/20404.pdf”>Datasheet referenced for footprint</a></p> +<p>Example device(s): +<ul><li>CONN_02</li> +<li>JST_2MM_MALE</li> +</ul></p></description> +<wire x1="-4" y1="-1" x2="-4" y2="-4.5" width="0.2032" layer="21"/> +<wire x1="-4" y1="-4.5" x2="-3.2" y2="-4.5" width="0.2032" layer="21"/> +<wire x1="-3.2" y1="-4.5" x2="-3.2" y2="-2" width="0.2032" layer="21"/> +<wire x1="-3.2" y1="-2" x2="-2" y2="-2" width="0.2032" layer="21"/> +<wire x1="2" y1="-2" x2="3.2" y2="-2" width="0.2032" layer="21"/> +<wire x1="3.2" y1="-2" x2="3.2" y2="-4.5" width="0.2032" layer="21"/> +<wire x1="3.2" y1="-4.5" x2="4" y2="-4.5" width="0.2032" layer="21"/> +<wire x1="4" y1="-4.5" x2="4" y2="-1" width="0.2032" layer="21"/> +<wire x1="2" y1="3" x2="-2" y2="3" width="0.2032" layer="21"/> +<smd name="1" x="-1" y="-3.7" dx="1" dy="4.6" layer="1"/> +<smd name="2" x="1" y="-3.7" dx="1" dy="4.6" layer="1"/> +<smd name="NC1" x="-3.4" y="1.5" dx="3.4" dy="1.6" layer="1" rot="R90"/> +<smd name="NC2" x="3.4" y="1.5" dx="3.4" dy="1.6" layer="1" rot="R90"/> +<text x="-1.397" y="1.778" size="0.6096" layer="25" font="vector" ratio="20">>NAME</text> +<text x="-1.651" y="0.635" size="0.6096" layer="27" font="vector" ratio="20">>VALUE</text> +</package> +<package name="1X02_BIG" urn="urn:adsk.eagle:footprint:37658/1" library_version="1"> +<description><h3>Plated Through Hole</h3> +<p>Specifications: +<ul><li>Pin count:2</li> +<li>Pin pitch:0.15"</li> +</ul></p> +<p>Example device(s): +<ul><li>CONN_02</li> +</ul></p></description> +<wire x1="-1.27" y1="1.27" x2="-1.27" y2="-1.27" width="0.127" layer="21"/> +<wire x1="-1.27" y1="-1.27" x2="5.08" y2="-1.27" width="0.127" layer="21"/> +<wire x1="5.08" y1="-1.27" x2="5.08" y2="1.27" width="0.127" layer="21"/> +<wire x1="5.08" y1="1.27" x2="-1.27" y2="1.27" width="0.127" layer="21"/> +<pad name="P$1" x="0" y="0" drill="1.0668"/> +<pad name="P$2" x="3.81" y="0" drill="1.0668"/> +<text x="-1.27" y="1.397" size="0.6096" layer="25" font="vector" ratio="20">>NAME</text> +<text x="-1.27" y="-2.032" size="0.6096" layer="27" font="vector" ratio="20">>VALUE</text> +</package> +<package name="JST-2-SMD-VERT" urn="urn:adsk.eagle:footprint:37659/1" library_version="1"> +<description><h3>JST-Vertical Male Header SMT </h3> +<p>Specifications: +<ul><li>Pin count: 2</li> +<li>Pin pitch: 2mm</li> +</ul></p> +<p><a href=”http://www.4uconnector.com/online/object/4udrawing/20404.pdf”>Datasheet referenced for footprint</a></p> +<p>Example device(s): +<ul><li>CONN_02</li> +</ul></p></description> +<wire x1="-4.1" y1="2.97" x2="4.2" y2="2.97" width="0.2032" layer="51"/> +<wire x1="4.2" y1="2.97" x2="4.2" y2="-2.13" width="0.2032" layer="51"/> +<wire x1="4.2" y1="-2.13" x2="-4.1" y2="-2.13" width="0.2032" layer="51"/> +<wire x1="-4.1" y1="-2.13" x2="-4.1" y2="2.97" width="0.2032" layer="51"/> +<wire x1="-4.1" y1="3" x2="4.2" y2="3" width="0.2032" layer="21"/> +<wire x1="4.2" y1="3" x2="4.2" y2="2.3" width="0.2032" layer="21"/> +<wire x1="-4.1" y1="3" x2="-4.1" y2="2.3" width="0.2032" layer="21"/> +<wire x1="2" y1="-2.1" x2="4.2" y2="-2.1" width="0.2032" layer="21"/> +<wire x1="4.2" y1="-2.1" x2="4.2" y2="-1.7" width="0.2032" layer="21"/> +<wire x1="-2" y1="-2.1" x2="-4.1" y2="-2.1" width="0.2032" layer="21"/> +<wire x1="-4.1" y1="-2.1" x2="-4.1" y2="-1.8" width="0.2032" layer="21"/> +<smd name="P$1" x="-3.4" y="0.27" dx="3" dy="1.6" layer="1" rot="R90"/> +<smd name="P$2" x="3.4" y="0.27" dx="3" dy="1.6" layer="1" rot="R90"/> +<smd name="VCC" x="-1" y="-2" dx="1" dy="5.5" layer="1"/> +<smd name="GND" x="1" y="-2" dx="1" dy="5.5" layer="1"/> +<text x="-3.81" y="3.302" size="0.6096" layer="25" font="vector" ratio="20">>Name</text> +<text x="-3.81" y="2.21" size="0.6096" layer="27" font="vector" ratio="20">>Value</text> +</package> +<package name="SCREWTERMINAL-5MM-2" urn="urn:adsk.eagle:footprint:37660/1" library_version="1"> +<description><h3>Screw Terminal 5mm Pitch -2 Pin PTH</h3> +<p>Specifications: +<ul><li>Pin count: 2</li> +<li>Pin pitch: 5mm/197mil</li> +</ul></p> +<p><a href=”https://www.sparkfun.com/datasheets/Prototyping/Screw-Terminal-5mm.pdf”>Datasheet referenced for footprint</a></p> +<p>Example device(s): +<ul><li>CONN_02</li> +</ul></p></description> +<wire x1="-3.1" y1="4.2" x2="8.1" y2="4.2" width="0.2032" layer="21"/> +<wire x1="8.1" y1="4.2" x2="8.1" y2="-2.3" width="0.2032" layer="21"/> +<wire x1="8.1" y1="-2.3" x2="8.1" y2="-3.3" width="0.2032" layer="21"/> +<wire x1="8.1" y1="-3.3" x2="-3.1" y2="-3.3" width="0.2032" layer="21"/> +<wire x1="-3.1" y1="-3.3" x2="-3.1" y2="-2.3" width="0.2032" layer="21"/> +<wire x1="-3.1" y1="-2.3" x2="-3.1" y2="4.2" width="0.2032" layer="21"/> +<wire x1="8.1" y1="-2.3" x2="-3.1" y2="-2.3" width="0.2032" layer="21"/> +<wire x1="-3.1" y1="-1.35" x2="-3.7" y2="-1.35" width="0.2032" layer="51"/> +<wire x1="-3.7" y1="-1.35" x2="-3.7" y2="-2.35" width="0.2032" layer="51"/> +<wire x1="-3.7" y1="-2.35" x2="-3.1" y2="-2.35" width="0.2032" layer="51"/> +<wire x1="8.1" y1="4" x2="8.7" y2="4" width="0.2032" layer="51"/> +<wire x1="8.7" y1="4" x2="8.7" y2="3" width="0.2032" layer="51"/> +<wire x1="8.7" y1="3" x2="8.1" y2="3" width="0.2032" layer="51"/> +<circle x="2.5" y="3.7" radius="0.2828" width="0.127" layer="51"/> +<pad name="1" x="0" y="0" drill="1.3" diameter="2.032" shape="square"/> +<pad name="2" x="5" y="0" drill="1.3" diameter="2.032"/> +<text x="-1.27" y="2.54" size="0.6096" layer="25" font="vector" ratio="20">>NAME</text> +<text x="-1.27" y="1.27" size="0.6096" layer="27" font="vector" ratio="20">>VALUE</text> +</package> +<package name="1X02_LOCK" urn="urn:adsk.eagle:footprint:37661/1" library_version="1"> +<description><h3>Plated Through Hole - Locking Footprint</h3> +Holes are staggered by 0.005" from center to hold pins while soldering. +<p>Specifications: +<ul><li>Pin count:2</li> +<li>Pin pitch:0.1"</li> +</ul></p> +<p>Example device(s): +<ul><li>CONN_02</li> +</ul></p></description> +<wire x1="-0.635" y1="1.27" x2="0.635" y2="1.27" width="0.2032" layer="21"/> +<wire x1="0.635" y1="1.27" x2="1.27" y2="0.635" width="0.2032" layer="21"/> +<wire x1="1.27" y1="-0.635" x2="0.635" y2="-1.27" width="0.2032" layer="21"/> +<wire x1="1.27" y1="0.635" x2="1.905" y2="1.27" width="0.2032" layer="21"/> +<wire x1="1.905" y1="1.27" x2="3.175" y2="1.27" width="0.2032" layer="21"/> +<wire x1="3.175" y1="1.27" x2="3.81" y2="0.635" width="0.2032" layer="21"/> +<wire x1="3.81" y1="-0.635" x2="3.175" y2="-1.27" width="0.2032" layer="21"/> +<wire x1="3.175" y1="-1.27" x2="1.905" y2="-1.27" width="0.2032" layer="21"/> +<wire x1="1.905" y1="-1.27" x2="1.27" y2="-0.635" width="0.2032" layer="21"/> +<wire x1="-1.27" y1="0.635" x2="-1.27" y2="-0.635" width="0.2032" layer="21"/> +<wire x1="-0.635" y1="1.27" x2="-1.27" y2="0.635" width="0.2032" layer="21"/> +<wire x1="-1.27" y1="-0.635" x2="-0.635" y2="-1.27" width="0.2032" layer="21"/> +<wire x1="0.635" y1="-1.27" x2="-0.635" y2="-1.27" width="0.2032" layer="21"/> +<wire x1="3.81" y1="0.635" x2="3.81" y2="-0.635" width="0.2032" layer="21"/> +<pad name="1" x="-0.1778" y="0" drill="1.016" diameter="1.8796" rot="R90"/> +<pad name="2" x="2.7178" y="0" drill="1.016" diameter="1.8796" rot="R90"/> +<rectangle x1="-0.2921" y1="-0.2921" x2="0.2921" y2="0.2921" layer="51"/> +<rectangle x1="2.2479" y1="-0.2921" x2="2.8321" y2="0.2921" layer="51"/> +<text x="-1.27" y="1.397" size="0.6096" layer="25" font="vector" ratio="20">>NAME</text> +<text x="-1.27" y="-2.032" size="0.6096" layer="27" font="vector" ratio="20">>VALUE</text> +</package> +<package name="MOLEX-1X2_LOCK" urn="urn:adsk.eagle:footprint:37662/1" library_version="1"> +<description><h3>Molex 2-Pin Plated Through-Hole Locking Footprint</h3> +Holes are offset from center by 0.005" to hold pins in place during soldering. +<p>Specifications: +<ul><li>Pin count:2</li> +<li>Pin pitch:0.1"</li> +</ul></p> +<p><a href=”https://www.sparkfun.com/datasheets/Prototyping/2pin_molex_set_19iv10.pdf”>Datasheet referenced for footprint</a></p> +<p>Example device(s): +<ul><li>CONN_02</li> +</ul></p></description> +<wire x1="-1.27" y1="3.048" x2="-1.27" y2="-2.54" width="0.127" layer="21"/> +<wire x1="3.81" y1="3.048" x2="3.81" y2="-2.54" width="0.127" layer="21"/> +<wire x1="3.81" y1="3.048" x2="-1.27" y2="3.048" width="0.127" layer="21"/> +<wire x1="3.81" y1="-2.54" x2="2.54" y2="-2.54" width="0.127" layer="21"/> +<wire x1="2.54" y1="-2.54" x2="0" y2="-2.54" width="0.127" layer="21"/> +<wire x1="0" y1="-2.54" x2="-1.27" y2="-2.54" width="0.127" layer="21"/> +<wire x1="0" y1="-2.54" x2="0" y2="-1.27" width="0.127" layer="21"/> +<wire x1="0" y1="-1.27" x2="2.54" y2="-1.27" width="0.127" layer="21"/> +<wire x1="2.54" y1="-1.27" x2="2.54" y2="-2.54" width="0.127" layer="21"/> +<pad name="1" x="-0.127" y="0" drill="1.016" diameter="1.8796" shape="square"/> +<pad name="2" x="2.667" y="0" drill="1.016" diameter="1.8796"/> +<rectangle x1="-0.2921" y1="-0.2921" x2="0.2921" y2="0.2921" layer="51"/> +<rectangle x1="2.2479" y1="-0.2921" x2="2.8321" y2="0.2921" layer="51"/> +<text x="-1.27" y="3.302" size="0.6096" layer="25" font="vector" ratio="20">>NAME</text> +<text x="-1.27" y="-2.794" size="0.6096" layer="27" font="vector" ratio="20" align="top-left">>VALUE</text> +</package> +<package name="1X02_LOCK_LONGPADS" urn="urn:adsk.eagle:footprint:37663/1" library_version="1"> +<description><h3>Plated Through Hole - Long Pads with Locking Footprint</h3> +Pins are staggered by 0.005" from center to hold pins in place while soldering. +<p>Specifications: +<ul><li>Pin count:2</li> +<li>Pin pitch:0.1"</li> +</ul></p> +<p>Example device(s): +<ul><li>CONN_02</li> +</ul></p></description> +<wire x1="1.651" y1="0" x2="0.889" y2="0" width="0.2032" layer="21"/> +<wire x1="-1.27" y1="0" x2="-1.016" y2="0" width="0.2032" layer="21"/> +<wire x1="-1.27" y1="0" x2="-1.27" y2="0.9906" width="0.2032" layer="21"/> +<wire x1="-1.27" y1="0.9906" x2="-0.9906" y2="1.27" width="0.2032" layer="21"/> +<wire x1="-1.27" y1="0" x2="-1.27" y2="-0.9906" width="0.2032" layer="21"/> +<wire x1="-1.27" y1="-0.9906" x2="-0.9906" y2="-1.27" width="0.2032" layer="21"/> +<wire x1="3.81" y1="0" x2="3.556" y2="0" width="0.2032" layer="21"/> +<wire x1="3.81" y1="0" x2="3.81" y2="-0.9906" width="0.2032" layer="21"/> +<wire x1="3.81" y1="-0.9906" x2="3.5306" y2="-1.27" width="0.2032" layer="21"/> +<wire x1="3.81" y1="0" x2="3.81" y2="0.9906" width="0.2032" layer="21"/> +<wire x1="3.81" y1="0.9906" x2="3.5306" y2="1.27" width="0.2032" layer="21"/> +<pad name="1" x="-0.127" y="0" drill="1.016" shape="long" rot="R90"/> +<pad name="2" x="2.667" y="0" drill="1.016" shape="long" rot="R90"/> +<rectangle x1="-0.2921" y1="-0.2921" x2="0.2921" y2="0.2921" layer="51"/> +<rectangle x1="2.2479" y1="-0.2921" x2="2.8321" y2="0.2921" layer="51"/> +<text x="-1.27" y="1.651" size="0.6096" layer="25" font="vector" ratio="20">>NAME</text> +<text x="-1.27" y="-2.286" size="0.6096" layer="27" font="vector" ratio="20">>VALUE</text> +</package> +<package name="SCREWTERMINAL-3.5MM-2_LOCK" urn="urn:adsk.eagle:footprint:37664/1" library_version="1"> +<description><h3>Screw Terminal 3.5mm Pitch - 2 Pin PTH Locking</h3> +Holes are offset from center 0.005" to hold pins in place during soldering. +<p>Specifications: +<ul><li>Pin count: 2</li> +<li>Pin pitch: 3.5mm/138mil</li> +</ul></p> +<p><a href=”https://www.sparkfun.com/datasheets/Prototyping/Screw-Terminal-3.5mm.pdf”>Datasheet referenced for footprint</a></p> +<p>Example device(s): +<ul><li>CONN_02</li> +</ul></p></description> +<wire x1="-1.75" y1="3.4" x2="5.25" y2="3.4" width="0.2032" layer="21"/> +<wire x1="5.25" y1="3.4" x2="5.25" y2="-2.8" width="0.2032" layer="21"/> +<wire x1="5.25" y1="-2.8" x2="5.25" y2="-3.6" width="0.2032" layer="21"/> +<wire x1="5.25" y1="-3.6" x2="-1.75" y2="-3.6" width="0.2032" layer="21"/> +<wire x1="-1.75" y1="-3.6" x2="-1.75" y2="-2.8" width="0.2032" layer="21"/> +<wire x1="-1.75" y1="-2.8" x2="-1.75" y2="3.4" width="0.2032" layer="21"/> +<wire x1="5.25" y1="-2.8" x2="-1.75" y2="-2.8" width="0.2032" layer="21"/> +<wire x1="-1.75" y1="-1.35" x2="-2.15" y2="-1.35" width="0.2032" layer="51"/> +<wire x1="-2.15" y1="-1.35" x2="-2.15" y2="-2.35" width="0.2032" layer="51"/> +<wire x1="-2.15" y1="-2.35" x2="-1.75" y2="-2.35" width="0.2032" layer="51"/> +<wire x1="5.25" y1="3.15" x2="5.65" y2="3.15" width="0.2032" layer="51"/> +<wire x1="5.65" y1="3.15" x2="5.65" y2="2.15" width="0.2032" layer="51"/> +<wire x1="5.65" y1="2.15" x2="5.25" y2="2.15" width="0.2032" layer="51"/> +<circle x="2" y="3" radius="0.2828" width="0.127" layer="51"/> +<circle x="0" y="0" radius="0.4318" width="0.0254" layer="51"/> +<circle x="3.5" y="0" radius="0.4318" width="0.0254" layer="51"/> +<pad name="1" x="-0.1778" y="0" drill="1.2" diameter="2.032" shape="square"/> +<pad name="2" x="3.6778" y="0" drill="1.2" diameter="2.032"/> +<text x="-1.27" y="2.54" size="0.6096" layer="25" font="vector" ratio="20">>NAME</text> +<text x="-1.27" y="1.27" size="0.6096" layer="27" font="vector" ratio="20">>VALUE</text> +</package> +<package name="1X02_LONGPADS" urn="urn:adsk.eagle:footprint:37665/1" library_version="1"> +<description><h3>Plated Through Hole - Long Pads without Silk Outline</h3> +<p>Specifications: +<ul><li>Pin count:2</li> +<li>Pin pitch:0.1"</li> +</ul></p> +<p>Example device(s): +<ul><li>CONN_02</li> +</ul></p></description> +<pad name="1" x="0" y="0" drill="1.1176" diameter="1.8796" shape="long" rot="R90"/> +<pad name="2" x="2.54" y="0" drill="1.1176" diameter="1.8796" shape="long" rot="R90"/> +<text x="-1.27" y="2.032" size="0.6096" layer="25" font="vector" ratio="20">>NAME</text> +<text x="-1.397" y="-2.667" size="0.6096" layer="27" font="vector" ratio="20">>VALUE</text> +</package> +<package name="1X02_NO_SILK" urn="urn:adsk.eagle:footprint:37666/1" library_version="1"> +<description><h3>Plated Through Hole - No Silk Outline</h3> +<p>Specifications: +<ul><li>Pin count:2</li> +<li>Pin pitch:0.1"</li> +</ul></p> +<p>Example device(s): +<ul><li>CONN_02</li> +</ul></p></description> +<pad name="1" x="0" y="0" drill="1.016" diameter="1.8796" rot="R90"/> +<pad name="2" x="2.54" y="0" drill="1.016" diameter="1.8796" rot="R90"/> +<rectangle x1="2.286" y1="-0.254" x2="2.794" y2="0.254" layer="51"/> +<rectangle x1="-0.254" y1="-0.254" x2="0.254" y2="0.254" layer="51"/> +<text x="-1.27" y="1.397" size="0.6096" layer="25" font="vector" ratio="20">>NAME</text> +<text x="-1.27" y="-2.032" size="0.6096" layer="27" font="vector" ratio="20">>VALUE</text> +</package> +<package name="JST-2-PTH" urn="urn:adsk.eagle:footprint:37667/1" library_version="1"> +<description><h3>JST 2 Pin Right Angle Plated Through Hole</h3> +tDocu indicate polarity for connections that match SparkFun LiPo battery terminations. +<p>Specifications: +<ul><li>Pin count: 2</li> +<li>Pin pitch:2mm</li> +</ul></p> +<p><a href=”https://www.sparkfun.com/datasheets/Prototyping/Connectors/JST%282%29-01548.pdf”>Datasheet referenced for footprint</a></p> +<p>Example device(s): +<ul><li>CONN_02</li> +</ul></p></description> +<pad name="1" x="-1" y="0" drill="0.7" diameter="1.6"/> +<pad name="2" x="1" y="0" drill="0.7" diameter="1.6"/> +<text x="-1.27" y="5.27" size="0.6096" layer="25" font="vector" ratio="20">>Name</text> +<text x="-1.27" y="2.73" size="0.6096" layer="27" font="vector" ratio="20">>Value</text> +<text x="0.6" y="0.7" size="1.27" layer="51">+</text> +<text x="-1.4" y="0.7" size="1.27" layer="51">-</text> +<wire x1="-2.95" y1="-1.6" x2="-2.95" y2="6" width="0.2032" layer="21"/> +<wire x1="-2.95" y1="6" x2="2.95" y2="6" width="0.2032" layer="21"/> +<wire x1="2.95" y1="6" x2="2.95" y2="-1.6" width="0.2032" layer="21"/> +<wire x1="-2.95" y1="-1.6" x2="-2.3" y2="-1.6" width="0.2032" layer="21"/> +<wire x1="2.95" y1="-1.6" x2="2.3" y2="-1.6" width="0.2032" layer="21"/> +<wire x1="-2.3" y1="-1.6" x2="-2.3" y2="0" width="0.2032" layer="21"/> +<wire x1="2.3" y1="-1.6" x2="2.3" y2="0" width="0.2032" layer="21"/> +</package> +<package name="1X02_XTRA_BIG" urn="urn:adsk.eagle:footprint:37668/1" library_version="1"> +<description><h3>Plated Through Hole - 0.1" holes</h3> +<p>Specifications: +<ul><li>Pin count:2</li> +<li>Pin pitch:0.2"</li> +</ul></p> +<p>Example device(s): +<ul><li>CONN_02</li> +</ul></p></description> +<wire x1="-5.08" y1="2.54" x2="-5.08" y2="-2.54" width="0.127" layer="21"/> +<wire x1="-5.08" y1="-2.54" x2="5.08" y2="-2.54" width="0.127" layer="21"/> +<wire x1="5.08" y1="-2.54" x2="5.08" y2="2.54" width="0.127" layer="21"/> +<wire x1="5.08" y1="2.54" x2="-5.08" y2="2.54" width="0.127" layer="21"/> +<pad name="1" x="-2.54" y="0" drill="2.0574" diameter="3.556"/> +<pad name="2" x="2.54" y="0" drill="2.0574" diameter="3.556"/> +<text x="-5.08" y="2.667" size="0.6096" layer="25" font="vector" ratio="20">>NAME</text> +<text x="-5.08" y="-3.302" size="0.6096" layer="27" font="vector" ratio="20">>VALUE</text> +</package> +<package name="1X02_PP_HOLES_ONLY" urn="urn:adsk.eagle:footprint:37669/1" library_version="1"> +<description><h3>Pogo Pins Connector - No Silk Outline</h3> +<p>Specifications: +<ul><li>Pin count:2</li> +<li>Pin pitch:0.1"</li> +</ul></p> +<p>Example device(s): +<ul><li>CONN_02</li> +</ul></p></description> +<circle x="0" y="0" radius="0.635" width="0.127" layer="51"/> +<circle x="2.54" y="0" radius="0.635" width="0.127" layer="51"/> +<pad name="1" x="0" y="0" drill="0.889" diameter="0.8128" rot="R90"/> +<pad name="2" x="2.54" y="0" drill="0.889" diameter="0.8128" rot="R90"/> +<hole x="0" y="0" drill="1.4732"/> +<hole x="2.54" y="0" drill="1.4732"/> +<text x="-1.27" y="1.143" size="0.6096" layer="25" font="vector" ratio="20">>NAME</text> +<text x="-1.27" y="-1.778" size="0.6096" layer="27" font="vector" ratio="20">>VALUE</text> +</package> +<package name="SCREWTERMINAL-3.5MM-2-NS" urn="urn:adsk.eagle:footprint:37670/1" library_version="1"> +<description><h3>Screw Terminal 3.5mm Pitch - 2 Pin PTH No Silk Outline</h3> +<p>Specifications: +<ul><li>Pin count: 2</li> +<li>Pin pitch: 3.5mm/138mil</li> +</ul></p> +<p><a href=”https://www.sparkfun.com/datasheets/Prototyping/Screw-Terminal-3.5mm.pdf”>Datasheet referenced for footprint</a></p> +<p>Example device(s): +<ul><li>CONN_02</li> +</ul></p></description> +<wire x1="-1.75" y1="3.4" x2="5.25" y2="3.4" width="0.2032" layer="51"/> +<wire x1="5.25" y1="3.4" x2="5.25" y2="-2.8" width="0.2032" layer="51"/> +<wire x1="5.25" y1="-2.8" x2="5.25" y2="-3.6" width="0.2032" layer="51"/> +<wire x1="5.25" y1="-3.6" x2="-1.75" y2="-3.6" width="0.2032" layer="51"/> +<wire x1="-1.75" y1="-3.6" x2="-1.75" y2="-2.8" width="0.2032" layer="51"/> +<wire x1="-1.75" y1="-2.8" x2="-1.75" y2="3.4" width="0.2032" layer="51"/> +<wire x1="5.25" y1="-2.8" x2="-1.75" y2="-2.8" width="0.2032" layer="51"/> +<wire x1="-1.75" y1="-1.35" x2="-2.15" y2="-1.35" width="0.2032" layer="51"/> +<wire x1="-2.15" y1="-1.35" x2="-2.15" y2="-2.35" width="0.2032" layer="51"/> +<wire x1="-2.15" y1="-2.35" x2="-1.75" y2="-2.35" width="0.2032" layer="51"/> +<wire x1="5.25" y1="3.15" x2="5.65" y2="3.15" width="0.2032" layer="51"/> +<wire x1="5.65" y1="3.15" x2="5.65" y2="2.15" width="0.2032" layer="51"/> +<wire x1="5.65" y1="2.15" x2="5.25" y2="2.15" width="0.2032" layer="51"/> +<circle x="2" y="3" radius="0.2828" width="0.127" layer="51"/> +<pad name="1" x="0" y="0" drill="1.2" diameter="2.032" shape="square"/> +<pad name="2" x="3.5" y="0" drill="1.2" diameter="2.032"/> +<text x="-1.27" y="2.54" size="0.6096" layer="25" font="vector" ratio="20">>NAME</text> +<text x="-1.27" y="1.27" size="0.6096" layer="27" font="vector" ratio="20">>VALUE</text> +</package> +<package name="JST-2-PTH-NS" urn="urn:adsk.eagle:footprint:37671/1" library_version="1"> +<description><h3>JST 2 Pin Right Angle Plated Through Hole- No Silk</h3> +tDocu indicate polarity for connections that match SparkFun LiPo battery terminations. +<br> No silk outline of connector. +<p>Specifications: +<ul><li>Pin count: 2</li> +<li>Pin pitch:2mm</li> +</ul></p> +<p><a href=”https://www.sparkfun.com/datasheets/Prototyping/Connectors/JST%282%29-01548.pdf”>Datasheet referenced for footprint</a></p> +<p>Example device(s): +<ul><li>CONN_02</li> +</ul></p></description> +<wire x1="-2" y1="0" x2="-2" y2="-1.8" width="0.2032" layer="51"/> +<wire x1="-2" y1="-1.8" x2="-3" y2="-1.8" width="0.2032" layer="51"/> +<wire x1="-3" y1="-1.8" x2="-3" y2="6" width="0.2032" layer="51"/> +<wire x1="-3" y1="6" x2="3" y2="6" width="0.2032" layer="51"/> +<wire x1="3" y1="6" x2="3" y2="-1.8" width="0.2032" layer="51"/> +<wire x1="3" y1="-1.8" x2="2" y2="-1.8" width="0.2032" layer="51"/> +<wire x1="2" y1="-1.8" x2="2" y2="0" width="0.2032" layer="51"/> +<pad name="1" x="-1" y="0" drill="0.7" diameter="1.6"/> +<pad name="2" x="1" y="0" drill="0.7" diameter="1.6"/> +<text x="-1.27" y="5.27" size="0.6096" layer="25" font="vector" ratio="20">>Name</text> +<text x="-1.27" y="4" size="0.6096" layer="27" font="vector" ratio="20">>Value</text> +<text x="0.6" y="0.7" size="1.27" layer="51">+</text> +<text x="-1.4" y="0.7" size="1.27" layer="51">-</text> +</package> +<package name="JST-2-PTH-KIT" urn="urn:adsk.eagle:footprint:37672/1" library_version="1"> +<description><h3>JST 2 Pin Right Angle Plated Through Hole - KIT</h3> +tDocu indicate polarity for connections that match SparkFun LiPo battery terminations. +<br> This package has a smaller diameter top stop mask, which doesn't cover the diameter of the pad. +<br> This means only the bottom side of the pads' copper will be exposed. You'll only be able to solder to the bottom side. +<p>Specifications: +<ul><li>Pin count: 2</li> +<li>Pin pitch:2mm</li> +</ul></p> +<p><a href=”https://www.sparkfun.com/datasheets/Prototyping/Connectors/JST%282%29-01548.pdf”>Datasheet referenced for footprint</a></p> +<p>Example device(s): +<ul><li>CONN_02</li> +</ul></p></description> +<wire x1="-2" y1="0" x2="-2" y2="-1.8" width="0.2032" layer="51"/> +<wire x1="-2" y1="-1.8" x2="-3" y2="-1.8" width="0.2032" layer="51"/> +<wire x1="-3" y1="-1.8" x2="-3" y2="6" width="0.2032" layer="51"/> +<wire x1="-3" y1="6" x2="3" y2="6" width="0.2032" layer="51"/> +<wire x1="3" y1="6" x2="3" y2="-1.8" width="0.2032" layer="51"/> +<wire x1="3" y1="-1.8" x2="2" y2="-1.8" width="0.2032" layer="51"/> +<wire x1="2" y1="-1.8" x2="2" y2="0" width="0.2032" layer="51"/> +<pad name="1" x="-1" y="0" drill="0.7" diameter="1.4478" stop="no"/> +<pad name="2" x="1" y="0" drill="0.7" diameter="1.4478" stop="no"/> +<text x="-1.27" y="5.27" size="0.6096" layer="25" font="vector" ratio="20">>Name</text> +<text x="-1.27" y="4" size="0.6096" layer="27" font="vector" ratio="20">>Value</text> +<text x="0.6" y="0.7" size="1.27" layer="51">+</text> +<text x="-1.4" y="0.7" size="1.27" layer="51">-</text> +<polygon width="0.127" layer="30"> +<vertex x="-0.9975" y="-0.6604" curve="-90.025935"/> +<vertex x="-1.6604" y="0" curve="-90.017354"/> +<vertex x="-1" y="0.6604" curve="-90"/> +<vertex x="-0.3396" y="0" curve="-90.078137"/> +</polygon> +<polygon width="0.127" layer="29"> +<vertex x="-1" y="-0.2865" curve="-90.08005"/> +<vertex x="-1.2865" y="0" curve="-90.040011"/> +<vertex x="-1" y="0.2865" curve="-90"/> +<vertex x="-0.7135" y="0" curve="-90"/> +</polygon> +<polygon width="0.127" layer="30"> +<vertex x="1.0025" y="-0.6604" curve="-90.025935"/> +<vertex x="0.3396" y="0" curve="-90.017354"/> +<vertex x="1" y="0.6604" curve="-90"/> +<vertex x="1.6604" y="0" curve="-90.078137"/> +</polygon> +<polygon width="0.127" layer="29"> +<vertex x="1" y="-0.2865" curve="-90.08005"/> +<vertex x="0.7135" y="0" curve="-90.040011"/> +<vertex x="1" y="0.2865" curve="-90"/> +<vertex x="1.2865" y="0" curve="-90"/> +</polygon> +</package> +<package name="SPRINGTERMINAL-2.54MM-2" urn="urn:adsk.eagle:footprint:37673/1" library_version="1"> +<description><h3>Spring Terminal- PCB Mount 2 Pin PTH</h3> +tDocu marks the spring arms +<p>Specifications: +<ul><li>Pin count: 4</li> +<li>Pin pitch: 0.1"</li> +</ul></p> +<p><a href=”https://www.sparkfun.com/datasheets/Prototyping/SpringTerminal.pdf”>Datasheet referenced for footprint</a></p> +<p>Example device(s): +<ul><li>CONN_02</li> +</ul></p></description> +<wire x1="-4.2" y1="7.88" x2="-4.2" y2="-2.8" width="0.254" layer="21"/> +<wire x1="-4.2" y1="-2.8" x2="-4.2" y2="-4.72" width="0.254" layer="51"/> +<wire x1="-4.2" y1="-4.72" x2="3.44" y2="-4.72" width="0.254" layer="51"/> +<wire x1="3.44" y1="-4.72" x2="3.44" y2="-2.8" width="0.254" layer="51"/> +<wire x1="3.44" y1="7.88" x2="-4.2" y2="7.88" width="0.254" layer="21"/> +<wire x1="0" y1="0" x2="0" y2="5.08" width="0.254" layer="1"/> +<wire x1="0" y1="0" x2="0" y2="5.08" width="0.254" layer="16"/> +<wire x1="2.54" y1="0" x2="2.54" y2="5.08" width="0.254" layer="16"/> +<wire x1="2.54" y1="0" x2="2.54" y2="5.08" width="0.254" layer="1"/> +<wire x1="-4.2" y1="-2.8" x2="3.44" y2="-2.8" width="0.254" layer="21"/> +<wire x1="3.44" y1="4" x2="3.44" y2="1" width="0.254" layer="21"/> +<wire x1="3.44" y1="7.88" x2="3.44" y2="6" width="0.254" layer="21"/> +<wire x1="3.44" y1="-0.9" x2="3.44" y2="-2.8" width="0.254" layer="21"/> +<pad name="1" x="0" y="0" drill="1.1" diameter="1.9"/> +<pad name="P$2" x="0" y="5.08" drill="1.1" diameter="1.9"/> +<pad name="P$3" x="2.54" y="5.08" drill="1.1" diameter="1.9"/> +<pad name="2" x="2.54" y="0" drill="1.1" diameter="1.9"/> +</package> +<package name="1X02_2.54_SCREWTERM" urn="urn:adsk.eagle:footprint:37674/1" library_version="1"> +<description><h3>2 Pin Screw Terminal - 2.54mm</h3> +<p>Specifications: +<ul><li>Pin count:2</li> +<li>Pin pitch:0.1"</li> +</ul></p> +<p>Example device(s): +<ul><li>CONN_02</li> +</ul></p></description> +<pad name="P2" x="0" y="0" drill="1.016" shape="square"/> +<pad name="P1" x="2.54" y="0" drill="1.016" shape="square"/> +<wire x1="-1.5" y1="3.25" x2="4" y2="3.25" width="0.2032" layer="21"/> +<wire x1="4" y1="3.25" x2="4" y2="2.5" width="0.2032" layer="21"/> +<wire x1="4" y1="2.5" x2="4" y2="-3.25" width="0.2032" layer="21"/> +<wire x1="4" y1="-3.25" x2="-1.5" y2="-3.25" width="0.2032" layer="21"/> +<wire x1="-1.5" y1="-3.25" x2="-1.5" y2="2.5" width="0.2032" layer="21"/> +<wire x1="-1.5" y1="2.5" x2="-1.5" y2="3.25" width="0.2032" layer="21"/> +<wire x1="-1.5" y1="2.5" x2="4" y2="2.5" width="0.2032" layer="21"/> +<text x="-1.27" y="3.429" size="0.6096" layer="25" font="vector" ratio="20">>NAME</text> +<text x="-1.27" y="-4.064" size="0.6096" layer="27" font="vector" ratio="20">>VALUE</text> +</package> +<package name="1X02_POKEHOME" urn="urn:adsk.eagle:footprint:37675/1" library_version="1"> +<description>2 pin poke-home connector + +part number 2062-2P from STA</description> +<wire x1="-7" y1="-4" x2="-7" y2="2" width="0.2032" layer="21"/> +<wire x1="-7" y1="2" x2="-7" y2="4" width="0.2032" layer="21"/> +<wire x1="4.7" y1="4" x2="4.7" y2="-4" width="0.2032" layer="21"/> +<wire x1="4.7" y1="-4" x2="-7" y2="-4" width="0.2032" layer="21"/> +<wire x1="-7" y1="4" x2="4.7" y2="4" width="0.2032" layer="21"/> +<smd name="P2" x="5.25" y="-2" dx="3.5" dy="2" layer="1"/> +<smd name="P1" x="5.25" y="2" dx="3.5" dy="2" layer="1"/> +<smd name="P4" x="-4" y="-2" dx="6" dy="2" layer="1"/> +<smd name="P3" x="-4" y="2" dx="6" dy="2" layer="1"/> +<text x="0.635" y="-3.175" size="0.4064" layer="25">>NAME</text> +<text x="0.635" y="-1.905" size="0.4064" layer="27">>VALUE</text> +</package> +<package name="1X02_RA_PTH_FEMALE" urn="urn:adsk.eagle:footprint:37676/1" library_version="1"> +<wire x1="-2.79" y1="4.25" x2="-2.79" y2="-4.25" width="0.1778" layer="21"/> +<wire x1="2.79" y1="4.25" x2="2.79" y2="-4.25" width="0.1778" layer="21"/> +<wire x1="-2.79" y1="4.25" x2="2.79" y2="4.25" width="0.1778" layer="21"/> +<wire x1="-2.79" y1="-4.25" x2="2.79" y2="-4.25" width="0.1778" layer="21"/> +<text x="-1.397" y="0.762" size="0.6096" layer="25" font="vector" ratio="20">>NAME</text> +<text x="-1.524" y="-1.27" size="0.6096" layer="27" font="vector" ratio="20">>VALUE</text> +<pad name="2" x="-1.27" y="-5.85" drill="0.8"/> +<pad name="1" x="1.27" y="-5.85" drill="0.8"/> +</package> +<package name="1X04" urn="urn:adsk.eagle:footprint:37702/1" library_version="1"> +<description><h3>Plated Through Hole - 4 Pin</h3> +<p>Specifications: +<ul><li>Pin count:4</li> +<li>Pin pitch:0.1"</li> +</ul></p> +<p>Example device(s): +<ul><li>CONN_04</li> +</ul></p></description> +<wire x1="6.985" y1="1.27" x2="8.255" y2="1.27" width="0.2032" layer="21"/> +<wire x1="8.255" y1="1.27" x2="8.89" y2="0.635" width="0.2032" layer="21"/> +<wire x1="8.89" y1="-0.635" x2="8.255" y2="-1.27" width="0.2032" layer="21"/> +<wire x1="3.81" y1="0.635" x2="4.445" y2="1.27" width="0.2032" layer="21"/> +<wire x1="4.445" y1="1.27" x2="5.715" y2="1.27" width="0.2032" layer="21"/> +<wire x1="5.715" y1="1.27" x2="6.35" y2="0.635" width="0.2032" layer="21"/> +<wire x1="6.35" y1="-0.635" x2="5.715" y2="-1.27" width="0.2032" layer="21"/> +<wire x1="5.715" y1="-1.27" x2="4.445" y2="-1.27" width="0.2032" layer="21"/> +<wire x1="4.445" y1="-1.27" x2="3.81" y2="-0.635" width="0.2032" layer="21"/> +<wire x1="6.985" y1="1.27" x2="6.35" y2="0.635" width="0.2032" layer="21"/> +<wire x1="6.35" y1="-0.635" x2="6.985" y2="-1.27" width="0.2032" layer="21"/> +<wire x1="8.255" y1="-1.27" x2="6.985" y2="-1.27" width="0.2032" layer="21"/> +<wire x1="-0.635" y1="1.27" x2="0.635" y2="1.27" width="0.2032" layer="21"/> +<wire x1="0.635" y1="1.27" x2="1.27" y2="0.635" width="0.2032" layer="21"/> +<wire x1="1.27" y1="-0.635" x2="0.635" y2="-1.27" width="0.2032" layer="21"/> +<wire x1="1.27" y1="0.635" x2="1.905" y2="1.27" width="0.2032" layer="21"/> +<wire x1="1.905" y1="1.27" x2="3.175" y2="1.27" width="0.2032" layer="21"/> +<wire x1="3.175" y1="1.27" x2="3.81" y2="0.635" width="0.2032" layer="21"/> +<wire x1="3.81" y1="-0.635" x2="3.175" y2="-1.27" width="0.2032" layer="21"/> +<wire x1="3.175" y1="-1.27" x2="1.905" y2="-1.27" width="0.2032" layer="21"/> +<wire x1="1.905" y1="-1.27" x2="1.27" y2="-0.635" width="0.2032" layer="21"/> +<wire x1="-1.27" y1="0.635" x2="-1.27" y2="-0.635" width="0.2032" layer="21"/> +<wire x1="-0.635" y1="1.27" x2="-1.27" y2="0.635" width="0.2032" layer="21"/> +<wire x1="-1.27" y1="-0.635" x2="-0.635" y2="-1.27" width="0.2032" layer="21"/> +<wire x1="0.635" y1="-1.27" x2="-0.635" y2="-1.27" width="0.2032" layer="21"/> +<wire x1="8.89" y1="0.635" x2="8.89" y2="-0.635" width="0.2032" layer="21"/> +<pad name="1" x="0" y="0" drill="1.016" diameter="1.8796" rot="R90"/> +<pad name="2" x="2.54" y="0" drill="1.016" diameter="1.8796" rot="R90"/> +<pad name="3" x="5.08" y="0" drill="1.016" diameter="1.8796" rot="R90"/> +<pad name="4" x="7.62" y="0" drill="1.016" diameter="1.8796" rot="R90"/> +<rectangle x1="7.366" y1="-0.254" x2="7.874" y2="0.254" layer="51"/> +<rectangle x1="4.826" y1="-0.254" x2="5.334" y2="0.254" layer="51"/> +<rectangle x1="2.286" y1="-0.254" x2="2.794" y2="0.254" layer="51"/> +<rectangle x1="-0.254" y1="-0.254" x2="0.254" y2="0.254" layer="51"/> +<text x="-1.27" y="1.397" size="0.6096" layer="25" font="vector" ratio="20">>NAME</text> +<text x="-1.27" y="-2.032" size="0.6096" layer="27" font="vector" ratio="20">>VALUE</text> +</package> +<package name="MOLEX-1X4" urn="urn:adsk.eagle:footprint:37703/1" library_version="1"> +<description><h3>Molex 4-Pin Plated Through-Hole</h3> +<p>Specifications: +<ul><li>Pin count:4</li> +<li>Pin pitch:0.1"</li> +</ul></p> +<p><a href=”https://www.sparkfun.com/datasheets/Prototyping/2pin_molex_set_19iv10.pdf”>Datasheet referenced for footprint</a></p> +<p>Example device(s): +<ul><li>CONN_04</li> +</ul></p></description> +<wire x1="-1.27" y1="3.048" x2="-1.27" y2="-2.54" width="0.127" layer="21"/> +<wire x1="8.89" y1="3.048" x2="8.89" y2="-2.54" width="0.127" layer="21"/> +<wire x1="8.89" y1="3.048" x2="-1.27" y2="3.048" width="0.127" layer="21"/> +<wire x1="8.89" y1="-2.54" x2="7.62" y2="-2.54" width="0.127" layer="21"/> +<wire x1="7.62" y1="-2.54" x2="0" y2="-2.54" width="0.127" layer="21"/> +<wire x1="0" y1="-2.54" x2="-1.27" y2="-2.54" width="0.127" layer="21"/> +<wire x1="0" y1="-2.54" x2="0" y2="-1.27" width="0.127" layer="21"/> +<wire x1="0" y1="-1.27" x2="7.62" y2="-1.27" width="0.127" layer="21"/> +<wire x1="7.62" y1="-1.27" x2="7.62" y2="-2.54" width="0.127" layer="21"/> +<pad name="1" x="0" y="0" drill="1.016" diameter="1.8796" shape="square"/> +<pad name="2" x="2.54" y="0" drill="1.016" diameter="1.8796"/> +<pad name="3" x="5.08" y="0" drill="1.016" diameter="1.8796"/> +<pad name="4" x="7.62" y="0" drill="1.016" diameter="1.8796"/> +<text x="2.286" y="3.302" size="0.6096" layer="25" font="vector" ratio="20">>NAME</text> +<text x="2.286" y="-3.429" size="0.6096" layer="27" font="vector" ratio="20">>VALUE</text> +</package> +<package name="SCREWTERMINAL-3.5MM-4" urn="urn:adsk.eagle:footprint:37704/1" library_version="1"> +<description><h3>Screw Terminal 3.5mm Pitch -4 Pin PTH</h3> +<p>Specifications: +<ul><li>Pin count: 4</li> +<li>Pin pitch: 3.5mm/138mil</li> +</ul></p> +<p><a href=”https://www.sparkfun.com/datasheets/Prototyping/Screw-Terminal-3.5mm.pdf”>Datasheet referenced for footprint</a></p> +<p>Example device(s): +<ul><li>CONN_04</li> +</ul></p></description> +<wire x1="-1.75" y1="3.4" x2="12.25" y2="3.4" width="0.2032" layer="21"/> +<wire x1="12.25" y1="3.4" x2="12.25" y2="-2.8" width="0.2032" layer="21"/> +<wire x1="12.25" y1="-2.8" x2="12.25" y2="-3.6" width="0.2032" layer="21"/> +<wire x1="12.25" y1="-3.6" x2="-1.75" y2="-3.6" width="0.2032" layer="21"/> +<wire x1="-1.75" y1="-3.6" x2="-1.75" y2="-2.8" width="0.2032" layer="21"/> +<wire x1="-1.75" y1="-2.8" x2="-1.75" y2="3.4" width="0.2032" layer="21"/> +<wire x1="12.25" y1="-2.8" x2="-1.75" y2="-2.8" width="0.2032" layer="21"/> +<wire x1="-1.75" y1="-1.35" x2="-2.25" y2="-1.35" width="0.2032" layer="51"/> +<wire x1="-2.25" y1="-1.35" x2="-2.25" y2="-2.35" width="0.2032" layer="51"/> +<wire x1="-2.25" y1="-2.35" x2="-1.75" y2="-2.35" width="0.2032" layer="51"/> +<wire x1="12.25" y1="3.15" x2="12.75" y2="3.15" width="0.2032" layer="51"/> +<wire x1="12.75" y1="3.15" x2="12.75" y2="2.15" width="0.2032" layer="51"/> +<wire x1="12.75" y1="2.15" x2="12.25" y2="2.15" width="0.2032" layer="51"/> +<circle x="0" y="0" radius="0.425" width="0.001" layer="51"/> +<circle x="3.5" y="0" radius="0.425" width="0.001" layer="51"/> +<circle x="7" y="0" radius="0.425" width="0.001" layer="51"/> +<circle x="10.5" y="0" radius="0.425" width="0.001" layer="51"/> +<pad name="1" x="0" y="0" drill="1.2" diameter="2.032" shape="square"/> +<pad name="2" x="3.5" y="0" drill="1.2" diameter="2.032"/> +<pad name="3" x="7" y="0" drill="1.2" diameter="2.032"/> +<pad name="4" x="10.5" y="0" drill="1.2" diameter="2.032"/> +<text x="0" y="2.413" size="0.6096" layer="25" font="vector" ratio="20">>NAME</text> +<text x="0" y="-2.286" size="0.6096" layer="27" font="vector" ratio="20">>VALUE</text> +</package> +<package name="1X04_1.27MM" urn="urn:adsk.eagle:footprint:37705/1" library_version="1"> +<description><h3>Plated Through Hole - 4 Pin</h3> +<p>Specifications: +<ul><li>Pin count:4</li> +<li>Pin pitch: 1.27mm</li> +</ul></p> +<p>Example device(s): +<ul><li>CONN_04</li> +</ul></p></description> +<wire x1="-0.381" y1="-0.889" x2="0.381" y2="-0.889" width="0.127" layer="21"/> +<wire x1="0.381" y1="-0.889" x2="0.635" y2="-0.635" width="0.127" layer="21"/> +<wire x1="0.635" y1="-0.635" x2="0.889" y2="-0.889" width="0.127" layer="21"/> +<wire x1="0.889" y1="-0.889" x2="1.651" y2="-0.889" width="0.127" layer="21"/> +<wire x1="1.651" y1="-0.889" x2="1.905" y2="-0.635" width="0.127" layer="21"/> +<wire x1="1.905" y1="-0.635" x2="2.159" y2="-0.889" width="0.127" layer="21"/> +<wire x1="2.159" y1="-0.889" x2="2.921" y2="-0.889" width="0.127" layer="21"/> +<wire x1="2.921" y1="-0.889" x2="3.175" y2="-0.635" width="0.127" layer="21"/> +<wire x1="3.175" y1="-0.635" x2="3.429" y2="-0.889" width="0.127" layer="21"/> +<wire x1="3.429" y1="-0.889" x2="4.191" y2="-0.889" width="0.127" layer="21"/> +<wire x1="4.191" y1="0.889" x2="3.429" y2="0.889" width="0.127" layer="21"/> +<wire x1="3.429" y1="0.889" x2="3.175" y2="0.635" width="0.127" layer="21"/> +<wire x1="3.175" y1="0.635" x2="2.921" y2="0.889" width="0.127" layer="21"/> +<wire x1="2.921" y1="0.889" x2="2.159" y2="0.889" width="0.127" layer="21"/> +<wire x1="2.159" y1="0.889" x2="1.905" y2="0.635" width="0.127" layer="21"/> +<wire x1="1.905" y1="0.635" x2="1.651" y2="0.889" width="0.127" layer="21"/> +<wire x1="1.651" y1="0.889" x2="0.889" y2="0.889" width="0.127" layer="21"/> +<wire x1="0.889" y1="0.889" x2="0.635" y2="0.635" width="0.127" layer="21"/> +<wire x1="0.635" y1="0.635" x2="0.381" y2="0.889" width="0.127" layer="21"/> +<wire x1="0.381" y1="0.889" x2="-0.381" y2="0.889" width="0.127" layer="21"/> +<wire x1="-0.381" y1="0.889" x2="-0.889" y2="0.381" width="0.127" layer="21"/> +<wire x1="-0.889" y1="-0.381" x2="-0.381" y2="-0.889" width="0.127" layer="21"/> +<wire x1="-0.889" y1="0.381" x2="-0.889" y2="-0.381" width="0.127" layer="21"/> +<wire x1="4.191" y1="0.889" x2="4.699" y2="0.381" width="0.127" layer="21"/> +<wire x1="4.699" y1="0.381" x2="4.699" y2="-0.381" width="0.127" layer="21"/> +<wire x1="4.699" y1="-0.381" x2="4.191" y2="-0.889" width="0.127" layer="21"/> +<pad name="4" x="3.81" y="0" drill="0.508" diameter="1"/> +<pad name="3" x="2.54" y="0" drill="0.508" diameter="1"/> +<pad name="2" x="1.27" y="0" drill="0.508" diameter="1"/> +<pad name="1" x="0" y="0" drill="0.508" diameter="1"/> +<text x="-0.508" y="1.016" size="0.6096" layer="25" font="vector" ratio="20">>NAME</text> +<text x="-0.508" y="-1.651" size="0.6096" layer="27" font="vector" ratio="20">>VALUE</text> +</package> +<package name="1X04_LOCK" urn="urn:adsk.eagle:footprint:37706/1" library_version="1"> +<description><h3>Plated Through Hole - 4 Pin Locking Footprint</h3> +Pins are offset 0.005" from center to lock pins in place during soldering. +<p>Specifications: +<ul><li>Pin count:4</li> +<li>Pin pitch:0.1"</li> +</ul></p> +<p>Example device(s): +<ul><li>CONN_04</li> +</ul></p></description> +<wire x1="6.985" y1="1.27" x2="8.255" y2="1.27" width="0.2032" layer="21"/> +<wire x1="8.255" y1="1.27" x2="8.89" y2="0.635" width="0.2032" layer="21"/> +<wire x1="8.89" y1="-0.635" x2="8.255" y2="-1.27" width="0.2032" layer="21"/> +<wire x1="3.81" y1="0.635" x2="4.445" y2="1.27" width="0.2032" layer="21"/> +<wire x1="4.445" y1="1.27" x2="5.715" y2="1.27" width="0.2032" layer="21"/> +<wire x1="5.715" y1="1.27" x2="6.35" y2="0.635" width="0.2032" layer="21"/> +<wire x1="6.35" y1="-0.635" x2="5.715" y2="-1.27" width="0.2032" layer="21"/> +<wire x1="5.715" y1="-1.27" x2="4.445" y2="-1.27" width="0.2032" layer="21"/> +<wire x1="4.445" y1="-1.27" x2="3.81" y2="-0.635" width="0.2032" layer="21"/> +<wire x1="6.985" y1="1.27" x2="6.35" y2="0.635" width="0.2032" layer="21"/> +<wire x1="6.35" y1="-0.635" x2="6.985" y2="-1.27" width="0.2032" layer="21"/> +<wire x1="8.255" y1="-1.27" x2="6.985" y2="-1.27" width="0.2032" layer="21"/> +<wire x1="-0.635" y1="1.27" x2="0.635" y2="1.27" width="0.2032" layer="21"/> +<wire x1="0.635" y1="1.27" x2="1.27" y2="0.635" width="0.2032" layer="21"/> +<wire x1="1.27" y1="-0.635" x2="0.635" y2="-1.27" width="0.2032" layer="21"/> +<wire x1="1.27" y1="0.635" x2="1.905" y2="1.27" width="0.2032" layer="21"/> +<wire x1="1.905" y1="1.27" x2="3.175" y2="1.27" width="0.2032" layer="21"/> +<wire x1="3.175" y1="1.27" x2="3.81" y2="0.635" width="0.2032" layer="21"/> +<wire x1="3.81" y1="-0.635" x2="3.175" y2="-1.27" width="0.2032" layer="21"/> +<wire x1="3.175" y1="-1.27" x2="1.905" y2="-1.27" width="0.2032" layer="21"/> +<wire x1="1.905" y1="-1.27" x2="1.27" y2="-0.635" width="0.2032" layer="21"/> +<wire x1="-1.27" y1="0.635" x2="-1.27" y2="-0.635" width="0.2032" layer="21"/> +<wire x1="-0.635" y1="1.27" x2="-1.27" y2="0.635" width="0.2032" layer="21"/> +<wire x1="-1.27" y1="-0.635" x2="-0.635" y2="-1.27" width="0.2032" layer="21"/> +<wire x1="0.635" y1="-1.27" x2="-0.635" y2="-1.27" width="0.2032" layer="21"/> +<wire x1="8.89" y1="0.635" x2="8.89" y2="-0.635" width="0.2032" layer="21"/> +<pad name="1" x="0" y="0.127" drill="1.016" diameter="1.8796" rot="R90"/> +<pad name="2" x="2.54" y="-0.127" drill="1.016" diameter="1.8796" rot="R90"/> +<pad name="3" x="5.08" y="0.127" drill="1.016" diameter="1.8796" rot="R90"/> +<pad name="4" x="7.62" y="-0.127" drill="1.016" diameter="1.8796" rot="R90"/> +<rectangle x1="7.366" y1="-0.254" x2="7.874" y2="0.254" layer="51"/> +<rectangle x1="4.826" y1="-0.254" x2="5.334" y2="0.254" layer="51"/> +<rectangle x1="2.286" y1="-0.254" x2="2.794" y2="0.254" layer="51"/> +<rectangle x1="-0.254" y1="-0.254" x2="0.254" y2="0.254" layer="51"/> +<text x="-1.27" y="1.397" size="0.6096" layer="25" font="vector" ratio="20">>NAME</text> +<text x="-1.27" y="-2.032" size="0.6096" layer="27" font="vector" ratio="20">>VALUE</text> +</package> +<package name="1X04_LOCK_LONGPADS" urn="urn:adsk.eagle:footprint:37707/1" library_version="1"> +<description><h3>Plated Through Hole - 4 Pin Long Pads w/ Locking Footprint</h3> +Holes are offset 0.005" from center to lock pins in place during soldering. +<p>Specifications: +<ul><li>Pin count:4</li> +<li>Pin pitch:0.1"</li> +</ul></p> +<p>Example device(s): +<ul><li>CONN_04</li> +</ul></p></description> +<wire x1="1.524" y1="-0.127" x2="1.016" y2="-0.127" width="0.2032" layer="21"/> +<wire x1="4.064" y1="-0.127" x2="3.556" y2="-0.127" width="0.2032" layer="21"/> +<wire x1="6.604" y1="-0.127" x2="6.096" y2="-0.127" width="0.2032" layer="21"/> +<wire x1="-1.27" y1="-0.127" x2="-1.016" y2="-0.127" width="0.2032" layer="21"/> +<wire x1="-1.27" y1="-0.127" x2="-1.27" y2="0.8636" width="0.2032" layer="21"/> +<wire x1="-1.27" y1="0.8636" x2="-0.9906" y2="1.143" width="0.2032" layer="21"/> +<wire x1="-1.27" y1="-0.127" x2="-1.27" y2="-1.1176" width="0.2032" layer="21"/> +<wire x1="-1.27" y1="-1.1176" x2="-0.9906" y2="-1.397" width="0.2032" layer="21"/> +<wire x1="8.89" y1="-0.127" x2="8.636" y2="-0.127" width="0.2032" layer="21"/> +<wire x1="8.89" y1="-0.127" x2="8.89" y2="-1.1176" width="0.2032" layer="21"/> +<wire x1="8.89" y1="-1.1176" x2="8.6106" y2="-1.397" width="0.2032" layer="21"/> +<wire x1="8.89" y1="-0.127" x2="8.89" y2="0.8636" width="0.2032" layer="21"/> +<wire x1="8.89" y1="0.8636" x2="8.6106" y2="1.143" width="0.2032" layer="21"/> +<pad name="1" x="0" y="0" drill="1.016" shape="long" rot="R90"/> +<pad name="2" x="2.54" y="-0.254" drill="1.016" shape="long" rot="R90"/> +<pad name="3" x="5.08" y="0" drill="1.016" shape="long" rot="R90"/> +<pad name="4" x="7.62" y="-0.254" drill="1.016" shape="long" rot="R90"/> +<rectangle x1="-0.2921" y1="-0.4191" x2="0.2921" y2="0.1651" layer="51"/> +<rectangle x1="2.2479" y1="-0.4191" x2="2.8321" y2="0.1651" layer="51"/> +<rectangle x1="4.7879" y1="-0.4191" x2="5.3721" y2="0.1651" layer="51"/> +<rectangle x1="7.3279" y1="-0.4191" x2="7.9121" y2="0.1651" layer="51" rot="R90"/> +<text x="-1.27" y="1.651" size="0.6096" layer="25" font="vector" ratio="20">>NAME</text> +<text x="-1.27" y="-2.413" size="0.6096" layer="27" font="vector" ratio="20">>VALUE</text> +</package> +<package name="MOLEX-1X4_LOCK" urn="urn:adsk.eagle:footprint:37708/1" library_version="1"> +<description><h3>Molex 4-Pin Plated Through-Hole Locking</h3> +Holes are offset 0.005" from center to hold pins in place during soldering. +<p>Specifications: +<ul><li>Pin count:4</li> +<li>Pin pitch:0.1"</li> +</ul></p> +<p><a href=”https://www.sparkfun.com/datasheets/Prototyping/2pin_molex_set_19iv10.pdf”>Datasheet referenced for footprint</a></p> +<p>Example device(s): +<ul><li>CONN_04</li> +</ul></p></description> +<wire x1="-1.27" y1="3.048" x2="-1.27" y2="-2.54" width="0.127" layer="21"/> +<wire x1="8.89" y1="3.048" x2="8.89" y2="-2.54" width="0.127" layer="21"/> +<wire x1="8.89" y1="3.048" x2="-1.27" y2="3.048" width="0.127" layer="21"/> +<wire x1="8.89" y1="-2.54" x2="7.62" y2="-2.54" width="0.127" layer="21"/> +<wire x1="7.62" y1="-2.54" x2="0" y2="-2.54" width="0.127" layer="21"/> +<wire x1="0" y1="-2.54" x2="-1.27" y2="-2.54" width="0.127" layer="21"/> +<wire x1="0" y1="-2.54" x2="0" y2="-1.27" width="0.127" layer="21"/> +<wire x1="0" y1="-1.27" x2="7.62" y2="-1.27" width="0.127" layer="21"/> +<wire x1="7.62" y1="-1.27" x2="7.62" y2="-2.54" width="0.127" layer="21"/> +<pad name="1" x="0" y="0.127" drill="1.016" diameter="1.8796" shape="square"/> +<pad name="2" x="2.54" y="-0.127" drill="1.016" diameter="1.8796"/> +<pad name="3" x="5.08" y="0.127" drill="1.016" diameter="1.8796"/> +<pad name="4" x="7.62" y="-0.127" drill="1.016" diameter="1.8796"/> +<text x="2.667" y="3.302" size="0.6096" layer="25" font="vector" ratio="20">>NAME</text> +<text x="2.032" y="-3.556" size="0.6096" layer="27" font="vector" ratio="20">>VALUE</text> +</package> +<package name="1X04_SMD_RA_MALE" urn="urn:adsk.eagle:footprint:37709/1" library_version="1"> +<description><h3>SMD - 4 Pin Right Angle Male Header</h3> +tDocu layer shows pin locations. +<p>Specifications: +<ul><li>Pin count:4</li> +<li>Pin pitch:0.1"</li> +</ul></p> +<p>Example device(s): +<ul><li>CONN_04</li> +</ul></p></description> +<wire x1="5.08" y1="1.25" x2="-5.08" y2="1.25" width="0.127" layer="51"/> +<wire x1="-5.08" y1="1.25" x2="-5.08" y2="-1.25" width="0.127" layer="51"/> +<wire x1="-5.08" y1="-1.25" x2="-3.81" y2="-1.25" width="0.127" layer="51"/> +<wire x1="-3.81" y1="-1.25" x2="-1.27" y2="-1.25" width="0.127" layer="51"/> +<wire x1="-1.27" y1="-1.25" x2="1.27" y2="-1.25" width="0.127" layer="51"/> +<wire x1="1.27" y1="-1.25" x2="3.81" y2="-1.25" width="0.127" layer="51"/> +<wire x1="3.81" y1="-1.25" x2="5.08" y2="-1.25" width="0.127" layer="51"/> +<wire x1="5.08" y1="-1.25" x2="5.08" y2="1.25" width="0.127" layer="51"/> +<wire x1="3.81" y1="-1.25" x2="3.81" y2="-7.25" width="0.127" layer="51"/> +<wire x1="1.27" y1="-1.25" x2="1.27" y2="-7.25" width="0.127" layer="51"/> +<wire x1="-1.27" y1="-1.25" x2="-1.27" y2="-7.25" width="0.127" layer="51"/> +<wire x1="-3.81" y1="-1.25" x2="-3.81" y2="-7.25" width="0.127" layer="51"/> +<smd name="4" x="3.81" y="5" dx="3" dy="1" layer="1" rot="R90"/> +<smd name="3" x="1.27" y="5" dx="3" dy="1" layer="1" rot="R90"/> +<smd name="2" x="-1.27" y="5" dx="3" dy="1" layer="1" rot="R90"/> +<smd name="1" x="-3.81" y="5" dx="3" dy="1" layer="1" rot="R90"/> +<hole x="-2.54" y="0" drill="1.4"/> +<hole x="2.54" y="0" drill="1.4"/> +<text x="-4.318" y="6.731" size="0.6096" layer="25" font="vector" ratio="20">>NAME</text> +<text x="-4.318" y="2.667" size="0.6096" layer="27" font="vector" ratio="20">>VALUE</text> +</package> +<package name="1X04_LONGPADS" urn="urn:adsk.eagle:footprint:37710/1" library_version="1"> +<description><h3>Plated Through Hole - 4 Pin Long Pads</h3> +<p>Specifications: +<ul><li>Pin count:4</li> +<li>Pin pitch:0.1"</li> +</ul></p> +<p>Example device(s): +<ul><li>CONN_04</li> +</ul></p></description> +<wire x1="-1.27" y1="0.635" x2="-1.27" y2="-0.635" width="0.2032" layer="21"/> +<wire x1="8.89" y1="0.635" x2="8.89" y2="-0.635" width="0.2032" layer="21"/> +<pad name="1" x="0" y="0" drill="1.1176" diameter="1.8796" shape="long" rot="R90"/> +<pad name="2" x="2.54" y="0" drill="1.1176" diameter="1.8796" shape="long" rot="R90"/> +<pad name="3" x="5.08" y="0" drill="1.1176" diameter="1.8796" shape="long" rot="R90"/> +<pad name="4" x="7.62" y="0" drill="1.1176" diameter="1.8796" shape="long" rot="R90"/> +<rectangle x1="7.366" y1="-0.254" x2="7.874" y2="0.254" layer="51"/> +<rectangle x1="4.826" y1="-0.254" x2="5.334" y2="0.254" layer="51"/> +<rectangle x1="2.286" y1="-0.254" x2="2.794" y2="0.254" layer="51"/> +<rectangle x1="-0.254" y1="-0.254" x2="0.254" y2="0.254" layer="51"/> +<text x="-1.27" y="2.032" size="0.6096" layer="25" font="vector" ratio="20">>NAME</text> +<text x="-1.27" y="-2.667" size="0.6096" layer="27" font="vector" ratio="20">>VALUE</text> +</package> +<package name="1X04_NO_SILK" urn="urn:adsk.eagle:footprint:37711/1" library_version="1"> +<description><h3>Plated Through Hole - 4 Pin No Silk Outline</h3> +<p>Specifications: +<ul><li>Pin count:4</li> +<li>Pin pitch:0.1"</li> +</ul></p> +<p>Example device(s): +<ul><li>CONN_04</li> +</ul></p></description> +<pad name="1" x="0" y="0" drill="1.016" diameter="1.8796" rot="R90"/> +<pad name="2" x="2.54" y="0" drill="1.016" diameter="1.8796" rot="R90"/> +<pad name="3" x="5.08" y="0" drill="1.016" diameter="1.8796" rot="R90"/> +<pad name="4" x="7.62" y="0" drill="1.016" diameter="1.8796" rot="R90"/> +<rectangle x1="7.366" y1="-0.254" x2="7.874" y2="0.254" layer="51"/> +<rectangle x1="4.826" y1="-0.254" x2="5.334" y2="0.254" layer="51"/> +<rectangle x1="2.286" y1="-0.254" x2="2.794" y2="0.254" layer="51"/> +<rectangle x1="-0.254" y1="-0.254" x2="0.254" y2="0.254" layer="51"/> +<text x="-1.27" y="1.397" size="0.6096" layer="25" font="vector" ratio="20">>NAME</text> +<text x="-1.27" y="-2.032" size="0.6096" layer="27" font="vector" ratio="20">>VALUE</text> +</package> +<package name="JST-4-PTH" urn="urn:adsk.eagle:footprint:37712/1" library_version="1"> +<description><h3>JST Right Angle 4 Pin Plated Through Hole</h3> +<p>Specifications: +<ul><li>Pin count: 4</li> +<li>Pin pitch: 2mm</li> +</ul></p> +<p><a href=”https://www.sparkfun.com/datasheets/Prototyping/ePH.pdf”>Datasheet referenced for footprint</a></p> +<p>Example device(s): +<ul><li>CONN_04</li> +</ul></p></description> +<pad name="1" x="-3" y="0" drill="0.7" diameter="1.6"/> +<pad name="2" x="-1" y="0" drill="0.7" diameter="1.6"/> +<pad name="3" x="1" y="0" drill="0.7" diameter="1.6"/> +<pad name="4" x="3" y="0" drill="0.7" diameter="1.6"/> +<text x="-3.4" y="0.7" size="1.27" layer="51">+</text> +<text x="-1.4" y="0.7" size="1.27" layer="51">-</text> +<text x="0.7" y="0.9" size="0.8" layer="51">S</text> +<text x="2.7" y="0.9" size="0.8" layer="51">S</text> +<text x="-1.397" y="3.429" size="0.6096" layer="25" font="vector" ratio="20">>NAME</text> +<text x="-1.651" y="2.54" size="0.6096" layer="27" font="vector" ratio="20">>VALUE</text> +<wire x1="-4.95" y1="-1.6" x2="-4.95" y2="6" width="0.2032" layer="21"/> +<wire x1="-4.95" y1="6" x2="4.95" y2="6" width="0.2032" layer="21"/> +<wire x1="4.95" y1="6" x2="4.95" y2="-1.6" width="0.2032" layer="21"/> +<wire x1="-4.95" y1="-1.6" x2="-4.3" y2="-1.6" width="0.2032" layer="21"/> +<wire x1="4.95" y1="-1.6" x2="4.3" y2="-1.6" width="0.2032" layer="21"/> +<wire x1="-4.3" y1="-1.6" x2="-4.3" y2="0" width="0.2032" layer="21"/> +<wire x1="4.3" y1="-1.6" x2="4.3" y2="0" width="0.2032" layer="21"/> +</package> +<package name="SCREWTERMINAL-3.5MM-4_LOCK" urn="urn:adsk.eagle:footprint:37713/1" library_version="1"> +<description><h3>Screw Terminal 3.5mm Pitch -4 Pin PTH Locking</h3> +Holes are offset 0.005" from center to hold pins in place during soldering. +<p>Specifications: +<ul><li>Pin count: 4</li> +<li>Pin pitch: 3.5mm/138mil</li> +</ul></p> +<p><a href=”https://www.sparkfun.com/datasheets/Prototyping/Screw-Terminal-3.5mm.pdf”>Datasheet referenced for footprint</a></p> +<p>Example device(s): +<ul><li>CONN_04</li> +</ul></p></description> +<wire x1="-2.3" y1="3.4" x2="12.8" y2="3.4" width="0.2032" layer="21"/> +<wire x1="12.8" y1="3.4" x2="12.8" y2="-2.8" width="0.2032" layer="21"/> +<wire x1="12.8" y1="-2.8" x2="12.8" y2="-3.6" width="0.2032" layer="21"/> +<wire x1="12.8" y1="-3.6" x2="-2.3" y2="-3.6" width="0.2032" layer="21"/> +<wire x1="-2.3" y1="-3.6" x2="-2.3" y2="-2.8" width="0.2032" layer="21"/> +<wire x1="-2.3" y1="-2.8" x2="-2.3" y2="3.4" width="0.2032" layer="21"/> +<wire x1="12.8" y1="-2.8" x2="-2.3" y2="-2.8" width="0.2032" layer="21"/> +<wire x1="-2.3" y1="-1.35" x2="-2.7" y2="-1.35" width="0.2032" layer="51"/> +<wire x1="-2.7" y1="-1.35" x2="-2.7" y2="-2.35" width="0.2032" layer="51"/> +<wire x1="-2.7" y1="-2.35" x2="-2.3" y2="-2.35" width="0.2032" layer="51"/> +<wire x1="12.8" y1="3.15" x2="13.2" y2="3.15" width="0.2032" layer="51"/> +<wire x1="13.2" y1="3.15" x2="13.2" y2="2.15" width="0.2032" layer="51"/> +<wire x1="13.2" y1="2.15" x2="12.8" y2="2.15" width="0.2032" layer="51"/> +<circle x="0" y="0" radius="0.425" width="0.001" layer="51"/> +<circle x="3.5" y="0" radius="0.425" width="0.001" layer="51"/> +<circle x="7" y="0" radius="0.425" width="0.001" layer="51"/> +<circle x="10.5" y="0" radius="0.425" width="0.001" layer="51"/> +<pad name="1" x="-0.1778" y="0" drill="1.2" diameter="2.032" shape="square"/> +<pad name="2" x="3.6778" y="0" drill="1.2" diameter="2.032"/> +<pad name="3" x="6.8222" y="0" drill="1.2" diameter="2.032"/> +<pad name="4" x="10.6778" y="0" drill="1.2" diameter="2.032"/> +<text x="3.81" y="2.413" size="0.6096" layer="25" font="vector" ratio="20">>NAME</text> +<text x="3.81" y="1.524" size="0.6096" layer="27" font="vector" ratio="20">>VALUE</text> +</package> +<package name="1X04_1MM_RA" urn="urn:adsk.eagle:footprint:37714/1" library_version="1"> +<description><h3>SMD- 4 Pin Right Angle </h3> +<p>Specifications: +<ul><li>Pin count:4</li> +<li>Pin pitch:0.1"</li> +</ul></p> +<p>Example device(s): +<ul><li>CONN_04</li> +</ul></p></description> +<wire x1="-1.5" y1="-4.6" x2="1.5" y2="-4.6" width="0.254" layer="21"/> +<wire x1="-3" y1="-2" x2="-3" y2="-0.35" width="0.254" layer="21"/> +<wire x1="2.25" y1="-0.35" x2="3" y2="-0.35" width="0.254" layer="21"/> +<wire x1="3" y1="-0.35" x2="3" y2="-2" width="0.254" layer="21"/> +<wire x1="-3" y1="-0.35" x2="-2.25" y2="-0.35" width="0.254" layer="21"/> +<circle x="-2.5" y="0.3" radius="0.1414" width="0.4" layer="21"/> +<smd name="NC2" x="-2.8" y="-3.675" dx="1.2" dy="2" layer="1"/> +<smd name="NC1" x="2.8" y="-3.675" dx="1.2" dy="2" layer="1"/> +<smd name="1" x="-1.5" y="0" dx="0.6" dy="1.35" layer="1"/> +<smd name="2" x="-0.5" y="0" dx="0.6" dy="1.35" layer="1"/> +<smd name="3" x="0.5" y="0" dx="0.6" dy="1.35" layer="1"/> +<smd name="4" x="1.5" y="0" dx="0.6" dy="1.35" layer="1"/> +<text x="-1.397" y="-2.159" size="0.6096" layer="25" font="vector" ratio="20">>NAME</text> +<text x="-1.651" y="-3.302" size="0.6096" layer="27" font="vector" ratio="20">>VALUE</text> +</package> +<package name="1X04_SMD_VERTICAL_COMBO" urn="urn:adsk.eagle:footprint:37715/1" library_version="1"> +<description><h3>SMD - 4 Pin Vertical Connector</h3> +<p>Specifications: +<ul><li>Pin count:4</li> +<li>SMD Pad count:8</li> +<li>Pin pitch:0.1"</li> +</ul></p> +<p>Example device(s): +<ul><li>CONN_04</li> +</ul></p></description> +<wire x1="7.62" y1="1.27" x2="7.62" y2="-1.27" width="0.4064" layer="1"/> +<wire x1="5.08" y1="1.27" x2="5.08" y2="-1.27" width="0.4064" layer="1"/> +<wire x1="2.54" y1="1.27" x2="2.54" y2="-1.27" width="0.4064" layer="1"/> +<wire x1="0" y1="1.27" x2="0" y2="-1.27" width="0.4064" layer="1"/> +<wire x1="-1.37" y1="-1.25" x2="-1.37" y2="1.25" width="0.1778" layer="21"/> +<wire x1="8.99" y1="1.25" x2="8.99" y2="-1.25" width="0.1778" layer="21"/> +<wire x1="-0.73" y1="-1.25" x2="-1.37" y2="-1.25" width="0.1778" layer="21"/> +<wire x1="8.99" y1="-1.25" x2="8.32" y2="-1.25" width="0.1778" layer="21"/> +<wire x1="8.32" y1="1.25" x2="8.99" y2="1.25" width="0.1778" layer="21"/> +<wire x1="-1.37" y1="1.25" x2="-0.73" y2="1.25" width="0.1778" layer="21"/> +<wire x1="5.869" y1="-1.29" x2="6.831" y2="-1.29" width="0.1778" layer="21"/> +<wire x1="5.869" y1="1.25" x2="6.831" y2="1.25" width="0.1778" layer="21"/> +<wire x1="3.329" y1="-1.29" x2="4.291" y2="-1.29" width="0.1778" layer="21"/> +<wire x1="3.329" y1="1.25" x2="4.291" y2="1.25" width="0.1778" layer="21"/> +<wire x1="0.789" y1="-1.29" x2="1.751" y2="-1.29" width="0.1778" layer="21"/> +<wire x1="0.789" y1="1.25" x2="1.751" y2="1.25" width="0.1778" layer="21"/> +<smd name="3" x="5.08" y="-1.65" dx="2" dy="1" layer="1" rot="R270"/> +<smd name="1" x="0" y="-1.65" dx="2" dy="1" layer="1" rot="R270"/> +<smd name="4" x="7.62" y="1.65" dx="2" dy="1" layer="1" rot="R270"/> +<smd name="2" x="2.54" y="1.65" dx="2" dy="1" layer="1" rot="R270"/> +<smd name="1-2" x="0" y="1.65" dx="2" dy="1" layer="1" rot="R90"/> +<smd name="2-2" x="2.54" y="-1.65" dx="2" dy="1" layer="1" rot="R90"/> +<smd name="3-2" x="5.08" y="1.65" dx="2" dy="1" layer="1" rot="R90"/> +<smd name="4-2" x="7.62" y="-1.65" dx="2" dy="1" layer="1" rot="R90"/> +<text x="-0.508" y="2.921" size="0.6096" layer="25" font="vector" ratio="20">>NAME</text> +<text x="-0.508" y="-3.429" size="0.6096" layer="27" font="vector" ratio="20">>VALUE</text> +</package> +<package name="1X04_SMD_LONG" urn="urn:adsk.eagle:footprint:37716/1" library_version="1"> +<description><h3>SMD - 4 Pin w/ Long Solder Pads</h3> +No silk, but tDocu layer shows pin position. +<p>Specifications: +<ul><li>Pin count:4</li> +<li>Pin pitch:0.1"</li> +</ul></p> +<p>Example device(s): +<ul><li>CONN_04</li> +</ul></p></description> +<wire x1="5.08" y1="1.25" x2="-5.08" y2="1.25" width="0.127" layer="51"/> +<wire x1="-5.08" y1="1.25" x2="-5.08" y2="-1.25" width="0.127" layer="51"/> +<wire x1="-5.08" y1="-1.25" x2="-3.81" y2="-1.25" width="0.127" layer="51"/> +<wire x1="-3.81" y1="-1.25" x2="-1.27" y2="-1.25" width="0.127" layer="51"/> +<wire x1="-1.27" y1="-1.25" x2="1.27" y2="-1.25" width="0.127" layer="51"/> +<wire x1="1.27" y1="-1.25" x2="3.81" y2="-1.25" width="0.127" layer="51"/> +<wire x1="3.81" y1="-1.25" x2="5.08" y2="-1.25" width="0.127" layer="51"/> +<wire x1="5.08" y1="-1.25" x2="5.08" y2="1.25" width="0.127" layer="51"/> +<wire x1="3.81" y1="-1.25" x2="3.81" y2="-7.25" width="0.127" layer="51"/> +<wire x1="1.27" y1="-1.25" x2="1.27" y2="-7.25" width="0.127" layer="51"/> +<wire x1="-1.27" y1="-1.25" x2="-1.27" y2="-7.25" width="0.127" layer="51"/> +<wire x1="-3.81" y1="-1.25" x2="-3.81" y2="-7.25" width="0.127" layer="51"/> +<smd name="4" x="3.81" y="5.5" dx="4" dy="1" layer="1" rot="R90"/> +<smd name="3" x="1.27" y="5.5" dx="4" dy="1" layer="1" rot="R90"/> +<smd name="2" x="-1.27" y="5.5" dx="4" dy="1" layer="1" rot="R90"/> +<smd name="1" x="-3.81" y="5.5" dx="4" dy="1" layer="1" rot="R90"/> +<hole x="-2.54" y="0" drill="1.4"/> +<hole x="2.54" y="0" drill="1.4"/> +</package> +<package name="JST-4-PTH-VERT" urn="urn:adsk.eagle:footprint:37717/1" library_version="1"> +<description><h3>JST Vertical 4 Pin Plated Through Hole</h3> +<p>Specifications: +<ul><li>Pin count: 4</li> +<li>Pin pitch: 2mm</li> +</ul></p> +<p><a href="http://www.jst-mfg.com/product/pdf/eng/ePH.pdf">Datasheet referenced for footprint</a></p> +<p>Example device(s): +<ul><li>CONN_04</li> +</ul></p></description> +<wire x1="-4.95" y1="-2.25" x2="-4.95" y2="2.25" width="0.2032" layer="21"/> +<wire x1="-4.95" y1="2.25" x2="4.95" y2="2.25" width="0.2032" layer="21"/> +<wire x1="4.95" y1="-2.25" x2="1" y2="-2.25" width="0.2032" layer="21"/> +<wire x1="-1" y1="-2.25" x2="-4.95" y2="-2.25" width="0.2032" layer="21"/> +<wire x1="-1" y1="-1.75" x2="1" y2="-1.75" width="0.2032" layer="21"/> +<wire x1="1" y1="-1.75" x2="1" y2="-2.25" width="0.2032" layer="21"/> +<wire x1="-1" y1="-1.75" x2="-1" y2="-2.25" width="0.2032" layer="21"/> +<wire x1="4.95" y1="2.25" x2="4.95" y2="-2.25" width="0.2032" layer="21"/> +<pad name="1" x="-3" y="-0.55" drill="0.7" diameter="1.6"/> +<pad name="2" x="-1" y="-0.55" drill="0.7" diameter="1.6"/> +<pad name="3" x="1" y="-0.55" drill="0.7" diameter="1.6"/> +<pad name="4" x="3" y="-0.55" drill="0.7" diameter="1.6"/> +<text x="-1.4" y="0.75" size="1.27" layer="51">+</text> +<text x="0.6" y="0.75" size="1.27" layer="51">-</text> +<text x="2.7" y="0.95" size="0.8" layer="51">Y</text> +<text x="-3.3" y="0.95" size="0.8" layer="51">B</text> +<text x="-1.143" y="2.54" size="0.6096" layer="25" font="vector" ratio="20">>NAME</text> +<text x="-1.651" y="-3.302" size="0.6096" layer="27" font="vector" ratio="20">>VALUE</text> +</package> +<package name="1X04_SMD_RA_FEMALE" urn="urn:adsk.eagle:footprint:37718/1" library_version="1"> +<description><h3>SMD - 4 Pin Right-Angle Female Header</h3> +Silk outline shows header location. +<p>Specifications: +<ul><li>Pin count:4</li> +<li>Pin pitch:0.1"</li> +</ul></p> +<p>Example device(s): +<ul><li>CONN_04</li> +</ul></p></description> +<wire x1="-5.205" y1="4.25" x2="-5.205" y2="-4.25" width="0.1778" layer="21"/> +<wire x1="5.205" y1="4.25" x2="-5.205" y2="4.25" width="0.1778" layer="21"/> +<wire x1="5.205" y1="-4.25" x2="5.205" y2="4.25" width="0.1778" layer="21"/> +<wire x1="-5.205" y1="-4.25" x2="5.205" y2="-4.25" width="0.1778" layer="21"/> +<rectangle x1="-1.59" y1="6.8" x2="-0.95" y2="7.65" layer="51"/> +<rectangle x1="0.95" y1="6.8" x2="1.59" y2="7.65" layer="51"/> +<rectangle x1="-4.13" y1="6.8" x2="-3.49" y2="7.65" layer="51"/> +<rectangle x1="3.49" y1="6.8" x2="4.13" y2="7.65" layer="51"/> +<smd name="3" x="1.27" y="7.225" dx="1.25" dy="3" layer="1" rot="R180"/> +<smd name="2" x="-1.27" y="7.225" dx="1.25" dy="3" layer="1" rot="R180"/> +<smd name="1" x="-3.81" y="7.225" dx="1.25" dy="3" layer="1" rot="R180"/> +<smd name="4" x="3.81" y="7.225" dx="1.25" dy="3" layer="1" rot="R180"/> +<text x="-1.397" y="0.762" size="0.6096" layer="25" font="vector" ratio="20">>NAME</text> +<text x="-1.524" y="-1.27" size="0.6096" layer="27" font="vector" ratio="20">>VALUE</text> +</package> +</packages> +<packages3d> +<package3d name="1X08" urn="urn:adsk.eagle:package:38138/1" type="box" library_version="1"> +<description>Plated Through Hole -8 Pin +Specifications: +Pin count:8 +Pin pitch:0.1" + +Example device(s): +CONN_08 +</description> +<packageinstances> +<packageinstance name="1X08"/> +</packageinstances> +</package3d> +<package3d name="1X08_LOCK" urn="urn:adsk.eagle:package:38137/1" type="box" library_version="1"> +<description>Plated Through Hole -8 Pin Locking Footprint +Holes are offset 0.005", to hold pins in place during soldering. +Specifications: +Pin count:8 +Pin pitch:0.1" + +Example device(s): +CONN_08 +</description> +<packageinstances> +<packageinstance name="1X08_LOCK"/> +</packageinstances> +</package3d> +<package3d name="1X08_LOCK_LONGPADS" urn="urn:adsk.eagle:package:38140/1" type="box" library_version="1"> +<description>Plated Through Hole -8 Pin Locking Footprint with Long Pads +Holes are offset 0.005", to hold pins in place during soldering. +Specifications: +Pin count:8 +Pin pitch:0.1" + +Example device(s): +CONN_08 +</description> +<packageinstances> +<packageinstance name="1X08_LOCK_LONGPADS"/> +</packageinstances> +</package3d> +<package3d name="1X08_LONGPADS" urn="urn:adsk.eagle:package:38142/1" type="box" library_version="1"> +<description>Plated Through Hole -8 Pin Long Pads +Specifications: +Pin count:8 +Pin pitch:0.1" + +Example device(s): +CONN_08 +</description> +<packageinstances> +<packageinstance name="1X08_LONGPADS"/> +</packageinstances> +</package3d> +<package3d name="SCREWTERMINAL-3.5MM-8" urn="urn:adsk.eagle:package:38143/1" type="box" library_version="1"> +<description>Screw Terminal 3.5mm Pitch -8 Pin PTH +Specifications: +Pin count: 8 +Pin pitch: 3.5mm/138mil + +Datasheet referenced for footprint +Example device(s): +CONN_08 +</description> +<packageinstances> +<packageinstance name="SCREWTERMINAL-3.5MM-8"/> +</packageinstances> +</package3d> +<package3d name="1X08_SMD" urn="urn:adsk.eagle:package:38144/1" type="box" library_version="1"> +<description>SMD -8 Pin Vertical Female +Specifications: +Pin count:8 +Pin pitch:0.1" + +Datasheet referenced for footprint +Example device(s): +CONN_08 +</description> +<packageinstances> +<packageinstance name="1X08_SMD"/> +</packageinstances> +</package3d> +<package3d name="1X08_SMD_ALT" urn="urn:adsk.eagle:package:38148/1" type="box" library_version="1"> +<description>SMD -8 Pin Vertical Female +Alternate pin configuration +Specifications: +Pin count:8 +Pin pitch:0.1" + +Datasheet referenced for footprint +Example device(s): +CONN_08 +</description> +<packageinstances> +<packageinstance name="1X08_SMD_ALT"/> +</packageinstances> +</package3d> +<package3d name="1X08_SMD_COMBINED" urn="urn:adsk.eagle:package:38146/1" type="box" library_version="1"> +<description>SMD -8 Pin Vertical Female +Combined footprint configuration +Specifications: +Pin count:8 +Pin pitch:0.1" + +Datasheet referenced for footprint +Example device(s): +CONN_08 +</description> +<packageinstances> +<packageinstance name="1X08_SMD_COMBINED"/> +</packageinstances> +</package3d> +<package3d name="BM08B-SRSS-TB" urn="urn:adsk.eagle:package:38145/1" type="box" library_version="1"> +<description>JST Vertical Crimp Connect +Specifications: +Pin count: 8 +Pin pitch:1mm + +Datasheet referenced for footprint +Example device(s): +CONN_08 +</description> +<packageinstances> +<packageinstance name="BM08B-SRSS-TB"/> +</packageinstances> +</package3d> +<package3d name="1X08_SMD_MALE" urn="urn:adsk.eagle:package:38150/1" type="box" library_version="1"> +<description>SMD -8 Pin Vertical Male +Specifications: +Pin count:8 +Pin pitch:0.1" + +Datasheet referenced for footprint +Example device(s): +CONN_08 +</description> +<packageinstances> +<packageinstance name="1X08_SMD_MALE"/> +</packageinstances> +</package3d> +<package3d name="1X08_NO_SILK" urn="urn:adsk.eagle:package:38149/1" type="box" library_version="1"> +<description>Plated Through Hole -8 Pin No Silk +Specifications: +Pin count:8 +Pin pitch:0.1" + +Example device(s): +CONN_08 +</description> +<packageinstances> +<packageinstance name="1X08_NO_SILK"/> +</packageinstances> +</package3d> +<package3d name="1X08_LOCK_NO_SILK" urn="urn:adsk.eagle:package:38147/1" type="box" library_version="1"> +<description>Plated Through Hole -8 Pin Locking Footprint No Silk +Holes are offset 0.005", to hold pins in place during soldering. +Specifications: +Pin count:8 +Pin pitch:0.1" + +Example device(s): +CONN_08 +</description> +<packageinstances> +<packageinstance name="1X08_LOCK_NO_SILK"/> +</packageinstances> +</package3d> +<package3d name="1X08_FEMALE_LOCK" urn="urn:adsk.eagle:package:38151/1" type="box" library_version="1"> +<description>Plated Through Hole -8 Pin Locking Female Headers +Holes are offset 0.005" to hold pins in place during soldering. +Specifications: +Pin count:8 +Pin pitch:0.1" + +Datasheet referenced for footprint +Example device(s): +CONN_08 +</description> +<packageinstances> +<packageinstance name="1X08_FEMALE_LOCK"/> +</packageinstances> +</package3d> +<package3d name="1X02" urn="urn:adsk.eagle:package:38039/1" type="box" library_version="1"> +<description>Plated Through Hole +Specifications: +Pin count:2 +Pin pitch:0.1" + +Example device(s): +CONN_02 +</description> +<packageinstances> +<packageinstance name="1X02"/> +</packageinstances> +</package3d> +<package3d name="MOLEX-1X2" urn="urn:adsk.eagle:package:38040/1" type="box" library_version="1"> +<description>Molex 2-Pin Plated Through-Hole +Specifications: +Pin count:2 +Pin pitch:0.1" + +Datasheet referenced for footprint +Example device(s): +CONN_02 +</description> +<packageinstances> +<packageinstance name="MOLEX-1X2"/> +</packageinstances> +</package3d> +<package3d name="SCREWTERMINAL-3.5MM-2" urn="urn:adsk.eagle:package:38050/1" type="box" library_version="1"> +<description>Screw Terminal 3.5mm Pitch - 2 Pin PTH +Specifications: +Pin count: 2 +Pin pitch: 3.5mm/138mil + +Datasheet referenced for footprint +Example device(s): +CONN_02 +</description> +<packageinstances> +<packageinstance name="SCREWTERMINAL-3.5MM-2"/> +</packageinstances> +</package3d> +<package3d name="JST-2-SMD" urn="urn:adsk.eagle:package:38042/1" type="box" library_version="1"> +<description>JST-Right Angle Male Header SMT +Specifications: +Pin count: 2 +Pin pitch: 2mm + +Datasheet referenced for footprint +Example device(s): +CONN_02 +JST_2MM_MALE +</description> +<packageinstances> +<packageinstance name="JST-2-SMD"/> +</packageinstances> +</package3d> +<package3d name="1X02_BIG" urn="urn:adsk.eagle:package:38043/1" type="box" library_version="1"> +<description>Plated Through Hole +Specifications: +Pin count:2 +Pin pitch:0.15" + +Example device(s): +CONN_02 +</description> +<packageinstances> +<packageinstance name="1X02_BIG"/> +</packageinstances> +</package3d> +<package3d name="JST-2-SMD-VERT" urn="urn:adsk.eagle:package:38052/1" type="box" library_version="1"> +<description>JST-Vertical Male Header SMT +Specifications: +Pin count: 2 +Pin pitch: 2mm + +Datasheet referenced for footprint +Example device(s): +CONN_02 +</description> +<packageinstances> +<packageinstance name="JST-2-SMD-VERT"/> +</packageinstances> +</package3d> +<package3d name="SCREWTERMINAL-5MM-2" urn="urn:adsk.eagle:package:38044/1" type="box" library_version="1"> +<description>Screw Terminal 5mm Pitch -2 Pin PTH +Specifications: +Pin count: 2 +Pin pitch: 5mm/197mil + +Datasheet referenced for footprint +Example device(s): +CONN_02 +</description> +<packageinstances> +<packageinstance name="SCREWTERMINAL-5MM-2"/> +</packageinstances> +</package3d> +<package3d name="1X02_LOCK" urn="urn:adsk.eagle:package:38045/1" type="box" library_version="1"> +<description>Plated Through Hole - Locking Footprint +Holes are staggered by 0.005" from center to hold pins while soldering. +Specifications: +Pin count:2 +Pin pitch:0.1" + +Example device(s): +CONN_02 +</description> +<packageinstances> +<packageinstance name="1X02_LOCK"/> +</packageinstances> +</package3d> +<package3d name="MOLEX-1X2_LOCK" urn="urn:adsk.eagle:package:38046/1" type="box" library_version="1"> +<description>Molex 2-Pin Plated Through-Hole Locking Footprint +Holes are offset from center by 0.005" to hold pins in place during soldering. +Specifications: +Pin count:2 +Pin pitch:0.1" + +Datasheet referenced for footprint +Example device(s): +CONN_02 +</description> +<packageinstances> +<packageinstance name="MOLEX-1X2_LOCK"/> +</packageinstances> +</package3d> +<package3d name="1X02_LOCK_LONGPADS" urn="urn:adsk.eagle:package:38047/1" type="box" library_version="1"> +<description>Plated Through Hole - Long Pads with Locking Footprint +Pins are staggered by 0.005" from center to hold pins in place while soldering. +Specifications: +Pin count:2 +Pin pitch:0.1" + +Example device(s): +CONN_02 +</description> +<packageinstances> +<packageinstance name="1X02_LOCK_LONGPADS"/> +</packageinstances> +</package3d> +<package3d name="SCREWTERMINAL-3.5MM-2_LOCK" urn="urn:adsk.eagle:package:38049/1" type="box" library_version="1"> +<description>Screw Terminal 3.5mm Pitch - 2 Pin PTH Locking +Holes are offset from center 0.005" to hold pins in place during soldering. +Specifications: +Pin count: 2 +Pin pitch: 3.5mm/138mil + +Datasheet referenced for footprint +Example device(s): +CONN_02 +</description> +<packageinstances> +<packageinstance name="SCREWTERMINAL-3.5MM-2_LOCK"/> +</packageinstances> +</package3d> +<package3d name="1X02_LONGPADS" urn="urn:adsk.eagle:package:38048/1" type="box" library_version="1"> +<description>Plated Through Hole - Long Pads without Silk Outline +Specifications: +Pin count:2 +Pin pitch:0.1" + +Example device(s): +CONN_02 +</description> +<packageinstances> +<packageinstance name="1X02_LONGPADS"/> +</packageinstances> +</package3d> +<package3d name="1X02_NO_SILK" urn="urn:adsk.eagle:package:38051/1" type="box" library_version="1"> +<description>Plated Through Hole - No Silk Outline +Specifications: +Pin count:2 +Pin pitch:0.1" + +Example device(s): +CONN_02 +</description> +<packageinstances> +<packageinstance name="1X02_NO_SILK"/> +</packageinstances> +</package3d> +<package3d name="JST-2-PTH" urn="urn:adsk.eagle:package:38053/1" type="box" library_version="1"> +<description>JST 2 Pin Right Angle Plated Through Hole +tDocu indicate polarity for connections that match SparkFun LiPo battery terminations. +Specifications: +Pin count: 2 +Pin pitch:2mm + +Datasheet referenced for footprint +Example device(s): +CONN_02 +</description> +<packageinstances> +<packageinstance name="JST-2-PTH"/> +</packageinstances> +</package3d> +<package3d name="1X02_XTRA_BIG" urn="urn:adsk.eagle:package:38054/1" type="box" library_version="1"> +<description>Plated Through Hole - 0.1" holes +Specifications: +Pin count:2 +Pin pitch:0.2" + +Example device(s): +CONN_02 +</description> +<packageinstances> +<packageinstance name="1X02_XTRA_BIG"/> +</packageinstances> +</package3d> +<package3d name="1X02_PP_HOLES_ONLY" urn="urn:adsk.eagle:package:38058/1" type="box" library_version="1"> +<description>Pogo Pins Connector - No Silk Outline +Specifications: +Pin count:2 +Pin pitch:0.1" + +Example device(s): +CONN_02 +</description> +<packageinstances> +<packageinstance name="1X02_PP_HOLES_ONLY"/> +</packageinstances> +</package3d> +<package3d name="SCREWTERMINAL-3.5MM-2-NS" urn="urn:adsk.eagle:package:38055/1" type="box" library_version="1"> +<description>Screw Terminal 3.5mm Pitch - 2 Pin PTH No Silk Outline +Specifications: +Pin count: 2 +Pin pitch: 3.5mm/138mil + +Datasheet referenced for footprint +Example device(s): +CONN_02 +</description> +<packageinstances> +<packageinstance name="SCREWTERMINAL-3.5MM-2-NS"/> +</packageinstances> +</package3d> +<package3d name="JST-2-PTH-NS" urn="urn:adsk.eagle:package:38056/1" type="box" library_version="1"> +<description>JST 2 Pin Right Angle Plated Through Hole- No Silk +tDocu indicate polarity for connections that match SparkFun LiPo battery terminations. + No silk outline of connector. +Specifications: +Pin count: 2 +Pin pitch:2mm + +Datasheet referenced for footprint +Example device(s): +CONN_02 +</description> +<packageinstances> +<packageinstance name="JST-2-PTH-NS"/> +</packageinstances> +</package3d> +<package3d name="JST-2-PTH-KIT" urn="urn:adsk.eagle:package:38057/1" type="box" library_version="1"> +<description>JST 2 Pin Right Angle Plated Through Hole - KIT +tDocu indicate polarity for connections that match SparkFun LiPo battery terminations. + This package has a smaller diameter top stop mask, which doesn't cover the diameter of the pad. + This means only the bottom side of the pads' copper will be exposed. You'll only be able to solder to the bottom side. +Specifications: +Pin count: 2 +Pin pitch:2mm + +Datasheet referenced for footprint +Example device(s): +CONN_02 +</description> +<packageinstances> +<packageinstance name="JST-2-PTH-KIT"/> +</packageinstances> +</package3d> +<package3d name="SPRINGTERMINAL-2.54MM-2" urn="urn:adsk.eagle:package:38061/1" type="box" library_version="1"> +<description>Spring Terminal- PCB Mount 2 Pin PTH +tDocu marks the spring arms +Specifications: +Pin count: 4 +Pin pitch: 0.1" + +Datasheet referenced for footprint +Example device(s): +CONN_02 +</description> +<packageinstances> +<packageinstance name="SPRINGTERMINAL-2.54MM-2"/> +</packageinstances> +</package3d> +<package3d name="1X02_2.54_SCREWTERM" urn="urn:adsk.eagle:package:38059/1" type="box" library_version="1"> +<description>2 Pin Screw Terminal - 2.54mm +Specifications: +Pin count:2 +Pin pitch:0.1" + +Example device(s): +CONN_02 +</description> +<packageinstances> +<packageinstance name="1X02_2.54_SCREWTERM"/> +</packageinstances> +</package3d> +<package3d name="1X02_POKEHOME" urn="urn:adsk.eagle:package:38060/1" type="box" library_version="1"> +<description>2 pin poke-home connector + +part number 2062-2P from STA</description> +<packageinstances> +<packageinstance name="1X02_POKEHOME"/> +</packageinstances> +</package3d> +<package3d name="1X02_RA_PTH_FEMALE" urn="urn:adsk.eagle:package:38062/1" type="box" library_version="1"> +<packageinstances> +<packageinstance name="1X02_RA_PTH_FEMALE"/> +</packageinstances> +</package3d> +<package3d name="1X04" urn="urn:adsk.eagle:package:38085/1" type="box" library_version="1"> +<description>Plated Through Hole - 4 Pin +Specifications: +Pin count:4 +Pin pitch:0.1" + +Example device(s): +CONN_04 +</description> +<packageinstances> +<packageinstance name="1X04"/> +</packageinstances> +</package3d> +<package3d name="MOLEX-1X4" urn="urn:adsk.eagle:package:38087/1" type="box" library_version="1"> +<description>Molex 4-Pin Plated Through-Hole +Specifications: +Pin count:4 +Pin pitch:0.1" + +Datasheet referenced for footprint +Example device(s): +CONN_04 +</description> +<packageinstances> +<packageinstance name="MOLEX-1X4"/> +</packageinstances> +</package3d> +<package3d name="SCREWTERMINAL-3.5MM-4" urn="urn:adsk.eagle:package:38090/1" type="box" library_version="1"> +<description>Screw Terminal 3.5mm Pitch -4 Pin PTH +Specifications: +Pin count: 4 +Pin pitch: 3.5mm/138mil + +Datasheet referenced for footprint +Example device(s): +CONN_04 +</description> +<packageinstances> +<packageinstance name="SCREWTERMINAL-3.5MM-4"/> +</packageinstances> +</package3d> +<package3d name="1X04_1.27MM" urn="urn:adsk.eagle:package:38086/1" type="box" library_version="1"> +<description>Plated Through Hole - 4 Pin +Specifications: +Pin count:4 +Pin pitch: 1.27mm + +Example device(s): +CONN_04 +</description> +<packageinstances> +<packageinstance name="1X04_1.27MM"/> +</packageinstances> +</package3d> +<package3d name="1X04_LOCK" urn="urn:adsk.eagle:package:38089/1" type="box" library_version="1"> +<description>Plated Through Hole - 4 Pin Locking Footprint +Pins are offset 0.005" from center to lock pins in place during soldering. +Specifications: +Pin count:4 +Pin pitch:0.1" + +Example device(s): +CONN_04 +</description> +<packageinstances> +<packageinstance name="1X04_LOCK"/> +</packageinstances> +</package3d> +<package3d name="1X04_LOCK_LONGPADS" urn="urn:adsk.eagle:package:38091/1" type="box" library_version="1"> +<description>Plated Through Hole - 4 Pin Long Pads w/ Locking Footprint +Holes are offset 0.005" from center to lock pins in place during soldering. +Specifications: +Pin count:4 +Pin pitch:0.1" + +Example device(s): +CONN_04 +</description> +<packageinstances> +<packageinstance name="1X04_LOCK_LONGPADS"/> +</packageinstances> +</package3d> +<package3d name="MOLEX-1X4_LOCK" urn="urn:adsk.eagle:package:38092/1" type="box" library_version="1"> +<description>Molex 4-Pin Plated Through-Hole Locking +Holes are offset 0.005" from center to hold pins in place during soldering. +Specifications: +Pin count:4 +Pin pitch:0.1" + +Datasheet referenced for footprint +Example device(s): +CONN_04 +</description> +<packageinstances> +<packageinstance name="MOLEX-1X4_LOCK"/> +</packageinstances> +</package3d> +<package3d name="1X04_SMD_RA_MALE" urn="urn:adsk.eagle:package:38093/1" type="box" library_version="1"> +<description>SMD - 4 Pin Right Angle Male Header +tDocu layer shows pin locations. +Specifications: +Pin count:4 +Pin pitch:0.1" + +Example device(s): +CONN_04 +</description> +<packageinstances> +<packageinstance name="1X04_SMD_RA_MALE"/> +</packageinstances> +</package3d> +<package3d name="1X04_LONGPADS" urn="urn:adsk.eagle:package:38098/1" type="box" library_version="1"> +<description>Plated Through Hole - 4 Pin Long Pads +Specifications: +Pin count:4 +Pin pitch:0.1" + +Example device(s): +CONN_04 +</description> +<packageinstances> +<packageinstance name="1X04_LONGPADS"/> +</packageinstances> +</package3d> +<package3d name="1X04_NO_SILK" urn="urn:adsk.eagle:package:38094/1" type="box" library_version="1"> +<description>Plated Through Hole - 4 Pin No Silk Outline +Specifications: +Pin count:4 +Pin pitch:0.1" + +Example device(s): +CONN_04 +</description> +<packageinstances> +<packageinstance name="1X04_NO_SILK"/> +</packageinstances> +</package3d> +<package3d name="JST-4-PTH" urn="urn:adsk.eagle:package:38101/1" type="box" library_version="1"> +<description>JST Right Angle 4 Pin Plated Through Hole +Specifications: +Pin count: 4 +Pin pitch: 2mm + +Datasheet referenced for footprint +Example device(s): +CONN_04 +</description> +<packageinstances> +<packageinstance name="JST-4-PTH"/> +</packageinstances> +</package3d> +<package3d name="SCREWTERMINAL-3.5MM-4_LOCK" urn="urn:adsk.eagle:package:38095/1" type="box" library_version="1"> +<description>Screw Terminal 3.5mm Pitch -4 Pin PTH Locking +Holes are offset 0.005" from center to hold pins in place during soldering. +Specifications: +Pin count: 4 +Pin pitch: 3.5mm/138mil + +Datasheet referenced for footprint +Example device(s): +CONN_04 +</description> +<packageinstances> +<packageinstance name="SCREWTERMINAL-3.5MM-4_LOCK"/> +</packageinstances> +</package3d> +<package3d name="1X04_1MM_RA" urn="urn:adsk.eagle:package:38096/1" type="box" library_version="1"> +<description>SMD- 4 Pin Right Angle +Specifications: +Pin count:4 +Pin pitch:0.1" + +Example device(s): +CONN_04 +</description> +<packageinstances> +<packageinstance name="1X04_1MM_RA"/> +</packageinstances> +</package3d> +<package3d name="1X04_SMD_VERTICAL_COMBO" urn="urn:adsk.eagle:package:38097/1" type="box" library_version="1"> +<description>SMD - 4 Pin Vertical Connector +Specifications: +Pin count:4 +SMD Pad count:8 +Pin pitch:0.1" + +Example device(s): +CONN_04 +</description> +<packageinstances> +<packageinstance name="1X04_SMD_VERTICAL_COMBO"/> +</packageinstances> +</package3d> +<package3d name="1X04_SMD_LONG" urn="urn:adsk.eagle:package:38099/1" type="box" library_version="1"> +<description>SMD - 4 Pin w/ Long Solder Pads +No silk, but tDocu layer shows pin position. +Specifications: +Pin count:4 +Pin pitch:0.1" + +Example device(s): +CONN_04 +</description> +<packageinstances> +<packageinstance name="1X04_SMD_LONG"/> +</packageinstances> +</package3d> +<package3d name="JST-4-PTH-VERT" urn="urn:adsk.eagle:package:38102/1" type="box" library_version="1"> +<description>JST Vertical 4 Pin Plated Through Hole +Specifications: +Pin count: 4 +Pin pitch: 2mm + +Datasheet referenced for footprint +Example device(s): +CONN_04 +</description> +<packageinstances> +<packageinstance name="JST-4-PTH-VERT"/> +</packageinstances> +</package3d> +<package3d name="1X04_SMD_RA_FEMALE" urn="urn:adsk.eagle:package:38100/1" type="box" library_version="1"> +<description>SMD - 4 Pin Right-Angle Female Header +Silk outline shows header location. +Specifications: +Pin count:4 +Pin pitch:0.1" + +Example device(s): +CONN_04 +</description> +<packageinstances> +<packageinstance name="1X04_SMD_RA_FEMALE"/> +</packageinstances> +</package3d> +</packages3d> +<symbols> +<symbol name="CONN_08" urn="urn:adsk.eagle:symbol:37759/1" library_version="1"> +<description><h3> 8 Pin Connection</h3></description> +<wire x1="1.27" y1="-10.16" x2="-5.08" y2="-10.16" width="0.4064" layer="94"/> +<wire x1="-1.27" y1="-2.54" x2="0" y2="-2.54" width="0.6096" layer="94"/> +<wire x1="-1.27" y1="-5.08" x2="0" y2="-5.08" width="0.6096" layer="94"/> +<wire x1="-1.27" y1="-7.62" x2="0" y2="-7.62" width="0.6096" layer="94"/> +<wire x1="-5.08" y1="12.7" x2="-5.08" y2="-10.16" width="0.4064" layer="94"/> +<wire x1="1.27" y1="-10.16" x2="1.27" y2="12.7" width="0.4064" layer="94"/> +<wire x1="-5.08" y1="12.7" x2="1.27" y2="12.7" width="0.4064" layer="94"/> +<wire x1="-1.27" y1="2.54" x2="0" y2="2.54" width="0.6096" layer="94"/> +<wire x1="-1.27" y1="0" x2="0" y2="0" width="0.6096" layer="94"/> +<wire x1="-1.27" y1="5.08" x2="0" y2="5.08" width="0.6096" layer="94"/> +<wire x1="-1.27" y1="7.62" x2="0" y2="7.62" width="0.6096" layer="94"/> +<wire x1="-1.27" y1="10.16" x2="0" y2="10.16" width="0.6096" layer="94"/> +<text x="-5.08" y="-12.446" size="1.778" layer="96" font="vector">>VALUE</text> +<text x="-5.08" y="13.208" size="1.778" layer="95" font="vector">>NAME</text> +<pin name="1" x="5.08" y="-7.62" visible="pad" length="middle" direction="pas" swaplevel="1" rot="R180"/> +<pin name="2" x="5.08" y="-5.08" visible="pad" length="middle" direction="pas" swaplevel="1" rot="R180"/> +<pin name="3" x="5.08" y="-2.54" visible="pad" length="middle" direction="pas" swaplevel="1" rot="R180"/> +<pin name="4" x="5.08" y="0" visible="pad" length="middle" direction="pas" swaplevel="1" rot="R180"/> +<pin name="5" x="5.08" y="2.54" visible="pad" length="middle" direction="pas" swaplevel="1" rot="R180"/> +<pin name="6" x="5.08" y="5.08" visible="pad" length="middle" direction="pas" swaplevel="1" rot="R180"/> +<pin name="7" x="5.08" y="7.62" visible="pad" length="middle" direction="pas" swaplevel="1" rot="R180"/> +<pin name="8" x="5.08" y="10.16" visible="pad" length="middle" direction="pas" swaplevel="1" rot="R180"/> +</symbol> +<symbol name="CONN_02" urn="urn:adsk.eagle:symbol:37653/1" library_version="1"> +<description><h3>2 Pin Connection</h3></description> +<wire x1="3.81" y1="-2.54" x2="-2.54" y2="-2.54" width="0.4064" layer="94"/> +<wire x1="1.27" y1="2.54" x2="2.54" y2="2.54" width="0.6096" layer="94"/> +<wire x1="1.27" y1="0" x2="2.54" y2="0" width="0.6096" layer="94"/> +<wire x1="-2.54" y1="5.08" x2="-2.54" y2="-2.54" width="0.4064" layer="94"/> +<wire x1="3.81" y1="-2.54" x2="3.81" y2="5.08" width="0.4064" layer="94"/> +<wire x1="-2.54" y1="5.08" x2="3.81" y2="5.08" width="0.4064" layer="94"/> +<text x="-2.54" y="-4.826" size="1.778" layer="96" font="vector">>VALUE</text> +<text x="-2.54" y="5.588" size="1.778" layer="95" font="vector">>NAME</text> +<pin name="1" x="7.62" y="0" visible="pad" length="middle" direction="pas" swaplevel="1" rot="R180"/> +<pin name="2" x="7.62" y="2.54" visible="pad" length="middle" direction="pas" swaplevel="1" rot="R180"/> +</symbol> +<symbol name="CONN_04" urn="urn:adsk.eagle:symbol:37701/1" library_version="1"> +<description><h3>4 Pin Connection</h3></description> +<wire x1="1.27" y1="-5.08" x2="-5.08" y2="-5.08" width="0.4064" layer="94"/> +<wire x1="-1.27" y1="2.54" x2="0" y2="2.54" width="0.6096" layer="94"/> +<wire x1="-1.27" y1="0" x2="0" y2="0" width="0.6096" layer="94"/> +<wire x1="-1.27" y1="-2.54" x2="0" y2="-2.54" width="0.6096" layer="94"/> +<wire x1="-5.08" y1="7.62" x2="-5.08" y2="-5.08" width="0.4064" layer="94"/> +<wire x1="1.27" y1="-5.08" x2="1.27" y2="7.62" width="0.4064" layer="94"/> +<wire x1="-5.08" y1="7.62" x2="1.27" y2="7.62" width="0.4064" layer="94"/> +<wire x1="-1.27" y1="5.08" x2="0" y2="5.08" width="0.6096" layer="94"/> +<text x="-5.08" y="-7.366" size="1.778" layer="96" font="vector">>VALUE</text> +<text x="-5.08" y="8.128" size="1.778" layer="95" font="vector">>NAME</text> +<pin name="1" x="5.08" y="-2.54" visible="pad" length="middle" direction="pas" swaplevel="1" rot="R180"/> +<pin name="2" x="5.08" y="0" visible="pad" length="middle" direction="pas" swaplevel="1" rot="R180"/> +<pin name="3" x="5.08" y="2.54" visible="pad" length="middle" direction="pas" swaplevel="1" rot="R180"/> +<pin name="4" x="5.08" y="5.08" visible="pad" length="middle" direction="pas" swaplevel="1" rot="R180"/> +</symbol> +</symbols> +<devicesets> +<deviceset name="CONN_08" urn="urn:adsk.eagle:component:38333/1" prefix="J" uservalue="yes" library_version="1"> +<description><h3>Multi connection point. Often used as Generic Header-pin footprint for 0.1 inch spaced/style header connections</h3> + +<p></p> +<b>On any of the 0.1 inch spaced packages, you can populate with these:</b> +<ul> +<li><a href="https://www.sparkfun.com/products/116"> Break Away Headers - Straight</a> (PRT-00116)</li> +<li><a href="https://www.sparkfun.com/products/553"> Break Away Male Headers - Right Angle</a> (PRT-00553)</li> +<li><a href="https://www.sparkfun.com/products/115"> Female Headers</a> (PRT-00115)</li> +<li><a href="https://www.sparkfun.com/products/117"> Break Away Headers - Machine Pin</a> (PRT-00117)</li> +<li><a href="https://www.sparkfun.com/products/743"> Break Away Female Headers - Swiss Machine Pin</a> (PRT-00743)</li> +<li><a href="https://www.sparkfun.com/products/9279"> Arduino Stackable Header - 8 Pin</a> (PRT-09279)</li> +</ul> + +<p></p> +<b> For SCREWTERMINALS and SPRING TERMINALS visit here:</b> +<ul> +<li><a href="https://www.sparkfun.com/search/results?term=Screw+Terminals"> Screw Terimnals on SparkFun.com</a> (5mm/3.5mm/2.54mm spacing)</li> +</ul> + +<p></p> +<b>This device is also useful as a general connection point to wire up your design to another part of your project. Our various solder wires solder well into these plated through hole pads.</b> +<ul> +<li><a href="https://www.sparkfun.com/products/11375"> Hook-Up Wire - Assortment (Stranded, 22 AWG)</a> (PRT-11375)</li> +<li><a href="https://www.sparkfun.com/products/11367"> Hook-Up Wire - Assortment (Solid Core, 22 AWG)</a> (PRT-11367)</li> +<li><a href="https://www.sparkfun.com/categories/141"> View the entire wire category on our website here</a></li> +<p></p> +</ul> + +<p></p> +<b>Special notes:</b> +<p> </p> Molex polarized connector foot print use with SKU : PRT-08231 with associated crimp pins and housings. 1MM SMD Version SKU: PRT-10208 +<p></p> +NOTES ON THE VARIANTS LOCK and LOCK_LONGPADS... +This footprint was designed to help hold the alignment of a through-hole component (i.e. 6-pin header) while soldering it into place. You may notice that each hole has been shifted either up or down by 0.005 of an inch from it's more standard position (which is a perfectly straight line). This slight alteration caused the pins (the squares in the middle) to touch the edges of the holes. Because they are alternating, it causes a "brace" to hold the component in place. 0.005 has proven to be the perfect amount of "off-center" position when using our standard breakaway headers. Although looks a little odd when you look at the bare footprint, once you have a header in there, the alteration is very hard to notice. Also,if you push a header all the way into place, it is covered up entirely on the bottom side.</description> +<gates> +<gate name="G$1" symbol="CONN_08" x="-2.54" y="0"/> +</gates> +<devices> +<device name=""" package="1X08"> +<connects> +<connect gate="G$1" pin="1" pad="1"/> +<connect gate="G$1" pin="2" pad="2"/> +<connect gate="G$1" pin="3" pad="3"/> +<connect gate="G$1" pin="4" pad="4"/> +<connect gate="G$1" pin="5" pad="5"/> +<connect gate="G$1" pin="6" pad="6"/> +<connect gate="G$1" pin="7" pad="7"/> +<connect gate="G$1" pin="8" pad="8"/> +</connects> +<package3dinstances> +<package3dinstance package3d_urn="urn:adsk.eagle:package:38138/1"/> +</package3dinstances> +<technologies> +<technology name=""> +<attribute name="PROD_ID" value="CONN-08438"/> +</technology> +</technologies> +</device> +<device name="LOCK" package="1X08_LOCK"> +<connects> +<connect gate="G$1" pin="1" pad="1"/> +<connect gate="G$1" pin="2" pad="2"/> +<connect gate="G$1" pin="3" pad="3"/> +<connect gate="G$1" pin="4" pad="4"/> +<connect gate="G$1" pin="5" pad="5"/> +<connect gate="G$1" pin="6" pad="6"/> +<connect gate="G$1" pin="7" pad="7"/> +<connect gate="G$1" pin="8" pad="8"/> +</connects> +<package3dinstances> +<package3dinstance package3d_urn="urn:adsk.eagle:package:38137/1"/> +</package3dinstances> +<technologies> +<technology name=""/> +</technologies> +</device> +<device name="LOCK_LONGPADS" package="1X08_LOCK_LONGPADS"> +<connects> +<connect gate="G$1" pin="1" pad="1"/> +<connect gate="G$1" pin="2" pad="2"/> +<connect gate="G$1" pin="3" pad="3"/> +<connect gate="G$1" pin="4" pad="4"/> +<connect gate="G$1" pin="5" pad="5"/> +<connect gate="G$1" pin="6" pad="6"/> +<connect gate="G$1" pin="7" pad="7"/> +<connect gate="G$1" pin="8" pad="8"/> +</connects> +<package3dinstances> +<package3dinstance package3d_urn="urn:adsk.eagle:package:38140/1"/> +</package3dinstances> +<technologies> +<technology name=""/> +</technologies> +</device> +<device name="LONGPADS" package="1X08_LONGPADS"> +<connects> +<connect gate="G$1" pin="1" pad="1"/> +<connect gate="G$1" pin="2" pad="2"/> +<connect gate="G$1" pin="3" pad="3"/> +<connect gate="G$1" pin="4" pad="4"/> +<connect gate="G$1" pin="5" pad="5"/> +<connect gate="G$1" pin="6" pad="6"/> +<connect gate="G$1" pin="7" pad="7"/> +<connect gate="G$1" pin="8" pad="8"/> +</connects> +<package3dinstances> +<package3dinstance package3d_urn="urn:adsk.eagle:package:38142/1"/> +</package3dinstances> +<technologies> +<technology name=""/> +</technologies> +</device> +<device name="3.5MM-8" package="SCREWTERMINAL-3.5MM-8"> +<connects> +<connect gate="G$1" pin="1" pad="1"/> +<connect gate="G$1" pin="2" pad="2"/> +<connect gate="G$1" pin="3" pad="3"/> +<connect gate="G$1" pin="4" pad="4"/> +<connect gate="G$1" pin="5" pad="5"/> +<connect gate="G$1" pin="6" pad="6"/> +<connect gate="G$1" pin="7" pad="7"/> +<connect gate="G$1" pin="8" pad="8"/> +</connects> +<package3dinstances> +<package3dinstance package3d_urn="urn:adsk.eagle:package:38143/1"/> +</package3dinstances> +<technologies> +<technology name=""/> +</technologies> +</device> +<device name="SMD-STRAIGHT-FEMALE" package="1X08_SMD"> +<connects> +<connect gate="G$1" pin="1" pad="1"/> +<connect gate="G$1" pin="2" pad="2"/> +<connect gate="G$1" pin="3" pad="3"/> +<connect gate="G$1" pin="4" pad="4"/> +<connect gate="G$1" pin="5" pad="5"/> +<connect gate="G$1" pin="6" pad="6"/> +<connect gate="G$1" pin="7" pad="7"/> +<connect gate="G$1" pin="8" pad="8"/> +</connects> +<package3dinstances> +<package3dinstance package3d_urn="urn:adsk.eagle:package:38144/1"/> +</package3dinstances> +<technologies> +<technology name=""> +<attribute name="PROD_ID" value="CONN-10204"/> +<attribute name="SF_ID" value="PRT-11543" constant="no"/> +</technology> +</technologies> +</device> +<device name="SMD-STRAIGHT-ALT-FEMALE" package="1X08_SMD_ALT"> +<connects> +<connect gate="G$1" pin="1" pad="1"/> +<connect gate="G$1" pin="2" pad="2"/> +<connect gate="G$1" pin="3" pad="3"/> +<connect gate="G$1" pin="4" pad="4"/> +<connect gate="G$1" pin="5" pad="5"/> +<connect gate="G$1" pin="6" pad="6"/> +<connect gate="G$1" pin="7" pad="7"/> +<connect gate="G$1" pin="8" pad="8"/> +</connects> +<package3dinstances> +<package3dinstance package3d_urn="urn:adsk.eagle:package:38148/1"/> +</package3dinstances> +<technologies> +<technology name=""> +<attribute name="PROD_ID" value="CONN-10204"/> +<attribute name="SF_ID" value="PRT-11543" constant="no"/> +</technology> +</technologies> +</device> +<device name="SMD-COMBO-FEMALE" package="1X08_SMD_COMBINED"> +<connects> +<connect gate="G$1" pin="1" pad="1"/> +<connect gate="G$1" pin="2" pad="2"/> +<connect gate="G$1" pin="3" pad="3"/> +<connect gate="G$1" pin="4" pad="4"/> +<connect gate="G$1" pin="5" pad="5"/> +<connect gate="G$1" pin="6" pad="6"/> +<connect gate="G$1" pin="7" pad="7"/> +<connect gate="G$1" pin="8" pad="8"/> +</connects> +<package3dinstances> +<package3dinstance package3d_urn="urn:adsk.eagle:package:38146/1"/> +</package3dinstances> +<technologies> +<technology name=""> +<attribute name="PROD_ID" value="CONN-10204"/> +<attribute name="SF_ID" value="PRT-11543" constant="no"/> +</technology> +</technologies> +</device> +<device name="BM08B-SRSS-TB" package="BM08B-SRSS-TB"> +<connects> +<connect gate="G$1" pin="1" pad="1"/> +<connect gate="G$1" pin="2" pad="2"/> +<connect gate="G$1" pin="3" pad="3"/> +<connect gate="G$1" pin="4" pad="4"/> +<connect gate="G$1" pin="5" pad="5"/> +<connect gate="G$1" pin="6" pad="6"/> +<connect gate="G$1" pin="7" pad="7"/> +<connect gate="G$1" pin="8" pad="8"/> +</connects> +<package3dinstances> +<package3dinstance package3d_urn="urn:adsk.eagle:package:38145/1"/> +</package3dinstances> +<technologies> +<technology name=""> +<attribute name="PROD_ID" value="CONN-10556" constant="no"/> +</technology> +</technologies> +</device> +<device name="SMD-MALE" package="1X08_SMD_MALE"> +<connects> +<connect gate="G$1" pin="1" pad="1"/> +<connect gate="G$1" pin="2" pad="2"/> +<connect gate="G$1" pin="3" pad="3"/> +<connect gate="G$1" pin="4" pad="4"/> +<connect gate="G$1" pin="5" pad="5"/> +<connect gate="G$1" pin="6" pad="6"/> +<connect gate="G$1" pin="7" pad="7"/> +<connect gate="G$1" pin="8" pad="8"/> +</connects> +<package3dinstances> +<package3dinstance package3d_urn="urn:adsk.eagle:package:38150/1"/> +</package3dinstances> +<technologies> +<technology name=""> +<attribute name="PROD_ID" value="CONN-11292"/> +<attribute name="SF_ID" value="PRT-11541" constant="no"/> +</technology> +</technologies> +</device> +<device name="NO_SILK_FEMALE_PTH" package="1X08_NO_SILK"> +<connects> +<connect gate="G$1" pin="1" pad="1"/> +<connect gate="G$1" pin="2" pad="2"/> +<connect gate="G$1" pin="3" pad="3"/> +<connect gate="G$1" pin="4" pad="4"/> +<connect gate="G$1" pin="5" pad="5"/> +<connect gate="G$1" pin="6" pad="6"/> +<connect gate="G$1" pin="7" pad="7"/> +<connect gate="G$1" pin="8" pad="8"/> +</connects> +<package3dinstances> +<package3dinstance package3d_urn="urn:adsk.eagle:package:38149/1"/> +</package3dinstances> +<technologies> +<technology name=""> +<attribute name="PROD_ID" value="CONN-08438"/> +</technology> +</technologies> +</device> +<device name="LOCK_NO_SILK" package="1X08_LOCK_NO_SILK"> +<connects> +<connect gate="G$1" pin="1" pad="1"/> +<connect gate="G$1" pin="2" pad="2"/> +<connect gate="G$1" pin="3" pad="3"/> +<connect gate="G$1" pin="4" pad="4"/> +<connect gate="G$1" pin="5" pad="5"/> +<connect gate="G$1" pin="6" pad="6"/> +<connect gate="G$1" pin="7" pad="7"/> +<connect gate="G$1" pin="8" pad="8"/> +</connects> +<package3dinstances> +<package3dinstance package3d_urn="urn:adsk.eagle:package:38147/1"/> +</package3dinstances> +<technologies> +<technology name=""/> +</technologies> +</device> +<device name="FEMALE_LOCK" package="1X08_FEMALE_LOCK"> +<connects> +<connect gate="G$1" pin="1" pad="1"/> +<connect gate="G$1" pin="2" pad="2"/> +<connect gate="G$1" pin="3" pad="3"/> +<connect gate="G$1" pin="4" pad="4"/> +<connect gate="G$1" pin="5" pad="5"/> +<connect gate="G$1" pin="6" pad="6"/> +<connect gate="G$1" pin="7" pad="7"/> +<connect gate="G$1" pin="8" pad="8"/> +</connects> +<package3dinstances> +<package3dinstance package3d_urn="urn:adsk.eagle:package:38151/1"/> +</package3dinstances> +<technologies> +<technology name=""> +<attribute name="PROD_ID" value="CONN-09233" constant="no"/> +<attribute name="SF_ID" value="PRT-09279" constant="no"/> +</technology> +</technologies> +</device> +</devices> +</deviceset> +<deviceset name="CONN_02" urn="urn:adsk.eagle:component:38323/1" prefix="J" uservalue="yes" library_version="1"> +<description><h3>Multi connection point. Often used as Generic Header-pin footprint for 0.1 inch spaced/style header connections</h3> + +<p></p> +<b>On any of the 0.1 inch spaced packages, you can populate with these:</b> +<ul> +<li><a href="https://www.sparkfun.com/products/116"> Break Away Headers - Straight</a> (PRT-00116)</li> +<li><a href="https://www.sparkfun.com/products/553"> Break Away Male Headers - Right Angle</a> (PRT-00553)</li> +<li><a href="https://www.sparkfun.com/products/115"> Female Headers</a> (PRT-00115)</li> +<li><a href="https://www.sparkfun.com/products/117"> Break Away Headers - Machine Pin</a> (PRT-00117)</li> +<li><a href="https://www.sparkfun.com/products/743"> Break Away Female Headers - Swiss Machine Pin</a> (PRT-00743)</li> +</ul> + +<p></p> +<b> For SCREWTERMINALS and SPRING TERMINALS visit here:</b> +<ul> +<li><a href="https://www.sparkfun.com/search/results?term=Screw+Terminals"> Screw Terimnals on SparkFun.com</a> (5mm/3.5mm/2.54mm spacing)</li> +</ul> + +<p></p> +<b>This device is also useful as a general connection point to wire up your design to another part of your project. Our various solder wires solder well into these plated through hole pads.</b> +<ul> +<li><a href="https://www.sparkfun.com/products/11375"> Hook-Up Wire - Assortment (Stranded, 22 AWG)</a> (PRT-11375)</li> +<li><a href="https://www.sparkfun.com/products/11367"> Hook-Up Wire - Assortment (Solid Core, 22 AWG)</a> (PRT-11367)</li> +<li><a href="https://www.sparkfun.com/categories/141"> View the entire wire category on our website here</a></li> +<p></p> +</ul> + +<p></p> +<b>Special notes:</b> + + Molex polarized connector foot print use with: PRT-08233 with associated crimp pins and housings.<br><br> + +2.54_SCREWTERM for use with PRT-10571.<br><br> + +3.5mm Screw Terminal footprints for PRT-08084<br><br> + +5mm Screw Terminal footprints for use with PRT-08432</description> +<gates> +<gate name="G$1" symbol="CONN_02" x="-2.54" y="0"/> +</gates> +<devices> +<device name="" package="1X02"> +<connects> +<connect gate="G$1" pin="1" pad="1"/> +<connect gate="G$1" pin="2" pad="2"/> +</connects> +<package3dinstances> +<package3dinstance package3d_urn="urn:adsk.eagle:package:38039/1"/> +</package3dinstances> +<technologies> +<technology name=""/> +</technologies> +</device> +<device name="POLAR" package="MOLEX-1X2"> +<connects> +<connect gate="G$1" pin="1" pad="1"/> +<connect gate="G$1" pin="2" pad="2"/> +</connects> +<package3dinstances> +<package3dinstance package3d_urn="urn:adsk.eagle:package:38040/1"/> +</package3dinstances> +<technologies> +<technology name=""> +<attribute name="SF_ID" value="PRT-09918" constant="no"/> +</technology> +</technologies> +</device> +<device name="3.5MM" package="SCREWTERMINAL-3.5MM-2"> +<connects> +<connect gate="G$1" pin="1" pad="1"/> +<connect gate="G$1" pin="2" pad="2"/> +</connects> +<package3dinstances> +<package3dinstance package3d_urn="urn:adsk.eagle:package:38050/1"/> +</package3dinstances> +<technologies> +<technology name=""> +<attribute name="PROD_ID" value="CONN-08399" constant="no"/> +</technology> +</technologies> +</device> +<device name="-JST-2MM-SMT" package="JST-2-SMD"> +<connects> +<connect gate="G$1" pin="1" pad="2"/> +<connect gate="G$1" pin="2" pad="1"/> +</connects> +<package3dinstances> +<package3dinstance package3d_urn="urn:adsk.eagle:package:38042/1"/> +</package3dinstances> +<technologies> +<technology name=""> +<attribute name="PROD_ID" value="CONN-11443"/> +</technology> +</technologies> +</device> +<device name="PTH2" package="1X02_BIG"> +<connects> +<connect gate="G$1" pin="1" pad="P$1"/> +<connect gate="G$1" pin="2" pad="P$2"/> +</connects> +<package3dinstances> +<package3dinstance package3d_urn="urn:adsk.eagle:package:38043/1"/> +</package3dinstances> +<technologies> +<technology name=""/> +</technologies> +</device> +<device name="4UCON-15767" package="JST-2-SMD-VERT"> +<connects> +<connect gate="G$1" pin="1" pad="GND"/> +<connect gate="G$1" pin="2" pad="VCC"/> +</connects> +<package3dinstances> +<package3dinstance package3d_urn="urn:adsk.eagle:package:38052/1"/> +</package3dinstances> +<technologies> +<technology name=""/> +</technologies> +</device> +<device name="5MM" package="SCREWTERMINAL-5MM-2"> +<connects> +<connect gate="G$1" pin="1" pad="1"/> +<connect gate="G$1" pin="2" pad="2"/> +</connects> +<package3dinstances> +<package3dinstance package3d_urn="urn:adsk.eagle:package:38044/1"/> +</package3dinstances> +<technologies> +<technology name=""> +<attribute name="SF_SKU" value="PRT-08432" constant="no"/> +</technology> +</technologies> +</device> +<device name="LOCK" package="1X02_LOCK"> +<connects> +<connect gate="G$1" pin="1" pad="1"/> +<connect gate="G$1" pin="2" pad="2"/> +</connects> +<package3dinstances> +<package3dinstance package3d_urn="urn:adsk.eagle:package:38045/1"/> +</package3dinstances> +<technologies> +<technology name=""/> +</technologies> +</device> +<device name="POLAR_LOCK" package="MOLEX-1X2_LOCK"> +<connects> +<connect gate="G$1" pin="1" pad="1"/> +<connect gate="G$1" pin="2" pad="2"/> +</connects> +<package3dinstances> +<package3dinstance package3d_urn="urn:adsk.eagle:package:38046/1"/> +</package3dinstances> +<technologies> +<technology name=""> +<attribute name="SF_ID" value="PRT-09918" constant="no"/> +</technology> +</technologies> +</device> +<device name="LOCK_LONGPADS" package="1X02_LOCK_LONGPADS"> +<connects> +<connect gate="G$1" pin="1" pad="1"/> +<connect gate="G$1" pin="2" pad="2"/> +</connects> +<package3dinstances> +<package3dinstance package3d_urn="urn:adsk.eagle:package:38047/1"/> +</package3dinstances> +<technologies> +<technology name=""/> +</technologies> +</device> +<device name="3.5MM_LOCK" package="SCREWTERMINAL-3.5MM-2_LOCK"> +<connects> +<connect gate="G$1" pin="1" pad="1"/> +<connect gate="G$1" pin="2" pad="2"/> +</connects> +<package3dinstances> +<package3dinstance package3d_urn="urn:adsk.eagle:package:38049/1"/> +</package3dinstances> +<technologies> +<technology name=""> +<attribute name="PROD_ID" value="CONN-08399" constant="no"/> +</technology> +</technologies> +</device> +<device name="PTH3" package="1X02_LONGPADS"> +<connects> +<connect gate="G$1" pin="1" pad="1"/> +<connect gate="G$1" pin="2" pad="2"/> +</connects> +<package3dinstances> +<package3dinstance package3d_urn="urn:adsk.eagle:package:38048/1"/> +</package3dinstances> +<technologies> +<technology name=""/> +</technologies> +</device> +<device name="1X02_NO_SILK" package="1X02_NO_SILK"> +<connects> +<connect gate="G$1" pin="1" pad="1"/> +<connect gate="G$1" pin="2" pad="2"/> +</connects> +<package3dinstances> +<package3dinstance package3d_urn="urn:adsk.eagle:package:38051/1"/> +</package3dinstances> +<technologies> +<technology name=""/> +</technologies> +</device> +<device name="JST-PTH-2" package="JST-2-PTH"> +<connects> +<connect gate="G$1" pin="1" pad="1"/> +<connect gate="G$1" pin="2" pad="2"/> +</connects> +<package3dinstances> +<package3dinstance package3d_urn="urn:adsk.eagle:package:38053/1"/> +</package3dinstances> +<technologies> +<technology name=""> +<attribute name="PROD_ID" value="CONN-09863" constant="no"/> +<attribute name="SKU" value="PRT-09914" constant="no"/> +</technology> +</technologies> +</device> +<device name="PTH4" package="1X02_XTRA_BIG"> +<connects> +<connect gate="G$1" pin="1" pad="1"/> +<connect gate="G$1" pin="2" pad="2"/> +</connects> +<package3dinstances> +<package3dinstance package3d_urn="urn:adsk.eagle:package:38054/1"/> +</package3dinstances> +<technologies> +<technology name=""/> +</technologies> +</device> +<device name="POGO_PIN_HOLES_ONLY" package="1X02_PP_HOLES_ONLY"> +<connects> +<connect gate="G$1" pin="1" pad="1"/> +<connect gate="G$1" pin="2" pad="2"/> +</connects> +<package3dinstances> +<package3dinstance package3d_urn="urn:adsk.eagle:package:38058/1"/> +</package3dinstances> +<technologies> +<technology name=""/> +</technologies> +</device> +<device name="3.5MM-NO_SILK" package="SCREWTERMINAL-3.5MM-2-NS"> +<connects> +<connect gate="G$1" pin="1" pad="1"/> +<connect gate="G$1" pin="2" pad="2"/> +</connects> +<package3dinstances> +<package3dinstance package3d_urn="urn:adsk.eagle:package:38055/1"/> +</package3dinstances> +<technologies> +<technology name=""> +<attribute name="PROD_ID" value="CONN-08399" constant="no"/> +</technology> +</technologies> +</device> +<device name="-JST-2-PTH-NO_SILK" package="JST-2-PTH-NS"> +<connects> +<connect gate="G$1" pin="1" pad="1"/> +<connect gate="G$1" pin="2" pad="2"/> +</connects> +<package3dinstances> +<package3dinstance package3d_urn="urn:adsk.eagle:package:38056/1"/> +</package3dinstances> +<technologies> +<technology name=""/> +</technologies> +</device> +<device name="JST-PTH-2-KIT" package="JST-2-PTH-KIT"> +<connects> +<connect gate="G$1" pin="1" pad="1"/> +<connect gate="G$1" pin="2" pad="2"/> +</connects> +<package3dinstances> +<package3dinstance package3d_urn="urn:adsk.eagle:package:38057/1"/> +</package3dinstances> +<technologies> +<technology name=""/> +</technologies> +</device> +<device name="SPRING-2.54-RA" package="SPRINGTERMINAL-2.54MM-2"> +<connects> +<connect gate="G$1" pin="1" pad="1"/> +<connect gate="G$1" pin="2" pad="2"/> +</connects> +<package3dinstances> +<package3dinstance package3d_urn="urn:adsk.eagle:package:38061/1"/> +</package3dinstances> +<technologies> +<technology name=""/> +</technologies> +</device> +<device name="2.54MM_SCREWTERM" package="1X02_2.54_SCREWTERM"> +<connects> +<connect gate="G$1" pin="1" pad="P1"/> +<connect gate="G$1" pin="2" pad="P2"/> +</connects> +<package3dinstances> +<package3dinstance package3d_urn="urn:adsk.eagle:package:38059/1"/> +</package3dinstances> +<technologies> +<technology name=""/> +</technologies> +</device> +<device name="SMALL_POKEHOME" package="1X02_POKEHOME"> +<connects> +<connect gate="G$1" pin="1" pad="P1 P3"/> +<connect gate="G$1" pin="2" pad="P2 P4"/> +</connects> +<package3dinstances> +<package3dinstance package3d_urn="urn:adsk.eagle:package:38060/1"/> +</package3dinstances> +<technologies> +<technology name=""> +<attribute name="PROD_ID" value="CONN-13512"/> +</technology> +</technologies> +</device> +<device name="PTH_RA_FEMALE" package="1X02_RA_PTH_FEMALE"> +<connects> +<connect gate="G$1" pin="1" pad="1"/> +<connect gate="G$1" pin="2" pad="2"/> +</connects> +<package3dinstances> +<package3dinstance package3d_urn="urn:adsk.eagle:package:38062/1"/> +</package3dinstances> +<technologies> +<technology name=""> +<attribute name="PROD_ID" value="CONN-13700"/> +</technology> +</technologies> +</device> +</devices> +</deviceset> +<deviceset name="CONN_04" urn="urn:adsk.eagle:component:38327/1" prefix="J" uservalue="yes" library_version="1"> +<description><h3>Multi connection point. Often used as Generic Header-pin footprint for 0.1 inch spaced/style header connections</h3> + +<p></p> +<b>On any of the 0.1 inch spaced packages, you can populate with these:</b> +<ul> +<li><a href="https://www.sparkfun.com/products/116"> Break Away Headers - Straight</a> (PRT-00116)</li> +<li><a href="https://www.sparkfun.com/products/553"> Break Away Male Headers - Right Angle</a> (PRT-00553)</li> +<li><a href="https://www.sparkfun.com/products/115"> Female Headers</a> (PRT-00115)</li> +<li><a href="https://www.sparkfun.com/products/117"> Break Away Headers - Machine Pin</a> (PRT-00117)</li> +<li><a href="https://www.sparkfun.com/products/743"> Break Away Female Headers - Swiss Machine Pin</a> (PRT-00743)</li> +</ul> + +<p></p> +<b> For SCREWTERMINALS and SPRING TERMINALS visit here:</b> +<ul> +<li><a href="https://www.sparkfun.com/search/results?term=Screw+Terminals"> Screw Terimnals on SparkFun.com</a> (5mm/3.5mm/2.54mm spacing)</li> +</ul> + +<p></p> +<b>This device is also useful as a general connection point to wire up your design to another part of your project. Our various solder wires solder well into these plated through hole pads.</b> +<ul> +<li><a href="https://www.sparkfun.com/products/11375"> Hook-Up Wire - Assortment (Stranded, 22 AWG)</a> (PRT-11375)</li> +<li><a href="https://www.sparkfun.com/products/11367"> Hook-Up Wire - Assortment (Solid Core, 22 AWG)</a> (PRT-11367)</li> +<li><a href="https://www.sparkfun.com/categories/141"> View the entire wire category on our website here</a></li> +<p></p> +</ul> + +<p></p> +<b>Special notes:</b> +<p> </p> Molex polarized connector foot print use with SKU : PRT-08231 with associated crimp pins and housings. 1MM SMD Version SKU: PRT-10208</description> +<gates> +<gate name="G$1" symbol="CONN_04" x="-2.54" y="0"/> +</gates> +<devices> +<device name="" package="1X04"> +<connects> +<connect gate="G$1" pin="1" pad="1"/> +<connect gate="G$1" pin="2" pad="2"/> +<connect gate="G$1" pin="3" pad="3"/> +<connect gate="G$1" pin="4" pad="4"/> +</connects> +<package3dinstances> +<package3dinstance package3d_urn="urn:adsk.eagle:package:38085/1"/> +</package3dinstances> +<technologies> +<technology name=""> +<attribute name="PROD_ID" value="CONN-09696" constant="no"/> +</technology> +</technologies> +</device> +<device name="POLAR" package="MOLEX-1X4"> +<connects> +<connect gate="G$1" pin="1" pad="1"/> +<connect gate="G$1" pin="2" pad="2"/> +<connect gate="G$1" pin="3" pad="3"/> +<connect gate="G$1" pin="4" pad="4"/> +</connects> +<package3dinstances> +<package3dinstance package3d_urn="urn:adsk.eagle:package:38087/1"/> +</package3dinstances> +<technologies> +<technology name=""> +<attribute name="PROD_ID" value="CONN-08186" constant="no"/> +<attribute name="SF_ID" value="PRT-08231" constant="no"/> +</technology> +</technologies> +</device> +<device name="SCREW" package="SCREWTERMINAL-3.5MM-4"> +<connects> +<connect gate="G$1" pin="1" pad="1"/> +<connect gate="G$1" pin="2" pad="2"/> +<connect gate="G$1" pin="3" pad="3"/> +<connect gate="G$1" pin="4" pad="4"/> +</connects> +<package3dinstances> +<package3dinstance package3d_urn="urn:adsk.eagle:package:38090/1"/> +</package3dinstances> +<technologies> +<technology name=""> +<attribute name="PROD_ID" value="2xCONN-08399" constant="no"/> +<attribute name="SF_ID" value="2xPRT-08084" constant="no"/> +</technology> +</technologies> +</device> +<device name="1.27MM" package="1X04_1.27MM"> +<connects> +<connect gate="G$1" pin="1" pad="1"/> +<connect gate="G$1" pin="2" pad="2"/> +<connect gate="G$1" pin="3" pad="3"/> +<connect gate="G$1" pin="4" pad="4"/> +</connects> +<package3dinstances> +<package3dinstance package3d_urn="urn:adsk.eagle:package:38086/1"/> +</package3dinstances> +<technologies> +<technology name=""/> +</technologies> +</device> +<device name="LOCK" package="1X04_LOCK"> +<connects> +<connect gate="G$1" pin="1" pad="1"/> +<connect gate="G$1" pin="2" pad="2"/> +<connect gate="G$1" pin="3" pad="3"/> +<connect gate="G$1" pin="4" pad="4"/> +</connects> +<package3dinstances> +<package3dinstance package3d_urn="urn:adsk.eagle:package:38089/1"/> +</package3dinstances> +<technologies> +<technology name=""> +<attribute name="PROD_ID" value="CONN-09696" constant="no"/> +</technology> +</technologies> +</device> +<device name="LOCK_LONGPADS" package="1X04_LOCK_LONGPADS"> +<connects> +<connect gate="G$1" pin="1" pad="1"/> +<connect gate="G$1" pin="2" pad="2"/> +<connect gate="G$1" pin="3" pad="3"/> +<connect gate="G$1" pin="4" pad="4"/> +</connects> +<package3dinstances> +<package3dinstance package3d_urn="urn:adsk.eagle:package:38091/1"/> +</package3dinstances> +<technologies> +<technology name=""> +<attribute name="PROD_ID" value="CONN-09696" constant="no"/> +</technology> +</technologies> +</device> +<device name="POLAR_LOCK" package="MOLEX-1X4_LOCK"> +<connects> +<connect gate="G$1" pin="1" pad="1"/> +<connect gate="G$1" pin="2" pad="2"/> +<connect gate="G$1" pin="3" pad="3"/> +<connect gate="G$1" pin="4" pad="4"/> +</connects> +<package3dinstances> +<package3dinstance package3d_urn="urn:adsk.eagle:package:38092/1"/> +</package3dinstances> +<technologies> +<technology name=""> +<attribute name="PROD_ID" value="CONN-08186" constant="no"/> +<attribute name="SF_ID" value="PRT-08231" constant="no"/> +</technology> +</technologies> +</device> +<device name="SMD" package="1X04_SMD_RA_MALE"> +<connects> +<connect gate="G$1" pin="1" pad="1"/> +<connect gate="G$1" pin="2" pad="2"/> +<connect gate="G$1" pin="3" pad="3"/> +<connect gate="G$1" pin="4" pad="4"/> +</connects> +<package3dinstances> +<package3dinstance package3d_urn="urn:adsk.eagle:package:38093/1"/> +</package3dinstances> +<technologies> +<technology name=""> +<attribute name="PROD_ID" value="CONN-09140" constant="no"/> +<attribute name="SF_ID" value="PRT-12638" constant="no"/> +</technology> +</technologies> +</device> +<device name="LONGPADS" package="1X04_LONGPADS"> +<connects> +<connect gate="G$1" pin="1" pad="1"/> +<connect gate="G$1" pin="2" pad="2"/> +<connect gate="G$1" pin="3" pad="3"/> +<connect gate="G$1" pin="4" pad="4"/> +</connects> +<package3dinstances> +<package3dinstance package3d_urn="urn:adsk.eagle:package:38098/1"/> +</package3dinstances> +<technologies> +<technology name=""> +<attribute name="PROD_ID" value="CONN-09696" constant="no"/> +</technology> +</technologies> +</device> +<device name="1X04_NO_SILK" package="1X04_NO_SILK"> +<connects> +<connect gate="G$1" pin="1" pad="1"/> +<connect gate="G$1" pin="2" pad="2"/> +<connect gate="G$1" pin="3" pad="3"/> +<connect gate="G$1" pin="4" pad="4"/> +</connects> +<package3dinstances> +<package3dinstance package3d_urn="urn:adsk.eagle:package:38094/1"/> +</package3dinstances> +<technologies> +<technology name=""> +<attribute name="PROD_ID" value="CONN-09696" constant="no"/> +</technology> +</technologies> +</device> +<device name="JST-PTH" package="JST-4-PTH"> +<connects> +<connect gate="G$1" pin="1" pad="1"/> +<connect gate="G$1" pin="2" pad="2"/> +<connect gate="G$1" pin="3" pad="3"/> +<connect gate="G$1" pin="4" pad="4"/> +</connects> +<package3dinstances> +<package3dinstance package3d_urn="urn:adsk.eagle:package:38101/1"/> +</package3dinstances> +<technologies> +<technology name=""> +<attribute name="PROD_ID" value="WIRE-13531" constant="no"/> +<attribute name="SF_ID" value="PRT-09916" constant="no"/> +</technology> +</technologies> +</device> +<device name="SCREW_LOCK" package="SCREWTERMINAL-3.5MM-4_LOCK"> +<connects> +<connect gate="G$1" pin="1" pad="1"/> +<connect gate="G$1" pin="2" pad="2"/> +<connect gate="G$1" pin="3" pad="3"/> +<connect gate="G$1" pin="4" pad="4"/> +</connects> +<package3dinstances> +<package3dinstance package3d_urn="urn:adsk.eagle:package:38095/1"/> +</package3dinstances> +<technologies> +<technology name=""/> +</technologies> +</device> +<device name="SMD2" package="1X04_1MM_RA"> +<connects> +<connect gate="G$1" pin="1" pad="1"/> +<connect gate="G$1" pin="2" pad="2"/> +<connect gate="G$1" pin="3" pad="3"/> +<connect gate="G$1" pin="4" pad="4"/> +</connects> +<package3dinstances> +<package3dinstance package3d_urn="urn:adsk.eagle:package:38096/1"/> +</package3dinstances> +<technologies> +<technology name=""> +<attribute name="PROD_ID" value="CONN-10310" constant="no"/> +<attribute name="SF_ID" value="PRT-10208" constant="no"/> +</technology> +</technologies> +</device> +<device name="SMD_STRAIGHT_COMBO" package="1X04_SMD_VERTICAL_COMBO"> +<connects> +<connect gate="G$1" pin="1" pad="1"/> +<connect gate="G$1" pin="2" pad="2"/> +<connect gate="G$1" pin="3" pad="3"/> +<connect gate="G$1" pin="4" pad="4"/> +</connects> +<package3dinstances> +<package3dinstance package3d_urn="urn:adsk.eagle:package:38097/1"/> +</package3dinstances> +<technologies> +<technology name=""> +<attribute name="PROD_ID" value="CONN-08511"/> +<attribute name="VALUE" value="1X04_SMD_STRAIGHT_COMBO"/> +</technology> +</technologies> +</device> +<device name="SMD_LONG" package="1X04_SMD_LONG"> +<connects> +<connect gate="G$1" pin="1" pad="1"/> +<connect gate="G$1" pin="2" pad="2"/> +<connect gate="G$1" pin="3" pad="3"/> +<connect gate="G$1" pin="4" pad="4"/> +</connects> +<package3dinstances> +<package3dinstance package3d_urn="urn:adsk.eagle:package:38099/1"/> +</package3dinstances> +<technologies> +<technology name=""> +<attribute name="PROD_ID" value="CONN-09140" constant="no"/> +<attribute name="SF_ID" value="PRT-12638" constant="no"/> +</technology> +</technologies> +</device> +<device name="JST-PTH-VERT" package="JST-4-PTH-VERT"> +<connects> +<connect gate="G$1" pin="1" pad="1"/> +<connect gate="G$1" pin="2" pad="2"/> +<connect gate="G$1" pin="3" pad="3"/> +<connect gate="G$1" pin="4" pad="4"/> +</connects> +<package3dinstances> +<package3dinstance package3d_urn="urn:adsk.eagle:package:38102/1"/> +</package3dinstances> +<technologies> +<technology name=""> +<attribute name="PROD_ID" value="CONN-13251"/> +</technology> +</technologies> +</device> +<device name="SMD_RA_FEMALE" package="1X04_SMD_RA_FEMALE"> +<connects> +<connect gate="G$1" pin="1" pad="1"/> +<connect gate="G$1" pin="2" pad="2"/> +<connect gate="G$1" pin="3" pad="3"/> +<connect gate="G$1" pin="4" pad="4"/> +</connects> +<package3dinstances> +<package3dinstance package3d_urn="urn:adsk.eagle:package:38100/1"/> +</package3dinstances> +<technologies> +<technology name=""> +<attribute name="PROD_ID" value="CONN-12382" constant="no"/> +</technology> +</technologies> +</device> +</devices> +</deviceset> +</devicesets> +</library> +<library name="holes" urn="urn:adsk.eagle:library:237"> +<description><b>Mounting Holes and Pads</b><p> +<author>Created by librarian@cadsoft.de</author></description> +<packages> +<package name="2,8" urn="urn:adsk.eagle:footprint:14239/1" library_version="1"> +<description><b>MOUNTING HOLE</b> 2.8 mm with drill center</description> +<wire x1="-1.778" y1="0" x2="0" y2="-1.778" width="2.286" layer="51" curve="90" cap="flat"/> +<wire x1="0" y1="1.778" x2="1.778" y2="0" width="2.286" layer="51" curve="-90" cap="flat"/> +<circle x="0" y="0" radius="0.635" width="0.4572" layer="51"/> +<circle x="0" y="0" radius="2.921" width="0.1524" layer="21"/> +<circle x="0" y="0" radius="2.54" width="2.032" layer="40"/> +<circle x="0" y="0" radius="2.54" width="2.032" layer="39"/> +<circle x="0" y="0" radius="2.54" width="2.032" layer="41"/> +<circle x="0" y="0" radius="2.54" width="2.032" layer="42"/> +<circle x="0" y="0" radius="2.54" width="2.032" layer="43"/> +<circle x="0" y="0" radius="1.5" width="0.2032" layer="21"/> +<hole x="0" y="0" drill="2.8"/> +</package> +<package name="3,0" urn="urn:adsk.eagle:footprint:14240/1" library_version="1"> +<description><b>MOUNTING HOLE</b> 3.0 mm with drill center</description> +<wire x1="-2.159" y1="0" x2="0" y2="-2.159" width="2.4892" layer="51" curve="90" cap="flat"/> +<wire x1="0" y1="2.159" x2="2.159" y2="0" width="2.4892" layer="51" curve="-90" cap="flat"/> +<circle x="0" y="0" radius="3.429" width="0.1524" layer="21"/> +<circle x="0" y="0" radius="0.762" width="0.4572" layer="51"/> +<circle x="0" y="0" radius="3.048" width="2.032" layer="39"/> +<circle x="0" y="0" radius="3.048" width="2.032" layer="43"/> +<circle x="0" y="0" radius="3.048" width="2.032" layer="40"/> +<circle x="0" y="0" radius="3.048" width="2.032" layer="41"/> +<circle x="0" y="0" radius="3.048" width="2.032" layer="42"/> +<circle x="0" y="0" radius="1.6" width="0.2032" layer="21"/> +<text x="-1.27" y="-3.81" size="1.27" layer="48">3,0</text> +<hole x="0" y="0" drill="3"/> +</package> +<package name="3,3" urn="urn:adsk.eagle:footprint:14241/1" library_version="1"> +<description><b>MOUNTING HOLE</b> 3.3 mm with drill center</description> +<wire x1="-2.159" y1="0" x2="0" y2="-2.159" width="2.4892" layer="51" curve="90" cap="flat"/> +<wire x1="0" y1="2.159" x2="2.159" y2="0" width="2.4892" layer="51" curve="-90" cap="flat"/> +<circle x="0" y="0" radius="3.429" width="0.1524" layer="21"/> +<circle x="0" y="0" radius="0.762" width="0.4572" layer="51"/> +<circle x="0" y="0" radius="3.048" width="2.54" layer="39"/> +<circle x="0" y="0" radius="3.048" width="2.54" layer="40"/> +<circle x="0" y="0" radius="3.048" width="2.032" layer="43"/> +<circle x="0" y="0" radius="3.048" width="2.032" layer="41"/> +<circle x="0" y="0" radius="3.048" width="2.032" layer="42"/> +<circle x="0" y="0" radius="1.75" width="0.2032" layer="21"/> +<hole x="0" y="0" drill="3.3"/> +</package> +<package name="3,6" urn="urn:adsk.eagle:footprint:14242/1" library_version="1"> +<description><b>MOUNTING HOLE</b> 3.6 mm with drill center</description> +<wire x1="-2.159" y1="0" x2="0" y2="-2.159" width="2.4892" layer="51" curve="90" cap="flat"/> +<wire x1="0" y1="2.159" x2="2.159" y2="0" width="2.4892" layer="51" curve="-90" cap="flat"/> +<circle x="0" y="0" radius="3.429" width="0.1524" layer="21"/> +<circle x="0" y="0" radius="0.762" width="0.4572" layer="51"/> +<circle x="0" y="0" radius="3.048" width="2.7686" layer="39"/> +<circle x="0" y="0" radius="3.048" width="2.7686" layer="40"/> +<circle x="0" y="0" radius="3.048" width="2.032" layer="43"/> +<circle x="0" y="0" radius="3.048" width="2.032" layer="41"/> +<circle x="0" y="0" radius="3.048" width="2.032" layer="42"/> +<circle x="0" y="0" radius="1.9" width="0.2032" layer="21"/> +<hole x="0" y="0" drill="3.6"/> +</package> +<package name="4,1" urn="urn:adsk.eagle:footprint:14243/1" library_version="1"> +<description><b>MOUNTING HOLE</b> 4.1 mm with drill center</description> +<wire x1="-2.54" y1="0" x2="0" y2="-2.54" width="3.9116" layer="51" curve="90" cap="flat"/> +<wire x1="0" y1="2.54" x2="2.54" y2="0" width="3.9116" layer="51" curve="-90" cap="flat"/> +<circle x="0" y="0" radius="4.4958" width="0.1524" layer="21"/> +<circle x="0" y="0" radius="0.762" width="0.4572" layer="51"/> +<circle x="0" y="0" radius="3.81" width="2.54" layer="39"/> +<circle x="0" y="0" radius="3.81" width="2.54" layer="40"/> +<circle x="0" y="0" radius="3.81" width="2.54" layer="41"/> +<circle x="0" y="0" radius="3.81" width="2.54" layer="42"/> +<circle x="0" y="0" radius="3.81" width="2.54" layer="43"/> +<circle x="0" y="0" radius="2.15" width="0.1524" layer="21"/> +<hole x="0" y="0" drill="4.1"/> +</package> +<package name="4,5" urn="urn:adsk.eagle:footprint:14244/1" library_version="1"> +<description><b>MOUNTING HOLE</b> 4.5 mm with drill center</description> +<wire x1="4.445" y1="0" x2="2.159" y2="0" width="0.0508" layer="21"/> +<wire x1="0" y1="4.445" x2="0" y2="2.159" width="0.0508" layer="21"/> +<wire x1="-2.159" y1="0" x2="-4.445" y2="0" width="0.0508" layer="21"/> +<wire x1="0" y1="-2.159" x2="0" y2="-4.445" width="0.0508" layer="21"/> +<wire x1="-2.54" y1="0" x2="0" y2="-2.54" width="3.9116" layer="51" curve="90" cap="flat"/> +<wire x1="0" y1="2.54" x2="2.54" y2="0" width="3.9116" layer="51" curve="-90" cap="flat"/> +<circle x="0" y="0" radius="4.4958" width="0.1524" layer="21"/> +<circle x="0" y="0" radius="0.762" width="0.4572" layer="51"/> +<circle x="0" y="0" radius="4.699" width="4.5466" layer="39"/> +<circle x="0" y="0" radius="4.699" width="4.5466" layer="40"/> +<circle x="0" y="0" radius="3.8184" width="2.54" layer="41"/> +<circle x="0" y="0" radius="3.81" width="2.54" layer="42"/> +<circle x="0" y="0" radius="3.81" width="2.54" layer="43"/> +<circle x="0" y="0" radius="2.35" width="0.1524" layer="21"/> +<text x="-1.27" y="-4.445" size="1.27" layer="48">4,5</text> +<hole x="0" y="0" drill="4.5"/> +</package> +<package name="5,0" urn="urn:adsk.eagle:footprint:14245/1" library_version="1"> +<description><b>MOUNTING HOLE</b> 5.0 mm with drill center</description> +<wire x1="4.445" y1="0" x2="2.159" y2="0" width="0.0508" layer="21"/> +<wire x1="0" y1="4.445" x2="0" y2="2.159" width="0.0508" layer="21"/> +<wire x1="-2.159" y1="0" x2="-4.445" y2="0" width="0.0508" layer="21"/> +<wire x1="0" y1="-2.159" x2="0" y2="-4.445" width="0.0508" layer="21"/> +<wire x1="-2.54" y1="0" x2="0" y2="-2.54" width="3.9116" layer="51" curve="90" cap="flat"/> +<wire x1="0" y1="2.54" x2="2.54" y2="0" width="3.9116" layer="51" curve="-90" cap="flat"/> +<circle x="0" y="0" radius="4.4958" width="0.1524" layer="21"/> +<circle x="0" y="0" radius="0.762" width="0.4572" layer="51"/> +<circle x="0" y="0" radius="4.699" width="4.5466" layer="39"/> +<circle x="0" y="0" radius="4.699" width="4.5466" layer="40"/> +<circle x="0" y="0" radius="4.826" width="2.54" layer="43"/> +<circle x="0" y="0" radius="4.826" width="2.54" layer="42"/> +<circle x="0" y="0" radius="4.826" width="2.54" layer="41"/> +<circle x="0" y="0" radius="2.6" width="0.1524" layer="21"/> +<text x="-1.27" y="-4.445" size="1.27" layer="48">5,0</text> +<hole x="0" y="0" drill="5"/> +</package> +<package name="3,2" urn="urn:adsk.eagle:footprint:14246/1" library_version="1"> +<description><b>MOUNTING HOLE</b> 3.2 mm with drill center</description> +<wire x1="-2.159" y1="0" x2="0" y2="-2.159" width="2.4892" layer="51" curve="90" cap="flat"/> +<wire x1="0" y1="2.159" x2="2.159" y2="0" width="2.4892" layer="51" curve="-90" cap="flat"/> +<circle x="0" y="0" radius="3.429" width="0.1524" layer="21"/> +<circle x="0" y="0" radius="0.762" width="0.4572" layer="51"/> +<circle x="0" y="0" radius="3.048" width="2.032" layer="39"/> +<circle x="0" y="0" radius="3.048" width="2.032" layer="43"/> +<circle x="0" y="0" radius="3.048" width="2.032" layer="40"/> +<circle x="0" y="0" radius="3.048" width="2.032" layer="41"/> +<circle x="0" y="0" radius="3.048" width="2.032" layer="42"/> +<circle x="0" y="0" radius="1.7" width="0.2032" layer="21"/> +<hole x="0" y="0" drill="3.2"/> +</package> +<package name="4,3" urn="urn:adsk.eagle:footprint:14247/1" library_version="1"> +<description><b>MOUNTING HOLE</b> 4.3 mm with drill center</description> +<wire x1="-2.54" y1="0" x2="0" y2="-2.54" width="3.9116" layer="51" curve="90" cap="flat"/> +<wire x1="0" y1="2.54" x2="2.54" y2="0" width="3.9116" layer="51" curve="-90" cap="flat"/> +<circle x="0" y="0" radius="4.4958" width="0.1524" layer="21"/> +<circle x="0" y="0" radius="0.762" width="0.1524" layer="51"/> +<circle x="0" y="0" radius="4.699" width="4.5466" layer="39"/> +<circle x="0" y="0" radius="4.699" width="4.5466" layer="40"/> +<circle x="0" y="0" radius="3.8184" width="2.54" layer="41"/> +<circle x="0" y="0" radius="3.81" width="2.54" layer="42"/> +<circle x="0" y="0" radius="3.81" width="2.54" layer="43"/> +<circle x="0" y="0" radius="2.25" width="0.1524" layer="21"/> +<hole x="0" y="0" drill="4.3"/> +</package> +<package name="5,5" urn="urn:adsk.eagle:footprint:14248/1" library_version="1"> +<description><b>MOUNTING HOLE</b> 5.5 mm with drill center</description> +<wire x1="4.445" y1="0" x2="2.159" y2="0" width="0.0508" layer="21"/> +<wire x1="0" y1="4.445" x2="0" y2="2.159" width="0.0508" layer="21"/> +<wire x1="-2.159" y1="0" x2="-4.445" y2="0" width="0.0508" layer="21"/> +<wire x1="0" y1="-2.159" x2="0" y2="-4.445" width="0.0508" layer="21"/> +<wire x1="-2.54" y1="0" x2="0" y2="-2.54" width="3.9116" layer="51" curve="90" cap="flat"/> +<wire x1="0" y1="2.54" x2="2.54" y2="0" width="3.9116" layer="51" curve="-90" cap="flat"/> +<circle x="0" y="0" radius="4.4958" width="0.1524" layer="21"/> +<circle x="0" y="0" radius="0.762" width="0.4572" layer="51"/> +<circle x="0" y="0" radius="4.699" width="4.5466" layer="39"/> +<circle x="0" y="0" radius="4.699" width="4.5466" layer="40"/> +<circle x="0" y="0" radius="4.826" width="2.54" layer="43"/> +<circle x="0" y="0" radius="4.826" width="2.54" layer="42"/> +<circle x="0" y="0" radius="4.826" width="2.54" layer="41"/> +<circle x="0" y="0" radius="2.85" width="0.1524" layer="21"/> +<hole x="0" y="0" drill="5.5"/> +</package> +</packages> +<packages3d> +<package3d name="2,8" urn="urn:adsk.eagle:package:14271/1" type="box" library_version="1"> +<description>MOUNTING HOLE 2.8 mm with drill center</description> +<packageinstances> +<packageinstance name="2,8"/> +</packageinstances> +</package3d> +<package3d name="3,0" urn="urn:adsk.eagle:package:14277/1" type="box" library_version="1"> +<description>MOUNTING HOLE 3.0 mm with drill center</description> +<packageinstances> +<packageinstance name="3,0"/> +</packageinstances> +</package3d> +<package3d name="3,3" urn="urn:adsk.eagle:package:14278/1" type="box" library_version="1"> +<description>MOUNTING HOLE 3.3 mm with drill center</description> +<packageinstances> +<packageinstance name="3,3"/> +</packageinstances> +</package3d> +<package3d name="3,6" urn="urn:adsk.eagle:package:14272/1" type="box" library_version="1"> +<description>MOUNTING HOLE 3.6 mm with drill center</description> +<packageinstances> +<packageinstance name="3,6"/> +</packageinstances> +</package3d> +<package3d name="4,1" urn="urn:adsk.eagle:package:14273/1" type="box" library_version="1"> +<description>MOUNTING HOLE 4.1 mm with drill center</description> +<packageinstances> +<packageinstance name="4,1"/> +</packageinstances> +</package3d> +<package3d name="4,5" urn="urn:adsk.eagle:package:14274/1" type="box" library_version="1"> +<description>MOUNTING HOLE 4.5 mm with drill center</description> +<packageinstances> +<packageinstance name="4,5"/> +</packageinstances> +</package3d> +<package3d name="5,0" urn="urn:adsk.eagle:package:14276/1" type="box" library_version="1"> +<description>MOUNTING HOLE 5.0 mm with drill center</description> +<packageinstances> +<packageinstance name="5,0"/> +</packageinstances> +</package3d> +<package3d name="3,2" urn="urn:adsk.eagle:package:14275/1" type="box" library_version="1"> +<description>MOUNTING HOLE 3.2 mm with drill center</description> +<packageinstances> +<packageinstance name="3,2"/> +</packageinstances> +</package3d> +<package3d name="4,3" urn="urn:adsk.eagle:package:14289/1" type="box" library_version="1"> +<description>MOUNTING HOLE 4.3 mm with drill center</description> +<packageinstances> +<packageinstance name="4,3"/> +</packageinstances> +</package3d> +<package3d name="5,5" urn="urn:adsk.eagle:package:14279/1" type="box" library_version="1"> +<description>MOUNTING HOLE 5.5 mm with drill center</description> +<packageinstances> +<packageinstance name="5,5"/> +</packageinstances> +</package3d> +</packages3d> +<symbols> +<symbol name="MOUNT-HOLE" urn="urn:adsk.eagle:symbol:14238/1" library_version="1"> +<wire x1="0" y1="1.27" x2="1.27" y2="0" width="1.524" layer="94" curve="-90" cap="flat"/> +<wire x1="-1.27" y1="0" x2="0" y2="-1.27" width="1.524" layer="94" curve="90" cap="flat"/> +<wire x1="-0.508" y1="0" x2="0.508" y2="0" width="0.0508" layer="94"/> +<wire x1="0" y1="0.508" x2="0" y2="-0.508" width="0.0508" layer="94"/> +<circle x="0" y="0" radius="2.032" width="0.0508" layer="94"/> +<circle x="0" y="0" radius="0.508" width="0.0508" layer="94"/> +<text x="2.032" y="0.5842" size="1.778" layer="95">>NAME</text> +<text x="2.032" y="-2.4638" size="1.778" layer="96">>VALUE</text> +</symbol> +</symbols> +<devicesets> +<deviceset name="MOUNT-HOLE" urn="urn:adsk.eagle:component:14301/1" prefix="H" library_version="1"> +<description><b>MOUNTING HOLE</b> with drill center marker</description> +<gates> +<gate name="G$1" symbol="MOUNT-HOLE" x="0" y="0"/> +</gates> +<devices> +<device name="2.8" package="2,8"> +<package3dinstances> +<package3dinstance package3d_urn="urn:adsk.eagle:package:14271/1"/> +</package3dinstances> +<technologies> +<technology name=""/> +</technologies> +</device> +<device name="3.0" package="3,0"> +<package3dinstances> +<package3dinstance package3d_urn="urn:adsk.eagle:package:14277/1"/> +</package3dinstances> +<technologies> +<technology name=""/> +</technologies> +</device> +<device name="3.3" package="3,3"> +<package3dinstances> +<package3dinstance package3d_urn="urn:adsk.eagle:package:14278/1"/> +</package3dinstances> +<technologies> +<technology name=""/> +</technologies> +</device> +<device name="3.6" package="3,6"> +<package3dinstances> +<package3dinstance package3d_urn="urn:adsk.eagle:package:14272/1"/> +</package3dinstances> +<technologies> +<technology name=""/> +</technologies> +</device> +<device name="4.1" package="4,1"> +<package3dinstances> +<package3dinstance package3d_urn="urn:adsk.eagle:package:14273/1"/> +</package3dinstances> +<technologies> +<technology name=""/> +</technologies> +</device> +<device name="4.5" package="4,5"> +<package3dinstances> +<package3dinstance package3d_urn="urn:adsk.eagle:package:14274/1"/> +</package3dinstances> +<technologies> +<technology name=""/> +</technologies> +</device> +<device name="5.0" package="5,0"> +<package3dinstances> +<package3dinstance package3d_urn="urn:adsk.eagle:package:14276/1"/> +</package3dinstances> +<technologies> +<technology name=""/> +</technologies> +</device> +<device name="3.2" package="3,2"> +<package3dinstances> +<package3dinstance package3d_urn="urn:adsk.eagle:package:14275/1"/> +</package3dinstances> +<technologies> +<technology name=""/> +</technologies> +</device> +<device name="4.3" package="4,3"> +<package3dinstances> +<package3dinstance package3d_urn="urn:adsk.eagle:package:14289/1"/> +</package3dinstances> +<technologies> +<technology name=""/> +</technologies> +</device> +<device name="5.5" package="5,5"> +<package3dinstances> +<package3dinstance package3d_urn="urn:adsk.eagle:package:14279/1"/> +</package3dinstances> +<technologies> +<technology name=""/> +</technologies> +</device> +</devices> +</deviceset> +</devicesets> +</library> +</libraries> +<attributes> +</attributes> +<variantdefs> +</variantdefs> +<classes> +<class number="0" name="default" width="0" drill="0"> +</class> +</classes> +<parts> +<part name="X1" library="fab" deviceset="MICRO-USB" device="_1/64"/> +<part name="SUPPLY1" library="supply2" library_urn="urn:adsk.eagle:library:372" deviceset="GND" device=""/> +<part name="P+1" library="supply1" library_urn="urn:adsk.eagle:library:371" deviceset="+5V" device=""/> +<part name="SUPPLY2" library="supply2" library_urn="urn:adsk.eagle:library:372" deviceset="GND" device=""/> +<part name="C1" library="fab" deviceset="CAP-UNPOLARIZED" device="" value=".1uF"/> +<part name="C2" library="fab" deviceset="CAP-UNPOLARIZED" device="" value="10uF"/> +<part name="U$2" library="fab" deviceset="CRYSTAL" device="" value="CRYSTAL 16MHz"/> +<part name="C3" library="fab" deviceset="CAP-UNPOLARIZED" device="" value="16pF"/> +<part name="C4" library="fab" deviceset="CAP-UNPOLARIZED" device="" value="16pF"/> +<part name="SUPPLY3" library="supply2" library_urn="urn:adsk.eagle:library:372" deviceset="GND" device=""/> +<part name="SUPPLY4" library="supply2" library_urn="urn:adsk.eagle:library:372" deviceset="GND" device=""/> +<part name="U$3" library="fab" deviceset="AVRISP" device="SMD"/> +<part name="SUPPLY5" library="supply2" library_urn="urn:adsk.eagle:library:372" deviceset="GND" device=""/> +<part name="S1" library="fab" deviceset="6MM_SWITCH" device="6MM_SWITCH"/> +<part name="SUPPLY6" library="supply2" library_urn="urn:adsk.eagle:library:372" deviceset="GND" device=""/> +<part name="IC1" library="fab" deviceset="OPAMP" device="SOT23-5"/> +<part name="SUPPLY7" library="supply2" library_urn="urn:adsk.eagle:library:372" deviceset="GND" device=""/> +<part name="IC2" library="fab" deviceset="OPAMP" device="SOT23-5"/> +<part name="R8" library="fab" deviceset="RES-US" device="1206" value="50k"/> +<part name="R9" library="fab" deviceset="RES-US" device="1206" value="50k"/> +<part name="C7" library="fab" deviceset="CAP-UNPOLARIZED" device="" value=".1uF"/> +<part name="SUPPLY8" library="supply2" library_urn="urn:adsk.eagle:library:372" deviceset="GND" device=""/> +<part name="U$7" library="fab" deviceset="ATXMEGA_A4U" device="TQFP-44-1-64"/> +<part name="+3V1" library="supply1" library_urn="urn:adsk.eagle:library:371" deviceset="+3V3" device=""/> +<part name="+3V2" library="supply1" library_urn="urn:adsk.eagle:library:371" deviceset="+3V3" device=""/> +<part name="+3V3" library="supply1" library_urn="urn:adsk.eagle:library:371" deviceset="+3V3" device=""/> +<part name="+3V4" library="supply1" library_urn="urn:adsk.eagle:library:371" deviceset="+3V3" device=""/> +<part name="+3V5" library="supply1" library_urn="urn:adsk.eagle:library:371" deviceset="+3V3" device=""/> +<part name="IC3" library="fab" deviceset="REGULATOR" device="SOT23"/> +<part name="+3V6" library="supply1" library_urn="urn:adsk.eagle:library:371" deviceset="+3V3" device=""/> +<part name="+3V7" library="supply1" library_urn="urn:adsk.eagle:library:371" deviceset="+3V3" device=""/> +<part name="P+2" library="supply1" library_urn="urn:adsk.eagle:library:371" deviceset="+5V" device=""/> +<part name="C8" library="fab" deviceset="CAP-UNPOLARIZED" device="" value="10uF"/> +<part name="+3V8" library="supply1" library_urn="urn:adsk.eagle:library:371" deviceset="+3V3" device=""/> +<part name="R12" library="fab" deviceset="RES-US" device="1206FAB" value="22"/> +<part name="R13" library="fab" deviceset="RES-US" device="1206FAB" value="22"/> +<part name="R1" library="fab" deviceset="RES-US" device="1206FAB" value="250"/> +<part name="R2" library="fab" deviceset="RES-US" device="1206FAB" value="250"/> +<part name="R6" library="fab" deviceset="RES-US" device="1206FAB" value="10k"/> +<part name="R10" library="fab" deviceset="RES-US" device="1206FAB" value="10k"/> +<part name="+3V9" library="supply1" library_urn="urn:adsk.eagle:library:371" deviceset="+3V3" device=""/> +<part name="U$6" library="fab" deviceset="LED" device="FAB1206"/> +<part name="U$1" library="fab" deviceset="LED" device="FAB1206"/> +<part name="J2" library="SparkFun-Connectors" library_urn="urn:adsk.eagle:library:513" deviceset="CONN_08" device=""" package3d_urn="urn:adsk.eagle:package:38138/1"/> +<part name="J3" library="SparkFun-Connectors" library_urn="urn:adsk.eagle:library:513" deviceset="CONN_02" device="1X02_NO_SILK" package3d_urn="urn:adsk.eagle:package:38051/1"/> +<part name="U$5" library="fab" deviceset="LED" device="FAB1206"/> +<part name="J4" library="SparkFun-Connectors" library_urn="urn:adsk.eagle:library:513" deviceset="CONN_02" device="1X02_NO_SILK" package3d_urn="urn:adsk.eagle:package:38051/1"/> +<part name="R14" library="fab" deviceset="RES-US" device="1206FAB" value="0"/> +<part name="C10" library="fab" deviceset="CAP-UNPOLARIZED" device="" value=".1uF"/> +<part name="R11" library="fab" deviceset="RES-US" device="1206FAB" value="250"/> +<part name="C12" library="fab" deviceset="CAP-UNPOLARIZED" device="" value=".1uF"/> +<part name="C6" library="fab" deviceset="CAP-UNPOLARIZED" device="" value=".1uF"/> +<part name="R4" library="fab" deviceset="RES-US" device="1206FAB" value="2.5k"/> +<part name="SUPPLY9" library="supply2" library_urn="urn:adsk.eagle:library:372" deviceset="GND" device=""/> +<part name="SUPPLY10" library="supply2" library_urn="urn:adsk.eagle:library:372" deviceset="GND" device=""/> +<part name="J6" library="SparkFun-Connectors" library_urn="urn:adsk.eagle:library:513" deviceset="CONN_04" device="1X04_NO_SILK" package3d_urn="urn:adsk.eagle:package:38094/1"/> +<part name="SUPPLY12" library="supply2" library_urn="urn:adsk.eagle:library:372" deviceset="GND" device=""/> +<part name="R5" library="fab" deviceset="RES-US" device="1206FAB" value="20k"/> +<part name="C13" library="fab" deviceset="CAP-UNPOLARIZED" device="FAB" value="2pF"/> +<part name="C14" library="fab" deviceset="CAP-UNPOLARIZED" device="FAB" value="10uF"/> +<part name="H1" library="holes" library_urn="urn:adsk.eagle:library:237" deviceset="MOUNT-HOLE" device="3.0" package3d_urn="urn:adsk.eagle:package:14277/1"/> +<part name="H2" library="holes" library_urn="urn:adsk.eagle:library:237" deviceset="MOUNT-HOLE" device="3.0" package3d_urn="urn:adsk.eagle:package:14277/1"/> +<part name="H3" library="holes" library_urn="urn:adsk.eagle:library:237" deviceset="MOUNT-HOLE" device="3.0" package3d_urn="urn:adsk.eagle:package:14277/1"/> +<part name="+3V10" library="supply1" library_urn="urn:adsk.eagle:library:371" deviceset="+3V3" device=""/> +<part name="R3" library="fab" deviceset="RES-US" device="1206FAB" value="250"/> +<part name="U$4" library="fab" deviceset="LED" device="FAB1206"/> +<part name="H4" library="holes" library_urn="urn:adsk.eagle:library:237" deviceset="MOUNT-HOLE" device="3.0" package3d_urn="urn:adsk.eagle:package:14277/1"/> +<part name="C9" library="fab" deviceset="CAP-UNPOLARIZED" device="FAB" value="10uF"/> +<part name="C5" library="fab" deviceset="CAP-UNPOLARIZED" device="FAB" value="10uF"/> +</parts> +<sheets> +<sheet> +<plain> +</plain> +<instances> +<instance part="X1" gate="G$1" x="129.54" y="5.08"/> +<instance part="SUPPLY1" gate="GND" x="127" y="15.24" rot="R180"/> +<instance part="P+1" gate="1" x="129.54" y="25.4"/> +<instance part="SUPPLY2" gate="GND" x="147.32" y="99.06"/> +<instance part="C1" gate=">NAME" x="147.32" y="106.68" rot="R90"/> +<instance part="C2" gate=">NAME" x="167.64" y="106.68" rot="R90"/> +<instance part="U$2" gate="G$1" x="50.8" y="27.94" rot="R90"/> +<instance part="C3" gate=">NAME" x="50.8" y="22.86" rot="R90"/> +<instance part="C4" gate=">NAME" x="40.64" y="22.86" rot="R90"/> +<instance part="SUPPLY3" gate="GND" x="50.8" y="15.24"/> +<instance part="SUPPLY4" gate="GND" x="58.42" y="48.26"/> +<instance part="U$3" gate="G$1" x="33.02" y="68.58"/> +<instance part="SUPPLY5" gate="GND" x="48.26" y="58.42"/> +<instance part="S1" gate="2" x="12.7" y="83.82"/> +<instance part="SUPPLY6" gate="GND" x="12.7" y="76.2"/> +<instance part="IC1" gate="G$1" x="187.96" y="68.58"/> +<instance part="SUPPLY7" gate="GND" x="185.42" y="58.42"/> +<instance part="IC2" gate="G$1" x="185.42" y="30.48"/> +<instance part="R8" gate="G$1" x="170.18" y="33.02" rot="R90"/> +<instance part="R9" gate="G$1" x="170.18" y="22.86" rot="R90"/> +<instance part="C7" gate=">NAME" x="162.56" y="22.86" rot="R90"/> +<instance part="SUPPLY8" gate="GND" x="182.88" y="15.24"/> +<instance part="U$7" gate="G$1" x="86.36" y="50.8"/> +<instance part="+3V1" gate="G$1" x="58.42" y="78.74"/> +<instance part="+3V2" gate="G$1" x="147.32" y="114.3"/> +<instance part="+3V3" gate="G$1" x="182.88" y="40.64"/> +<instance part="+3V4" gate="G$1" x="185.42" y="78.74"/> +<instance part="+3V5" gate="G$1" x="170.18" y="40.64"/> +<instance part="IC3" gate="G$1" x="132.08" y="106.68"/> +<instance part="+3V6" gate="G$1" x="144.78" y="50.8" rot="R270"/> +<instance part="+3V7" gate="G$1" x="144.78" y="60.96" rot="R270"/> +<instance part="P+2" gate="1" x="116.84" y="116.84"/> +<instance part="C8" gate=">NAME" x="116.84" y="106.68" rot="R90"/> +<instance part="+3V8" gate="G$1" x="48.26" y="78.74"/> +<instance part="R12" gate="G$1" x="119.38" y="30.48"/> +<instance part="R13" gate="G$1" x="119.38" y="27.94"/> +<instance part="R1" gate="G$1" x="124.46" y="60.96"/> +<instance part="R2" gate="G$1" x="124.46" y="50.8"/> +<instance part="R6" gate="G$1" x="187.96" y="86.36"/> +<instance part="R10" gate="G$1" x="20.32" y="93.98" rot="R90"/> +<instance part="+3V9" gate="G$1" x="20.32" y="101.6"/> +<instance part="U$6" gate="G$1" x="134.62" y="60.96" rot="R270"/> +<instance part="U$1" gate="G$1" x="134.62" y="50.8" rot="R270"/> +<instance part="J2" gate="G$1" x="236.22" y="83.82"/> +<instance part="J3" gate="G$1" x="233.68" y="60.96"/> +<instance part="U$5" gate="G$1" x="223.52" y="104.14"/> +<instance part="J4" gate="G$1" x="233.68" y="30.48"/> +<instance part="R14" gate="G$1" x="200.66" y="76.2"/> +<instance part="C10" gate=">NAME" x="195.58" y="106.68" rot="R90"/> +<instance part="R11" gate="G$1" x="215.9" y="109.22"/> +<instance part="C12" gate=">NAME" x="177.8" y="106.68" rot="R90"/> +<instance part="C6" gate=">NAME" x="185.42" y="106.68" rot="R90"/> +<instance part="R4" gate="G$1" x="172.72" y="86.36"/> +<instance part="SUPPLY9" gate="GND" x="160.02" y="78.74"/> +<instance part="SUPPLY10" gate="GND" x="246.38" y="33.02" rot="R90"/> +<instance part="J6" gate="G$1" x="236.22" y="45.72"/> +<instance part="SUPPLY12" gate="GND" x="248.92" y="50.8" rot="R90"/> +<instance part="R5" gate="G$1" x="177.8" y="60.96" rot="R90"/> +<instance part="C13" gate=">NAME" x="165.1" y="86.36"/> +<instance part="C14" gate=">NAME" x="172.72" y="66.04"/> +<instance part="H1" gate="G$1" x="147.32" y="5.08"/> +<instance part="H2" gate="G$1" x="172.72" y="5.08"/> +<instance part="H3" gate="G$1" x="198.12" y="5.08"/> +<instance part="+3V10" gate="G$1" x="144.78" y="40.64" rot="R270"/> +<instance part="R3" gate="G$1" x="124.46" y="40.64"/> +<instance part="U$4" gate="G$1" x="134.62" y="40.64" rot="R270"/> +<instance part="H4" gate="G$1" x="226.06" y="5.08"/> +<instance part="C9" gate=">NAME" x="205.74" y="106.68" rot="R90"/> +<instance part="C5" gate=">NAME" x="157.48" y="106.68" rot="R90"/> +</instances> +<busses> +</busses> +<nets> +<net name="GND" class="0"> +<segment> +<pinref part="SUPPLY1" gate="GND" pin="GND"/> +<pinref part="X1" gate="G$1" pin="GND"/> +<wire x1="127" y1="12.7" x2="127" y2="10.16" width="0.1524" layer="91"/> +</segment> +<segment> +<pinref part="C1" gate=">NAME" pin="1"/> +<pinref part="SUPPLY2" gate="GND" pin="GND"/> +<wire x1="147.32" y1="101.6" x2="157.48" y2="101.6" width="0.1524" layer="91"/> +<junction x="147.32" y="101.6"/> +<pinref part="C2" gate=">NAME" pin="1"/> +<wire x1="157.48" y1="101.6" x2="167.64" y2="101.6" width="0.1524" layer="91"/> +<wire x1="223.52" y1="101.6" x2="205.74" y2="101.6" width="0.1524" layer="91"/> +<junction x="167.64" y="101.6"/> +<pinref part="IC3" gate="G$1" pin="GND"/> +<pinref part="C8" gate=">NAME" pin="1"/> +<wire x1="205.74" y1="101.6" x2="195.58" y2="101.6" width="0.1524" layer="91"/> +<wire x1="195.58" y1="101.6" x2="185.42" y2="101.6" width="0.1524" layer="91"/> +<wire x1="185.42" y1="101.6" x2="177.8" y2="101.6" width="0.1524" layer="91"/> +<wire x1="177.8" y1="101.6" x2="167.64" y2="101.6" width="0.1524" layer="91"/> +<wire x1="132.08" y1="101.6" x2="132.08" y2="104.14" width="0.1524" layer="91"/> +<wire x1="116.84" y1="101.6" x2="132.08" y2="101.6" width="0.1524" layer="91"/> +<wire x1="132.08" y1="101.6" x2="147.32" y2="101.6" width="0.1524" layer="91"/> +<junction x="132.08" y="101.6"/> +<pinref part="U$5" gate="G$1" pin="C"/> +<pinref part="C12" gate=">NAME" pin="1"/> +<junction x="177.8" y="101.6"/> +<pinref part="C6" gate=">NAME" pin="1"/> +<junction x="185.42" y="101.6"/> +<pinref part="C10" gate=">NAME" pin="1"/> +<junction x="195.58" y="101.6"/> +<pinref part="C9" gate=">NAME" pin="1"/> +<junction x="205.74" y="101.6"/> +<pinref part="C5" gate=">NAME" pin="1"/> +<junction x="157.48" y="101.6"/> +</segment> +<segment> +<pinref part="C4" gate=">NAME" pin="1"/> +<pinref part="C3" gate=">NAME" pin="1"/> +<wire x1="40.64" y1="17.78" x2="50.8" y2="17.78" width="0.1524" layer="91"/> +<pinref part="SUPPLY3" gate="GND" pin="GND"/> +<junction x="50.8" y="17.78"/> +</segment> +<segment> +<pinref part="U$3" gate="G$1" pin="GND"/> +<wire x1="38.1" y1="66.04" x2="48.26" y2="66.04" width="0.1524" layer="91"/> +<pinref part="SUPPLY5" gate="GND" pin="GND"/> +<wire x1="48.26" y1="66.04" x2="48.26" y2="60.96" width="0.1524" layer="91"/> +</segment> +<segment> +<pinref part="SUPPLY6" gate="GND" pin="GND"/> +<pinref part="S1" gate="2" pin="P"/> +<pinref part="S1" gate="2" pin="P1"/> +<wire x1="15.24" y1="78.74" x2="12.7" y2="78.74" width="0.1524" layer="91"/> +<junction x="12.7" y="78.74"/> +</segment> +<segment> +<pinref part="SUPPLY7" gate="GND" pin="GND"/> +<pinref part="IC1" gate="G$1" pin="V-"/> +</segment> +<segment> +<pinref part="C7" gate=">NAME" pin="1"/> +<pinref part="R9" gate="G$1" pin="1"/> +<wire x1="162.56" y1="17.78" x2="170.18" y2="17.78" width="0.1524" layer="91"/> +<junction x="170.18" y="17.78"/> +<pinref part="IC2" gate="G$1" pin="V-"/> +<wire x1="182.88" y1="22.86" x2="182.88" y2="17.78" width="0.1524" layer="91"/> +<wire x1="182.88" y1="17.78" x2="170.18" y2="17.78" width="0.1524" layer="91"/> +<pinref part="SUPPLY8" gate="GND" pin="GND"/> +<junction x="182.88" y="17.78"/> +</segment> +<segment> +<pinref part="U$7" gate="G$1" pin="GND"/> +<pinref part="SUPPLY4" gate="GND" pin="GND"/> +<wire x1="60.96" y1="50.8" x2="58.42" y2="50.8" width="0.1524" layer="91"/> +<pinref part="U$7" gate="G$1" pin="GND3"/> +<wire x1="60.96" y1="58.42" x2="58.42" y2="58.42" width="0.1524" layer="91"/> +<wire x1="58.42" y1="58.42" x2="58.42" y2="55.88" width="0.1524" layer="91"/> +<junction x="58.42" y="50.8"/> +<pinref part="U$7" gate="G$1" pin="GND2"/> +<wire x1="58.42" y1="55.88" x2="58.42" y2="53.34" width="0.1524" layer="91"/> +<wire x1="58.42" y1="53.34" x2="58.42" y2="50.8" width="0.1524" layer="91"/> +<wire x1="60.96" y1="55.88" x2="58.42" y2="55.88" width="0.1524" layer="91"/> +<junction x="58.42" y="55.88"/> +<pinref part="U$7" gate="G$1" pin="GND1"/> +<wire x1="60.96" y1="53.34" x2="58.42" y2="53.34" width="0.1524" layer="91"/> +<junction x="58.42" y="53.34"/> +</segment> +<segment> +<pinref part="J4" gate="G$1" pin="2"/> +<wire x1="243.84" y1="33.02" x2="241.3" y2="33.02" width="0.1524" layer="91"/> +<pinref part="SUPPLY10" gate="GND" pin="GND"/> +</segment> +<segment> +<pinref part="SUPPLY12" gate="GND" pin="GND"/> +<pinref part="J6" gate="G$1" pin="4"/> +<wire x1="246.38" y1="50.8" x2="241.3" y2="50.8" width="0.1524" layer="91"/> +</segment> +<segment> +<pinref part="SUPPLY9" gate="GND" pin="GND"/> +<pinref part="C13" gate=">NAME" pin="1"/> +<wire x1="160.02" y1="81.28" x2="160.02" y2="86.36" width="0.1524" layer="91"/> +</segment> +</net> +<net name="+5V" class="0"> +<segment> +<pinref part="X1" gate="G$1" pin="VBUS"/> +<pinref part="P+1" gate="1" pin="+5V"/> +<wire x1="129.54" y1="10.16" x2="129.54" y2="22.86" width="0.1524" layer="91"/> +</segment> +<segment> +<pinref part="IC3" gate="G$1" pin="IN"/> +<pinref part="C8" gate=">NAME" pin="2"/> +<wire x1="124.46" y1="109.22" x2="116.84" y2="109.22" width="0.1524" layer="91"/> +<pinref part="P+2" gate="1" pin="+5V"/> +<wire x1="116.84" y1="114.3" x2="116.84" y2="109.22" width="0.1524" layer="91"/> +<junction x="116.84" y="109.22"/> +</segment> +</net> +<net name="N$1" class="0"> +<segment> +<pinref part="U$2" gate="G$1" pin="2"/> +<wire x1="50.8" y1="30.48" x2="40.64" y2="30.48" width="0.1524" layer="91"/> +<pinref part="C4" gate=">NAME" pin="2"/> +<wire x1="40.64" y1="30.48" x2="40.64" y2="25.4" width="0.1524" layer="91"/> +<pinref part="U$7" gate="G$1" pin="PR1(XT1)"/> +<wire x1="60.96" y1="30.48" x2="50.8" y2="30.48" width="0.1524" layer="91"/> +<junction x="50.8" y="30.48"/> +</segment> +</net> +<net name="N$2" class="0"> +<segment> +<pinref part="U$2" gate="G$1" pin="1"/> +<pinref part="C3" gate=">NAME" pin="2"/> +<pinref part="U$7" gate="G$1" pin="PR0(XT2)"/> +<wire x1="60.96" y1="25.4" x2="50.8" y2="25.4" width="0.1524" layer="91"/> +<junction x="50.8" y="25.4"/> +</segment> +</net> +<net name="D+" class="0"> +<segment> +<pinref part="X1" gate="G$1" pin="D+"/> +<wire x1="124.46" y1="30.48" x2="134.62" y2="30.48" width="0.1524" layer="91"/> +<wire x1="134.62" y1="30.48" x2="134.62" y2="10.16" width="0.1524" layer="91"/> +<pinref part="R12" gate="G$1" pin="2"/> +<label x="134.62" y="30.48" size="1.778" layer="95"/> +</segment> +<segment> +<pinref part="J3" gate="G$1" pin="2"/> +<wire x1="241.3" y1="63.5" x2="243.84" y2="63.5" width="0.1524" layer="91"/> +<label x="243.84" y="63.5" size="1.778" layer="95"/> +</segment> +</net> +<net name="D-" class="0"> +<segment> +<pinref part="X1" gate="G$1" pin="D-"/> +<wire x1="132.08" y1="10.16" x2="132.08" y2="27.94" width="0.1524" layer="91"/> +<wire x1="132.08" y1="27.94" x2="124.46" y2="27.94" width="0.1524" layer="91"/> +<pinref part="R13" gate="G$1" pin="2"/> +<label x="132.08" y="27.94" size="1.778" layer="95"/> +</segment> +<segment> +<pinref part="J3" gate="G$1" pin="1"/> +<wire x1="241.3" y1="60.96" x2="243.84" y2="60.96" width="0.1524" layer="91"/> +<label x="243.84" y="60.96" size="1.778" layer="95"/> +</segment> +</net> +<net name="N$5" class="0"> +<segment> +<pinref part="U$3" gate="G$1" pin="MISO"/> +<wire x1="30.48" y1="71.12" x2="22.86" y2="71.12" width="0.1524" layer="91"/> +<wire x1="22.86" y1="71.12" x2="22.86" y2="83.82" width="0.1524" layer="91"/> +<wire x1="22.86" y1="83.82" x2="60.96" y2="83.82" width="0.1524" layer="91"/> +<pinref part="U$7" gate="G$1" pin="PDI_DATA"/> +</segment> +</net> +<net name="N$7" class="0"> +<segment> +<pinref part="S1" gate="2" pin="S1"/> +<pinref part="S1" gate="2" pin="S"/> +<wire x1="15.24" y1="88.9" x2="12.7" y2="88.9" width="0.1524" layer="91"/> +<pinref part="U$3" gate="G$1" pin="RST"/> +<wire x1="30.48" y1="66.04" x2="20.32" y2="66.04" width="0.1524" layer="91"/> +<wire x1="20.32" y1="66.04" x2="20.32" y2="88.9" width="0.1524" layer="91"/> +<wire x1="20.32" y1="88.9" x2="60.96" y2="88.9" width="0.1524" layer="91"/> +<wire x1="15.24" y1="88.9" x2="20.32" y2="88.9" width="0.1524" layer="91"/> +<junction x="15.24" y="88.9"/> +<junction x="20.32" y="88.9"/> +<pinref part="U$7" gate="G$1" pin="!RESET!/PDI_CLK"/> +<pinref part="R10" gate="G$1" pin="1"/> +</segment> +</net> +<net name="N$6" class="0"> +<segment> +<wire x1="220.98" y1="109.22" x2="223.52" y2="109.22" width="0.1524" layer="91"/> +<pinref part="U$5" gate="G$1" pin="A"/> +<pinref part="R11" gate="G$1" pin="2"/> +</segment> +</net> +<net name="AUDIO" class="0"> +<segment> +<pinref part="U$7" gate="G$1" pin="PA7"/> +<wire x1="114.3" y1="88.9" x2="119.38" y2="88.9" width="0.1524" layer="91"/> +<label x="119.38" y="88.9" size="1.778" layer="95"/> +</segment> +<segment> +<pinref part="J2" gate="G$1" pin="8"/> +<wire x1="241.3" y1="93.98" x2="243.84" y2="93.98" width="0.1524" layer="91"/> +<label x="243.84" y="93.98" size="1.778" layer="95"/> +</segment> +<segment> +<wire x1="205.74" y1="76.2" x2="210.82" y2="76.2" width="0.1524" layer="91"/> +<pinref part="R14" gate="G$1" pin="2"/> +<label x="210.82" y="76.2" size="1.778" layer="95"/> +</segment> +<segment> +<wire x1="193.04" y1="86.36" x2="195.58" y2="86.36" width="0.1524" layer="91"/> +<pinref part="IC1" gate="G$1" pin="OUT"/> +<wire x1="195.58" y1="86.36" x2="195.58" y2="76.2" width="0.1524" layer="91"/> +<pinref part="R6" gate="G$1" pin="2"/> +<pinref part="R14" gate="G$1" pin="1"/> +<wire x1="195.58" y1="76.2" x2="195.58" y2="68.58" width="0.1524" layer="91"/> +<junction x="195.58" y="76.2"/> +<label x="198.12" y="86.36" size="1.778" layer="95"/> +</segment> +<segment> +<pinref part="J6" gate="G$1" pin="1"/> +<wire x1="241.3" y1="43.18" x2="243.84" y2="43.18" width="0.1524" layer="91"/> +<label x="243.84" y="43.18" size="1.778" layer="95"/> +</segment> +</net> +<net name="V_BIAS" class="0"> +<segment> +<pinref part="IC2" gate="G$1" pin="-IN"/> +<wire x1="177.8" y1="33.02" x2="177.8" y2="45.72" width="0.1524" layer="91"/> +<wire x1="177.8" y1="45.72" x2="193.04" y2="45.72" width="0.1524" layer="91"/> +<pinref part="IC2" gate="G$1" pin="OUT"/> +<wire x1="193.04" y1="45.72" x2="193.04" y2="30.48" width="0.1524" layer="91"/> +<wire x1="193.04" y1="30.48" x2="198.12" y2="30.48" width="0.1524" layer="91"/> +<junction x="193.04" y="30.48"/> +<label x="200.66" y="30.48" size="1.778" layer="95"/> +</segment> +<segment> +<wire x1="177.8" y1="55.88" x2="177.8" y2="53.34" width="0.1524" layer="91"/> +<label x="177.8" y="50.8" size="1.778" layer="95"/> +<pinref part="R5" gate="G$1" pin="1"/> +</segment> +</net> +<net name="N$12" class="0"> +<segment> +<pinref part="IC2" gate="G$1" pin="+IN"/> +<wire x1="177.8" y1="27.94" x2="170.18" y2="27.94" width="0.1524" layer="91"/> +<pinref part="R8" gate="G$1" pin="1"/> +<pinref part="R9" gate="G$1" pin="2"/> +<junction x="170.18" y="27.94"/> +<pinref part="C7" gate=">NAME" pin="2"/> +<wire x1="162.56" y1="25.4" x2="162.56" y2="27.94" width="0.1524" layer="91"/> +<wire x1="162.56" y1="27.94" x2="170.18" y2="27.94" width="0.1524" layer="91"/> +</segment> +</net> +<net name="+3V3" class="0"> +<segment> +<pinref part="U$7" gate="G$1" pin="VCC"/> +<wire x1="60.96" y1="63.5" x2="58.42" y2="63.5" width="0.1524" layer="91"/> +<wire x1="58.42" y1="63.5" x2="58.42" y2="66.04" width="0.1524" layer="91"/> +<pinref part="U$7" gate="G$1" pin="AVCC"/> +<wire x1="58.42" y1="66.04" x2="58.42" y2="68.58" width="0.1524" layer="91"/> +<wire x1="58.42" y1="68.58" x2="58.42" y2="73.66" width="0.1524" layer="91"/> +<wire x1="58.42" y1="73.66" x2="58.42" y2="76.2" width="0.1524" layer="91"/> +<wire x1="60.96" y1="73.66" x2="58.42" y2="73.66" width="0.1524" layer="91"/> +<junction x="58.42" y="73.66"/> +<pinref part="+3V1" gate="G$1" pin="+3V3"/> +<pinref part="U$7" gate="G$1" pin="VCC1"/> +<wire x1="60.96" y1="66.04" x2="58.42" y2="66.04" width="0.1524" layer="91"/> +<junction x="58.42" y="66.04"/> +<pinref part="U$7" gate="G$1" pin="VCC2"/> +<wire x1="60.96" y1="68.58" x2="58.42" y2="68.58" width="0.1524" layer="91"/> +<junction x="58.42" y="68.58"/> +</segment> +<segment> +<wire x1="147.32" y1="111.76" x2="147.32" y2="109.22" width="0.1524" layer="91"/> +<wire x1="147.32" y1="109.22" x2="157.48" y2="109.22" width="0.1524" layer="91"/> +<pinref part="C1" gate=">NAME" pin="2"/> +<junction x="147.32" y="109.22"/> +<pinref part="C2" gate=">NAME" pin="2"/> +<wire x1="157.48" y1="109.22" x2="167.64" y2="109.22" width="0.1524" layer="91"/> +<wire x1="167.64" y1="109.22" x2="177.8" y2="109.22" width="0.1524" layer="91"/> +<junction x="167.64" y="109.22"/> +<pinref part="+3V2" gate="G$1" pin="+3V3"/> +<pinref part="IC3" gate="G$1" pin="OUT"/> +<wire x1="177.8" y1="109.22" x2="185.42" y2="109.22" width="0.1524" layer="91"/> +<wire x1="185.42" y1="109.22" x2="195.58" y2="109.22" width="0.1524" layer="91"/> +<wire x1="195.58" y1="109.22" x2="205.74" y2="109.22" width="0.1524" layer="91"/> +<wire x1="205.74" y1="109.22" x2="210.82" y2="109.22" width="0.1524" layer="91"/> +<wire x1="147.32" y1="109.22" x2="139.7" y2="109.22" width="0.1524" layer="91"/> +<pinref part="R11" gate="G$1" pin="1"/> +<pinref part="C12" gate=">NAME" pin="2"/> +<junction x="177.8" y="109.22"/> +<pinref part="C6" gate=">NAME" pin="2"/> +<junction x="185.42" y="109.22"/> +<pinref part="C10" gate=">NAME" pin="2"/> +<junction x="195.58" y="109.22"/> +<pinref part="C9" gate=">NAME" pin="2"/> +<junction x="205.74" y="109.22"/> +<pinref part="C5" gate=">NAME" pin="2"/> +<junction x="157.48" y="109.22"/> +</segment> +<segment> +<pinref part="+3V3" gate="G$1" pin="+3V3"/> +<pinref part="IC2" gate="G$1" pin="V+"/> +</segment> +<segment> +<pinref part="+3V4" gate="G$1" pin="+3V3"/> +<pinref part="IC1" gate="G$1" pin="V+"/> +</segment> +<segment> +<pinref part="+3V5" gate="G$1" pin="+3V3"/> +<pinref part="R8" gate="G$1" pin="2"/> +</segment> +<segment> +<pinref part="U$3" gate="G$1" pin="VCC"/> +<wire x1="38.1" y1="71.12" x2="48.26" y2="71.12" width="0.1524" layer="91"/> +<wire x1="48.26" y1="71.12" x2="48.26" y2="76.2" width="0.1524" layer="91"/> +<pinref part="+3V8" gate="G$1" pin="+3V3"/> +</segment> +<segment> +<pinref part="+3V6" gate="G$1" pin="+3V3"/> +<wire x1="139.7" y1="50.8" x2="142.24" y2="50.8" width="0.1524" layer="91"/> +<pinref part="U$1" gate="G$1" pin="A"/> +</segment> +<segment> +<pinref part="+3V7" gate="G$1" pin="+3V3"/> +<wire x1="139.7" y1="60.96" x2="142.24" y2="60.96" width="0.1524" layer="91"/> +<pinref part="U$6" gate="G$1" pin="A"/> +</segment> +<segment> +<pinref part="+3V9" gate="G$1" pin="+3V3"/> +<pinref part="R10" gate="G$1" pin="2"/> +</segment> +<segment> +<pinref part="+3V10" gate="G$1" pin="+3V3"/> +<wire x1="139.7" y1="40.64" x2="142.24" y2="40.64" width="0.1524" layer="91"/> +<pinref part="U$4" gate="G$1" pin="A"/> +</segment> +</net> +<net name="N$17" class="0"> +<segment> +<wire x1="132.08" y1="50.8" x2="129.54" y2="50.8" width="0.1524" layer="91"/> +<pinref part="R2" gate="G$1" pin="2"/> +<pinref part="U$1" gate="G$1" pin="C"/> +</segment> +</net> +<net name="N$18" class="0"> +<segment> +<wire x1="132.08" y1="60.96" x2="129.54" y2="60.96" width="0.1524" layer="91"/> +<pinref part="R1" gate="G$1" pin="2"/> +<pinref part="U$6" gate="G$1" pin="C"/> +</segment> +</net> +<net name="N$15" class="0"> +<segment> +<pinref part="U$7" gate="G$1" pin="PD7/TXD1/SCK/DP"/> +<pinref part="R12" gate="G$1" pin="1"/> +</segment> +</net> +<net name="N$16" class="0"> +<segment> +<pinref part="U$7" gate="G$1" pin="PD6/RXD1/MISO/DM"/> +<pinref part="R13" gate="G$1" pin="1"/> +</segment> +</net> +<net name="N$13" class="0"> +<segment> +<pinref part="U$7" gate="G$1" pin="PC6/RXD1/MISO"/> +<wire x1="119.38" y1="50.8" x2="114.3" y2="50.8" width="0.1524" layer="91"/> +<pinref part="R2" gate="G$1" pin="1"/> +</segment> +</net> +<net name="IN+" class="0"> +<segment> +<pinref part="J4" gate="G$1" pin="1"/> +<wire x1="241.3" y1="30.48" x2="243.84" y2="30.48" width="0.1524" layer="91"/> +<label x="243.84" y="30.48" size="1.778" layer="95"/> +</segment> +<segment> +<wire x1="167.64" y1="66.04" x2="165.1" y2="66.04" width="0.1524" layer="91"/> +<label x="160.02" y="66.04" size="1.778" layer="95"/> +<pinref part="C14" gate=">NAME" pin="1"/> +</segment> +<segment> +<pinref part="J6" gate="G$1" pin="3"/> +<wire x1="241.3" y1="48.26" x2="243.84" y2="48.26" width="0.1524" layer="91"/> +<label x="243.84" y="48.26" size="1.778" layer="95"/> +</segment> +</net> +<net name="PA0" class="0"> +<segment> +<pinref part="J2" gate="G$1" pin="1"/> +<wire x1="241.3" y1="76.2" x2="243.84" y2="76.2" width="0.1524" layer="91"/> +<label x="243.84" y="76.2" size="1.778" layer="95"/> +</segment> +<segment> +<pinref part="U$7" gate="G$1" pin="PA0"/> +<wire x1="114.3" y1="71.12" x2="116.84" y2="71.12" width="0.1524" layer="91"/> +<label x="116.84" y="71.12" size="1.778" layer="95"/> +</segment> +</net> +<net name="PA1" class="0"> +<segment> +<pinref part="J2" gate="G$1" pin="2"/> +<wire x1="241.3" y1="78.74" x2="243.84" y2="78.74" width="0.1524" layer="91"/> +<label x="243.84" y="78.74" size="1.778" layer="95"/> +</segment> +<segment> +<pinref part="U$7" gate="G$1" pin="PA1"/> +<wire x1="114.3" y1="73.66" x2="116.84" y2="73.66" width="0.1524" layer="91"/> +<label x="116.84" y="73.66" size="1.778" layer="95"/> +</segment> +</net> +<net name="PA2" class="0"> +<segment> +<pinref part="J2" gate="G$1" pin="3"/> +<wire x1="241.3" y1="81.28" x2="243.84" y2="81.28" width="0.1524" layer="91"/> +<label x="243.84" y="81.28" size="1.778" layer="95"/> +</segment> +<segment> +<pinref part="U$7" gate="G$1" pin="PA2"/> +<wire x1="114.3" y1="76.2" x2="116.84" y2="76.2" width="0.1524" layer="91"/> +<label x="116.84" y="76.2" size="1.778" layer="95"/> +</segment> +</net> +<net name="PA3" class="0"> +<segment> +<pinref part="J2" gate="G$1" pin="4"/> +<wire x1="241.3" y1="83.82" x2="243.84" y2="83.82" width="0.1524" layer="91"/> +<label x="243.84" y="83.82" size="1.778" layer="95"/> +</segment> +<segment> +<pinref part="U$7" gate="G$1" pin="PA3"/> +<wire x1="114.3" y1="78.74" x2="116.84" y2="78.74" width="0.1524" layer="91"/> +<label x="116.84" y="78.74" size="1.778" layer="95"/> +</segment> +</net> +<net name="PA4" class="0"> +<segment> +<pinref part="J2" gate="G$1" pin="5"/> +<wire x1="241.3" y1="86.36" x2="243.84" y2="86.36" width="0.1524" layer="91"/> +<label x="243.84" y="86.36" size="1.778" layer="95"/> +</segment> +<segment> +<pinref part="U$7" gate="G$1" pin="PA4"/> +<wire x1="114.3" y1="81.28" x2="116.84" y2="81.28" width="0.1524" layer="91"/> +<label x="116.84" y="81.28" size="1.778" layer="95"/> +</segment> +</net> +<net name="PA5" class="0"> +<segment> +<pinref part="J2" gate="G$1" pin="6"/> +<wire x1="241.3" y1="88.9" x2="243.84" y2="88.9" width="0.1524" layer="91"/> +<label x="243.84" y="88.9" size="1.778" layer="95"/> +</segment> +<segment> +<pinref part="U$7" gate="G$1" pin="PA5"/> +<wire x1="114.3" y1="83.82" x2="116.84" y2="83.82" width="0.1524" layer="91"/> +<label x="116.84" y="83.82" size="1.778" layer="95"/> +</segment> +</net> +<net name="PA6" class="0"> +<segment> +<pinref part="J2" gate="G$1" pin="7"/> +<wire x1="241.3" y1="91.44" x2="243.84" y2="91.44" width="0.1524" layer="91"/> +<label x="243.84" y="91.44" size="1.778" layer="95"/> +</segment> +<segment> +<pinref part="U$7" gate="G$1" pin="PA6"/> +<wire x1="114.3" y1="86.36" x2="116.84" y2="86.36" width="0.1524" layer="91"/> +<label x="116.84" y="86.36" size="1.778" layer="95"/> +</segment> +</net> +<net name="N$3" class="0"> +<segment> +<pinref part="IC1" gate="G$1" pin="+IN"/> +<wire x1="180.34" y1="66.04" x2="177.8" y2="66.04" width="0.1524" layer="91"/> +<wire x1="177.8" y1="66.04" x2="175.26" y2="66.04" width="0.1524" layer="91"/> +<pinref part="R5" gate="G$1" pin="2"/> +<junction x="177.8" y="66.04"/> +<pinref part="C14" gate=">NAME" pin="2"/> +</segment> +</net> +<net name="R_F" class="0"> +<segment> +<wire x1="182.88" y1="86.36" x2="180.34" y2="86.36" width="0.1524" layer="91"/> +<pinref part="R6" gate="G$1" pin="1"/> +<pinref part="IC1" gate="G$1" pin="-IN"/> +<wire x1="180.34" y1="71.12" x2="180.34" y2="86.36" width="0.1524" layer="91"/> +<pinref part="R4" gate="G$1" pin="2"/> +<wire x1="177.8" y1="86.36" x2="180.34" y2="86.36" width="0.1524" layer="91"/> +<junction x="180.34" y="86.36"/> +<label x="177.8" y="88.9" size="1.778" layer="95"/> +</segment> +<segment> +<pinref part="J6" gate="G$1" pin="2"/> +<wire x1="243.84" y1="45.72" x2="241.3" y2="45.72" width="0.1524" layer="91"/> +<label x="243.84" y="45.72" size="1.778" layer="95"/> +</segment> +</net> +<net name="N$4" class="0"> +<segment> +<pinref part="R4" gate="G$1" pin="1"/> +<pinref part="C13" gate=">NAME" pin="2"/> +</segment> +</net> +<net name="N$8" class="0"> +<segment> +<pinref part="R1" gate="G$1" pin="1"/> +<pinref part="U$7" gate="G$1" pin="PC7/TXD1/SCK"/> +<wire x1="119.38" y1="60.96" x2="119.38" y2="53.34" width="0.1524" layer="91"/> +<wire x1="119.38" y1="53.34" x2="114.3" y2="53.34" width="0.1524" layer="91"/> +</segment> +</net> +<net name="N$9" class="0"> +<segment> +<wire x1="132.08" y1="40.64" x2="129.54" y2="40.64" width="0.1524" layer="91"/> +<pinref part="R3" gate="G$1" pin="2"/> +<pinref part="U$4" gate="G$1" pin="C"/> +</segment> +</net> +<net name="N$10" class="0"> +<segment> +<pinref part="R3" gate="G$1" pin="1"/> +<wire x1="119.38" y1="40.64" x2="119.38" y2="48.26" width="0.1524" layer="91"/> +<pinref part="U$7" gate="G$1" pin="PC5/XCK1/MOSI"/> +<wire x1="119.38" y1="48.26" x2="114.3" y2="48.26" width="0.1524" layer="91"/> +</segment> +</net> +</nets> +</sheet> +</sheets> +</schematic> +</drawing> +<compatibility> +<note version="8.2" severity="warning"> +Since Version 8.2, EAGLE supports online libraries. The ids +of those online libraries will not be understood (or retained) +with this version. +</note> +<note version="8.3" severity="warning"> +Since Version 8.3, EAGLE supports URNs for individual library +assets (packages, symbols, and devices). The URNs of those assets +will not be understood (or retained) with this version. +</note> +<note version="8.3" severity="warning"> +Since Version 8.3, EAGLE supports the association of 3D packages +with devices in libraries, schematics, and board files. Those 3D +packages will not be understood (or retained) with this version. +</note> +</compatibility> +</eagle> diff --git a/static/img/14_almost_repaired.jpg b/static/img/14_almost_repaired.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d0a56d0440db537c4c0828ec877ed35e8d4a8784 Binary files /dev/null and b/static/img/14_almost_repaired.jpg differ diff --git a/static/img/14_board_v2.jpg b/static/img/14_board_v2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0ac6d7e34042aaed53554e12eaa8dfcdcfeea5e5 Binary files /dev/null and b/static/img/14_board_v2.jpg differ diff --git a/static/img/14_good_traces.jpg b/static/img/14_good_traces.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4269003cf540397a5e110a2b6ba93c00d5ad7ee1 Binary files /dev/null and b/static/img/14_good_traces.jpg differ diff --git a/static/img/14_hello_world_usb.png b/static/img/14_hello_world_usb.png new file mode 100644 index 0000000000000000000000000000000000000000..eb690b25cfb34671be28416bbffe3f6438d498e8 Binary files /dev/null and b/static/img/14_hello_world_usb.png differ diff --git a/static/img/14_ripped_traces_again.jpg b/static/img/14_ripped_traces_again.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5a83dc66b5e26d86a982eaeed520c05bc92d9648 Binary files /dev/null and b/static/img/14_ripped_traces_again.jpg differ diff --git a/static/img/14_schematic_v2.png b/static/img/14_schematic_v2.png new file mode 100644 index 0000000000000000000000000000000000000000..533be0731bd262478cbb74d4810f70e55e885e50 Binary files /dev/null and b/static/img/14_schematic_v2.png differ diff --git a/static/img/14_stuffed_v2.jpg b/static/img/14_stuffed_v2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2d6e86ae9a7f4a3dd6fb05217a7c91cc998c8179 Binary files /dev/null and b/static/img/14_stuffed_v2.jpg differ diff --git a/static/img/14_usb_address.png b/static/img/14_usb_address.png new file mode 100644 index 0000000000000000000000000000000000000000..afa85d520a1e176480fe1ac37148236d14490965 Binary files /dev/null and b/static/img/14_usb_address.png differ