commit 3b7ba6599f38cec6259142554c54478f87c32355 Author: s3lph Date: Wed Jun 8 00:51:43 2022 +0200 espwol diff --git a/esp/.gitignore b/esp/.gitignore new file mode 100644 index 0000000..03f4a3c --- /dev/null +++ b/esp/.gitignore @@ -0,0 +1 @@ +.pio diff --git a/esp/include/README b/esp/include/README new file mode 100644 index 0000000..194dcd4 --- /dev/null +++ b/esp/include/README @@ -0,0 +1,39 @@ + +This directory is intended for project header files. + +A header file is a file containing C declarations and macro definitions +to be shared between several project source files. You request the use of a +header file in your project source file (C, C++, etc) located in `src` folder +by including it, with the C preprocessing directive `#include'. + +```src/main.c + +#include "header.h" + +int main (void) +{ + ... +} +``` + +Including a header file produces the same results as copying the header file +into each source file that needs it. Such copying would be time-consuming +and error-prone. With a header file, the related declarations appear +in only one place. If they need to be changed, they can be changed in one +place, and programs that include the header file will automatically use the +new version when next recompiled. The header file eliminates the labor of +finding and changing all the copies as well as the risk that a failure to +find one copy will result in inconsistencies within a program. + +In C, the usual convention is to give header files names that end with `.h'. +It is most portable to use only letters, digits, dashes, and underscores in +header file names, and at most one dot. + +Read more about using header files in official GCC documentation: + +* Include Syntax +* Include Operation +* Once-Only Headers +* Computed Includes + +https://gcc.gnu.org/onlinedocs/cpp/Header-Files.html diff --git a/esp/lib/README b/esp/lib/README new file mode 100644 index 0000000..6debab1 --- /dev/null +++ b/esp/lib/README @@ -0,0 +1,46 @@ + +This directory is intended for project specific (private) libraries. +PlatformIO will compile them to static libraries and link into executable file. + +The source code of each library should be placed in a an own separate directory +("lib/your_library_name/[here are source files]"). + +For example, see a structure of the following two libraries `Foo` and `Bar`: + +|--lib +| | +| |--Bar +| | |--docs +| | |--examples +| | |--src +| | |- Bar.c +| | |- Bar.h +| | |- library.json (optional, custom build options, etc) https://docs.platformio.org/page/librarymanager/config.html +| | +| |--Foo +| | |- Foo.c +| | |- Foo.h +| | +| |- README --> THIS FILE +| +|- platformio.ini +|--src + |- main.c + +and a contents of `src/main.c`: +``` +#include +#include + +int main (void) +{ + ... +} + +``` + +PlatformIO Library Dependency Finder will find automatically dependent +libraries scanning project source files. + +More information about PlatformIO Library Dependency Finder +- https://docs.platformio.org/page/librarymanager/ldf.html diff --git a/esp/platformio.ini b/esp/platformio.ini new file mode 100644 index 0000000..4b9d9fd --- /dev/null +++ b/esp/platformio.ini @@ -0,0 +1,15 @@ +; PlatformIO Project Configuration File +; +; Build options: build flags, source filter +; Upload options: custom upload port, speed and extra flags +; Library options: dependencies, extra library storages +; Advanced options: extra scripting +; +; Please visit documentation for the other options and examples +; https://docs.platformio.org/page/projectconf.html + +[env:main] +platform = espressif8266 +board = nodemcuv2 +framework = arduino +upload_protocol = esptool diff --git a/esp/src/main.cpp b/esp/src/main.cpp new file mode 100644 index 0000000..511824c --- /dev/null +++ b/esp/src/main.cpp @@ -0,0 +1,85 @@ +#include +#include + +const char* ssid = "YOUR SSID HERE"; +const char* password = "YOUR PW HERE"; + +WiFiServer server(80); + +// Variable to store the HTTP request +String header; + + +// Current time +unsigned long currentTime = millis(); +// Previous time +unsigned long previousTime = 0; +// Define timeout time in milliseconds (example: 2000ms = 2s) +const long timeoutTime = 2000; + + +void setup() { + Serial.begin(115200); + digitalWrite(4, LOW); + pinMode(4, OUTPUT); + WiFi.begin(ssid, password); + while (WiFi.status() != WL_CONNECTED) { + delay(500); + Serial.print("."); + } + Serial.println(""); + Serial.println("WiFi connected."); + Serial.println("IP address: "); + Serial.println(WiFi.localIP()); + server.begin(); +} + + +void loop() { + WiFiClient client = server.available(); + + if (client) { // If a new client connects, + Serial.println("New Client."); // print a message out in the serial port + String currentLine = ""; // make a String to hold incoming data from the client + currentTime = millis(); + previousTime = currentTime; + while (client.connected() && currentTime - previousTime <= timeoutTime) { // loop while the client's connected + currentTime = millis(); + if (client.available()) { // if there's bytes to read from the client, + char c = client.read(); // read a byte, then + Serial.write(c); // print it out the serial monitor + header += c; + if (c == '\n') { // if the byte is a newline character + // if the current line is blank, you got two newline characters in a row. + // that's the end of the client HTTP request, so send a response: + if (currentLine.length() == 0) { + // HTTP headers always start with a response code (e.g. HTTP/1.1 200 OK) + // and a content-type so the client knows what's coming, then a blank line: + client.println("HTTP/1.1 204 No Content"); + client.println("Connection: close"); + client.println(); + + // turns the GPIOs on and off + if (header.indexOf("GET /wol") >= 0) { + digitalWrite(4, HIGH); + delay(100); + digitalWrite(4, LOW); + } + break; + } else { // if you got a newline, then clear currentLine + currentLine = ""; + } + } else if (c != '\r') { // if you got anything else but a carriage return character, + currentLine += c; // add it to the end of the currentLine + } + } + } + // Clear the header variable + header = ""; + // Close the connection + client.stop(); + Serial.println("Client disconnected."); + Serial.println(""); + } + +} diff --git a/esp/test/README b/esp/test/README new file mode 100644 index 0000000..b94d089 --- /dev/null +++ b/esp/test/README @@ -0,0 +1,11 @@ + +This directory is intended for PlatformIO Unit Testing and project tests. + +Unit Testing is a software testing method by which individual units of +source code, sets of one or more MCU program modules together with associated +control data, usage procedures, and operating procedures, are tested to +determine whether they are fit for use. Unit testing finds problems early +in the development cycle. + +More information about PlatformIO Unit Testing: +- https://docs.platformio.org/page/plus/unit-testing.html diff --git a/pcb/espwol.kicad_pcb b/pcb/espwol.kicad_pcb new file mode 100644 index 0000000..1f15650 --- /dev/null +++ b/pcb/espwol.kicad_pcb @@ -0,0 +1,1068 @@ +(kicad_pcb (version 20211014) (generator pcbnew) + + (general + (thickness 1.6) + ) + + (paper "A4") + (layers + (0 "F.Cu" signal) + (31 "B.Cu" signal) + (32 "B.Adhes" user "B.Adhesive") + (33 "F.Adhes" user "F.Adhesive") + (34 "B.Paste" user) + (35 "F.Paste" user) + (36 "B.SilkS" user "B.Silkscreen") + (37 "F.SilkS" user "F.Silkscreen") + (38 "B.Mask" user) + (39 "F.Mask" user) + (40 "Dwgs.User" user "User.Drawings") + (41 "Cmts.User" user "User.Comments") + (42 "Eco1.User" user "User.Eco1") + (43 "Eco2.User" user "User.Eco2") + (44 "Edge.Cuts" user) + (45 "Margin" user) + (46 "B.CrtYd" user "B.Courtyard") + (47 "F.CrtYd" user "F.Courtyard") + (48 "B.Fab" user) + (49 "F.Fab" user) + (50 "User.1" user) + (51 "User.2" user) + (52 "User.3" user) + (53 "User.4" user) + (54 "User.5" user) + (55 "User.6" user) + (56 "User.7" user) + (57 "User.8" user) + (58 "User.9" user) + ) + + (setup + (stackup + (layer "F.SilkS" (type "Top Silk Screen")) + (layer "F.Paste" (type "Top Solder Paste")) + (layer "F.Mask" (type "Top Solder Mask") (thickness 0.01)) + (layer "F.Cu" (type "copper") (thickness 0.035)) + (layer "dielectric 1" (type "core") (thickness 1.51) (material "FR4") (epsilon_r 4.5) (loss_tangent 0.02)) + (layer "B.Cu" (type "copper") (thickness 0.035)) + (layer "B.Mask" (type "Bottom Solder Mask") (thickness 0.01)) + (layer "B.Paste" (type "Bottom Solder Paste")) + (layer "B.SilkS" (type "Bottom Silk Screen")) + (copper_finish "None") + (dielectric_constraints no) + ) + (pad_to_mask_clearance 0) + (pcbplotparams + (layerselection 0x0001000_7fffffff) + (disableapertmacros false) + (usegerberextensions false) + (usegerberattributes true) + (usegerberadvancedattributes true) + (creategerberjobfile true) + (svguseinch false) + (svgprecision 6) + (excludeedgelayer true) + (plotframeref false) + (viasonmask false) + (mode 1) + (useauxorigin false) + (hpglpennumber 1) + (hpglpenspeed 20) + (hpglpendiameter 15.000000) + (dxfpolygonmode true) + (dxfimperialunits true) + (dxfusepcbnewfont true) + (psnegative false) + (psa4output false) + (plotreference true) + (plotvalue true) + (plotinvisibletext false) + (sketchpadsonfab false) + (subtractmaskfromsilk false) + (outputformat 1) + (mirror false) + (drillshape 0) + (scaleselection 1) + (outputdirectory "../../../mnt/kuebel/TEMP/espwol/") + ) + ) + + (net 0 "") + (net 1 "unconnected-(J1-Pad1)") + (net 2 "unconnected-(J1-Pad3)") + (net 3 "+3V3") + (net 4 "unconnected-(J1-Pad5)") + (net 5 "unconnected-(J1-Pad6)") + (net 6 "GP4") + (net 7 "GND") + (net 8 "OUT") + (net 9 "+5V") + (net 10 "unconnected-(J1-Pad8)") + + (footprint "Package_TO_SOT_SMD:SOT-23" (layer "F.Cu") + (tedit 5FA16958) (tstamp 02bd40d0-ce73-4dae-926f-e88e2de5b919) + (at 106.4768 59.182) + (descr "SOT, 3 Pin (https://www.jedec.org/system/files/docs/to-236h.pdf variant AB), generated with kicad-footprint-generator ipc_gullwing_generator.py") + (tags "SOT TO_SOT_SMD") + (property "Sheetfile" "espwol.kicad_sch") + (property "Sheetname" "") + (path "/9c9116db-230c-431a-8633-14e65c7d4687") + (attr smd) + (fp_text reference "Q1" (at 0 -2.4) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 873269f0-59ad-4577-a6c2-0efade017fe9) + ) + (fp_text value "2N7002E" (at 0 2.4) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp bb045059-268f-4dac-a5e7-8bec31ff7ca0) + ) + (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") + (effects (font (size 0.32 0.32) (thickness 0.05))) + (tstamp af3f4689-8de7-418c-aa65-670139875b78) + ) + (fp_line (start 0 1.56) (end -0.65 1.56) (layer "F.SilkS") (width 0.12) (tstamp 228d7f02-8d49-44ae-90fe-3588c30eef2b)) + (fp_line (start 0 -1.56) (end -1.675 -1.56) (layer "F.SilkS") (width 0.12) (tstamp 38ae2c75-11b7-4e8e-aba4-688006a5e4be)) + (fp_line (start 0 1.56) (end 0.65 1.56) (layer "F.SilkS") (width 0.12) (tstamp ba249587-15e2-4a9b-9f78-9bb0b796069e)) + (fp_line (start 0 -1.56) (end 0.65 -1.56) (layer "F.SilkS") (width 0.12) (tstamp e4c31468-bbc4-4942-a174-8f0f245994b3)) + (fp_line (start -1.92 -1.7) (end -1.92 1.7) (layer "F.CrtYd") (width 0.05) (tstamp 4d4ec731-799e-4988-abcc-793bcb47a7c2)) + (fp_line (start 1.92 1.7) (end 1.92 -1.7) (layer "F.CrtYd") (width 0.05) (tstamp 93bea516-0321-4def-91f7-7dee526780a9)) + (fp_line (start 1.92 -1.7) (end -1.92 -1.7) (layer "F.CrtYd") (width 0.05) (tstamp be836719-65a1-4613-a726-61c2354c1816)) + (fp_line (start -1.92 1.7) (end 1.92 1.7) (layer "F.CrtYd") (width 0.05) (tstamp da6c341b-69c8-46c3-911f-9499ca6fb91f)) + (fp_line (start 0.65 -1.45) (end 0.65 1.45) (layer "F.Fab") (width 0.1) (tstamp 1652c565-3e93-44c8-b78f-c65ea72cc3ec)) + (fp_line (start -0.65 -1.125) (end -0.325 -1.45) (layer "F.Fab") (width 0.1) (tstamp 23cef0b6-aead-42d9-8935-e695feb97274)) + (fp_line (start -0.325 -1.45) (end 0.65 -1.45) (layer "F.Fab") (width 0.1) (tstamp 27eefb0d-f9d8-4cc7-b526-690af9d708c6)) + (fp_line (start 0.65 1.45) (end -0.65 1.45) (layer "F.Fab") (width 0.1) (tstamp 6e89477f-cb9d-4205-90ee-1adecfad05ab)) + (fp_line (start -0.65 1.45) (end -0.65 -1.125) (layer "F.Fab") (width 0.1) (tstamp a694593a-d46c-46d1-b11f-f4c81be64f5f)) + (pad "1" smd roundrect (at -0.9375 -0.95) (size 1.475 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 6 "GP4") (pinfunction "G") (pintype "input") (tstamp 086a6c7c-70a9-478c-9e19-215b5570e700)) + (pad "2" smd roundrect (at -0.9375 0.95) (size 1.475 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 7 "GND") (pinfunction "S") (pintype "passive") (tstamp f99e66b2-d7af-48f3-9906-9384faa7cf65)) + (pad "3" smd roundrect (at 0.9375 0) (size 1.475 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) + (net 8 "OUT") (pinfunction "D") (pintype "passive") (tstamp 1f19cf23-b47c-44f0-bb7c-2f42eb048aac)) + (model "${KICAD6_3DMODEL_DIR}/Package_TO_SOT_SMD.3dshapes/SOT-23.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Horizontal" (layer "F.Cu") + (tedit 59FED5CB) (tstamp 3042771e-95cd-4f8e-ac2c-c7daca4d65f4) + (at 112.522 53.594 90) + (descr "Through hole angled pin header, 1x03, 2.54mm pitch, 6mm pin length, single row") + (tags "Through hole angled pin header THT 1x03 2.54mm single row") + (property "Sheetfile" "espwol.kicad_sch") + (property "Sheetname" "") + (path "/4c181c82-3856-46b2-8d6b-7ada0b0e0dbd") + (attr through_hole) + (fp_text reference "J3" (at 4.385 -2.27 90) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 7b16cfbb-2774-4490-a978-84f49dc231fe) + ) + (fp_text value "Conn_01x03_Male" (at 4.385 7.35 90) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 01253037-05e4-484f-8eaa-e46192e2a299) + ) + (fp_text user "${REFERENCE}" (at 2.77 2.54 180) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp baabc728-fdab-46ce-b148-1a85d94934b9) + ) + (fp_line (start 1.042929 2.16) (end 1.44 2.16) (layer "F.SilkS") (width 0.12) (tstamp 0056fd7c-7281-4f3c-9ed1-f2572908ad64)) + (fp_line (start 1.042929 2.92) (end 1.44 2.92) (layer "F.SilkS") (width 0.12) (tstamp 02ec4f4f-6ae7-4d42-82e6-1444d15c295f)) + (fp_line (start 4.1 6.41) (end 4.1 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 0847a4c9-0154-4d93-aca8-269d8d90ec1f)) + (fp_line (start 1.11 0.38) (end 1.44 0.38) (layer "F.SilkS") (width 0.12) (tstamp 0a7b03dc-bbcc-4765-901a-7d36a1f1a8df)) + (fp_line (start 4.1 -0.2) (end 10.1 -0.2) (layer "F.SilkS") (width 0.12) (tstamp 1805f4b2-9fa7-480d-887a-02349c9eb909)) + (fp_line (start 10.1 0.38) (end 4.1 0.38) (layer "F.SilkS") (width 0.12) (tstamp 1abd5a14-45b9-4ee7-b0db-739fcf2fdaca)) + (fp_line (start 10.1 4.7) (end 10.1 5.46) (layer "F.SilkS") (width 0.12) (tstamp 23adad0f-1971-4ad8-b432-4ae6536eb660)) + (fp_line (start 1.042929 4.7) (end 1.44 4.7) (layer "F.SilkS") (width 0.12) (tstamp 2b9ff938-f064-4cae-b6a1-94eacd1b06c3)) + (fp_line (start 1.042929 5.46) (end 1.44 5.46) (layer "F.SilkS") (width 0.12) (tstamp 3646047d-7802-47c6-99f6-4210c76e54be)) + (fp_line (start 1.11 -0.38) (end 1.44 -0.38) (layer "F.SilkS") (width 0.12) (tstamp 36858962-d28a-4e62-9a3f-f428a126f2e7)) + (fp_line (start -1.27 0) (end -1.27 -1.27) (layer "F.SilkS") (width 0.12) (tstamp 3d3c5866-cf3e-4afc-80ba-382dcd18c999)) + (fp_line (start 4.1 -0.08) (end 10.1 -0.08) (layer "F.SilkS") (width 0.12) (tstamp 3ddfef30-9a50-4814-8333-5094dc7b12e1)) + (fp_line (start 4.1 -0.32) (end 10.1 -0.32) (layer "F.SilkS") (width 0.12) (tstamp 3e5b302a-6fdb-417b-9eeb-ef09fe74f747)) + (fp_line (start 10.1 -0.38) (end 10.1 0.38) (layer "F.SilkS") (width 0.12) (tstamp 4385b6db-28a7-4c55-a566-52bfde9a5af2)) + (fp_line (start 4.1 0.04) (end 10.1 0.04) (layer "F.SilkS") (width 0.12) (tstamp 4686a02a-dbf6-4238-a42a-42f6c962fd4d)) + (fp_line (start 4.1 4.7) (end 10.1 4.7) (layer "F.SilkS") (width 0.12) (tstamp 4e92314a-27af-4f64-b040-b505d2f60ff1)) + (fp_line (start 10.1 2.16) (end 10.1 2.92) (layer "F.SilkS") (width 0.12) (tstamp 65e43bbd-8eb8-45a8-b420-eecc8aa86d71)) + (fp_line (start 4.1 2.16) (end 10.1 2.16) (layer "F.SilkS") (width 0.12) (tstamp 6756a01d-9f47-48da-8c9f-8e10129b2a1e)) + (fp_line (start 1.44 6.41) (end 4.1 6.41) (layer "F.SilkS") (width 0.12) (tstamp 84b9411e-73e2-4667-9b0a-d51c0fb94cfb)) + (fp_line (start 1.44 -1.33) (end 1.44 6.41) (layer "F.SilkS") (width 0.12) (tstamp 9b308f73-aef6-4298-a628-8a3b21fcd9a7)) + (fp_line (start 10.1 2.92) (end 4.1 2.92) (layer "F.SilkS") (width 0.12) (tstamp 9cb6b674-3401-4803-98aa-42d223846838)) + (fp_line (start 4.1 0.28) (end 10.1 0.28) (layer "F.SilkS") (width 0.12) (tstamp b4fe1b5a-d2ec-49ab-b8e5-6e58ed39d716)) + (fp_line (start 4.1 -1.33) (end 1.44 -1.33) (layer "F.SilkS") (width 0.12) (tstamp b9b5f296-1ea3-408c-b79e-687da2d44461)) + (fp_line (start 4.1 0.16) (end 10.1 0.16) (layer "F.SilkS") (width 0.12) (tstamp c45d041b-0871-4295-bb4d-45ffc4c2ff75)) + (fp_line (start 4.1 -0.38) (end 10.1 -0.38) (layer "F.SilkS") (width 0.12) (tstamp cb6ff386-662e-458b-85fb-243de734adda)) + (fp_line (start 1.44 3.81) (end 4.1 3.81) (layer "F.SilkS") (width 0.12) (tstamp e43bacea-25c2-4ce0-b740-92ff15989367)) + (fp_line (start 1.44 1.27) (end 4.1 1.27) (layer "F.SilkS") (width 0.12) (tstamp f0af8fe5-4e31-4238-af45-625b9b0629a7)) + (fp_line (start 10.1 5.46) (end 4.1 5.46) (layer "F.SilkS") (width 0.12) (tstamp fa54c224-6191-48f3-9d1f-64049e7a8deb)) + (fp_line (start -1.27 -1.27) (end 0 -1.27) (layer "F.SilkS") (width 0.12) (tstamp fc794933-77c9-4dd9-b139-2903286eb0e0)) + (fp_line (start -1.8 -1.8) (end -1.8 6.85) (layer "F.CrtYd") (width 0.05) (tstamp 15426d82-d9dd-4d83-80a4-8d1afeb6dc3e)) + (fp_line (start 10.55 -1.8) (end -1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 3cc467ee-e9c2-4edc-9ad2-814f9799751e)) + (fp_line (start 10.55 6.85) (end 10.55 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 42733d44-2609-4beb-8eff-86aa2094468d)) + (fp_line (start -1.8 6.85) (end 10.55 6.85) (layer "F.CrtYd") (width 0.05) (tstamp e24dcff8-829b-4f35-bae3-4f541a8a73f1)) + (fp_line (start -0.32 2.22) (end -0.32 2.86) (layer "F.Fab") (width 0.1) (tstamp 078581f0-c889-4c99-931c-62a718df04b0)) + (fp_line (start 10.04 4.76) (end 10.04 5.4) (layer "F.Fab") (width 0.1) (tstamp 099c5c4c-68a3-4375-8842-eb2ad7e19218)) + (fp_line (start 2.135 -1.27) (end 4.04 -1.27) (layer "F.Fab") (width 0.1) (tstamp 151f8b71-8523-4660-a8cd-f5dd280e6fe7)) + (fp_line (start 10.04 -0.32) (end 10.04 0.32) (layer "F.Fab") (width 0.1) (tstamp 1562cad3-eb92-46fb-9aee-4d4440dfdb2b)) + (fp_line (start 4.04 -1.27) (end 4.04 6.35) (layer "F.Fab") (width 0.1) (tstamp 1b9ee490-9207-416d-b6ce-28c2502a916c)) + (fp_line (start -0.32 2.86) (end 1.5 2.86) (layer "F.Fab") (width 0.1) (tstamp 1e11277d-a82a-433e-9ab8-180381194195)) + (fp_line (start 4.04 5.4) (end 10.04 5.4) (layer "F.Fab") (width 0.1) (tstamp 2157d01d-d5b7-4746-b5b6-9caedc93be59)) + (fp_line (start 4.04 2.22) (end 10.04 2.22) (layer "F.Fab") (width 0.1) (tstamp 3164b1e4-eda8-43f9-adac-a9afd08e47e4)) + (fp_line (start 1.5 -0.635) (end 2.135 -1.27) (layer "F.Fab") (width 0.1) (tstamp 33662238-784e-44a4-8d7c-66e59dd3dab7)) + (fp_line (start -0.32 4.76) (end -0.32 5.4) (layer "F.Fab") (width 0.1) (tstamp 504704e4-39c6-4d85-ad16-b9c1b26ec83c)) + (fp_line (start -0.32 2.22) (end 1.5 2.22) (layer "F.Fab") (width 0.1) (tstamp 665dad57-3e83-4c39-b01e-1648e8c6dbe4)) + (fp_line (start -0.32 4.76) (end 1.5 4.76) (layer "F.Fab") (width 0.1) (tstamp 7dd93755-6f67-4463-b990-92b93de161cb)) + (fp_line (start 4.04 2.86) (end 10.04 2.86) (layer "F.Fab") (width 0.1) (tstamp 8093835b-40ba-450f-a8e2-153561293d63)) + (fp_line (start 4.04 6.35) (end 1.5 6.35) (layer "F.Fab") (width 0.1) (tstamp 84568b86-ce6f-460b-b95e-b077ce8e6492)) + (fp_line (start -0.32 -0.32) (end -0.32 0.32) (layer "F.Fab") (width 0.1) (tstamp 86c505cc-bb98-46e2-a1ca-24176815fd24)) + (fp_line (start 4.04 0.32) (end 10.04 0.32) (layer "F.Fab") (width 0.1) (tstamp 8d064264-ff0a-4ee6-9d65-36ab0dea857d)) + (fp_line (start -0.32 5.4) (end 1.5 5.4) (layer "F.Fab") (width 0.1) (tstamp 912003f3-450b-41d7-89db-02cdc8ecab8f)) + (fp_line (start 4.04 -0.32) (end 10.04 -0.32) (layer "F.Fab") (width 0.1) (tstamp 999109cb-3c32-412f-869f-f5b39fd62374)) + (fp_line (start 1.5 6.35) (end 1.5 -0.635) (layer "F.Fab") (width 0.1) (tstamp b5eda120-9f8c-427c-8c4c-620bbfee3445)) + (fp_line (start -0.32 0.32) (end 1.5 0.32) (layer "F.Fab") (width 0.1) (tstamp c4d46d17-0cad-463a-ade2-0c237cf92acd)) + (fp_line (start 4.04 4.76) (end 10.04 4.76) (layer "F.Fab") (width 0.1) (tstamp df965dc2-619b-40c3-9343-8947c19cce44)) + (fp_line (start -0.32 -0.32) (end 1.5 -0.32) (layer "F.Fab") (width 0.1) (tstamp eef20d82-775e-4396-a40e-2cd50816c652)) + (fp_line (start 10.04 2.22) (end 10.04 2.86) (layer "F.Fab") (width 0.1) (tstamp f5d3a3e6-0308-4b27-b8de-95455ff0363c)) + (pad "1" thru_hole rect (at 0 0 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) + (net 9 "+5V") (pinfunction "Pin_1") (pintype "passive") (tstamp 120968f5-832e-4d08-9006-25e20b2659a3)) + (pad "2" thru_hole oval (at 0 2.54 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) + (net 8 "OUT") (pinfunction "Pin_2") (pintype "passive") (tstamp d9ae4212-4c50-48d3-bfdd-6ee8f16d747c)) + (pad "3" thru_hole oval (at 0 5.08 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) + (net 7 "GND") (pinfunction "Pin_3") (pintype "passive") (tstamp 1ff56fb0-c28e-4c1b-aa80-37b219d7224b)) + (model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x03_P2.54mm_Horizontal.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "Connector_PinSocket_2.54mm:PinSocket_2x04_P2.54mm_Vertical" (layer "F.Cu") + (tedit 5A19A422) (tstamp 4a84a8e8-c318-44ce-8952-5e1e7d439fce) + (at 100.0252 60.7568 180) + (descr "Through hole straight socket strip, 2x04, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated") + (tags "Through hole socket strip THT 2x04 2.54mm double row") + (property "Sheetfile" "espwol.kicad_sch") + (property "Sheetname" "") + (path "/8328fdee-be6f-4244-bcf6-0a08fa3b4156") + (attr through_hole) + (fp_text reference "J1" (at -1.27 -2.77) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 26d85dcf-a7b0-4d68-9140-13c882b8ff85) + ) + (fp_text value "Conn_02x04_Counter_Clockwise" (at -1.27 10.39) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 7626125d-4e14-4bdc-8019-42524f7bff52) + ) + (fp_text user "${REFERENCE}" (at -1.27 3.81 90) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp babd8566-05b1-4292-941e-09b1b6a5f425) + ) + (fp_line (start -3.87 -1.33) (end -1.27 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 224ab6db-4f39-4e7c-a210-54d71e0785b6)) + (fp_line (start 0 -1.33) (end 1.33 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 5412f109-23bb-4ac0-9ec8-9610724d40ae)) + (fp_line (start -3.87 -1.33) (end -3.87 8.95) (layer "F.SilkS") (width 0.12) (tstamp 551a40c9-f035-41f5-8b10-20557f7b4482)) + (fp_line (start -1.27 -1.33) (end -1.27 1.27) (layer "F.SilkS") (width 0.12) (tstamp 6db46bed-7a20-4b29-b1ce-98ae377adcb1)) + (fp_line (start -3.87 8.95) (end 1.33 8.95) (layer "F.SilkS") (width 0.12) (tstamp 82a9d133-47e8-4b26-a267-93851e46001c)) + (fp_line (start 1.33 1.27) (end 1.33 8.95) (layer "F.SilkS") (width 0.12) (tstamp 92540ef7-5115-4d52-becc-3cfb888d9ef7)) + (fp_line (start -1.27 1.27) (end 1.33 1.27) (layer "F.SilkS") (width 0.12) (tstamp 9ce7edb9-c3a6-4644-ab44-83fcaf486b66)) + (fp_line (start 1.33 -1.33) (end 1.33 0) (layer "F.SilkS") (width 0.12) (tstamp aa9fb809-a156-4e02-80f4-05121270a3f2)) + (fp_line (start 1.76 -1.8) (end 1.76 9.4) (layer "F.CrtYd") (width 0.05) (tstamp 47e204a5-43f4-4d2c-bdac-310cbd624c8b)) + (fp_line (start 1.76 9.4) (end -4.34 9.4) (layer "F.CrtYd") (width 0.05) (tstamp 57304661-3fb2-4136-a948-da916030f4b5)) + (fp_line (start -4.34 -1.8) (end 1.76 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 6c169324-4d6c-461e-85b3-39367f8523be)) + (fp_line (start -4.34 9.4) (end -4.34 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp fa572491-7cd1-496d-af0b-ade64391831f)) + (fp_line (start 0.27 -1.27) (end 1.27 -0.27) (layer "F.Fab") (width 0.1) (tstamp 0784e1f8-2e15-4951-82e7-2547cccf0f8f)) + (fp_line (start -3.81 -1.27) (end 0.27 -1.27) (layer "F.Fab") (width 0.1) (tstamp 347f4b74-d33b-4b16-93e3-cbbf2b36a636)) + (fp_line (start 1.27 -0.27) (end 1.27 8.89) (layer "F.Fab") (width 0.1) (tstamp 35697f5b-96f3-4d17-acff-77b9785cfa3c)) + (fp_line (start 1.27 8.89) (end -3.81 8.89) (layer "F.Fab") (width 0.1) (tstamp 86092521-4420-4b15-bafd-129666d6dead)) + (fp_line (start -3.81 8.89) (end -3.81 -1.27) (layer "F.Fab") (width 0.1) (tstamp a8dbd99d-99da-49e9-95fe-c7dff6212cc3)) + (pad "1" thru_hole rect (at 0 0 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) + (net 1 "unconnected-(J1-Pad1)") (pinfunction "Pin_1") (pintype "passive+no_connect") (tstamp 3af31689-9b7f-40da-a898-2a669269ad21)) + (pad "2" thru_hole oval (at -2.54 0 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) + (net 7 "GND") (pinfunction "Pin_2") (pintype "passive") (tstamp cd2ab929-cfff-456d-a44f-375dd741de32)) + (pad "3" thru_hole oval (at 0 2.54 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) + (net 2 "unconnected-(J1-Pad3)") (pinfunction "Pin_3") (pintype "passive+no_connect") (tstamp a801f6fc-ed46-474b-a02e-ba8c7a472a0e)) + (pad "4" thru_hole oval (at -2.54 2.54 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) + (net 6 "GP4") (pinfunction "Pin_4") (pintype "passive") (tstamp 6b83d69a-ec74-4657-b860-f4a65bbca779)) + (pad "5" thru_hole oval (at 0 5.08 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) + (net 4 "unconnected-(J1-Pad5)") (pinfunction "Pin_5") (pintype "passive+no_connect") (tstamp 6bc82a1d-84b7-4dab-a36e-afd87abd97c2)) + (pad "6" thru_hole oval (at -2.54 5.08 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) + (net 5 "unconnected-(J1-Pad6)") (pinfunction "Pin_6") (pintype "passive+no_connect") (tstamp de30b2ba-cb49-4a7b-bab4-48414dc90ec3)) + (pad "7" thru_hole oval (at 0 7.62 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) + (net 3 "+3V3") (pinfunction "Pin_7") (pintype "passive") (tstamp a4dc62bb-eb48-449c-90ca-2a993cf08eb4)) + (pad "8" thru_hole oval (at -2.54 7.62 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) + (net 10 "unconnected-(J1-Pad8)") (pinfunction "Pin_8") (pintype "passive+no_connect") (tstamp 171ca36e-048b-446d-b5ff-4ee003259a56)) + (model "${KICAD6_3DMODEL_DIR}/Connector_PinSocket_2.54mm.3dshapes/PinSocket_2x04_P2.54mm_Vertical.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "Connector_PinHeader_2.54mm:PinHeader_1x02_P2.54mm_Horizontal" (layer "F.Cu") + (tedit 59FED5CB) (tstamp 4fc60456-8037-4159-bb06-ff9e4ccc21ef) + (at 106.172 53.594 90) + (descr "Through hole angled pin header, 1x02, 2.54mm pitch, 6mm pin length, single row") + (tags "Through hole angled pin header THT 1x02 2.54mm single row") + (property "Sheetfile" "espwol.kicad_sch") + (property "Sheetname" "") + (path "/16f5debb-7b35-41b9-bae0-84ba2f44a466") + (attr through_hole) + (fp_text reference "J2" (at 4.385 -2.27 90) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp e6e43d9a-e2f3-4d28-8fa9-0649079b83b2) + ) + (fp_text value "Conn_01x02_Male" (at 4.385 4.81 90) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp d82d048d-7f09-4f0d-9a4b-2fca635e84f2) + ) + (fp_text user "${REFERENCE}" (at 2.77 1.27 180) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 547b334e-7ce0-474f-a2aa-0a5bc938751b) + ) + (fp_line (start 4.1 -1.33) (end 1.44 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 056027ad-caae-4062-a6ed-de0258dcc3f1)) + (fp_line (start 4.1 2.16) (end 10.1 2.16) (layer "F.SilkS") (width 0.12) (tstamp 0b124306-1730-4a97-aeda-44c6e8d83288)) + (fp_line (start 10.1 2.92) (end 4.1 2.92) (layer "F.SilkS") (width 0.12) (tstamp 1bf3ff4f-4e68-4328-8f90-ef0347a01d3e)) + (fp_line (start 1.11 -0.38) (end 1.44 -0.38) (layer "F.SilkS") (width 0.12) (tstamp 2499cce3-e841-4aab-8843-8bf42b287b7f)) + (fp_line (start 1.11 0.38) (end 1.44 0.38) (layer "F.SilkS") (width 0.12) (tstamp 259afa09-b2ce-4651-9b5b-2b7cd08ab753)) + (fp_line (start 1.44 -1.33) (end 1.44 3.87) (layer "F.SilkS") (width 0.12) (tstamp 26518310-5253-4eb2-b4b4-861f7a8a927c)) + (fp_line (start -1.27 -1.27) (end 0 -1.27) (layer "F.SilkS") (width 0.12) (tstamp 268802df-3012-4a58-9cc7-fe291af6ccf0)) + (fp_line (start 4.1 0.28) (end 10.1 0.28) (layer "F.SilkS") (width 0.12) (tstamp 3fa9bf10-b76e-4f0c-9145-3cea5d481f69)) + (fp_line (start 10.1 -0.38) (end 10.1 0.38) (layer "F.SilkS") (width 0.12) (tstamp 43d07681-fd92-4916-b97a-bc7bcc6baebb)) + (fp_line (start 4.1 0.04) (end 10.1 0.04) (layer "F.SilkS") (width 0.12) (tstamp 46e7aa0c-8dfb-4893-933e-a7336cecc85f)) + (fp_line (start 1.042929 2.16) (end 1.44 2.16) (layer "F.SilkS") (width 0.12) (tstamp 48978045-4d28-449e-894c-26ee907d1411)) + (fp_line (start 10.1 0.38) (end 4.1 0.38) (layer "F.SilkS") (width 0.12) (tstamp 4e69243a-98f9-4c2a-ba00-b56d924c6116)) + (fp_line (start 4.1 3.87) (end 4.1 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 5deb76ee-0c99-4a78-a497-78950816d2d1)) + (fp_line (start -1.27 0) (end -1.27 -1.27) (layer "F.SilkS") (width 0.12) (tstamp 5ea202a4-c2cf-4a85-803a-586ea1c07d78)) + (fp_line (start 4.1 -0.2) (end 10.1 -0.2) (layer "F.SilkS") (width 0.12) (tstamp 6124c2fc-9273-475e-b9e3-723d272e0f0e)) + (fp_line (start 1.042929 2.92) (end 1.44 2.92) (layer "F.SilkS") (width 0.12) (tstamp 67931d6f-b2d4-4ad4-afe4-83e74ae0a117)) + (fp_line (start 4.1 0.16) (end 10.1 0.16) (layer "F.SilkS") (width 0.12) (tstamp 78c3675e-fbbd-4a8c-a215-6822e1cfb3bb)) + (fp_line (start 4.1 -0.32) (end 10.1 -0.32) (layer "F.SilkS") (width 0.12) (tstamp 8f23d54f-1507-4fa9-81f7-919871a96ac6)) + (fp_line (start 10.1 2.16) (end 10.1 2.92) (layer "F.SilkS") (width 0.12) (tstamp bf75e3cf-c4ed-46f2-a75f-9f7e2605b90c)) + (fp_line (start 4.1 -0.08) (end 10.1 -0.08) (layer "F.SilkS") (width 0.12) (tstamp c43abb17-7357-4a67-9b53-498c33fa2977)) + (fp_line (start 1.44 1.27) (end 4.1 1.27) (layer "F.SilkS") (width 0.12) (tstamp cba24144-7ea4-4f6b-bf80-e0aebf2198e2)) + (fp_line (start 1.44 3.87) (end 4.1 3.87) (layer "F.SilkS") (width 0.12) (tstamp d8c00e04-3e69-4f7f-8dd0-16442c2ab895)) + (fp_line (start 4.1 -0.38) (end 10.1 -0.38) (layer "F.SilkS") (width 0.12) (tstamp dcc31222-1033-4022-b39f-42dd1f71e7f6)) + (fp_line (start 10.55 4.35) (end 10.55 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp bbdffd0a-e15e-4273-8f86-f953382d31ef)) + (fp_line (start 10.55 -1.8) (end -1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp c29883b2-ac12-4584-ab4b-a934e2a6fb34)) + (fp_line (start -1.8 4.35) (end 10.55 4.35) (layer "F.CrtYd") (width 0.05) (tstamp c30c76f2-ae79-47ee-953f-8deed17c63da)) + (fp_line (start -1.8 -1.8) (end -1.8 4.35) (layer "F.CrtYd") (width 0.05) (tstamp ee19651e-0dfd-421b-82ad-9764d49020f7)) + (fp_line (start 4.04 0.32) (end 10.04 0.32) (layer "F.Fab") (width 0.1) (tstamp 105b7d93-55f8-4a56-b4fb-724c3f96181c)) + (fp_line (start -0.32 -0.32) (end -0.32 0.32) (layer "F.Fab") (width 0.1) (tstamp 1e4f90b6-1e2f-4fc7-87fc-3ab37a76d35c)) + (fp_line (start 4.04 2.86) (end 10.04 2.86) (layer "F.Fab") (width 0.1) (tstamp 22cd3eb0-803b-46e7-88c4-317b149a4e42)) + (fp_line (start 2.135 -1.27) (end 4.04 -1.27) (layer "F.Fab") (width 0.1) (tstamp 3765d8d6-18be-4d8e-aa01-8b7478a5cc33)) + (fp_line (start 4.04 3.81) (end 1.5 3.81) (layer "F.Fab") (width 0.1) (tstamp 6a6113fb-263f-41bb-9707-e6f0b4e0f8a1)) + (fp_line (start 4.04 -0.32) (end 10.04 -0.32) (layer "F.Fab") (width 0.1) (tstamp 6ebe89cc-e155-4f56-8703-502992c29b38)) + (fp_line (start 10.04 2.22) (end 10.04 2.86) (layer "F.Fab") (width 0.1) (tstamp 784b6355-56d0-4138-aa5c-9c46e67bb505)) + (fp_line (start 4.04 -1.27) (end 4.04 3.81) (layer "F.Fab") (width 0.1) (tstamp 7cc58d2e-7048-4568-9742-05fe33a190d0)) + (fp_line (start 4.04 2.22) (end 10.04 2.22) (layer "F.Fab") (width 0.1) (tstamp 8a11b9de-2cdd-4789-86a9-9560dce37be3)) + (fp_line (start -0.32 0.32) (end 1.5 0.32) (layer "F.Fab") (width 0.1) (tstamp 991973e5-c33e-4fd7-9d08-5b8c860c033c)) + (fp_line (start 1.5 3.81) (end 1.5 -0.635) (layer "F.Fab") (width 0.1) (tstamp a973d81d-dc2b-4c24-986b-2a68cf233d09)) + (fp_line (start -0.32 2.86) (end 1.5 2.86) (layer "F.Fab") (width 0.1) (tstamp aa86a738-43cb-46e7-a81a-3927eaaf0bbf)) + (fp_line (start 1.5 -0.635) (end 2.135 -1.27) (layer "F.Fab") (width 0.1) (tstamp aeea301f-f51c-4638-a985-95b7058cefa7)) + (fp_line (start -0.32 2.22) (end -0.32 2.86) (layer "F.Fab") (width 0.1) (tstamp d1c9bc54-ab13-4f8f-a81d-1a1cda5d929d)) + (fp_line (start 10.04 -0.32) (end 10.04 0.32) (layer "F.Fab") (width 0.1) (tstamp de0ff899-339b-4d16-8534-ae6dbc12fab6)) + (fp_line (start -0.32 -0.32) (end 1.5 -0.32) (layer "F.Fab") (width 0.1) (tstamp e47d47ec-f8a0-40ac-a22a-2ee84dc26169)) + (fp_line (start -0.32 2.22) (end 1.5 2.22) (layer "F.Fab") (width 0.1) (tstamp f72e13f5-1b9d-4f74-a2ca-74b4633fdda0)) + (pad "1" thru_hole rect (at 0 0 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) + (net 8 "OUT") (pinfunction "Pin_1") (pintype "passive") (tstamp dcd7fdd7-88cd-4d46-b5a4-ee88172f682e)) + (pad "2" thru_hole oval (at 0 2.54 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) + (net 7 "GND") (pinfunction "Pin_2") (pintype "passive") (tstamp d4ba48f8-1d69-419e-a08e-d08da86e6db0)) + (model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x02_P2.54mm_Horizontal.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "Package_TO_SOT_SMD:SOT-223-3_TabPin2" (layer "F.Cu") + (tedit 5A02FF57) (tstamp cc3f16d1-d4d4-48bd-ba22-055881f847ce) + (at 113.8936 58.8772) + (descr "module CMS SOT223 4 pins") + (tags "CMS SOT") + (property "Sheetfile" "espwol.kicad_sch") + (property "Sheetname" "") + (path "/e90e38a8-0b49-403c-a738-d4ff340ea362") + (attr smd) + (fp_text reference "U1" (at 0 -4.5) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 01e8ca1c-6d2c-4d3d-bb80-5b843af373df) + ) + (fp_text value "KA78M05_TO252" (at 0 4.5) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 8411e53d-91d9-4cc0-bec5-29bc4e36ef17) + ) + (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") + (effects (font (size 0.8 0.8) (thickness 0.12))) + (tstamp 695ebc18-e1ef-43d1-bae1-751d561663db) + ) + (fp_line (start 1.91 3.41) (end 1.91 2.15) (layer "F.SilkS") (width 0.12) (tstamp 13435e02-e3b0-4664-8531-f93eb028a65c)) + (fp_line (start -4.1 -3.41) (end 1.91 -3.41) (layer "F.SilkS") (width 0.12) (tstamp 199412b1-654d-48d8-be6e-1ef46a2ff713)) + (fp_line (start -1.85 3.41) (end 1.91 3.41) (layer "F.SilkS") (width 0.12) (tstamp 26026c75-cebd-4cb1-94a0-c1bd60a0c056)) + (fp_line (start 1.91 -3.41) (end 1.91 -2.15) (layer "F.SilkS") (width 0.12) (tstamp 89db2dd5-0388-4016-a72b-b5aa35464253)) + (fp_line (start 4.4 -3.6) (end -4.4 -3.6) (layer "F.CrtYd") (width 0.05) (tstamp 5d04dd07-5429-4946-8ba2-d41724e6f7bf)) + (fp_line (start -4.4 -3.6) (end -4.4 3.6) (layer "F.CrtYd") (width 0.05) (tstamp 955b6de8-de98-4016-a1b9-f7b9ac4b9c04)) + (fp_line (start -4.4 3.6) (end 4.4 3.6) (layer "F.CrtYd") (width 0.05) (tstamp deb2c260-0082-4ad8-9b6b-9e11670b4b40)) + (fp_line (start 4.4 3.6) (end 4.4 -3.6) (layer "F.CrtYd") (width 0.05) (tstamp fe8978f8-5bdc-42ed-a560-91bd62ab4e51)) + (fp_line (start 1.85 -3.35) (end 1.85 3.35) (layer "F.Fab") (width 0.1) (tstamp 48736f21-60aa-4659-9045-207f1a06861b)) + (fp_line (start -0.85 -3.35) (end 1.85 -3.35) (layer "F.Fab") (width 0.1) (tstamp d2868d5f-f0f2-4722-8547-091fc3bc2a88)) + (fp_line (start -1.85 -2.35) (end -0.85 -3.35) (layer "F.Fab") (width 0.1) (tstamp d82649a2-ba65-461f-a08a-aa31b056bdd2)) + (fp_line (start -1.85 -2.35) (end -1.85 3.35) (layer "F.Fab") (width 0.1) (tstamp da32ab22-ae78-4fbd-8ff8-f259ea0cda7c)) + (fp_line (start -1.85 3.35) (end 1.85 3.35) (layer "F.Fab") (width 0.1) (tstamp dee35338-dd10-4116-91e4-2b45185297ba)) + (pad "1" smd rect (at -3.15 -2.3) (size 2 1.5) (layers "F.Cu" "F.Paste" "F.Mask") + (net 9 "+5V") (pinfunction "VI") (pintype "power_in") (tstamp da1215e8-038d-4238-844e-be1d1b7c8b8c)) + (pad "2" smd rect (at 3.15 0) (size 2 3.8) (layers "F.Cu" "F.Paste" "F.Mask") + (net 7 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 0245a660-38c3-472e-ac68-f4907508511e)) + (pad "2" smd rect (at -3.15 0) (size 2 1.5) (layers "F.Cu" "F.Paste" "F.Mask") + (net 7 "GND") (pinfunction "GND") (pintype "power_in") (tstamp b9088068-e55b-41bc-875f-e73bc0f4fb80)) + (pad "3" smd rect (at -3.15 2.3) (size 2 1.5) (layers "F.Cu" "F.Paste" "F.Mask") + (net 3 "+3V3") (pinfunction "VO") (pintype "power_out") (tstamp ae52dfd0-1969-4947-856f-3c8cba497c0d)) + (model "${KICAD6_3DMODEL_DIR}/Package_TO_SOT_SMD.3dshapes/SOT-223.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (gr_rect (start 98.171 51.308) (end 119.5324 62.611) (layer "Edge.Cuts") (width 0.1) (fill none) (tstamp 34ea4649-7b9a-45d6-a547-ec718c057086)) + + (segment (start 98.3996 62.3824) (end 98.3996 54.7624) (width 0.25) (layer "F.Cu") (net 3) (tstamp 2fd06002-b9de-4b77-ab49-847ee3f4d7ab)) + (segment (start 110.7436 61.1772) (end 109.5384 62.3824) (width 0.25) (layer "F.Cu") (net 3) (tstamp 5ad2a074-7a37-4401-aaf4-81856636a0f7)) + (segment (start 98.3996 54.7624) (end 100.0252 53.1368) (width 0.25) (layer "F.Cu") (net 3) (tstamp 74416ce0-0ddf-4b5e-b30f-582a35516f9d)) + (segment (start 109.5384 62.3824) (end 98.3996 62.3824) (width 0.25) (layer "F.Cu") (net 3) (tstamp fae34d5b-e8bd-4966-a4da-381f49546d25)) + (segment (start 105.5241 58.2168) (end 105.5393 58.232) (width 0.25) (layer "F.Cu") (net 6) (tstamp 376d3fb5-8ed7-455f-ae25-b9ddfcaa1a8f)) + (segment (start 102.5652 58.2168) (end 105.5241 58.2168) (width 0.25) (layer "F.Cu") (net 6) (tstamp 91767c12-2885-42f5-bb07-f2ae00331c8b)) + (segment (start 106.172 53.594) (end 107.803711 51.962289) (width 0.25) (layer "F.Cu") (net 8) (tstamp 10e4e56f-29b0-4eff-a6ad-83d19a1905d2)) + (segment (start 106.172 56.0324) (end 106.172 53.594) (width 0.25) (layer "F.Cu") (net 8) (tstamp 390d3e59-7d89-49ec-ba36-996f1f2bbe10)) + (segment (start 107.4143 59.182) (end 107.4143 57.2747) (width 0.25) (layer "F.Cu") (net 8) (tstamp 4303b52e-ebb2-41c0-b0f8-4ed051b312a1)) + (segment (start 113.430289 51.962289) (end 115.062 53.594) (width 0.25) (layer "F.Cu") (net 8) (tstamp 7911a10d-e818-46b4-b76a-caad0d704af6)) + (segment (start 107.4143 57.2747) (end 106.172 56.0324) (width 0.25) (layer "F.Cu") (net 8) (tstamp 8931c267-38c8-442f-87d2-2cf8d30c3f0a)) + (segment (start 107.803711 51.962289) (end 113.430289 51.962289) (width 0.25) (layer "F.Cu") (net 8) (tstamp e972a68e-4fb3-43e0-908b-45f4cd3b1ce1)) + (segment (start 110.7436 56.5772) (end 110.7436 55.3724) (width 0.5) (layer "F.Cu") (net 9) (tstamp 2cea31a2-d28d-4792-bf1e-5415b2d70353)) + (segment (start 110.7436 55.3724) (end 112.522 53.594) (width 0.5) (layer "F.Cu") (net 9) (tstamp f9527f70-71dc-4fdd-ad56-ffef12f2de1b)) + + (zone (net 0) (net_name "") (layer "F.Cu") (tstamp 0c3ede17-0133-49eb-aad7-6015372bc1e5) (hatch edge 0.508) + (connect_pads (clearance 0)) + (min_thickness 0.254) + (keepout (tracks allowed) (vias allowed) (pads allowed ) (copperpour not_allowed) (footprints allowed)) + (fill (thermal_gap 0.508) (thermal_bridge_width 0.508) (island_removal_mode 2) (island_area_min 20)) + (polygon + (pts + (xy 106.3244 58.8772) + (xy 106.426 59.436) + (xy 105.7148 60.198) + (xy 104.8004 59.5884) + (xy 103.5812 60.2488) + (xy 102.7684 59.7408) + (xy 103.5304 58.674) + ) + ) + ) + (zone (net 0) (net_name "") (layer "F.Cu") (tstamp 881e6eaf-3824-4297-9b66-02eda1d92afd) (hatch edge 0.508) + (connect_pads (clearance 0)) + (min_thickness 0.254) + (keepout (tracks allowed) (vias allowed) (pads allowed ) (copperpour not_allowed) (footprints allowed)) + (fill (thermal_gap 0.508) (thermal_bridge_width 0.508) (island_removal_mode 2) (island_area_min 20)) + (polygon + (pts + (xy 119.5832 53.594) + (xy 112.4712 53.6956) + (xy 111.0488 55.118) + (xy 108.5088 53.6448) + (xy 108.7628 51.816) + (xy 108.712 51.4604) + (xy 113.8428 51.308) + (xy 119.5324 51.308) + ) + ) + ) + (zone (net 7) (net_name "GND") (layer "F.Cu") (tstamp 90ecf332-a0bf-4e40-af08-7106a484ee72) (hatch edge 0.508) + (connect_pads (clearance 0.508)) + (min_thickness 0.254) (filled_areas_thickness no) + (fill yes (thermal_gap 0.508) (thermal_bridge_width 0.508) (island_removal_mode 2) (island_area_min 10)) + (polygon + (pts + (xy 119.5324 62.611) + (xy 98.171 62.611) + (xy 98.171 51.308) + (xy 119.5324 51.308) + ) + ) + (filled_polygon + (layer "F.Cu") + (pts + (xy 117.796599 53.639527) + (xy 117.843854 53.692512) + (xy 117.856 53.746487) + (xy 117.856 54.912517) + (xy 117.860064 54.926359) + (xy 117.873478 54.928393) + (xy 117.880184 54.927534) + (xy 117.890262 54.925392) + (xy 118.094255 54.864191) + (xy 118.103842 54.860433) + (xy 118.295095 54.766739) + (xy 118.303945 54.761464) + (xy 118.477328 54.637792) + (xy 118.4852 54.631139) + (xy 118.636052 54.480812) + (xy 118.64273 54.472965) + (xy 118.767003 54.30002) + (xy 118.772313 54.291183) + (xy 118.784943 54.265629) + (xy 118.833057 54.213422) + (xy 118.901758 54.195515) + (xy 118.969235 54.217594) + (xy 119.014063 54.272648) + (xy 119.0239 54.321456) + (xy 119.0239 61.9765) + (xy 119.003898 62.044621) + (xy 118.950242 62.091114) + (xy 118.8979 62.1025) + (xy 112.378037 62.1025) + (xy 112.309916 62.082498) + (xy 112.263423 62.028842) + (xy 112.253288 61.975334) + (xy 112.2521 61.975334) + (xy 112.2521 60.821869) + (xy 115.535601 60.821869) + (xy 115.535971 60.82869) + (xy 115.541495 60.879552) + (xy 115.545121 60.894804) + (xy 115.590276 61.015254) + (xy 115.598814 61.030849) + (xy 115.675315 61.132924) + (xy 115.687876 61.145485) + (xy 115.789951 61.221986) + (xy 115.805546 61.230524) + (xy 115.925994 61.275678) + (xy 115.941249 61.279305) + (xy 115.992114 61.284831) + (xy 115.998928 61.2852) + (xy 116.771485 61.2852) + (xy 116.786724 61.280725) + (xy 116.787929 61.279335) + (xy 116.7896 61.271652) + (xy 116.7896 61.267084) + (xy 117.2976 61.267084) + (xy 117.302075 61.282323) + (xy 117.303465 61.283528) + (xy 117.311148 61.285199) + (xy 118.088269 61.285199) + (xy 118.09509 61.284829) + (xy 118.145952 61.279305) + (xy 118.161204 61.275679) + (xy 118.281654 61.230524) + (xy 118.297249 61.221986) + (xy 118.399324 61.145485) + (xy 118.411885 61.132924) + (xy 118.488386 61.030849) + (xy 118.496924 61.015254) + (xy 118.542078 60.894806) + (xy 118.545705 60.879551) + (xy 118.551231 60.828686) + (xy 118.5516 60.821872) + (xy 118.5516 59.149315) + (xy 118.547125 59.134076) + (xy 118.545735 59.132871) + (xy 118.538052 59.1312) + (xy 117.315715 59.1312) + (xy 117.300476 59.135675) + (xy 117.299271 59.137065) + (xy 117.2976 59.144748) + (xy 117.2976 61.267084) + (xy 116.7896 61.267084) + (xy 116.7896 59.149315) + (xy 116.785125 59.134076) + (xy 116.783735 59.132871) + (xy 116.776052 59.1312) + (xy 115.553716 59.1312) + (xy 115.538477 59.135675) + (xy 115.537272 59.137065) + (xy 115.535601 59.144748) + (xy 115.535601 60.821869) + (xy 112.2521 60.821869) + (xy 112.2521 60.379066) + (xy 112.245345 60.316884) + (xy 112.194215 60.180495) + (xy 112.135647 60.102348) + (xy 112.110799 60.035842) + (xy 112.125852 59.966459) + (xy 112.135647 59.951218) + (xy 112.188386 59.880848) + (xy 112.196924 59.865254) + (xy 112.242078 59.744806) + (xy 112.245705 59.729551) + (xy 112.251231 59.678686) + (xy 112.2516 59.671872) + (xy 112.2516 59.149315) + (xy 112.247125 59.134076) + (xy 112.245735 59.132871) + (xy 112.238052 59.1312) + (xy 109.253716 59.1312) + (xy 109.238477 59.135675) + (xy 109.237272 59.137065) + (xy 109.235601 59.144748) + (xy 109.235601 59.671869) + (xy 109.235971 59.67869) + (xy 109.241495 59.729552) + (xy 109.245121 59.744804) + (xy 109.290276 59.865254) + (xy 109.298814 59.880848) + (xy 109.351553 59.951218) + (xy 109.376401 60.017724) + (xy 109.361348 60.087107) + (xy 109.351553 60.102348) + (xy 109.292985 60.180495) + (xy 109.241855 60.316884) + (xy 109.2351 60.379066) + (xy 109.2351 61.6229) + (xy 109.215098 61.691021) + (xy 109.161442 61.737514) + (xy 109.1091 61.7489) + (xy 103.77033 61.7489) + (xy 103.702209 61.728898) + (xy 103.655716 61.675242) + (xy 103.645612 61.604968) + (xy 103.668007 61.549374) + (xy 103.730209 61.462811) + (xy 103.735513 61.453983) + (xy 103.82987 61.263067) + (xy 103.833669 61.253472) + (xy 103.895577 61.04971) + (xy 103.897755 61.039637) + (xy 103.899186 61.028762) + (xy 103.896975 61.014578) + (xy 103.883817 61.0108) + (xy 102.4372 61.0108) + (xy 102.369079 60.990798) + (xy 102.322586 60.937142) + (xy 102.3112 60.8848) + (xy 102.3112 60.6288) + (xy 102.331202 60.560679) + (xy 102.384858 60.514186) + (xy 102.4372 60.5028) + (xy 103.883544 60.5028) + (xy 103.897075 60.498827) + (xy 103.89838 60.489747) + (xy 103.875302 60.397871) + (xy 104.300256 60.397871) + (xy 104.340907 60.53779) + (xy 104.347152 60.552221) + (xy 104.423711 60.681678) + (xy 104.433351 60.694104) + (xy 104.539696 60.800449) + (xy 104.552122 60.810089) + (xy 104.681579 60.886648) + (xy 104.69601 60.892893) + (xy 104.841865 60.935269) + (xy 104.854467 60.93757) + (xy 104.882884 60.939807) + (xy 104.887814 60.94) + (xy 105.267185 60.94) + (xy 105.282424 60.935525) + (xy 105.283629 60.934135) + (xy 105.2853 60.926452) + (xy 105.2853 60.921884) + (xy 105.7933 60.921884) + (xy 105.797775 60.937123) + (xy 105.799165 60.938328) + (xy 105.806848 60.939999) + (xy 106.190784 60.939999) + (xy 106.19572 60.939805) + (xy 106.224136 60.93757) + (xy 106.236731 60.93527) + (xy 106.38259 60.892893) + (xy 106.397021 60.886648) + (xy 106.526478 60.810089) + (xy 106.538904 60.800449) + (xy 106.645249 60.694104) + (xy 106.654889 60.681678) + (xy 106.731448 60.552221) + (xy 106.737693 60.53779) + (xy 106.776739 60.403395) + (xy 106.776699 60.389294) + (xy 106.76943 60.386) + (xy 105.829287 60.386) + (xy 105.802242 60.378059) + (xy 105.795851 60.387822) + (xy 105.7933 60.399548) + (xy 105.7933 60.921884) + (xy 105.2853 60.921884) + (xy 105.2853 60.404115) + (xy 105.280825 60.388876) + (xy 105.279435 60.387671) + (xy 105.271752 60.386) + (xy 104.314922 60.386) + (xy 104.301391 60.389973) + (xy 104.300256 60.397871) + (xy 103.875302 60.397871) + (xy 103.856414 60.322675) + (xy 103.853094 60.312924) + (xy 103.824782 60.24781) + (xy 103.815962 60.177364) + (xy 103.846629 60.113332) + (xy 103.88032 60.086777) + (xy 104.237676 59.893209) + (xy 104.297688 59.878) + (xy 105.196651 59.878) + (xy 105.266543 59.899162) + (xy 105.7148 60.198) + (xy 105.718664 60.19386) + (xy 105.726499 60.196304) + (xy 105.737174 60.174028) + (xy 105.976107 59.918028) + (xy 106.03721 59.881876) + (xy 106.06822 59.878) + (xy 106.421958 59.878) + (xy 106.486097 59.895547) + (xy 106.563199 59.941145) + (xy 106.57081 59.943356) + (xy 106.570812 59.943357) + (xy 106.623031 59.958528) + (xy 106.722969 59.987562) + (xy 106.729374 59.988066) + (xy 106.729379 59.988067) + (xy 106.757842 59.990307) + (xy 106.75785 59.990307) + (xy 106.760298 59.9905) + (xy 108.068302 59.9905) + (xy 108.07075 59.990307) + (xy 108.070758 59.990307) + (xy 108.099221 59.988067) + (xy 108.099226 59.988066) + (xy 108.105631 59.987562) + (xy 108.205569 59.958528) + (xy 108.257788 59.943357) + (xy 108.25779 59.943356) + (xy 108.265401 59.941145) + (xy 108.30449 59.918028) + (xy 108.40178 59.860491) + (xy 108.401783 59.860489) + (xy 108.408607 59.856453) + (xy 108.526253 59.738807) + (xy 108.530289 59.731983) + (xy 108.530291 59.73198) + (xy 108.606908 59.602427) + (xy 108.610945 59.595601) + (xy 108.657362 59.435831) + (xy 108.658847 59.41697) + (xy 108.660107 59.400958) + (xy 108.660107 59.40095) + (xy 108.6603 59.398502) + (xy 108.6603 58.965498) + (xy 108.657362 58.928169) + (xy 108.610945 58.768399) + (xy 108.573143 58.70448) + (xy 108.530291 58.63202) + (xy 108.530289 58.632017) + (xy 108.526253 58.625193) + (xy 108.408607 58.507547) + (xy 108.401783 58.503511) + (xy 108.40178 58.503509) + (xy 108.272227 58.426892) + (xy 108.272228 58.426892) + (xy 108.265401 58.422855) + (xy 108.257791 58.420644) + (xy 108.257786 58.420642) + (xy 108.138648 58.38603) + (xy 108.078812 58.347817) + (xy 108.049134 58.283321) + (xy 108.0478 58.265033) + (xy 108.0478 57.353468) + (xy 108.048327 57.342285) + (xy 108.050002 57.334792) + (xy 108.047862 57.266701) + (xy 108.0478 57.262744) + (xy 108.0478 57.234844) + (xy 108.047296 57.230853) + (xy 108.046363 57.219011) + (xy 108.045803 57.201173) + (xy 108.044974 57.174811) + (xy 108.039321 57.155352) + (xy 108.035312 57.135993) + (xy 108.035146 57.134683) + (xy 108.032774 57.115903) + (xy 108.029858 57.108537) + (xy 108.029856 57.108531) + (xy 108.0165 57.074798) + (xy 108.012655 57.063568) + (xy 108.00253 57.028717) + (xy 108.00253 57.028716) + (xy 108.000319 57.021107) + (xy 107.990005 57.003666) + (xy 107.981308 56.985913) + (xy 107.976772 56.974458) + (xy 107.973852 56.967083) + (xy 107.947863 56.931312) + (xy 107.941347 56.921392) + (xy 107.922878 56.890163) + (xy 107.918842 56.883338) + (xy 107.904521 56.869017) + (xy 107.89168 56.853983) + (xy 107.887112 56.847696) + (xy 107.879772 56.837593) + (xy 107.845695 56.809402) + (xy 107.836916 56.801412) + (xy 106.842405 55.8069) + (xy 106.808379 55.744588) + (xy 106.8055 55.717805) + (xy 106.8055 55.0785) + (xy 106.825502 55.010379) + (xy 106.879158 54.963886) + (xy 106.9315 54.9525) + (xy 107.070134 54.9525) + (xy 107.132316 54.945745) + (xy 107.268705 54.894615) + (xy 107.385261 54.807261) + (xy 107.472615 54.690705) + (xy 107.498672 54.621199) + (xy 107.516798 54.572848) + (xy 107.55944 54.516084) + (xy 107.626001 54.491384) + (xy 107.69535 54.506592) + (xy 107.730017 54.53458) + (xy 107.755218 54.563673) + (xy 107.76258 54.570883) + (xy 107.926434 54.706916) + (xy 107.934881 54.712831) + (xy 108.118756 54.820279) + (xy 108.128042 54.824729) + (xy 108.327001 54.900703) + (xy 108.336899 54.903579) + (xy 108.44025 54.924606) + (xy 108.454299 54.92341) + (xy 108.458 54.913065) + (xy 108.458 53.834075) + (xy 108.478002 53.765954) + (xy 108.531658 53.719461) + (xy 108.601932 53.709357) + (xy 108.647215 53.725081) + (xy 108.903217 53.873562) + (xy 108.952108 53.925041) + (xy 108.966 53.982555) + (xy 108.966 54.912517) + (xy 108.970064 54.926359) + (xy 108.983478 54.928393) + (xy 108.990184 54.927534) + (xy 109.000262 54.925392) + (xy 109.204255 54.864191) + (xy 109.213842 54.860433) + (xy 109.405095 54.766739) + (xy 109.413945 54.761464) + (xy 109.587328 54.637792) + (xy 109.5952 54.631139) + (xy 109.749713 54.477163) + (xy 109.750689 54.478143) + (xy 109.804716 54.442734) + (xy 109.875709 54.442098) + (xy 109.904509 54.454311) + (xy 110.192248 54.6212) + (xy 110.241138 54.672679) + (xy 110.254435 54.742419) + (xy 110.227918 54.808278) + (xy 110.222763 54.813875) + (xy 110.222782 54.813892) + (xy 110.188565 54.854168) + (xy 110.181635 54.861684) + (xy 110.17594 54.867379) + (xy 110.17366 54.870261) + (xy 110.158319 54.889651) + (xy 110.155528 54.893055) + (xy 110.113121 54.942971) + (xy 110.108267 54.948685) + (xy 110.104939 54.955201) + (xy 110.101572 54.96025) + (xy 110.098405 54.965379) + (xy 110.093866 54.971116) + (xy 110.062945 55.037275) + (xy 110.061042 55.041169) + (xy 110.027831 55.106208) + (xy 110.026092 55.113316) + (xy 110.023993 55.118959) + (xy 110.022076 55.124722) + (xy 110.018978 55.13135) + (xy 110.017488 55.138512) + (xy 110.017488 55.138513) + (xy 110.004114 55.202812) + (xy 110.003151 55.207066) + (xy 109.999339 55.222648) + (xy 109.963721 55.284061) + (xy 109.900553 55.31647) + (xy 109.87695 55.3187) + (xy 109.695466 55.3187) + (xy 109.633284 55.325455) + (xy 109.496895 55.376585) + (xy 109.380339 55.463939) + (xy 109.292985 55.580495) + (xy 109.241855 55.716884) + (xy 109.2351 55.779066) + (xy 109.2351 57.375334) + (xy 109.241855 57.437516) + (xy 109.292985 57.573905) + (xy 109.350131 57.650155) + (xy 109.351553 57.652052) + (xy 109.376401 57.718558) + (xy 109.361348 57.787941) + (xy 109.351553 57.803182) + (xy 109.298814 57.873552) + (xy 109.290276 57.889146) + (xy 109.245122 58.009594) + (xy 109.241495 58.024849) + (xy 109.235969 58.075714) + (xy 109.2356 58.082528) + (xy 109.2356 58.605085) + (xy 109.240075 58.620324) + (xy 109.241465 58.621529) + (xy 109.249148 58.6232) + (xy 112.233484 58.6232) + (xy 112.248723 58.618725) + (xy 112.249928 58.617335) + (xy 112.251599 58.609652) + (xy 112.251599 58.605085) + (xy 115.5356 58.605085) + (xy 115.540075 58.620324) + (xy 115.541465 58.621529) + (xy 115.549148 58.6232) + (xy 116.771485 58.6232) + (xy 116.786724 58.618725) + (xy 116.787929 58.617335) + (xy 116.7896 58.609652) + (xy 116.7896 58.605085) + (xy 117.2976 58.605085) + (xy 117.302075 58.620324) + (xy 117.303465 58.621529) + (xy 117.311148 58.6232) + (xy 118.533484 58.6232) + (xy 118.548723 58.618725) + (xy 118.549928 58.617335) + (xy 118.551599 58.609652) + (xy 118.551599 56.932531) + (xy 118.551229 56.92571) + (xy 118.545705 56.874848) + (xy 118.542079 56.859596) + (xy 118.496924 56.739146) + (xy 118.488386 56.723551) + (xy 118.411885 56.621476) + (xy 118.399324 56.608915) + (xy 118.297249 56.532414) + (xy 118.281654 56.523876) + (xy 118.161206 56.478722) + (xy 118.145951 56.475095) + (xy 118.095086 56.469569) + (xy 118.088272 56.4692) + (xy 117.315715 56.4692) + (xy 117.300476 56.473675) + (xy 117.299271 56.475065) + (xy 117.2976 56.482748) + (xy 117.2976 58.605085) + (xy 116.7896 58.605085) + (xy 116.7896 56.487316) + (xy 116.785125 56.472077) + (xy 116.783735 56.470872) + (xy 116.776052 56.469201) + (xy 115.998931 56.469201) + (xy 115.99211 56.469571) + (xy 115.941248 56.475095) + (xy 115.925996 56.478721) + (xy 115.805546 56.523876) + (xy 115.789951 56.532414) + (xy 115.687876 56.608915) + (xy 115.675315 56.621476) + (xy 115.598814 56.723551) + (xy 115.590276 56.739146) + (xy 115.545122 56.859594) + (xy 115.541495 56.874849) + (xy 115.535969 56.925714) + (xy 115.5356 56.932528) + (xy 115.5356 58.605085) + (xy 112.251599 58.605085) + (xy 112.251599 58.082531) + (xy 112.251229 58.07571) + (xy 112.245705 58.024848) + (xy 112.242079 58.009596) + (xy 112.196924 57.889146) + (xy 112.188386 57.873552) + (xy 112.135647 57.803182) + (xy 112.110799 57.736676) + (xy 112.125852 57.667293) + (xy 112.135647 57.652052) + (xy 112.137069 57.650155) + (xy 112.194215 57.573905) + (xy 112.245345 57.437516) + (xy 112.2521 57.375334) + (xy 112.2521 55.779066) + (xy 112.245345 55.716884) + (xy 112.194215 55.580495) + (xy 112.106861 55.463939) + (xy 112.00473 55.387396) + (xy 111.962218 55.33054) + (xy 111.957192 55.259722) + (xy 111.991203 55.197478) + (xy 112.199276 54.989405) + (xy 112.261588 54.955379) + (xy 112.288371 54.9525) + (xy 113.420134 54.9525) + (xy 113.482316 54.945745) + (xy 113.618705 54.894615) + (xy 113.735261 54.807261) + (xy 113.822615 54.690705) + (xy 113.835087 54.657435) + (xy 113.866598 54.573382) + (xy 113.90924 54.516618) + (xy 113.975802 54.491918) + (xy 114.04515 54.507126) + (xy 114.079817 54.535114) + (xy 114.10825 54.567938) + (xy 114.280126 54.710632) + (xy 114.473 54.823338) + (xy 114.681692 54.90303) + (xy 114.68676 54.904061) + (xy 114.686763 54.904062) + (xy 114.781862 54.92341) + (xy 114.900597 54.947567) + (xy 114.905772 54.947757) + (xy 114.905774 54.947757) + (xy 115.118673 54.955564) + (xy 115.118677 54.955564) + (xy 115.123837 54.955753) + (xy 115.128957 54.955097) + (xy 115.128959 54.955097) + (xy 115.340288 54.928025) + (xy 115.340289 54.928025) + (xy 115.345416 54.927368) + (xy 115.350366 54.925883) + (xy 115.554429 54.864661) + (xy 115.554434 54.864659) + (xy 115.559384 54.863174) + (xy 115.759994 54.764896) + (xy 115.94186 54.635173) + (xy 116.100096 54.477489) + (xy 116.151485 54.405974) + (xy 116.230453 54.296077) + (xy 116.23164 54.29693) + (xy 116.27896 54.253362) + (xy 116.348897 54.241145) + (xy 116.414338 54.268678) + (xy 116.442166 54.300511) + (xy 116.499694 54.394388) + (xy 116.505777 54.402699) + (xy 116.645213 54.563667) + (xy 116.65258 54.570883) + (xy 116.816434 54.706916) + (xy 116.824881 54.712831) + (xy 117.008756 54.820279) + (xy 117.018042 54.824729) + (xy 117.217001 54.900703) + (xy 117.226899 54.903579) + (xy 117.33025 54.924606) + (xy 117.344299 54.92341) + (xy 117.348 54.913065) + (xy 117.348 53.750145) + (xy 117.368002 53.682024) + (xy 117.421658 53.635531) + (xy 117.4722 53.624158) + (xy 117.677374 53.621226) + (xy 117.728201 53.6205) + ) + ) + ) +) diff --git a/pcb/espwol.kicad_prl b/pcb/espwol.kicad_prl new file mode 100644 index 0000000..16dc674 --- /dev/null +++ b/pcb/espwol.kicad_prl @@ -0,0 +1,75 @@ +{ + "board": { + "active_layer": 37, + "active_layer_preset": "", + "auto_track_width": true, + "hidden_nets": [], + "high_contrast_mode": 0, + "net_color_mode": 1, + "opacity": { + "pads": 1.0, + "tracks": 1.0, + "vias": 1.0, + "zones": 0.6 + }, + "ratsnest_display_mode": 0, + "selection_filter": { + "dimensions": true, + "footprints": true, + "graphics": true, + "keepouts": true, + "lockedItems": true, + "otherItems": true, + "pads": true, + "text": true, + "tracks": true, + "vias": true, + "zones": true + }, + "visible_items": [ + 0, + 1, + 2, + 3, + 4, + 5, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 32, + 33, + 34, + 35, + 36 + ], + "visible_layers": "7fc3ccf_80000001", + "zone_display_mode": 0 + }, + "meta": { + "filename": "espwol.kicad_prl", + "version": 3 + }, + "project": { + "files": [] + } +} diff --git a/pcb/espwol.kicad_pro b/pcb/espwol.kicad_pro new file mode 100644 index 0000000..ff5bdbb --- /dev/null +++ b/pcb/espwol.kicad_pro @@ -0,0 +1,435 @@ +{ + "board": { + "design_settings": { + "defaults": { + "board_outline_line_width": 0.09999999999999999, + "copper_line_width": 0.19999999999999998, + "copper_text_italic": false, + "copper_text_size_h": 1.5, + "copper_text_size_v": 1.5, + "copper_text_thickness": 0.3, + "copper_text_upright": false, + "courtyard_line_width": 0.049999999999999996, + "dimension_precision": 4, + "dimension_units": 3, + "dimensions": { + "arrow_length": 1270000, + "extension_offset": 500000, + "keep_text_aligned": true, + "suppress_zeroes": false, + "text_position": 0, + "units_format": 1 + }, + "fab_line_width": 0.09999999999999999, + "fab_text_italic": false, + "fab_text_size_h": 1.0, + "fab_text_size_v": 1.0, + "fab_text_thickness": 0.15, + "fab_text_upright": false, + "other_line_width": 0.15, + "other_text_italic": false, + "other_text_size_h": 1.0, + "other_text_size_v": 1.0, + "other_text_thickness": 0.15, + "other_text_upright": false, + "pads": { + "drill": 0.762, + "height": 1.524, + "width": 1.524 + }, + "silk_line_width": 0.15, + "silk_text_italic": false, + "silk_text_size_h": 1.0, + "silk_text_size_v": 1.0, + "silk_text_thickness": 0.15, + "silk_text_upright": false, + "zones": { + "45_degree_only": false, + "min_clearance": 0.508 + } + }, + "diff_pair_dimensions": [ + { + "gap": 0.0, + "via_gap": 0.0, + "width": 0.0 + } + ], + "drc_exclusions": [], + "meta": { + "version": 2 + }, + "rule_severities": { + "annular_width": "error", + "clearance": "error", + "copper_edge_clearance": "error", + "courtyards_overlap": "error", + "diff_pair_gap_out_of_range": "error", + "diff_pair_uncoupled_length_too_long": "error", + "drill_out_of_range": "error", + "duplicate_footprints": "warning", + "extra_footprint": "warning", + "footprint_type_mismatch": "error", + "hole_clearance": "error", + "hole_near_hole": "error", + "invalid_outline": "error", + "item_on_disabled_layer": "error", + "items_not_allowed": "error", + "length_out_of_range": "error", + "malformed_courtyard": "error", + "microvia_drill_out_of_range": "error", + "missing_courtyard": "ignore", + "missing_footprint": "warning", + "net_conflict": "warning", + "npth_inside_courtyard": "ignore", + "padstack": "error", + "pth_inside_courtyard": "ignore", + "shorting_items": "error", + "silk_over_copper": "warning", + "silk_overlap": "warning", + "skew_out_of_range": "error", + "through_hole_pad_without_hole": "error", + "too_many_vias": "error", + "track_dangling": "warning", + "track_width": "error", + "tracks_crossing": "error", + "unconnected_items": "error", + "unresolved_variable": "error", + "via_dangling": "warning", + "zone_has_empty_net": "error", + "zones_intersect": "error" + }, + "rules": { + "allow_blind_buried_vias": false, + "allow_microvias": false, + "max_error": 0.005, + "min_clearance": 0.0, + "min_copper_edge_clearance": 0.0, + "min_hole_clearance": 0.25, + "min_hole_to_hole": 0.25, + "min_microvia_diameter": 0.19999999999999998, + "min_microvia_drill": 0.09999999999999999, + "min_silk_clearance": 0.0, + "min_through_hole_diameter": 0.3, + "min_track_width": 0.19999999999999998, + "min_via_annular_width": 0.049999999999999996, + "min_via_diameter": 0.39999999999999997, + "solder_mask_clearance": 0.0, + "solder_mask_min_width": 0.0, + "use_height_for_length_calcs": true + }, + "track_widths": [ + 0.0, + 0.25, + 0.5 + ], + "via_dimensions": [ + { + "diameter": 0.0, + "drill": 0.0 + } + ], + "zones_allow_external_fillets": false, + "zones_use_no_outline": true + }, + "layer_presets": [] + }, + "boards": [], + "cvpcb": { + "equivalence_files": [] + }, + "erc": { + "erc_exclusions": [], + "meta": { + "version": 0 + }, + "pin_map": [ + [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 2 + ], + [ + 0, + 2, + 0, + 1, + 0, + 0, + 1, + 0, + 2, + 2, + 2, + 2 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 1, + 0, + 1, + 2 + ], + [ + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 1, + 2, + 1, + 1, + 2 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 2 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 2 + ], + [ + 1, + 1, + 1, + 1, + 1, + 0, + 1, + 1, + 1, + 1, + 1, + 2 + ], + [ + 0, + 0, + 0, + 1, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 2 + ], + [ + 0, + 2, + 1, + 2, + 0, + 0, + 1, + 0, + 2, + 2, + 2, + 2 + ], + [ + 0, + 2, + 0, + 1, + 0, + 0, + 1, + 0, + 2, + 0, + 0, + 2 + ], + [ + 0, + 2, + 1, + 1, + 0, + 0, + 1, + 0, + 2, + 0, + 0, + 2 + ], + [ + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2 + ] + ], + "rule_severities": { + "bus_definition_conflict": "error", + "bus_entry_needed": "error", + "bus_label_syntax": "error", + "bus_to_bus_conflict": "error", + "bus_to_net_conflict": "error", + "different_unit_footprint": "error", + "different_unit_net": "error", + "duplicate_reference": "error", + "duplicate_sheet_names": "error", + "extra_units": "error", + "global_label_dangling": "warning", + "hier_label_mismatch": "error", + "label_dangling": "error", + "lib_symbol_issues": "warning", + "multiple_net_names": "warning", + "net_not_bus_member": "warning", + "no_connect_connected": "warning", + "no_connect_dangling": "warning", + "pin_not_connected": "error", + "pin_not_driven": "error", + "pin_to_pin": "warning", + "power_pin_not_driven": "error", + "similar_labels": "warning", + "unannotated": "error", + "unit_value_mismatch": "error", + "unresolved_variable": "error", + "wire_dangling": "error" + } + }, + "libraries": { + "pinned_footprint_libs": [], + "pinned_symbol_libs": [] + }, + "meta": { + "filename": "espwol.kicad_pro", + "version": 1 + }, + "net_settings": { + "classes": [ + { + "bus_width": 12.0, + "clearance": 0.2, + "diff_pair_gap": 0.25, + "diff_pair_via_gap": 0.25, + "diff_pair_width": 0.2, + "line_style": 0, + "microvia_diameter": 0.3, + "microvia_drill": 0.1, + "name": "Default", + "pcb_color": "rgba(0, 0, 0, 0.000)", + "schematic_color": "rgba(0, 0, 0, 0.000)", + "track_width": 0.25, + "via_diameter": 0.8, + "via_drill": 0.4, + "wire_width": 6.0 + } + ], + "meta": { + "version": 2 + }, + "net_colors": null + }, + "pcbnew": { + "last_paths": { + "gencad": "", + "idf": "", + "netlist": "", + "specctra_dsn": "", + "step": "", + "vrml": "" + }, + "page_layout_descr_file": "" + }, + "schematic": { + "annotate_start_num": 0, + "drawing": { + "default_line_thickness": 6.0, + "default_text_size": 50.0, + "field_names": [], + "intersheets_ref_own_page": false, + "intersheets_ref_prefix": "", + "intersheets_ref_short": false, + "intersheets_ref_show": false, + "intersheets_ref_suffix": "", + "junction_size_choice": 3, + "label_size_ratio": 0.375, + "pin_symbol_size": 25.0, + "text_offset_ratio": 0.15 + }, + "legacy_lib_dir": "", + "legacy_lib_list": [], + "meta": { + "version": 1 + }, + "net_format_name": "", + "ngspice": { + "fix_include_paths": true, + "fix_passive_vals": false, + "meta": { + "version": 0 + }, + "model_mode": 0, + "workbook_filename": "" + }, + "page_layout_descr_file": "", + "plot_directory": "", + "spice_adjust_passive_values": false, + "spice_external_command": "spice \"%I\"", + "subpart_first_id": 65, + "subpart_id_separator": 0 + }, + "sheets": [ + [ + "e63e39d7-6ac0-4ffd-8aa3-1841a4541b55", + "" + ] + ], + "text_variables": {} +} diff --git a/pcb/espwol.kicad_sch b/pcb/espwol.kicad_sch new file mode 100644 index 0000000..1d7d58a --- /dev/null +++ b/pcb/espwol.kicad_sch @@ -0,0 +1,1001 @@ +(kicad_sch (version 20211123) (generator eeschema) + + (uuid e63e39d7-6ac0-4ffd-8aa3-1841a4541b55) + + (paper "A4") + + (lib_symbols + (symbol "Connector:Conn_01x02_Male" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes) + (property "Reference" "J" (id 0) (at 0 2.54 0) + (effects (font (size 1.27 1.27))) + ) + (property "Value" "Conn_01x02_Male" (id 1) (at 0 -5.08 0) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_keywords" "connector" (id 4) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_description" "Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)" (id 5) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_fp_filters" "Connector*:*_1x??_*" (id 6) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "Conn_01x02_Male_1_1" + (polyline + (pts + (xy 1.27 -2.54) + (xy 0.8636 -2.54) + ) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 1.27 0) + (xy 0.8636 0) + ) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (rectangle (start 0.8636 -2.413) (end 0 -2.667) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start 0.8636 0.127) (end 0 -0.127) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (pin passive line (at 5.08 0 180) (length 3.81) + (name "Pin_1" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 5.08 -2.54 180) (length 3.81) + (name "Pin_2" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "Connector:Conn_01x03_Male" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes) + (property "Reference" "J" (id 0) (at 0 5.08 0) + (effects (font (size 1.27 1.27))) + ) + (property "Value" "Conn_01x03_Male" (id 1) (at 0 -5.08 0) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_keywords" "connector" (id 4) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_description" "Generic connector, single row, 01x03, script generated (kicad-library-utils/schlib/autogen/connector/)" (id 5) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_fp_filters" "Connector*:*_1x??_*" (id 6) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "Conn_01x03_Male_1_1" + (polyline + (pts + (xy 1.27 -2.54) + (xy 0.8636 -2.54) + ) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 1.27 0) + (xy 0.8636 0) + ) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 1.27 2.54) + (xy 0.8636 2.54) + ) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (rectangle (start 0.8636 -2.413) (end 0 -2.667) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start 0.8636 0.127) (end 0 -0.127) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start 0.8636 2.667) (end 0 2.413) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (pin passive line (at 5.08 2.54 180) (length 3.81) + (name "Pin_1" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 5.08 0 180) (length 3.81) + (name "Pin_2" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 5.08 -2.54 180) (length 3.81) + (name "Pin_3" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "Connector_Generic:Conn_02x04_Counter_Clockwise" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes) + (property "Reference" "J" (id 0) (at 1.27 5.08 0) + (effects (font (size 1.27 1.27))) + ) + (property "Value" "Conn_02x04_Counter_Clockwise" (id 1) (at 1.27 -7.62 0) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_keywords" "connector" (id 4) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_description" "Generic connector, double row, 02x04, counter clockwise pin numbering scheme (similar to DIP packge numbering), script generated (kicad-library-utils/schlib/autogen/connector/)" (id 5) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_fp_filters" "Connector*:*_2x??_*" (id 6) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "Conn_02x04_Counter_Clockwise_1_1" + (rectangle (start -1.27 -4.953) (end 0 -5.207) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (rectangle (start -1.27 -2.413) (end 0 -2.667) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (rectangle (start -1.27 0.127) (end 0 -0.127) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (rectangle (start -1.27 2.667) (end 0 2.413) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (rectangle (start -1.27 3.81) (end 3.81 -6.35) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type background)) + ) + (rectangle (start 3.81 -4.953) (end 2.54 -5.207) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (rectangle (start 3.81 -2.413) (end 2.54 -2.667) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (rectangle (start 3.81 0.127) (end 2.54 -0.127) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (rectangle (start 3.81 2.667) (end 2.54 2.413) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (pin passive line (at -5.08 2.54 0) (length 3.81) + (name "Pin_1" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at -5.08 0 0) (length 3.81) + (name "Pin_2" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at -5.08 -2.54 0) (length 3.81) + (name "Pin_3" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at -5.08 -5.08 0) (length 3.81) + (name "Pin_4" (effects (font (size 1.27 1.27)))) + (number "4" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 7.62 -5.08 180) (length 3.81) + (name "Pin_5" (effects (font (size 1.27 1.27)))) + (number "5" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 7.62 -2.54 180) (length 3.81) + (name "Pin_6" (effects (font (size 1.27 1.27)))) + (number "6" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 7.62 0 180) (length 3.81) + (name "Pin_7" (effects (font (size 1.27 1.27)))) + (number "7" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 7.62 2.54 180) (length 3.81) + (name "Pin_8" (effects (font (size 1.27 1.27)))) + (number "8" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "Regulator_Linear:KA78M05_TO252" (pin_names (offset 0.254)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at -3.81 3.175 0) + (effects (font (size 1.27 1.27))) + ) + (property "Value" "KA78M05_TO252" (id 1) (at 0 3.175 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "Package_TO_SOT_SMD:TO-252-2" (id 2) (at 0 5.715 0) + (effects (font (size 1.27 1.27) italic) hide) + ) + (property "Datasheet" "https://www.onsemi.com/pub/Collateral/MC78M00-D.PDF" (id 3) (at 0 -1.27 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_keywords" "Voltage Regulator 500mA Positive" (id 4) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_description" "Positive 500mA 35V Linear Regulator, Fixed Output 5V, TO-252 (D-PAK)" (id 5) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_fp_filters" "TO?252*" (id 6) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "KA78M05_TO252_0_1" + (rectangle (start -5.08 1.905) (end 5.08 -5.08) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type background)) + ) + ) + (symbol "KA78M05_TO252_1_1" + (pin power_in line (at -7.62 0 0) (length 2.54) + (name "VI" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin power_in line (at 0 -7.62 90) (length 2.54) + (name "GND" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin power_out line (at 7.62 0 180) (length 2.54) + (name "VO" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "Transistor_FET:2N7002E" (pin_names hide) (in_bom yes) (on_board yes) + (property "Reference" "Q" (id 0) (at 5.08 1.905 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "2N7002E" (id 1) (at 5.08 0 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "Package_TO_SOT_SMD:SOT-23" (id 2) (at 5.08 -1.905 0) + (effects (font (size 1.27 1.27) italic) (justify left) hide) + ) + (property "Datasheet" "http://www.diodes.com/assets/Datasheets/ds30376.pdf" (id 3) (at 0 0 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "ki_keywords" "N-Channel MOSFET" (id 4) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_description" "0.24A Id, 60V Vds, N-Channel MOSFET, SOT-23" (id 5) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_fp_filters" "SOT?23*" (id 6) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "2N7002E_0_1" + (polyline + (pts + (xy 0.254 0) + (xy -2.54 0) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 0.254 1.905) + (xy 0.254 -1.905) + ) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 0.762 -1.27) + (xy 0.762 -2.286) + ) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 0.762 0.508) + (xy 0.762 -0.508) + ) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 0.762 2.286) + (xy 0.762 1.27) + ) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 2.54 2.54) + (xy 2.54 1.778) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 2.54 -2.54) + (xy 2.54 0) + (xy 0.762 0) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 0.762 -1.778) + (xy 3.302 -1.778) + (xy 3.302 1.778) + (xy 0.762 1.778) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 1.016 0) + (xy 2.032 0.381) + (xy 2.032 -0.381) + (xy 1.016 0) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (polyline + (pts + (xy 2.794 0.508) + (xy 2.921 0.381) + (xy 3.683 0.381) + (xy 3.81 0.254) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 3.302 0.381) + (xy 2.921 -0.254) + (xy 3.683 -0.254) + (xy 3.302 0.381) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (circle (center 1.651 0) (radius 2.794) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (circle (center 2.54 -1.778) (radius 0.254) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (circle (center 2.54 1.778) (radius 0.254) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + ) + (symbol "2N7002E_1_1" + (pin input line (at -5.08 0 0) (length 2.54) + (name "G" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 2.54 -5.08 90) (length 2.54) + (name "S" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 2.54 5.08 270) (length 2.54) + (name "D" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "power:+3.3V" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes) + (property "Reference" "#PWR" (id 0) (at 0 -3.81 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "+3.3V" (id 1) (at 0 3.556 0) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_keywords" "power-flag" (id 4) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_description" "Power symbol creates a global label with name \"+3.3V\"" (id 5) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "+3.3V_0_1" + (polyline + (pts + (xy -0.762 1.27) + (xy 0 2.54) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 0 0) + (xy 0 2.54) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 0 2.54) + (xy 0.762 1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "+3.3V_1_1" + (pin power_in line (at 0 0 90) (length 0) hide + (name "+3V3" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "power:+5V" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes) + (property "Reference" "#PWR" (id 0) (at 0 -3.81 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "+5V" (id 1) (at 0 3.556 0) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_keywords" "power-flag" (id 4) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_description" "Power symbol creates a global label with name \"+5V\"" (id 5) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "+5V_0_1" + (polyline + (pts + (xy -0.762 1.27) + (xy 0 2.54) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 0 0) + (xy 0 2.54) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 0 2.54) + (xy 0.762 1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "+5V_1_1" + (pin power_in line (at 0 0 90) (length 0) hide + (name "+5V" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "power:GND" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes) + (property "Reference" "#PWR" (id 0) (at 0 -6.35 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "GND" (id 1) (at 0 -3.81 0) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_keywords" "power-flag" (id 4) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_description" "Power symbol creates a global label with name \"GND\" , ground" (id 5) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "GND_0_1" + (polyline + (pts + (xy 0 0) + (xy 0 -1.27) + (xy 1.27 -1.27) + (xy 0 -2.54) + (xy -1.27 -1.27) + (xy 0 -1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "GND_1_1" + (pin power_in line (at 0 0 270) (length 0) hide + (name "GND" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + ) + ) + ) + + + (no_connect (at 54.61 60.325) (uuid f4c3a903-8123-4db8-a241-a8dd8701c812)) + (no_connect (at 41.91 52.705) (uuid f4c3a903-8123-4db8-a241-a8dd8701c813)) + (no_connect (at 54.61 52.705) (uuid f4c3a903-8123-4db8-a241-a8dd8701c814)) + (no_connect (at 54.61 57.785) (uuid f4c3a903-8123-4db8-a241-a8dd8701c815)) + (no_connect (at 41.91 57.785) (uuid f4c3a903-8123-4db8-a241-a8dd8701c816)) + + (wire (pts (xy 76.2 69.85) (xy 85.725 69.85)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 093ff262-8b13-4143-94d7-35728999ec31) + ) + (wire (pts (xy 103.505 24.13) (xy 99.06 24.13)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1fe652bc-d57b-4c50-a1f2-ab6040fe9580) + ) + (wire (pts (xy 60.325 52.07) (xy 60.325 55.245)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3e0472d4-1c19-4a91-8eb0-e0df80503207) + ) + (wire (pts (xy 54.61 55.245) (xy 60.325 55.245)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4216af48-181c-4ad6-9c60-e90f53b26cc9) + ) + (wire (pts (xy 99.06 21.59) (xy 105.41 21.59)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 60b6e8ed-e5f9-4ee6-9b8c-88f759559e2b) + ) + (wire (pts (xy 47.625 27.305) (xy 53.975 27.305)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 69a4cd82-7a09-4705-bf7d-dd0104fc5285) + ) + (wire (pts (xy 84.455 53.34) (xy 84.455 57.785)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 71ee6483-abc2-4125-a87c-1727fdae495d) + ) + (wire (pts (xy 63.5 29.845) (xy 63.5 33.02)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7e08510d-508d-4ab4-a6b5-ea92875268f4) + ) + (wire (pts (xy 47.625 24.765) (xy 63.5 24.765)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8058b8a1-f779-4570-abbd-f542d0047965) + ) + (wire (pts (xy 76.835 45.72) (xy 71.755 45.72)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 84fee7d1-65d3-477d-b1b9-fa7707645a28) + ) + (wire (pts (xy 93.345 59.055) (xy 95.885 59.055)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 89b927a1-35b1-4ed1-baa5-deafd38e8a88) + ) + (wire (pts (xy 39.37 60.325) (xy 41.91 60.325)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8e62cd32-8c68-4bc2-b2f5-73fa33e413a2) + ) + (wire (pts (xy 63.5 24.765) (xy 63.5 20.32)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a674b1fd-17b0-4b53-94d6-a71f3deb2353) + ) + (wire (pts (xy 41.91 55.245) (xy 26.67 55.245)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a7dc9550-c12c-4a22-84b1-87e20815888c) + ) + (wire (pts (xy 97.79 41.275) (xy 97.79 45.72)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid aa14a77d-bd44-4a5b-a3a3-121715705202) + ) + (wire (pts (xy 103.505 26.035) (xy 103.505 24.13)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c70c2cea-9b73-4eb3-aeab-a19fe35bd4d3) + ) + (wire (pts (xy 93.345 64.77) (xy 93.345 59.055)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ed3555e2-fe88-4354-92f2-19923a802481) + ) + (wire (pts (xy 26.67 55.245) (xy 26.67 63.5)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid eebdc476-68bf-43ce-8fc6-744a636e24eb) + ) + (wire (pts (xy 93.345 74.93) (xy 93.345 80.645)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ef00d46b-16ac-4d44-b48e-e3f5ef4c9972) + ) + (wire (pts (xy 97.79 45.72) (xy 92.075 45.72)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f0b6d6d3-e55b-442d-b679-99f203eaacf5) + ) + (wire (pts (xy 71.755 45.72) (xy 71.755 41.275)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f1d82565-2f45-4436-9c4d-3203604bc842) + ) + (wire (pts (xy 47.625 29.845) (xy 63.5 29.845)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fbda4446-065c-4475-a831-fcd6bf6cd6cc) + ) + + (text "To Main Board GND pin" (at 41.91 30.48 180) + (effects (font (size 1 1)) (justify right bottom)) + (uuid 7049c094-2df6-48e2-9007-64f26e6e870e) + ) + (text "To Main Board PWRBTN pin" (at 41.91 27.94 180) + (effects (font (size 1 1)) (justify right bottom)) + (uuid a2993813-f9c3-4df1-974f-efd5f7bdf0b3) + ) + (text "To Power Button" (at 93.345 22.225 180) + (effects (font (size 1 1)) (justify right bottom)) + (uuid a58387a6-8eb8-4ba6-b31f-512ae01c51ca) + ) + (text "To Main Board +5VSB pin" (at 41.91 25.4 180) + (effects (font (size 1 1)) (justify right bottom)) + (uuid a6a22bf9-48f4-4054-b6a0-fb21f853b35d) + ) + (text "To Power Button" (at 93.345 24.765 180) + (effects (font (size 1 1)) (justify right bottom)) + (uuid c305806e-b7d7-4fad-b052-d727365f2a23) + ) + + (global_label "OUT" (shape output) (at 95.885 59.055 0) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 06dfd5f2-01ef-435d-8e30-6cfe8de1dac2) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 101.9267 58.9756 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "OUT" (shape input) (at 53.975 27.305 0) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 1e9527ce-5e49-4fb1-91b8-b01c849a5c15) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 60.0167 27.2256 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "OUT" (shape input) (at 105.41 21.59 0) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 4c417ed6-5bec-4e6d-8d7c-bac94bbbb8ec) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 111.4517 21.5106 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "GP4" (shape input) (at 76.2 69.85 180) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify right)) + (uuid bef434d8-efad-4526-a940-d612d7def7f5) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 70.0374 69.7706 0) + (effects (font (size 1.27 1.27)) (justify right) hide) + ) + ) + (global_label "GP4" (shape output) (at 39.37 60.325 180) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify right)) + (uuid c7c46d74-5b10-454f-b886-68aa9b9d8635) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 33.2074 60.2456 0) + (effects (font (size 1.27 1.27)) (justify right) hide) + ) + ) + + (symbol (lib_id "Connector:Conn_01x02_Male") (at 93.98 21.59 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 16f5debb-7b35-41b9-bae0-84ba2f44a466) + (property "Reference" "J2" (id 0) (at 94.615 17.814 0)) + (property "Value" "Conn_01x02_Male" (id 1) (at 106.045 17.78 0)) + (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_1x02_P2.54mm_Horizontal" (id 2) (at 93.98 21.59 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 93.98 21.59 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 9414e889-e605-4406-8118-efabd53f9003)) + (pin "2" (uuid 8fb055dc-8170-4106-aa22-4b8db6cb5fa9)) + ) + + (symbol (lib_id "power:GND") (at 26.67 63.5 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 1ac7bab1-cec5-4480-b339-c063fdff93d4) + (property "Reference" "#PWR0108" (id 0) (at 26.67 69.85 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "GND" (id 1) (at 26.67 67.9434 0)) + (property "Footprint" "" (id 2) (at 26.67 63.5 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 26.67 63.5 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 2fe11c03-4335-4872-8a21-be0e2fcbe42a)) + ) + + (symbol (lib_id "power:+3.3V") (at 60.325 52.07 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 26c30e6d-c469-4313-a981-55e1711112b8) + (property "Reference" "#PWR0101" (id 0) (at 60.325 55.88 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "+3.3V" (id 1) (at 60.325 48.4942 0)) + (property "Footprint" "" (id 2) (at 60.325 52.07 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 60.325 52.07 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 8bbeba5a-ae47-4cf9-ac2d-6c46d97e7125)) + ) + + (symbol (lib_id "power:+3.3V") (at 97.79 41.275 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 27ebb569-f706-44fa-8e35-c51621f426b9) + (property "Reference" "#PWR0109" (id 0) (at 97.79 45.085 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "+3.3V" (id 1) (at 97.79 37.6992 0)) + (property "Footprint" "" (id 2) (at 97.79 41.275 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 97.79 41.275 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid b699d791-7f9f-4836-ab76-bce0ff11f87b)) + ) + + (symbol (lib_id "Connector:Conn_01x03_Male") (at 42.545 27.305 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 4c181c82-3856-46b2-8d6b-7ada0b0e0dbd) + (property "Reference" "J3" (id 0) (at 43.18 20.989 0)) + (property "Value" "Conn_01x03_Male" (id 1) (at 53.975 20.955 0)) + (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Horizontal" (id 2) (at 42.545 27.305 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 42.545 27.305 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 5356313d-c6c9-4e43-8779-7f5954c39660)) + (pin "2" (uuid 1947ea8e-3ea5-493b-ab1c-4e8c5a675398)) + (pin "3" (uuid be9bd86b-4cd5-4bd2-a31b-b062107d2a54)) + ) + + (symbol (lib_id "power:+5V") (at 71.755 41.275 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 758d692a-0587-403f-a2ae-a63c2fd3b6e9) + (property "Reference" "#PWR0106" (id 0) (at 71.755 45.085 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "+5V" (id 1) (at 71.755 37.6992 0)) + (property "Footprint" "" (id 2) (at 71.755 41.275 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 71.755 41.275 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 55791116-05bf-4fe5-87b9-61a935a5c340)) + ) + + (symbol (lib_id "Connector_Generic:Conn_02x04_Counter_Clockwise") (at 46.99 55.245 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 8328fdee-be6f-4244-bcf6-0a08fa3b4156) + (property "Reference" "J1" (id 0) (at 48.26 47.7352 0)) + (property "Value" "Conn_02x04_Counter_Clockwise" (id 1) (at 48.26 50.2721 0)) + (property "Footprint" "Connector_PinSocket_2.54mm:PinSocket_2x04_P2.54mm_Vertical" (id 2) (at 46.99 55.245 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 46.99 55.245 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 63d21e0c-c764-4ae4-bee8-aeb1460cdc7d)) + (pin "2" (uuid 3cd7f312-40ea-4e98-84c4-48881e4882cb)) + (pin "3" (uuid 95589da1-41ce-4ceb-8fc8-bfd893562be9)) + (pin "4" (uuid e6cba99f-921b-4b3b-baa2-62138eafb0a3)) + (pin "5" (uuid c568bc4c-cb07-4982-a752-1be24c63ce97)) + (pin "6" (uuid 6cd1c3bb-7b84-4800-8d53-33977d4aa4ce)) + (pin "7" (uuid 2e8dbda0-cfae-4f3f-8632-81c2c998844f)) + (pin "8" (uuid d7fa523f-71f5-4bb7-862e-933803564a39)) + ) + + (symbol (lib_id "power:GND") (at 63.5 33.02 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 83513ee2-9ffc-4365-a99f-afb1863f69ff) + (property "Reference" "#PWR0104" (id 0) (at 63.5 39.37 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "GND" (id 1) (at 63.5 37.4634 0)) + (property "Footprint" "" (id 2) (at 63.5 33.02 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 63.5 33.02 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 1f457560-972c-4907-984d-0b211e6d6c51)) + ) + + (symbol (lib_id "Transistor_FET:2N7002E") (at 90.805 69.85 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 9c9116db-230c-431a-8633-14e65c7d4687) + (property "Reference" "Q1" (id 0) (at 96.012 69.0153 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "2N7002E" (id 1) (at 96.012 71.5522 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "Package_TO_SOT_SMD:SOT-23" (id 2) (at 95.885 71.755 0) + (effects (font (size 1.27 1.27) italic) (justify left) hide) + ) + (property "Datasheet" "http://www.diodes.com/assets/Datasheets/ds30376.pdf" (id 3) (at 90.805 69.85 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (pin "1" (uuid 1ac5f788-5502-4627-8377-e207cccb0463)) + (pin "2" (uuid 49ee8c5e-b228-433a-ada9-20e38d61cd4b)) + (pin "3" (uuid c5e93afe-a065-4e4b-b1ba-89a39a4252f6)) + ) + + (symbol (lib_id "power:GND") (at 103.505 26.035 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid d35d9171-cefa-4960-a3a3-fe0608e13180) + (property "Reference" "#PWR0103" (id 0) (at 103.505 32.385 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "GND" (id 1) (at 103.505 30.4784 0)) + (property "Footprint" "" (id 2) (at 103.505 26.035 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 103.505 26.035 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 97ca35f7-b8a8-4f9d-a0b3-17ae66420510)) + ) + + (symbol (lib_id "power:GND") (at 93.345 80.645 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid ddd184fd-e3ef-4a19-8e7e-515ba7538174) + (property "Reference" "#PWR0105" (id 0) (at 93.345 86.995 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "GND" (id 1) (at 93.345 85.0884 0)) + (property "Footprint" "" (id 2) (at 93.345 80.645 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 93.345 80.645 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 1e2b55bb-e350-4363-bf19-e50ddc9809a3)) + ) + + (symbol (lib_id "power:GND") (at 84.455 57.785 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid e59d3982-0a2f-471c-9bb8-9439bc98bbaf) + (property "Reference" "#PWR0107" (id 0) (at 84.455 64.135 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "GND" (id 1) (at 84.455 62.2284 0)) + (property "Footprint" "" (id 2) (at 84.455 57.785 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 84.455 57.785 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid e94ab4c2-ab36-4e0d-bf52-2a8491c49a8a)) + ) + + (symbol (lib_id "Regulator_Linear:KA78M05_TO252") (at 84.455 45.72 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid e90e38a8-0b49-403c-a738-d4ff340ea362) + (property "Reference" "U1" (id 0) (at 84.455 40.1152 0)) + (property "Value" "KA78M05_TO252" (id 1) (at 84.455 42.6521 0)) + (property "Footprint" "Package_TO_SOT_SMD:SOT-223-3_TabPin2" (id 2) (at 84.455 40.005 0) + (effects (font (size 1.27 1.27) italic) hide) + ) + (property "Datasheet" "https://www.onsemi.com/pub/Collateral/MC78M00-D.PDF" (id 3) (at 84.455 46.99 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 6e3e8d69-7aeb-48ea-9524-2dee9d808d78)) + (pin "2" (uuid 3a6c0efe-1549-4b24-97bb-d1b767d40da3)) + (pin "3" (uuid 5cae74f7-3cde-4587-993f-0ee8d98402c4)) + ) + + (symbol (lib_id "power:+5V") (at 63.5 20.32 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid ed4ec7d6-47ec-4264-88b2-6e59ea0a396f) + (property "Reference" "#PWR0102" (id 0) (at 63.5 24.13 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "+5V" (id 1) (at 63.5 16.7442 0)) + (property "Footprint" "" (id 2) (at 63.5 20.32 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 63.5 20.32 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid d11aa384-b8aa-4c2a-93ce-e9c9918917b1)) + ) + + (sheet_instances + (path "/" (page "1")) + ) + + (symbol_instances + (path "/26c30e6d-c469-4313-a981-55e1711112b8" + (reference "#PWR0101") (unit 1) (value "+3.3V") (footprint "") + ) + (path "/ed4ec7d6-47ec-4264-88b2-6e59ea0a396f" + (reference "#PWR0102") (unit 1) (value "+5V") (footprint "") + ) + (path "/d35d9171-cefa-4960-a3a3-fe0608e13180" + (reference "#PWR0103") (unit 1) (value "GND") (footprint "") + ) + (path "/83513ee2-9ffc-4365-a99f-afb1863f69ff" + (reference "#PWR0104") (unit 1) (value "GND") (footprint "") + ) + (path "/ddd184fd-e3ef-4a19-8e7e-515ba7538174" + (reference "#PWR0105") (unit 1) (value "GND") (footprint "") + ) + (path "/758d692a-0587-403f-a2ae-a63c2fd3b6e9" + (reference "#PWR0106") (unit 1) (value "+5V") (footprint "") + ) + (path "/e59d3982-0a2f-471c-9bb8-9439bc98bbaf" + (reference "#PWR0107") (unit 1) (value "GND") (footprint "") + ) + (path "/1ac7bab1-cec5-4480-b339-c063fdff93d4" + (reference "#PWR0108") (unit 1) (value "GND") (footprint "") + ) + (path "/27ebb569-f706-44fa-8e35-c51621f426b9" + (reference "#PWR0109") (unit 1) (value "+3.3V") (footprint "") + ) + (path "/8328fdee-be6f-4244-bcf6-0a08fa3b4156" + (reference "J1") (unit 1) (value "Conn_02x04_Counter_Clockwise") (footprint "Connector_PinSocket_2.54mm:PinSocket_2x04_P2.54mm_Vertical") + ) + (path "/16f5debb-7b35-41b9-bae0-84ba2f44a466" + (reference "J2") (unit 1) (value "Conn_01x02_Male") (footprint "Connector_PinHeader_2.54mm:PinHeader_1x02_P2.54mm_Horizontal") + ) + (path "/4c181c82-3856-46b2-8d6b-7ada0b0e0dbd" + (reference "J3") (unit 1) (value "Conn_01x03_Male") (footprint "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Horizontal") + ) + (path "/9c9116db-230c-431a-8633-14e65c7d4687" + (reference "Q1") (unit 1) (value "2N7002E") (footprint "Package_TO_SOT_SMD:SOT-23") + ) + (path "/e90e38a8-0b49-403c-a738-d4ff340ea362" + (reference "U1") (unit 1) (value "KA78M05_TO252") (footprint "Package_TO_SOT_SMD:SOT-223-3_TabPin2") + ) + ) +) diff --git a/pcb/fp-info-cache b/pcb/fp-info-cache new file mode 100644 index 0000000..0b686c0 --- /dev/null +++ b/pcb/fp-info-cache @@ -0,0 +1,1947 @@ +459129801750780 +Connector_PinSocket_2.54mm +PinSocket_1x01_P2.54mm_Horizontal +Through hole angled socket strip, 1x01, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x01 2.54mm single row +0 +1 +1 +Connector_PinSocket_2.54mm +PinSocket_1x01_P2.54mm_Vertical +Through hole straight socket strip, 1x01, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x01 2.54mm single row +0 +1 +1 +Connector_PinSocket_2.54mm +PinSocket_1x02_P2.54mm_Horizontal +Through hole angled socket strip, 1x02, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x02 2.54mm single row +0 +2 +2 +Connector_PinSocket_2.54mm +PinSocket_1x02_P2.54mm_Vertical +Through hole straight socket strip, 1x02, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x02 2.54mm single row +0 +2 +2 +Connector_PinSocket_2.54mm +PinSocket_1x02_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x02, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x02 2.54mm single row style1 pin1 left +0 +2 +2 +Connector_PinSocket_2.54mm +PinSocket_1x02_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x02, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x02 2.54mm single row style2 pin1 right +0 +2 +2 +Connector_PinSocket_2.54mm +PinSocket_1x03_P2.54mm_Horizontal +Through hole angled socket strip, 1x03, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x03 2.54mm single row +0 +3 +3 +Connector_PinSocket_2.54mm +PinSocket_1x03_P2.54mm_Vertical +Through hole straight socket strip, 1x03, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x03 2.54mm single row +0 +3 +3 +Connector_PinSocket_2.54mm +PinSocket_1x03_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x03, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x03 2.54mm single row style1 pin1 left +0 +3 +3 +Connector_PinSocket_2.54mm +PinSocket_1x03_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x03, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x03 2.54mm single row style2 pin1 right +0 +3 +3 +Connector_PinSocket_2.54mm +PinSocket_1x04_P2.54mm_Horizontal +Through hole angled socket strip, 1x04, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x04 2.54mm single row +0 +4 +4 +Connector_PinSocket_2.54mm +PinSocket_1x04_P2.54mm_Vertical +Through hole straight socket strip, 1x04, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x04 2.54mm single row +0 +4 +4 +Connector_PinSocket_2.54mm +PinSocket_1x04_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x04, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x04 2.54mm single row style1 pin1 left +0 +4 +4 +Connector_PinSocket_2.54mm +PinSocket_1x04_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x04, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x04 2.54mm single row style2 pin1 right +0 +4 +4 +Connector_PinSocket_2.54mm +PinSocket_1x05_P2.54mm_Horizontal +Through hole angled socket strip, 1x05, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x05 2.54mm single row +0 +5 +5 +Connector_PinSocket_2.54mm +PinSocket_1x05_P2.54mm_Vertical +Through hole straight socket strip, 1x05, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x05 2.54mm single row +0 +5 +5 +Connector_PinSocket_2.54mm +PinSocket_1x05_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x05, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x05 2.54mm single row style1 pin1 left +0 +5 +5 +Connector_PinSocket_2.54mm +PinSocket_1x05_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x05, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x05 2.54mm single row style2 pin1 right +0 +5 +5 +Connector_PinSocket_2.54mm +PinSocket_1x06_P2.54mm_Horizontal +Through hole angled socket strip, 1x06, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x06 2.54mm single row +0 +6 +6 +Connector_PinSocket_2.54mm +PinSocket_1x06_P2.54mm_Vertical +Through hole straight socket strip, 1x06, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x06 2.54mm single row +0 +6 +6 +Connector_PinSocket_2.54mm +PinSocket_1x06_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x06, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x06 2.54mm single row style1 pin1 left +0 +6 +6 +Connector_PinSocket_2.54mm +PinSocket_1x06_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x06, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x06 2.54mm single row style2 pin1 right +0 +6 +6 +Connector_PinSocket_2.54mm +PinSocket_1x07_P2.54mm_Horizontal +Through hole angled socket strip, 1x07, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x07 2.54mm single row +0 +7 +7 +Connector_PinSocket_2.54mm +PinSocket_1x07_P2.54mm_Vertical +Through hole straight socket strip, 1x07, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x07 2.54mm single row +0 +7 +7 +Connector_PinSocket_2.54mm +PinSocket_1x07_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x07, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x07 2.54mm single row style1 pin1 left +0 +7 +7 +Connector_PinSocket_2.54mm +PinSocket_1x07_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x07, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x07 2.54mm single row style2 pin1 right +0 +7 +7 +Connector_PinSocket_2.54mm +PinSocket_1x08_P2.54mm_Horizontal +Through hole angled socket strip, 1x08, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x08 2.54mm single row +0 +8 +8 +Connector_PinSocket_2.54mm +PinSocket_1x08_P2.54mm_Vertical +Through hole straight socket strip, 1x08, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x08 2.54mm single row +0 +8 +8 +Connector_PinSocket_2.54mm +PinSocket_1x08_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x08, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x08 2.54mm single row style1 pin1 left +0 +8 +8 +Connector_PinSocket_2.54mm +PinSocket_1x08_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x08, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x08 2.54mm single row style2 pin1 right +0 +8 +8 +Connector_PinSocket_2.54mm +PinSocket_1x09_P2.54mm_Horizontal +Through hole angled socket strip, 1x09, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x09 2.54mm single row +0 +9 +9 +Connector_PinSocket_2.54mm +PinSocket_1x09_P2.54mm_Vertical +Through hole straight socket strip, 1x09, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x09 2.54mm single row +0 +9 +9 +Connector_PinSocket_2.54mm +PinSocket_1x09_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x09, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x09 2.54mm single row style1 pin1 left +0 +9 +9 +Connector_PinSocket_2.54mm +PinSocket_1x09_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x09, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x09 2.54mm single row style2 pin1 right +0 +9 +9 +Connector_PinSocket_2.54mm +PinSocket_1x10_P2.54mm_Horizontal +Through hole angled socket strip, 1x10, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x10 2.54mm single row +0 +10 +10 +Connector_PinSocket_2.54mm +PinSocket_1x10_P2.54mm_Vertical +Through hole straight socket strip, 1x10, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x10 2.54mm single row +0 +10 +10 +Connector_PinSocket_2.54mm +PinSocket_1x10_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x10, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x10 2.54mm single row style1 pin1 left +0 +10 +10 +Connector_PinSocket_2.54mm +PinSocket_1x10_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x10, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x10 2.54mm single row style2 pin1 right +0 +10 +10 +Connector_PinSocket_2.54mm +PinSocket_1x11_P2.54mm_Horizontal +Through hole angled socket strip, 1x11, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x11 2.54mm single row +0 +11 +11 +Connector_PinSocket_2.54mm +PinSocket_1x11_P2.54mm_Vertical +Through hole straight socket strip, 1x11, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x11 2.54mm single row +0 +11 +11 +Connector_PinSocket_2.54mm +PinSocket_1x11_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x11, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x11 2.54mm single row style1 pin1 left +0 +11 +11 +Connector_PinSocket_2.54mm +PinSocket_1x11_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x11, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x11 2.54mm single row style2 pin1 right +0 +11 +11 +Connector_PinSocket_2.54mm +PinSocket_1x12_P2.54mm_Horizontal +Through hole angled socket strip, 1x12, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x12 2.54mm single row +0 +12 +12 +Connector_PinSocket_2.54mm +PinSocket_1x12_P2.54mm_Vertical +Through hole straight socket strip, 1x12, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x12 2.54mm single row +0 +12 +12 +Connector_PinSocket_2.54mm +PinSocket_1x12_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x12, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x12 2.54mm single row style1 pin1 left +0 +12 +12 +Connector_PinSocket_2.54mm +PinSocket_1x12_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x12, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x12 2.54mm single row style2 pin1 right +0 +12 +12 +Connector_PinSocket_2.54mm +PinSocket_1x13_P2.54mm_Horizontal +Through hole angled socket strip, 1x13, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x13 2.54mm single row +0 +13 +13 +Connector_PinSocket_2.54mm +PinSocket_1x13_P2.54mm_Vertical +Through hole straight socket strip, 1x13, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x13 2.54mm single row +0 +13 +13 +Connector_PinSocket_2.54mm +PinSocket_1x13_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x13, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x13 2.54mm single row style1 pin1 left +0 +13 +13 +Connector_PinSocket_2.54mm +PinSocket_1x13_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x13, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x13 2.54mm single row style2 pin1 right +0 +13 +13 +Connector_PinSocket_2.54mm +PinSocket_1x14_P2.54mm_Horizontal +Through hole angled socket strip, 1x14, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x14 2.54mm single row +0 +14 +14 +Connector_PinSocket_2.54mm +PinSocket_1x14_P2.54mm_Vertical +Through hole straight socket strip, 1x14, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x14 2.54mm single row +0 +14 +14 +Connector_PinSocket_2.54mm +PinSocket_1x14_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x14, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x14 2.54mm single row style1 pin1 left +0 +14 +14 +Connector_PinSocket_2.54mm +PinSocket_1x14_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x14, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x14 2.54mm single row style2 pin1 right +0 +14 +14 +Connector_PinSocket_2.54mm +PinSocket_1x15_P2.54mm_Horizontal +Through hole angled socket strip, 1x15, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x15 2.54mm single row +0 +15 +15 +Connector_PinSocket_2.54mm +PinSocket_1x15_P2.54mm_Vertical +Through hole straight socket strip, 1x15, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x15 2.54mm single row +0 +15 +15 +Connector_PinSocket_2.54mm +PinSocket_1x15_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x15, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x15 2.54mm single row style1 pin1 left +0 +15 +15 +Connector_PinSocket_2.54mm +PinSocket_1x15_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x15, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x15 2.54mm single row style2 pin1 right +0 +15 +15 +Connector_PinSocket_2.54mm +PinSocket_1x16_P2.54mm_Horizontal +Through hole angled socket strip, 1x16, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x16 2.54mm single row +0 +16 +16 +Connector_PinSocket_2.54mm +PinSocket_1x16_P2.54mm_Vertical +Through hole straight socket strip, 1x16, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x16 2.54mm single row +0 +16 +16 +Connector_PinSocket_2.54mm +PinSocket_1x16_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x16, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x16 2.54mm single row style1 pin1 left +0 +16 +16 +Connector_PinSocket_2.54mm +PinSocket_1x16_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x16, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x16 2.54mm single row style2 pin1 right +0 +16 +16 +Connector_PinSocket_2.54mm +PinSocket_1x17_P2.54mm_Horizontal +Through hole angled socket strip, 1x17, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x17 2.54mm single row +0 +17 +17 +Connector_PinSocket_2.54mm +PinSocket_1x17_P2.54mm_Vertical +Through hole straight socket strip, 1x17, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x17 2.54mm single row +0 +17 +17 +Connector_PinSocket_2.54mm +PinSocket_1x17_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x17, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x17 2.54mm single row style1 pin1 left +0 +17 +17 +Connector_PinSocket_2.54mm +PinSocket_1x17_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x17, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x17 2.54mm single row style2 pin1 right +0 +17 +17 +Connector_PinSocket_2.54mm +PinSocket_1x18_P2.54mm_Horizontal +Through hole angled socket strip, 1x18, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x18 2.54mm single row +0 +18 +18 +Connector_PinSocket_2.54mm +PinSocket_1x18_P2.54mm_Vertical +Through hole straight socket strip, 1x18, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x18 2.54mm single row +0 +18 +18 +Connector_PinSocket_2.54mm +PinSocket_1x18_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x18, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x18 2.54mm single row style1 pin1 left +0 +18 +18 +Connector_PinSocket_2.54mm +PinSocket_1x18_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x18, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x18 2.54mm single row style2 pin1 right +0 +18 +18 +Connector_PinSocket_2.54mm +PinSocket_1x19_P2.54mm_Horizontal +Through hole angled socket strip, 1x19, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x19 2.54mm single row +0 +19 +19 +Connector_PinSocket_2.54mm +PinSocket_1x19_P2.54mm_Vertical +Through hole straight socket strip, 1x19, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x19 2.54mm single row +0 +19 +19 +Connector_PinSocket_2.54mm +PinSocket_1x19_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x19, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x19 2.54mm single row style1 pin1 left +0 +19 +19 +Connector_PinSocket_2.54mm +PinSocket_1x19_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x19, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x19 2.54mm single row style2 pin1 right +0 +19 +19 +Connector_PinSocket_2.54mm +PinSocket_1x20_P2.54mm_Horizontal +Through hole angled socket strip, 1x20, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x20 2.54mm single row +0 +20 +20 +Connector_PinSocket_2.54mm +PinSocket_1x20_P2.54mm_Vertical +Through hole straight socket strip, 1x20, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x20 2.54mm single row +0 +20 +20 +Connector_PinSocket_2.54mm +PinSocket_1x20_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x20, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x20 2.54mm single row style1 pin1 left +0 +20 +20 +Connector_PinSocket_2.54mm +PinSocket_1x20_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x20, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x20 2.54mm single row style2 pin1 right +0 +20 +20 +Connector_PinSocket_2.54mm +PinSocket_1x21_P2.54mm_Horizontal +Through hole angled socket strip, 1x21, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x21 2.54mm single row +0 +21 +21 +Connector_PinSocket_2.54mm +PinSocket_1x21_P2.54mm_Vertical +Through hole straight socket strip, 1x21, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x21 2.54mm single row +0 +21 +21 +Connector_PinSocket_2.54mm +PinSocket_1x21_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x21, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x21 2.54mm single row style1 pin1 left +0 +21 +21 +Connector_PinSocket_2.54mm +PinSocket_1x21_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x21, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x21 2.54mm single row style2 pin1 right +0 +21 +21 +Connector_PinSocket_2.54mm +PinSocket_1x22_P2.54mm_Horizontal +Through hole angled socket strip, 1x22, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x22 2.54mm single row +0 +22 +22 +Connector_PinSocket_2.54mm +PinSocket_1x22_P2.54mm_Vertical +Through hole straight socket strip, 1x22, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x22 2.54mm single row +0 +22 +22 +Connector_PinSocket_2.54mm +PinSocket_1x22_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x22, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x22 2.54mm single row style1 pin1 left +0 +22 +22 +Connector_PinSocket_2.54mm +PinSocket_1x22_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x22, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x22 2.54mm single row style2 pin1 right +0 +22 +22 +Connector_PinSocket_2.54mm +PinSocket_1x23_P2.54mm_Horizontal +Through hole angled socket strip, 1x23, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x23 2.54mm single row +0 +23 +23 +Connector_PinSocket_2.54mm +PinSocket_1x23_P2.54mm_Vertical +Through hole straight socket strip, 1x23, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x23 2.54mm single row +0 +23 +23 +Connector_PinSocket_2.54mm +PinSocket_1x23_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x23, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x23 2.54mm single row style1 pin1 left +0 +23 +23 +Connector_PinSocket_2.54mm +PinSocket_1x23_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x23, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x23 2.54mm single row style2 pin1 right +0 +23 +23 +Connector_PinSocket_2.54mm +PinSocket_1x24_P2.54mm_Horizontal +Through hole angled socket strip, 1x24, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x24 2.54mm single row +0 +24 +24 +Connector_PinSocket_2.54mm +PinSocket_1x24_P2.54mm_Vertical +Through hole straight socket strip, 1x24, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x24 2.54mm single row +0 +24 +24 +Connector_PinSocket_2.54mm +PinSocket_1x24_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x24, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x24 2.54mm single row style1 pin1 left +0 +24 +24 +Connector_PinSocket_2.54mm +PinSocket_1x24_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x24, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x24 2.54mm single row style2 pin1 right +0 +24 +24 +Connector_PinSocket_2.54mm +PinSocket_1x25_P2.54mm_Horizontal +Through hole angled socket strip, 1x25, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x25 2.54mm single row +0 +25 +25 +Connector_PinSocket_2.54mm +PinSocket_1x25_P2.54mm_Vertical +Through hole straight socket strip, 1x25, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x25 2.54mm single row +0 +25 +25 +Connector_PinSocket_2.54mm +PinSocket_1x25_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x25, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x25 2.54mm single row style1 pin1 left +0 +25 +25 +Connector_PinSocket_2.54mm +PinSocket_1x25_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x25, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x25 2.54mm single row style2 pin1 right +0 +25 +25 +Connector_PinSocket_2.54mm +PinSocket_1x26_P2.54mm_Horizontal +Through hole angled socket strip, 1x26, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x26 2.54mm single row +0 +26 +26 +Connector_PinSocket_2.54mm +PinSocket_1x26_P2.54mm_Vertical +Through hole straight socket strip, 1x26, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x26 2.54mm single row +0 +26 +26 +Connector_PinSocket_2.54mm +PinSocket_1x26_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x26, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x26 2.54mm single row style1 pin1 left +0 +26 +26 +Connector_PinSocket_2.54mm +PinSocket_1x26_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x26, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x26 2.54mm single row style2 pin1 right +0 +26 +26 +Connector_PinSocket_2.54mm +PinSocket_1x27_P2.54mm_Horizontal +Through hole angled socket strip, 1x27, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x27 2.54mm single row +0 +27 +27 +Connector_PinSocket_2.54mm +PinSocket_1x27_P2.54mm_Vertical +Through hole straight socket strip, 1x27, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x27 2.54mm single row +0 +27 +27 +Connector_PinSocket_2.54mm +PinSocket_1x27_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x27, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x27 2.54mm single row style1 pin1 left +0 +27 +27 +Connector_PinSocket_2.54mm +PinSocket_1x27_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x27, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x27 2.54mm single row style2 pin1 right +0 +27 +27 +Connector_PinSocket_2.54mm +PinSocket_1x28_P2.54mm_Horizontal +Through hole angled socket strip, 1x28, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x28 2.54mm single row +0 +28 +28 +Connector_PinSocket_2.54mm +PinSocket_1x28_P2.54mm_Vertical +Through hole straight socket strip, 1x28, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x28 2.54mm single row +0 +28 +28 +Connector_PinSocket_2.54mm +PinSocket_1x28_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x28, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x28 2.54mm single row style1 pin1 left +0 +28 +28 +Connector_PinSocket_2.54mm +PinSocket_1x28_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x28, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x28 2.54mm single row style2 pin1 right +0 +28 +28 +Connector_PinSocket_2.54mm +PinSocket_1x29_P2.54mm_Horizontal +Through hole angled socket strip, 1x29, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x29 2.54mm single row +0 +29 +29 +Connector_PinSocket_2.54mm +PinSocket_1x29_P2.54mm_Vertical +Through hole straight socket strip, 1x29, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x29 2.54mm single row +0 +29 +29 +Connector_PinSocket_2.54mm +PinSocket_1x29_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x29, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x29 2.54mm single row style1 pin1 left +0 +29 +29 +Connector_PinSocket_2.54mm +PinSocket_1x29_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x29, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x29 2.54mm single row style2 pin1 right +0 +29 +29 +Connector_PinSocket_2.54mm +PinSocket_1x30_P2.54mm_Horizontal +Through hole angled socket strip, 1x30, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x30 2.54mm single row +0 +30 +30 +Connector_PinSocket_2.54mm +PinSocket_1x30_P2.54mm_Vertical +Through hole straight socket strip, 1x30, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x30 2.54mm single row +0 +30 +30 +Connector_PinSocket_2.54mm +PinSocket_1x30_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x30, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x30 2.54mm single row style1 pin1 left +0 +30 +30 +Connector_PinSocket_2.54mm +PinSocket_1x30_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x30, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x30 2.54mm single row style2 pin1 right +0 +30 +30 +Connector_PinSocket_2.54mm +PinSocket_1x31_P2.54mm_Horizontal +Through hole angled socket strip, 1x31, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x31 2.54mm single row +0 +31 +31 +Connector_PinSocket_2.54mm +PinSocket_1x31_P2.54mm_Vertical +Through hole straight socket strip, 1x31, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x31 2.54mm single row +0 +31 +31 +Connector_PinSocket_2.54mm +PinSocket_1x31_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x31, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x31 2.54mm single row style1 pin1 left +0 +31 +31 +Connector_PinSocket_2.54mm +PinSocket_1x31_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x31, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x31 2.54mm single row style2 pin1 right +0 +31 +31 +Connector_PinSocket_2.54mm +PinSocket_1x32_P2.54mm_Horizontal +Through hole angled socket strip, 1x32, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x32 2.54mm single row +0 +32 +32 +Connector_PinSocket_2.54mm +PinSocket_1x32_P2.54mm_Vertical +Through hole straight socket strip, 1x32, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x32 2.54mm single row +0 +32 +32 +Connector_PinSocket_2.54mm +PinSocket_1x32_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x32, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x32 2.54mm single row style1 pin1 left +0 +32 +32 +Connector_PinSocket_2.54mm +PinSocket_1x32_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x32, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x32 2.54mm single row style2 pin1 right +0 +32 +32 +Connector_PinSocket_2.54mm +PinSocket_1x33_P2.54mm_Horizontal +Through hole angled socket strip, 1x33, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x33 2.54mm single row +0 +33 +33 +Connector_PinSocket_2.54mm +PinSocket_1x33_P2.54mm_Vertical +Through hole straight socket strip, 1x33, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x33 2.54mm single row +0 +33 +33 +Connector_PinSocket_2.54mm +PinSocket_1x33_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x33, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x33 2.54mm single row style1 pin1 left +0 +33 +33 +Connector_PinSocket_2.54mm +PinSocket_1x33_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x33, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x33 2.54mm single row style2 pin1 right +0 +33 +33 +Connector_PinSocket_2.54mm +PinSocket_1x34_P2.54mm_Horizontal +Through hole angled socket strip, 1x34, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x34 2.54mm single row +0 +34 +34 +Connector_PinSocket_2.54mm +PinSocket_1x34_P2.54mm_Vertical +Through hole straight socket strip, 1x34, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x34 2.54mm single row +0 +34 +34 +Connector_PinSocket_2.54mm +PinSocket_1x34_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x34, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x34 2.54mm single row style1 pin1 left +0 +34 +34 +Connector_PinSocket_2.54mm +PinSocket_1x34_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x34, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x34 2.54mm single row style2 pin1 right +0 +34 +34 +Connector_PinSocket_2.54mm +PinSocket_1x35_P2.54mm_Horizontal +Through hole angled socket strip, 1x35, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x35 2.54mm single row +0 +35 +35 +Connector_PinSocket_2.54mm +PinSocket_1x35_P2.54mm_Vertical +Through hole straight socket strip, 1x35, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x35 2.54mm single row +0 +35 +35 +Connector_PinSocket_2.54mm +PinSocket_1x35_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x35, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x35 2.54mm single row style1 pin1 left +0 +35 +35 +Connector_PinSocket_2.54mm +PinSocket_1x35_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x35, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x35 2.54mm single row style2 pin1 right +0 +35 +35 +Connector_PinSocket_2.54mm +PinSocket_1x36_P2.54mm_Horizontal +Through hole angled socket strip, 1x36, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x36 2.54mm single row +0 +36 +36 +Connector_PinSocket_2.54mm +PinSocket_1x36_P2.54mm_Vertical +Through hole straight socket strip, 1x36, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x36 2.54mm single row +0 +36 +36 +Connector_PinSocket_2.54mm +PinSocket_1x36_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x36, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x36 2.54mm single row style1 pin1 left +0 +36 +36 +Connector_PinSocket_2.54mm +PinSocket_1x36_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x36, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x36 2.54mm single row style2 pin1 right +0 +36 +36 +Connector_PinSocket_2.54mm +PinSocket_1x37_P2.54mm_Horizontal +Through hole angled socket strip, 1x37, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x37 2.54mm single row +0 +37 +37 +Connector_PinSocket_2.54mm +PinSocket_1x37_P2.54mm_Vertical +Through hole straight socket strip, 1x37, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x37 2.54mm single row +0 +37 +37 +Connector_PinSocket_2.54mm +PinSocket_1x37_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x37, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x37 2.54mm single row style1 pin1 left +0 +37 +37 +Connector_PinSocket_2.54mm +PinSocket_1x37_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x37, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x37 2.54mm single row style2 pin1 right +0 +37 +37 +Connector_PinSocket_2.54mm +PinSocket_1x38_P2.54mm_Horizontal +Through hole angled socket strip, 1x38, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x38 2.54mm single row +0 +38 +38 +Connector_PinSocket_2.54mm +PinSocket_1x38_P2.54mm_Vertical +Through hole straight socket strip, 1x38, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x38 2.54mm single row +0 +38 +38 +Connector_PinSocket_2.54mm +PinSocket_1x38_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x38, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x38 2.54mm single row style1 pin1 left +0 +38 +38 +Connector_PinSocket_2.54mm +PinSocket_1x38_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x38, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x38 2.54mm single row style2 pin1 right +0 +38 +38 +Connector_PinSocket_2.54mm +PinSocket_1x39_P2.54mm_Horizontal +Through hole angled socket strip, 1x39, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x39 2.54mm single row +0 +39 +39 +Connector_PinSocket_2.54mm +PinSocket_1x39_P2.54mm_Vertical +Through hole straight socket strip, 1x39, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x39 2.54mm single row +0 +39 +39 +Connector_PinSocket_2.54mm +PinSocket_1x39_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x39, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x39 2.54mm single row style1 pin1 left +0 +39 +39 +Connector_PinSocket_2.54mm +PinSocket_1x39_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x39, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x39 2.54mm single row style2 pin1 right +0 +39 +39 +Connector_PinSocket_2.54mm +PinSocket_1x40_P2.54mm_Horizontal +Through hole angled socket strip, 1x40, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x40 2.54mm single row +0 +40 +40 +Connector_PinSocket_2.54mm +PinSocket_1x40_P2.54mm_Vertical +Through hole straight socket strip, 1x40, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x40 2.54mm single row +0 +40 +40 +Connector_PinSocket_2.54mm +PinSocket_1x40_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x40, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x40 2.54mm single row style1 pin1 left +0 +40 +40 +Connector_PinSocket_2.54mm +PinSocket_1x40_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x40, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x40 2.54mm single row style2 pin1 right +0 +40 +40 +Connector_PinSocket_2.54mm +PinSocket_2x01_P2.54mm_Horizontal +Through hole angled socket strip, 2x01, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x01 2.54mm double row +0 +2 +2 +Connector_PinSocket_2.54mm +PinSocket_2x01_P2.54mm_Vertical +Through hole straight socket strip, 2x01, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x01 2.54mm double row +0 +2 +2 +Connector_PinSocket_2.54mm +PinSocket_2x01_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x01, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x01 2.54mm double row +0 +2 +2 +Connector_PinSocket_2.54mm +PinSocket_2x02_P2.54mm_Horizontal +Through hole angled socket strip, 2x02, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x02 2.54mm double row +0 +4 +4 +Connector_PinSocket_2.54mm +PinSocket_2x02_P2.54mm_Vertical +Through hole straight socket strip, 2x02, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x02 2.54mm double row +0 +4 +4 +Connector_PinSocket_2.54mm +PinSocket_2x02_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x02, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x02 2.54mm double row +0 +4 +4 +Connector_PinSocket_2.54mm +PinSocket_2x03_P2.54mm_Horizontal +Through hole angled socket strip, 2x03, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x03 2.54mm double row +0 +6 +6 +Connector_PinSocket_2.54mm +PinSocket_2x03_P2.54mm_Vertical +Through hole straight socket strip, 2x03, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x03 2.54mm double row +0 +6 +6 +Connector_PinSocket_2.54mm +PinSocket_2x03_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x03, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x03 2.54mm double row +0 +6 +6 +Connector_PinSocket_2.54mm +PinSocket_2x04_P2.54mm_Horizontal +Through hole angled socket strip, 2x04, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x04 2.54mm double row +0 +8 +8 +Connector_PinSocket_2.54mm +PinSocket_2x04_P2.54mm_Vertical +Through hole straight socket strip, 2x04, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x04 2.54mm double row +0 +8 +8 +Connector_PinSocket_2.54mm +PinSocket_2x04_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x04, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x04 2.54mm double row +0 +8 +8 +Connector_PinSocket_2.54mm +PinSocket_2x05_P2.54mm_Horizontal +Through hole angled socket strip, 2x05, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x05 2.54mm double row +0 +10 +10 +Connector_PinSocket_2.54mm +PinSocket_2x05_P2.54mm_Vertical +Through hole straight socket strip, 2x05, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x05 2.54mm double row +0 +10 +10 +Connector_PinSocket_2.54mm +PinSocket_2x05_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x05, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x05 2.54mm double row +0 +10 +10 +Connector_PinSocket_2.54mm +PinSocket_2x06_P2.54mm_Horizontal +Through hole angled socket strip, 2x06, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x06 2.54mm double row +0 +12 +12 +Connector_PinSocket_2.54mm +PinSocket_2x06_P2.54mm_Vertical +Through hole straight socket strip, 2x06, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x06 2.54mm double row +0 +12 +12 +Connector_PinSocket_2.54mm +PinSocket_2x06_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x06, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x06 2.54mm double row +0 +12 +12 +Connector_PinSocket_2.54mm +PinSocket_2x07_P2.54mm_Horizontal +Through hole angled socket strip, 2x07, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x07 2.54mm double row +0 +14 +14 +Connector_PinSocket_2.54mm +PinSocket_2x07_P2.54mm_Vertical +Through hole straight socket strip, 2x07, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x07 2.54mm double row +0 +14 +14 +Connector_PinSocket_2.54mm +PinSocket_2x07_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x07, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x07 2.54mm double row +0 +14 +14 +Connector_PinSocket_2.54mm +PinSocket_2x08_P2.54mm_Horizontal +Through hole angled socket strip, 2x08, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x08 2.54mm double row +0 +16 +16 +Connector_PinSocket_2.54mm +PinSocket_2x08_P2.54mm_Vertical +Through hole straight socket strip, 2x08, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x08 2.54mm double row +0 +16 +16 +Connector_PinSocket_2.54mm +PinSocket_2x08_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x08, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x08 2.54mm double row +0 +16 +16 +Connector_PinSocket_2.54mm +PinSocket_2x09_P2.54mm_Horizontal +Through hole angled socket strip, 2x09, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x09 2.54mm double row +0 +18 +18 +Connector_PinSocket_2.54mm +PinSocket_2x09_P2.54mm_Vertical +Through hole straight socket strip, 2x09, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x09 2.54mm double row +0 +18 +18 +Connector_PinSocket_2.54mm +PinSocket_2x09_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x09, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x09 2.54mm double row +0 +18 +18 +Connector_PinSocket_2.54mm +PinSocket_2x10_P2.54mm_Horizontal +Through hole angled socket strip, 2x10, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x10 2.54mm double row +0 +20 +20 +Connector_PinSocket_2.54mm +PinSocket_2x10_P2.54mm_Vertical +Through hole straight socket strip, 2x10, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x10 2.54mm double row +0 +20 +20 +Connector_PinSocket_2.54mm +PinSocket_2x10_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x10, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x10 2.54mm double row +0 +20 +20 +Connector_PinSocket_2.54mm +PinSocket_2x11_P2.54mm_Horizontal +Through hole angled socket strip, 2x11, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x11 2.54mm double row +0 +22 +22 +Connector_PinSocket_2.54mm +PinSocket_2x11_P2.54mm_Vertical +Through hole straight socket strip, 2x11, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x11 2.54mm double row +0 +22 +22 +Connector_PinSocket_2.54mm +PinSocket_2x11_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x11, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x11 2.54mm double row +0 +22 +22 +Connector_PinSocket_2.54mm +PinSocket_2x12_P2.54mm_Horizontal +Through hole angled socket strip, 2x12, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x12 2.54mm double row +0 +24 +24 +Connector_PinSocket_2.54mm +PinSocket_2x12_P2.54mm_Vertical +Through hole straight socket strip, 2x12, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x12 2.54mm double row +0 +24 +24 +Connector_PinSocket_2.54mm +PinSocket_2x12_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x12, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x12 2.54mm double row +0 +24 +24 +Connector_PinSocket_2.54mm +PinSocket_2x13_P2.54mm_Horizontal +Through hole angled socket strip, 2x13, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x13 2.54mm double row +0 +26 +26 +Connector_PinSocket_2.54mm +PinSocket_2x13_P2.54mm_Vertical +Through hole straight socket strip, 2x13, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x13 2.54mm double row +0 +26 +26 +Connector_PinSocket_2.54mm +PinSocket_2x13_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x13, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x13 2.54mm double row +0 +26 +26 +Connector_PinSocket_2.54mm +PinSocket_2x14_P2.54mm_Horizontal +Through hole angled socket strip, 2x14, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x14 2.54mm double row +0 +28 +28 +Connector_PinSocket_2.54mm +PinSocket_2x14_P2.54mm_Vertical +Through hole straight socket strip, 2x14, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x14 2.54mm double row +0 +28 +28 +Connector_PinSocket_2.54mm +PinSocket_2x14_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x14, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x14 2.54mm double row +0 +28 +28 +Connector_PinSocket_2.54mm +PinSocket_2x15_P2.54mm_Horizontal +Through hole angled socket strip, 2x15, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x15 2.54mm double row +0 +30 +30 +Connector_PinSocket_2.54mm +PinSocket_2x15_P2.54mm_Vertical +Through hole straight socket strip, 2x15, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x15 2.54mm double row +0 +30 +30 +Connector_PinSocket_2.54mm +PinSocket_2x15_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x15, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x15 2.54mm double row +0 +30 +30 +Connector_PinSocket_2.54mm +PinSocket_2x16_P2.54mm_Horizontal +Through hole angled socket strip, 2x16, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x16 2.54mm double row +0 +32 +32 +Connector_PinSocket_2.54mm +PinSocket_2x16_P2.54mm_Vertical +Through hole straight socket strip, 2x16, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x16 2.54mm double row +0 +32 +32 +Connector_PinSocket_2.54mm +PinSocket_2x16_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x16, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x16 2.54mm double row +0 +32 +32 +Connector_PinSocket_2.54mm +PinSocket_2x17_P2.54mm_Horizontal +Through hole angled socket strip, 2x17, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x17 2.54mm double row +0 +34 +34 +Connector_PinSocket_2.54mm +PinSocket_2x17_P2.54mm_Vertical +Through hole straight socket strip, 2x17, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x17 2.54mm double row +0 +34 +34 +Connector_PinSocket_2.54mm +PinSocket_2x17_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x17, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x17 2.54mm double row +0 +34 +34 +Connector_PinSocket_2.54mm +PinSocket_2x18_P2.54mm_Horizontal +Through hole angled socket strip, 2x18, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x18 2.54mm double row +0 +36 +36 +Connector_PinSocket_2.54mm +PinSocket_2x18_P2.54mm_Vertical +Through hole straight socket strip, 2x18, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x18 2.54mm double row +0 +36 +36 +Connector_PinSocket_2.54mm +PinSocket_2x18_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x18, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x18 2.54mm double row +0 +36 +36 +Connector_PinSocket_2.54mm +PinSocket_2x19_P2.54mm_Horizontal +Through hole angled socket strip, 2x19, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x19 2.54mm double row +0 +38 +38 +Connector_PinSocket_2.54mm +PinSocket_2x19_P2.54mm_Vertical +Through hole straight socket strip, 2x19, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x19 2.54mm double row +0 +38 +38 +Connector_PinSocket_2.54mm +PinSocket_2x19_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x19, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x19 2.54mm double row +0 +38 +38 +Connector_PinSocket_2.54mm +PinSocket_2x20_P2.54mm_Horizontal +Through hole angled socket strip, 2x20, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x20 2.54mm double row +0 +40 +40 +Connector_PinSocket_2.54mm +PinSocket_2x20_P2.54mm_Vertical +Through hole straight socket strip, 2x20, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x20 2.54mm double row +0 +40 +40 +Connector_PinSocket_2.54mm +PinSocket_2x20_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x20, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x20 2.54mm double row +0 +40 +40 +Connector_PinSocket_2.54mm +PinSocket_2x21_P2.54mm_Horizontal +Through hole angled socket strip, 2x21, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x21 2.54mm double row +0 +42 +42 +Connector_PinSocket_2.54mm +PinSocket_2x21_P2.54mm_Vertical +Through hole straight socket strip, 2x21, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x21 2.54mm double row +0 +42 +42 +Connector_PinSocket_2.54mm +PinSocket_2x21_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x21, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x21 2.54mm double row +0 +42 +42 +Connector_PinSocket_2.54mm +PinSocket_2x22_P2.54mm_Horizontal +Through hole angled socket strip, 2x22, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x22 2.54mm double row +0 +44 +44 +Connector_PinSocket_2.54mm +PinSocket_2x22_P2.54mm_Vertical +Through hole straight socket strip, 2x22, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x22 2.54mm double row +0 +44 +44 +Connector_PinSocket_2.54mm +PinSocket_2x22_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x22, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x22 2.54mm double row +0 +44 +44 +Connector_PinSocket_2.54mm +PinSocket_2x23_P2.54mm_Horizontal +Through hole angled socket strip, 2x23, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x23 2.54mm double row +0 +46 +46 +Connector_PinSocket_2.54mm +PinSocket_2x23_P2.54mm_Vertical +Through hole straight socket strip, 2x23, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x23 2.54mm double row +0 +46 +46 +Connector_PinSocket_2.54mm +PinSocket_2x23_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x23, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x23 2.54mm double row +0 +46 +46 +Connector_PinSocket_2.54mm +PinSocket_2x24_P2.54mm_Horizontal +Through hole angled socket strip, 2x24, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x24 2.54mm double row +0 +48 +48 +Connector_PinSocket_2.54mm +PinSocket_2x24_P2.54mm_Vertical +Through hole straight socket strip, 2x24, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x24 2.54mm double row +0 +48 +48 +Connector_PinSocket_2.54mm +PinSocket_2x24_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x24, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x24 2.54mm double row +0 +48 +48 +Connector_PinSocket_2.54mm +PinSocket_2x25_P2.54mm_Horizontal +Through hole angled socket strip, 2x25, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x25 2.54mm double row +0 +50 +50 +Connector_PinSocket_2.54mm +PinSocket_2x25_P2.54mm_Vertical +Through hole straight socket strip, 2x25, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x25 2.54mm double row +0 +50 +50 +Connector_PinSocket_2.54mm +PinSocket_2x25_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x25, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x25 2.54mm double row +0 +50 +50 +Connector_PinSocket_2.54mm +PinSocket_2x26_P2.54mm_Horizontal +Through hole angled socket strip, 2x26, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x26 2.54mm double row +0 +52 +52 +Connector_PinSocket_2.54mm +PinSocket_2x26_P2.54mm_Vertical +Through hole straight socket strip, 2x26, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x26 2.54mm double row +0 +52 +52 +Connector_PinSocket_2.54mm +PinSocket_2x26_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x26, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x26 2.54mm double row +0 +52 +52 +Connector_PinSocket_2.54mm +PinSocket_2x27_P2.54mm_Horizontal +Through hole angled socket strip, 2x27, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x27 2.54mm double row +0 +54 +54 +Connector_PinSocket_2.54mm +PinSocket_2x27_P2.54mm_Vertical +Through hole straight socket strip, 2x27, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x27 2.54mm double row +0 +54 +54 +Connector_PinSocket_2.54mm +PinSocket_2x27_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x27, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x27 2.54mm double row +0 +54 +54 +Connector_PinSocket_2.54mm +PinSocket_2x28_P2.54mm_Horizontal +Through hole angled socket strip, 2x28, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x28 2.54mm double row +0 +56 +56 +Connector_PinSocket_2.54mm +PinSocket_2x28_P2.54mm_Vertical +Through hole straight socket strip, 2x28, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x28 2.54mm double row +0 +56 +56 +Connector_PinSocket_2.54mm +PinSocket_2x28_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x28, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x28 2.54mm double row +0 +56 +56 +Connector_PinSocket_2.54mm +PinSocket_2x29_P2.54mm_Horizontal +Through hole angled socket strip, 2x29, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x29 2.54mm double row +0 +58 +58 +Connector_PinSocket_2.54mm +PinSocket_2x29_P2.54mm_Vertical +Through hole straight socket strip, 2x29, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x29 2.54mm double row +0 +58 +58 +Connector_PinSocket_2.54mm +PinSocket_2x29_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x29, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x29 2.54mm double row +0 +58 +58 +Connector_PinSocket_2.54mm +PinSocket_2x30_P2.54mm_Horizontal +Through hole angled socket strip, 2x30, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x30 2.54mm double row +0 +60 +60 +Connector_PinSocket_2.54mm +PinSocket_2x30_P2.54mm_Vertical +Through hole straight socket strip, 2x30, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x30 2.54mm double row +0 +60 +60 +Connector_PinSocket_2.54mm +PinSocket_2x30_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x30, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x30 2.54mm double row +0 +60 +60 +Connector_PinSocket_2.54mm +PinSocket_2x31_P2.54mm_Horizontal +Through hole angled socket strip, 2x31, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x31 2.54mm double row +0 +62 +62 +Connector_PinSocket_2.54mm +PinSocket_2x31_P2.54mm_Vertical +Through hole straight socket strip, 2x31, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x31 2.54mm double row +0 +62 +62 +Connector_PinSocket_2.54mm +PinSocket_2x31_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x31, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x31 2.54mm double row +0 +62 +62 +Connector_PinSocket_2.54mm +PinSocket_2x32_P2.54mm_Horizontal +Through hole angled socket strip, 2x32, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x32 2.54mm double row +0 +64 +64 +Connector_PinSocket_2.54mm +PinSocket_2x32_P2.54mm_Vertical +Through hole straight socket strip, 2x32, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x32 2.54mm double row +0 +64 +64 +Connector_PinSocket_2.54mm +PinSocket_2x32_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x32, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x32 2.54mm double row +0 +64 +64 +Connector_PinSocket_2.54mm +PinSocket_2x33_P2.54mm_Horizontal +Through hole angled socket strip, 2x33, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x33 2.54mm double row +0 +66 +66 +Connector_PinSocket_2.54mm +PinSocket_2x33_P2.54mm_Vertical +Through hole straight socket strip, 2x33, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x33 2.54mm double row +0 +66 +66 +Connector_PinSocket_2.54mm +PinSocket_2x33_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x33, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x33 2.54mm double row +0 +66 +66 +Connector_PinSocket_2.54mm +PinSocket_2x34_P2.54mm_Horizontal +Through hole angled socket strip, 2x34, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x34 2.54mm double row +0 +68 +68 +Connector_PinSocket_2.54mm +PinSocket_2x34_P2.54mm_Vertical +Through hole straight socket strip, 2x34, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x34 2.54mm double row +0 +68 +68 +Connector_PinSocket_2.54mm +PinSocket_2x34_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x34, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x34 2.54mm double row +0 +68 +68 +Connector_PinSocket_2.54mm +PinSocket_2x35_P2.54mm_Horizontal +Through hole angled socket strip, 2x35, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x35 2.54mm double row +0 +70 +70 +Connector_PinSocket_2.54mm +PinSocket_2x35_P2.54mm_Vertical +Through hole straight socket strip, 2x35, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x35 2.54mm double row +0 +70 +70 +Connector_PinSocket_2.54mm +PinSocket_2x35_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x35, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x35 2.54mm double row +0 +70 +70 +Connector_PinSocket_2.54mm +PinSocket_2x36_P2.54mm_Horizontal +Through hole angled socket strip, 2x36, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x36 2.54mm double row +0 +72 +72 +Connector_PinSocket_2.54mm +PinSocket_2x36_P2.54mm_Vertical +Through hole straight socket strip, 2x36, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x36 2.54mm double row +0 +72 +72 +Connector_PinSocket_2.54mm +PinSocket_2x36_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x36, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x36 2.54mm double row +0 +72 +72 +Connector_PinSocket_2.54mm +PinSocket_2x37_P2.54mm_Horizontal +Through hole angled socket strip, 2x37, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x37 2.54mm double row +0 +74 +74 +Connector_PinSocket_2.54mm +PinSocket_2x37_P2.54mm_Vertical +Through hole straight socket strip, 2x37, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x37 2.54mm double row +0 +74 +74 +Connector_PinSocket_2.54mm +PinSocket_2x37_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x37, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x37 2.54mm double row +0 +74 +74 +Connector_PinSocket_2.54mm +PinSocket_2x38_P2.54mm_Horizontal +Through hole angled socket strip, 2x38, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x38 2.54mm double row +0 +76 +76 +Connector_PinSocket_2.54mm +PinSocket_2x38_P2.54mm_Vertical +Through hole straight socket strip, 2x38, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x38 2.54mm double row +0 +76 +76 +Connector_PinSocket_2.54mm +PinSocket_2x38_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x38, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x38 2.54mm double row +0 +76 +76 +Connector_PinSocket_2.54mm +PinSocket_2x39_P2.54mm_Horizontal +Through hole angled socket strip, 2x39, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x39 2.54mm double row +0 +78 +78 +Connector_PinSocket_2.54mm +PinSocket_2x39_P2.54mm_Vertical +Through hole straight socket strip, 2x39, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x39 2.54mm double row +0 +78 +78 +Connector_PinSocket_2.54mm +PinSocket_2x39_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x39, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x39 2.54mm double row +0 +78 +78 +Connector_PinSocket_2.54mm +PinSocket_2x40_P2.54mm_Horizontal +Through hole angled socket strip, 2x40, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x40 2.54mm double row +0 +80 +80 +Connector_PinSocket_2.54mm +PinSocket_2x40_P2.54mm_Vertical +Through hole straight socket strip, 2x40, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x40 2.54mm double row +0 +80 +80 +Connector_PinSocket_2.54mm +PinSocket_2x40_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x40, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x40 2.54mm double row +0 +80 +80