diff --git a/README.md b/README.md
index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..9a7bb625473357159ec00c8081e373e6c44ea7e7 100644
--- a/README.md
+++ b/README.md
@@ -0,0 +1,37 @@
+# Urumbu I/O modules
+
+## Inputs
+
+### [Capacitive input](./capacitive)
+
+![](./capacitive/img/D11C.capacitive.components.top.jpg)
+
+### [Distance input](./distance)
+
+![](./distance/img/D11C.distance.components.top.jpg)
+
+![](./distance/img/D11C.distance.components.bottom.jpg)
+
+### [Thermistor/pressure input](./pressure)
+
+![](./thermistor-or-pressure/img/D11C.10k.ADC.components.jpg)
+
+### [Potentiometer input](./pressure)
+
+![](./potentiometer/img/D11C.potentiometer.components.top.jpg)
+
+![](./potentiometer/img/D11C.potentiometer.components.bottom.jpg)
+
+## Outputs
+
+### [MOSFET output](./mosfet)
+
+![](./mosfet/img/D11C.mosfet.components.jpg)
+
+### [Stepper output](https://gitlab.cba.mit.edu/neilg/urumbu/-/tree/master/serialstep)
+
+![](./extra/img/D11C.stepper.components.jpg)
+
+### [Servo output](https://gitlab.cba.mit.edu/neilg/urumbu/-/tree/master/serialservo)
+
+![](./extra/img/D11C.servo.components.jpg)
diff --git a/capacitive/README.md b/capacitive/README.md
index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..0a43835c78de831d408a97d0e4225c3ab0706d4d 100644
--- a/capacitive/README.md
+++ b/capacitive/README.md
@@ -0,0 +1,25 @@
+# Urumbu capacitive input
+
+![](./img/D11C.capacitive.components.top.jpg)
+
+This board returns a 10-bit value depending on the capacitive sensing pad reading.
+
+## Code
+
+Code can be found [here](./code/d11_capa/d11_capa.ino).
+
+## KiCad files
+
+- [project](./samd11c14_capa.kicad_pro)
+- [schematic](./samd11c14_capa.kicad_sch)
+- [board](./samd11c14_capa.kicad_pcb)
+
+## .png files
+
+![](./img/samd11c14_capa-composite.png)
+
+![](./img/samd11c14_capa-F_Cu.png)
+
+![](./img/samd11c14_capa-Edge_Cuts.png)
+
+![](./img/samd11c14_capa-interior_traces_comp.png)
diff --git a/capacitive/code/d11_capa/d11_capa.ino b/capacitive/code/d11_capa/d11_capa.ino
new file mode 100644
index 0000000000000000000000000000000000000000..ab0b9e45acf37a13b1ff9e1be643096427439410
--- /dev/null
+++ b/capacitive/code/d11_capa/d11_capa.ino
@@ -0,0 +1,58 @@
+#include "Adafruit_FreeTouch.h"
+
+#define PIN_LED_A 4
+#define PIN_LED_C 2
+#define PIN_CAPA 5
+
+#define OVERSAMPLE 64
+
+// for a 64 oversampling
+#define VAL_MIN 13700
+#define VAL_MAX 15000
+
+
+Adafruit_FreeTouch qt(PIN_CAPA, OVERSAMPLE_4, RESISTOR_50K, FREQ_MODE_NONE);
+
+
+void setup() {
+  // put your setup code here, to run once:
+  pinMode(PIN_LED_A, OUTPUT);
+  digitalWrite(PIN_LED_A, HIGH);
+  pinMode(PIN_LED_C, OUTPUT);
+  digitalWrite(PIN_LED_C, LOW);
+  SerialUSB.begin(115200);
+
+  qt.begin();
+}
+
+
+void print_16bit(int v) {
+  const char bfr[] = {v & 0xFF, (v >> 8) & 0xFF};
+  SerialUSB.write(bfr, 2);
+}
+
+
+int measure_capa() {
+  long int value_over = 0;
+
+  for (int i = 0; i < OVERSAMPLE; i++) {
+    value_over += qt.measure();
+  }
+
+  return value_over;
+}
+
+
+void loop() {
+  if (SerialUSB.available()) {
+    char c = SerialUSB.read();
+    if (c == '?') {
+      int value = measure_capa();
+      int value_10bit = map(value, VAL_MIN, VAL_MAX, 0, 1023);
+      value_10bit = max(min(value_10bit, 1023), 0);
+      print_16bit(value_10bit);
+    } else if (c == '@') {
+      SerialUSB.write("0003");
+    }
+  }
+}
diff --git a/capacitive/img/D11C.capacitive.components.top.jpg b/capacitive/img/D11C.capacitive.components.top.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..257d45a9152bd964a50e8ac44f7e25494a932017
Binary files /dev/null and b/capacitive/img/D11C.capacitive.components.top.jpg differ
diff --git a/capacitive/img/samd11c14_capa-Edge_Cuts.png b/capacitive/img/samd11c14_capa-Edge_Cuts.png
new file mode 100644
index 0000000000000000000000000000000000000000..64a3199c114e96cb32ea78489312e15ad30c29a4
Binary files /dev/null and b/capacitive/img/samd11c14_capa-Edge_Cuts.png differ
diff --git a/capacitive/img/samd11c14_capa-F_Cu.png b/capacitive/img/samd11c14_capa-F_Cu.png
new file mode 100644
index 0000000000000000000000000000000000000000..44da468224dc395fb3675b61660029a425a10323
Binary files /dev/null and b/capacitive/img/samd11c14_capa-F_Cu.png differ
diff --git a/capacitive/img/samd11c14_capa-F_Mask.png b/capacitive/img/samd11c14_capa-F_Mask.png
new file mode 100644
index 0000000000000000000000000000000000000000..6fa744e09e77c60be43f323f18a7d70d6b2966b0
Binary files /dev/null and b/capacitive/img/samd11c14_capa-F_Mask.png differ
diff --git a/capacitive/img/samd11c14_capa-F_Silkscreen.png b/capacitive/img/samd11c14_capa-F_Silkscreen.png
new file mode 100644
index 0000000000000000000000000000000000000000..c3e3dc90de474561c7baba54880286c5eecf66fe
Binary files /dev/null and b/capacitive/img/samd11c14_capa-F_Silkscreen.png differ
diff --git a/capacitive/img/samd11c14_capa-composite.png b/capacitive/img/samd11c14_capa-composite.png
new file mode 100644
index 0000000000000000000000000000000000000000..59ea09cfe358e5ca0a932f5950371642d5087539
Binary files /dev/null and b/capacitive/img/samd11c14_capa-composite.png differ
diff --git a/capacitive/img/samd11c14_capa-interior_traces_comp.png b/capacitive/img/samd11c14_capa-interior_traces_comp.png
new file mode 100644
index 0000000000000000000000000000000000000000..837476f4d9a207089ce73e3b786de01a47eff45d
Binary files /dev/null and b/capacitive/img/samd11c14_capa-interior_traces_comp.png differ
diff --git a/capacitive/samd11c14_capa.kicad_pcb b/capacitive/samd11c14_capa.kicad_pcb
new file mode 100644
index 0000000000000000000000000000000000000000..5699d4281dd292d5fe9d7baf81a98f4757fdb9b5
--- /dev/null
+++ b/capacitive/samd11c14_capa.kicad_pcb
@@ -0,0 +1,796 @@
+(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 0x00010a8_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 5)
+      (mirror false)
+      (drillshape 2)
+      (scaleselection 1)
+      (outputdirectory "svg")
+    )
+  )
+
+  (net 0 "")
+  (net 1 "GND")
+  (net 2 "+3V3")
+  (net 3 "+5V")
+  (net 4 "D-")
+  (net 5 "D+")
+  (net 6 "LED_C")
+  (net 7 "RST")
+  (net 8 "DIO")
+  (net 9 "CLK")
+  (net 10 "unconnected-(U2-Pad2)")
+  (net 11 "unconnected-(U2-Pad3)")
+  (net 12 "Net-(D1-Pad2)")
+  (net 13 "LED_A")
+  (net 14 "Net-(U2-Pad1)")
+  (net 15 "unconnected-(U2-Pad5)")
+  (net 16 "unconnected-(U2-Pad4)")
+  (net 17 "CAPA")
+
+  (footprint "fab:SOIC-14_3.9x8.7mm_P1.27mm" (layer "F.Cu")
+    (tedit 60030324) (tstamp 4d8a27f3-5994-4c02-859b-09c0a8d34a6d)
+    (at 66.8274 37.7485)
+    (descr "SOIC, 14 Pin, fab version")
+    (tags "SOIC fab")
+    (property "Sheetfile" "samd11c14_capa.kicad_sch")
+    (property "Sheetname" "")
+    (path "/1c5f2b06-dd65-40ca-a36f-d7882ab411c5")
+    (attr smd)
+    (fp_text reference "U2" (at 0 -5.28) (layer "F.SilkS")
+      (effects (font (size 1 1) (thickness 0.15)))
+      (tstamp 279cd597-6735-4af4-af86-33cfd2693447)
+    )
+    (fp_text value "Microcontroller_ATSAMD11C14A-SSUT" (at 0 0) (layer "F.SilkS") hide
+      (effects (font (size 1.27 1.27) (thickness 0.15)))
+      (tstamp 7c2c7978-0926-492c-8e3d-93ac33c3f226)
+    )
+    (fp_text user "${REFERENCE}" (at 0 0) (layer "F.CrtYd")
+      (effects (font (size 1 1) (thickness 0.15)))
+      (tstamp 20a43104-38cb-4a67-8590-5917234169dc)
+    )
+    (fp_line (start 0 4.435) (end 1.95 4.435) (layer "F.SilkS") (width 0.12) (tstamp 70b4eaa4-61ff-4379-b06d-623ca05164b1))
+    (fp_line (start 0 -4.435) (end 1.95 -4.435) (layer "F.SilkS") (width 0.12) (tstamp aaf14fa5-bc5e-4b91-b0fb-212df5ce1861))
+    (fp_line (start 0 4.435) (end -1.95 4.435) (layer "F.SilkS") (width 0.12) (tstamp e1e9dd9e-df2b-4b75-b02e-38146938802b))
+    (fp_line (start 0 -4.435) (end -3.45 -4.435) (layer "F.SilkS") (width 0.12) (tstamp fa18dae7-2fb1-4387-a3c1-308ca16c5c1d))
+    (fp_line (start -3.6 -4.5) (end 3.7 -4.5) (layer "F.CrtYd") (width 0.05) (tstamp 494350ab-d17d-4de3-8b96-f15451154d6a))
+    (fp_line (start -3.6 4.5) (end -3.6 -4.5) (layer "F.CrtYd") (width 0.05) (tstamp 51153875-01b9-46f2-8b14-6306c8586588))
+    (fp_line (start 3.7 4.5) (end -3.6 4.5) (layer "F.CrtYd") (width 0.05) (tstamp 622fea85-fc3a-49dd-a4af-3bfd36c6693d))
+    (fp_line (start 3.7 -4.5) (end 3.7 4.5) (layer "F.CrtYd") (width 0.05) (tstamp adda719e-cc0a-4a85-b429-67f8b39774f5))
+    (fp_line (start -0.975 -4.325) (end 1.95 -4.325) (layer "F.Fab") (width 0.1) (tstamp 2e955124-6939-410c-81be-086896fd0cd7))
+    (fp_line (start 1.95 4.325) (end -1.95 4.325) (layer "F.Fab") (width 0.1) (tstamp 38f1f681-d503-49fe-ab87-4225bebb7b32))
+    (fp_line (start -1.95 -3.35) (end -0.975 -4.325) (layer "F.Fab") (width 0.1) (tstamp ae113a97-dd90-42bf-96ea-bb92e7431ac6))
+    (fp_line (start 1.95 -4.325) (end 1.95 4.325) (layer "F.Fab") (width 0.1) (tstamp b39d7b4a-582f-449b-82fa-4a80df318fb1))
+    (fp_line (start -1.95 4.325) (end -1.95 -3.35) (layer "F.Fab") (width 0.1) (tstamp e65c2eb9-e95a-44ea-ab2b-9e65a76fb5f9))
+    (pad "1" smd rect (at -2.475 -3.81) (size 2 0.6) (layers "F.Cu" "F.Paste" "F.Mask")
+      (net 14 "Net-(U2-Pad1)") (pinfunction "PA05") (pintype "bidirectional") (tstamp fb070305-7327-4d47-aaa2-52c1d26471d3))
+    (pad "2" smd rect (at -2.475 -2.54) (size 2 0.6) (layers "F.Cu" "F.Paste" "F.Mask")
+      (net 10 "unconnected-(U2-Pad2)") (pinfunction "PA08/XIN") (pintype "bidirectional") (tstamp 80cc6be9-668a-4344-9b65-0659b9071698))
+    (pad "3" smd rect (at -2.475 -1.27) (size 2 0.6) (layers "F.Cu" "F.Paste" "F.Mask")
+      (net 11 "unconnected-(U2-Pad3)") (pinfunction "PA09/XOUT") (pintype "bidirectional") (tstamp 76bf3f12-008a-4a13-b216-e7dae9728db6))
+    (pad "4" smd rect (at -2.475 0) (size 2 0.6) (layers "F.Cu" "F.Paste" "F.Mask")
+      (net 16 "unconnected-(U2-Pad4)") (pinfunction "PA14") (pintype "bidirectional") (tstamp 878a2718-59d9-4c03-a97a-b08c3d833cb9))
+    (pad "5" smd rect (at -2.475 1.27) (size 2 0.6) (layers "F.Cu" "F.Paste" "F.Mask")
+      (net 15 "unconnected-(U2-Pad5)") (pinfunction "PA15") (pintype "bidirectional") (tstamp d0da5fea-7bb8-466a-808d-a285a956d318))
+    (pad "6" smd rect (at -2.475 2.54) (size 2 0.6) (layers "F.Cu" "F.Paste" "F.Mask")
+      (net 7 "RST") (pinfunction "PA28/~{RST}") (pintype "bidirectional") (tstamp 3a9c4d0d-b8e3-4e3b-8868-df708ade9fd9))
+    (pad "7" smd rect (at -2.475 3.81) (size 2 0.6) (layers "F.Cu" "F.Paste" "F.Mask")
+      (net 9 "CLK") (pinfunction "PA30/SWCLK") (pintype "bidirectional") (tstamp eec6f1b0-e4aa-49f8-b4a3-e9424cd19e76))
+    (pad "8" smd rect (at 2.475 3.81) (size 2 0.6) (layers "F.Cu" "F.Paste" "F.Mask")
+      (net 8 "DIO") (pinfunction "PA31/SWDIO") (pintype "bidirectional") (tstamp 4b325ae5-e73e-4571-bbb6-af750e7a58b8))
+    (pad "9" smd rect (at 2.475 2.54) (size 2 0.6) (layers "F.Cu" "F.Paste" "F.Mask")
+      (net 4 "D-") (pinfunction "PA24") (pintype "bidirectional") (tstamp 8e99653b-c67d-4ba5-a650-293257580275))
+    (pad "10" smd rect (at 2.475 1.27) (size 2 0.6) (layers "F.Cu" "F.Paste" "F.Mask")
+      (net 5 "D+") (pinfunction "PA25") (pintype "bidirectional") (tstamp 3b8985d9-c9ce-4e5c-9b0f-dabde5c52713))
+    (pad "11" smd rect (at 2.475 0) (size 2 0.6) (layers "F.Cu" "F.Paste" "F.Mask")
+      (net 1 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 2bf286a9-8d8a-4f20-af25-6a1b3ef01eaf))
+    (pad "12" smd rect (at 2.475 -1.27) (size 2 0.6) (layers "F.Cu" "F.Paste" "F.Mask")
+      (net 2 "+3V3") (pinfunction "VDD") (pintype "power_in") (tstamp a96d0fd6-c2d2-48a1-b455-757422534d73))
+    (pad "13" smd rect (at 2.475 -2.54) (size 2 0.6) (layers "F.Cu" "F.Paste" "F.Mask")
+      (net 6 "LED_C") (pinfunction "PA02") (pintype "bidirectional") (tstamp 29af8fa6-318a-4068-993d-88e7a24f7791))
+    (pad "14" smd rect (at 2.475 -3.81) (size 2 0.6) (layers "F.Cu" "F.Paste" "F.Mask")
+      (net 13 "LED_A") (pinfunction "PA04") (pintype "bidirectional") (tstamp 3334571c-c306-4b79-9192-949abe8085c3))
+    (model "${FAB}/fab.3dshapes/SOIC-14_3.9x8.7mm_P1.27mm.step"
+      (offset (xyz 0 0 0))
+      (scale (xyz 1 1 1))
+      (rotate (xyz 0 0 0))
+    )
+  )
+
+  (footprint "fab:PinHeader_2x02_SWD_P2.54mm_Vertical_SMD" (layer "F.Cu")
+    (tedit 62112959) (tstamp 5c9bc151-e282-4405-8be4-f7b49b568fbb)
+    (at 66.8274 46.0035 180)
+    (descr "surface-mounted straight pin header, 2x02, 2.54mm pitch, double rows")
+    (tags "Surface mounted pin header SMD 2x02 2.54mm double row")
+    (property "Sheetfile" "samd11c14_capa.kicad_sch")
+    (property "Sheetname" "")
+    (path "/4a55f4f3-4596-4061-91d2-6036b72881f5")
+    (attr smd)
+    (fp_text reference "J3" (at -3.524 -3.092) (layer "F.SilkS")
+      (effects (font (size 1 1) (thickness 0.15)))
+      (tstamp f90c26dc-193b-4ab8-89b0-618ed7117e9a)
+    )
+    (fp_text value "Conn_PinHeader_2x02_SWD_P2.54mm_Vertical_SMD" (at 0 3.6) (layer "F.Fab")
+      (effects (font (size 1 1) (thickness 0.15)))
+      (tstamp 3ea1333e-d76b-40ee-8057-84e14f958221)
+    )
+    (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
+      (effects (font (size 1 1) (thickness 0.15)))
+      (tstamp aea0c070-06c6-4135-a708-f46d34e6fdae)
+    )
+    (fp_circle (center -3.4 -2.9) (end -2.9 -2.9) (layer "F.Cu") (width 0.2) (fill solid) (tstamp 483f331b-2bc0-4cb8-bb92-1b8a345841cf))
+    (fp_line (start -2.6 -2.6) (end -2.6 -2.03) (layer "F.SilkS") (width 0.12) (tstamp 007653dc-24a1-4f8b-8bfa-7604710e0bb0))
+    (fp_line (start -4.04 -2.03) (end -2.6 -2.03) (layer "F.SilkS") (width 0.12) (tstamp 24fe7676-0c0a-4b5a-8a61-dd833b2a3e83))
+    (fp_line (start 2.6 -0.51) (end 2.6 0.51) (layer "F.SilkS") (width 0.12) (tstamp 4831ae25-0940-40bd-8287-52f3b995212e))
+    (fp_line (start -2.6 -2.6) (end 2.6 -2.6) (layer "F.SilkS") (width 0.12) (tstamp 6d883ddf-40ea-443e-84fa-f7d018bddc4a))
+    (fp_line (start -2.6 2.6) (end 2.6 2.6) (layer "F.SilkS") (width 0.12) (tstamp 70546009-ec12-4df1-b150-81811f63b9b9))
+    (fp_line (start -2.6 -0.51) (end -2.6 0.51) (layer "F.SilkS") (width 0.12) (tstamp 9560da74-dd09-4735-9bb3-c63169b5b561))
+    (fp_line (start 2.6 2.03) (end 2.6 2.6) (layer "F.SilkS") (width 0.12) (tstamp 97fa9751-3b73-499b-9a68-82d7d05ad2e5))
+    (fp_line (start 2.6 -2.6) (end 2.6 -2.03) (layer "F.SilkS") (width 0.12) (tstamp ad1d94a8-7d85-4004-9ab8-aa55ca511b8a))
+    (fp_line (start -2.6 2.03) (end -2.6 2.6) (layer "F.SilkS") (width 0.12) (tstamp f3269157-290f-42d2-ad85-a243e0c16d86))
+    (fp_line (start 4.2 -2.7) (end -4.2 -2.7) (layer "F.CrtYd") (width 0.05) (tstamp 1e85f89b-021b-44a1-8852-55aafbf7a71c))
+    (fp_line (start 4.2 2.7) (end 4.2 -2.7) (layer "F.CrtYd") (width 0.05) (tstamp 5910a5fe-02d2-43c3-8275-719282a4fba5))
+    (fp_line (start -4.2 -2.7) (end -4.2 2.7) (layer "F.CrtYd") (width 0.05) (tstamp 68015416-9ad1-4782-8d78-de2b22d855e2))
+    (fp_line (start -4.2 2.7) (end 4.2 2.7) (layer "F.CrtYd") (width 0.05) (tstamp e12498fb-0073-451e-bfed-533c8939e787))
+    (fp_line (start 2.54 0.95) (end 3.6 0.95) (layer "F.Fab") (width 0.1) (tstamp 09729d08-1f28-4989-9cd4-bba1484807dd))
+    (fp_line (start -3.6 -1.59) (end -3.6 -0.95) (layer "F.Fab") (width 0.1) (tstamp 0edef41d-0d73-4adf-8257-f364e3a9253f))
+    (fp_line (start -3.6 -0.95) (end -2.54 -0.95) (layer "F.Fab") (width 0.1) (tstamp 1419b495-bc63-4b9b-961a-7608e7a5f12d))
+    (fp_line (start 2.54 -2.54) (end 2.54 2.54) (layer "F.Fab") (width 0.1) (tstamp 15f62eec-de88-4fd4-8ce7-edefa0660429))
+    (fp_line (start -3.6 0.95) (end -3.6 1.59) (layer "F.Fab") (width 0.1) (tstamp 5fbd213d-229e-4a38-8f15-1f58e4823ec9))
+    (fp_line (start 3.6 -0.95) (end 2.54 -0.95) (layer "F.Fab") (width 0.1) (tstamp 6a103bd6-36aa-42f7-a967-a4a89af92862))
+    (fp_line (start -3.6 1.59) (end -2.54 1.59) (layer "F.Fab") (width 0.1) (tstamp 7d3ce60b-0fbc-4d1c-8ad6-57910cd4368e))
+    (fp_line (start 2.54 2.54) (end -2.54 2.54) (layer "F.Fab") (width 0.1) (tstamp 88aaa8ca-5d5e-420e-9150-eae76ab65680))
+    (fp_line (start -2.54 0.95) (end -3.6 0.95) (layer "F.Fab") (width 0.1) (tstamp 8a4dc82f-f803-4702-8c18-44e73153c139))
+    (fp_line (start -2.54 2.54) (end -2.54 -1.59) (layer "F.Fab") (width 0.1) (tstamp 8e8b572d-b74f-4211-ad63-681dccb4172d))
+    (fp_line (start -1.59 -2.54) (end 2.54 -2.54) (layer "F.Fab") (width 0.1) (tstamp 9a3c2099-a93b-43c7-a533-2eec49fc7cb1))
+    (fp_line (start 3.6 0.95) (end 3.6 1.59) (layer "F.Fab") (width 0.1) (tstamp a6b6c979-0c01-4bc3-ac83-adf14e2de01e))
+    (fp_line (start 3.6 -1.59) (end 3.6 -0.95) (layer "F.Fab") (width 0.1) (tstamp a8bb88f8-05aa-4bc1-b077-43de6136cc70))
+    (fp_line (start 2.54 -1.59) (end 3.6 -1.59) (layer "F.Fab") (width 0.1) (tstamp b58ee507-393c-44f7-a2de-9851a5b9bead))
+    (fp_line (start -2.54 -1.59) (end -3.6 -1.59) (layer "F.Fab") (width 0.1) (tstamp c8aa08dc-6e98-4645-8afd-a8552d5ebdf5))
+    (fp_line (start 3.6 1.59) (end 2.54 1.59) (layer "F.Fab") (width 0.1) (tstamp cbf99705-b115-4241-87c9-be1607ad9ede))
+    (fp_line (start -2.54 -1.59) (end -1.59 -2.54) (layer "F.Fab") (width 0.1) (tstamp cc491dd0-75d7-453b-8180-488286eddce3))
+    (pad "1" smd rect (at -2.525 -1.27 180) (size 3.15 1) (layers "F.Cu" "F.Paste" "F.Mask")
+      (net 1 "GND") (pinfunction "GND") (pintype "passive") (tstamp 6f39ac71-504f-4657-8986-24ff4f2d032d))
+    (pad "2" smd rect (at 2.525 -1.27 180) (size 3.15 1) (layers "F.Cu" "F.Paste" "F.Mask")
+      (net 7 "RST") (pinfunction "RST") (pintype "passive") (tstamp 6398af37-19f8-4769-a00f-fa5baf3c6ea5))
+    (pad "3" smd rect (at -2.525 1.27 180) (size 3.15 1) (layers "F.Cu" "F.Paste" "F.Mask")
+      (net 8 "DIO") (pinfunction "DIO") (pintype "passive") (tstamp 111a9cf1-58cb-4410-953d-499d23c85f0f))
+    (pad "4" smd rect (at 2.525 1.27 180) (size 3.15 1) (layers "F.Cu" "F.Paste" "F.Mask")
+      (net 9 "CLK") (pinfunction "CLK") (pintype "passive") (tstamp 8b65eba9-3370-4aa6-9c98-1579ce1acb40))
+    (model "${KISYS3DMOD}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_2x02_P2.54mm_Vertical_SMD.wrl"
+      (offset (xyz 0 0 0))
+      (scale (xyz 1 1 1))
+      (rotate (xyz 0 0 0))
+    )
+  )
+
+  (footprint "fab:C_1206" (layer "F.Cu")
+    (tedit 6002C54C) (tstamp 84a6c803-a4ac-48df-95fb-6930cca4e25e)
+    (at 74.422 42.926 180)
+    (descr "Capacitor SMD 1206, hand soldering")
+    (tags "capacitor 1206")
+    (property "Sheetfile" "samd11c14_capa.kicad_sch")
+    (property "Sheetname" "")
+    (path "/fde96c4e-b12c-43f8-9426-6e025c0e4ecc")
+    (attr smd)
+    (fp_text reference "C2" (at -0.127 0 90) (layer "F.SilkS")
+      (effects (font (size 1 1) (thickness 0.15)))
+      (tstamp 6f4bbdb8-5bb2-4c5f-b604-50c819181981)
+    )
+    (fp_text value "1uF" (at 0 1.9) (layer "F.Fab")
+      (effects (font (size 1 1) (thickness 0.15)))
+      (tstamp 21de29f1-55e6-491f-9b72-2d0cf15d30d9)
+    )
+    (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
+      (effects (font (size 0.7 0.7) (thickness 0.105)))
+      (tstamp 8d1c6119-4f8d-41bb-ac26-14b7b55b90f2)
+    )
+    (fp_line (start -1 -1.07) (end 1 -1.07) (layer "F.SilkS") (width 0.12) (tstamp 3a07246e-3a61-43dd-8b09-0bdf03c3e6f3))
+    (fp_line (start 1 1.07) (end -1 1.07) (layer "F.SilkS") (width 0.12) (tstamp 97e1f64a-ea8c-4ff4-8e5c-27686d0544c1))
+    (fp_line (start -3.25 -1.11) (end -3.25 1.1) (layer "F.CrtYd") (width 0.05) (tstamp 331e4b06-587c-447e-bea7-ab3ccd3f7d67))
+    (fp_line (start 3.25 1.1) (end -3.25 1.1) (layer "F.CrtYd") (width 0.05) (tstamp 441f9c55-be25-4fae-8b9b-6a71ad3b0b86))
+    (fp_line (start -3.25 -1.11) (end 3.25 -1.11) (layer "F.CrtYd") (width 0.05) (tstamp 5d580eb5-0e83-488b-a0fd-a803c630f551))
+    (fp_line (start 3.25 1.1) (end 3.25 -1.11) (layer "F.CrtYd") (width 0.05) (tstamp 7aec2799-4000-4098-a752-1bed4b75fdcf))
+    (fp_line (start -1.6 -0.8) (end 1.6 -0.8) (layer "F.Fab") (width 0.1) (tstamp a2d16f16-08e6-4947-a6d1-6d787ead02c9))
+    (fp_line (start -1.6 0.8) (end -1.6 -0.8) (layer "F.Fab") (width 0.1) (tstamp b11ebd64-c9c7-457c-8a22-c5fed71aadd1))
+    (fp_line (start 1.6 0.8) (end -1.6 0.8) (layer "F.Fab") (width 0.1) (tstamp c09f8970-d399-4978-b7bf-c426fa2f915a))
+    (fp_line (start 1.6 -0.8) (end 1.6 0.8) (layer "F.Fab") (width 0.1) (tstamp d4512ec7-3389-4b56-9e8b-bdbd8a828957))
+    (pad "1" smd rect locked (at -2 0 180) (size 2 1.7) (layers "F.Cu" "F.Paste" "F.Mask")
+      (net 2 "+3V3") (pintype "passive") (tstamp e294d04e-3720-4cda-b63e-078484e0733c))
+    (pad "2" smd rect locked (at 2 0 180) (size 2 1.7) (layers "F.Cu" "F.Paste" "F.Mask")
+      (net 1 "GND") (pintype "passive") (tstamp 1d052412-811d-4384-b62d-b10970534fb5))
+    (model "${FAB}/fab.3dshapes/C_1206.step"
+      (offset (xyz 0 0 0))
+      (scale (xyz 1 1 1))
+      (rotate (xyz 0 0 0))
+    )
+  )
+
+  (footprint "fab:SOT-23W" (layer "F.Cu")
+    (tedit 5EF36ECC) (tstamp 979784e6-6813-4ec3-b827-3fde402e007b)
+    (at 74.168 39.37 180)
+    (descr "SOT-23W for handsoldering")
+    (tags "fab handsoldering")
+    (property "Sheetfile" "samd11c14_capa.kicad_sch")
+    (property "Sheetname" "")
+    (path "/78dd0937-ee9d-48f7-810d-2995faf42b06")
+    (attr smd)
+    (fp_text reference "U1" (at 0 -2.5) (layer "F.SilkS")
+      (effects (font (size 1 1) (thickness 0.15)))
+      (tstamp 5f166979-d56c-4322-b233-17794a3457b5)
+    )
+    (fp_text value "Regulator_Linear_LM3480-3.3V-100mA" (at 0 2.5) (layer "F.Fab")
+      (effects (font (size 1 1) (thickness 0.15)))
+      (tstamp c866f4ae-ff2b-485e-ace5-eb22b622efa6)
+    )
+    (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
+      (effects (font (size 0.5 0.5) (thickness 0.075)))
+      (tstamp ea1e6278-75ba-4dbd-9269-6f0458555c99)
+    )
+    (fp_line (start -2 -1.61) (end 1.075 -1.61) (layer "F.SilkS") (width 0.12) (tstamp 379ebaf7-893a-42a6-8bcf-12c78912ad8a))
+    (fp_line (start 1.075 0.7) (end 1.075 1.61) (layer "F.SilkS") (width 0.12) (tstamp 763480e7-3762-4f16-a047-9f69445027bc))
+    (fp_line (start 1.075 -1.6) (end 1.075 -0.7) (layer "F.SilkS") (width 0.12) (tstamp 8c9efe2f-5335-4c8f-83f0-478062b3d361))
+    (fp_line (start -1.075 1.61) (end 1.075 1.61) (layer "F.SilkS") (width 0.12) (tstamp a83c47e7-af92-4e55-aa1d-63efd993255a))
+    (fp_line (start 2.95 -1.74) (end 2.95 1.74) (layer "F.CrtYd") (width 0.05) (tstamp 2ecafbfb-1f1b-4163-a8a3-81b34e25883e))
+    (fp_line (start -2.95 1.74) (end -2.95 -1.74) (layer "F.CrtYd") (width 0.05) (tstamp 569ea4b4-5dfd-49bf-b9b1-7356c1cccf85))
+    (fp_line (start 2.95 1.74) (end -2.95 1.74) (layer "F.CrtYd") (width 0.05) (tstamp b19e086b-ad6e-403a-827d-2f683812c0db))
+    (fp_line (start -2.95 -1.74) (end 2.95 -1.74) (layer "F.CrtYd") (width 0.05) (tstamp cb7234d4-db5d-4e28-a1b5-36480e441623))
+    (fp_line (start -0.955 -0.49) (end 0.045 -1.49) (layer "F.Fab") (width 0.1) (tstamp 0da646b6-a8a2-4edc-882f-6dac8cd09afe))
+    (fp_line (start 0.955 -1.49) (end 0.955 1.49) (layer "F.Fab") (width 0.1) (tstamp 3f6a0f8e-f04c-40b1-92f7-46637c011ccf))
+    (fp_line (start -0.955 1.49) (end 0.955 1.49) (layer "F.Fab") (width 0.1) (tstamp 6e357160-fc3f-4043-9cc3-8dcdbf217748))
+    (fp_line (start -0.955 -0.49) (end -0.955 1.49) (layer "F.Fab") (width 0.1) (tstamp 97d06544-0582-47af-9627-3ceb0885b721))
+    (fp_line (start 0.045 -1.49) (end 0.955 -1.49) (layer "F.Fab") (width 0.1) (tstamp ca2ce250-d103-4e4c-b0e2-9caf2ba9f2c8))
+    (pad "1" smd rect locked (at -1.7 -0.95 180) (size 2 0.7) (layers "F.Cu" "F.Paste" "F.Mask")
+      (net 2 "+3V3") (pinfunction "VO") (pintype "power_out") (tstamp 3799f89f-0a7e-4460-a961-117b6052c468))
+    (pad "2" smd rect locked (at -1.7 0.95 180) (size 2 0.7) (layers "F.Cu" "F.Paste" "F.Mask")
+      (net 3 "+5V") (pinfunction "VI") (pintype "power_in") (tstamp be5d8c2b-5fe9-43a1-b345-4a9faa948400))
+    (pad "3" smd rect locked (at 1.7 0 180) (size 2 0.7) (layers "F.Cu" "F.Paste" "F.Mask")
+      (net 1 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 8dc3406f-8767-4e6d-8d89-959c20c629f8))
+    (model "${KISYS3DMOD}/TO_SOT_Packages_SMD.3dshapes/SOT-23W_Handsoldering.wrl"
+      (offset (xyz 0 0 0))
+      (scale (xyz 1 1 1))
+      (rotate (xyz 0 0 0))
+    )
+  )
+
+  (footprint "fab:C_1206" (layer "F.Cu")
+    (tedit 6002C54C) (tstamp a720bddf-2927-409d-ad92-1fb78c1f3947)
+    (at 76.676 45.974 180)
+    (descr "Capacitor SMD 1206, hand soldering")
+    (tags "capacitor 1206")
+    (property "Sheetfile" "samd11c14_capa.kicad_sch")
+    (property "Sheetname" "")
+    (path "/a20728c8-07ac-40ed-b60c-72d07a38f400")
+    (attr smd)
+    (fp_text reference "C1" (at 0.179605 2.514472) (layer "F.SilkS")
+      (effects (font (size 1 1) (thickness 0.15)))
+      (tstamp 74247cd2-18b0-4df5-ab0e-e8ed1189698d)
+    )
+    (fp_text value "1uF" (at 0 1.9) (layer "F.Fab")
+      (effects (font (size 1 1) (thickness 0.15)))
+      (tstamp b272ca60-7ac8-46cc-a13d-3f6b67e611c3)
+    )
+    (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
+      (effects (font (size 0.7 0.7) (thickness 0.105)))
+      (tstamp b3abddeb-a46d-41df-9df3-15c1edae70c2)
+    )
+    (fp_line (start 1 1.07) (end -1 1.07) (layer "F.SilkS") (width 0.12) (tstamp 1010b46c-eef0-4f42-b0b9-6202e8f4716e))
+    (fp_line (start -1 -1.07) (end 1 -1.07) (layer "F.SilkS") (width 0.12) (tstamp 55a7d5fa-dd5e-4f56-b184-a50e5ce59bad))
+    (fp_line (start 3.25 1.1) (end 3.25 -1.11) (layer "F.CrtYd") (width 0.05) (tstamp 29f1ff93-9bf2-4de2-b846-e2b842c60d1d))
+    (fp_line (start -3.25 -1.11) (end 3.25 -1.11) (layer "F.CrtYd") (width 0.05) (tstamp c0aae7a3-e56e-4f35-957e-49469fc56a62))
+    (fp_line (start -3.25 -1.11) (end -3.25 1.1) (layer "F.CrtYd") (width 0.05) (tstamp e4d11587-5753-4daa-bf9c-7dcc4c8eabf0))
+    (fp_line (start 3.25 1.1) (end -3.25 1.1) (layer "F.CrtYd") (width 0.05) (tstamp f9cc2034-c1ef-44f8-bfae-ce4edf914759))
+    (fp_line (start -1.6 -0.8) (end 1.6 -0.8) (layer "F.Fab") (width 0.1) (tstamp 48ed4673-294b-4cf0-ab21-3bec4c0dd55d))
+    (fp_line (start -1.6 0.8) (end -1.6 -0.8) (layer "F.Fab") (width 0.1) (tstamp 9445191d-4426-4c12-9fa9-a8aad771acc8))
+    (fp_line (start 1.6 0.8) (end -1.6 0.8) (layer "F.Fab") (width 0.1) (tstamp d61ea785-242c-4b1a-8576-3fe8179a0d53))
+    (fp_line (start 1.6 -0.8) (end 1.6 0.8) (layer "F.Fab") (width 0.1) (tstamp f2510726-77a2-4312-9561-a35053bdcced))
+    (pad "1" smd rect locked (at -2 0 180) (size 2 1.7) (layers "F.Cu" "F.Paste" "F.Mask")
+      (net 3 "+5V") (pintype "passive") (tstamp 64b8cd6d-9a74-4885-9d23-037c62ad9c4a))
+    (pad "2" smd rect locked (at 2 0 180) (size 2 1.7) (layers "F.Cu" "F.Paste" "F.Mask")
+      (net 1 "GND") (pintype "passive") (tstamp 976a1a04-03ed-45ac-84fa-a85b8920a115))
+    (model "${FAB}/fab.3dshapes/C_1206.step"
+      (offset (xyz 0 0 0))
+      (scale (xyz 1 1 1))
+      (rotate (xyz 0 0 0))
+    )
+  )
+
+  (footprint "fab:R_1206" (layer "F.Cu")
+    (tedit 60020482) (tstamp c5a10efe-7a10-4b9e-9cd8-a54114330eab)
+    (at 59.182 47.498 -90)
+    (descr "Resistor SMD 1206, hand soldering")
+    (tags "resistor 1206")
+    (property "Sheetfile" "samd11c14_capa.kicad_sch")
+    (property "Sheetname" "")
+    (path "/39cca1bd-96d6-42ee-8c69-5de87b57e546")
+    (attr smd)
+    (fp_text reference "R2" (at 0 -1.85 90) (layer "F.SilkS")
+      (effects (font (size 1 1) (thickness 0.15)))
+      (tstamp 9c13bc04-6c55-4fe1-abf9-4cf52a065eec)
+    )
+    (fp_text value "R" (at 0 1.9 90) (layer "F.Fab")
+      (effects (font (size 1 1) (thickness 0.15)))
+      (tstamp 4871090e-e0b1-4014-8fea-f2f7f4c1f8bb)
+    )
+    (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
+      (effects (font (size 0.7 0.7) (thickness 0.105)))
+      (tstamp 796618ff-adc1-4daf-832e-9d9cc9a2585a)
+    )
+    (fp_line (start -1 -1.07) (end 1 -1.07) (layer "F.SilkS") (width 0.12) (tstamp 0e3033c9-10ba-4ec4-9f5a-f9c0baa896c5))
+    (fp_line (start 1 1.07) (end -1 1.07) (layer "F.SilkS") (width 0.12) (tstamp 1eeecfbb-3527-478e-b14e-f1a92259fe26))
+    (fp_line (start 3.25 1.1) (end 3.25 -1.11) (layer "F.CrtYd") (width 0.05) (tstamp bf9951cf-d5ee-44c8-a616-67f84aa7d89c))
+    (fp_line (start 3.25 1.1) (end -3.25 1.1) (layer "F.CrtYd") (width 0.05) (tstamp d7bbb03c-7336-4248-b4d9-336c31f2f8c4))
+    (fp_line (start -3.25 -1.11) (end -3.25 1.1) (layer "F.CrtYd") (width 0.05) (tstamp d92c98e1-57d8-4c84-9de3-bd59837d7fba))
+    (fp_line (start -3.25 -1.11) (end 3.25 -1.11) (layer "F.CrtYd") (width 0.05) (tstamp f90a51ff-416f-4eac-82ed-38c599a6ae3f))
+    (fp_line (start 1.6 -0.8) (end 1.6 0.8) (layer "F.Fab") (width 0.1) (tstamp 02c1c33f-c8b0-4d35-8737-30d2579ed90a))
+    (fp_line (start 1.6 0.8) (end -1.6 0.8) (layer "F.Fab") (width 0.1) (tstamp 5505926f-28db-45fe-8341-9fd8bebcd326))
+    (fp_line (start -1.6 0.8) (end -1.6 -0.8) (layer "F.Fab") (width 0.1) (tstamp 7b05dc4b-8994-4544-9dfc-6bb51aca0e1a))
+    (fp_line (start -1.6 -0.8) (end 1.6 -0.8) (layer "F.Fab") (width 0.1) (tstamp f02c5fd3-b856-4d17-92b9-4d41a44228f0))
+    (pad "1" smd rect locked (at -2 0 270) (size 2 1.7) (layers "F.Cu" "F.Paste" "F.Mask")
+      (net 14 "Net-(U2-Pad1)") (pintype "passive") (tstamp 13f7a552-a646-40e6-b51b-e08ee801d2ce))
+    (pad "2" smd rect locked (at 2 0 270) (size 2 1.7) (layers "F.Cu" "F.Paste" "F.Mask")
+      (net 17 "CAPA") (pintype "passive") (tstamp ebc12e1b-80b0-437c-bc63-293e25268c98))
+    (model "${FAB}/fab.3dshapes/R_1206.step"
+      (offset (xyz 0 0 0))
+      (scale (xyz 1 1 1))
+      (rotate (xyz 0 0 0))
+    )
+  )
+
+  (footprint "fab:R_1206" (layer "F.Cu")
+    (tedit 60020482) (tstamp d53619cc-25b9-4a27-96c2-8340f1ffc830)
+    (at 75.946 33.274)
+    (descr "Resistor SMD 1206, hand soldering")
+    (tags "resistor 1206")
+    (property "Sheetfile" "samd11c14_capa.kicad_sch")
+    (property "Sheetname" "")
+    (path "/793db082-42ed-4019-b9c9-5a54a4f821e0")
+    (attr smd)
+    (fp_text reference "R1" (at 0 -1.85) (layer "F.SilkS")
+      (effects (font (size 1 1) (thickness 0.15)))
+      (tstamp 27592b53-3a45-4a8a-9812-2fc7d51b71d4)
+    )
+    (fp_text value "R" (at 0 1.9) (layer "F.Fab")
+      (effects (font (size 1 1) (thickness 0.15)))
+      (tstamp 63fff7e2-2fd3-4c9e-a801-724a7e50fb33)
+    )
+    (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
+      (effects (font (size 0.7 0.7) (thickness 0.105)))
+      (tstamp bbe5875b-a271-469c-9db4-31e93fc1a795)
+    )
+    (fp_line (start 1 1.07) (end -1 1.07) (layer "F.SilkS") (width 0.12) (tstamp cddd7c81-9408-4142-b1b5-ff0e50ed4408))
+    (fp_line (start -1 -1.07) (end 1 -1.07) (layer "F.SilkS") (width 0.12) (tstamp d1fd1e46-81e3-4a68-ac06-061cfcf8e49c))
+    (fp_line (start 3.25 1.1) (end 3.25 -1.11) (layer "F.CrtYd") (width 0.05) (tstamp 0c07d6b7-3b44-4125-8b9c-47d687937b2d))
+    (fp_line (start 3.25 1.1) (end -3.25 1.1) (layer "F.CrtYd") (width 0.05) (tstamp 59fabbf2-5a3d-47b2-922f-32475949508f))
+    (fp_line (start -3.25 -1.11) (end -3.25 1.1) (layer "F.CrtYd") (width 0.05) (tstamp 5bef9cab-4b75-45ba-a0ec-ce235f63187d))
+    (fp_line (start -3.25 -1.11) (end 3.25 -1.11) (layer "F.CrtYd") (width 0.05) (tstamp e484dc70-1546-481c-9299-7adc5c3e2506))
+    (fp_line (start -1.6 0.8) (end -1.6 -0.8) (layer "F.Fab") (width 0.1) (tstamp 1915c321-c7d3-4d40-8bec-0ae8dcfcc7c4))
+    (fp_line (start 1.6 -0.8) (end 1.6 0.8) (layer "F.Fab") (width 0.1) (tstamp 603bf52a-5ea1-49c3-ad9d-0ee3d274da52))
+    (fp_line (start -1.6 -0.8) (end 1.6 -0.8) (layer "F.Fab") (width 0.1) (tstamp b53deeab-184f-48d5-9a4b-48f2e70933ba))
+    (fp_line (start 1.6 0.8) (end -1.6 0.8) (layer "F.Fab") (width 0.1) (tstamp e79eb36e-34aa-4c81-9e35-881b7505298a))
+    (pad "1" smd rect locked (at -2 0) (size 2 1.7) (layers "F.Cu" "F.Paste" "F.Mask")
+      (net 13 "LED_A") (pintype "passive") (tstamp 4c73ff14-f0af-4477-8225-439ab6c207b6))
+    (pad "2" smd rect locked (at 2 0) (size 2 1.7) (layers "F.Cu" "F.Paste" "F.Mask")
+      (net 12 "Net-(D1-Pad2)") (pintype "passive") (tstamp 0fa65c06-6086-4a07-9a9e-68f90181883f))
+    (model "${FAB}/fab.3dshapes/R_1206.step"
+      (offset (xyz 0 0 0))
+      (scale (xyz 1 1 1))
+      (rotate (xyz 0 0 0))
+    )
+  )
+
+  (footprint "fab:LED_1206" (layer "F.Cu")
+    (tedit 595FC724) (tstamp f1c094d8-0713-4225-a7ca-e83c50af8377)
+    (at 75.946 35.814)
+    (descr "LED SMD 1206, hand soldering")
+    (tags "LED 1206")
+    (property "Sheetfile" "samd11c14_capa.kicad_sch")
+    (property "Sheetname" "")
+    (path "/c4a71020-03ce-4f30-a55a-13a246010c50")
+    (attr smd)
+    (fp_text reference "D1" (at 0 -1.85) (layer "F.SilkS")
+      (effects (font (size 1 1) (thickness 0.15)))
+      (tstamp 7e485dd6-7e70-4c68-b61d-97800fdfb74a)
+    )
+    (fp_text value "LED" (at 0 1.9) (layer "F.Fab")
+      (effects (font (size 1 1) (thickness 0.15)))
+      (tstamp d07e234d-4950-4f5f-a129-862df3a50f70)
+    )
+    (fp_line (start -3.1 -0.95) (end -3.1 0.95) (layer "F.SilkS") (width 0.12) (tstamp 2f68edbf-ba7c-4d18-b89e-ff700cfeadc6))
+    (fp_line (start -3.1 -0.95) (end 1.6 -0.95) (layer "F.SilkS") (width 0.12) (tstamp 583b4d95-7448-4863-8207-9753ec361bf8))
+    (fp_line (start -3.1 0.95) (end 1.6 0.95) (layer "F.SilkS") (width 0.12) (tstamp df052241-b3a7-42cb-820e-d0f9e67d021a))
+    (fp_line (start 3.25 1.1) (end -3.25 1.1) (layer "F.CrtYd") (width 0.05) (tstamp 6aea47a1-4a29-43bf-99a3-1960dd90a2dd))
+    (fp_line (start 3.25 1.1) (end 3.25 -1.11) (layer "F.CrtYd") (width 0.05) (tstamp 7fe4c6ce-fb46-4ea9-9ea0-b5c18231fa0a))
+    (fp_line (start -3.25 -1.11) (end 3.25 -1.11) (layer "F.CrtYd") (width 0.05) (tstamp 827c50a3-2e70-4493-be6d-9d318e408b5e))
+    (fp_line (start -3.25 -1.11) (end -3.25 1.1) (layer "F.CrtYd") (width 0.05) (tstamp bbfb8ee0-7056-4442-b953-500ea4659e0c))
+    (fp_line (start 1.6 0.8) (end -1.6 0.8) (layer "F.Fab") (width 0.1) (tstamp 4e83fc2b-0cbc-4384-9c2a-ddc5e13ba0ea))
+    (fp_line (start -1.6 0.8) (end -1.6 -0.8) (layer "F.Fab") (width 0.1) (tstamp 61270a1a-ac38-4cc1-b994-507e963f23c5))
+    (fp_line (start 0.2 -0.4) (end 0.2 0.4) (layer "F.Fab") (width 0.1) (tstamp 62d4852a-396d-4c2b-8cde-ea0ee50a7970))
+    (fp_line (start -0.4 0) (end 0.2 -0.4) (layer "F.Fab") (width 0.1) (tstamp 6300798d-bde3-409e-a11e-830d86aff69d))
+    (fp_line (start 1.6 -0.8) (end 1.6 0.8) (layer "F.Fab") (width 0.1) (tstamp 80b68303-f051-4d7d-a227-c67b616acf1b))
+    (fp_line (start -1.6 -0.8) (end 1.6 -0.8) (layer "F.Fab") (width 0.1) (tstamp aba6290b-3e0f-4514-98bb-2f230e0f2474))
+    (fp_line (start 0.2 0.4) (end -0.4 0) (layer "F.Fab") (width 0.1) (tstamp b8d1ae1a-e5bf-4b97-b353-68b1db16fbec))
+    (fp_line (start -0.45 -0.4) (end -0.45 0.4) (layer "F.Fab") (width 0.1) (tstamp fb0bf91b-a28c-4556-8306-e982dbb3586d))
+    (pad "1" smd rect locked (at -2 0) (size 2 1.7) (layers "F.Cu" "F.Paste" "F.Mask")
+      (net 6 "LED_C") (pinfunction "K") (pintype "passive") (tstamp 8704b276-fbb0-4429-a991-bfe8bcd13836))
+    (pad "2" smd rect locked (at 2 0) (size 2 1.7) (layers "F.Cu" "F.Paste" "F.Mask")
+      (net 12 "Net-(D1-Pad2)") (pinfunction "A") (pintype "passive") (tstamp 39c96d08-b633-4902-9ec8-57d48abc5edf))
+    (model "${KISYS3DMOD}/LEDs.3dshapes/LED_1206.wrl"
+      (offset (xyz 0 0 0))
+      (scale (xyz 1 1 1))
+      (rotate (xyz 0 0 180))
+    )
+  )
+
+  (footprint "fab:Conn_USB_A_Plain" (layer "F.Cu")
+    (tedit 61EE6490) (tstamp ff5ead9b-37b8-4bc9-9ac4-39775f57c6cf)
+    (at 66.929 26.416 90)
+    (descr "Plain USB Type A connector that can be cut with a PCB milling machine")
+    (tags "USB type A plain fab")
+    (property "Sheetfile" "samd11c14_capa.kicad_sch")
+    (property "Sheetname" "")
+    (path "/edc78bf5-dcc5-4cd6-aa4e-c01e87f3a3ff")
+    (attr smd)
+    (fp_text reference "P1" (at -5.334 0 unlocked) (layer "F.SilkS")
+      (effects (font (size 1 1) (thickness 0.15)))
+      (tstamp d8e5be0d-d98f-406a-bb3b-e2b68228703b)
+    )
+    (fp_text value "Conn_USB_A_Plain" (at 0 7 90 unlocked) (layer "F.Fab")
+      (effects (font (size 1 1) (thickness 0.15)))
+      (tstamp 33112a1f-3ef4-4453-945b-eafb5950befb)
+    )
+    (fp_text user "${REFERENCE}" (at 0 0 90 unlocked) (layer "F.Fab")
+      (effects (font (size 1 1) (thickness 0.15)))
+      (tstamp b85d8111-c66c-4649-8ef3-173324d8dc2f)
+    )
+    (fp_rect (start -4.25 -6.25) (end 6.25 6.25) (layer "B.CrtYd") (width 0.05) (fill none) (tstamp 7a961303-0ee0-4514-9c41-71f7612da80d))
+    (fp_rect (start -4.25 -6.25) (end 6.25 6.25) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp aa1a0bd5-2e16-4ae4-84c6-ff71de2d0c53))
+    (fp_line (start 6 -5.5) (end 6 5.5) (layer "F.Fab") (width 0.1) (tstamp 199f157d-6f84-41da-be4c-6e21ffdc4f00))
+    (fp_line (start -4 -6) (end 5.5 -6) (layer "F.Fab") (width 0.1) (tstamp 651c91fd-ec54-4600-b738-56cbf235205c))
+    (fp_line (start 5.5 6) (end -4 6) (layer "F.Fab") (width 0.1) (tstamp 8e865536-7e57-40b8-97a2-c3d4b4b14caf))
+    (fp_arc (start 6 5.5) (mid 5.853553 5.853553) (end 5.5 6) (layer "F.Fab") (width 0.1) (tstamp acbae352-7edb-481c-9de1-1fbd99403011))
+    (fp_arc (start 5.5 -6) (mid 5.853553 -5.853553) (end 6 -5.5) (layer "F.Fab") (width 0.1) (tstamp ca6bed28-5471-4a76-b6aa-41bb1fbae087))
+    (pad "1" smd rect (at 0.5 -3.5 90) (size 9 1.2) (layers "F.Cu" "F.Paste" "F.Mask")
+      (net 3 "+5V") (pinfunction "5V") (pintype "power_out") (tstamp 5d0be09d-133e-4cac-b0d8-fd336835cc6c))
+    (pad "2" smd rect (at 0 -1 90) (size 8 1.2) (layers "F.Cu" "F.Paste" "F.Mask")
+      (net 4 "D-") (pinfunction "D-") (pintype "bidirectional") (tstamp 453a77ad-fac0-4cd4-9fca-6e04f8cfa3e5))
+    (pad "3" smd rect (at 0 1 90) (size 8 1.2) (layers "F.Cu" "F.Paste" "F.Mask")
+      (net 5 "D+") (pinfunction "D+") (pintype "bidirectional") (tstamp 25f3023a-0b40-4b57-b672-1aea8836d4eb))
+    (pad "4" smd rect (at 0.5 3.5 90) (size 9 1.2) (layers "F.Cu" "F.Paste" "F.Mask")
+      (net 1 "GND") (pinfunction "GND") (pintype "power_out") (tstamp b217b8c4-9da3-40f9-a62d-8788048abf37))
+  )
+
+  (gr_arc (start 80.264 57.909998) (mid 67.057235 71.501624) (end 53.594 58.163998) (layer "Edge.Cuts") (width 0.1) (tstamp 0345fd68-553c-435d-a585-f0794b392f79))
+  (gr_line (start 60.8584 30.734) (end 60.8584 20.193) (layer "Edge.Cuts") (width 0.1) (tstamp 45289df9-d1e8-4b8e-af7b-14fb3554652f))
+  (gr_line (start 72.9996 20.193) (end 60.8584 20.193) (layer "Edge.Cuts") (width 0.1) (tstamp 6439c27f-b390-4e30-8e16-4a07043bc314))
+  (gr_line (start 54.356 30.734) (end 53.594 31.496) (layer "Edge.Cuts") (width 0.1) (tstamp 71a423b9-e460-4102-84b5-9686721985e1))
+  (gr_line (start 53.594 58.163998) (end 53.594 31.496) (layer "Edge.Cuts") (width 0.1) (tstamp 7ddc7d53-1bb3-40d9-b48e-27664f299f6b))
+  (gr_line (start 72.9996 20.193) (end 72.9996 30.734) (layer "Edge.Cuts") (width 0.1) (tstamp 84bfaaa4-fe8b-464b-9837-7febb50ee6ce))
+  (gr_line (start 80.264 57.909998) (end 80.264 31.496) (layer "Edge.Cuts") (width 0.1) (tstamp a3ccf9a7-c443-45d6-a66f-d31c2155aa2d))
+  (gr_line (start 72.9996 30.734) (end 79.502 30.734) (layer "Edge.Cuts") (width 0.1) (tstamp b0241644-32fb-4c01-b372-2c6daf1d48e1))
+  (gr_line (start 80.264 31.496) (end 79.502 30.734) (layer "Edge.Cuts") (width 0.1) (tstamp c5c631ad-4f7e-4f20-98ec-a852fdbb8a86))
+  (gr_line (start 54.356 30.734) (end 60.8584 30.734) (layer "Edge.Cuts") (width 0.1) (tstamp e8b24d99-7a48-467e-970b-8c034bdc00c2))
+
+  (segment (start 67.564 37.338) (end 67.564 33.257878) (width 0.3) (layer "F.Cu") (net 1) (tstamp 03a4d451-1cc1-4813-a853-4ef1efccd07f))
+  (segment (start 70.7685 37.7485) (end 72.39 39.37) (width 0.4) (layer "F.Cu") (net 1) (tstamp 04339b55-09ae-408e-a1f1-16507920b4f8))
+  (segment (start 72.422 42.926) (end 72.422 45.752) (width 0.4) (layer "F.Cu") (net 1) (tstamp 2028359b-469b-4c85-8516-a07f311b7b1a))
+  (segment (start 69.3024 37.7485) (end 70.7685 37.7485) (width 0.4) (layer "F.Cu") (net 1) (tstamp 5201a1ca-ce6d-4c58-b8b5-c861211e2631))
+  (segment (start 69.3024 37.7485) (end 67.9745 37.7485) (width 0.3) (layer "F.Cu") (net 1) (tstamp 5b843b70-50be-4c2b-b736-35531f2def85))
+  (segment (start 74.962 45.974) (end 72.644 45.974) (width 0.4) (layer "F.Cu") (net 1) (tstamp 69c29c3c-a637-4da7-aacb-c666d95cc6cc))
+  (segment (start 72.422 45.752) (end 72.644 45.974) (width 0.4) (layer "F.Cu") (net 1) (tstamp 798a0c77-6ffe-477e-9a8d-e5a95d411ca1))
+  (segment (start 72.468 42.88) (end 72.422 42.926) (width 0.4) (layer "F.Cu") (net 1) (tstamp 886a47bc-a8a0-4443-afe3-a714bade71a4))
+  (segment (start 69.342 32.766) (end 70.429 31.679) (width 0.3) (layer "F.Cu") (net 1) (tstamp 8c00ffb4-3e2e-4ef1-900f-2fdee4cfd979))
+  (segment (start 72.468 39.37) (end 72.468 42.88) (width 0.4) (layer "F.Cu") (net 1) (tstamp 9bbb727e-5c4a-4f8d-ba76-2faba2e4d414))
+  (segment (start 68.055878 32.766) (end 69.342 32.766) (width 0.3) (layer "F.Cu") (net 1) (tstamp ab169002-7cb0-4fb3-9171-5e857396b351))
+  (segment (start 72.39 39.37) (end 72.468 39.37) (width 0.4) (layer "F.Cu") (net 1) (tstamp b8f66175-a190-45f7-a12e-280a88ab3663))
+  (segment (start 70.429 31.679) (end 70.429 25.916) (width 0.3) (layer "F.Cu") (net 1) (tstamp bb5eca57-c084-47ea-a936-c3383d02631e))
+  (segment (start 69.007881 47.618019) (end 69.3524 47.2735) (width 0.4) (layer "F.Cu") (net 1) (tstamp d1ab580a-5f1f-4391-b511-a8d3a5de47b4))
+  (segment (start 69.3524 47.2735) (end 71.3445 47.2735) (width 0.4) (layer "F.Cu") (net 1) (tstamp d8f62de9-1185-4783-ab9c-241325d19c1e))
+  (segment (start 67.9745 37.7485) (end 67.564 37.338) (width 0.3) (layer "F.Cu") (net 1) (tstamp ebcb4f7e-9d0b-4a88-a91f-4b08e48cbdfd))
+  (segment (start 71.3445 47.2735) (end 72.644 45.974) (width 0.4) (layer "F.Cu") (net 1) (tstamp f3853fb1-3fb6-4c45-b612-996f5c26c34d))
+  (segment (start 67.564 33.257878) (end 68.055878 32.766) (width 0.3) (layer "F.Cu") (net 1) (tstamp fe6ffaa4-7474-4c85-8acf-df287b6cc6e0))
+  (segment (start 70.7685 36.4785) (end 71.628 37.338) (width 0.4) (layer "F.Cu") (net 2) (tstamp 02a96378-cded-4b73-bf27-3f8258be0452))
+  (segment (start 74.256 39.712) (end 74.864 40.32) (width 0.4) (layer "F.Cu") (net 2) (tstamp 260d9b87-197a-4218-838a-39b9325306c3))
+  (segment (start 71.628 37.338) (end 73.66 37.338) (width 0.4) (layer "F.Cu") (net 2) (tstamp 337ecfec-65fe-4993-934d-7d8ffdc8e586))
+  (segment (start 74.864 40.32) (end 75.868 40.32) (width 0.4) (layer "F.Cu") (net 2) (tstamp 3fd3bd2c-431d-49f6-9aff-d429703ecca7))
+  (segment (start 75.868 40.32) (end 76.962 40.32) (width 0.4) (layer "F.Cu") (net 2) (tstamp 4a16eb73-034c-4307-9ec4-2e6ee5d6cbe9))
+  (segment (start 73.66 37.338) (end 74.256 37.934) (width 0.4) (layer "F.Cu") (net 2) (tstamp 76754a92-43e4-432f-88d4-396c823c1b87))
+  (segment (start 74.256 37.934) (end 74.256 39.712) (width 0.4) (layer "F.Cu") (net 2) (tstamp 7786c527-7f37-46a1-8b10-f6b7cef2290c))
+  (segment (start 76.962 40.32) (end 76.962 42.386) (width 0.4) (layer "F.Cu") (net 2) (tstamp 7f808feb-e10a-4e8d-b1b6-6951205b3860))
+  (segment (start 76.962 42.386) (end 76.422 42.926) (width 0.4) (layer "F.Cu") (net 2) (tstamp 89bb4b59-8bc8-432c-b79a-a99c03fa0c5b))
+  (segment (start 76.422 42.926) (end 76.708 42.926) (width 0.4) (layer "F.Cu") (net 2) (tstamp 9d90b1ae-acc0-438b-9239-3b0bf96f9118))
+  (segment (start 76.708 42.926) (end 76.962 42.672) (width 0.4) (layer "F.Cu") (net 2) (tstamp d88cbf16-afd9-4137-afeb-c184fcc8716c))
+  (segment (start 69.3024 36.4785) (end 70.7685 36.4785) (width 0.4) (layer "F.Cu") (net 2) (tstamp e4d37f03-b2e6-40b3-8baa-8aba721e9376))
+  (segment (start 78.676 48.578) (end 78.676 45.974) (width 0.4) (layer "F.Cu") (net 3) (tstamp 07193d28-0f96-4afa-95fb-f34ba917431c))
+  (segment (start 63.429 25.916) (end 63.429 32.329) (width 0.4) (layer "F.Cu") (net 3) (tstamp 101a6607-1ac1-499c-92ad-7ef1a65e3cfb))
+  (segment (start 58.166 47.498) (end 60.198 47.498) (width 0.4) (layer "F.Cu") (net 3) (tstamp 1afbc736-f8a6-4af8-9a81-e1b188c36168))
+  (segment (start 57.404 46.736) (end 58.166 47.498) (width 0.4) (layer "F.Cu") (net 3) (tstamp 4244bbb5-ef85-4264-a4dd-5bd24fde589b))
+  (segment (start 75.868 38.42) (end 76.518 38.42) (width 0.4) (layer "F.Cu") (net 3) (tstamp 4709173f-fab0-46d0-803e-338cfaee027e))
+  (segment (start 63.429 32.329) (end 57.404 38.354) (width 0.4) (layer "F.Cu") (net 3) (tstamp 49ff9f5a-6505-4854-844d-95f25f0499a4))
+  (segment (start 78.676 40.578) (end 78.676 45.974) (width 0.4) (layer "F.Cu") (net 3) (tstamp 7a155c26-a51a-4bf2-ba0e-e327d93410c6))
+  (segment (start 57.404 38.354) (end 57.404 46.736) (width 0.4) (layer "F.Cu") (net 3) (tstamp 8f44e620-8200-441c-a780-50d5d303cb43))
+  (segment (start 76.518 38.42) (end 78.676 40.578) (width 0.4) (layer "F.Cu") (net 3) (tstamp d1a8c888-5473-41f3-8d0a-8baf57db4cab))
+  (segment (start 76.962 50.292) (end 78.676 48.578) (width 0.4) (layer "F.Cu") (net 3) (tstamp df0e2c21-5777-41fd-b929-b56e9d0bac4a))
+  (segment (start 62.992 50.292) (end 76.962 50.292) (width 0.4) (layer "F.Cu") (net 3) (tstamp ef148eb8-7baf-4136-8f35-a7374a7dc644))
+  (segment (start 60.198 47.498) (end 62.992 50.292) (width 0.4) (layer "F.Cu") (net 3) (tstamp fa4b3a81-e338-49d7-b069-6da44f1ddc0f))
+  (segment (start 65.929 31.385) (end 65.929 26.416) (width 0.3) (layer "F.Cu") (net 4) (tstamp 047a2792-3899-4e7d-a045-c64ff9f8bf1d))
+  (segment (start 69.3024 40.2885) (end 66.7045 40.2885) (width 0.3) (layer "F.Cu") (net 4) (tstamp 4d4d8e62-0538-44b6-89ba-8c2e4a49bcd4))
+  (segment (start 65.929 28.929702) (end 65.929 26.416) (width 0.4) (layer "F.Cu") (net 4) (tstamp b35b9bf8-d0d3-480c-8956-d41f7e1e55ec))
+  (segment (start 66.04 31.496) (end 65.929 31.385) (width 0.3) (layer "F.Cu") (net 4) (tstamp b919ca47-ac0d-4db9-b515-25954dc23662))
+  (segment (start 66.04 39.624) (end 66.04 31.496) (width 0.3) (layer "F.Cu") (net 4) (tstamp c9f3535d-11db-4ac9-9220-f092432d4272))
+  (segment (start 66.073849 29.074551) (end 65.929 28.929702) (width 0.4) (layer "F.Cu") (net 4) (tstamp ca78bc3a-1a93-43d7-8313-02bcdae2b1f3))
+  (segment (start 66.7045 40.2885) (end 66.04 39.624) (width 0.3) (layer "F.Cu") (net 4) (tstamp f808c68b-a25b-4aa1-9f3d-69d898d7b16b))
+  (segment (start 66.802 31.75) (end 66.802 38.608) (width 0.3) (layer "F.Cu") (net 5) (tstamp 210e702e-8fff-4d71-b531-7920637e2787))
+  (segment (start 67.929 26.416) (end 67.794489 26.550511) (width 0.4) (layer "F.Cu") (net 5) (tstamp 2db13a45-4504-4a10-86ad-1009b20d9f40))
+  (segment (start 67.929 30.623) (end 66.802 31.75) (width 0.3) (layer "F.Cu") (net 5) (tstamp 50d814dd-ca5c-4dc9-bed1-68de34f7ff38))
+  (segment (start 67.2125 39.0185) (end 69.3024 39.0185) (width 0.3) (layer "F.Cu") (net 5) (tstamp a66a0eb2-226c-4a5f-aa50-44d77aafdf70))
+  (segment (start 67.929 26.416) (end 67.929 30.623) (width 0.3) (layer "F.Cu") (net 5) (tstamp e1209164-d2e2-4f23-8b04-475bb4af84ad))
+  (segment (start 66.802 38.608) (end 67.2125 39.0185) (width 0.3) (layer "F.Cu") (net 5) (tstamp e33dce2f-b9b0-4e98-bc4c-7d5d149d6ef3))
+  (segment (start 71.5305 35.2085) (end 72.136 35.814) (width 0.4) (layer "F.Cu") (net 6) (tstamp 3c041346-2342-41b1-9ae0-75701f1a16ed))
+  (segment (start 72.136 35.814) (end 73.946 35.814) (width 0.4) (layer "F.Cu") (net 6) (tstamp 8f7b78d5-1627-41b4-8313-8c6b7ec0ee01))
+  (segment (start 69.3024 35.2085) (end 71.5305 35.2085) (width 0.4) (layer "F.Cu") (net 6) (tstamp d310b487-3773-4ce5-9942-b7018f993c77))
+  (segment (start 62.023511 41.222211) (end 62.957222 40.2885) (width 0.4) (layer "F.Cu") (net 7) (tstamp 2dec1ee0-4fd4-4795-a1db-266cddb29ba4))
+  (segment (start 62.5135 47.2735) (end 62.023511 46.783511) (width 0.4) (layer "F.Cu") (net 7) (tstamp 3643d4e6-06d0-4339-984c-2e787368fbcc))
+  (segment (start 64.3024 47.2735) (end 62.5135 47.2735) (width 0.4) (layer "F.Cu") (net 7) (tstamp 7634bc7f-484a-4260-97c4-fce2ff061701))
+  (segment (start 62.957222 40.2885) (end 64.3524 40.2885) (width 0.4) (layer "F.Cu") (net 7) (tstamp bf8291ab-7c51-41c8-b1ac-0d97a1059cd2))
+  (segment (start 62.023511 46.783511) (end 62.023511 41.222211) (width 0.4) (layer "F.Cu") (net 7) (tstamp da365731-9b01-4a52-8caa-a8c36eb3d883))
+  (segment (start 69.3524 41.6085) (end 69.3024 41.5585) (width 0.4) (layer "F.Cu") (net 8) (tstamp b34588a8-1417-4351-ab8d-184680f43c1f))
+  (segment (start 69.3524 44.7335) (end 69.3524 41.6085) (width 0.4) (layer "F.Cu") (net 8) (tstamp c622452a-f479-4323-9ad9-04db8abf27e0))
+  (segment (start 64.3024 41.6085) (end 64.3524 41.5585) (width 0.4) (layer "F.Cu") (net 9) (tstamp dc787627-3657-4953-b0cf-ca74f369d820))
+  (segment (start 64.3024 44.7335) (end 64.3024 41.6085) (width 0.4) (layer "F.Cu") (net 9) (tstamp e7287e6b-c861-4e14-a0c9-901945abbfc0))
+  (segment (start 77.946 33.274) (end 77.946 35.814) (width 0.4) (layer "F.Cu") (net 12) (tstamp 425f99c4-37bd-4d25-9e4f-5f48bafbcd03))
+  (segment (start 72.136 33.274) (end 73.946 33.274) (width 0.4) (layer "F.Cu") (net 13) (tstamp 0b71f8d2-3097-4cea-abd6-6f18d197bcff))
+  (segment (start 71.4715 33.9385) (end 72.136 33.274) (width 0.4) (layer "F.Cu") (net 13) (tstamp 570828c0-d606-41a0-b767-8b34cf9929e8))
+  (segment (start 69.3024 33.9385) (end 71.4715 33.9385) (width 0.4) (layer "F.Cu") (net 13) (tstamp e60e81d1-1a76-403b-a669-30d647249d6f))
+  (segment (start 59.182 37.868756) (end 63.112256 33.9385) (width 0.25) (layer "F.Cu") (net 14) (tstamp 2aadfd7c-372f-4d3c-972f-e7855eaddf45))
+  (segment (start 63.112256 33.9385) (end 64.3524 33.9385) (width 0.25) (layer "F.Cu") (net 14) (tstamp 4aa14d74-bfc3-4566-989d-72417dbe0c76))
+  (segment (start 59.182 45.498) (end 59.182 37.868756) (width 0.25) (layer "F.Cu") (net 14) (tstamp 5a90138f-fd69-47b6-87df-f90b07e86699))
+  (segment (start 59.182 49.498) (end 59.182 52.832) (width 0.25) (layer "F.Cu") (net 17) (tstamp 89eea290-fb95-4403-9c03-ff797cc7f480))
+
+  (zone (net 17) (net_name "CAPA") (layer "F.Cu") (tstamp be51fd1f-bf89-42bd-97b2-4dab1b586650) (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))
+    (polygon
+      (pts
+        (xy 80.264 71.628)
+        (xy 53.594 71.628)
+        (xy 53.594 51.308)
+        (xy 80.264 51.308)
+      )
+    )
+    (filled_polygon
+      (layer "F.Cu")
+      (pts
+        (xy 79.698121 51.328002)
+        (xy 79.744614 51.381658)
+        (xy 79.756 51.434)
+        (xy 79.756 57.866749)
+        (xy 79.754849 57.88374)
+        (xy 79.750788 57.91358)
+        (xy 79.752122 57.922454)
+        (xy 79.752122 57.922457)
+        (xy 79.754394 57.937568)
+        (xy 79.75579 57.957313)
+        (xy 79.750492 58.615326)
+        (xy 79.75025 58.622176)
+        (xy 79.735391 58.859423)
+        (xy 79.706981 59.313013)
+        (xy 79.706365 59.319852)
+        (xy 79.625533 60.007277)
+        (xy 79.624545 60.014071)
+        (xy 79.506384 60.696086)
+        (xy 79.505029 60.702817)
+        (xy 79.349893 61.377384)
+        (xy 79.348172 61.384031)
+        (xy 79.156525 62.049134)
+        (xy 79.154445 62.055677)
+        (xy 78.926849 62.709364)
+        (xy 78.924415 62.715785)
+        (xy 78.661556 63.356087)
+        (xy 78.658777 63.362365)
+        (xy 78.361416 63.987429)
+        (xy 78.358313 63.993518)
+        (xy 78.027347 64.601451)
+        (xy 78.023901 64.607389)
+        (xy 77.702919 65.127368)
+        (xy 77.66032 65.196376)
+        (xy 77.656559 65.202114)
+        (xy 77.276923 65.748146)
+        (xy 77.261428 65.770432)
+        (xy 77.257362 65.775953)
+        (xy 76.831863 66.321899)
+        (xy 76.827496 66.327197)
+        (xy 76.37289 66.849154)
+        (xy 76.368242 66.854207)
+        (xy 76.195108 67.032387)
+        (xy 75.88587 67.350637)
+        (xy 75.880966 67.355415)
+        (xy 75.372271 67.824829)
+        (xy 75.367116 67.829333)
+        (xy 74.8336 68.270345)
+        (xy 74.828209 68.274559)
+        (xy 74.27146 68.685857)
+        (xy 74.265851 68.689768)
+        (xy 73.687539 69.070118)
+        (xy 73.681713 69.073727)
+        (xy 73.08352 69.422023)
+        (xy 73.077495 69.425314)
+        (xy 72.461266 69.740484)
+        (xy 72.45507 69.743443)
+        (xy 71.822568 70.024586)
+        (xy 71.81622 70.027203)
+        (xy 71.169338 70.273477)
+        (xy 71.162857 70.275744)
+        (xy 70.503537 70.48641)
+        (xy 70.496943 70.488321)
+        (xy 69.827113 70.662764)
+        (xy 69.820424 70.664313)
+        (xy 69.142081 70.80201)
+        (xy 69.135317 70.803192)
+        (xy 68.872036 70.841845)
+        (xy 68.450486 70.903734)
+        (xy 68.44368 70.904544)
+        (xy 68.256253 70.921699)
+        (xy 67.754378 70.967633)
+        (xy 67.747526 70.968072)
+        (xy 67.055822 70.99352)
+        (xy 67.048957 70.993585)
+        (xy 66.356914 70.981317)
+        (xy 66.350055 70.981009)
+        (xy 66.165177 70.967633)
+        (xy 65.65967 70.931059)
+        (xy 65.652848 70.930378)
+        (xy 64.966218 70.842897)
+        (xy 64.959451 70.841847)
+        (xy 64.278592 70.71709)
+        (xy 64.271909 70.715677)
+        (xy 63.830075 70.609554)
+        (xy 63.598856 70.554018)
+        (xy 63.592227 70.552233)
+        (xy 62.928996 70.354158)
+        (xy 62.922486 70.352019)
+        (xy 62.271034 70.118111)
+        (xy 62.264641 70.115617)
+        (xy 62.157427 70.070386)
+        (xy 61.626898 69.84657)
+        (xy 61.620647 69.84373)
+        (xy 60.998497 69.54034)
+        (xy 60.99241 69.537163)
+        (xy 60.387734 69.200346)
+        (xy 60.381829 69.196843)
+        (xy 59.796383 68.82758)
+        (xy 59.790677 68.82376)
+        (xy 59.226206 68.423147)
+        (xy 59.220718 68.419022)
+        (xy 58.949826 68.203651)
+        (xy 58.678921 67.988269)
+        (xy 58.673677 67.983861)
+        (xy 58.156136 67.524222)
+        (xy 58.151128 67.519525)
+        (xy 57.659403 67.032387)
+        (xy 57.654659 67.027424)
+        (xy 57.190194 66.51422)
+        (xy 57.185727 66.509005)
+        (xy 57.036284 66.324611)
+        (xy 56.749916 65.971271)
+        (xy 56.745743 65.965825)
+        (xy 56.339855 65.405131)
+        (xy 56.335982 65.399462)
+        (xy 55.961257 64.817518)
+        (xy 55.957698 64.811646)
+        (xy 55.615215 64.21013)
+        (xy 55.611982 64.204073)
+        (xy 55.505353 63.990518)
+        (xy 55.302779 63.584806)
+        (xy 55.299885 63.578593)
+        (xy 55.20355 63.356087)
+        (xy 55.024868 62.943386)
+        (xy 55.022314 62.937016)
+        (xy 54.782318 62.287806)
+        (xy 54.780114 62.281304)
+        (xy 54.575823 61.619937)
+        (xy 54.573976 61.613324)
+        (xy 54.515797 61.380725)
+        (xy 54.406022 60.941842)
+        (xy 54.404541 60.935152)
+        (xy 54.273415 60.255523)
+        (xy 54.272298 60.248748)
+        (xy 54.178385 59.562974)
+        (xy 54.177639 59.556149)
+        (xy 54.121222 58.866279)
+        (xy 54.120849 58.859423)
+        (xy 54.103225 58.209223)
+        (xy 54.104682 58.186407)
+        (xy 54.105803 58.179214)
+        (xy 54.105803 58.179213)
+        (xy 54.107185 58.170345)
+        (xy 54.103061 58.138771)
+        (xy 54.102 58.122452)
+        (xy 54.102 51.434)
+        (xy 54.122002 51.365879)
+        (xy 54.175658 51.319386)
+        (xy 54.228 51.308)
+        (xy 79.63 51.308)
+      )
+    )
+  )
+)
diff --git a/capacitive/samd11c14_capa.kicad_pro b/capacitive/samd11c14_capa.kicad_pro
new file mode 100644
index 0000000000000000000000000000000000000000..7ac29ce284e5136108f925f7ab5e2a3f60d23fad
--- /dev/null
+++ b/capacitive/samd11c14_capa.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.41,
+        "min_copper_edge_clearance": 0.19999999999999998,
+        "min_hole_clearance": 0.41,
+        "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.41,
+        "solder_mask_clearance": 0.0,
+        "solder_mask_min_width": 0.0,
+        "use_height_for_length_calcs": true
+      },
+      "track_widths": [
+        0.0,
+        0.3,
+        0.4
+      ],
+      "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": "samd11c14_pot.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": [
+    [
+      "d4eb2907-309b-4782-9005-ba4144c8413e",
+      ""
+    ]
+  ],
+  "text_variables": {}
+}
diff --git a/capacitive/samd11c14_capa.kicad_sch b/capacitive/samd11c14_capa.kicad_sch
new file mode 100644
index 0000000000000000000000000000000000000000..a6e28eac59c54b06883d4fa09bcb550eead1529d
--- /dev/null
+++ b/capacitive/samd11c14_capa.kicad_sch
@@ -0,0 +1,1068 @@
+(kicad_sch (version 20211123) (generator eeschema)
+
+  (uuid d4eb2907-309b-4782-9005-ba4144c8413e)
+
+  (paper "A4")
+
+  (lib_symbols
+    (symbol "Device:R" (pin_numbers hide) (pin_names (offset 0)) (in_bom yes) (on_board yes)
+      (property "Reference" "R" (id 0) (at 2.032 0 90)
+        (effects (font (size 1.27 1.27)))
+      )
+      (property "Value" "R" (id 1) (at 0 0 90)
+        (effects (font (size 1.27 1.27)))
+      )
+      (property "Footprint" "" (id 2) (at -1.778 0 90)
+        (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" "R res resistor" (id 4) (at 0 0 0)
+        (effects (font (size 1.27 1.27)) hide)
+      )
+      (property "ki_description" "Resistor" (id 5) (at 0 0 0)
+        (effects (font (size 1.27 1.27)) hide)
+      )
+      (property "ki_fp_filters" "R_*" (id 6) (at 0 0 0)
+        (effects (font (size 1.27 1.27)) hide)
+      )
+      (symbol "R_0_1"
+        (rectangle (start -1.016 -2.54) (end 1.016 2.54)
+          (stroke (width 0.254) (type default) (color 0 0 0 0))
+          (fill (type none))
+        )
+      )
+      (symbol "R_1_1"
+        (pin passive line (at 0 3.81 270) (length 1.27)
+          (name "~" (effects (font (size 1.27 1.27))))
+          (number "1" (effects (font (size 1.27 1.27))))
+        )
+        (pin passive line (at 0 -3.81 90) (length 1.27)
+          (name "~" (effects (font (size 1.27 1.27))))
+          (number "2" (effects (font (size 1.27 1.27))))
+        )
+      )
+    )
+    (symbol "fab:C" (pin_numbers hide) (pin_names (offset 0.254)) (in_bom yes) (on_board yes)
+      (property "Reference" "C" (id 0) (at 0.635 2.54 0)
+        (effects (font (size 1.27 1.27)) (justify left))
+      )
+      (property "Value" "C" (id 1) (at 0.635 -2.54 0)
+        (effects (font (size 1.27 1.27)) (justify left))
+      )
+      (property "Footprint" "fab:C_1206" (id 2) (at 0.9652 -3.81 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" "cap capacitor" (id 4) (at 0 0 0)
+        (effects (font (size 1.27 1.27)) hide)
+      )
+      (property "ki_description" "Unpolarized capacitor" (id 5) (at 0 0 0)
+        (effects (font (size 1.27 1.27)) hide)
+      )
+      (property "ki_fp_filters" "C_*" (id 6) (at 0 0 0)
+        (effects (font (size 1.27 1.27)) hide)
+      )
+      (symbol "C_0_1"
+        (polyline
+          (pts
+            (xy -2.032 -0.762)
+            (xy 2.032 -0.762)
+          )
+          (stroke (width 0.508) (type default) (color 0 0 0 0))
+          (fill (type none))
+        )
+        (polyline
+          (pts
+            (xy -2.032 0.762)
+            (xy 2.032 0.762)
+          )
+          (stroke (width 0.508) (type default) (color 0 0 0 0))
+          (fill (type none))
+        )
+      )
+      (symbol "C_1_1"
+        (pin passive line (at 0 3.81 270) (length 2.794)
+          (name "~" (effects (font (size 1.27 1.27))))
+          (number "1" (effects (font (size 1.27 1.27))))
+        )
+        (pin passive line (at 0 -3.81 90) (length 2.794)
+          (name "~" (effects (font (size 1.27 1.27))))
+          (number "2" (effects (font (size 1.27 1.27))))
+        )
+      )
+    )
+    (symbol "fab:Conn_PinHeader_2x02_SWD_P2.54mm_Vertical_SMD" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
+      (property "Reference" "J" (id 0) (at -6.35 7.62 0)
+        (effects (font (size 1.27 1.27)) (justify left bottom))
+      )
+      (property "Value" "Conn_PinHeader_2x02_SWD_P2.54mm_Vertical_SMD" (id 1) (at -6.35 5.08 0)
+        (effects (font (size 1.27 1.27)) (justify left bottom))
+      )
+      (property "Footprint" "fab:PinHeader_2x02_SWD_P2.54mm_Vertical_SMD" (id 2) (at 0 0 0)
+        (effects (font (size 1.27 1.27)) hide)
+      )
+      (property "Datasheet" "https://cdn.amphenol-icc.com/media/wysiwyg/files/drawing/95278.pdf" (id 3) (at 0 0 0)
+        (effects (font (size 1.27 1.27)) hide)
+      )
+      (property "ki_keywords" "connector swd programming jtag" (id 4) (at 0 0 0)
+        (effects (font (size 1.27 1.27)) hide)
+      )
+      (property "ki_description" "Connector Header Surface Mount 4 position 0.100\" (2.54mm) for programming D11C chips" (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_PinHeader_2x02_SWD_P2.54mm_Vertical_SMD_1_1"
+        (rectangle (start -6.35 3.81) (end 6.35 -3.81)
+          (stroke (width 0.254) (type default) (color 0 0 0 0))
+          (fill (type background))
+        )
+        (pin passive line (at -10.16 1.27 0) (length 3.81)
+          (name "GND" (effects (font (size 1.27 1.27))))
+          (number "1" (effects (font (size 1.27 1.27))))
+        )
+        (pin passive line (at 10.16 1.27 180) (length 3.81)
+          (name "RST" (effects (font (size 1.27 1.27))))
+          (number "2" (effects (font (size 1.27 1.27))))
+        )
+        (pin passive line (at -10.16 -1.27 0) (length 3.81)
+          (name "DIO" (effects (font (size 1.27 1.27))))
+          (number "3" (effects (font (size 1.27 1.27))))
+        )
+        (pin passive line (at 10.16 -1.27 180) (length 3.81)
+          (name "CLK" (effects (font (size 1.27 1.27))))
+          (number "4" (effects (font (size 1.27 1.27))))
+        )
+      )
+    )
+    (symbol "fab:Conn_USB_A_Plain" (in_bom yes) (on_board yes)
+      (property "Reference" "P" (id 0) (at -6.35 10.16 0)
+        (effects (font (size 1.27 1.27)) (justify left bottom))
+      )
+      (property "Value" "Conn_USB_A_Plain" (id 1) (at -6.35 7.62 0)
+        (effects (font (size 1.27 1.27)) (justify left bottom))
+      )
+      (property "Footprint" "fab:Conn_USB_A_Plain" (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" "usb type-a connector plug" (id 4) (at 0 0 0)
+        (effects (font (size 1.27 1.27)) hide)
+      )
+      (property "ki_description" "Plain USB connector that can be milled with as PCB milling machine " (id 5) (at 0 0 0)
+        (effects (font (size 1.27 1.27)) hide)
+      )
+      (symbol "Conn_USB_A_Plain_0_1"
+        (rectangle (start -6.35 6.35) (end 6.35 -6.35)
+          (stroke (width 0.254) (type default) (color 0 0 0 0))
+          (fill (type background))
+        )
+        (rectangle (start -1.27 -3.81) (end 5.08 -5.08)
+          (stroke (width 0) (type default) (color 0 0 0 0))
+          (fill (type none))
+        )
+        (rectangle (start -1.27 -1.27) (end 2.54 -2.54)
+          (stroke (width 0) (type default) (color 0 0 0 0))
+          (fill (type none))
+        )
+        (rectangle (start -1.27 2.54) (end 2.54 1.27)
+          (stroke (width 0) (type default) (color 0 0 0 0))
+          (fill (type none))
+        )
+        (rectangle (start -1.27 5.08) (end 5.08 3.81)
+          (stroke (width 0) (type default) (color 0 0 0 0))
+          (fill (type none))
+        )
+      )
+      (symbol "Conn_USB_A_Plain_1_1"
+        (pin power_out line (at -8.89 3.81 0) (length 2.54)
+          (name "5V" (effects (font (size 1.27 1.27))))
+          (number "1" (effects (font (size 1.27 1.27))))
+        )
+        (pin bidirectional line (at -8.89 1.27 0) (length 2.54)
+          (name "D-" (effects (font (size 1.27 1.27))))
+          (number "2" (effects (font (size 1.27 1.27))))
+        )
+        (pin bidirectional line (at -8.89 -1.27 0) (length 2.54)
+          (name "D+" (effects (font (size 1.27 1.27))))
+          (number "3" (effects (font (size 1.27 1.27))))
+        )
+        (pin power_out line (at -8.89 -3.81 0) (length 2.54)
+          (name "GND" (effects (font (size 1.27 1.27))))
+          (number "4" (effects (font (size 1.27 1.27))))
+        )
+      )
+    )
+    (symbol "fab:LED" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
+      (property "Reference" "D" (id 0) (at 0 2.54 0)
+        (effects (font (size 1.27 1.27)))
+      )
+      (property "Value" "LED" (id 1) (at 0 -2.54 0)
+        (effects (font (size 1.27 1.27)))
+      )
+      (property "Footprint" "fab:LED_1206" (id 2) (at 0 0 0)
+        (effects (font (size 1.27 1.27)) hide)
+      )
+      (property "Datasheet" "https://optoelectronics.liteon.com/upload/download/DS-22-98-0002/LTST-C150CKT.pdf" (id 3) (at 0 0 0)
+        (effects (font (size 1.27 1.27)) hide)
+      )
+      (property "ki_keywords" "LED diode 1206" (id 4) (at 0 0 0)
+        (effects (font (size 1.27 1.27)) hide)
+      )
+      (property "ki_description" "Light emitting diode, Lite-On Inc. LTST" (id 5) (at 0 0 0)
+        (effects (font (size 1.27 1.27)) hide)
+      )
+      (property "ki_fp_filters" "LED_*" (id 6) (at 0 0 0)
+        (effects (font (size 1.27 1.27)) hide)
+      )
+      (symbol "LED_0_1"
+        (polyline
+          (pts
+            (xy -1.27 -1.27)
+            (xy -1.27 1.27)
+          )
+          (stroke (width 0.2032) (type default) (color 0 0 0 0))
+          (fill (type none))
+        )
+        (polyline
+          (pts
+            (xy -1.27 0)
+            (xy 1.27 0)
+          )
+          (stroke (width 0) (type default) (color 0 0 0 0))
+          (fill (type none))
+        )
+        (polyline
+          (pts
+            (xy 1.27 -1.27)
+            (xy 1.27 1.27)
+            (xy -1.27 0)
+            (xy 1.27 -1.27)
+          )
+          (stroke (width 0.2032) (type default) (color 0 0 0 0))
+          (fill (type none))
+        )
+        (polyline
+          (pts
+            (xy -3.048 -0.762)
+            (xy -4.572 -2.286)
+            (xy -3.81 -2.286)
+            (xy -4.572 -2.286)
+            (xy -4.572 -1.524)
+          )
+          (stroke (width 0) (type default) (color 0 0 0 0))
+          (fill (type none))
+        )
+        (polyline
+          (pts
+            (xy -1.778 -0.762)
+            (xy -3.302 -2.286)
+            (xy -2.54 -2.286)
+            (xy -3.302 -2.286)
+            (xy -3.302 -1.524)
+          )
+          (stroke (width 0) (type default) (color 0 0 0 0))
+          (fill (type none))
+        )
+      )
+      (symbol "LED_1_1"
+        (pin passive line (at -3.81 0 0) (length 2.54)
+          (name "K" (effects (font (size 1.27 1.27))))
+          (number "1" (effects (font (size 1.27 1.27))))
+        )
+        (pin passive line (at 3.81 0 180) (length 2.54)
+          (name "A" (effects (font (size 1.27 1.27))))
+          (number "2" (effects (font (size 1.27 1.27))))
+        )
+      )
+    )
+    (symbol "fab:Microcontroller_ATSAMD11C14A-SSUT" (in_bom yes) (on_board yes)
+      (property "Reference" "U" (id 0) (at -10.16 16.51 0)
+        (effects (font (size 1.27 1.27)) (justify left))
+      )
+      (property "Value" "Microcontroller_ATSAMD11C14A-SSUT" (id 1) (at 1.27 16.51 0)
+        (effects (font (size 1.27 1.27)) (justify left))
+      )
+      (property "Footprint" "fab:SOIC-14_3.9x8.7mm_P1.27mm" (id 2) (at 0 -26.67 0)
+        (effects (font (size 1.27 1.27)) hide)
+      )
+      (property "Datasheet" "https://ww1.microchip.com/downloads/en/DeviceDoc/Atmel-42363-SAM-D11_Datasheet.pdf" (id 3) (at 0 -17.78 0)
+        (effects (font (size 1.27 1.27)) hide)
+      )
+      (property "ki_keywords" "arm sam d11c 32-bit 48mhz 16kb soic-14" (id 4) (at 0 0 0)
+        (effects (font (size 1.27 1.27)) hide)
+      )
+      (property "ki_description" "IC MCU 32BIT 16KB FLASH 14SOIC" (id 5) (at 0 0 0)
+        (effects (font (size 1.27 1.27)) hide)
+      )
+      (property "ki_fp_filters" "SOIC*3.9x8.7mm*P1.27mm*" (id 6) (at 0 0 0)
+        (effects (font (size 1.27 1.27)) hide)
+      )
+      (symbol "Microcontroller_ATSAMD11C14A-SSUT_0_1"
+        (rectangle (start -10.16 15.24) (end 10.16 -15.24)
+          (stroke (width 0.254) (type default) (color 0 0 0 0))
+          (fill (type background))
+        )
+      )
+      (symbol "Microcontroller_ATSAMD11C14A-SSUT_1_1"
+        (pin bidirectional line (at 12.7 2.54 180) (length 2.54)
+          (name "PA05" (effects (font (size 1.27 1.27))))
+          (number "1" (effects (font (size 1.27 1.27))))
+        )
+        (pin bidirectional line (at 12.7 -7.62 180) (length 2.54)
+          (name "PA25" (effects (font (size 1.27 1.27))))
+          (number "10" (effects (font (size 1.27 1.27))))
+        )
+        (pin power_in line (at 0 -17.78 90) (length 2.54)
+          (name "GND" (effects (font (size 1.27 1.27))))
+          (number "11" (effects (font (size 1.27 1.27))))
+        )
+        (pin power_in line (at 0 17.78 270) (length 2.54)
+          (name "VDD" (effects (font (size 1.27 1.27))))
+          (number "12" (effects (font (size 1.27 1.27))))
+        )
+        (pin bidirectional line (at 12.7 7.62 180) (length 2.54)
+          (name "PA02" (effects (font (size 1.27 1.27))))
+          (number "13" (effects (font (size 1.27 1.27))))
+        )
+        (pin bidirectional line (at 12.7 5.08 180) (length 2.54)
+          (name "PA04" (effects (font (size 1.27 1.27))))
+          (number "14" (effects (font (size 1.27 1.27))))
+        )
+        (pin bidirectional line (at -12.7 -5.08 0) (length 2.54)
+          (name "PA08/XIN" (effects (font (size 1.27 1.27))))
+          (number "2" (effects (font (size 1.27 1.27))))
+        )
+        (pin bidirectional line (at -12.7 -7.62 0) (length 2.54)
+          (name "PA09/XOUT" (effects (font (size 1.27 1.27))))
+          (number "3" (effects (font (size 1.27 1.27))))
+        )
+        (pin bidirectional line (at 12.7 0 180) (length 2.54)
+          (name "PA14" (effects (font (size 1.27 1.27))))
+          (number "4" (effects (font (size 1.27 1.27))))
+        )
+        (pin bidirectional line (at 12.7 -2.54 180) (length 2.54)
+          (name "PA15" (effects (font (size 1.27 1.27))))
+          (number "5" (effects (font (size 1.27 1.27))))
+        )
+        (pin bidirectional line (at -12.7 7.62 0) (length 2.54)
+          (name "PA28/~{RST}" (effects (font (size 1.27 1.27))))
+          (number "6" (effects (font (size 1.27 1.27))))
+        )
+        (pin bidirectional line (at -12.7 2.54 0) (length 2.54)
+          (name "PA30/SWCLK" (effects (font (size 1.27 1.27))))
+          (number "7" (effects (font (size 1.27 1.27))))
+        )
+        (pin bidirectional line (at -12.7 0 0) (length 2.54)
+          (name "PA31/SWDIO" (effects (font (size 1.27 1.27))))
+          (number "8" (effects (font (size 1.27 1.27))))
+        )
+        (pin bidirectional line (at 12.7 -5.08 180) (length 2.54)
+          (name "PA24" (effects (font (size 1.27 1.27))))
+          (number "9" (effects (font (size 1.27 1.27))))
+        )
+      )
+    )
+    (symbol "fab:Power_+3V3" (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" "Power_+3V3" (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 \"+3V3\"" (id 5) (at 0 0 0)
+        (effects (font (size 1.27 1.27)) hide)
+      )
+      (symbol "Power_+3V3_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 "Power_+3V3_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 "fab: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" "Power_+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 "Power_+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 "Power_+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 "fab: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" "Power_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 "Power_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 "Power_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))))
+        )
+      )
+    )
+    (symbol "fab:Regulator_Linear_LM3480-3.3V-100mA" (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" "Regulator_Linear_LM3480-3.3V-100mA" (id 1) (at 0 3.175 0)
+        (effects (font (size 1.27 1.27)) (justify left))
+      )
+      (property "Footprint" "fab:SOT-23" (id 2) (at 0 5.715 0)
+        (effects (font (size 1.27 1.27) italic) hide)
+      )
+      (property "Datasheet" "https://www.ti.com/lit/ds/symlink/lm3480.pdf" (id 3) (at 0 0 0)
+        (effects (font (size 1.27 1.27)) hide)
+      )
+      (property "ki_keywords" "ldo linear fixed positive" (id 4) (at 0 0 0)
+        (effects (font (size 1.27 1.27)) hide)
+      )
+      (property "ki_description" "100mA, Quasi Low Dropout Voltage Regulator, 3.3V positive fixed output, SOT-23 package" (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 "Regulator_Linear_LM3480-3.3V-100mA_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 "Regulator_Linear_LM3480-3.3V-100mA_1_1"
+        (pin power_out line (at 7.62 0 180) (length 2.54)
+          (name "VO" (effects (font (size 1.27 1.27))))
+          (number "1" (effects (font (size 1.27 1.27))))
+        )
+        (pin power_in line (at -7.62 0 0) (length 2.54)
+          (name "VI" (effects (font (size 1.27 1.27))))
+          (number "2" (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 "3" (effects (font (size 1.27 1.27))))
+        )
+      )
+    )
+  )
+
+  (junction (at 100.33 71.12) (diameter 0) (color 0 0 0 0)
+    (uuid 5280e494-4893-4ca6-a796-20c69b269c6a)
+  )
+  (junction (at 73.66 71.12) (diameter 0) (color 0 0 0 0)
+    (uuid befb29b5-ce4b-4aab-85e9-e28e0326f350)
+  )
+  (junction (at 87.63 78.74) (diameter 0) (color 0 0 0 0)
+    (uuid e0147b3f-ea18-4d99-bfaf-f95b85a0e2f6)
+  )
+
+  (wire (pts (xy 95.25 71.12) (xy 100.33 71.12))
+    (stroke (width 0) (type default) (color 0 0 0 0))
+    (uuid 0c4d911f-f4bf-474d-b813-fab717bd4418)
+  )
+  (wire (pts (xy 62.23 71.12) (xy 73.66 71.12))
+    (stroke (width 0) (type default) (color 0 0 0 0))
+    (uuid 24399ac7-8f3d-4e06-825a-bb83e4a014b6)
+  )
+  (wire (pts (xy 87.63 78.74) (xy 100.33 78.74))
+    (stroke (width 0) (type default) (color 0 0 0 0))
+    (uuid 5dcc37f5-3658-4ad8-9997-22221290e6a5)
+  )
+  (wire (pts (xy 73.66 78.74) (xy 87.63 78.74))
+    (stroke (width 0) (type default) (color 0 0 0 0))
+    (uuid 72108bb3-4a3a-447b-b316-7150ef08fd16)
+  )
+  (wire (pts (xy 121.92 53.34) (xy 129.54 53.34))
+    (stroke (width 0) (type default) (color 0 0 0 0))
+    (uuid 75d77461-6cfe-4f3d-9213-d5fb4e02a6c9)
+  )
+  (wire (pts (xy 73.66 71.12) (xy 80.01 71.12))
+    (stroke (width 0) (type default) (color 0 0 0 0))
+    (uuid 7a164449-6085-4f9a-a434-49b1e7c564d1)
+  )
+  (wire (pts (xy 100.33 71.12) (xy 114.3 71.12))
+    (stroke (width 0) (type default) (color 0 0 0 0))
+    (uuid e669b261-cf45-489f-bae7-1627be261357)
+  )
+
+  (global_label "LED_A" (shape input) (at 177.8 83.82 0) (fields_autoplaced)
+    (effects (font (size 1.27 1.27)) (justify left))
+    (uuid 0b633b30-89d7-4549-bba1-f799e9f1e13c)
+    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 185.7164 83.7406 0)
+      (effects (font (size 1.27 1.27)) (justify left) hide)
+    )
+  )
+  (global_label "D+" (shape input) (at 177.8 96.52 0) (fields_autoplaced)
+    (effects (font (size 1.27 1.27)) (justify left))
+    (uuid 0e012e18-4b5b-4769-ae7d-b650f0bca858)
+    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 183.0555 96.5994 0)
+      (effects (font (size 1.27 1.27)) (justify left) hide)
+    )
+  )
+  (global_label "DIO" (shape input) (at 173.99 135.89 0) (fields_autoplaced)
+    (effects (font (size 1.27 1.27)) (justify left))
+    (uuid 174881a6-8498-4243-b842-ea6fe03ba2ff)
+    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 179.6083 135.8106 0)
+      (effects (font (size 1.27 1.27)) (justify left) hide)
+    )
+  )
+  (global_label "RST" (shape input) (at 153.67 138.43 180) (fields_autoplaced)
+    (effects (font (size 1.27 1.27)) (justify right))
+    (uuid 5bb7258d-263a-4a16-9939-91ee2427587a)
+    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 147.8098 138.3506 0)
+      (effects (font (size 1.27 1.27)) (justify right) hide)
+    )
+  )
+  (global_label "RST" (shape input) (at 152.4 81.28 180) (fields_autoplaced)
+    (effects (font (size 1.27 1.27)) (justify right))
+    (uuid 680e55ab-5231-4153-a892-b2f8b22b868f)
+    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 146.5398 81.2006 0)
+      (effects (font (size 1.27 1.27)) (justify right) hide)
+    )
+  )
+  (global_label "CAPA" (shape input) (at 185.42 86.36 0) (fields_autoplaced)
+    (effects (font (size 1.27 1.27)) (justify left))
+    (uuid 73db1f05-aa70-476d-bccc-5aaaa3f8dd31)
+    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 192.5502 86.2806 0)
+      (effects (font (size 1.27 1.27)) (justify left) hide)
+    )
+  )
+  (global_label "D-" (shape input) (at 132.08 53.34 270) (fields_autoplaced)
+    (effects (font (size 1.27 1.27)) (justify right))
+    (uuid 7414d656-dd39-46ef-a521-c9f3f1f6c66c)
+    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 132.0006 58.5955 90)
+      (effects (font (size 1.27 1.27)) (justify right) hide)
+    )
+  )
+  (global_label "CLK" (shape input) (at 152.4 86.36 180) (fields_autoplaced)
+    (effects (font (size 1.27 1.27)) (justify right))
+    (uuid 8cc62a30-4fca-4a7a-be68-a179ae5a8404)
+    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 146.4188 86.2806 0)
+      (effects (font (size 1.27 1.27)) (justify right) hide)
+    )
+  )
+  (global_label "D-" (shape input) (at 177.8 93.98 0) (fields_autoplaced)
+    (effects (font (size 1.27 1.27)) (justify left))
+    (uuid 997de59d-3188-4e0f-ac3c-2979f0d9b4b8)
+    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 183.0555 94.0594 0)
+      (effects (font (size 1.27 1.27)) (justify left) hide)
+    )
+  )
+  (global_label "LED_C" (shape input) (at 198.12 104.14 270) (fields_autoplaced)
+    (effects (font (size 1.27 1.27)) (justify right))
+    (uuid 9d3e7d9e-f1a1-4647-8ac3-71e6b7055101)
+    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 198.1994 112.2379 90)
+      (effects (font (size 1.27 1.27)) (justify right) hide)
+    )
+  )
+  (global_label "LED_A" (shape input) (at 198.12 88.9 90) (fields_autoplaced)
+    (effects (font (size 1.27 1.27)) (justify left))
+    (uuid afe116e0-e392-472b-a812-f2ef7fbba3ff)
+    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 198.0406 80.9836 90)
+      (effects (font (size 1.27 1.27)) (justify left) hide)
+    )
+  )
+  (global_label "D+" (shape input) (at 134.62 53.34 270) (fields_autoplaced)
+    (effects (font (size 1.27 1.27)) (justify right))
+    (uuid b5177552-bd6c-48f3-a5b4-c0e4259dda0f)
+    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 134.5406 58.5955 90)
+      (effects (font (size 1.27 1.27)) (justify right) hide)
+    )
+  )
+  (global_label "DIO" (shape input) (at 152.4 88.9 180) (fields_autoplaced)
+    (effects (font (size 1.27 1.27)) (justify right))
+    (uuid d9012c5c-b757-4126-b082-fd80f22590bf)
+    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 146.7817 88.9794 0)
+      (effects (font (size 1.27 1.27)) (justify right) hide)
+    )
+  )
+  (global_label "LED_C" (shape input) (at 177.8 81.28 0) (fields_autoplaced)
+    (effects (font (size 1.27 1.27)) (justify left))
+    (uuid debff818-324e-41e4-8c61-d2af8aeb55bd)
+    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 185.8979 81.2006 0)
+      (effects (font (size 1.27 1.27)) (justify left) hide)
+    )
+  )
+  (global_label "CLK" (shape input) (at 153.67 135.89 180) (fields_autoplaced)
+    (effects (font (size 1.27 1.27)) (justify right))
+    (uuid f6240212-63d9-47cb-9d18-9babecba3ddf)
+    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 147.6888 135.8106 0)
+      (effects (font (size 1.27 1.27)) (justify right) hide)
+    )
+  )
+
+  (symbol (lib_id "fab:Power_GND") (at 173.99 138.43 0) (unit 1)
+    (in_bom yes) (on_board yes) (fields_autoplaced)
+    (uuid 038ae685-fadd-4b4a-a2fc-491a1177ca9d)
+    (property "Reference" "#PWR0112" (id 0) (at 173.99 144.78 0)
+      (effects (font (size 1.27 1.27)) hide)
+    )
+    (property "Value" "Power_GND" (id 1) (at 173.99 143.51 0))
+    (property "Footprint" "" (id 2) (at 173.99 138.43 0)
+      (effects (font (size 1.27 1.27)) hide)
+    )
+    (property "Datasheet" "" (id 3) (at 173.99 138.43 0)
+      (effects (font (size 1.27 1.27)) hide)
+    )
+    (pin "1" (uuid df1b3382-6c62-409b-a4fe-573228ac19ed))
+  )
+
+  (symbol (lib_id "fab:Microcontroller_ATSAMD11C14A-SSUT") (at 165.1 88.9 0) (unit 1)
+    (in_bom yes) (on_board yes) (fields_autoplaced)
+    (uuid 1c5f2b06-dd65-40ca-a36f-d7882ab411c5)
+    (property "Reference" "U2" (id 0) (at 167.1194 68.58 0)
+      (effects (font (size 1.27 1.27)) (justify left))
+    )
+    (property "Value" "Microcontroller_ATSAMD11C14A-SSUT" (id 1) (at 167.1194 71.12 0)
+      (effects (font (size 1.27 1.27)) (justify left))
+    )
+    (property "Footprint" "fab:SOIC-14_3.9x8.7mm_P1.27mm" (id 2) (at 165.1 115.57 0)
+      (effects (font (size 1.27 1.27)) hide)
+    )
+    (property "Datasheet" "https://ww1.microchip.com/downloads/en/DeviceDoc/Atmel-42363-SAM-D11_Datasheet.pdf" (id 3) (at 165.1 106.68 0)
+      (effects (font (size 1.27 1.27)) hide)
+    )
+    (pin "1" (uuid cadbff7f-57d8-485a-9ab3-b7a950994c7c))
+    (pin "10" (uuid 8000361b-81fd-47e5-a524-21109b036f6c))
+    (pin "11" (uuid 856388fb-18d9-48b8-a8f0-8c934a9b3630))
+    (pin "12" (uuid 53609c90-137a-4321-8460-00c118c2a9d1))
+    (pin "13" (uuid f7ab5afe-1f32-448e-94cd-57886eb9601f))
+    (pin "14" (uuid ce5bc57b-f12b-4678-ad8c-7b3dffaf60bb))
+    (pin "2" (uuid 25d8ed38-2451-4d4e-855a-33b89acfd0e8))
+    (pin "3" (uuid 368e0798-54c0-4134-bbf4-9e85f89f6e4d))
+    (pin "4" (uuid 52cd69ba-32ad-451b-9643-72396c445980))
+    (pin "5" (uuid ba99ad96-ad7a-4904-b2f3-b5665f325179))
+    (pin "6" (uuid 03d5d36d-7d04-4655-9ddd-9b2863c89c7c))
+    (pin "7" (uuid 02a23b8e-c710-4b39-9d83-63922652e346))
+    (pin "8" (uuid 098ab8c1-1380-40a5-b8a8-396b8356b7d7))
+    (pin "9" (uuid a8de82ca-1c04-48ac-9839-de2f36bbf95d))
+  )
+
+  (symbol (lib_id "fab:Power_+5V") (at 62.23 71.12 0) (unit 1)
+    (in_bom yes) (on_board yes) (fields_autoplaced)
+    (uuid 2f85ce3f-0ce3-48bb-9922-39b751469afe)
+    (property "Reference" "#PWR0101" (id 0) (at 62.23 74.93 0)
+      (effects (font (size 1.27 1.27)) hide)
+    )
+    (property "Value" "Power_+5V" (id 1) (at 62.23 66.04 0))
+    (property "Footprint" "" (id 2) (at 62.23 71.12 0)
+      (effects (font (size 1.27 1.27)) hide)
+    )
+    (property "Datasheet" "" (id 3) (at 62.23 71.12 0)
+      (effects (font (size 1.27 1.27)) hide)
+    )
+    (pin "1" (uuid 663cdde4-0ecc-4abf-ada3-2705e7dbaad2))
+  )
+
+  (symbol (lib_id "fab:Power_+3V3") (at 165.1 71.12 0) (unit 1)
+    (in_bom yes) (on_board yes) (fields_autoplaced)
+    (uuid 3361482c-ca19-4873-b4a9-88f85f1328a1)
+    (property "Reference" "#PWR0108" (id 0) (at 165.1 74.93 0)
+      (effects (font (size 1.27 1.27)) hide)
+    )
+    (property "Value" "Power_+3V3" (id 1) (at 165.1 66.04 0))
+    (property "Footprint" "" (id 2) (at 165.1 71.12 0)
+      (effects (font (size 1.27 1.27)) hide)
+    )
+    (property "Datasheet" "" (id 3) (at 165.1 71.12 0)
+      (effects (font (size 1.27 1.27)) hide)
+    )
+    (pin "1" (uuid fed99eb5-430a-467c-b673-21790df80de5))
+  )
+
+  (symbol (lib_id "Device:R") (at 181.61 86.36 90) (unit 1)
+    (in_bom yes) (on_board yes) (fields_autoplaced)
+    (uuid 39cca1bd-96d6-42ee-8c69-5de87b57e546)
+    (property "Reference" "R2" (id 0) (at 181.61 80.01 90))
+    (property "Value" "R" (id 1) (at 181.61 82.55 90))
+    (property "Footprint" "fab:R_1206" (id 2) (at 181.61 88.138 90)
+      (effects (font (size 1.27 1.27)) hide)
+    )
+    (property "Datasheet" "~" (id 3) (at 181.61 86.36 0)
+      (effects (font (size 1.27 1.27)) hide)
+    )
+    (pin "1" (uuid 650bb676-81fa-4c22-b009-9b66603eb921))
+    (pin "2" (uuid 8f80a3f1-1ae2-4b8d-bd35-7a182c6a8d2e))
+  )
+
+  (symbol (lib_id "fab:Power_GND") (at 165.1 106.68 0) (unit 1)
+    (in_bom yes) (on_board yes) (fields_autoplaced)
+    (uuid 428fd061-ea0a-462c-a8fb-5150bbd1d04f)
+    (property "Reference" "#PWR0110" (id 0) (at 165.1 113.03 0)
+      (effects (font (size 1.27 1.27)) hide)
+    )
+    (property "Value" "Power_GND" (id 1) (at 165.1 111.76 0))
+    (property "Footprint" "" (id 2) (at 165.1 106.68 0)
+      (effects (font (size 1.27 1.27)) hide)
+    )
+    (property "Datasheet" "" (id 3) (at 165.1 106.68 0)
+      (effects (font (size 1.27 1.27)) hide)
+    )
+    (pin "1" (uuid eea26951-4c03-48fe-b4f4-251e10ae0419))
+  )
+
+  (symbol (lib_id "fab:Conn_PinHeader_2x02_SWD_P2.54mm_Vertical_SMD") (at 163.83 137.16 180) (unit 1)
+    (in_bom yes) (on_board yes) (fields_autoplaced)
+    (uuid 4a55f4f3-4596-4061-91d2-6036b72881f5)
+    (property "Reference" "J3" (id 0) (at 163.83 128.27 0))
+    (property "Value" "Conn_PinHeader_2x02_SWD_P2.54mm_Vertical_SMD" (id 1) (at 163.83 130.81 0))
+    (property "Footprint" "fab:PinHeader_2x02_SWD_P2.54mm_Vertical_SMD" (id 2) (at 163.83 137.16 0)
+      (effects (font (size 1.27 1.27)) hide)
+    )
+    (property "Datasheet" "https://cdn.amphenol-icc.com/media/wysiwyg/files/drawing/95278.pdf" (id 3) (at 163.83 137.16 0)
+      (effects (font (size 1.27 1.27)) hide)
+    )
+    (pin "1" (uuid f0a34e5c-2e7e-4653-86b2-ac950cdd3724))
+    (pin "2" (uuid bededdee-3f1a-44ef-96c4-59657d743930))
+    (pin "3" (uuid 9644b0a2-cae3-4e14-9b1b-c7bea01e2d59))
+    (pin "4" (uuid 50240248-5a56-4d94-827c-5e2e88291360))
+  )
+
+  (symbol (lib_id "fab:Power_+5V") (at 121.92 53.34 0) (unit 1)
+    (in_bom yes) (on_board yes) (fields_autoplaced)
+    (uuid 66f033d4-7f4d-4d8b-8047-3c7c415b0219)
+    (property "Reference" "#PWR0104" (id 0) (at 121.92 57.15 0)
+      (effects (font (size 1.27 1.27)) hide)
+    )
+    (property "Value" "Power_+5V" (id 1) (at 121.92 48.26 0))
+    (property "Footprint" "" (id 2) (at 121.92 53.34 0)
+      (effects (font (size 1.27 1.27)) hide)
+    )
+    (property "Datasheet" "" (id 3) (at 121.92 53.34 0)
+      (effects (font (size 1.27 1.27)) hide)
+    )
+    (pin "1" (uuid 4f44dbb5-7291-4f3d-bac0-3894599fbeae))
+  )
+
+  (symbol (lib_id "fab:Regulator_Linear_LM3480-3.3V-100mA") (at 87.63 71.12 0) (unit 1)
+    (in_bom yes) (on_board yes) (fields_autoplaced)
+    (uuid 78dd0937-ee9d-48f7-810d-2995faf42b06)
+    (property "Reference" "U1" (id 0) (at 87.63 63.5 0))
+    (property "Value" "Regulator_Linear_LM3480-3.3V-100mA" (id 1) (at 87.63 66.04 0))
+    (property "Footprint" "fab:SOT-23W" (id 2) (at 87.63 65.405 0)
+      (effects (font (size 1.27 1.27) italic) hide)
+    )
+    (property "Datasheet" "https://www.ti.com/lit/ds/symlink/lm3480.pdf" (id 3) (at 87.63 71.12 0)
+      (effects (font (size 1.27 1.27)) hide)
+    )
+    (pin "1" (uuid 9c6f6ff8-1f53-4f5c-8a2a-517888dc43a2))
+    (pin "2" (uuid 16c9feaf-2caf-4dac-9da3-1a18a412111e))
+    (pin "3" (uuid af9dc2d2-6192-41e3-9749-a7b7261dc96b))
+  )
+
+  (symbol (lib_id "Device:R") (at 198.12 92.71 0) (unit 1)
+    (in_bom yes) (on_board yes) (fields_autoplaced)
+    (uuid 793db082-42ed-4019-b9c9-5a54a4f821e0)
+    (property "Reference" "R1" (id 0) (at 200.66 91.4399 0)
+      (effects (font (size 1.27 1.27)) (justify left))
+    )
+    (property "Value" "R" (id 1) (at 200.66 93.9799 0)
+      (effects (font (size 1.27 1.27)) (justify left))
+    )
+    (property "Footprint" "fab:R_1206" (id 2) (at 196.342 92.71 90)
+      (effects (font (size 1.27 1.27)) hide)
+    )
+    (property "Datasheet" "~" (id 3) (at 198.12 92.71 0)
+      (effects (font (size 1.27 1.27)) hide)
+    )
+    (pin "1" (uuid 44055cf7-6109-4262-a448-68840e768524))
+    (pin "2" (uuid fc758edc-b25a-45b0-be93-41b063978035))
+  )
+
+  (symbol (lib_id "fab:Power_+3V3") (at 114.3 71.12 0) (unit 1)
+    (in_bom yes) (on_board yes) (fields_autoplaced)
+    (uuid 8531299f-0363-423c-9a26-d8d114f39dac)
+    (property "Reference" "#PWR0111" (id 0) (at 114.3 74.93 0)
+      (effects (font (size 1.27 1.27)) hide)
+    )
+    (property "Value" "Power_+3V3" (id 1) (at 114.3 66.04 0))
+    (property "Footprint" "" (id 2) (at 114.3 71.12 0)
+      (effects (font (size 1.27 1.27)) hide)
+    )
+    (property "Datasheet" "" (id 3) (at 114.3 71.12 0)
+      (effects (font (size 1.27 1.27)) hide)
+    )
+    (pin "1" (uuid 226edbec-3749-4d3b-97ae-65e901554cdf))
+  )
+
+  (symbol (lib_id "fab:C") (at 73.66 74.93 0) (unit 1)
+    (in_bom yes) (on_board yes) (fields_autoplaced)
+    (uuid a20728c8-07ac-40ed-b60c-72d07a38f400)
+    (property "Reference" "C1" (id 0) (at 77.47 73.6599 0)
+      (effects (font (size 1.27 1.27)) (justify left))
+    )
+    (property "Value" "1uF" (id 1) (at 77.47 76.1999 0)
+      (effects (font (size 1.27 1.27)) (justify left))
+    )
+    (property "Footprint" "fab:C_1206" (id 2) (at 74.6252 78.74 0)
+      (effects (font (size 1.27 1.27)) hide)
+    )
+    (property "Datasheet" "" (id 3) (at 73.66 74.93 0)
+      (effects (font (size 1.27 1.27)) hide)
+    )
+    (pin "1" (uuid 3bd319dd-8733-4580-ac48-6d79711e4c32))
+    (pin "2" (uuid cbe7814d-9f21-4c8c-a1c5-a5ccddb70d48))
+  )
+
+  (symbol (lib_id "fab:LED") (at 198.12 100.33 90) (unit 1)
+    (in_bom yes) (on_board yes) (fields_autoplaced)
+    (uuid c4a71020-03ce-4f30-a55a-13a246010c50)
+    (property "Reference" "D1" (id 0) (at 201.93 100.6601 90)
+      (effects (font (size 1.27 1.27)) (justify right))
+    )
+    (property "Value" "LED" (id 1) (at 201.93 103.2001 90)
+      (effects (font (size 1.27 1.27)) (justify right))
+    )
+    (property "Footprint" "fab:LED_1206" (id 2) (at 198.12 100.33 0)
+      (effects (font (size 1.27 1.27)) hide)
+    )
+    (property "Datasheet" "https://optoelectronics.liteon.com/upload/download/DS-22-98-0002/LTST-C150CKT.pdf" (id 3) (at 198.12 100.33 0)
+      (effects (font (size 1.27 1.27)) hide)
+    )
+    (pin "1" (uuid 9f59631e-0a60-498f-9a2e-609ac427fbf7))
+    (pin "2" (uuid 456172db-03b4-4378-936c-bc9704159fc8))
+  )
+
+  (symbol (lib_id "fab:Conn_USB_A_Plain") (at 133.35 44.45 90) (unit 1)
+    (in_bom yes) (on_board yes) (fields_autoplaced)
+    (uuid edc78bf5-dcc5-4cd6-aa4e-c01e87f3a3ff)
+    (property "Reference" "P1" (id 0) (at 140.97 43.1799 90)
+      (effects (font (size 1.27 1.27)) (justify right))
+    )
+    (property "Value" "Conn_USB_A_Plain" (id 1) (at 140.97 45.7199 90)
+      (effects (font (size 1.27 1.27)) (justify right))
+    )
+    (property "Footprint" "fab:Conn_USB_A_Plain" (id 2) (at 133.35 44.45 0)
+      (effects (font (size 1.27 1.27)) hide)
+    )
+    (property "Datasheet" "" (id 3) (at 133.35 44.45 0)
+      (effects (font (size 1.27 1.27)) hide)
+    )
+    (pin "1" (uuid ca7a9c8a-6fca-454e-9d7c-7e51dae1cc4e))
+    (pin "2" (uuid cf8105f4-172a-4a36-a63d-9a225226c745))
+    (pin "3" (uuid 0a3024fe-1ac2-4a54-b6fe-0b7bdfe34a98))
+    (pin "4" (uuid ce4cbf58-6866-4f48-8ec7-2664e234b707))
+  )
+
+  (symbol (lib_id "fab:Power_GND") (at 87.63 78.74 0) (unit 1)
+    (in_bom yes) (on_board yes) (fields_autoplaced)
+    (uuid f0669dce-fc98-43cf-b391-c137ee9617c4)
+    (property "Reference" "#PWR0102" (id 0) (at 87.63 85.09 0)
+      (effects (font (size 1.27 1.27)) hide)
+    )
+    (property "Value" "Power_GND" (id 1) (at 87.63 83.82 0))
+    (property "Footprint" "" (id 2) (at 87.63 78.74 0)
+      (effects (font (size 1.27 1.27)) hide)
+    )
+    (property "Datasheet" "" (id 3) (at 87.63 78.74 0)
+      (effects (font (size 1.27 1.27)) hide)
+    )
+    (pin "1" (uuid d9486a70-192e-4aa2-b82a-43ac88477cdd))
+  )
+
+  (symbol (lib_id "fab:Power_GND") (at 137.16 53.34 0) (unit 1)
+    (in_bom yes) (on_board yes) (fields_autoplaced)
+    (uuid f9ee5e00-0811-48b2-9263-35eab98f8083)
+    (property "Reference" "#PWR0103" (id 0) (at 137.16 59.69 0)
+      (effects (font (size 1.27 1.27)) hide)
+    )
+    (property "Value" "Power_GND" (id 1) (at 137.16 58.42 0))
+    (property "Footprint" "" (id 2) (at 137.16 53.34 0)
+      (effects (font (size 1.27 1.27)) hide)
+    )
+    (property "Datasheet" "" (id 3) (at 137.16 53.34 0)
+      (effects (font (size 1.27 1.27)) hide)
+    )
+    (pin "1" (uuid 42a07442-6433-4026-95fc-95db33dd8be3))
+  )
+
+  (symbol (lib_id "fab:C") (at 100.33 74.93 0) (unit 1)
+    (in_bom yes) (on_board yes) (fields_autoplaced)
+    (uuid fde96c4e-b12c-43f8-9426-6e025c0e4ecc)
+    (property "Reference" "C2" (id 0) (at 104.14 73.6599 0)
+      (effects (font (size 1.27 1.27)) (justify left))
+    )
+    (property "Value" "1uF" (id 1) (at 104.14 76.1999 0)
+      (effects (font (size 1.27 1.27)) (justify left))
+    )
+    (property "Footprint" "fab:C_1206" (id 2) (at 101.2952 78.74 0)
+      (effects (font (size 1.27 1.27)) hide)
+    )
+    (property "Datasheet" "" (id 3) (at 100.33 74.93 0)
+      (effects (font (size 1.27 1.27)) hide)
+    )
+    (pin "1" (uuid 8c0dcd4c-7885-4a3c-b1a0-59692671ecde))
+    (pin "2" (uuid 21fffcc9-3602-43a0-bbe1-d2fc238600b5))
+  )
+
+  (sheet_instances
+    (path "/" (page "1"))
+  )
+
+  (symbol_instances
+    (path "/2f85ce3f-0ce3-48bb-9922-39b751469afe"
+      (reference "#PWR0101") (unit 1) (value "Power_+5V") (footprint "")
+    )
+    (path "/f0669dce-fc98-43cf-b391-c137ee9617c4"
+      (reference "#PWR0102") (unit 1) (value "Power_GND") (footprint "")
+    )
+    (path "/f9ee5e00-0811-48b2-9263-35eab98f8083"
+      (reference "#PWR0103") (unit 1) (value "Power_GND") (footprint "")
+    )
+    (path "/66f033d4-7f4d-4d8b-8047-3c7c415b0219"
+      (reference "#PWR0104") (unit 1) (value "Power_+5V") (footprint "")
+    )
+    (path "/3361482c-ca19-4873-b4a9-88f85f1328a1"
+      (reference "#PWR0108") (unit 1) (value "Power_+3V3") (footprint "")
+    )
+    (path "/428fd061-ea0a-462c-a8fb-5150bbd1d04f"
+      (reference "#PWR0110") (unit 1) (value "Power_GND") (footprint "")
+    )
+    (path "/8531299f-0363-423c-9a26-d8d114f39dac"
+      (reference "#PWR0111") (unit 1) (value "Power_+3V3") (footprint "")
+    )
+    (path "/038ae685-fadd-4b4a-a2fc-491a1177ca9d"
+      (reference "#PWR0112") (unit 1) (value "Power_GND") (footprint "")
+    )
+    (path "/a20728c8-07ac-40ed-b60c-72d07a38f400"
+      (reference "C1") (unit 1) (value "1uF") (footprint "fab:C_1206")
+    )
+    (path "/fde96c4e-b12c-43f8-9426-6e025c0e4ecc"
+      (reference "C2") (unit 1) (value "1uF") (footprint "fab:C_1206")
+    )
+    (path "/c4a71020-03ce-4f30-a55a-13a246010c50"
+      (reference "D1") (unit 1) (value "LED") (footprint "fab:LED_1206")
+    )
+    (path "/4a55f4f3-4596-4061-91d2-6036b72881f5"
+      (reference "J3") (unit 1) (value "Conn_PinHeader_2x02_SWD_P2.54mm_Vertical_SMD") (footprint "fab:PinHeader_2x02_SWD_P2.54mm_Vertical_SMD")
+    )
+    (path "/edc78bf5-dcc5-4cd6-aa4e-c01e87f3a3ff"
+      (reference "P1") (unit 1) (value "Conn_USB_A_Plain") (footprint "fab:Conn_USB_A_Plain")
+    )
+    (path "/793db082-42ed-4019-b9c9-5a54a4f821e0"
+      (reference "R1") (unit 1) (value "R") (footprint "fab:R_1206")
+    )
+    (path "/39cca1bd-96d6-42ee-8c69-5de87b57e546"
+      (reference "R2") (unit 1) (value "R") (footprint "fab:R_1206")
+    )
+    (path "/78dd0937-ee9d-48f7-810d-2995faf42b06"
+      (reference "U1") (unit 1) (value "Regulator_Linear_LM3480-3.3V-100mA") (footprint "fab:SOT-23W")
+    )
+    (path "/1c5f2b06-dd65-40ca-a36f-d7882ab411c5"
+      (reference "U2") (unit 1) (value "Microcontroller_ATSAMD11C14A-SSUT") (footprint "fab:SOIC-14_3.9x8.7mm_P1.27mm")
+    )
+  )
+)
diff --git a/distance/README.md b/distance/README.md
index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..6f21da8efb0f7c099b172e50ef33c0b84b405f12 100644
--- a/distance/README.md
+++ b/distance/README.md
@@ -0,0 +1,27 @@
+# Urumbu distance input
+
+![](./img/D11C.distance.components.top.jpg)
+
+![](./img/D11C.distance.components.bottom.jpg)
+
+This board returns a 10-bit value depending on the distance read by the HC-SR04 sensor.
+
+## Code
+
+Code can be found [here](./code/d11_distance/d11_distance.ino).
+
+## KiCad files
+
+- [project](./samd11c14_hc_sr04.kicad_pro)
+- [schematic](./samd11c14_hc_sr04.kicad_sch)
+- [board](./samd11c14_hc_sr04.kicad_pcb)
+
+## .png files
+
+![](./img/samd11c14_hc_sr04-composite.png)
+
+![](./img/samd11c14_hc_sr04-F_Cu.png)
+
+![](./img/samd11c14_hc_sr04-Edge_Cuts.png)
+
+![](./img/samd11c14_hc_sr04-interior_traces_comp.png)
diff --git a/distance/code/d11_distance/d11_distance.ino b/distance/code/d11_distance/d11_distance.ino
new file mode 100644
index 0000000000000000000000000000000000000000..4742d0e3c9cc3e6d619eb6edf0efbf902c2917b5
--- /dev/null
+++ b/distance/code/d11_distance/d11_distance.ino
@@ -0,0 +1,64 @@
+#define PIN_LED_A 4
+#define PIN_LED_C 2
+
+#define PIN_TRIG 14
+#define PIN_ECHO 15
+
+// timeout after ~1 meter
+#define PULSE_TIMEOUT 5000
+
+#define VAL_MIN 300
+#define VAL_MAX 3000
+
+
+void setup() {
+  // put your setup code here, to run once:
+  pinMode(PIN_LED_A, OUTPUT);
+  digitalWrite(PIN_LED_A, HIGH);
+  pinMode(PIN_LED_C, OUTPUT);
+  digitalWrite(PIN_LED_C, LOW);
+  pinMode(PIN_TRIG, OUTPUT);
+  pinMode(PIN_ECHO, INPUT);
+  SerialUSB.begin(115200);
+
+}
+
+
+void print_16bit(int v) {
+  const char bfr[] = {v & 0xFF, (v >> 8) & 0xFF};
+  SerialUSB.write(bfr, 2);
+}
+
+
+long int measure_dist() {
+  delayMicroseconds(2);
+  digitalWrite(PIN_TRIG, HIGH);
+  delayMicroseconds(10);
+  digitalWrite(PIN_TRIG, LOW);
+
+  long int duration = pulseIn(PIN_ECHO, HIGH, PULSE_TIMEOUT);
+  
+  if (duration == 0) {
+    duration = PULSE_TIMEOUT;
+  }
+
+  // in tens of mm
+  long int distance_01mm = duration * 3.4 / 2;
+
+  return distance_01mm;
+}
+
+
+void loop() {
+  if (SerialUSB.available()) {
+    char c = SerialUSB.read();
+    if (c == '?') {
+      int value = measure_dist();
+      int value_10bit = map(value, VAL_MIN, VAL_MAX, 1023, 0);
+      value_10bit = max(min(value_10bit, 1023), 0);
+      print_16bit(value_10bit);
+    } else if (c == '@') {
+      SerialUSB.write("0005");
+    }
+  }
+}
diff --git a/distance/img/D11C.distance.components.bottom.jpg b/distance/img/D11C.distance.components.bottom.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..51f33576b330af3551b20c881b18f8b63058a311
Binary files /dev/null and b/distance/img/D11C.distance.components.bottom.jpg differ
diff --git a/distance/img/D11C.distance.components.top.jpg b/distance/img/D11C.distance.components.top.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..a573cd0cfda346c82c9b58cb9756f391d179ca1b
Binary files /dev/null and b/distance/img/D11C.distance.components.top.jpg differ
diff --git a/distance/img/samd11c14_hc_sr04-Edge_Cuts.png b/distance/img/samd11c14_hc_sr04-Edge_Cuts.png
new file mode 100644
index 0000000000000000000000000000000000000000..8c1a336e4419568f04765fa4ff017f7d889ef2ba
Binary files /dev/null and b/distance/img/samd11c14_hc_sr04-Edge_Cuts.png differ
diff --git a/distance/img/samd11c14_hc_sr04-F_Cu.png b/distance/img/samd11c14_hc_sr04-F_Cu.png
new file mode 100644
index 0000000000000000000000000000000000000000..09b4d001616b6f50b66c49fe517c3a2de6c9a582
Binary files /dev/null and b/distance/img/samd11c14_hc_sr04-F_Cu.png differ
diff --git a/distance/img/samd11c14_hc_sr04-F_Mask.png b/distance/img/samd11c14_hc_sr04-F_Mask.png
new file mode 100644
index 0000000000000000000000000000000000000000..c82613ac9161c7eb79d508dfc38e6a31b6c80acf
Binary files /dev/null and b/distance/img/samd11c14_hc_sr04-F_Mask.png differ
diff --git a/distance/img/samd11c14_hc_sr04-F_Silkscreen.png b/distance/img/samd11c14_hc_sr04-F_Silkscreen.png
new file mode 100644
index 0000000000000000000000000000000000000000..a2180eb2ad6b5042aeabfff352aec670e3198305
Binary files /dev/null and b/distance/img/samd11c14_hc_sr04-F_Silkscreen.png differ
diff --git a/distance/img/samd11c14_hc_sr04-composite.png b/distance/img/samd11c14_hc_sr04-composite.png
new file mode 100644
index 0000000000000000000000000000000000000000..4a79de53d322f4ad967072920b36145b95bf269b
Binary files /dev/null and b/distance/img/samd11c14_hc_sr04-composite.png differ
diff --git a/distance/img/samd11c14_hc_sr04-drill.png b/distance/img/samd11c14_hc_sr04-drill.png
new file mode 100644
index 0000000000000000000000000000000000000000..a525aae4c0dd9b6cee1e41c861c4f5b0a526e0f6
Binary files /dev/null and b/distance/img/samd11c14_hc_sr04-drill.png differ
diff --git a/distance/img/samd11c14_hc_sr04-interior_drill_comp.png b/distance/img/samd11c14_hc_sr04-interior_drill_comp.png
new file mode 100644
index 0000000000000000000000000000000000000000..c6114ae4215647a24f558ed80751186c0a237b17
Binary files /dev/null and b/distance/img/samd11c14_hc_sr04-interior_drill_comp.png differ
diff --git a/distance/img/samd11c14_hc_sr04-interior_traces_comp.png b/distance/img/samd11c14_hc_sr04-interior_traces_comp.png
new file mode 100644
index 0000000000000000000000000000000000000000..f2c6d74a6882a36a85d6095a26a8a1f53538f583
Binary files /dev/null and b/distance/img/samd11c14_hc_sr04-interior_traces_comp.png differ
diff --git a/distance/samd11c14_hc_sr04.kicad_pcb b/distance/samd11c14_hc_sr04.kicad_pcb
new file mode 100644
index 0000000000000000000000000000000000000000..b611fe9fad5f9c9dbaf7895f00e07b6018e1aa06
--- /dev/null
+++ b/distance/samd11c14_hc_sr04.kicad_pcb
@@ -0,0 +1,698 @@
+(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 0x00010a8_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 5)
+      (mirror false)
+      (drillshape 2)
+      (scaleselection 1)
+      (outputdirectory "svg")
+    )
+  )
+
+  (net 0 "")
+  (net 1 "GND")
+  (net 2 "+3V3")
+  (net 3 "+5V")
+  (net 4 "D-")
+  (net 5 "D+")
+  (net 6 "LED_C")
+  (net 7 "RST")
+  (net 8 "DIO")
+  (net 9 "CLK")
+  (net 10 "unconnected-(U2-Pad2)")
+  (net 11 "unconnected-(U2-Pad3)")
+  (net 12 "Net-(D1-Pad2)")
+  (net 13 "LED_A")
+  (net 14 "unconnected-(U2-Pad1)")
+  (net 15 "ECHO")
+  (net 16 "TRIG")
+  (net 17 "Net-(U2-Pad5)")
+
+  (footprint "fab:R_1206" (layer "F.Cu")
+    (tedit 60020482) (tstamp 07e7e87d-9255-44b7-964c-2876bb9fc44d)
+    (at 60.452 44.45 -90)
+    (descr "Resistor SMD 1206, hand soldering")
+    (tags "resistor 1206")
+    (property "Sheetfile" "samd11c14_hc_sr04.kicad_sch")
+    (property "Sheetname" "")
+    (path "/6a2baeab-a3db-4ed7-8836-4e0dadc2960b")
+    (attr smd)
+    (fp_text reference "R2" (at 0 -1.85 90) (layer "F.SilkS")
+      (effects (font (size 1 1) (thickness 0.15)))
+      (tstamp 4b64ce61-cd9f-4068-855a-a918a6209675)
+    )
+    (fp_text value "5k" (at 0 1.9 90) (layer "F.Fab")
+      (effects (font (size 1 1) (thickness 0.15)))
+      (tstamp b3d79b21-e9ec-46a6-9b4b-229c9984a42a)
+    )
+    (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
+      (effects (font (size 0.7 0.7) (thickness 0.105)))
+      (tstamp df5d2842-95e0-4dc7-91e0-af6aa7f859bb)
+    )
+    (fp_line (start 1 1.07) (end -1 1.07) (layer "F.SilkS") (width 0.12) (tstamp 8b14e97f-a7f6-455f-85ae-a0954b928855))
+    (fp_line (start -1 -1.07) (end 1 -1.07) (layer "F.SilkS") (width 0.12) (tstamp f8dfbcec-1704-46b0-8ba3-862aa1011c94))
+    (fp_line (start 3.25 1.1) (end -3.25 1.1) (layer "F.CrtYd") (width 0.05) (tstamp 029d749e-2289-4769-a0ce-e768bbda0cd0))
+    (fp_line (start 3.25 1.1) (end 3.25 -1.11) (layer "F.CrtYd") (width 0.05) (tstamp a899f147-0456-4c4c-a26b-178ed678750a))
+    (fp_line (start -3.25 -1.11) (end -3.25 1.1) (layer "F.CrtYd") (width 0.05) (tstamp ba659ad4-f6ac-4fc8-b519-f7116425af73))
+    (fp_line (start -3.25 -1.11) (end 3.25 -1.11) (layer "F.CrtYd") (width 0.05) (tstamp e710d65f-4900-4930-9990-68422a72b78f))
+    (fp_line (start 1.6 0.8) (end -1.6 0.8) (layer "F.Fab") (width 0.1) (tstamp 0ecfe0e1-844f-49ac-b5dc-cd55b19a7c78))
+    (fp_line (start -1.6 0.8) (end -1.6 -0.8) (layer "F.Fab") (width 0.1) (tstamp 1eea39a5-2762-4e3a-8c74-b0e5bc37cc89))
+    (fp_line (start 1.6 -0.8) (end 1.6 0.8) (layer "F.Fab") (width 0.1) (tstamp 98ff4f6d-a60b-43b0-818a-c3cd573da89f))
+    (fp_line (start -1.6 -0.8) (end 1.6 -0.8) (layer "F.Fab") (width 0.1) (tstamp d9e64fec-799c-44df-859d-e1ddb2b2b9a0))
+    (pad "1" smd rect locked (at -2 0 270) (size 2 1.7) (layers "F.Cu" "F.Paste" "F.Mask")
+      (net 17 "Net-(U2-Pad5)") (pintype "passive") (tstamp 24b42847-745f-4b13-9d2d-3ca8b56bc9de))
+    (pad "2" smd rect locked (at 2 0 270) (size 2 1.7) (layers "F.Cu" "F.Paste" "F.Mask")
+      (net 15 "ECHO") (pintype "passive") (tstamp e7e186e0-cb0c-4704-816f-05a9b3696b56))
+    (model "${FAB}/fab.3dshapes/R_1206.step"
+      (offset (xyz 0 0 0))
+      (scale (xyz 1 1 1))
+      (rotate (xyz 0 0 0))
+    )
+  )
+
+  (footprint "Connector_PinHeader_2.54mm:PinHeader_1x04_P2.54mm_Vertical" (layer "F.Cu")
+    (tedit 59FED5CC) (tstamp 42bd0f96-a831-406e-abb7-03ed1bbd785f)
+    (at 63.0274 54.102 90)
+    (descr "Through hole straight pin header, 1x04, 2.54mm pitch, single row")
+    (tags "Through hole pin header THT 1x04 2.54mm single row")
+    (property "Sheetfile" "samd11c14_hc_sr04.kicad_sch")
+    (property "Sheetname" "")
+    (path "/a97a52d6-fe14-4f06-b35e-2dc42532437e")
+    (attr through_hole)
+    (fp_text reference "J1" (at 0 -2.33 90) (layer "F.SilkS")
+      (effects (font (size 1 1) (thickness 0.15)))
+      (tstamp 2d4d8c24-5b38-445b-8733-2a81ba21d33e)
+    )
+    (fp_text value "Conn_01x04_Male" (at 0 9.95 90) (layer "F.Fab")
+      (effects (font (size 1 1) (thickness 0.15)))
+      (tstamp a10b569c-d672-485d-9c05-2cb4795deeca)
+    )
+    (fp_text user "${REFERENCE}" (at 0 3.81) (layer "F.Fab")
+      (effects (font (size 1 1) (thickness 0.15)))
+      (tstamp a6891c49-3648-41ce-811e-fccb4c4653af)
+    )
+    (fp_line (start -1.33 -1.33) (end 0 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 16d5bf81-590a-4149-97e0-64f3b3ad6f52))
+    (fp_line (start -1.33 1.27) (end 1.33 1.27) (layer "F.SilkS") (width 0.12) (tstamp 18cf1537-83e6-4374-a277-6e3e21479ab0))
+    (fp_line (start -1.33 0) (end -1.33 -1.33) (layer "F.SilkS") (width 0.12) (tstamp a6c7f556-10bb-4a6d-b61b-a732ec6fa5cc))
+    (fp_line (start -1.33 1.27) (end -1.33 8.95) (layer "F.SilkS") (width 0.12) (tstamp c8072c34-0f81-4552-9fbe-4bfe60c53e21))
+    (fp_line (start 1.33 1.27) (end 1.33 8.95) (layer "F.SilkS") (width 0.12) (tstamp fec6f717-d723-4676-89ef-8ea691e209c2))
+    (fp_line (start -1.33 8.95) (end 1.33 8.95) (layer "F.SilkS") (width 0.12) (tstamp ff2f00dc-dff2-4a19-af27-f5c793a8d261))
+    (fp_line (start 1.8 9.4) (end 1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 2d16cb66-2809-411d-912c-d3db0f48bd04))
+    (fp_line (start 1.8 -1.8) (end -1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 5fe7a4eb-9f04-4df6-a1fa-36c071e280d7))
+    (fp_line (start -1.8 9.4) (end 1.8 9.4) (layer "F.CrtYd") (width 0.05) (tstamp 7806469b-c133-4e19-b2d5-f2b690b4b2f3))
+    (fp_line (start -1.8 -1.8) (end -1.8 9.4) (layer "F.CrtYd") (width 0.05) (tstamp 90fa0465-7fe5-474b-8e7c-9f955c02a0f6))
+    (fp_line (start -0.635 -1.27) (end 1.27 -1.27) (layer "F.Fab") (width 0.1) (tstamp 2d0d333a-99a0-4575-9433-710c8cc7ac0b))
+    (fp_line (start 1.27 -1.27) (end 1.27 8.89) (layer "F.Fab") (width 0.1) (tstamp 7c6e532b-1afd-48d4-9389-2942dcbc7c3c))
+    (fp_line (start -1.27 -0.635) (end -0.635 -1.27) (layer "F.Fab") (width 0.1) (tstamp b4675fcd-90dd-499b-8feb-46b51a88378c))
+    (fp_line (start 1.27 8.89) (end -1.27 8.89) (layer "F.Fab") (width 0.1) (tstamp d53baa32-ba88-4646-9db3-0e9b0f0da4f0))
+    (fp_line (start -1.27 8.89) (end -1.27 -0.635) (layer "F.Fab") (width 0.1) (tstamp ef3dded2-639c-45d4-8076-84cfb5189592))
+    (pad "1" thru_hole rect locked (at 0 0 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
+      (net 1 "GND") (pinfunction "Pin_1") (pintype "passive") (tstamp 57543893-39bf-4d83-b4e0-8d020b4a6d48))
+    (pad "2" thru_hole oval locked (at 0 2.54 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
+      (net 15 "ECHO") (pinfunction "Pin_2") (pintype "passive") (tstamp 9c5933cf-1535-4465-90dd-da9b75afcdcf))
+    (pad "3" thru_hole oval locked (at 0 5.08 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
+      (net 16 "TRIG") (pinfunction "Pin_3") (pintype "passive") (tstamp 629fdb7a-7978-43d0-987e-b84465775826))
+    (pad "4" thru_hole oval locked (at 0 7.62 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
+      (net 3 "+5V") (pinfunction "Pin_4") (pintype "passive") (tstamp df9a1242-2d73-4343-b170-237bc9a8080f))
+    (model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x04_P2.54mm_Vertical.wrl"
+      (offset (xyz 0 0 0))
+      (scale (xyz 1 1 1))
+      (rotate (xyz 0 0 0))
+    )
+  )
+
+  (footprint "fab:SOIC-14_3.9x8.7mm_P1.27mm" (layer "F.Cu")
+    (tedit 60030324) (tstamp 4d8a27f3-5994-4c02-859b-09c0a8d34a6d)
+    (at 66.8274 37.7485)
+    (descr "SOIC, 14 Pin, fab version")
+    (tags "SOIC fab")
+    (property "Sheetfile" "samd11c14_hc_sr04.kicad_sch")
+    (property "Sheetname" "")
+    (path "/1c5f2b06-dd65-40ca-a36f-d7882ab411c5")
+    (attr smd)
+    (fp_text reference "U2" (at 0 -5.28) (layer "F.SilkS")
+      (effects (font (size 1 1) (thickness 0.15)))
+      (tstamp 279cd597-6735-4af4-af86-33cfd2693447)
+    )
+    (fp_text value "Microcontroller_ATSAMD11C14A-SSUT" (at 0 0) (layer "F.SilkS") hide
+      (effects (font (size 1.27 1.27) (thickness 0.15)))
+      (tstamp 7c2c7978-0926-492c-8e3d-93ac33c3f226)
+    )
+    (fp_text user "${REFERENCE}" (at 0 0) (layer "F.CrtYd")
+      (effects (font (size 1 1) (thickness 0.15)))
+      (tstamp 20a43104-38cb-4a67-8590-5917234169dc)
+    )
+    (fp_line (start 0 4.435) (end 1.95 4.435) (layer "F.SilkS") (width 0.12) (tstamp 70b4eaa4-61ff-4379-b06d-623ca05164b1))
+    (fp_line (start 0 -4.435) (end 1.95 -4.435) (layer "F.SilkS") (width 0.12) (tstamp aaf14fa5-bc5e-4b91-b0fb-212df5ce1861))
+    (fp_line (start 0 4.435) (end -1.95 4.435) (layer "F.SilkS") (width 0.12) (tstamp e1e9dd9e-df2b-4b75-b02e-38146938802b))
+    (fp_line (start 0 -4.435) (end -3.45 -4.435) (layer "F.SilkS") (width 0.12) (tstamp fa18dae7-2fb1-4387-a3c1-308ca16c5c1d))
+    (fp_line (start -3.6 -4.5) (end 3.7 -4.5) (layer "F.CrtYd") (width 0.05) (tstamp 494350ab-d17d-4de3-8b96-f15451154d6a))
+    (fp_line (start -3.6 4.5) (end -3.6 -4.5) (layer "F.CrtYd") (width 0.05) (tstamp 51153875-01b9-46f2-8b14-6306c8586588))
+    (fp_line (start 3.7 4.5) (end -3.6 4.5) (layer "F.CrtYd") (width 0.05) (tstamp 622fea85-fc3a-49dd-a4af-3bfd36c6693d))
+    (fp_line (start 3.7 -4.5) (end 3.7 4.5) (layer "F.CrtYd") (width 0.05) (tstamp adda719e-cc0a-4a85-b429-67f8b39774f5))
+    (fp_line (start -0.975 -4.325) (end 1.95 -4.325) (layer "F.Fab") (width 0.1) (tstamp 2e955124-6939-410c-81be-086896fd0cd7))
+    (fp_line (start 1.95 4.325) (end -1.95 4.325) (layer "F.Fab") (width 0.1) (tstamp 38f1f681-d503-49fe-ab87-4225bebb7b32))
+    (fp_line (start -1.95 -3.35) (end -0.975 -4.325) (layer "F.Fab") (width 0.1) (tstamp ae113a97-dd90-42bf-96ea-bb92e7431ac6))
+    (fp_line (start 1.95 -4.325) (end 1.95 4.325) (layer "F.Fab") (width 0.1) (tstamp b39d7b4a-582f-449b-82fa-4a80df318fb1))
+    (fp_line (start -1.95 4.325) (end -1.95 -3.35) (layer "F.Fab") (width 0.1) (tstamp e65c2eb9-e95a-44ea-ab2b-9e65a76fb5f9))
+    (pad "1" smd rect (at -2.475 -3.81) (size 2 0.6) (layers "F.Cu" "F.Paste" "F.Mask")
+      (net 14 "unconnected-(U2-Pad1)") (pinfunction "PA05") (pintype "bidirectional") (tstamp fb070305-7327-4d47-aaa2-52c1d26471d3))
+    (pad "2" smd rect (at -2.475 -2.54) (size 2 0.6) (layers "F.Cu" "F.Paste" "F.Mask")
+      (net 10 "unconnected-(U2-Pad2)") (pinfunction "PA08/XIN") (pintype "bidirectional") (tstamp 80cc6be9-668a-4344-9b65-0659b9071698))
+    (pad "3" smd rect (at -2.475 -1.27) (size 2 0.6) (layers "F.Cu" "F.Paste" "F.Mask")
+      (net 11 "unconnected-(U2-Pad3)") (pinfunction "PA09/XOUT") (pintype "bidirectional") (tstamp 76bf3f12-008a-4a13-b216-e7dae9728db6))
+    (pad "4" smd rect (at -2.475 0) (size 2 0.6) (layers "F.Cu" "F.Paste" "F.Mask")
+      (net 16 "TRIG") (pinfunction "PA14") (pintype "bidirectional") (tstamp 878a2718-59d9-4c03-a97a-b08c3d833cb9))
+    (pad "5" smd rect (at -2.475 1.27) (size 2 0.6) (layers "F.Cu" "F.Paste" "F.Mask")
+      (net 17 "Net-(U2-Pad5)") (pinfunction "PA15") (pintype "bidirectional") (tstamp d0da5fea-7bb8-466a-808d-a285a956d318))
+    (pad "6" smd rect (at -2.475 2.54) (size 2 0.6) (layers "F.Cu" "F.Paste" "F.Mask")
+      (net 7 "RST") (pinfunction "PA28/~{RST}") (pintype "bidirectional") (tstamp 3a9c4d0d-b8e3-4e3b-8868-df708ade9fd9))
+    (pad "7" smd rect (at -2.475 3.81) (size 2 0.6) (layers "F.Cu" "F.Paste" "F.Mask")
+      (net 9 "CLK") (pinfunction "PA30/SWCLK") (pintype "bidirectional") (tstamp eec6f1b0-e4aa-49f8-b4a3-e9424cd19e76))
+    (pad "8" smd rect (at 2.475 3.81) (size 2 0.6) (layers "F.Cu" "F.Paste" "F.Mask")
+      (net 8 "DIO") (pinfunction "PA31/SWDIO") (pintype "bidirectional") (tstamp 4b325ae5-e73e-4571-bbb6-af750e7a58b8))
+    (pad "9" smd rect (at 2.475 2.54) (size 2 0.6) (layers "F.Cu" "F.Paste" "F.Mask")
+      (net 4 "D-") (pinfunction "PA24") (pintype "bidirectional") (tstamp 8e99653b-c67d-4ba5-a650-293257580275))
+    (pad "10" smd rect (at 2.475 1.27) (size 2 0.6) (layers "F.Cu" "F.Paste" "F.Mask")
+      (net 5 "D+") (pinfunction "PA25") (pintype "bidirectional") (tstamp 3b8985d9-c9ce-4e5c-9b0f-dabde5c52713))
+    (pad "11" smd rect (at 2.475 0) (size 2 0.6) (layers "F.Cu" "F.Paste" "F.Mask")
+      (net 1 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 2bf286a9-8d8a-4f20-af25-6a1b3ef01eaf))
+    (pad "12" smd rect (at 2.475 -1.27) (size 2 0.6) (layers "F.Cu" "F.Paste" "F.Mask")
+      (net 2 "+3V3") (pinfunction "VDD") (pintype "power_in") (tstamp a96d0fd6-c2d2-48a1-b455-757422534d73))
+    (pad "13" smd rect (at 2.475 -2.54) (size 2 0.6) (layers "F.Cu" "F.Paste" "F.Mask")
+      (net 6 "LED_C") (pinfunction "PA02") (pintype "bidirectional") (tstamp 29af8fa6-318a-4068-993d-88e7a24f7791))
+    (pad "14" smd rect (at 2.475 -3.81) (size 2 0.6) (layers "F.Cu" "F.Paste" "F.Mask")
+      (net 13 "LED_A") (pinfunction "PA04") (pintype "bidirectional") (tstamp 3334571c-c306-4b79-9192-949abe8085c3))
+    (model "${FAB}/fab.3dshapes/SOIC-14_3.9x8.7mm_P1.27mm.step"
+      (offset (xyz 0 0 0))
+      (scale (xyz 1 1 1))
+      (rotate (xyz 0 0 0))
+    )
+  )
+
+  (footprint "fab:PinHeader_2x02_SWD_P2.54mm_Vertical_SMD" (layer "F.Cu")
+    (tedit 62112959) (tstamp 5c9bc151-e282-4405-8be4-f7b49b568fbb)
+    (at 66.8274 46.0035 180)
+    (descr "surface-mounted straight pin header, 2x02, 2.54mm pitch, double rows")
+    (tags "Surface mounted pin header SMD 2x02 2.54mm double row")
+    (property "Sheetfile" "samd11c14_hc_sr04.kicad_sch")
+    (property "Sheetname" "")
+    (path "/4a55f4f3-4596-4061-91d2-6036b72881f5")
+    (attr smd)
+    (fp_text reference "J3" (at -3.524 -3.092) (layer "F.SilkS")
+      (effects (font (size 1 1) (thickness 0.15)))
+      (tstamp f90c26dc-193b-4ab8-89b0-618ed7117e9a)
+    )
+    (fp_text value "Conn_PinHeader_2x02_SWD_P2.54mm_Vertical_SMD" (at 0 3.6) (layer "F.Fab")
+      (effects (font (size 1 1) (thickness 0.15)))
+      (tstamp 3ea1333e-d76b-40ee-8057-84e14f958221)
+    )
+    (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
+      (effects (font (size 1 1) (thickness 0.15)))
+      (tstamp aea0c070-06c6-4135-a708-f46d34e6fdae)
+    )
+    (fp_circle (center -3.4 -2.9) (end -2.9 -2.9) (layer "F.Cu") (width 0.2) (fill solid) (tstamp 483f331b-2bc0-4cb8-bb92-1b8a345841cf))
+    (fp_line (start -2.6 -2.6) (end -2.6 -2.03) (layer "F.SilkS") (width 0.12) (tstamp 007653dc-24a1-4f8b-8bfa-7604710e0bb0))
+    (fp_line (start -4.04 -2.03) (end -2.6 -2.03) (layer "F.SilkS") (width 0.12) (tstamp 24fe7676-0c0a-4b5a-8a61-dd833b2a3e83))
+    (fp_line (start 2.6 -0.51) (end 2.6 0.51) (layer "F.SilkS") (width 0.12) (tstamp 4831ae25-0940-40bd-8287-52f3b995212e))
+    (fp_line (start -2.6 -2.6) (end 2.6 -2.6) (layer "F.SilkS") (width 0.12) (tstamp 6d883ddf-40ea-443e-84fa-f7d018bddc4a))
+    (fp_line (start -2.6 2.6) (end 2.6 2.6) (layer "F.SilkS") (width 0.12) (tstamp 70546009-ec12-4df1-b150-81811f63b9b9))
+    (fp_line (start -2.6 -0.51) (end -2.6 0.51) (layer "F.SilkS") (width 0.12) (tstamp 9560da74-dd09-4735-9bb3-c63169b5b561))
+    (fp_line (start 2.6 2.03) (end 2.6 2.6) (layer "F.SilkS") (width 0.12) (tstamp 97fa9751-3b73-499b-9a68-82d7d05ad2e5))
+    (fp_line (start 2.6 -2.6) (end 2.6 -2.03) (layer "F.SilkS") (width 0.12) (tstamp ad1d94a8-7d85-4004-9ab8-aa55ca511b8a))
+    (fp_line (start -2.6 2.03) (end -2.6 2.6) (layer "F.SilkS") (width 0.12) (tstamp f3269157-290f-42d2-ad85-a243e0c16d86))
+    (fp_line (start 4.2 -2.7) (end -4.2 -2.7) (layer "F.CrtYd") (width 0.05) (tstamp 1e85f89b-021b-44a1-8852-55aafbf7a71c))
+    (fp_line (start 4.2 2.7) (end 4.2 -2.7) (layer "F.CrtYd") (width 0.05) (tstamp 5910a5fe-02d2-43c3-8275-719282a4fba5))
+    (fp_line (start -4.2 -2.7) (end -4.2 2.7) (layer "F.CrtYd") (width 0.05) (tstamp 68015416-9ad1-4782-8d78-de2b22d855e2))
+    (fp_line (start -4.2 2.7) (end 4.2 2.7) (layer "F.CrtYd") (width 0.05) (tstamp e12498fb-0073-451e-bfed-533c8939e787))
+    (fp_line (start 2.54 0.95) (end 3.6 0.95) (layer "F.Fab") (width 0.1) (tstamp 09729d08-1f28-4989-9cd4-bba1484807dd))
+    (fp_line (start -3.6 -1.59) (end -3.6 -0.95) (layer "F.Fab") (width 0.1) (tstamp 0edef41d-0d73-4adf-8257-f364e3a9253f))
+    (fp_line (start -3.6 -0.95) (end -2.54 -0.95) (layer "F.Fab") (width 0.1) (tstamp 1419b495-bc63-4b9b-961a-7608e7a5f12d))
+    (fp_line (start 2.54 -2.54) (end 2.54 2.54) (layer "F.Fab") (width 0.1) (tstamp 15f62eec-de88-4fd4-8ce7-edefa0660429))
+    (fp_line (start -3.6 0.95) (end -3.6 1.59) (layer "F.Fab") (width 0.1) (tstamp 5fbd213d-229e-4a38-8f15-1f58e4823ec9))
+    (fp_line (start 3.6 -0.95) (end 2.54 -0.95) (layer "F.Fab") (width 0.1) (tstamp 6a103bd6-36aa-42f7-a967-a4a89af92862))
+    (fp_line (start -3.6 1.59) (end -2.54 1.59) (layer "F.Fab") (width 0.1) (tstamp 7d3ce60b-0fbc-4d1c-8ad6-57910cd4368e))
+    (fp_line (start 2.54 2.54) (end -2.54 2.54) (layer "F.Fab") (width 0.1) (tstamp 88aaa8ca-5d5e-420e-9150-eae76ab65680))
+    (fp_line (start -2.54 0.95) (end -3.6 0.95) (layer "F.Fab") (width 0.1) (tstamp 8a4dc82f-f803-4702-8c18-44e73153c139))
+    (fp_line (start -2.54 2.54) (end -2.54 -1.59) (layer "F.Fab") (width 0.1) (tstamp 8e8b572d-b74f-4211-ad63-681dccb4172d))
+    (fp_line (start -1.59 -2.54) (end 2.54 -2.54) (layer "F.Fab") (width 0.1) (tstamp 9a3c2099-a93b-43c7-a533-2eec49fc7cb1))
+    (fp_line (start 3.6 0.95) (end 3.6 1.59) (layer "F.Fab") (width 0.1) (tstamp a6b6c979-0c01-4bc3-ac83-adf14e2de01e))
+    (fp_line (start 3.6 -1.59) (end 3.6 -0.95) (layer "F.Fab") (width 0.1) (tstamp a8bb88f8-05aa-4bc1-b077-43de6136cc70))
+    (fp_line (start 2.54 -1.59) (end 3.6 -1.59) (layer "F.Fab") (width 0.1) (tstamp b58ee507-393c-44f7-a2de-9851a5b9bead))
+    (fp_line (start -2.54 -1.59) (end -3.6 -1.59) (layer "F.Fab") (width 0.1) (tstamp c8aa08dc-6e98-4645-8afd-a8552d5ebdf5))
+    (fp_line (start 3.6 1.59) (end 2.54 1.59) (layer "F.Fab") (width 0.1) (tstamp cbf99705-b115-4241-87c9-be1607ad9ede))
+    (fp_line (start -2.54 -1.59) (end -1.59 -2.54) (layer "F.Fab") (width 0.1) (tstamp cc491dd0-75d7-453b-8180-488286eddce3))
+    (pad "1" smd rect (at -2.525 -1.27 180) (size 3.15 1) (layers "F.Cu" "F.Paste" "F.Mask")
+      (net 1 "GND") (pinfunction "GND") (pintype "passive") (tstamp 6f39ac71-504f-4657-8986-24ff4f2d032d))
+    (pad "2" smd rect (at 2.525 -1.27 180) (size 3.15 1) (layers "F.Cu" "F.Paste" "F.Mask")
+      (net 7 "RST") (pinfunction "RST") (pintype "passive") (tstamp 6398af37-19f8-4769-a00f-fa5baf3c6ea5))
+    (pad "3" smd rect (at -2.525 1.27 180) (size 3.15 1) (layers "F.Cu" "F.Paste" "F.Mask")
+      (net 8 "DIO") (pinfunction "DIO") (pintype "passive") (tstamp 111a9cf1-58cb-4410-953d-499d23c85f0f))
+    (pad "4" smd rect (at 2.525 1.27 180) (size 3.15 1) (layers "F.Cu" "F.Paste" "F.Mask")
+      (net 9 "CLK") (pinfunction "CLK") (pintype "passive") (tstamp 8b65eba9-3370-4aa6-9c98-1579ce1acb40))
+    (model "${KISYS3DMOD}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_2x02_P2.54mm_Vertical_SMD.wrl"
+      (offset (xyz 0 0 0))
+      (scale (xyz 1 1 1))
+      (rotate (xyz 0 0 0))
+    )
+  )
+
+  (footprint "fab:C_1206" (layer "F.Cu")
+    (tedit 6002C54C) (tstamp 84a6c803-a4ac-48df-95fb-6930cca4e25e)
+    (at 74.422 42.926 180)
+    (descr "Capacitor SMD 1206, hand soldering")
+    (tags "capacitor 1206")
+    (property "Sheetfile" "samd11c14_hc_sr04.kicad_sch")
+    (property "Sheetname" "")
+    (path "/fde96c4e-b12c-43f8-9426-6e025c0e4ecc")
+    (attr smd)
+    (fp_text reference "C2" (at -0.127 0 90) (layer "F.SilkS")
+      (effects (font (size 1 1) (thickness 0.15)))
+      (tstamp 6f4bbdb8-5bb2-4c5f-b604-50c819181981)
+    )
+    (fp_text value "1uF" (at 0 1.9) (layer "F.Fab")
+      (effects (font (size 1 1) (thickness 0.15)))
+      (tstamp 21de29f1-55e6-491f-9b72-2d0cf15d30d9)
+    )
+    (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
+      (effects (font (size 0.7 0.7) (thickness 0.105)))
+      (tstamp 8d1c6119-4f8d-41bb-ac26-14b7b55b90f2)
+    )
+    (fp_line (start -1 -1.07) (end 1 -1.07) (layer "F.SilkS") (width 0.12) (tstamp 3a07246e-3a61-43dd-8b09-0bdf03c3e6f3))
+    (fp_line (start 1 1.07) (end -1 1.07) (layer "F.SilkS") (width 0.12) (tstamp 97e1f64a-ea8c-4ff4-8e5c-27686d0544c1))
+    (fp_line (start -3.25 -1.11) (end -3.25 1.1) (layer "F.CrtYd") (width 0.05) (tstamp 331e4b06-587c-447e-bea7-ab3ccd3f7d67))
+    (fp_line (start 3.25 1.1) (end -3.25 1.1) (layer "F.CrtYd") (width 0.05) (tstamp 441f9c55-be25-4fae-8b9b-6a71ad3b0b86))
+    (fp_line (start -3.25 -1.11) (end 3.25 -1.11) (layer "F.CrtYd") (width 0.05) (tstamp 5d580eb5-0e83-488b-a0fd-a803c630f551))
+    (fp_line (start 3.25 1.1) (end 3.25 -1.11) (layer "F.CrtYd") (width 0.05) (tstamp 7aec2799-4000-4098-a752-1bed4b75fdcf))
+    (fp_line (start -1.6 -0.8) (end 1.6 -0.8) (layer "F.Fab") (width 0.1) (tstamp a2d16f16-08e6-4947-a6d1-6d787ead02c9))
+    (fp_line (start -1.6 0.8) (end -1.6 -0.8) (layer "F.Fab") (width 0.1) (tstamp b11ebd64-c9c7-457c-8a22-c5fed71aadd1))
+    (fp_line (start 1.6 0.8) (end -1.6 0.8) (layer "F.Fab") (width 0.1) (tstamp c09f8970-d399-4978-b7bf-c426fa2f915a))
+    (fp_line (start 1.6 -0.8) (end 1.6 0.8) (layer "F.Fab") (width 0.1) (tstamp d4512ec7-3389-4b56-9e8b-bdbd8a828957))
+    (pad "1" smd rect locked (at -2 0 180) (size 2 1.7) (layers "F.Cu" "F.Paste" "F.Mask")
+      (net 2 "+3V3") (pintype "passive") (tstamp e294d04e-3720-4cda-b63e-078484e0733c))
+    (pad "2" smd rect locked (at 2 0 180) (size 2 1.7) (layers "F.Cu" "F.Paste" "F.Mask")
+      (net 1 "GND") (pintype "passive") (tstamp 1d052412-811d-4384-b62d-b10970534fb5))
+    (model "${FAB}/fab.3dshapes/C_1206.step"
+      (offset (xyz 0 0 0))
+      (scale (xyz 1 1 1))
+      (rotate (xyz 0 0 0))
+    )
+  )
+
+  (footprint "fab:SOT-23W" (layer "F.Cu")
+    (tedit 5EF36ECC) (tstamp 979784e6-6813-4ec3-b827-3fde402e007b)
+    (at 74.168 39.37 180)
+    (descr "SOT-23W for handsoldering")
+    (tags "fab handsoldering")
+    (property "Sheetfile" "samd11c14_hc_sr04.kicad_sch")
+    (property "Sheetname" "")
+    (path "/78dd0937-ee9d-48f7-810d-2995faf42b06")
+    (attr smd)
+    (fp_text reference "U1" (at 0 -2.5) (layer "F.SilkS")
+      (effects (font (size 1 1) (thickness 0.15)))
+      (tstamp 5f166979-d56c-4322-b233-17794a3457b5)
+    )
+    (fp_text value "Regulator_Linear_LM3480-3.3V-100mA" (at 0 2.5) (layer "F.Fab")
+      (effects (font (size 1 1) (thickness 0.15)))
+      (tstamp c866f4ae-ff2b-485e-ace5-eb22b622efa6)
+    )
+    (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
+      (effects (font (size 0.5 0.5) (thickness 0.075)))
+      (tstamp ea1e6278-75ba-4dbd-9269-6f0458555c99)
+    )
+    (fp_line (start -2 -1.61) (end 1.075 -1.61) (layer "F.SilkS") (width 0.12) (tstamp 379ebaf7-893a-42a6-8bcf-12c78912ad8a))
+    (fp_line (start 1.075 0.7) (end 1.075 1.61) (layer "F.SilkS") (width 0.12) (tstamp 763480e7-3762-4f16-a047-9f69445027bc))
+    (fp_line (start 1.075 -1.6) (end 1.075 -0.7) (layer "F.SilkS") (width 0.12) (tstamp 8c9efe2f-5335-4c8f-83f0-478062b3d361))
+    (fp_line (start -1.075 1.61) (end 1.075 1.61) (layer "F.SilkS") (width 0.12) (tstamp a83c47e7-af92-4e55-aa1d-63efd993255a))
+    (fp_line (start 2.95 -1.74) (end 2.95 1.74) (layer "F.CrtYd") (width 0.05) (tstamp 2ecafbfb-1f1b-4163-a8a3-81b34e25883e))
+    (fp_line (start -2.95 1.74) (end -2.95 -1.74) (layer "F.CrtYd") (width 0.05) (tstamp 569ea4b4-5dfd-49bf-b9b1-7356c1cccf85))
+    (fp_line (start 2.95 1.74) (end -2.95 1.74) (layer "F.CrtYd") (width 0.05) (tstamp b19e086b-ad6e-403a-827d-2f683812c0db))
+    (fp_line (start -2.95 -1.74) (end 2.95 -1.74) (layer "F.CrtYd") (width 0.05) (tstamp cb7234d4-db5d-4e28-a1b5-36480e441623))
+    (fp_line (start -0.955 -0.49) (end 0.045 -1.49) (layer "F.Fab") (width 0.1) (tstamp 0da646b6-a8a2-4edc-882f-6dac8cd09afe))
+    (fp_line (start 0.955 -1.49) (end 0.955 1.49) (layer "F.Fab") (width 0.1) (tstamp 3f6a0f8e-f04c-40b1-92f7-46637c011ccf))
+    (fp_line (start -0.955 1.49) (end 0.955 1.49) (layer "F.Fab") (width 0.1) (tstamp 6e357160-fc3f-4043-9cc3-8dcdbf217748))
+    (fp_line (start -0.955 -0.49) (end -0.955 1.49) (layer "F.Fab") (width 0.1) (tstamp 97d06544-0582-47af-9627-3ceb0885b721))
+    (fp_line (start 0.045 -1.49) (end 0.955 -1.49) (layer "F.Fab") (width 0.1) (tstamp ca2ce250-d103-4e4c-b0e2-9caf2ba9f2c8))
+    (pad "1" smd rect locked (at -1.7 -0.95 180) (size 2 0.7) (layers "F.Cu" "F.Paste" "F.Mask")
+      (net 2 "+3V3") (pinfunction "VO") (pintype "power_out") (tstamp 3799f89f-0a7e-4460-a961-117b6052c468))
+    (pad "2" smd rect locked (at -1.7 0.95 180) (size 2 0.7) (layers "F.Cu" "F.Paste" "F.Mask")
+      (net 3 "+5V") (pinfunction "VI") (pintype "power_in") (tstamp be5d8c2b-5fe9-43a1-b345-4a9faa948400))
+    (pad "3" smd rect locked (at 1.7 0 180) (size 2 0.7) (layers "F.Cu" "F.Paste" "F.Mask")
+      (net 1 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 8dc3406f-8767-4e6d-8d89-959c20c629f8))
+    (model "${KISYS3DMOD}/TO_SOT_Packages_SMD.3dshapes/SOT-23W_Handsoldering.wrl"
+      (offset (xyz 0 0 0))
+      (scale (xyz 1 1 1))
+      (rotate (xyz 0 0 0))
+    )
+  )
+
+  (footprint "fab:C_1206" (layer "F.Cu")
+    (tedit 6002C54C) (tstamp a720bddf-2927-409d-ad92-1fb78c1f3947)
+    (at 76.676 45.974 180)
+    (descr "Capacitor SMD 1206, hand soldering")
+    (tags "capacitor 1206")
+    (property "Sheetfile" "samd11c14_hc_sr04.kicad_sch")
+    (property "Sheetname" "")
+    (path "/a20728c8-07ac-40ed-b60c-72d07a38f400")
+    (attr smd)
+    (fp_text reference "C1" (at 0.179605 2.514472) (layer "F.SilkS")
+      (effects (font (size 1 1) (thickness 0.15)))
+      (tstamp 74247cd2-18b0-4df5-ab0e-e8ed1189698d)
+    )
+    (fp_text value "1uF" (at 0 1.9) (layer "F.Fab")
+      (effects (font (size 1 1) (thickness 0.15)))
+      (tstamp b272ca60-7ac8-46cc-a13d-3f6b67e611c3)
+    )
+    (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
+      (effects (font (size 0.7 0.7) (thickness 0.105)))
+      (tstamp b3abddeb-a46d-41df-9df3-15c1edae70c2)
+    )
+    (fp_line (start 1 1.07) (end -1 1.07) (layer "F.SilkS") (width 0.12) (tstamp 1010b46c-eef0-4f42-b0b9-6202e8f4716e))
+    (fp_line (start -1 -1.07) (end 1 -1.07) (layer "F.SilkS") (width 0.12) (tstamp 55a7d5fa-dd5e-4f56-b184-a50e5ce59bad))
+    (fp_line (start 3.25 1.1) (end 3.25 -1.11) (layer "F.CrtYd") (width 0.05) (tstamp 29f1ff93-9bf2-4de2-b846-e2b842c60d1d))
+    (fp_line (start -3.25 -1.11) (end 3.25 -1.11) (layer "F.CrtYd") (width 0.05) (tstamp c0aae7a3-e56e-4f35-957e-49469fc56a62))
+    (fp_line (start -3.25 -1.11) (end -3.25 1.1) (layer "F.CrtYd") (width 0.05) (tstamp e4d11587-5753-4daa-bf9c-7dcc4c8eabf0))
+    (fp_line (start 3.25 1.1) (end -3.25 1.1) (layer "F.CrtYd") (width 0.05) (tstamp f9cc2034-c1ef-44f8-bfae-ce4edf914759))
+    (fp_line (start -1.6 -0.8) (end 1.6 -0.8) (layer "F.Fab") (width 0.1) (tstamp 48ed4673-294b-4cf0-ab21-3bec4c0dd55d))
+    (fp_line (start -1.6 0.8) (end -1.6 -0.8) (layer "F.Fab") (width 0.1) (tstamp 9445191d-4426-4c12-9fa9-a8aad771acc8))
+    (fp_line (start 1.6 0.8) (end -1.6 0.8) (layer "F.Fab") (width 0.1) (tstamp d61ea785-242c-4b1a-8576-3fe8179a0d53))
+    (fp_line (start 1.6 -0.8) (end 1.6 0.8) (layer "F.Fab") (width 0.1) (tstamp f2510726-77a2-4312-9561-a35053bdcced))
+    (pad "1" smd rect locked (at -2 0 180) (size 2 1.7) (layers "F.Cu" "F.Paste" "F.Mask")
+      (net 3 "+5V") (pintype "passive") (tstamp 64b8cd6d-9a74-4885-9d23-037c62ad9c4a))
+    (pad "2" smd rect locked (at 2 0 180) (size 2 1.7) (layers "F.Cu" "F.Paste" "F.Mask")
+      (net 1 "GND") (pintype "passive") (tstamp 976a1a04-03ed-45ac-84fa-a85b8920a115))
+    (model "${FAB}/fab.3dshapes/C_1206.step"
+      (offset (xyz 0 0 0))
+      (scale (xyz 1 1 1))
+      (rotate (xyz 0 0 0))
+    )
+  )
+
+  (footprint "fab:R_1206" (layer "F.Cu")
+    (tedit 60020482) (tstamp d53619cc-25b9-4a27-96c2-8340f1ffc830)
+    (at 75.946 33.274)
+    (descr "Resistor SMD 1206, hand soldering")
+    (tags "resistor 1206")
+    (property "Sheetfile" "samd11c14_hc_sr04.kicad_sch")
+    (property "Sheetname" "")
+    (path "/793db082-42ed-4019-b9c9-5a54a4f821e0")
+    (attr smd)
+    (fp_text reference "R1" (at 0 -1.85) (layer "F.SilkS")
+      (effects (font (size 1 1) (thickness 0.15)))
+      (tstamp 27592b53-3a45-4a8a-9812-2fc7d51b71d4)
+    )
+    (fp_text value "1k" (at 0 1.9) (layer "F.Fab")
+      (effects (font (size 1 1) (thickness 0.15)))
+      (tstamp 63fff7e2-2fd3-4c9e-a801-724a7e50fb33)
+    )
+    (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
+      (effects (font (size 0.7 0.7) (thickness 0.105)))
+      (tstamp bbe5875b-a271-469c-9db4-31e93fc1a795)
+    )
+    (fp_line (start 1 1.07) (end -1 1.07) (layer "F.SilkS") (width 0.12) (tstamp cddd7c81-9408-4142-b1b5-ff0e50ed4408))
+    (fp_line (start -1 -1.07) (end 1 -1.07) (layer "F.SilkS") (width 0.12) (tstamp d1fd1e46-81e3-4a68-ac06-061cfcf8e49c))
+    (fp_line (start 3.25 1.1) (end 3.25 -1.11) (layer "F.CrtYd") (width 0.05) (tstamp 0c07d6b7-3b44-4125-8b9c-47d687937b2d))
+    (fp_line (start 3.25 1.1) (end -3.25 1.1) (layer "F.CrtYd") (width 0.05) (tstamp 59fabbf2-5a3d-47b2-922f-32475949508f))
+    (fp_line (start -3.25 -1.11) (end -3.25 1.1) (layer "F.CrtYd") (width 0.05) (tstamp 5bef9cab-4b75-45ba-a0ec-ce235f63187d))
+    (fp_line (start -3.25 -1.11) (end 3.25 -1.11) (layer "F.CrtYd") (width 0.05) (tstamp e484dc70-1546-481c-9299-7adc5c3e2506))
+    (fp_line (start -1.6 0.8) (end -1.6 -0.8) (layer "F.Fab") (width 0.1) (tstamp 1915c321-c7d3-4d40-8bec-0ae8dcfcc7c4))
+    (fp_line (start 1.6 -0.8) (end 1.6 0.8) (layer "F.Fab") (width 0.1) (tstamp 603bf52a-5ea1-49c3-ad9d-0ee3d274da52))
+    (fp_line (start -1.6 -0.8) (end 1.6 -0.8) (layer "F.Fab") (width 0.1) (tstamp b53deeab-184f-48d5-9a4b-48f2e70933ba))
+    (fp_line (start 1.6 0.8) (end -1.6 0.8) (layer "F.Fab") (width 0.1) (tstamp e79eb36e-34aa-4c81-9e35-881b7505298a))
+    (pad "1" smd rect locked (at -2 0) (size 2 1.7) (layers "F.Cu" "F.Paste" "F.Mask")
+      (net 13 "LED_A") (pintype "passive") (tstamp 4c73ff14-f0af-4477-8225-439ab6c207b6))
+    (pad "2" smd rect locked (at 2 0) (size 2 1.7) (layers "F.Cu" "F.Paste" "F.Mask")
+      (net 12 "Net-(D1-Pad2)") (pintype "passive") (tstamp 0fa65c06-6086-4a07-9a9e-68f90181883f))
+    (model "${FAB}/fab.3dshapes/R_1206.step"
+      (offset (xyz 0 0 0))
+      (scale (xyz 1 1 1))
+      (rotate (xyz 0 0 0))
+    )
+  )
+
+  (footprint "fab:LED_1206" (layer "F.Cu")
+    (tedit 595FC724) (tstamp f1c094d8-0713-4225-a7ca-e83c50af8377)
+    (at 75.946 35.814)
+    (descr "LED SMD 1206, hand soldering")
+    (tags "LED 1206")
+    (property "Sheetfile" "samd11c14_hc_sr04.kicad_sch")
+    (property "Sheetname" "")
+    (path "/c4a71020-03ce-4f30-a55a-13a246010c50")
+    (attr smd)
+    (fp_text reference "D1" (at 0 -1.85) (layer "F.SilkS")
+      (effects (font (size 1 1) (thickness 0.15)))
+      (tstamp 7e485dd6-7e70-4c68-b61d-97800fdfb74a)
+    )
+    (fp_text value "LED" (at 0 1.9) (layer "F.Fab")
+      (effects (font (size 1 1) (thickness 0.15)))
+      (tstamp d07e234d-4950-4f5f-a129-862df3a50f70)
+    )
+    (fp_line (start -3.1 -0.95) (end -3.1 0.95) (layer "F.SilkS") (width 0.12) (tstamp 2f68edbf-ba7c-4d18-b89e-ff700cfeadc6))
+    (fp_line (start -3.1 -0.95) (end 1.6 -0.95) (layer "F.SilkS") (width 0.12) (tstamp 583b4d95-7448-4863-8207-9753ec361bf8))
+    (fp_line (start -3.1 0.95) (end 1.6 0.95) (layer "F.SilkS") (width 0.12) (tstamp df052241-b3a7-42cb-820e-d0f9e67d021a))
+    (fp_line (start 3.25 1.1) (end -3.25 1.1) (layer "F.CrtYd") (width 0.05) (tstamp 6aea47a1-4a29-43bf-99a3-1960dd90a2dd))
+    (fp_line (start 3.25 1.1) (end 3.25 -1.11) (layer "F.CrtYd") (width 0.05) (tstamp 7fe4c6ce-fb46-4ea9-9ea0-b5c18231fa0a))
+    (fp_line (start -3.25 -1.11) (end 3.25 -1.11) (layer "F.CrtYd") (width 0.05) (tstamp 827c50a3-2e70-4493-be6d-9d318e408b5e))
+    (fp_line (start -3.25 -1.11) (end -3.25 1.1) (layer "F.CrtYd") (width 0.05) (tstamp bbfb8ee0-7056-4442-b953-500ea4659e0c))
+    (fp_line (start 1.6 0.8) (end -1.6 0.8) (layer "F.Fab") (width 0.1) (tstamp 4e83fc2b-0cbc-4384-9c2a-ddc5e13ba0ea))
+    (fp_line (start -1.6 0.8) (end -1.6 -0.8) (layer "F.Fab") (width 0.1) (tstamp 61270a1a-ac38-4cc1-b994-507e963f23c5))
+    (fp_line (start 0.2 -0.4) (end 0.2 0.4) (layer "F.Fab") (width 0.1) (tstamp 62d4852a-396d-4c2b-8cde-ea0ee50a7970))
+    (fp_line (start -0.4 0) (end 0.2 -0.4) (layer "F.Fab") (width 0.1) (tstamp 6300798d-bde3-409e-a11e-830d86aff69d))
+    (fp_line (start 1.6 -0.8) (end 1.6 0.8) (layer "F.Fab") (width 0.1) (tstamp 80b68303-f051-4d7d-a227-c67b616acf1b))
+    (fp_line (start -1.6 -0.8) (end 1.6 -0.8) (layer "F.Fab") (width 0.1) (tstamp aba6290b-3e0f-4514-98bb-2f230e0f2474))
+    (fp_line (start 0.2 0.4) (end -0.4 0) (layer "F.Fab") (width 0.1) (tstamp b8d1ae1a-e5bf-4b97-b353-68b1db16fbec))
+    (fp_line (start -0.45 -0.4) (end -0.45 0.4) (layer "F.Fab") (width 0.1) (tstamp fb0bf91b-a28c-4556-8306-e982dbb3586d))
+    (pad "1" smd rect locked (at -2 0) (size 2 1.7) (layers "F.Cu" "F.Paste" "F.Mask")
+      (net 6 "LED_C") (pinfunction "K") (pintype "passive") (tstamp 8704b276-fbb0-4429-a991-bfe8bcd13836))
+    (pad "2" smd rect locked (at 2 0) (size 2 1.7) (layers "F.Cu" "F.Paste" "F.Mask")
+      (net 12 "Net-(D1-Pad2)") (pinfunction "A") (pintype "passive") (tstamp 39c96d08-b633-4902-9ec8-57d48abc5edf))
+    (model "${KISYS3DMOD}/LEDs.3dshapes/LED_1206.wrl"
+      (offset (xyz 0 0 0))
+      (scale (xyz 1 1 1))
+      (rotate (xyz 0 0 180))
+    )
+  )
+
+  (footprint "fab:Conn_USB_A_Plain" (layer "F.Cu")
+    (tedit 61EE6490) (tstamp ff5ead9b-37b8-4bc9-9ac4-39775f57c6cf)
+    (at 66.929 26.416 90)
+    (descr "Plain USB Type A connector that can be cut with a PCB milling machine")
+    (tags "USB type A plain fab")
+    (property "Sheetfile" "samd11c14_hc_sr04.kicad_sch")
+    (property "Sheetname" "")
+    (path "/edc78bf5-dcc5-4cd6-aa4e-c01e87f3a3ff")
+    (attr smd)
+    (fp_text reference "P1" (at -5.334 0 unlocked) (layer "F.SilkS")
+      (effects (font (size 1 1) (thickness 0.15)))
+      (tstamp d8e5be0d-d98f-406a-bb3b-e2b68228703b)
+    )
+    (fp_text value "Conn_USB_A_Plain" (at 0 7 90 unlocked) (layer "F.Fab")
+      (effects (font (size 1 1) (thickness 0.15)))
+      (tstamp 33112a1f-3ef4-4453-945b-eafb5950befb)
+    )
+    (fp_text user "${REFERENCE}" (at 0 0 90 unlocked) (layer "F.Fab")
+      (effects (font (size 1 1) (thickness 0.15)))
+      (tstamp b85d8111-c66c-4649-8ef3-173324d8dc2f)
+    )
+    (fp_rect (start -4.25 -6.25) (end 6.25 6.25) (layer "B.CrtYd") (width 0.05) (fill none) (tstamp 7a961303-0ee0-4514-9c41-71f7612da80d))
+    (fp_rect (start -4.25 -6.25) (end 6.25 6.25) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp aa1a0bd5-2e16-4ae4-84c6-ff71de2d0c53))
+    (fp_line (start 6 -5.5) (end 6 5.5) (layer "F.Fab") (width 0.1) (tstamp 199f157d-6f84-41da-be4c-6e21ffdc4f00))
+    (fp_line (start -4 -6) (end 5.5 -6) (layer "F.Fab") (width 0.1) (tstamp 651c91fd-ec54-4600-b738-56cbf235205c))
+    (fp_line (start 5.5 6) (end -4 6) (layer "F.Fab") (width 0.1) (tstamp 8e865536-7e57-40b8-97a2-c3d4b4b14caf))
+    (fp_arc (start 6 5.5) (mid 5.853553 5.853553) (end 5.5 6) (layer "F.Fab") (width 0.1) (tstamp acbae352-7edb-481c-9de1-1fbd99403011))
+    (fp_arc (start 5.5 -6) (mid 5.853553 -5.853553) (end 6 -5.5) (layer "F.Fab") (width 0.1) (tstamp ca6bed28-5471-4a76-b6aa-41bb1fbae087))
+    (pad "1" smd rect (at 0.5 -3.5 90) (size 9 1.2) (layers "F.Cu" "F.Paste" "F.Mask")
+      (net 3 "+5V") (pinfunction "5V") (pintype "power_out") (tstamp 5d0be09d-133e-4cac-b0d8-fd336835cc6c))
+    (pad "2" smd rect (at 0 -1 90) (size 8 1.2) (layers "F.Cu" "F.Paste" "F.Mask")
+      (net 4 "D-") (pinfunction "D-") (pintype "bidirectional") (tstamp 453a77ad-fac0-4cd4-9fca-6e04f8cfa3e5))
+    (pad "3" smd rect (at 0 1 90) (size 8 1.2) (layers "F.Cu" "F.Paste" "F.Mask")
+      (net 5 "D+") (pinfunction "D+") (pintype "bidirectional") (tstamp 25f3023a-0b40-4b57-b672-1aea8836d4eb))
+    (pad "4" smd rect (at 0.5 3.5 90) (size 9 1.2) (layers "F.Cu" "F.Paste" "F.Mask")
+      (net 1 "GND") (pinfunction "GND") (pintype "power_out") (tstamp b217b8c4-9da3-40f9-a62d-8788048abf37))
+  )
+
+  (gr_line (start 60.8584 30.734) (end 60.8584 20.193) (layer "Edge.Cuts") (width 0.1) (tstamp 45289df9-d1e8-4b8e-af7b-14fb3554652f))
+  (gr_line (start 72.9996 20.193) (end 60.8584 20.193) (layer "Edge.Cuts") (width 0.1) (tstamp 6439c27f-b390-4e30-8e16-4a07043bc314))
+  (gr_line (start 79.502 60.452) (end 80.264 59.69) (layer "Edge.Cuts") (width 0.1) (tstamp 671d0fa9-11d9-44da-b43f-2a19ff0340e4))
+  (gr_line (start 54.356 30.734) (end 53.594 31.496) (layer "Edge.Cuts") (width 0.1) (tstamp 71a423b9-e460-4102-84b5-9686721985e1))
+  (gr_line (start 53.594 59.69) (end 53.594 31.496) (layer "Edge.Cuts") (width 0.1) (tstamp 7ddc7d53-1bb3-40d9-b48e-27664f299f6b))
+  (gr_line (start 72.9996 20.193) (end 72.9996 30.734) (layer "Edge.Cuts") (width 0.1) (tstamp 84bfaaa4-fe8b-464b-9837-7febb50ee6ce))
+  (gr_line (start 79.502 60.452) (end 54.356 60.452) (layer "Edge.Cuts") (width 0.1) (tstamp 8a0184e1-dc9e-4c8a-8b5b-a9b5eb558310))
+  (gr_line (start 54.356 60.452) (end 53.594 59.69) (layer "Edge.Cuts") (width 0.1) (tstamp 93fccb6c-a9d3-4884-8686-418fc09b35cb))
+  (gr_line (start 80.264 59.69) (end 80.264 31.496) (layer "Edge.Cuts") (width 0.1) (tstamp a3ccf9a7-c443-45d6-a66f-d31c2155aa2d))
+  (gr_line (start 72.9996 30.734) (end 79.502 30.734) (layer "Edge.Cuts") (width 0.1) (tstamp b0241644-32fb-4c01-b372-2c6daf1d48e1))
+  (gr_line (start 80.264 31.496) (end 79.502 30.734) (layer "Edge.Cuts") (width 0.1) (tstamp c5c631ad-4f7e-4f20-98ec-a852fdbb8a86))
+  (gr_line (start 54.356 30.734) (end 60.8584 30.734) (layer "Edge.Cuts") (width 0.1) (tstamp e8b24d99-7a48-467e-970b-8c034bdc00c2))
+
+  (segment (start 67.564 37.338) (end 67.564 33.257878) (width 0.3) (layer "F.Cu") (net 1) (tstamp 03a4d451-1cc1-4813-a853-4ef1efccd07f))
+  (segment (start 70.7685 37.7485) (end 72.39 39.37) (width 0.4) (layer "F.Cu") (net 1) (tstamp 04339b55-09ae-408e-a1f1-16507920b4f8))
+  (segment (start 72.422 42.926) (end 72.422 45.752) (width 0.4) (layer "F.Cu") (net 1) (tstamp 2028359b-469b-4c85-8516-a07f311b7b1a))
+  (segment (start 64.008 51.562) (end 67.056 51.562) (width 0.4) (layer "F.Cu") (net 1) (tstamp 33733444-34a0-4ba9-8831-0379ba498335))
+  (segment (start 69.3024 37.7485) (end 70.7685 37.7485) (width 0.4) (layer "F.Cu") (net 1) (tstamp 5201a1ca-ce6d-4c58-b8b5-c861211e2631))
+  (segment (start 69.3024 37.7485) (end 67.9745 37.7485) (width 0.3) (layer "F.Cu") (net 1) (tstamp 5b843b70-50be-4c2b-b736-35531f2def85))
+  (segment (start 74.962 45.974) (end 72.644 45.974) (width 0.4) (layer "F.Cu") (net 1) (tstamp 69c29c3c-a637-4da7-aacb-c666d95cc6cc))
+  (segment (start 72.422 45.752) (end 72.644 45.974) (width 0.4) (layer "F.Cu") (net 1) (tstamp 798a0c77-6ffe-477e-9a8d-e5a95d411ca1))
+  (segment (start 69.007881 47.618019) (end 69.3524 47.2735) (width 0.4) (layer "F.Cu") (net 1) (tstamp 8425dc64-4819-4cd3-afa8-7be23fa21686))
+  (segment (start 72.468 42.88) (end 72.422 42.926) (width 0.4) (layer "F.Cu") (net 1) (tstamp 886a47bc-a8a0-4443-afe3-a714bade71a4))
+  (segment (start 69.342 32.766) (end 70.429 31.679) (width 0.3) (layer "F.Cu") (net 1) (tstamp 8c00ffb4-3e2e-4ef1-900f-2fdee4cfd979))
+  (segment (start 72.468 39.37) (end 72.468 42.88) (width 0.4) (layer "F.Cu") (net 1) (tstamp 9bbb727e-5c4a-4f8d-ba76-2faba2e4d414))
+  (segment (start 63.0274 54.102) (end 63.0274 52.5426) (width 0.4) (layer "F.Cu") (net 1) (tstamp a33a85be-b209-403a-9bc7-13fd94f2fda3))
+  (segment (start 68.055878 32.766) (end 69.342 32.766) (width 0.3) (layer "F.Cu") (net 1) (tstamp ab169002-7cb0-4fb3-9171-5e857396b351))
+  (segment (start 72.39 39.37) (end 72.468 39.37) (width 0.4) (layer "F.Cu") (net 1) (tstamp b8f66175-a190-45f7-a12e-280a88ab3663))
+  (segment (start 70.429 31.679) (end 70.429 25.916) (width 0.3) (layer "F.Cu") (net 1) (tstamp bb5eca57-c084-47ea-a936-c3383d02631e))
+  (segment (start 67.056 51.562) (end 69.007881 49.610119) (width 0.4) (layer "F.Cu") (net 1) (tstamp c1271c5f-90f4-43b7-83d9-a3858d4f4814))
+  (segment (start 69.007881 49.610119) (end 69.007881 47.618019) (width 0.4) (layer "F.Cu") (net 1) (tstamp d00e01f1-a427-4fe7-bfad-fdda4730868f))
+  (segment (start 69.3524 47.2735) (end 71.3445 47.2735) (width 0.4) (layer "F.Cu") (net 1) (tstamp d8f62de9-1185-4783-ab9c-241325d19c1e))
+  (segment (start 67.9745 37.7485) (end 67.564 37.338) (width 0.3) (layer "F.Cu") (net 1) (tstamp ebcb4f7e-9d0b-4a88-a91f-4b08e48cbdfd))
+  (segment (start 63.0274 52.5426) (end 64.008 51.562) (width 0.4) (layer "F.Cu") (net 1) (tstamp ef5c1a24-b060-4384-a6b7-13e7a58de681))
+  (segment (start 71.3445 47.2735) (end 72.644 45.974) (width 0.4) (layer "F.Cu") (net 1) (tstamp f3853fb1-3fb6-4c45-b612-996f5c26c34d))
+  (segment (start 67.564 33.257878) (end 68.055878 32.766) (width 0.3) (layer "F.Cu") (net 1) (tstamp fe6ffaa4-7474-4c85-8acf-df287b6cc6e0))
+  (segment (start 70.7685 36.4785) (end 71.628 37.338) (width 0.4) (layer "F.Cu") (net 2) (tstamp 02a96378-cded-4b73-bf27-3f8258be0452))
+  (segment (start 74.256 39.712) (end 74.864 40.32) (width 0.4) (layer "F.Cu") (net 2) (tstamp 260d9b87-197a-4218-838a-39b9325306c3))
+  (segment (start 71.628 37.338) (end 73.66 37.338) (width 0.4) (layer "F.Cu") (net 2) (tstamp 337ecfec-65fe-4993-934d-7d8ffdc8e586))
+  (segment (start 74.864 40.32) (end 75.868 40.32) (width 0.4) (layer "F.Cu") (net 2) (tstamp 3fd3bd2c-431d-49f6-9aff-d429703ecca7))
+  (segment (start 75.868 40.32) (end 76.962 40.32) (width 0.4) (layer "F.Cu") (net 2) (tstamp 4a16eb73-034c-4307-9ec4-2e6ee5d6cbe9))
+  (segment (start 73.66 37.338) (end 74.256 37.934) (width 0.4) (layer "F.Cu") (net 2) (tstamp 76754a92-43e4-432f-88d4-396c823c1b87))
+  (segment (start 74.256 37.934) (end 74.256 39.712) (width 0.4) (layer "F.Cu") (net 2) (tstamp 7786c527-7f37-46a1-8b10-f6b7cef2290c))
+  (segment (start 76.962 40.32) (end 76.962 42.386) (width 0.4) (layer "F.Cu") (net 2) (tstamp 7f808feb-e10a-4e8d-b1b6-6951205b3860))
+  (segment (start 76.962 42.386) (end 76.422 42.926) (width 0.4) (layer "F.Cu") (net 2) (tstamp 89bb4b59-8bc8-432c-b79a-a99c03fa0c5b))
+  (segment (start 76.422 42.926) (end 76.708 42.926) (width 0.4) (layer "F.Cu") (net 2) (tstamp 9d90b1ae-acc0-438b-9239-3b0bf96f9118))
+  (segment (start 76.708 42.926) (end 76.962 42.672) (width 0.4) (layer "F.Cu") (net 2) (tstamp d88cbf16-afd9-4137-afeb-c184fcc8716c))
+  (segment (start 69.3024 36.4785) (end 70.7685 36.4785) (width 0.4) (layer "F.Cu") (net 2) (tstamp e4d37f03-b2e6-40b3-8baa-8aba721e9376))
+  (segment (start 75.868 38.42) (end 76.518 38.42) (width 0.4) (layer "F.Cu") (net 3) (tstamp 0e23d0bb-eccc-4885-8a3e-8730a3f991e0))
+  (segment (start 60.96 59.182) (end 57.15 55.372) (width 0.4) (layer "F.Cu") (net 3) (tstamp 1c79625d-5d6f-4203-8e7d-97530f7c5beb))
+  (segment (start 63.429 31.821) (end 63.429 25.916) (width 0.4) (layer "F.Cu") (net 3) (tstamp 2b22003d-3466-4b13-a686-1b8ef7289ac9))
+  (segment (start 66.802 59.182) (end 60.96 59.182) (width 0.4) (layer "F.Cu") (net 3) (tstamp 417e7390-43a1-4f1c-8492-361c7fce8a61))
+  (segment (start 57.15 55.372) (end 57.15 38.1) (width 0.4) (layer "F.Cu") (net 3) (tstamp 562ff8df-031f-4d83-87d0-f332e164c0e0))
+  (segment (start 78.962 47.022) (end 71.882 54.102) (width 0.4) (layer "F.Cu") (net 3) (tstamp 736c15db-2ac5-4f83-b97a-5e8241901ca6))
+  (segment (start 71.882 54.102) (end 70.6474 54.102) (width 0.4) (layer "F.Cu") (net 3) (tstamp 7e4f2c7f-db38-40ab-a63e-2f668515b764))
+  (segment (start 70.6474 54.102) (end 70.6474 55.3366) (width 0.4) (layer "F.Cu") (net 3) (tstamp 8f4fd435-3a63-43f1-b0bb-95b0d0c47147))
+  (segment (start 78.962 40.928) (end 78.962 47.022) (width 0.4) (layer "F.Cu") (net 3) (tstamp 90c39fd3-c12d-40f5-9e6b-a74b28c43acb))
+  (segment (start 78.994 40.896) (end 78.962 40.928) (width 0.4) (layer "F.Cu") (net 3) (tstamp a50cae34-e5c6-47b2-a5e0-ac8bf0465aef))
+  (segment (start 76.518 38.42) (end 78.994 40.896) (width 0.4) (layer "F.Cu") (net 3) (tstamp a986cef8-6a74-404b-b0df-eed830b11554))
+  (segment (start 70.6474 55.3366) (end 66.802 59.182) (width 0.4) (layer "F.Cu") (net 3) (tstamp af0a8236-71ec-4bf5-95c2-82abee3b7304))
+  (segment (start 57.15 38.1) (end 63.429 31.821) (width 0.4) (layer "F.Cu") (net 3) (tstamp fa4dc55f-5458-461d-aed1-eb9f55f2fad5))
+  (segment (start 65.929 31.385) (end 65.929 26.416) (width 0.3) (layer "F.Cu") (net 4) (tstamp 047a2792-3899-4e7d-a045-c64ff9f8bf1d))
+  (segment (start 69.3024 40.2885) (end 66.7045 40.2885) (width 0.3) (layer "F.Cu") (net 4) (tstamp 4d4d8e62-0538-44b6-89ba-8c2e4a49bcd4))
+  (segment (start 65.929 28.929702) (end 65.929 26.416) (width 0.4) (layer "F.Cu") (net 4) (tstamp b35b9bf8-d0d3-480c-8956-d41f7e1e55ec))
+  (segment (start 66.04 31.496) (end 65.929 31.385) (width 0.3) (layer "F.Cu") (net 4) (tstamp b919ca47-ac0d-4db9-b515-25954dc23662))
+  (segment (start 66.04 39.624) (end 66.04 31.496) (width 0.3) (layer "F.Cu") (net 4) (tstamp c9f3535d-11db-4ac9-9220-f092432d4272))
+  (segment (start 66.073849 29.074551) (end 65.929 28.929702) (width 0.4) (layer "F.Cu") (net 4) (tstamp ca78bc3a-1a93-43d7-8313-02bcdae2b1f3))
+  (segment (start 66.7045 40.2885) (end 66.04 39.624) (width 0.3) (layer "F.Cu") (net 4) (tstamp f808c68b-a25b-4aa1-9f3d-69d898d7b16b))
+  (segment (start 66.802 31.75) (end 66.802 38.608) (width 0.3) (layer "F.Cu") (net 5) (tstamp 210e702e-8fff-4d71-b531-7920637e2787))
+  (segment (start 67.929 26.416) (end 67.794489 26.550511) (width 0.4) (layer "F.Cu") (net 5) (tstamp 2db13a45-4504-4a10-86ad-1009b20d9f40))
+  (segment (start 67.929 30.623) (end 66.802 31.75) (width 0.3) (layer "F.Cu") (net 5) (tstamp 50d814dd-ca5c-4dc9-bed1-68de34f7ff38))
+  (segment (start 67.2125 39.0185) (end 69.3024 39.0185) (width 0.3) (layer "F.Cu") (net 5) (tstamp a66a0eb2-226c-4a5f-aa50-44d77aafdf70))
+  (segment (start 67.929 26.416) (end 67.929 30.623) (width 0.3) (layer "F.Cu") (net 5) (tstamp e1209164-d2e2-4f23-8b04-475bb4af84ad))
+  (segment (start 66.802 38.608) (end 67.2125 39.0185) (width 0.3) (layer "F.Cu") (net 5) (tstamp e33dce2f-b9b0-4e98-bc4c-7d5d149d6ef3))
+  (segment (start 71.5305 35.2085) (end 72.136 35.814) (width 0.4) (layer "F.Cu") (net 6) (tstamp 3c041346-2342-41b1-9ae0-75701f1a16ed))
+  (segment (start 72.136 35.814) (end 73.946 35.814) (width 0.4) (layer "F.Cu") (net 6) (tstamp 8f7b78d5-1627-41b4-8313-8c6b7ec0ee01))
+  (segment (start 69.3024 35.2085) (end 71.5305 35.2085) (width 0.4) (layer "F.Cu") (net 6) (tstamp d310b487-3773-4ce5-9942-b7018f993c77))
+  (segment (start 62.023511 41.222211) (end 62.957222 40.2885) (width 0.4) (layer "F.Cu") (net 7) (tstamp 2dec1ee0-4fd4-4795-a1db-266cddb29ba4))
+  (segment (start 62.5135 47.2735) (end 62.023511 46.783511) (width 0.4) (layer "F.Cu") (net 7) (tstamp 3643d4e6-06d0-4339-984c-2e787368fbcc))
+  (segment (start 64.3024 47.2735) (end 62.5135 47.2735) (width 0.4) (layer "F.Cu") (net 7) (tstamp 7634bc7f-484a-4260-97c4-fce2ff061701))
+  (segment (start 62.957222 40.2885) (end 64.3524 40.2885) (width 0.4) (layer "F.Cu") (net 7) (tstamp bf8291ab-7c51-41c8-b1ac-0d97a1059cd2))
+  (segment (start 62.023511 46.783511) (end 62.023511 41.222211) (width 0.4) (layer "F.Cu") (net 7) (tstamp da365731-9b01-4a52-8caa-a8c36eb3d883))
+  (segment (start 69.3524 41.6085) (end 69.3024 41.5585) (width 0.4) (layer "F.Cu") (net 8) (tstamp b34588a8-1417-4351-ab8d-184680f43c1f))
+  (segment (start 69.3524 44.7335) (end 69.3524 41.6085) (width 0.4) (layer "F.Cu") (net 8) (tstamp c622452a-f479-4323-9ad9-04db8abf27e0))
+  (segment (start 64.3024 41.6085) (end 64.3524 41.5585) (width 0.4) (layer "F.Cu") (net 9) (tstamp dc787627-3657-4953-b0cf-ca74f369d820))
+  (segment (start 64.3024 44.7335) (end 64.3024 41.6085) (width 0.4) (layer "F.Cu") (net 9) (tstamp e7287e6b-c861-4e14-a0c9-901945abbfc0))
+  (segment (start 77.946 33.274) (end 77.946 35.814) (width 0.4) (layer "F.Cu") (net 12) (tstamp 425f99c4-37bd-4d25-9e4f-5f48bafbcd03))
+  (segment (start 72.136 33.274) (end 73.946 33.274) (width 0.4) (layer "F.Cu") (net 13) (tstamp 0b71f8d2-3097-4cea-abd6-6f18d197bcff))
+  (segment (start 71.4715 33.9385) (end 72.136 33.274) (width 0.4) (layer "F.Cu") (net 13) (tstamp 570828c0-d606-41a0-b767-8b34cf9929e8))
+  (segment (start 69.3024 33.9385) (end 71.4715 33.9385) (width 0.4) (layer "F.Cu") (net 13) (tstamp e60e81d1-1a76-403b-a669-30d647249d6f))
+  (segment (start 60.452 46.45) (end 60.452 54.864) (width 0.4) (layer "F.Cu") (net 15) (tstamp 0c7ac370-af5f-426c-b6c3-189201335b3b))
+  (segment (start 65.5674 55.3366) (end 65.5674 54.102) (width 0.4) (layer "F.Cu") (net 15) (tstamp 0cdd608c-fa1f-474b-b411-b1ca078633be))
+  (segment (start 61.976 56.388) (end 64.516 56.388) (width 0.4) (layer "F.Cu") (net 15) (tstamp 0ffef91d-01c2-459e-94c2-d7c26c56d4dc))
+  (segment (start 60.452 54.864) (end 61.976 56.388) (width 0.4) (layer "F.Cu") (net 15) (tstamp 3cccd02e-6d12-4d51-add3-ae68af40768a))
+  (segment (start 64.516 56.388) (end 65.5674 55.3366) (width 0.4) (layer "F.Cu") (net 15) (tstamp e46ab151-21ae-4f69-81b0-06b1245ac273))
+  (segment (start 58.166 40.894) (end 61.3115 37.7485) (width 0.4) (layer "F.Cu") (net 16) (tstamp 086fb57a-b379-478f-9b4d-cec5c60e42ba))
+  (segment (start 58.166 55.118) (end 58.166 40.894) (width 0.4) (layer "F.Cu") (net 16) (tstamp 5224137e-af6f-422f-90ce-2987aabd258a))
+  (segment (start 66.548 57.658) (end 60.706 57.658) (width 0.4) (layer "F.Cu") (net 16) (tstamp 9625ca51-d997-44f4-87ff-ffd6f16a13e1))
+  (segment (start 60.706 57.658) (end 58.166 55.118) (width 0.4) (layer "F.Cu") (net 16) (tstamp c2ee2f13-b352-4dfb-b866-cfa99150ae51))
+  (segment (start 68.1074 54.102) (end 68.1074 56.0986) (width 0.4) (layer "F.Cu") (net 16) (tstamp c4002f96-5de3-4525-9436-dd7e24669061))
+  (segment (start 68.1074 56.0986) (end 66.548 57.658) (width 0.4) (layer "F.Cu") (net 16) (tstamp d034bc36-2221-4f81-ac13-2383e7a957ff))
+  (segment (start 61.3115 37.7485) (end 64.3524 37.7485) (width 0.4) (layer "F.Cu") (net 16) (tstamp e900d6da-33cc-4c70-853b-59813c782baa))
+  (segment (start 62.5815 39.0185) (end 64.3524 39.0185) (width 0.4) (layer "F.Cu") (net 17) (tstamp 1f4fc2f7-3e96-46de-a659-d17a2dae7252))
+  (segment (start 60.452 42.45) (end 60.452 41.148) (width 0.4) (layer "F.Cu") (net 17) (tstamp 93690126-0ea8-46f0-b6eb-00471a3d37e7))
+  (segment (start 60.452 41.148) (end 62.5815 39.0185) (width 0.4) (layer "F.Cu") (net 17) (tstamp beb1406f-0624-4c40-9fad-e880d90482fd))
+
+)
diff --git a/distance/samd11c14_hc_sr04.kicad_pro b/distance/samd11c14_hc_sr04.kicad_pro
new file mode 100644
index 0000000000000000000000000000000000000000..7ac29ce284e5136108f925f7ab5e2a3f60d23fad
--- /dev/null
+++ b/distance/samd11c14_hc_sr04.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.41,
+        "min_copper_edge_clearance": 0.19999999999999998,
+        "min_hole_clearance": 0.41,
+        "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.41,
+        "solder_mask_clearance": 0.0,
+        "solder_mask_min_width": 0.0,
+        "use_height_for_length_calcs": true
+      },
+      "track_widths": [
+        0.0,
+        0.3,
+        0.4
+      ],
+      "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": "samd11c14_pot.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": [
+    [
+      "d4eb2907-309b-4782-9005-ba4144c8413e",
+      ""
+    ]
+  ],
+  "text_variables": {}
+}
diff --git a/distance/samd11c14_hc_sr04.kicad_sch b/distance/samd11c14_hc_sr04.kicad_sch
new file mode 100644
index 0000000000000000000000000000000000000000..d52df33313e7cd6ea30aef9012996a14179fffca
--- /dev/null
+++ b/distance/samd11c14_hc_sr04.kicad_sch
@@ -0,0 +1,1240 @@
+(kicad_sch (version 20211123) (generator eeschema)
+
+  (uuid d4eb2907-309b-4782-9005-ba4144c8413e)
+
+  (paper "A4")
+
+  (lib_symbols
+    (symbol "Connector:Conn_01x04_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_01x04_Male" (id 1) (at 0 -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, single row, 01x04, 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_01x04_Male_1_1"
+        (polyline
+          (pts
+            (xy 1.27 -5.08)
+            (xy 0.8636 -5.08)
+          )
+          (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))
+        )
+        (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 -4.953) (end 0 -5.207)
+          (stroke (width 0.1524) (type default) (color 0 0 0 0))
+          (fill (type outline))
+        )
+        (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))))
+        )
+        (pin passive line (at 5.08 -5.08 180) (length 3.81)
+          (name "Pin_4" (effects (font (size 1.27 1.27))))
+          (number "4" (effects (font (size 1.27 1.27))))
+        )
+      )
+    )
+    (symbol "Device:R" (pin_numbers hide) (pin_names (offset 0)) (in_bom yes) (on_board yes)
+      (property "Reference" "R" (id 0) (at 2.032 0 90)
+        (effects (font (size 1.27 1.27)))
+      )
+      (property "Value" "R" (id 1) (at 0 0 90)
+        (effects (font (size 1.27 1.27)))
+      )
+      (property "Footprint" "" (id 2) (at -1.778 0 90)
+        (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" "R res resistor" (id 4) (at 0 0 0)
+        (effects (font (size 1.27 1.27)) hide)
+      )
+      (property "ki_description" "Resistor" (id 5) (at 0 0 0)
+        (effects (font (size 1.27 1.27)) hide)
+      )
+      (property "ki_fp_filters" "R_*" (id 6) (at 0 0 0)
+        (effects (font (size 1.27 1.27)) hide)
+      )
+      (symbol "R_0_1"
+        (rectangle (start -1.016 -2.54) (end 1.016 2.54)
+          (stroke (width 0.254) (type default) (color 0 0 0 0))
+          (fill (type none))
+        )
+      )
+      (symbol "R_1_1"
+        (pin passive line (at 0 3.81 270) (length 1.27)
+          (name "~" (effects (font (size 1.27 1.27))))
+          (number "1" (effects (font (size 1.27 1.27))))
+        )
+        (pin passive line (at 0 -3.81 90) (length 1.27)
+          (name "~" (effects (font (size 1.27 1.27))))
+          (number "2" (effects (font (size 1.27 1.27))))
+        )
+      )
+    )
+    (symbol "fab:C" (pin_numbers hide) (pin_names (offset 0.254)) (in_bom yes) (on_board yes)
+      (property "Reference" "C" (id 0) (at 0.635 2.54 0)
+        (effects (font (size 1.27 1.27)) (justify left))
+      )
+      (property "Value" "C" (id 1) (at 0.635 -2.54 0)
+        (effects (font (size 1.27 1.27)) (justify left))
+      )
+      (property "Footprint" "fab:C_1206" (id 2) (at 0.9652 -3.81 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" "cap capacitor" (id 4) (at 0 0 0)
+        (effects (font (size 1.27 1.27)) hide)
+      )
+      (property "ki_description" "Unpolarized capacitor" (id 5) (at 0 0 0)
+        (effects (font (size 1.27 1.27)) hide)
+      )
+      (property "ki_fp_filters" "C_*" (id 6) (at 0 0 0)
+        (effects (font (size 1.27 1.27)) hide)
+      )
+      (symbol "C_0_1"
+        (polyline
+          (pts
+            (xy -2.032 -0.762)
+            (xy 2.032 -0.762)
+          )
+          (stroke (width 0.508) (type default) (color 0 0 0 0))
+          (fill (type none))
+        )
+        (polyline
+          (pts
+            (xy -2.032 0.762)
+            (xy 2.032 0.762)
+          )
+          (stroke (width 0.508) (type default) (color 0 0 0 0))
+          (fill (type none))
+        )
+      )
+      (symbol "C_1_1"
+        (pin passive line (at 0 3.81 270) (length 2.794)
+          (name "~" (effects (font (size 1.27 1.27))))
+          (number "1" (effects (font (size 1.27 1.27))))
+        )
+        (pin passive line (at 0 -3.81 90) (length 2.794)
+          (name "~" (effects (font (size 1.27 1.27))))
+          (number "2" (effects (font (size 1.27 1.27))))
+        )
+      )
+    )
+    (symbol "fab:Conn_PinHeader_2x02_SWD_P2.54mm_Vertical_SMD" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
+      (property "Reference" "J" (id 0) (at -6.35 7.62 0)
+        (effects (font (size 1.27 1.27)) (justify left bottom))
+      )
+      (property "Value" "Conn_PinHeader_2x02_SWD_P2.54mm_Vertical_SMD" (id 1) (at -6.35 5.08 0)
+        (effects (font (size 1.27 1.27)) (justify left bottom))
+      )
+      (property "Footprint" "fab:PinHeader_2x02_SWD_P2.54mm_Vertical_SMD" (id 2) (at 0 0 0)
+        (effects (font (size 1.27 1.27)) hide)
+      )
+      (property "Datasheet" "https://cdn.amphenol-icc.com/media/wysiwyg/files/drawing/95278.pdf" (id 3) (at 0 0 0)
+        (effects (font (size 1.27 1.27)) hide)
+      )
+      (property "ki_keywords" "connector swd programming jtag" (id 4) (at 0 0 0)
+        (effects (font (size 1.27 1.27)) hide)
+      )
+      (property "ki_description" "Connector Header Surface Mount 4 position 0.100\" (2.54mm) for programming D11C chips" (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_PinHeader_2x02_SWD_P2.54mm_Vertical_SMD_1_1"
+        (rectangle (start -6.35 3.81) (end 6.35 -3.81)
+          (stroke (width 0.254) (type default) (color 0 0 0 0))
+          (fill (type background))
+        )
+        (pin passive line (at -10.16 1.27 0) (length 3.81)
+          (name "GND" (effects (font (size 1.27 1.27))))
+          (number "1" (effects (font (size 1.27 1.27))))
+        )
+        (pin passive line (at 10.16 1.27 180) (length 3.81)
+          (name "RST" (effects (font (size 1.27 1.27))))
+          (number "2" (effects (font (size 1.27 1.27))))
+        )
+        (pin passive line (at -10.16 -1.27 0) (length 3.81)
+          (name "DIO" (effects (font (size 1.27 1.27))))
+          (number "3" (effects (font (size 1.27 1.27))))
+        )
+        (pin passive line (at 10.16 -1.27 180) (length 3.81)
+          (name "CLK" (effects (font (size 1.27 1.27))))
+          (number "4" (effects (font (size 1.27 1.27))))
+        )
+      )
+    )
+    (symbol "fab:Conn_USB_A_Plain" (in_bom yes) (on_board yes)
+      (property "Reference" "P" (id 0) (at -6.35 10.16 0)
+        (effects (font (size 1.27 1.27)) (justify left bottom))
+      )
+      (property "Value" "Conn_USB_A_Plain" (id 1) (at -6.35 7.62 0)
+        (effects (font (size 1.27 1.27)) (justify left bottom))
+      )
+      (property "Footprint" "fab:Conn_USB_A_Plain" (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" "usb type-a connector plug" (id 4) (at 0 0 0)
+        (effects (font (size 1.27 1.27)) hide)
+      )
+      (property "ki_description" "Plain USB connector that can be milled with as PCB milling machine " (id 5) (at 0 0 0)
+        (effects (font (size 1.27 1.27)) hide)
+      )
+      (symbol "Conn_USB_A_Plain_0_1"
+        (rectangle (start -6.35 6.35) (end 6.35 -6.35)
+          (stroke (width 0.254) (type default) (color 0 0 0 0))
+          (fill (type background))
+        )
+        (rectangle (start -1.27 -3.81) (end 5.08 -5.08)
+          (stroke (width 0) (type default) (color 0 0 0 0))
+          (fill (type none))
+        )
+        (rectangle (start -1.27 -1.27) (end 2.54 -2.54)
+          (stroke (width 0) (type default) (color 0 0 0 0))
+          (fill (type none))
+        )
+        (rectangle (start -1.27 2.54) (end 2.54 1.27)
+          (stroke (width 0) (type default) (color 0 0 0 0))
+          (fill (type none))
+        )
+        (rectangle (start -1.27 5.08) (end 5.08 3.81)
+          (stroke (width 0) (type default) (color 0 0 0 0))
+          (fill (type none))
+        )
+      )
+      (symbol "Conn_USB_A_Plain_1_1"
+        (pin power_out line (at -8.89 3.81 0) (length 2.54)
+          (name "5V" (effects (font (size 1.27 1.27))))
+          (number "1" (effects (font (size 1.27 1.27))))
+        )
+        (pin bidirectional line (at -8.89 1.27 0) (length 2.54)
+          (name "D-" (effects (font (size 1.27 1.27))))
+          (number "2" (effects (font (size 1.27 1.27))))
+        )
+        (pin bidirectional line (at -8.89 -1.27 0) (length 2.54)
+          (name "D+" (effects (font (size 1.27 1.27))))
+          (number "3" (effects (font (size 1.27 1.27))))
+        )
+        (pin power_out line (at -8.89 -3.81 0) (length 2.54)
+          (name "GND" (effects (font (size 1.27 1.27))))
+          (number "4" (effects (font (size 1.27 1.27))))
+        )
+      )
+    )
+    (symbol "fab:LED" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
+      (property "Reference" "D" (id 0) (at 0 2.54 0)
+        (effects (font (size 1.27 1.27)))
+      )
+      (property "Value" "LED" (id 1) (at 0 -2.54 0)
+        (effects (font (size 1.27 1.27)))
+      )
+      (property "Footprint" "fab:LED_1206" (id 2) (at 0 0 0)
+        (effects (font (size 1.27 1.27)) hide)
+      )
+      (property "Datasheet" "https://optoelectronics.liteon.com/upload/download/DS-22-98-0002/LTST-C150CKT.pdf" (id 3) (at 0 0 0)
+        (effects (font (size 1.27 1.27)) hide)
+      )
+      (property "ki_keywords" "LED diode 1206" (id 4) (at 0 0 0)
+        (effects (font (size 1.27 1.27)) hide)
+      )
+      (property "ki_description" "Light emitting diode, Lite-On Inc. LTST" (id 5) (at 0 0 0)
+        (effects (font (size 1.27 1.27)) hide)
+      )
+      (property "ki_fp_filters" "LED_*" (id 6) (at 0 0 0)
+        (effects (font (size 1.27 1.27)) hide)
+      )
+      (symbol "LED_0_1"
+        (polyline
+          (pts
+            (xy -1.27 -1.27)
+            (xy -1.27 1.27)
+          )
+          (stroke (width 0.2032) (type default) (color 0 0 0 0))
+          (fill (type none))
+        )
+        (polyline
+          (pts
+            (xy -1.27 0)
+            (xy 1.27 0)
+          )
+          (stroke (width 0) (type default) (color 0 0 0 0))
+          (fill (type none))
+        )
+        (polyline
+          (pts
+            (xy 1.27 -1.27)
+            (xy 1.27 1.27)
+            (xy -1.27 0)
+            (xy 1.27 -1.27)
+          )
+          (stroke (width 0.2032) (type default) (color 0 0 0 0))
+          (fill (type none))
+        )
+        (polyline
+          (pts
+            (xy -3.048 -0.762)
+            (xy -4.572 -2.286)
+            (xy -3.81 -2.286)
+            (xy -4.572 -2.286)
+            (xy -4.572 -1.524)
+          )
+          (stroke (width 0) (type default) (color 0 0 0 0))
+          (fill (type none))
+        )
+        (polyline
+          (pts
+            (xy -1.778 -0.762)
+            (xy -3.302 -2.286)
+            (xy -2.54 -2.286)
+            (xy -3.302 -2.286)
+            (xy -3.302 -1.524)
+          )
+          (stroke (width 0) (type default) (color 0 0 0 0))
+          (fill (type none))
+        )
+      )
+      (symbol "LED_1_1"
+        (pin passive line (at -3.81 0 0) (length 2.54)
+          (name "K" (effects (font (size 1.27 1.27))))
+          (number "1" (effects (font (size 1.27 1.27))))
+        )
+        (pin passive line (at 3.81 0 180) (length 2.54)
+          (name "A" (effects (font (size 1.27 1.27))))
+          (number "2" (effects (font (size 1.27 1.27))))
+        )
+      )
+    )
+    (symbol "fab:Microcontroller_ATSAMD11C14A-SSUT" (in_bom yes) (on_board yes)
+      (property "Reference" "U" (id 0) (at -10.16 16.51 0)
+        (effects (font (size 1.27 1.27)) (justify left))
+      )
+      (property "Value" "Microcontroller_ATSAMD11C14A-SSUT" (id 1) (at 1.27 16.51 0)
+        (effects (font (size 1.27 1.27)) (justify left))
+      )
+      (property "Footprint" "fab:SOIC-14_3.9x8.7mm_P1.27mm" (id 2) (at 0 -26.67 0)
+        (effects (font (size 1.27 1.27)) hide)
+      )
+      (property "Datasheet" "https://ww1.microchip.com/downloads/en/DeviceDoc/Atmel-42363-SAM-D11_Datasheet.pdf" (id 3) (at 0 -17.78 0)
+        (effects (font (size 1.27 1.27)) hide)
+      )
+      (property "ki_keywords" "arm sam d11c 32-bit 48mhz 16kb soic-14" (id 4) (at 0 0 0)
+        (effects (font (size 1.27 1.27)) hide)
+      )
+      (property "ki_description" "IC MCU 32BIT 16KB FLASH 14SOIC" (id 5) (at 0 0 0)
+        (effects (font (size 1.27 1.27)) hide)
+      )
+      (property "ki_fp_filters" "SOIC*3.9x8.7mm*P1.27mm*" (id 6) (at 0 0 0)
+        (effects (font (size 1.27 1.27)) hide)
+      )
+      (symbol "Microcontroller_ATSAMD11C14A-SSUT_0_1"
+        (rectangle (start -10.16 15.24) (end 10.16 -15.24)
+          (stroke (width 0.254) (type default) (color 0 0 0 0))
+          (fill (type background))
+        )
+      )
+      (symbol "Microcontroller_ATSAMD11C14A-SSUT_1_1"
+        (pin bidirectional line (at 12.7 2.54 180) (length 2.54)
+          (name "PA05" (effects (font (size 1.27 1.27))))
+          (number "1" (effects (font (size 1.27 1.27))))
+        )
+        (pin bidirectional line (at 12.7 -7.62 180) (length 2.54)
+          (name "PA25" (effects (font (size 1.27 1.27))))
+          (number "10" (effects (font (size 1.27 1.27))))
+        )
+        (pin power_in line (at 0 -17.78 90) (length 2.54)
+          (name "GND" (effects (font (size 1.27 1.27))))
+          (number "11" (effects (font (size 1.27 1.27))))
+        )
+        (pin power_in line (at 0 17.78 270) (length 2.54)
+          (name "VDD" (effects (font (size 1.27 1.27))))
+          (number "12" (effects (font (size 1.27 1.27))))
+        )
+        (pin bidirectional line (at 12.7 7.62 180) (length 2.54)
+          (name "PA02" (effects (font (size 1.27 1.27))))
+          (number "13" (effects (font (size 1.27 1.27))))
+        )
+        (pin bidirectional line (at 12.7 5.08 180) (length 2.54)
+          (name "PA04" (effects (font (size 1.27 1.27))))
+          (number "14" (effects (font (size 1.27 1.27))))
+        )
+        (pin bidirectional line (at -12.7 -5.08 0) (length 2.54)
+          (name "PA08/XIN" (effects (font (size 1.27 1.27))))
+          (number "2" (effects (font (size 1.27 1.27))))
+        )
+        (pin bidirectional line (at -12.7 -7.62 0) (length 2.54)
+          (name "PA09/XOUT" (effects (font (size 1.27 1.27))))
+          (number "3" (effects (font (size 1.27 1.27))))
+        )
+        (pin bidirectional line (at 12.7 0 180) (length 2.54)
+          (name "PA14" (effects (font (size 1.27 1.27))))
+          (number "4" (effects (font (size 1.27 1.27))))
+        )
+        (pin bidirectional line (at 12.7 -2.54 180) (length 2.54)
+          (name "PA15" (effects (font (size 1.27 1.27))))
+          (number "5" (effects (font (size 1.27 1.27))))
+        )
+        (pin bidirectional line (at -12.7 7.62 0) (length 2.54)
+          (name "PA28/~{RST}" (effects (font (size 1.27 1.27))))
+          (number "6" (effects (font (size 1.27 1.27))))
+        )
+        (pin bidirectional line (at -12.7 2.54 0) (length 2.54)
+          (name "PA30/SWCLK" (effects (font (size 1.27 1.27))))
+          (number "7" (effects (font (size 1.27 1.27))))
+        )
+        (pin bidirectional line (at -12.7 0 0) (length 2.54)
+          (name "PA31/SWDIO" (effects (font (size 1.27 1.27))))
+          (number "8" (effects (font (size 1.27 1.27))))
+        )
+        (pin bidirectional line (at 12.7 -5.08 180) (length 2.54)
+          (name "PA24" (effects (font (size 1.27 1.27))))
+          (number "9" (effects (font (size 1.27 1.27))))
+        )
+      )
+    )
+    (symbol "fab:Power_+3V3" (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" "Power_+3V3" (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 \"+3V3\"" (id 5) (at 0 0 0)
+        (effects (font (size 1.27 1.27)) hide)
+      )
+      (symbol "Power_+3V3_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 "Power_+3V3_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 "fab: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" "Power_+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 "Power_+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 "Power_+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 "fab: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" "Power_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 "Power_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 "Power_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))))
+        )
+      )
+    )
+    (symbol "fab:Regulator_Linear_LM3480-3.3V-100mA" (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" "Regulator_Linear_LM3480-3.3V-100mA" (id 1) (at 0 3.175 0)
+        (effects (font (size 1.27 1.27)) (justify left))
+      )
+      (property "Footprint" "fab:SOT-23" (id 2) (at 0 5.715 0)
+        (effects (font (size 1.27 1.27) italic) hide)
+      )
+      (property "Datasheet" "https://www.ti.com/lit/ds/symlink/lm3480.pdf" (id 3) (at 0 0 0)
+        (effects (font (size 1.27 1.27)) hide)
+      )
+      (property "ki_keywords" "ldo linear fixed positive" (id 4) (at 0 0 0)
+        (effects (font (size 1.27 1.27)) hide)
+      )
+      (property "ki_description" "100mA, Quasi Low Dropout Voltage Regulator, 3.3V positive fixed output, SOT-23 package" (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 "Regulator_Linear_LM3480-3.3V-100mA_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 "Regulator_Linear_LM3480-3.3V-100mA_1_1"
+        (pin power_out line (at 7.62 0 180) (length 2.54)
+          (name "VO" (effects (font (size 1.27 1.27))))
+          (number "1" (effects (font (size 1.27 1.27))))
+        )
+        (pin power_in line (at -7.62 0 0) (length 2.54)
+          (name "VI" (effects (font (size 1.27 1.27))))
+          (number "2" (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 "3" (effects (font (size 1.27 1.27))))
+        )
+      )
+    )
+  )
+
+  (junction (at 100.33 71.12) (diameter 0) (color 0 0 0 0)
+    (uuid 5280e494-4893-4ca6-a796-20c69b269c6a)
+  )
+  (junction (at 73.66 71.12) (diameter 0) (color 0 0 0 0)
+    (uuid befb29b5-ce4b-4aab-85e9-e28e0326f350)
+  )
+  (junction (at 87.63 78.74) (diameter 0) (color 0 0 0 0)
+    (uuid e0147b3f-ea18-4d99-bfaf-f95b85a0e2f6)
+  )
+
+  (wire (pts (xy 95.25 71.12) (xy 100.33 71.12))
+    (stroke (width 0) (type default) (color 0 0 0 0))
+    (uuid 0c4d911f-f4bf-474d-b813-fab717bd4418)
+  )
+  (wire (pts (xy 62.23 71.12) (xy 73.66 71.12))
+    (stroke (width 0) (type default) (color 0 0 0 0))
+    (uuid 24399ac7-8f3d-4e06-825a-bb83e4a014b6)
+  )
+  (wire (pts (xy 87.63 78.74) (xy 100.33 78.74))
+    (stroke (width 0) (type default) (color 0 0 0 0))
+    (uuid 5dcc37f5-3658-4ad8-9997-22221290e6a5)
+  )
+  (wire (pts (xy 73.66 78.74) (xy 87.63 78.74))
+    (stroke (width 0) (type default) (color 0 0 0 0))
+    (uuid 72108bb3-4a3a-447b-b316-7150ef08fd16)
+  )
+  (wire (pts (xy 121.92 53.34) (xy 129.54 53.34))
+    (stroke (width 0) (type default) (color 0 0 0 0))
+    (uuid 75d77461-6cfe-4f3d-9213-d5fb4e02a6c9)
+  )
+  (wire (pts (xy 73.66 71.12) (xy 80.01 71.12))
+    (stroke (width 0) (type default) (color 0 0 0 0))
+    (uuid 7a164449-6085-4f9a-a434-49b1e7c564d1)
+  )
+  (wire (pts (xy 100.33 71.12) (xy 114.3 71.12))
+    (stroke (width 0) (type default) (color 0 0 0 0))
+    (uuid e669b261-cf45-489f-bae7-1627be261357)
+  )
+
+  (global_label "LED_A" (shape input) (at 177.8 83.82 0) (fields_autoplaced)
+    (effects (font (size 1.27 1.27)) (justify left))
+    (uuid 0b633b30-89d7-4549-bba1-f799e9f1e13c)
+    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 185.7164 83.7406 0)
+      (effects (font (size 1.27 1.27)) (justify left) hide)
+    )
+  )
+  (global_label "D+" (shape input) (at 177.8 96.52 0) (fields_autoplaced)
+    (effects (font (size 1.27 1.27)) (justify left))
+    (uuid 0e012e18-4b5b-4769-ae7d-b650f0bca858)
+    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 183.0555 96.5994 0)
+      (effects (font (size 1.27 1.27)) (justify left) hide)
+    )
+  )
+  (global_label "DIO" (shape input) (at 173.99 135.89 0) (fields_autoplaced)
+    (effects (font (size 1.27 1.27)) (justify left))
+    (uuid 174881a6-8498-4243-b842-ea6fe03ba2ff)
+    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 179.6083 135.8106 0)
+      (effects (font (size 1.27 1.27)) (justify left) hide)
+    )
+  )
+  (global_label "ECHO" (shape input) (at 115.57 113.03 0) (fields_autoplaced)
+    (effects (font (size 1.27 1.27)) (justify left))
+    (uuid 33be55d4-3ea9-48d1-8a09-f2e9e0678d0c)
+    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 123.0631 112.9506 0)
+      (effects (font (size 1.27 1.27)) (justify left) hide)
+    )
+  )
+  (global_label "ECHO" (shape input) (at 185.42 91.44 0) (fields_autoplaced)
+    (effects (font (size 1.27 1.27)) (justify left))
+    (uuid 4bb27e00-d1b0-4563-8787-92c093712a32)
+    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 192.9131 91.3606 0)
+      (effects (font (size 1.27 1.27)) (justify left) hide)
+    )
+  )
+  (global_label "RST" (shape input) (at 153.67 138.43 180) (fields_autoplaced)
+    (effects (font (size 1.27 1.27)) (justify right))
+    (uuid 5bb7258d-263a-4a16-9939-91ee2427587a)
+    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 147.8098 138.3506 0)
+      (effects (font (size 1.27 1.27)) (justify right) hide)
+    )
+  )
+  (global_label "RST" (shape input) (at 152.4 81.28 180) (fields_autoplaced)
+    (effects (font (size 1.27 1.27)) (justify right))
+    (uuid 680e55ab-5231-4153-a892-b2f8b22b868f)
+    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 146.5398 81.2006 0)
+      (effects (font (size 1.27 1.27)) (justify right) hide)
+    )
+  )
+  (global_label "D-" (shape input) (at 132.08 53.34 270) (fields_autoplaced)
+    (effects (font (size 1.27 1.27)) (justify right))
+    (uuid 7414d656-dd39-46ef-a521-c9f3f1f6c66c)
+    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 132.0006 58.5955 90)
+      (effects (font (size 1.27 1.27)) (justify right) hide)
+    )
+  )
+  (global_label "TRIG" (shape input) (at 115.57 115.57 0) (fields_autoplaced)
+    (effects (font (size 1.27 1.27)) (justify left))
+    (uuid 86884b69-c7b8-4118-8464-b297ee7a9704)
+    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 122.0955 115.4906 0)
+      (effects (font (size 1.27 1.27)) (justify left) hide)
+    )
+  )
+  (global_label "CLK" (shape input) (at 152.4 86.36 180) (fields_autoplaced)
+    (effects (font (size 1.27 1.27)) (justify right))
+    (uuid 8cc62a30-4fca-4a7a-be68-a179ae5a8404)
+    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 146.4188 86.2806 0)
+      (effects (font (size 1.27 1.27)) (justify right) hide)
+    )
+  )
+  (global_label "D-" (shape input) (at 177.8 93.98 0) (fields_autoplaced)
+    (effects (font (size 1.27 1.27)) (justify left))
+    (uuid 997de59d-3188-4e0f-ac3c-2979f0d9b4b8)
+    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 183.0555 94.0594 0)
+      (effects (font (size 1.27 1.27)) (justify left) hide)
+    )
+  )
+  (global_label "LED_C" (shape input) (at 204.47 104.14 270) (fields_autoplaced)
+    (effects (font (size 1.27 1.27)) (justify right))
+    (uuid 9d3e7d9e-f1a1-4647-8ac3-71e6b7055101)
+    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 204.5494 112.2379 90)
+      (effects (font (size 1.27 1.27)) (justify right) hide)
+    )
+  )
+  (global_label "LED_A" (shape input) (at 204.47 88.9 90) (fields_autoplaced)
+    (effects (font (size 1.27 1.27)) (justify left))
+    (uuid afe116e0-e392-472b-a812-f2ef7fbba3ff)
+    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 204.3906 80.9836 90)
+      (effects (font (size 1.27 1.27)) (justify left) hide)
+    )
+  )
+  (global_label "D+" (shape input) (at 134.62 53.34 270) (fields_autoplaced)
+    (effects (font (size 1.27 1.27)) (justify right))
+    (uuid b5177552-bd6c-48f3-a5b4-c0e4259dda0f)
+    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 134.5406 58.5955 90)
+      (effects (font (size 1.27 1.27)) (justify right) hide)
+    )
+  )
+  (global_label "TRIG" (shape input) (at 177.8 88.9 0) (fields_autoplaced)
+    (effects (font (size 1.27 1.27)) (justify left))
+    (uuid c26fcf70-0f05-433b-b373-5d196bd2281b)
+    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 184.3255 88.8206 0)
+      (effects (font (size 1.27 1.27)) (justify left) hide)
+    )
+  )
+  (global_label "DIO" (shape input) (at 152.4 88.9 180) (fields_autoplaced)
+    (effects (font (size 1.27 1.27)) (justify right))
+    (uuid d9012c5c-b757-4126-b082-fd80f22590bf)
+    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 146.7817 88.9794 0)
+      (effects (font (size 1.27 1.27)) (justify right) hide)
+    )
+  )
+  (global_label "LED_C" (shape input) (at 177.8 81.28 0) (fields_autoplaced)
+    (effects (font (size 1.27 1.27)) (justify left))
+    (uuid debff818-324e-41e4-8c61-d2af8aeb55bd)
+    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 185.8979 81.2006 0)
+      (effects (font (size 1.27 1.27)) (justify left) hide)
+    )
+  )
+  (global_label "CLK" (shape input) (at 153.67 135.89 180) (fields_autoplaced)
+    (effects (font (size 1.27 1.27)) (justify right))
+    (uuid f6240212-63d9-47cb-9d18-9babecba3ddf)
+    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 147.6888 135.8106 0)
+      (effects (font (size 1.27 1.27)) (justify right) hide)
+    )
+  )
+
+  (symbol (lib_id "fab:Power_GND") (at 173.99 138.43 0) (unit 1)
+    (in_bom yes) (on_board yes) (fields_autoplaced)
+    (uuid 038ae685-fadd-4b4a-a2fc-491a1177ca9d)
+    (property "Reference" "#PWR0112" (id 0) (at 173.99 144.78 0)
+      (effects (font (size 1.27 1.27)) hide)
+    )
+    (property "Value" "Power_GND" (id 1) (at 173.99 143.51 0))
+    (property "Footprint" "" (id 2) (at 173.99 138.43 0)
+      (effects (font (size 1.27 1.27)) hide)
+    )
+    (property "Datasheet" "" (id 3) (at 173.99 138.43 0)
+      (effects (font (size 1.27 1.27)) hide)
+    )
+    (pin "1" (uuid df1b3382-6c62-409b-a4fe-573228ac19ed))
+  )
+
+  (symbol (lib_id "fab:Microcontroller_ATSAMD11C14A-SSUT") (at 165.1 88.9 0) (unit 1)
+    (in_bom yes) (on_board yes) (fields_autoplaced)
+    (uuid 1c5f2b06-dd65-40ca-a36f-d7882ab411c5)
+    (property "Reference" "U2" (id 0) (at 167.1194 68.58 0)
+      (effects (font (size 1.27 1.27)) (justify left))
+    )
+    (property "Value" "Microcontroller_ATSAMD11C14A-SSUT" (id 1) (at 167.1194 71.12 0)
+      (effects (font (size 1.27 1.27)) (justify left))
+    )
+    (property "Footprint" "fab:SOIC-14_3.9x8.7mm_P1.27mm" (id 2) (at 165.1 115.57 0)
+      (effects (font (size 1.27 1.27)) hide)
+    )
+    (property "Datasheet" "https://ww1.microchip.com/downloads/en/DeviceDoc/Atmel-42363-SAM-D11_Datasheet.pdf" (id 3) (at 165.1 106.68 0)
+      (effects (font (size 1.27 1.27)) hide)
+    )
+    (pin "1" (uuid cadbff7f-57d8-485a-9ab3-b7a950994c7c))
+    (pin "10" (uuid 8000361b-81fd-47e5-a524-21109b036f6c))
+    (pin "11" (uuid 856388fb-18d9-48b8-a8f0-8c934a9b3630))
+    (pin "12" (uuid 53609c90-137a-4321-8460-00c118c2a9d1))
+    (pin "13" (uuid f7ab5afe-1f32-448e-94cd-57886eb9601f))
+    (pin "14" (uuid ce5bc57b-f12b-4678-ad8c-7b3dffaf60bb))
+    (pin "2" (uuid 25d8ed38-2451-4d4e-855a-33b89acfd0e8))
+    (pin "3" (uuid 368e0798-54c0-4134-bbf4-9e85f89f6e4d))
+    (pin "4" (uuid 52cd69ba-32ad-451b-9643-72396c445980))
+    (pin "5" (uuid ba99ad96-ad7a-4904-b2f3-b5665f325179))
+    (pin "6" (uuid 03d5d36d-7d04-4655-9ddd-9b2863c89c7c))
+    (pin "7" (uuid 02a23b8e-c710-4b39-9d83-63922652e346))
+    (pin "8" (uuid 098ab8c1-1380-40a5-b8a8-396b8356b7d7))
+    (pin "9" (uuid a8de82ca-1c04-48ac-9839-de2f36bbf95d))
+  )
+
+  (symbol (lib_id "fab:Power_+5V") (at 62.23 71.12 0) (unit 1)
+    (in_bom yes) (on_board yes) (fields_autoplaced)
+    (uuid 2f85ce3f-0ce3-48bb-9922-39b751469afe)
+    (property "Reference" "#PWR0101" (id 0) (at 62.23 74.93 0)
+      (effects (font (size 1.27 1.27)) hide)
+    )
+    (property "Value" "Power_+5V" (id 1) (at 62.23 66.04 0))
+    (property "Footprint" "" (id 2) (at 62.23 71.12 0)
+      (effects (font (size 1.27 1.27)) hide)
+    )
+    (property "Datasheet" "" (id 3) (at 62.23 71.12 0)
+      (effects (font (size 1.27 1.27)) hide)
+    )
+    (pin "1" (uuid 663cdde4-0ecc-4abf-ada3-2705e7dbaad2))
+  )
+
+  (symbol (lib_id "fab:Power_+3V3") (at 165.1 71.12 0) (unit 1)
+    (in_bom yes) (on_board yes) (fields_autoplaced)
+    (uuid 3361482c-ca19-4873-b4a9-88f85f1328a1)
+    (property "Reference" "#PWR0108" (id 0) (at 165.1 74.93 0)
+      (effects (font (size 1.27 1.27)) hide)
+    )
+    (property "Value" "Power_+3V3" (id 1) (at 165.1 66.04 0))
+    (property "Footprint" "" (id 2) (at 165.1 71.12 0)
+      (effects (font (size 1.27 1.27)) hide)
+    )
+    (property "Datasheet" "" (id 3) (at 165.1 71.12 0)
+      (effects (font (size 1.27 1.27)) hide)
+    )
+    (pin "1" (uuid fed99eb5-430a-467c-b673-21790df80de5))
+  )
+
+  (symbol (lib_id "fab:Power_GND") (at 165.1 106.68 0) (unit 1)
+    (in_bom yes) (on_board yes) (fields_autoplaced)
+    (uuid 428fd061-ea0a-462c-a8fb-5150bbd1d04f)
+    (property "Reference" "#PWR0110" (id 0) (at 165.1 113.03 0)
+      (effects (font (size 1.27 1.27)) hide)
+    )
+    (property "Value" "Power_GND" (id 1) (at 165.1 111.76 0))
+    (property "Footprint" "" (id 2) (at 165.1 106.68 0)
+      (effects (font (size 1.27 1.27)) hide)
+    )
+    (property "Datasheet" "" (id 3) (at 165.1 106.68 0)
+      (effects (font (size 1.27 1.27)) hide)
+    )
+    (pin "1" (uuid eea26951-4c03-48fe-b4f4-251e10ae0419))
+  )
+
+  (symbol (lib_id "fab:Power_GND") (at 115.57 110.49 90) (unit 1)
+    (in_bom yes) (on_board yes) (fields_autoplaced)
+    (uuid 47bd6518-4ca0-4d65-8427-d230d0ee8856)
+    (property "Reference" "#PWR0105" (id 0) (at 121.92 110.49 0)
+      (effects (font (size 1.27 1.27)) hide)
+    )
+    (property "Value" "Power_GND" (id 1) (at 119.38 110.4899 90)
+      (effects (font (size 1.27 1.27)) (justify right))
+    )
+    (property "Footprint" "" (id 2) (at 115.57 110.49 0)
+      (effects (font (size 1.27 1.27)) hide)
+    )
+    (property "Datasheet" "" (id 3) (at 115.57 110.49 0)
+      (effects (font (size 1.27 1.27)) hide)
+    )
+    (pin "1" (uuid d11b59c3-439c-4dac-a2f1-003765c335bd))
+  )
+
+  (symbol (lib_id "fab:Conn_PinHeader_2x02_SWD_P2.54mm_Vertical_SMD") (at 163.83 137.16 180) (unit 1)
+    (in_bom yes) (on_board yes) (fields_autoplaced)
+    (uuid 4a55f4f3-4596-4061-91d2-6036b72881f5)
+    (property "Reference" "J3" (id 0) (at 163.83 128.27 0))
+    (property "Value" "Conn_PinHeader_2x02_SWD_P2.54mm_Vertical_SMD" (id 1) (at 163.83 130.81 0))
+    (property "Footprint" "fab:PinHeader_2x02_SWD_P2.54mm_Vertical_SMD" (id 2) (at 163.83 137.16 0)
+      (effects (font (size 1.27 1.27)) hide)
+    )
+    (property "Datasheet" "https://cdn.amphenol-icc.com/media/wysiwyg/files/drawing/95278.pdf" (id 3) (at 163.83 137.16 0)
+      (effects (font (size 1.27 1.27)) hide)
+    )
+    (pin "1" (uuid f0a34e5c-2e7e-4653-86b2-ac950cdd3724))
+    (pin "2" (uuid bededdee-3f1a-44ef-96c4-59657d743930))
+    (pin "3" (uuid 9644b0a2-cae3-4e14-9b1b-c7bea01e2d59))
+    (pin "4" (uuid 50240248-5a56-4d94-827c-5e2e88291360))
+  )
+
+  (symbol (lib_id "fab:Power_+5V") (at 121.92 53.34 0) (unit 1)
+    (in_bom yes) (on_board yes) (fields_autoplaced)
+    (uuid 66f033d4-7f4d-4d8b-8047-3c7c415b0219)
+    (property "Reference" "#PWR0104" (id 0) (at 121.92 57.15 0)
+      (effects (font (size 1.27 1.27)) hide)
+    )
+    (property "Value" "Power_+5V" (id 1) (at 121.92 48.26 0))
+    (property "Footprint" "" (id 2) (at 121.92 53.34 0)
+      (effects (font (size 1.27 1.27)) hide)
+    )
+    (property "Datasheet" "" (id 3) (at 121.92 53.34 0)
+      (effects (font (size 1.27 1.27)) hide)
+    )
+    (pin "1" (uuid 4f44dbb5-7291-4f3d-bac0-3894599fbeae))
+  )
+
+  (symbol (lib_id "Device:R") (at 181.61 91.44 90) (unit 1)
+    (in_bom yes) (on_board yes)
+    (uuid 6a2baeab-a3db-4ed7-8836-4e0dadc2960b)
+    (property "Reference" "R2" (id 0) (at 185.42 88.9 90))
+    (property "Value" "5k" (id 1) (at 181.61 88.9 90))
+    (property "Footprint" "fab:R_1206" (id 2) (at 181.61 93.218 90)
+      (effects (font (size 1.27 1.27)) hide)
+    )
+    (property "Datasheet" "~" (id 3) (at 181.61 91.44 0)
+      (effects (font (size 1.27 1.27)) hide)
+    )
+    (pin "1" (uuid 89c162de-8374-4cb6-9c74-abac2a052a8d))
+    (pin "2" (uuid a1e5cdfc-a2f9-48fa-ba11-14726a4067c0))
+  )
+
+  (symbol (lib_id "fab:Regulator_Linear_LM3480-3.3V-100mA") (at 87.63 71.12 0) (unit 1)
+    (in_bom yes) (on_board yes) (fields_autoplaced)
+    (uuid 78dd0937-ee9d-48f7-810d-2995faf42b06)
+    (property "Reference" "U1" (id 0) (at 87.63 63.5 0))
+    (property "Value" "Regulator_Linear_LM3480-3.3V-100mA" (id 1) (at 87.63 66.04 0))
+    (property "Footprint" "fab:SOT-23W" (id 2) (at 87.63 65.405 0)
+      (effects (font (size 1.27 1.27) italic) hide)
+    )
+    (property "Datasheet" "https://www.ti.com/lit/ds/symlink/lm3480.pdf" (id 3) (at 87.63 71.12 0)
+      (effects (font (size 1.27 1.27)) hide)
+    )
+    (pin "1" (uuid 9c6f6ff8-1f53-4f5c-8a2a-517888dc43a2))
+    (pin "2" (uuid 16c9feaf-2caf-4dac-9da3-1a18a412111e))
+    (pin "3" (uuid af9dc2d2-6192-41e3-9749-a7b7261dc96b))
+  )
+
+  (symbol (lib_id "Device:R") (at 204.47 92.71 0) (unit 1)
+    (in_bom yes) (on_board yes) (fields_autoplaced)
+    (uuid 793db082-42ed-4019-b9c9-5a54a4f821e0)
+    (property "Reference" "R1" (id 0) (at 207.01 91.4399 0)
+      (effects (font (size 1.27 1.27)) (justify left))
+    )
+    (property "Value" "1k" (id 1) (at 207.01 93.9799 0)
+      (effects (font (size 1.27 1.27)) (justify left))
+    )
+    (property "Footprint" "fab:R_1206" (id 2) (at 202.692 92.71 90)
+      (effects (font (size 1.27 1.27)) hide)
+    )
+    (property "Datasheet" "~" (id 3) (at 204.47 92.71 0)
+      (effects (font (size 1.27 1.27)) hide)
+    )
+    (pin "1" (uuid 44055cf7-6109-4262-a448-68840e768524))
+    (pin "2" (uuid fc758edc-b25a-45b0-be93-41b063978035))
+  )
+
+  (symbol (lib_id "fab:Power_+3V3") (at 114.3 71.12 0) (unit 1)
+    (in_bom yes) (on_board yes) (fields_autoplaced)
+    (uuid 8531299f-0363-423c-9a26-d8d114f39dac)
+    (property "Reference" "#PWR0111" (id 0) (at 114.3 74.93 0)
+      (effects (font (size 1.27 1.27)) hide)
+    )
+    (property "Value" "Power_+3V3" (id 1) (at 114.3 66.04 0))
+    (property "Footprint" "" (id 2) (at 114.3 71.12 0)
+      (effects (font (size 1.27 1.27)) hide)
+    )
+    (property "Datasheet" "" (id 3) (at 114.3 71.12 0)
+      (effects (font (size 1.27 1.27)) hide)
+    )
+    (pin "1" (uuid 226edbec-3749-4d3b-97ae-65e901554cdf))
+  )
+
+  (symbol (lib_id "fab:Power_+5V") (at 115.57 118.11 270) (unit 1)
+    (in_bom yes) (on_board yes) (fields_autoplaced)
+    (uuid 89dd6cef-9682-496d-9d3c-46b557a5d343)
+    (property "Reference" "#PWR0106" (id 0) (at 111.76 118.11 0)
+      (effects (font (size 1.27 1.27)) hide)
+    )
+    (property "Value" "Power_+5V" (id 1) (at 119.38 118.1099 90)
+      (effects (font (size 1.27 1.27)) (justify left))
+    )
+    (property "Footprint" "" (id 2) (at 115.57 118.11 0)
+      (effects (font (size 1.27 1.27)) hide)
+    )
+    (property "Datasheet" "" (id 3) (at 115.57 118.11 0)
+      (effects (font (size 1.27 1.27)) hide)
+    )
+    (pin "1" (uuid cbde0f0e-fabd-4b7d-af92-96bc2cda21c2))
+  )
+
+  (symbol (lib_id "fab:C") (at 73.66 74.93 0) (unit 1)
+    (in_bom yes) (on_board yes) (fields_autoplaced)
+    (uuid a20728c8-07ac-40ed-b60c-72d07a38f400)
+    (property "Reference" "C1" (id 0) (at 77.47 73.6599 0)
+      (effects (font (size 1.27 1.27)) (justify left))
+    )
+    (property "Value" "1uF" (id 1) (at 77.47 76.1999 0)
+      (effects (font (size 1.27 1.27)) (justify left))
+    )
+    (property "Footprint" "fab:C_1206" (id 2) (at 74.6252 78.74 0)
+      (effects (font (size 1.27 1.27)) hide)
+    )
+    (property "Datasheet" "" (id 3) (at 73.66 74.93 0)
+      (effects (font (size 1.27 1.27)) hide)
+    )
+    (pin "1" (uuid 3bd319dd-8733-4580-ac48-6d79711e4c32))
+    (pin "2" (uuid cbe7814d-9f21-4c8c-a1c5-a5ccddb70d48))
+  )
+
+  (symbol (lib_id "Connector:Conn_01x04_Male") (at 110.49 113.03 0) (unit 1)
+    (in_bom yes) (on_board yes) (fields_autoplaced)
+    (uuid a97a52d6-fe14-4f06-b35e-2dc42532437e)
+    (property "Reference" "J1" (id 0) (at 111.125 105.41 0))
+    (property "Value" "Conn_01x04_Male" (id 1) (at 111.125 107.95 0))
+    (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_1x04_P2.54mm_Vertical" (id 2) (at 110.49 113.03 0)
+      (effects (font (size 1.27 1.27)) hide)
+    )
+    (property "Datasheet" "~" (id 3) (at 110.49 113.03 0)
+      (effects (font (size 1.27 1.27)) hide)
+    )
+    (pin "1" (uuid d5926ae5-e972-4dcc-8335-d8bd16db6dbc))
+    (pin "2" (uuid 142e2caa-2b2c-4696-83a8-bdbb5b82c7f7))
+    (pin "3" (uuid 3036986f-780f-4e5b-8e4b-4e66acc1e072))
+    (pin "4" (uuid eab7c737-4450-406f-9f80-b2e18bb45dd6))
+  )
+
+  (symbol (lib_id "fab:LED") (at 204.47 100.33 90) (unit 1)
+    (in_bom yes) (on_board yes) (fields_autoplaced)
+    (uuid c4a71020-03ce-4f30-a55a-13a246010c50)
+    (property "Reference" "D1" (id 0) (at 208.28 100.6601 90)
+      (effects (font (size 1.27 1.27)) (justify right))
+    )
+    (property "Value" "LED" (id 1) (at 208.28 103.2001 90)
+      (effects (font (size 1.27 1.27)) (justify right))
+    )
+    (property "Footprint" "fab:LED_1206" (id 2) (at 204.47 100.33 0)
+      (effects (font (size 1.27 1.27)) hide)
+    )
+    (property "Datasheet" "https://optoelectronics.liteon.com/upload/download/DS-22-98-0002/LTST-C150CKT.pdf" (id 3) (at 204.47 100.33 0)
+      (effects (font (size 1.27 1.27)) hide)
+    )
+    (pin "1" (uuid 9f59631e-0a60-498f-9a2e-609ac427fbf7))
+    (pin "2" (uuid 456172db-03b4-4378-936c-bc9704159fc8))
+  )
+
+  (symbol (lib_id "fab:Conn_USB_A_Plain") (at 133.35 44.45 90) (unit 1)
+    (in_bom yes) (on_board yes) (fields_autoplaced)
+    (uuid edc78bf5-dcc5-4cd6-aa4e-c01e87f3a3ff)
+    (property "Reference" "P1" (id 0) (at 140.97 43.1799 90)
+      (effects (font (size 1.27 1.27)) (justify right))
+    )
+    (property "Value" "Conn_USB_A_Plain" (id 1) (at 140.97 45.7199 90)
+      (effects (font (size 1.27 1.27)) (justify right))
+    )
+    (property "Footprint" "fab:Conn_USB_A_Plain" (id 2) (at 133.35 44.45 0)
+      (effects (font (size 1.27 1.27)) hide)
+    )
+    (property "Datasheet" "" (id 3) (at 133.35 44.45 0)
+      (effects (font (size 1.27 1.27)) hide)
+    )
+    (pin "1" (uuid ca7a9c8a-6fca-454e-9d7c-7e51dae1cc4e))
+    (pin "2" (uuid cf8105f4-172a-4a36-a63d-9a225226c745))
+    (pin "3" (uuid 0a3024fe-1ac2-4a54-b6fe-0b7bdfe34a98))
+    (pin "4" (uuid ce4cbf58-6866-4f48-8ec7-2664e234b707))
+  )
+
+  (symbol (lib_id "fab:Power_GND") (at 87.63 78.74 0) (unit 1)
+    (in_bom yes) (on_board yes) (fields_autoplaced)
+    (uuid f0669dce-fc98-43cf-b391-c137ee9617c4)
+    (property "Reference" "#PWR0102" (id 0) (at 87.63 85.09 0)
+      (effects (font (size 1.27 1.27)) hide)
+    )
+    (property "Value" "Power_GND" (id 1) (at 87.63 83.82 0))
+    (property "Footprint" "" (id 2) (at 87.63 78.74 0)
+      (effects (font (size 1.27 1.27)) hide)
+    )
+    (property "Datasheet" "" (id 3) (at 87.63 78.74 0)
+      (effects (font (size 1.27 1.27)) hide)
+    )
+    (pin "1" (uuid d9486a70-192e-4aa2-b82a-43ac88477cdd))
+  )
+
+  (symbol (lib_id "fab:Power_GND") (at 137.16 53.34 0) (unit 1)
+    (in_bom yes) (on_board yes) (fields_autoplaced)
+    (uuid f9ee5e00-0811-48b2-9263-35eab98f8083)
+    (property "Reference" "#PWR0103" (id 0) (at 137.16 59.69 0)
+      (effects (font (size 1.27 1.27)) hide)
+    )
+    (property "Value" "Power_GND" (id 1) (at 137.16 58.42 0))
+    (property "Footprint" "" (id 2) (at 137.16 53.34 0)
+      (effects (font (size 1.27 1.27)) hide)
+    )
+    (property "Datasheet" "" (id 3) (at 137.16 53.34 0)
+      (effects (font (size 1.27 1.27)) hide)
+    )
+    (pin "1" (uuid 42a07442-6433-4026-95fc-95db33dd8be3))
+  )
+
+  (symbol (lib_id "fab:C") (at 100.33 74.93 0) (unit 1)
+    (in_bom yes) (on_board yes) (fields_autoplaced)
+    (uuid fde96c4e-b12c-43f8-9426-6e025c0e4ecc)
+    (property "Reference" "C2" (id 0) (at 104.14 73.6599 0)
+      (effects (font (size 1.27 1.27)) (justify left))
+    )
+    (property "Value" "1uF" (id 1) (at 104.14 76.1999 0)
+      (effects (font (size 1.27 1.27)) (justify left))
+    )
+    (property "Footprint" "fab:C_1206" (id 2) (at 101.2952 78.74 0)
+      (effects (font (size 1.27 1.27)) hide)
+    )
+    (property "Datasheet" "" (id 3) (at 100.33 74.93 0)
+      (effects (font (size 1.27 1.27)) hide)
+    )
+    (pin "1" (uuid 8c0dcd4c-7885-4a3c-b1a0-59692671ecde))
+    (pin "2" (uuid 21fffcc9-3602-43a0-bbe1-d2fc238600b5))
+  )
+
+  (sheet_instances
+    (path "/" (page "1"))
+  )
+
+  (symbol_instances
+    (path "/2f85ce3f-0ce3-48bb-9922-39b751469afe"
+      (reference "#PWR0101") (unit 1) (value "Power_+5V") (footprint "")
+    )
+    (path "/f0669dce-fc98-43cf-b391-c137ee9617c4"
+      (reference "#PWR0102") (unit 1) (value "Power_GND") (footprint "")
+    )
+    (path "/f9ee5e00-0811-48b2-9263-35eab98f8083"
+      (reference "#PWR0103") (unit 1) (value "Power_GND") (footprint "")
+    )
+    (path "/66f033d4-7f4d-4d8b-8047-3c7c415b0219"
+      (reference "#PWR0104") (unit 1) (value "Power_+5V") (footprint "")
+    )
+    (path "/47bd6518-4ca0-4d65-8427-d230d0ee8856"
+      (reference "#PWR0105") (unit 1) (value "Power_GND") (footprint "")
+    )
+    (path "/89dd6cef-9682-496d-9d3c-46b557a5d343"
+      (reference "#PWR0106") (unit 1) (value "Power_+5V") (footprint "")
+    )
+    (path "/3361482c-ca19-4873-b4a9-88f85f1328a1"
+      (reference "#PWR0108") (unit 1) (value "Power_+3V3") (footprint "")
+    )
+    (path "/428fd061-ea0a-462c-a8fb-5150bbd1d04f"
+      (reference "#PWR0110") (unit 1) (value "Power_GND") (footprint "")
+    )
+    (path "/8531299f-0363-423c-9a26-d8d114f39dac"
+      (reference "#PWR0111") (unit 1) (value "Power_+3V3") (footprint "")
+    )
+    (path "/038ae685-fadd-4b4a-a2fc-491a1177ca9d"
+      (reference "#PWR0112") (unit 1) (value "Power_GND") (footprint "")
+    )
+    (path "/a20728c8-07ac-40ed-b60c-72d07a38f400"
+      (reference "C1") (unit 1) (value "1uF") (footprint "fab:C_1206")
+    )
+    (path "/fde96c4e-b12c-43f8-9426-6e025c0e4ecc"
+      (reference "C2") (unit 1) (value "1uF") (footprint "fab:C_1206")
+    )
+    (path "/c4a71020-03ce-4f30-a55a-13a246010c50"
+      (reference "D1") (unit 1) (value "LED") (footprint "fab:LED_1206")
+    )
+    (path "/a97a52d6-fe14-4f06-b35e-2dc42532437e"
+      (reference "J1") (unit 1) (value "Conn_01x04_Male") (footprint "Connector_PinHeader_2.54mm:PinHeader_1x04_P2.54mm_Vertical")
+    )
+    (path "/4a55f4f3-4596-4061-91d2-6036b72881f5"
+      (reference "J3") (unit 1) (value "Conn_PinHeader_2x02_SWD_P2.54mm_Vertical_SMD") (footprint "fab:PinHeader_2x02_SWD_P2.54mm_Vertical_SMD")
+    )
+    (path "/edc78bf5-dcc5-4cd6-aa4e-c01e87f3a3ff"
+      (reference "P1") (unit 1) (value "Conn_USB_A_Plain") (footprint "fab:Conn_USB_A_Plain")
+    )
+    (path "/793db082-42ed-4019-b9c9-5a54a4f821e0"
+      (reference "R1") (unit 1) (value "1k") (footprint "fab:R_1206")
+    )
+    (path "/6a2baeab-a3db-4ed7-8836-4e0dadc2960b"
+      (reference "R2") (unit 1) (value "5k") (footprint "fab:R_1206")
+    )
+    (path "/78dd0937-ee9d-48f7-810d-2995faf42b06"
+      (reference "U1") (unit 1) (value "Regulator_Linear_LM3480-3.3V-100mA") (footprint "fab:SOT-23W")
+    )
+    (path "/1c5f2b06-dd65-40ca-a36f-d7882ab411c5"
+      (reference "U2") (unit 1) (value "Microcontroller_ATSAMD11C14A-SSUT") (footprint "fab:SOIC-14_3.9x8.7mm_P1.27mm")
+    )
+  )
+)
diff --git a/extra/img/D11C.servo.components.jpg b/extra/img/D11C.servo.components.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..42a4d3c5b2934d1658e1426bd03f59309cbec19d
Binary files /dev/null and b/extra/img/D11C.servo.components.jpg differ
diff --git a/extra/img/D11C.stepper.components.jpg b/extra/img/D11C.stepper.components.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..20cf65f62e80e7f41ff73fb4df518b5c5f4cf7e2
Binary files /dev/null and b/extra/img/D11C.stepper.components.jpg differ
diff --git a/mosfet/README.md b/mosfet/README.md
index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..305705cad84ac1f5ae5882bd09618929da6ec126 100644
--- a/mosfet/README.md
+++ b/mosfet/README.md
@@ -0,0 +1,5 @@
+# Urumbu MOSFET output
+
+![](./img/D11C.mosfet.components.jpg)
+
+This board lets you control an external device through a MOSFET. An external power supply feeds the current to the load.
diff --git a/mosfet/img/D11C.mosfet.components.jpg b/mosfet/img/D11C.mosfet.components.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..10cdc815c8832a1ab492108d9d02235bf547f7a2
Binary files /dev/null and b/mosfet/img/D11C.mosfet.components.jpg differ
diff --git a/potentiometer/README.md b/potentiometer/README.md
index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..e9d40beab0f7308e0d87d47ab63cba7062472e9a 100644
--- a/potentiometer/README.md
+++ b/potentiometer/README.md
@@ -0,0 +1,27 @@
+# Urumbu potentiometer input
+
+![](./img/D11C.potentiometer.components.top.jpg)
+
+![](./img/D11C.potentiometer.components.bottom.jpg)
+
+This board returns a 10-bit value depending on the potentiometer.
+
+## Code
+
+Code can be found [here](./code/d11_pot/d11_pot.ino).
+
+## KiCad files
+
+- [project](./samd11c14_pot.kicad_pro)
+- [schematic](./samd11c14_pot.kicad_sch)
+- [board](./samd11c14_pot.kicad_pcb)
+
+## .png files
+
+![](./img/samd11c14_pot-composite.png)
+
+![](./img/samd11c14_pot-F_Cu.png)
+
+![](./img/samd11c14_pot-Edge_Cuts.png)
+
+![](./img/samd11c14_pot-interior_traces_comp.png)
diff --git a/potentiometer/code/d11_pot/d11_pot.ino b/potentiometer/code/d11_pot/d11_pot.ino
new file mode 100644
index 0000000000000000000000000000000000000000..fffa0cd6181502e5a62aafc9f5d252b555f77912
--- /dev/null
+++ b/potentiometer/code/d11_pot/d11_pot.ino
@@ -0,0 +1,31 @@
+#define PIN_LED_A 4
+#define PIN_LED_C 2
+#define PIN_SENSOR 14
+
+
+void setup() {
+  // put your setup code here, to run once:
+  pinMode(PIN_LED_A, OUTPUT);
+  digitalWrite(PIN_LED_A, HIGH);
+  pinMode(PIN_LED_C, OUTPUT);
+  digitalWrite(PIN_LED_C, LOW);
+  pinMode(PIN_SENSOR, INPUT);
+  SerialUSB.begin(115200);
+}
+
+void print_16bit(int v) {
+  const char bfr[] = {v & 0xFF, (v >> 8) & 0xFF};
+  SerialUSB.write(bfr, 2);
+}
+
+void loop() {
+  if (SerialUSB.available()) {
+    char c = SerialUSB.read();
+    if (c == '?') {
+      int value_10bit = analogRead(PIN_SENSOR);
+      print_16bit(value_10bit);
+    } else if (c == '@') {
+      SerialUSB.write("0004");
+    }
+  }
+}
diff --git a/potentiometer/img/D11C.potentiometer.components.bottom.jpg b/potentiometer/img/D11C.potentiometer.components.bottom.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..5601944d2acf022dd992b32faeb2005926912a0f
Binary files /dev/null and b/potentiometer/img/D11C.potentiometer.components.bottom.jpg differ
diff --git a/potentiometer/img/D11C.potentiometer.components.top.jpg b/potentiometer/img/D11C.potentiometer.components.top.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..90e7c5145f8e02fd57e4adf78adba45853feca87
Binary files /dev/null and b/potentiometer/img/D11C.potentiometer.components.top.jpg differ
diff --git a/potentiometer/img/samd11c14_pot-Edge_Cuts.png b/potentiometer/img/samd11c14_pot-Edge_Cuts.png
new file mode 100644
index 0000000000000000000000000000000000000000..44023183667890a256d722fb160aa6f7a207589a
Binary files /dev/null and b/potentiometer/img/samd11c14_pot-Edge_Cuts.png differ
diff --git a/potentiometer/img/samd11c14_pot-F_Cu.png b/potentiometer/img/samd11c14_pot-F_Cu.png
new file mode 100644
index 0000000000000000000000000000000000000000..4f13fac939c55114e6a43ce1f91db5325de3754e
Binary files /dev/null and b/potentiometer/img/samd11c14_pot-F_Cu.png differ
diff --git a/potentiometer/img/samd11c14_pot-F_Mask.png b/potentiometer/img/samd11c14_pot-F_Mask.png
new file mode 100644
index 0000000000000000000000000000000000000000..c8a3211d2b829e07092e5d0cfb4a890be1f36cd7
Binary files /dev/null and b/potentiometer/img/samd11c14_pot-F_Mask.png differ
diff --git a/potentiometer/img/samd11c14_pot-F_Silkscreen.png b/potentiometer/img/samd11c14_pot-F_Silkscreen.png
new file mode 100644
index 0000000000000000000000000000000000000000..c36dde51874e241af3b98a34152371c4a0baa114
Binary files /dev/null and b/potentiometer/img/samd11c14_pot-F_Silkscreen.png differ
diff --git a/potentiometer/img/samd11c14_pot-composite.png b/potentiometer/img/samd11c14_pot-composite.png
new file mode 100644
index 0000000000000000000000000000000000000000..0e4de79ea531d0834e2d10a1bc5a6b24ffacb40b
Binary files /dev/null and b/potentiometer/img/samd11c14_pot-composite.png differ
diff --git a/potentiometer/img/samd11c14_pot-drill.png b/potentiometer/img/samd11c14_pot-drill.png
new file mode 100644
index 0000000000000000000000000000000000000000..2361d1a4051f8723d19a42467b60e25b32961140
Binary files /dev/null and b/potentiometer/img/samd11c14_pot-drill.png differ
diff --git a/potentiometer/img/samd11c14_pot-interior_drill_comp.png b/potentiometer/img/samd11c14_pot-interior_drill_comp.png
new file mode 100644
index 0000000000000000000000000000000000000000..6dcbede9a64b5c099a3ac50d2caea201657b8914
Binary files /dev/null and b/potentiometer/img/samd11c14_pot-interior_drill_comp.png differ
diff --git a/potentiometer/img/samd11c14_pot-interior_traces_comp.png b/potentiometer/img/samd11c14_pot-interior_traces_comp.png
new file mode 100644
index 0000000000000000000000000000000000000000..1bc56b5f0a02bbc0b3c5c6fe2c2fc029811c5ae4
Binary files /dev/null and b/potentiometer/img/samd11c14_pot-interior_traces_comp.png differ
diff --git a/potentiometer/samd11c14_pot.kicad_pcb b/potentiometer/samd11c14_pot.kicad_pcb
new file mode 100644
index 0000000000000000000000000000000000000000..dfa9f150b643741a3d5f42c8f47ad87d963ec18d
--- /dev/null
+++ b/potentiometer/samd11c14_pot.kicad_pcb
@@ -0,0 +1,669 @@
+(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 0x00010a8_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 5)
+      (mirror false)
+      (drillshape 2)
+      (scaleselection 1)
+      (outputdirectory "svg")
+    )
+  )
+
+  (net 0 "")
+  (net 1 "GND")
+  (net 2 "+3V3")
+  (net 3 "+5V")
+  (net 4 "D-")
+  (net 5 "D+")
+  (net 6 "POT")
+  (net 7 "LED_C")
+  (net 8 "RST")
+  (net 9 "DIO")
+  (net 10 "CLK")
+  (net 11 "unconnected-(U2-Pad2)")
+  (net 12 "unconnected-(U2-Pad3)")
+  (net 13 "Net-(D1-Pad2)")
+  (net 14 "LED_A")
+  (net 15 "unconnected-(U2-Pad1)")
+  (net 16 "unconnected-(U2-Pad5)")
+
+  (footprint "fab:SOIC-14_3.9x8.7mm_P1.27mm" (layer "F.Cu")
+    (tedit 60030324) (tstamp 4d8a27f3-5994-4c02-859b-09c0a8d34a6d)
+    (at 66.8274 37.7485)
+    (descr "SOIC, 14 Pin, fab version")
+    (tags "SOIC fab")
+    (property "Sheetfile" "samd11c14_pot.kicad_sch")
+    (property "Sheetname" "")
+    (path "/1c5f2b06-dd65-40ca-a36f-d7882ab411c5")
+    (attr smd)
+    (fp_text reference "U2" (at 0 -5.28) (layer "F.SilkS")
+      (effects (font (size 1 1) (thickness 0.15)))
+      (tstamp 279cd597-6735-4af4-af86-33cfd2693447)
+    )
+    (fp_text value "Microcontroller_ATSAMD11C14A-SSUT" (at 0 0) (layer "F.SilkS") hide
+      (effects (font (size 1.27 1.27) (thickness 0.15)))
+      (tstamp 7c2c7978-0926-492c-8e3d-93ac33c3f226)
+    )
+    (fp_text user "${REFERENCE}" (at 0 0) (layer "F.CrtYd")
+      (effects (font (size 1 1) (thickness 0.15)))
+      (tstamp 20a43104-38cb-4a67-8590-5917234169dc)
+    )
+    (fp_line (start 0 4.435) (end 1.95 4.435) (layer "F.SilkS") (width 0.12) (tstamp 70b4eaa4-61ff-4379-b06d-623ca05164b1))
+    (fp_line (start 0 -4.435) (end 1.95 -4.435) (layer "F.SilkS") (width 0.12) (tstamp aaf14fa5-bc5e-4b91-b0fb-212df5ce1861))
+    (fp_line (start 0 4.435) (end -1.95 4.435) (layer "F.SilkS") (width 0.12) (tstamp e1e9dd9e-df2b-4b75-b02e-38146938802b))
+    (fp_line (start 0 -4.435) (end -3.45 -4.435) (layer "F.SilkS") (width 0.12) (tstamp fa18dae7-2fb1-4387-a3c1-308ca16c5c1d))
+    (fp_line (start -3.6 -4.5) (end 3.7 -4.5) (layer "F.CrtYd") (width 0.05) (tstamp 494350ab-d17d-4de3-8b96-f15451154d6a))
+    (fp_line (start -3.6 4.5) (end -3.6 -4.5) (layer "F.CrtYd") (width 0.05) (tstamp 51153875-01b9-46f2-8b14-6306c8586588))
+    (fp_line (start 3.7 4.5) (end -3.6 4.5) (layer "F.CrtYd") (width 0.05) (tstamp 622fea85-fc3a-49dd-a4af-3bfd36c6693d))
+    (fp_line (start 3.7 -4.5) (end 3.7 4.5) (layer "F.CrtYd") (width 0.05) (tstamp adda719e-cc0a-4a85-b429-67f8b39774f5))
+    (fp_line (start -0.975 -4.325) (end 1.95 -4.325) (layer "F.Fab") (width 0.1) (tstamp 2e955124-6939-410c-81be-086896fd0cd7))
+    (fp_line (start 1.95 4.325) (end -1.95 4.325) (layer "F.Fab") (width 0.1) (tstamp 38f1f681-d503-49fe-ab87-4225bebb7b32))
+    (fp_line (start -1.95 -3.35) (end -0.975 -4.325) (layer "F.Fab") (width 0.1) (tstamp ae113a97-dd90-42bf-96ea-bb92e7431ac6))
+    (fp_line (start 1.95 -4.325) (end 1.95 4.325) (layer "F.Fab") (width 0.1) (tstamp b39d7b4a-582f-449b-82fa-4a80df318fb1))
+    (fp_line (start -1.95 4.325) (end -1.95 -3.35) (layer "F.Fab") (width 0.1) (tstamp e65c2eb9-e95a-44ea-ab2b-9e65a76fb5f9))
+    (pad "1" smd rect (at -2.475 -3.81) (size 2 0.6) (layers "F.Cu" "F.Paste" "F.Mask")
+      (net 15 "unconnected-(U2-Pad1)") (pinfunction "PA05") (pintype "bidirectional") (tstamp fb070305-7327-4d47-aaa2-52c1d26471d3))
+    (pad "2" smd rect (at -2.475 -2.54) (size 2 0.6) (layers "F.Cu" "F.Paste" "F.Mask")
+      (net 11 "unconnected-(U2-Pad2)") (pinfunction "PA08/XIN") (pintype "bidirectional") (tstamp 80cc6be9-668a-4344-9b65-0659b9071698))
+    (pad "3" smd rect (at -2.475 -1.27) (size 2 0.6) (layers "F.Cu" "F.Paste" "F.Mask")
+      (net 12 "unconnected-(U2-Pad3)") (pinfunction "PA09/XOUT") (pintype "bidirectional") (tstamp 76bf3f12-008a-4a13-b216-e7dae9728db6))
+    (pad "4" smd rect (at -2.475 0) (size 2 0.6) (layers "F.Cu" "F.Paste" "F.Mask")
+      (net 6 "POT") (pinfunction "PA14") (pintype "bidirectional") (tstamp 878a2718-59d9-4c03-a97a-b08c3d833cb9))
+    (pad "5" smd rect (at -2.475 1.27) (size 2 0.6) (layers "F.Cu" "F.Paste" "F.Mask")
+      (net 16 "unconnected-(U2-Pad5)") (pinfunction "PA15") (pintype "bidirectional") (tstamp d0da5fea-7bb8-466a-808d-a285a956d318))
+    (pad "6" smd rect (at -2.475 2.54) (size 2 0.6) (layers "F.Cu" "F.Paste" "F.Mask")
+      (net 8 "RST") (pinfunction "PA28/~{RST}") (pintype "bidirectional") (tstamp 3a9c4d0d-b8e3-4e3b-8868-df708ade9fd9))
+    (pad "7" smd rect (at -2.475 3.81) (size 2 0.6) (layers "F.Cu" "F.Paste" "F.Mask")
+      (net 10 "CLK") (pinfunction "PA30/SWCLK") (pintype "bidirectional") (tstamp eec6f1b0-e4aa-49f8-b4a3-e9424cd19e76))
+    (pad "8" smd rect (at 2.475 3.81) (size 2 0.6) (layers "F.Cu" "F.Paste" "F.Mask")
+      (net 9 "DIO") (pinfunction "PA31/SWDIO") (pintype "bidirectional") (tstamp 4b325ae5-e73e-4571-bbb6-af750e7a58b8))
+    (pad "9" smd rect (at 2.475 2.54) (size 2 0.6) (layers "F.Cu" "F.Paste" "F.Mask")
+      (net 4 "D-") (pinfunction "PA24") (pintype "bidirectional") (tstamp 8e99653b-c67d-4ba5-a650-293257580275))
+    (pad "10" smd rect (at 2.475 1.27) (size 2 0.6) (layers "F.Cu" "F.Paste" "F.Mask")
+      (net 5 "D+") (pinfunction "PA25") (pintype "bidirectional") (tstamp 3b8985d9-c9ce-4e5c-9b0f-dabde5c52713))
+    (pad "11" smd rect (at 2.475 0) (size 2 0.6) (layers "F.Cu" "F.Paste" "F.Mask")
+      (net 1 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 2bf286a9-8d8a-4f20-af25-6a1b3ef01eaf))
+    (pad "12" smd rect (at 2.475 -1.27) (size 2 0.6) (layers "F.Cu" "F.Paste" "F.Mask")
+      (net 2 "+3V3") (pinfunction "VDD") (pintype "power_in") (tstamp a96d0fd6-c2d2-48a1-b455-757422534d73))
+    (pad "13" smd rect (at 2.475 -2.54) (size 2 0.6) (layers "F.Cu" "F.Paste" "F.Mask")
+      (net 7 "LED_C") (pinfunction "PA02") (pintype "bidirectional") (tstamp 29af8fa6-318a-4068-993d-88e7a24f7791))
+    (pad "14" smd rect (at 2.475 -3.81) (size 2 0.6) (layers "F.Cu" "F.Paste" "F.Mask")
+      (net 14 "LED_A") (pinfunction "PA04") (pintype "bidirectional") (tstamp 3334571c-c306-4b79-9192-949abe8085c3))
+    (model "${FAB}/fab.3dshapes/SOIC-14_3.9x8.7mm_P1.27mm.step"
+      (offset (xyz 0 0 0))
+      (scale (xyz 1 1 1))
+      (rotate (xyz 0 0 0))
+    )
+  )
+
+  (footprint "fab:PinHeader_2x02_SWD_P2.54mm_Vertical_SMD" (layer "F.Cu")
+    (tedit 62112959) (tstamp 5c9bc151-e282-4405-8be4-f7b49b568fbb)
+    (at 66.8274 46.0035 180)
+    (descr "surface-mounted straight pin header, 2x02, 2.54mm pitch, double rows")
+    (tags "Surface mounted pin header SMD 2x02 2.54mm double row")
+    (property "Sheetfile" "samd11c14_pot.kicad_sch")
+    (property "Sheetname" "")
+    (path "/4a55f4f3-4596-4061-91d2-6036b72881f5")
+    (attr smd)
+    (fp_text reference "J3" (at -3.524 -3.092) (layer "F.SilkS")
+      (effects (font (size 1 1) (thickness 0.15)))
+      (tstamp f90c26dc-193b-4ab8-89b0-618ed7117e9a)
+    )
+    (fp_text value "Conn_PinHeader_2x02_SWD_P2.54mm_Vertical_SMD" (at 0 3.6) (layer "F.Fab")
+      (effects (font (size 1 1) (thickness 0.15)))
+      (tstamp 3ea1333e-d76b-40ee-8057-84e14f958221)
+    )
+    (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
+      (effects (font (size 1 1) (thickness 0.15)))
+      (tstamp aea0c070-06c6-4135-a708-f46d34e6fdae)
+    )
+    (fp_circle (center -3.4 -2.9) (end -2.9 -2.9) (layer "F.Cu") (width 0.2) (fill solid) (tstamp 483f331b-2bc0-4cb8-bb92-1b8a345841cf))
+    (fp_line (start -2.6 -2.6) (end -2.6 -2.03) (layer "F.SilkS") (width 0.12) (tstamp 007653dc-24a1-4f8b-8bfa-7604710e0bb0))
+    (fp_line (start -4.04 -2.03) (end -2.6 -2.03) (layer "F.SilkS") (width 0.12) (tstamp 24fe7676-0c0a-4b5a-8a61-dd833b2a3e83))
+    (fp_line (start 2.6 -0.51) (end 2.6 0.51) (layer "F.SilkS") (width 0.12) (tstamp 4831ae25-0940-40bd-8287-52f3b995212e))
+    (fp_line (start -2.6 -2.6) (end 2.6 -2.6) (layer "F.SilkS") (width 0.12) (tstamp 6d883ddf-40ea-443e-84fa-f7d018bddc4a))
+    (fp_line (start -2.6 2.6) (end 2.6 2.6) (layer "F.SilkS") (width 0.12) (tstamp 70546009-ec12-4df1-b150-81811f63b9b9))
+    (fp_line (start -2.6 -0.51) (end -2.6 0.51) (layer "F.SilkS") (width 0.12) (tstamp 9560da74-dd09-4735-9bb3-c63169b5b561))
+    (fp_line (start 2.6 2.03) (end 2.6 2.6) (layer "F.SilkS") (width 0.12) (tstamp 97fa9751-3b73-499b-9a68-82d7d05ad2e5))
+    (fp_line (start 2.6 -2.6) (end 2.6 -2.03) (layer "F.SilkS") (width 0.12) (tstamp ad1d94a8-7d85-4004-9ab8-aa55ca511b8a))
+    (fp_line (start -2.6 2.03) (end -2.6 2.6) (layer "F.SilkS") (width 0.12) (tstamp f3269157-290f-42d2-ad85-a243e0c16d86))
+    (fp_line (start 4.2 -2.7) (end -4.2 -2.7) (layer "F.CrtYd") (width 0.05) (tstamp 1e85f89b-021b-44a1-8852-55aafbf7a71c))
+    (fp_line (start 4.2 2.7) (end 4.2 -2.7) (layer "F.CrtYd") (width 0.05) (tstamp 5910a5fe-02d2-43c3-8275-719282a4fba5))
+    (fp_line (start -4.2 -2.7) (end -4.2 2.7) (layer "F.CrtYd") (width 0.05) (tstamp 68015416-9ad1-4782-8d78-de2b22d855e2))
+    (fp_line (start -4.2 2.7) (end 4.2 2.7) (layer "F.CrtYd") (width 0.05) (tstamp e12498fb-0073-451e-bfed-533c8939e787))
+    (fp_line (start 2.54 0.95) (end 3.6 0.95) (layer "F.Fab") (width 0.1) (tstamp 09729d08-1f28-4989-9cd4-bba1484807dd))
+    (fp_line (start -3.6 -1.59) (end -3.6 -0.95) (layer "F.Fab") (width 0.1) (tstamp 0edef41d-0d73-4adf-8257-f364e3a9253f))
+    (fp_line (start -3.6 -0.95) (end -2.54 -0.95) (layer "F.Fab") (width 0.1) (tstamp 1419b495-bc63-4b9b-961a-7608e7a5f12d))
+    (fp_line (start 2.54 -2.54) (end 2.54 2.54) (layer "F.Fab") (width 0.1) (tstamp 15f62eec-de88-4fd4-8ce7-edefa0660429))
+    (fp_line (start -3.6 0.95) (end -3.6 1.59) (layer "F.Fab") (width 0.1) (tstamp 5fbd213d-229e-4a38-8f15-1f58e4823ec9))
+    (fp_line (start 3.6 -0.95) (end 2.54 -0.95) (layer "F.Fab") (width 0.1) (tstamp 6a103bd6-36aa-42f7-a967-a4a89af92862))
+    (fp_line (start -3.6 1.59) (end -2.54 1.59) (layer "F.Fab") (width 0.1) (tstamp 7d3ce60b-0fbc-4d1c-8ad6-57910cd4368e))
+    (fp_line (start 2.54 2.54) (end -2.54 2.54) (layer "F.Fab") (width 0.1) (tstamp 88aaa8ca-5d5e-420e-9150-eae76ab65680))
+    (fp_line (start -2.54 0.95) (end -3.6 0.95) (layer "F.Fab") (width 0.1) (tstamp 8a4dc82f-f803-4702-8c18-44e73153c139))
+    (fp_line (start -2.54 2.54) (end -2.54 -1.59) (layer "F.Fab") (width 0.1) (tstamp 8e8b572d-b74f-4211-ad63-681dccb4172d))
+    (fp_line (start -1.59 -2.54) (end 2.54 -2.54) (layer "F.Fab") (width 0.1) (tstamp 9a3c2099-a93b-43c7-a533-2eec49fc7cb1))
+    (fp_line (start 3.6 0.95) (end 3.6 1.59) (layer "F.Fab") (width 0.1) (tstamp a6b6c979-0c01-4bc3-ac83-adf14e2de01e))
+    (fp_line (start 3.6 -1.59) (end 3.6 -0.95) (layer "F.Fab") (width 0.1) (tstamp a8bb88f8-05aa-4bc1-b077-43de6136cc70))
+    (fp_line (start 2.54 -1.59) (end 3.6 -1.59) (layer "F.Fab") (width 0.1) (tstamp b58ee507-393c-44f7-a2de-9851a5b9bead))
+    (fp_line (start -2.54 -1.59) (end -3.6 -1.59) (layer "F.Fab") (width 0.1) (tstamp c8aa08dc-6e98-4645-8afd-a8552d5ebdf5))
+    (fp_line (start 3.6 1.59) (end 2.54 1.59) (layer "F.Fab") (width 0.1) (tstamp cbf99705-b115-4241-87c9-be1607ad9ede))
+    (fp_line (start -2.54 -1.59) (end -1.59 -2.54) (layer "F.Fab") (width 0.1) (tstamp cc491dd0-75d7-453b-8180-488286eddce3))
+    (pad "1" smd rect (at -2.525 -1.27 180) (size 3.15 1) (layers "F.Cu" "F.Paste" "F.Mask")
+      (net 1 "GND") (pinfunction "GND") (pintype "passive") (tstamp 6f39ac71-504f-4657-8986-24ff4f2d032d))
+    (pad "2" smd rect (at 2.525 -1.27 180) (size 3.15 1) (layers "F.Cu" "F.Paste" "F.Mask")
+      (net 8 "RST") (pinfunction "RST") (pintype "passive") (tstamp 6398af37-19f8-4769-a00f-fa5baf3c6ea5))
+    (pad "3" smd rect (at -2.525 1.27 180) (size 3.15 1) (layers "F.Cu" "F.Paste" "F.Mask")
+      (net 9 "DIO") (pinfunction "DIO") (pintype "passive") (tstamp 111a9cf1-58cb-4410-953d-499d23c85f0f))
+    (pad "4" smd rect (at 2.525 1.27 180) (size 3.15 1) (layers "F.Cu" "F.Paste" "F.Mask")
+      (net 10 "CLK") (pinfunction "CLK") (pintype "passive") (tstamp 8b65eba9-3370-4aa6-9c98-1579ce1acb40))
+    (model "${KISYS3DMOD}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_2x02_P2.54mm_Vertical_SMD.wrl"
+      (offset (xyz 0 0 0))
+      (scale (xyz 1 1 1))
+      (rotate (xyz 0 0 0))
+    )
+  )
+
+  (footprint "fab:C_1206" (layer "F.Cu")
+    (tedit 6002C54C) (tstamp 84a6c803-a4ac-48df-95fb-6930cca4e25e)
+    (at 74.422 42.926 180)
+    (descr "Capacitor SMD 1206, hand soldering")
+    (tags "capacitor 1206")
+    (property "Sheetfile" "samd11c14_pot.kicad_sch")
+    (property "Sheetname" "")
+    (path "/fde96c4e-b12c-43f8-9426-6e025c0e4ecc")
+    (attr smd)
+    (fp_text reference "C2" (at -0.127 0 90) (layer "F.SilkS")
+      (effects (font (size 1 1) (thickness 0.15)))
+      (tstamp 6f4bbdb8-5bb2-4c5f-b604-50c819181981)
+    )
+    (fp_text value "1uF" (at 0 1.9) (layer "F.Fab")
+      (effects (font (size 1 1) (thickness 0.15)))
+      (tstamp 21de29f1-55e6-491f-9b72-2d0cf15d30d9)
+    )
+    (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
+      (effects (font (size 0.7 0.7) (thickness 0.105)))
+      (tstamp 8d1c6119-4f8d-41bb-ac26-14b7b55b90f2)
+    )
+    (fp_line (start -1 -1.07) (end 1 -1.07) (layer "F.SilkS") (width 0.12) (tstamp 3a07246e-3a61-43dd-8b09-0bdf03c3e6f3))
+    (fp_line (start 1 1.07) (end -1 1.07) (layer "F.SilkS") (width 0.12) (tstamp 97e1f64a-ea8c-4ff4-8e5c-27686d0544c1))
+    (fp_line (start -3.25 -1.11) (end -3.25 1.1) (layer "F.CrtYd") (width 0.05) (tstamp 331e4b06-587c-447e-bea7-ab3ccd3f7d67))
+    (fp_line (start 3.25 1.1) (end -3.25 1.1) (layer "F.CrtYd") (width 0.05) (tstamp 441f9c55-be25-4fae-8b9b-6a71ad3b0b86))
+    (fp_line (start -3.25 -1.11) (end 3.25 -1.11) (layer "F.CrtYd") (width 0.05) (tstamp 5d580eb5-0e83-488b-a0fd-a803c630f551))
+    (fp_line (start 3.25 1.1) (end 3.25 -1.11) (layer "F.CrtYd") (width 0.05) (tstamp 7aec2799-4000-4098-a752-1bed4b75fdcf))
+    (fp_line (start -1.6 -0.8) (end 1.6 -0.8) (layer "F.Fab") (width 0.1) (tstamp a2d16f16-08e6-4947-a6d1-6d787ead02c9))
+    (fp_line (start -1.6 0.8) (end -1.6 -0.8) (layer "F.Fab") (width 0.1) (tstamp b11ebd64-c9c7-457c-8a22-c5fed71aadd1))
+    (fp_line (start 1.6 0.8) (end -1.6 0.8) (layer "F.Fab") (width 0.1) (tstamp c09f8970-d399-4978-b7bf-c426fa2f915a))
+    (fp_line (start 1.6 -0.8) (end 1.6 0.8) (layer "F.Fab") (width 0.1) (tstamp d4512ec7-3389-4b56-9e8b-bdbd8a828957))
+    (pad "1" smd rect locked (at -2 0 180) (size 2 1.7) (layers "F.Cu" "F.Paste" "F.Mask")
+      (net 2 "+3V3") (pintype "passive") (tstamp e294d04e-3720-4cda-b63e-078484e0733c))
+    (pad "2" smd rect locked (at 2 0 180) (size 2 1.7) (layers "F.Cu" "F.Paste" "F.Mask")
+      (net 1 "GND") (pintype "passive") (tstamp 1d052412-811d-4384-b62d-b10970534fb5))
+    (model "${FAB}/fab.3dshapes/C_1206.step"
+      (offset (xyz 0 0 0))
+      (scale (xyz 1 1 1))
+      (rotate (xyz 0 0 0))
+    )
+  )
+
+  (footprint "fab:SOT-23W" (layer "F.Cu")
+    (tedit 5EF36ECC) (tstamp 979784e6-6813-4ec3-b827-3fde402e007b)
+    (at 74.168 39.37 180)
+    (descr "SOT-23W for handsoldering")
+    (tags "fab handsoldering")
+    (property "Sheetfile" "samd11c14_pot.kicad_sch")
+    (property "Sheetname" "")
+    (path "/78dd0937-ee9d-48f7-810d-2995faf42b06")
+    (attr smd)
+    (fp_text reference "U1" (at 0 -2.5) (layer "F.SilkS")
+      (effects (font (size 1 1) (thickness 0.15)))
+      (tstamp 5f166979-d56c-4322-b233-17794a3457b5)
+    )
+    (fp_text value "Regulator_Linear_LM3480-3.3V-100mA" (at 0 2.5) (layer "F.Fab")
+      (effects (font (size 1 1) (thickness 0.15)))
+      (tstamp c866f4ae-ff2b-485e-ace5-eb22b622efa6)
+    )
+    (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
+      (effects (font (size 0.5 0.5) (thickness 0.075)))
+      (tstamp ea1e6278-75ba-4dbd-9269-6f0458555c99)
+    )
+    (fp_line (start -2 -1.61) (end 1.075 -1.61) (layer "F.SilkS") (width 0.12) (tstamp 379ebaf7-893a-42a6-8bcf-12c78912ad8a))
+    (fp_line (start 1.075 0.7) (end 1.075 1.61) (layer "F.SilkS") (width 0.12) (tstamp 763480e7-3762-4f16-a047-9f69445027bc))
+    (fp_line (start 1.075 -1.6) (end 1.075 -0.7) (layer "F.SilkS") (width 0.12) (tstamp 8c9efe2f-5335-4c8f-83f0-478062b3d361))
+    (fp_line (start -1.075 1.61) (end 1.075 1.61) (layer "F.SilkS") (width 0.12) (tstamp a83c47e7-af92-4e55-aa1d-63efd993255a))
+    (fp_line (start 2.95 -1.74) (end 2.95 1.74) (layer "F.CrtYd") (width 0.05) (tstamp 2ecafbfb-1f1b-4163-a8a3-81b34e25883e))
+    (fp_line (start -2.95 1.74) (end -2.95 -1.74) (layer "F.CrtYd") (width 0.05) (tstamp 569ea4b4-5dfd-49bf-b9b1-7356c1cccf85))
+    (fp_line (start 2.95 1.74) (end -2.95 1.74) (layer "F.CrtYd") (width 0.05) (tstamp b19e086b-ad6e-403a-827d-2f683812c0db))
+    (fp_line (start -2.95 -1.74) (end 2.95 -1.74) (layer "F.CrtYd") (width 0.05) (tstamp cb7234d4-db5d-4e28-a1b5-36480e441623))
+    (fp_line (start -0.955 -0.49) (end 0.045 -1.49) (layer "F.Fab") (width 0.1) (tstamp 0da646b6-a8a2-4edc-882f-6dac8cd09afe))
+    (fp_line (start 0.955 -1.49) (end 0.955 1.49) (layer "F.Fab") (width 0.1) (tstamp 3f6a0f8e-f04c-40b1-92f7-46637c011ccf))
+    (fp_line (start -0.955 1.49) (end 0.955 1.49) (layer "F.Fab") (width 0.1) (tstamp 6e357160-fc3f-4043-9cc3-8dcdbf217748))
+    (fp_line (start -0.955 -0.49) (end -0.955 1.49) (layer "F.Fab") (width 0.1) (tstamp 97d06544-0582-47af-9627-3ceb0885b721))
+    (fp_line (start 0.045 -1.49) (end 0.955 -1.49) (layer "F.Fab") (width 0.1) (tstamp ca2ce250-d103-4e4c-b0e2-9caf2ba9f2c8))
+    (pad "1" smd rect locked (at -1.7 -0.95 180) (size 2 0.7) (layers "F.Cu" "F.Paste" "F.Mask")
+      (net 2 "+3V3") (pinfunction "VO") (pintype "power_out") (tstamp 3799f89f-0a7e-4460-a961-117b6052c468))
+    (pad "2" smd rect locked (at -1.7 0.95 180) (size 2 0.7) (layers "F.Cu" "F.Paste" "F.Mask")
+      (net 3 "+5V") (pinfunction "VI") (pintype "power_in") (tstamp be5d8c2b-5fe9-43a1-b345-4a9faa948400))
+    (pad "3" smd rect locked (at 1.7 0 180) (size 2 0.7) (layers "F.Cu" "F.Paste" "F.Mask")
+      (net 1 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 8dc3406f-8767-4e6d-8d89-959c20c629f8))
+    (model "${KISYS3DMOD}/TO_SOT_Packages_SMD.3dshapes/SOT-23W_Handsoldering.wrl"
+      (offset (xyz 0 0 0))
+      (scale (xyz 1 1 1))
+      (rotate (xyz 0 0 0))
+    )
+  )
+
+  (footprint "fab:C_1206" (layer "F.Cu")
+    (tedit 6002C54C) (tstamp a720bddf-2927-409d-ad92-1fb78c1f3947)
+    (at 76.676 45.974 180)
+    (descr "Capacitor SMD 1206, hand soldering")
+    (tags "capacitor 1206")
+    (property "Sheetfile" "samd11c14_pot.kicad_sch")
+    (property "Sheetname" "")
+    (path "/a20728c8-07ac-40ed-b60c-72d07a38f400")
+    (attr smd)
+    (fp_text reference "C1" (at 0.179605 2.514472) (layer "F.SilkS")
+      (effects (font (size 1 1) (thickness 0.15)))
+      (tstamp 74247cd2-18b0-4df5-ab0e-e8ed1189698d)
+    )
+    (fp_text value "1uF" (at 0 1.9) (layer "F.Fab")
+      (effects (font (size 1 1) (thickness 0.15)))
+      (tstamp b272ca60-7ac8-46cc-a13d-3f6b67e611c3)
+    )
+    (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
+      (effects (font (size 0.7 0.7) (thickness 0.105)))
+      (tstamp b3abddeb-a46d-41df-9df3-15c1edae70c2)
+    )
+    (fp_line (start 1 1.07) (end -1 1.07) (layer "F.SilkS") (width 0.12) (tstamp 1010b46c-eef0-4f42-b0b9-6202e8f4716e))
+    (fp_line (start -1 -1.07) (end 1 -1.07) (layer "F.SilkS") (width 0.12) (tstamp 55a7d5fa-dd5e-4f56-b184-a50e5ce59bad))
+    (fp_line (start 3.25 1.1) (end 3.25 -1.11) (layer "F.CrtYd") (width 0.05) (tstamp 29f1ff93-9bf2-4de2-b846-e2b842c60d1d))
+    (fp_line (start -3.25 -1.11) (end 3.25 -1.11) (layer "F.CrtYd") (width 0.05) (tstamp c0aae7a3-e56e-4f35-957e-49469fc56a62))
+    (fp_line (start -3.25 -1.11) (end -3.25 1.1) (layer "F.CrtYd") (width 0.05) (tstamp e4d11587-5753-4daa-bf9c-7dcc4c8eabf0))
+    (fp_line (start 3.25 1.1) (end -3.25 1.1) (layer "F.CrtYd") (width 0.05) (tstamp f9cc2034-c1ef-44f8-bfae-ce4edf914759))
+    (fp_line (start -1.6 -0.8) (end 1.6 -0.8) (layer "F.Fab") (width 0.1) (tstamp 48ed4673-294b-4cf0-ab21-3bec4c0dd55d))
+    (fp_line (start -1.6 0.8) (end -1.6 -0.8) (layer "F.Fab") (width 0.1) (tstamp 9445191d-4426-4c12-9fa9-a8aad771acc8))
+    (fp_line (start 1.6 0.8) (end -1.6 0.8) (layer "F.Fab") (width 0.1) (tstamp d61ea785-242c-4b1a-8576-3fe8179a0d53))
+    (fp_line (start 1.6 -0.8) (end 1.6 0.8) (layer "F.Fab") (width 0.1) (tstamp f2510726-77a2-4312-9561-a35053bdcced))
+    (pad "1" smd rect locked (at -2 0 180) (size 2 1.7) (layers "F.Cu" "F.Paste" "F.Mask")
+      (net 3 "+5V") (pintype "passive") (tstamp 64b8cd6d-9a74-4885-9d23-037c62ad9c4a))
+    (pad "2" smd rect locked (at 2 0 180) (size 2 1.7) (layers "F.Cu" "F.Paste" "F.Mask")
+      (net 1 "GND") (pintype "passive") (tstamp 976a1a04-03ed-45ac-84fa-a85b8920a115))
+    (model "${FAB}/fab.3dshapes/C_1206.step"
+      (offset (xyz 0 0 0))
+      (scale (xyz 1 1 1))
+      (rotate (xyz 0 0 0))
+    )
+  )
+
+  (footprint "fab:pot_thru" (layer "F.Cu")
+    (tedit 6355AE44) (tstamp d4e5a639-c802-4fd5-bd43-bd9483f1fee3)
+    (at 66.802 67.141 180)
+    (property "Sheetfile" "samd11c14_pot.kicad_sch")
+    (property "Sheetname" "")
+    (path "/cb31fc7d-d6de-4e03-9a36-81663ac3f889")
+    (attr smd)
+    (fp_text reference "RV1" (at 0 -0.5 180 unlocked) (layer "F.SilkS")
+      (effects (font (size 1 1) (thickness 0.15)))
+      (tstamp b4450c83-6da6-4393-a892-92bf8cbec8aa)
+    )
+    (fp_text value "R_POT_10K_Trimmer" (at 0 1 180 unlocked) (layer "F.Fab")
+      (effects (font (size 1 1) (thickness 0.15)))
+      (tstamp d6c6796b-c630-4de8-9473-cbbc978a0a21)
+    )
+    (fp_text user "${REFERENCE}" (at 0 2.5 180 unlocked) (layer "F.Fab")
+      (effects (font (size 1 1) (thickness 0.15)))
+      (tstamp 15f86f86-6612-462a-a1d2-f730a8788a9a)
+    )
+    (pad "" np_thru_hole circle (at 0 0 180) (size 16.3 16.3) (drill 16.9) (layers F&B.Cu *.Mask "B.Adhes") (tstamp 05fda319-28dc-4877-8331-02cb10501361))
+    (pad "1" thru_hole circle (at -5.08 12.2 180) (size 3 3) (drill 1.3) (layers *.Cu *.Mask)
+      (net 2 "+3V3") (pinfunction "1") (pintype "passive") (tstamp 1330eb77-c16f-4a58-a897-f5af49736826))
+    (pad "2" thru_hole circle (at 0 12.2 180) (size 3 3) (drill 1.3) (layers *.Cu *.Mask)
+      (net 6 "POT") (pinfunction "2") (pintype "passive") (tstamp 163cdeae-7841-4f2c-b738-e36b081d5e19))
+    (pad "3" thru_hole circle (at 5.08 12.2 180) (size 3 3) (drill 1.3) (layers *.Cu *.Mask)
+      (net 1 "GND") (pinfunction "3") (pintype "passive") (tstamp e5abcaa8-c89a-49d4-9e47-28a25f37d322))
+  )
+
+  (footprint "fab:R_1206" (layer "F.Cu")
+    (tedit 60020482) (tstamp d53619cc-25b9-4a27-96c2-8340f1ffc830)
+    (at 75.946 33.274)
+    (descr "Resistor SMD 1206, hand soldering")
+    (tags "resistor 1206")
+    (property "Sheetfile" "samd11c14_pot.kicad_sch")
+    (property "Sheetname" "")
+    (path "/793db082-42ed-4019-b9c9-5a54a4f821e0")
+    (attr smd)
+    (fp_text reference "R1" (at 0 -1.85) (layer "F.SilkS")
+      (effects (font (size 1 1) (thickness 0.15)))
+      (tstamp 27592b53-3a45-4a8a-9812-2fc7d51b71d4)
+    )
+    (fp_text value "R" (at 0 1.9) (layer "F.Fab")
+      (effects (font (size 1 1) (thickness 0.15)))
+      (tstamp 63fff7e2-2fd3-4c9e-a801-724a7e50fb33)
+    )
+    (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
+      (effects (font (size 0.7 0.7) (thickness 0.105)))
+      (tstamp bbe5875b-a271-469c-9db4-31e93fc1a795)
+    )
+    (fp_line (start 1 1.07) (end -1 1.07) (layer "F.SilkS") (width 0.12) (tstamp cddd7c81-9408-4142-b1b5-ff0e50ed4408))
+    (fp_line (start -1 -1.07) (end 1 -1.07) (layer "F.SilkS") (width 0.12) (tstamp d1fd1e46-81e3-4a68-ac06-061cfcf8e49c))
+    (fp_line (start 3.25 1.1) (end 3.25 -1.11) (layer "F.CrtYd") (width 0.05) (tstamp 0c07d6b7-3b44-4125-8b9c-47d687937b2d))
+    (fp_line (start 3.25 1.1) (end -3.25 1.1) (layer "F.CrtYd") (width 0.05) (tstamp 59fabbf2-5a3d-47b2-922f-32475949508f))
+    (fp_line (start -3.25 -1.11) (end -3.25 1.1) (layer "F.CrtYd") (width 0.05) (tstamp 5bef9cab-4b75-45ba-a0ec-ce235f63187d))
+    (fp_line (start -3.25 -1.11) (end 3.25 -1.11) (layer "F.CrtYd") (width 0.05) (tstamp e484dc70-1546-481c-9299-7adc5c3e2506))
+    (fp_line (start -1.6 0.8) (end -1.6 -0.8) (layer "F.Fab") (width 0.1) (tstamp 1915c321-c7d3-4d40-8bec-0ae8dcfcc7c4))
+    (fp_line (start 1.6 -0.8) (end 1.6 0.8) (layer "F.Fab") (width 0.1) (tstamp 603bf52a-5ea1-49c3-ad9d-0ee3d274da52))
+    (fp_line (start -1.6 -0.8) (end 1.6 -0.8) (layer "F.Fab") (width 0.1) (tstamp b53deeab-184f-48d5-9a4b-48f2e70933ba))
+    (fp_line (start 1.6 0.8) (end -1.6 0.8) (layer "F.Fab") (width 0.1) (tstamp e79eb36e-34aa-4c81-9e35-881b7505298a))
+    (pad "1" smd rect locked (at -2 0) (size 2 1.7) (layers "F.Cu" "F.Paste" "F.Mask")
+      (net 14 "LED_A") (pintype "passive") (tstamp 4c73ff14-f0af-4477-8225-439ab6c207b6))
+    (pad "2" smd rect locked (at 2 0) (size 2 1.7) (layers "F.Cu" "F.Paste" "F.Mask")
+      (net 13 "Net-(D1-Pad2)") (pintype "passive") (tstamp 0fa65c06-6086-4a07-9a9e-68f90181883f))
+    (model "${FAB}/fab.3dshapes/R_1206.step"
+      (offset (xyz 0 0 0))
+      (scale (xyz 1 1 1))
+      (rotate (xyz 0 0 0))
+    )
+  )
+
+  (footprint "fab:C_1206" (layer "F.Cu")
+    (tedit 6002C54C) (tstamp db4eca14-2b11-4a86-a337-7c2c951e01de)
+    (at 64.008 51.308 180)
+    (descr "Capacitor SMD 1206, hand soldering")
+    (tags "capacitor 1206")
+    (property "Sheetfile" "samd11c14_pot.kicad_sch")
+    (property "Sheetname" "")
+    (path "/7a2ca59d-820f-4fa1-abab-bd90f7425325")
+    (attr smd)
+    (fp_text reference "C3" (at 0 -1.85) (layer "F.SilkS")
+      (effects (font (size 1 1) (thickness 0.15)))
+      (tstamp ada60e3d-774a-4ac1-8ba6-b1c6c9c19bfe)
+    )
+    (fp_text value "10uF" (at 0 1.9) (layer "F.Fab")
+      (effects (font (size 1 1) (thickness 0.15)))
+      (tstamp 7f784d11-e39d-4e95-a915-e77e130ed7e1)
+    )
+    (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
+      (effects (font (size 0.7 0.7) (thickness 0.105)))
+      (tstamp 79420a47-1471-403d-bb6d-04653cc62b1c)
+    )
+    (fp_line (start 1 1.07) (end -1 1.07) (layer "F.SilkS") (width 0.12) (tstamp 07bb3ac1-72ca-4b5e-96f3-d93e0c469fd3))
+    (fp_line (start -1 -1.07) (end 1 -1.07) (layer "F.SilkS") (width 0.12) (tstamp 34b39ce7-172f-482c-bd47-dc759d12d7d7))
+    (fp_line (start 3.25 1.1) (end -3.25 1.1) (layer "F.CrtYd") (width 0.05) (tstamp 7af560b9-9285-4f47-9f8c-e0f042f2aee0))
+    (fp_line (start -3.25 -1.11) (end -3.25 1.1) (layer "F.CrtYd") (width 0.05) (tstamp 8fe90403-37aa-4d2f-883d-77665e360432))
+    (fp_line (start 3.25 1.1) (end 3.25 -1.11) (layer "F.CrtYd") (width 0.05) (tstamp 9fcdc0fe-4463-49f7-87bf-71ef1ade7b18))
+    (fp_line (start -3.25 -1.11) (end 3.25 -1.11) (layer "F.CrtYd") (width 0.05) (tstamp aa09deb8-f8cd-4289-a8fd-0f0ffa47a2f2))
+    (fp_line (start 1.6 -0.8) (end 1.6 0.8) (layer "F.Fab") (width 0.1) (tstamp 1b1a8dfa-cff6-4c40-b550-aa79b5a4ad04))
+    (fp_line (start -1.6 0.8) (end -1.6 -0.8) (layer "F.Fab") (width 0.1) (tstamp 727ad92d-899f-4a54-982a-1df065989408))
+    (fp_line (start 1.6 0.8) (end -1.6 0.8) (layer "F.Fab") (width 0.1) (tstamp 942a5035-c37f-4502-86b5-fd488c39d34d))
+    (fp_line (start -1.6 -0.8) (end 1.6 -0.8) (layer "F.Fab") (width 0.1) (tstamp abc4fe44-4040-4a31-8b9e-760af85e0980))
+    (pad "1" smd rect locked (at -2 0 180) (size 2 1.7) (layers "F.Cu" "F.Paste" "F.Mask")
+      (net 6 "POT") (pintype "passive") (tstamp 0b0f9524-06f2-4bba-92e9-03c2a386fd58))
+    (pad "2" smd rect locked (at 2 0 180) (size 2 1.7) (layers "F.Cu" "F.Paste" "F.Mask")
+      (net 1 "GND") (pintype "passive") (tstamp 909aeec2-4587-45b7-a908-f22ef8156c24))
+    (model "${FAB}/fab.3dshapes/C_1206.step"
+      (offset (xyz 0 0 0))
+      (scale (xyz 1 1 1))
+      (rotate (xyz 0 0 0))
+    )
+  )
+
+  (footprint "fab:LED_1206" (layer "F.Cu")
+    (tedit 595FC724) (tstamp f1c094d8-0713-4225-a7ca-e83c50af8377)
+    (at 75.946 35.814)
+    (descr "LED SMD 1206, hand soldering")
+    (tags "LED 1206")
+    (property "Sheetfile" "samd11c14_pot.kicad_sch")
+    (property "Sheetname" "")
+    (path "/c4a71020-03ce-4f30-a55a-13a246010c50")
+    (attr smd)
+    (fp_text reference "D1" (at 0 -1.85) (layer "F.SilkS")
+      (effects (font (size 1 1) (thickness 0.15)))
+      (tstamp 7e485dd6-7e70-4c68-b61d-97800fdfb74a)
+    )
+    (fp_text value "LED" (at 0 1.9) (layer "F.Fab")
+      (effects (font (size 1 1) (thickness 0.15)))
+      (tstamp d07e234d-4950-4f5f-a129-862df3a50f70)
+    )
+    (fp_line (start -3.1 -0.95) (end -3.1 0.95) (layer "F.SilkS") (width 0.12) (tstamp 2f68edbf-ba7c-4d18-b89e-ff700cfeadc6))
+    (fp_line (start -3.1 -0.95) (end 1.6 -0.95) (layer "F.SilkS") (width 0.12) (tstamp 583b4d95-7448-4863-8207-9753ec361bf8))
+    (fp_line (start -3.1 0.95) (end 1.6 0.95) (layer "F.SilkS") (width 0.12) (tstamp df052241-b3a7-42cb-820e-d0f9e67d021a))
+    (fp_line (start 3.25 1.1) (end -3.25 1.1) (layer "F.CrtYd") (width 0.05) (tstamp 6aea47a1-4a29-43bf-99a3-1960dd90a2dd))
+    (fp_line (start 3.25 1.1) (end 3.25 -1.11) (layer "F.CrtYd") (width 0.05) (tstamp 7fe4c6ce-fb46-4ea9-9ea0-b5c18231fa0a))
+    (fp_line (start -3.25 -1.11) (end 3.25 -1.11) (layer "F.CrtYd") (width 0.05) (tstamp 827c50a3-2e70-4493-be6d-9d318e408b5e))
+    (fp_line (start -3.25 -1.11) (end -3.25 1.1) (layer "F.CrtYd") (width 0.05) (tstamp bbfb8ee0-7056-4442-b953-500ea4659e0c))
+    (fp_line (start 1.6 0.8) (end -1.6 0.8) (layer "F.Fab") (width 0.1) (tstamp 4e83fc2b-0cbc-4384-9c2a-ddc5e13ba0ea))
+    (fp_line (start -1.6 0.8) (end -1.6 -0.8) (layer "F.Fab") (width 0.1) (tstamp 61270a1a-ac38-4cc1-b994-507e963f23c5))
+    (fp_line (start 0.2 -0.4) (end 0.2 0.4) (layer "F.Fab") (width 0.1) (tstamp 62d4852a-396d-4c2b-8cde-ea0ee50a7970))
+    (fp_line (start -0.4 0) (end 0.2 -0.4) (layer "F.Fab") (width 0.1) (tstamp 6300798d-bde3-409e-a11e-830d86aff69d))
+    (fp_line (start 1.6 -0.8) (end 1.6 0.8) (layer "F.Fab") (width 0.1) (tstamp 80b68303-f051-4d7d-a227-c67b616acf1b))
+    (fp_line (start -1.6 -0.8) (end 1.6 -0.8) (layer "F.Fab") (width 0.1) (tstamp aba6290b-3e0f-4514-98bb-2f230e0f2474))
+    (fp_line (start 0.2 0.4) (end -0.4 0) (layer "F.Fab") (width 0.1) (tstamp b8d1ae1a-e5bf-4b97-b353-68b1db16fbec))
+    (fp_line (start -0.45 -0.4) (end -0.45 0.4) (layer "F.Fab") (width 0.1) (tstamp fb0bf91b-a28c-4556-8306-e982dbb3586d))
+    (pad "1" smd rect locked (at -2 0) (size 2 1.7) (layers "F.Cu" "F.Paste" "F.Mask")
+      (net 7 "LED_C") (pinfunction "K") (pintype "passive") (tstamp 8704b276-fbb0-4429-a991-bfe8bcd13836))
+    (pad "2" smd rect locked (at 2 0) (size 2 1.7) (layers "F.Cu" "F.Paste" "F.Mask")
+      (net 13 "Net-(D1-Pad2)") (pinfunction "A") (pintype "passive") (tstamp 39c96d08-b633-4902-9ec8-57d48abc5edf))
+    (model "${KISYS3DMOD}/LEDs.3dshapes/LED_1206.wrl"
+      (offset (xyz 0 0 0))
+      (scale (xyz 1 1 1))
+      (rotate (xyz 0 0 180))
+    )
+  )
+
+  (footprint "fab:Conn_USB_A_Plain" (layer "F.Cu")
+    (tedit 61EE6490) (tstamp ff5ead9b-37b8-4bc9-9ac4-39775f57c6cf)
+    (at 66.929 26.416 90)
+    (descr "Plain USB Type A connector that can be cut with a PCB milling machine")
+    (tags "USB type A plain fab")
+    (property "Sheetfile" "samd11c14_pot.kicad_sch")
+    (property "Sheetname" "")
+    (path "/edc78bf5-dcc5-4cd6-aa4e-c01e87f3a3ff")
+    (attr smd)
+    (fp_text reference "P1" (at -5.334 0 unlocked) (layer "F.SilkS")
+      (effects (font (size 1 1) (thickness 0.15)))
+      (tstamp d8e5be0d-d98f-406a-bb3b-e2b68228703b)
+    )
+    (fp_text value "Conn_USB_A_Plain" (at 0 7 90 unlocked) (layer "F.Fab")
+      (effects (font (size 1 1) (thickness 0.15)))
+      (tstamp 33112a1f-3ef4-4453-945b-eafb5950befb)
+    )
+    (fp_text user "${REFERENCE}" (at 0 0 90 unlocked) (layer "F.Fab")
+      (effects (font (size 1 1) (thickness 0.15)))
+      (tstamp b85d8111-c66c-4649-8ef3-173324d8dc2f)
+    )
+    (fp_rect (start -4.25 -6.25) (end 6.25 6.25) (layer "B.CrtYd") (width 0.05) (fill none) (tstamp 7a961303-0ee0-4514-9c41-71f7612da80d))
+    (fp_rect (start -4.25 -6.25) (end 6.25 6.25) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp aa1a0bd5-2e16-4ae4-84c6-ff71de2d0c53))
+    (fp_line (start 6 -5.5) (end 6 5.5) (layer "F.Fab") (width 0.1) (tstamp 199f157d-6f84-41da-be4c-6e21ffdc4f00))
+    (fp_line (start -4 -6) (end 5.5 -6) (layer "F.Fab") (width 0.1) (tstamp 651c91fd-ec54-4600-b738-56cbf235205c))
+    (fp_line (start 5.5 6) (end -4 6) (layer "F.Fab") (width 0.1) (tstamp 8e865536-7e57-40b8-97a2-c3d4b4b14caf))
+    (fp_arc (start 6 5.5) (mid 5.853553 5.853553) (end 5.5 6) (layer "F.Fab") (width 0.1) (tstamp acbae352-7edb-481c-9de1-1fbd99403011))
+    (fp_arc (start 5.5 -6) (mid 5.853553 -5.853553) (end 6 -5.5) (layer "F.Fab") (width 0.1) (tstamp ca6bed28-5471-4a76-b6aa-41bb1fbae087))
+    (pad "1" smd rect (at 0.5 -3.5 90) (size 9 1.2) (layers "F.Cu" "F.Paste" "F.Mask")
+      (net 3 "+5V") (pinfunction "5V") (pintype "power_out") (tstamp 5d0be09d-133e-4cac-b0d8-fd336835cc6c))
+    (pad "2" smd rect (at 0 -1 90) (size 8 1.2) (layers "F.Cu" "F.Paste" "F.Mask")
+      (net 4 "D-") (pinfunction "D-") (pintype "bidirectional") (tstamp 453a77ad-fac0-4cd4-9fca-6e04f8cfa3e5))
+    (pad "3" smd rect (at 0 1 90) (size 8 1.2) (layers "F.Cu" "F.Paste" "F.Mask")
+      (net 5 "D+") (pinfunction "D+") (pintype "bidirectional") (tstamp 25f3023a-0b40-4b57-b672-1aea8836d4eb))
+    (pad "4" smd rect (at 0.5 3.5 90) (size 9 1.2) (layers "F.Cu" "F.Paste" "F.Mask")
+      (net 1 "GND") (pinfunction "GND") (pintype "power_out") (tstamp b217b8c4-9da3-40f9-a62d-8788048abf37))
+  )
+
+  (gr_arc (start 80.264 67.056) (mid 67.057235 80.647626) (end 53.594 67.31) (layer "Edge.Cuts") (width 0.1) (tstamp 0345fd68-553c-435d-a585-f0794b392f79))
+  (gr_line (start 60.8584 30.734) (end 60.8584 20.193) (layer "Edge.Cuts") (width 0.1) (tstamp 45289df9-d1e8-4b8e-af7b-14fb3554652f))
+  (gr_line (start 72.9996 20.193) (end 60.8584 20.193) (layer "Edge.Cuts") (width 0.1) (tstamp 6439c27f-b390-4e30-8e16-4a07043bc314))
+  (gr_line (start 54.356 30.734) (end 53.594 31.496) (layer "Edge.Cuts") (width 0.1) (tstamp 71a423b9-e460-4102-84b5-9686721985e1))
+  (gr_line (start 53.594 67.31) (end 53.594 31.496) (layer "Edge.Cuts") (width 0.1) (tstamp 7ddc7d53-1bb3-40d9-b48e-27664f299f6b))
+  (gr_line (start 72.9996 20.193) (end 72.9996 30.734) (layer "Edge.Cuts") (width 0.1) (tstamp 84bfaaa4-fe8b-464b-9837-7febb50ee6ce))
+  (gr_line (start 80.264 67.056) (end 80.264 31.496) (layer "Edge.Cuts") (width 0.1) (tstamp a3ccf9a7-c443-45d6-a66f-d31c2155aa2d))
+  (gr_line (start 72.9996 30.734) (end 79.502 30.734) (layer "Edge.Cuts") (width 0.1) (tstamp b0241644-32fb-4c01-b372-2c6daf1d48e1))
+  (gr_line (start 80.264 31.496) (end 79.502 30.734) (layer "Edge.Cuts") (width 0.1) (tstamp c5c631ad-4f7e-4f20-98ec-a852fdbb8a86))
+  (gr_line (start 54.356 30.734) (end 60.8584 30.734) (layer "Edge.Cuts") (width 0.1) (tstamp e8b24d99-7a48-467e-970b-8c034bdc00c2))
+
+  (segment (start 67.564 37.338) (end 67.564 33.257878) (width 0.3) (layer "F.Cu") (net 1) (tstamp 03a4d451-1cc1-4813-a853-4ef1efccd07f))
+  (segment (start 70.7685 37.7485) (end 72.39 39.37) (width 0.4) (layer "F.Cu") (net 1) (tstamp 04339b55-09ae-408e-a1f1-16507920b4f8))
+  (segment (start 72.422 42.926) (end 72.422 45.752) (width 0.4) (layer "F.Cu") (net 1) (tstamp 2028359b-469b-4c85-8516-a07f311b7b1a))
+  (segment (start 67.5763 57.15) (end 69.007881 55.718419) (width 0.4) (layer "F.Cu") (net 1) (tstamp 237d3bb8-118d-45d2-93d0-57eb5ac8701a))
+  (segment (start 61.722 51.594) (end 62.008 51.308) (width 0.4) (layer "F.Cu") (net 1) (tstamp 4a0a2266-e6a4-4bb6-8762-d5bfa17f7fe5))
+  (segment (start 61.722 54.941) (end 63.931 57.15) (width 0.4) (layer "F.Cu") (net 1) (tstamp 4f99bebe-74f2-4bec-8716-b0cc27fc4b1b))
+  (segment (start 69.3024 37.7485) (end 70.7685 37.7485) (width 0.4) (layer "F.Cu") (net 1) (tstamp 5201a1ca-ce6d-4c58-b8b5-c861211e2631))
+  (segment (start 69.3024 37.7485) (end 67.9745 37.7485) (width 0.3) (layer "F.Cu") (net 1) (tstamp 5b843b70-50be-4c2b-b736-35531f2def85))
+  (segment (start 74.962 45.974) (end 72.644 45.974) (width 0.4) (layer "F.Cu") (net 1) (tstamp 69c29c3c-a637-4da7-aacb-c666d95cc6cc))
+  (segment (start 72.422 45.752) (end 72.644 45.974) (width 0.4) (layer "F.Cu") (net 1) (tstamp 798a0c77-6ffe-477e-9a8d-e5a95d411ca1))
+  (segment (start 69.007881 55.718419) (end 69.007881 47.618019) (width 0.4) (layer "F.Cu") (net 1) (tstamp 7f7bdd35-81c9-4583-8125-34932fcb23bb))
+  (segment (start 72.468 42.88) (end 72.422 42.926) (width 0.4) (layer "F.Cu") (net 1) (tstamp 886a47bc-a8a0-4443-afe3-a714bade71a4))
+  (segment (start 69.342 32.766) (end 70.429 31.679) (width 0.3) (layer "F.Cu") (net 1) (tstamp 8c00ffb4-3e2e-4ef1-900f-2fdee4cfd979))
+  (segment (start 72.468 39.37) (end 72.468 42.88) (width 0.4) (layer "F.Cu") (net 1) (tstamp 9bbb727e-5c4a-4f8d-ba76-2faba2e4d414))
+  (segment (start 61.722 54.941) (end 61.722 51.594) (width 0.4) (layer "F.Cu") (net 1) (tstamp a94982d5-4a8e-4f2c-8137-f91516a4450c))
+  (segment (start 68.055878 32.766) (end 69.342 32.766) (width 0.3) (layer "F.Cu") (net 1) (tstamp ab169002-7cb0-4fb3-9171-5e857396b351))
+  (segment (start 72.39 39.37) (end 72.468 39.37) (width 0.4) (layer "F.Cu") (net 1) (tstamp b8f66175-a190-45f7-a12e-280a88ab3663))
+  (segment (start 70.429 31.679) (end 70.429 25.916) (width 0.3) (layer "F.Cu") (net 1) (tstamp bb5eca57-c084-47ea-a936-c3383d02631e))
+  (segment (start 63.931 57.15) (end 67.5763 57.15) (width 0.4) (layer "F.Cu") (net 1) (tstamp c9871f6b-9c72-4b75-a42a-a5b6334526f5))
+  (segment (start 69.007881 47.618019) (end 69.3524 47.2735) (width 0.4) (layer "F.Cu") (net 1) (tstamp d1ab580a-5f1f-4391-b511-a8d3a5de47b4))
+  (segment (start 69.3524 47.2735) (end 71.3445 47.2735) (width 0.4) (layer "F.Cu") (net 1) (tstamp d8f62de9-1185-4783-ab9c-241325d19c1e))
+  (segment (start 67.9745 37.7485) (end 67.564 37.338) (width 0.3) (layer "F.Cu") (net 1) (tstamp ebcb4f7e-9d0b-4a88-a91f-4b08e48cbdfd))
+  (segment (start 71.3445 47.2735) (end 72.644 45.974) (width 0.4) (layer "F.Cu") (net 1) (tstamp f3853fb1-3fb6-4c45-b612-996f5c26c34d))
+  (segment (start 67.564 33.257878) (end 68.055878 32.766) (width 0.3) (layer "F.Cu") (net 1) (tstamp fe6ffaa4-7474-4c85-8acf-df287b6cc6e0))
+  (segment (start 70.7685 36.4785) (end 71.628 37.338) (width 0.4) (layer "F.Cu") (net 2) (tstamp 02a96378-cded-4b73-bf27-3f8258be0452))
+  (segment (start 76.708 42.926) (end 76.708 52.832) (width 0.4) (layer "F.Cu") (net 2) (tstamp 2067336c-224c-4880-9afa-a04ff83ef5ac))
+  (segment (start 74.256 39.712) (end 74.864 40.32) (width 0.4) (layer "F.Cu") (net 2) (tstamp 260d9b87-197a-4218-838a-39b9325306c3))
+  (segment (start 71.628 37.338) (end 73.66 37.338) (width 0.4) (layer "F.Cu") (net 2) (tstamp 337ecfec-65fe-4993-934d-7d8ffdc8e586))
+  (segment (start 74.864 40.32) (end 75.868 40.32) (width 0.4) (layer "F.Cu") (net 2) (tstamp 3fd3bd2c-431d-49f6-9aff-d429703ecca7))
+  (segment (start 75.868 40.32) (end 76.962 40.32) (width 0.4) (layer "F.Cu") (net 2) (tstamp 4a16eb73-034c-4307-9ec4-2e6ee5d6cbe9))
+  (segment (start 73.66 37.338) (end 74.256 37.934) (width 0.4) (layer "F.Cu") (net 2) (tstamp 76754a92-43e4-432f-88d4-396c823c1b87))
+  (segment (start 74.256 37.934) (end 74.256 39.712) (width 0.4) (layer "F.Cu") (net 2) (tstamp 7786c527-7f37-46a1-8b10-f6b7cef2290c))
+  (segment (start 76.962 40.32) (end 76.962 42.386) (width 0.4) (layer "F.Cu") (net 2) (tstamp 7f808feb-e10a-4e8d-b1b6-6951205b3860))
+  (segment (start 76.962 42.386) (end 76.422 42.926) (width 0.4) (layer "F.Cu") (net 2) (tstamp 89bb4b59-8bc8-432c-b79a-a99c03fa0c5b))
+  (segment (start 74.599 54.941) (end 71.882 54.941) (width 0.4) (layer "F.Cu") (net 2) (tstamp 9b250665-e30e-4b68-b2cf-9d47f332bff5))
+  (segment (start 76.422 42.926) (end 76.708 42.926) (width 0.4) (layer "F.Cu") (net 2) (tstamp 9d90b1ae-acc0-438b-9239-3b0bf96f9118))
+  (segment (start 76.708 52.832) (end 74.599 54.941) (width 0.4) (layer "F.Cu") (net 2) (tstamp a484e569-3e4d-469b-9ecb-dbcb5c5c4087))
+  (segment (start 76.708 42.926) (end 76.962 42.672) (width 0.4) (layer "F.Cu") (net 2) (tstamp d88cbf16-afd9-4137-afeb-c184fcc8716c))
+  (segment (start 69.3024 36.4785) (end 70.7685 36.4785) (width 0.4) (layer "F.Cu") (net 2) (tstamp e4d37f03-b2e6-40b3-8baa-8aba721e9376))
+  (segment (start 74.374489 57.959511) (end 61.515511 57.959511) (width 0.4) (layer "F.Cu") (net 3) (tstamp 154cae14-d567-4ad3-b957-e535c255fc2f))
+  (segment (start 59.69 35.306) (end 63.429 31.567) (width 0.4) (layer "F.Cu") (net 3) (tstamp 3c5b121b-af8b-487d-9abe-e2c527f5c929))
+  (segment (start 59.69 53.9897) (end 59.69 35.306) (width 0.4) (layer "F.Cu") (net 3) (tstamp 59a5f7db-cecd-4f30-b8db-c3b40aca2921))
+  (segment (start 61.515511 57.959511) (end 59.612489 56.056489) (width 0.4) (layer "F.Cu") (net 3) (tstamp 5d269a98-3c11-4d96-a597-4db49b1bea3b))
+  (segment (start 59.612489 56.056489) (end 59.612489 54.067211) (width 0.4) (layer "F.Cu") (net 3) (tstamp 8627066c-528f-4c4c-8d24-d7be129d4b7b))
+  (segment (start 78.962 53.372) (end 74.374489 57.959511) (width 0.4) (layer "F.Cu") (net 3) (tstamp 86fe51e8-be7a-4a5d-99af-b8fa8208e582))
+  (segment (start 76.518 38.42) (end 78.994 40.896) (width 0.4) (layer "F.Cu") (net 3) (tstamp 8c4b98bd-9d5a-48e9-b9a6-9f84b852b96d))
+  (segment (start 78.994 40.896) (end 78.962 40.928) (width 0.4) (layer "F.Cu") (net 3) (tstamp 9f8312d8-53a2-4813-b90f-a14e3a899e74))
+  (segment (start 75.868 38.42) (end 76.518 38.42) (width 0.4) (layer "F.Cu") (net 3) (tstamp a27c5d26-dae8-432e-975d-d4d7b98c2db7))
+  (segment (start 78.962 40.928) (end 78.962 53.372) (width 0.4) (layer "F.Cu") (net 3) (tstamp d8bd2e60-4158-4b14-b3e3-fa1898447152))
+  (segment (start 63.429 31.567) (end 63.429 25.916) (width 0.4) (layer "F.Cu") (net 3) (tstamp da438122-1ad5-4574-997e-2974d469a1bb))
+  (segment (start 59.612489 54.067211) (end 59.69 53.9897) (width 0.4) (layer "F.Cu") (net 3) (tstamp de3ff6de-f2d1-49a8-9b30-c4b8e8d99ea7))
+  (segment (start 65.929 31.385) (end 65.929 26.416) (width 0.3) (layer "F.Cu") (net 4) (tstamp 047a2792-3899-4e7d-a045-c64ff9f8bf1d))
+  (segment (start 69.3024 40.2885) (end 66.7045 40.2885) (width 0.3) (layer "F.Cu") (net 4) (tstamp 4d4d8e62-0538-44b6-89ba-8c2e4a49bcd4))
+  (segment (start 65.929 28.929702) (end 65.929 26.416) (width 0.4) (layer "F.Cu") (net 4) (tstamp b35b9bf8-d0d3-480c-8956-d41f7e1e55ec))
+  (segment (start 66.04 31.496) (end 65.929 31.385) (width 0.3) (layer "F.Cu") (net 4) (tstamp b919ca47-ac0d-4db9-b515-25954dc23662))
+  (segment (start 66.04 39.624) (end 66.04 31.496) (width 0.3) (layer "F.Cu") (net 4) (tstamp c9f3535d-11db-4ac9-9220-f092432d4272))
+  (segment (start 66.073849 29.074551) (end 65.929 28.929702) (width 0.4) (layer "F.Cu") (net 4) (tstamp ca78bc3a-1a93-43d7-8313-02bcdae2b1f3))
+  (segment (start 66.7045 40.2885) (end 66.04 39.624) (width 0.3) (layer "F.Cu") (net 4) (tstamp f808c68b-a25b-4aa1-9f3d-69d898d7b16b))
+  (segment (start 66.802 31.75) (end 66.802 38.608) (width 0.3) (layer "F.Cu") (net 5) (tstamp 210e702e-8fff-4d71-b531-7920637e2787))
+  (segment (start 67.929 26.416) (end 67.794489 26.550511) (width 0.4) (layer "F.Cu") (net 5) (tstamp 2db13a45-4504-4a10-86ad-1009b20d9f40))
+  (segment (start 67.929 30.623) (end 66.802 31.75) (width 0.3) (layer "F.Cu") (net 5) (tstamp 50d814dd-ca5c-4dc9-bed1-68de34f7ff38))
+  (segment (start 67.2125 39.0185) (end 69.3024 39.0185) (width 0.3) (layer "F.Cu") (net 5) (tstamp a66a0eb2-226c-4a5f-aa50-44d77aafdf70))
+  (segment (start 67.929 26.416) (end 67.929 30.623) (width 0.3) (layer "F.Cu") (net 5) (tstamp e1209164-d2e2-4f23-8b04-475bb4af84ad))
+  (segment (start 66.802 38.608) (end 67.2125 39.0185) (width 0.3) (layer "F.Cu") (net 5) (tstamp e33dce2f-b9b0-4e98-bc4c-7d5d149d6ef3))
+  (segment (start 66.802 52.102) (end 66.008 51.308) (width 0.4) (layer "F.Cu") (net 6) (tstamp 0fabe01b-9514-461a-add6-034ce0f40ecb))
+  (segment (start 63.103378 37.7485) (end 64.3524 37.7485) (width 0.4) (layer "F.Cu") (net 6) (tstamp 188db464-a508-4088-8b6d-9f5a98b981da))
+  (segment (start 61.214 47.752) (end 61.214 39.637878) (width 0.4) (layer "F.Cu") (net 6) (tstamp 4c18f056-0f0c-47dd-9c79-df99ce5a3298))
+  (segment (start 64.77 49.276) (end 62.738 49.276) (width 0.4) (layer "F.Cu") (net 6) (tstamp 5800e398-a19a-433b-98e0-109bdc14960c))
+  (segment (start 66.008 50.514) (end 64.77 49.276) (width 0.4) (layer "F.Cu") (net 6) (tstamp 7b79854c-2893-4850-bd34-2e22cf19756a))
+  (segment (start 66.008 51.308) (end 66.008 50.514) (width 0.4) (layer "F.Cu") (net 6) (tstamp 80cace67-0727-4ab3-82c6-572ac8f80451))
+  (segment (start 62.738 49.276) (end 61.214 47.752) (width 0.4) (layer "F.Cu") (net 6) (tstamp ebb1389e-0da0-4da7-8a35-faedbcaa7a95))
+  (segment (start 66.802 54.941) (end 66.802 52.102) (width 0.4) (layer "F.Cu") (net 6) (tstamp edf82e64-c6bd-419b-abbe-66ff5cdd872b))
+  (segment (start 61.214 39.637878) (end 63.103378 37.7485) (width 0.4) (layer "F.Cu") (net 6) (tstamp fe112a59-725c-401d-b6bb-b48c48e5f807))
+  (segment (start 71.5305 35.2085) (end 72.136 35.814) (width 0.4) (layer "F.Cu") (net 7) (tstamp 3c041346-2342-41b1-9ae0-75701f1a16ed))
+  (segment (start 72.136 35.814) (end 73.946 35.814) (width 0.4) (layer "F.Cu") (net 7) (tstamp 8f7b78d5-1627-41b4-8313-8c6b7ec0ee01))
+  (segment (start 69.3024 35.2085) (end 71.5305 35.2085) (width 0.4) (layer "F.Cu") (net 7) (tstamp d310b487-3773-4ce5-9942-b7018f993c77))
+  (segment (start 62.023511 41.222211) (end 62.957222 40.2885) (width 0.4) (layer "F.Cu") (net 8) (tstamp 2dec1ee0-4fd4-4795-a1db-266cddb29ba4))
+  (segment (start 62.5135 47.2735) (end 62.023511 46.783511) (width 0.4) (layer "F.Cu") (net 8) (tstamp 3643d4e6-06d0-4339-984c-2e787368fbcc))
+  (segment (start 64.3024 47.2735) (end 62.5135 47.2735) (width 0.4) (layer "F.Cu") (net 8) (tstamp 7634bc7f-484a-4260-97c4-fce2ff061701))
+  (segment (start 62.957222 40.2885) (end 64.3524 40.2885) (width 0.4) (layer "F.Cu") (net 8) (tstamp bf8291ab-7c51-41c8-b1ac-0d97a1059cd2))
+  (segment (start 62.023511 46.783511) (end 62.023511 41.222211) (width 0.4) (layer "F.Cu") (net 8) (tstamp da365731-9b01-4a52-8caa-a8c36eb3d883))
+  (segment (start 69.3524 41.6085) (end 69.3024 41.5585) (width 0.4) (layer "F.Cu") (net 9) (tstamp b34588a8-1417-4351-ab8d-184680f43c1f))
+  (segment (start 69.3524 44.7335) (end 69.3524 41.6085) (width 0.4) (layer "F.Cu") (net 9) (tstamp c622452a-f479-4323-9ad9-04db8abf27e0))
+  (segment (start 64.3024 41.6085) (end 64.3524 41.5585) (width 0.4) (layer "F.Cu") (net 10) (tstamp dc787627-3657-4953-b0cf-ca74f369d820))
+  (segment (start 64.3024 44.7335) (end 64.3024 41.6085) (width 0.4) (layer "F.Cu") (net 10) (tstamp e7287e6b-c861-4e14-a0c9-901945abbfc0))
+  (segment (start 77.946 33.274) (end 77.946 35.814) (width 0.4) (layer "F.Cu") (net 13) (tstamp 425f99c4-37bd-4d25-9e4f-5f48bafbcd03))
+  (segment (start 72.136 33.274) (end 73.946 33.274) (width 0.4) (layer "F.Cu") (net 14) (tstamp 0b71f8d2-3097-4cea-abd6-6f18d197bcff))
+  (segment (start 71.4715 33.9385) (end 72.136 33.274) (width 0.4) (layer "F.Cu") (net 14) (tstamp 570828c0-d606-41a0-b767-8b34cf9929e8))
+  (segment (start 69.3024 33.9385) (end 71.4715 33.9385) (width 0.4) (layer "F.Cu") (net 14) (tstamp e60e81d1-1a76-403b-a669-30d647249d6f))
+
+)
diff --git a/potentiometer/samd11c14_pot.kicad_pro b/potentiometer/samd11c14_pot.kicad_pro
new file mode 100644
index 0000000000000000000000000000000000000000..8aecfc868e57bf03f2d687f3dfb6448d0ea43a93
--- /dev/null
+++ b/potentiometer/samd11c14_pot.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": 16.9,
+          "height": 16.3,
+          "width": 16.3
+        },
+        "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.41,
+        "min_copper_edge_clearance": 0.19999999999999998,
+        "min_hole_clearance": 0.41,
+        "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.41,
+        "solder_mask_clearance": 0.0,
+        "solder_mask_min_width": 0.0,
+        "use_height_for_length_calcs": true
+      },
+      "track_widths": [
+        0.0,
+        0.3,
+        0.4
+      ],
+      "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": "samd11c14_pot.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": [
+    [
+      "d4eb2907-309b-4782-9005-ba4144c8413e",
+      ""
+    ]
+  ],
+  "text_variables": {}
+}
diff --git a/potentiometer/samd11c14_pot.kicad_sch b/potentiometer/samd11c14_pot.kicad_sch
new file mode 100644
index 0000000000000000000000000000000000000000..4807b52f27e1cadcce4b69b872b4a1565e5888e8
--- /dev/null
+++ b/potentiometer/samd11c14_pot.kicad_sch
@@ -0,0 +1,1231 @@
+(kicad_sch (version 20211123) (generator eeschema)
+
+  (uuid d4eb2907-309b-4782-9005-ba4144c8413e)
+
+  (paper "A4")
+
+  (lib_symbols
+    (symbol "Device:R" (pin_numbers hide) (pin_names (offset 0)) (in_bom yes) (on_board yes)
+      (property "Reference" "R" (id 0) (at 2.032 0 90)
+        (effects (font (size 1.27 1.27)))
+      )
+      (property "Value" "R" (id 1) (at 0 0 90)
+        (effects (font (size 1.27 1.27)))
+      )
+      (property "Footprint" "" (id 2) (at -1.778 0 90)
+        (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" "R res resistor" (id 4) (at 0 0 0)
+        (effects (font (size 1.27 1.27)) hide)
+      )
+      (property "ki_description" "Resistor" (id 5) (at 0 0 0)
+        (effects (font (size 1.27 1.27)) hide)
+      )
+      (property "ki_fp_filters" "R_*" (id 6) (at 0 0 0)
+        (effects (font (size 1.27 1.27)) hide)
+      )
+      (symbol "R_0_1"
+        (rectangle (start -1.016 -2.54) (end 1.016 2.54)
+          (stroke (width 0.254) (type default) (color 0 0 0 0))
+          (fill (type none))
+        )
+      )
+      (symbol "R_1_1"
+        (pin passive line (at 0 3.81 270) (length 1.27)
+          (name "~" (effects (font (size 1.27 1.27))))
+          (number "1" (effects (font (size 1.27 1.27))))
+        )
+        (pin passive line (at 0 -3.81 90) (length 1.27)
+          (name "~" (effects (font (size 1.27 1.27))))
+          (number "2" (effects (font (size 1.27 1.27))))
+        )
+      )
+    )
+    (symbol "fab:C" (pin_numbers hide) (pin_names (offset 0.254)) (in_bom yes) (on_board yes)
+      (property "Reference" "C" (id 0) (at 0.635 2.54 0)
+        (effects (font (size 1.27 1.27)) (justify left))
+      )
+      (property "Value" "C" (id 1) (at 0.635 -2.54 0)
+        (effects (font (size 1.27 1.27)) (justify left))
+      )
+      (property "Footprint" "fab:C_1206" (id 2) (at 0.9652 -3.81 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" "cap capacitor" (id 4) (at 0 0 0)
+        (effects (font (size 1.27 1.27)) hide)
+      )
+      (property "ki_description" "Unpolarized capacitor" (id 5) (at 0 0 0)
+        (effects (font (size 1.27 1.27)) hide)
+      )
+      (property "ki_fp_filters" "C_*" (id 6) (at 0 0 0)
+        (effects (font (size 1.27 1.27)) hide)
+      )
+      (symbol "C_0_1"
+        (polyline
+          (pts
+            (xy -2.032 -0.762)
+            (xy 2.032 -0.762)
+          )
+          (stroke (width 0.508) (type default) (color 0 0 0 0))
+          (fill (type none))
+        )
+        (polyline
+          (pts
+            (xy -2.032 0.762)
+            (xy 2.032 0.762)
+          )
+          (stroke (width 0.508) (type default) (color 0 0 0 0))
+          (fill (type none))
+        )
+      )
+      (symbol "C_1_1"
+        (pin passive line (at 0 3.81 270) (length 2.794)
+          (name "~" (effects (font (size 1.27 1.27))))
+          (number "1" (effects (font (size 1.27 1.27))))
+        )
+        (pin passive line (at 0 -3.81 90) (length 2.794)
+          (name "~" (effects (font (size 1.27 1.27))))
+          (number "2" (effects (font (size 1.27 1.27))))
+        )
+      )
+    )
+    (symbol "fab:Conn_PinHeader_2x02_SWD_P2.54mm_Vertical_SMD" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
+      (property "Reference" "J" (id 0) (at -6.35 7.62 0)
+        (effects (font (size 1.27 1.27)) (justify left bottom))
+      )
+      (property "Value" "Conn_PinHeader_2x02_SWD_P2.54mm_Vertical_SMD" (id 1) (at -6.35 5.08 0)
+        (effects (font (size 1.27 1.27)) (justify left bottom))
+      )
+      (property "Footprint" "fab:PinHeader_2x02_SWD_P2.54mm_Vertical_SMD" (id 2) (at 0 0 0)
+        (effects (font (size 1.27 1.27)) hide)
+      )
+      (property "Datasheet" "https://cdn.amphenol-icc.com/media/wysiwyg/files/drawing/95278.pdf" (id 3) (at 0 0 0)
+        (effects (font (size 1.27 1.27)) hide)
+      )
+      (property "ki_keywords" "connector swd programming jtag" (id 4) (at 0 0 0)
+        (effects (font (size 1.27 1.27)) hide)
+      )
+      (property "ki_description" "Connector Header Surface Mount 4 position 0.100\" (2.54mm) for programming D11C chips" (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_PinHeader_2x02_SWD_P2.54mm_Vertical_SMD_1_1"
+        (rectangle (start -6.35 3.81) (end 6.35 -3.81)
+          (stroke (width 0.254) (type default) (color 0 0 0 0))
+          (fill (type background))
+        )
+        (pin passive line (at -10.16 1.27 0) (length 3.81)
+          (name "GND" (effects (font (size 1.27 1.27))))
+          (number "1" (effects (font (size 1.27 1.27))))
+        )
+        (pin passive line (at 10.16 1.27 180) (length 3.81)
+          (name "RST" (effects (font (size 1.27 1.27))))
+          (number "2" (effects (font (size 1.27 1.27))))
+        )
+        (pin passive line (at -10.16 -1.27 0) (length 3.81)
+          (name "DIO" (effects (font (size 1.27 1.27))))
+          (number "3" (effects (font (size 1.27 1.27))))
+        )
+        (pin passive line (at 10.16 -1.27 180) (length 3.81)
+          (name "CLK" (effects (font (size 1.27 1.27))))
+          (number "4" (effects (font (size 1.27 1.27))))
+        )
+      )
+    )
+    (symbol "fab:Conn_USB_A_Plain" (in_bom yes) (on_board yes)
+      (property "Reference" "P" (id 0) (at -6.35 10.16 0)
+        (effects (font (size 1.27 1.27)) (justify left bottom))
+      )
+      (property "Value" "Conn_USB_A_Plain" (id 1) (at -6.35 7.62 0)
+        (effects (font (size 1.27 1.27)) (justify left bottom))
+      )
+      (property "Footprint" "fab:Conn_USB_A_Plain" (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" "usb type-a connector plug" (id 4) (at 0 0 0)
+        (effects (font (size 1.27 1.27)) hide)
+      )
+      (property "ki_description" "Plain USB connector that can be milled with as PCB milling machine " (id 5) (at 0 0 0)
+        (effects (font (size 1.27 1.27)) hide)
+      )
+      (symbol "Conn_USB_A_Plain_0_1"
+        (rectangle (start -6.35 6.35) (end 6.35 -6.35)
+          (stroke (width 0.254) (type default) (color 0 0 0 0))
+          (fill (type background))
+        )
+        (rectangle (start -1.27 -3.81) (end 5.08 -5.08)
+          (stroke (width 0) (type default) (color 0 0 0 0))
+          (fill (type none))
+        )
+        (rectangle (start -1.27 -1.27) (end 2.54 -2.54)
+          (stroke (width 0) (type default) (color 0 0 0 0))
+          (fill (type none))
+        )
+        (rectangle (start -1.27 2.54) (end 2.54 1.27)
+          (stroke (width 0) (type default) (color 0 0 0 0))
+          (fill (type none))
+        )
+        (rectangle (start -1.27 5.08) (end 5.08 3.81)
+          (stroke (width 0) (type default) (color 0 0 0 0))
+          (fill (type none))
+        )
+      )
+      (symbol "Conn_USB_A_Plain_1_1"
+        (pin power_out line (at -8.89 3.81 0) (length 2.54)
+          (name "5V" (effects (font (size 1.27 1.27))))
+          (number "1" (effects (font (size 1.27 1.27))))
+        )
+        (pin bidirectional line (at -8.89 1.27 0) (length 2.54)
+          (name "D-" (effects (font (size 1.27 1.27))))
+          (number "2" (effects (font (size 1.27 1.27))))
+        )
+        (pin bidirectional line (at -8.89 -1.27 0) (length 2.54)
+          (name "D+" (effects (font (size 1.27 1.27))))
+          (number "3" (effects (font (size 1.27 1.27))))
+        )
+        (pin power_out line (at -8.89 -3.81 0) (length 2.54)
+          (name "GND" (effects (font (size 1.27 1.27))))
+          (number "4" (effects (font (size 1.27 1.27))))
+        )
+      )
+    )
+    (symbol "fab:LED" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
+      (property "Reference" "D" (id 0) (at 0 2.54 0)
+        (effects (font (size 1.27 1.27)))
+      )
+      (property "Value" "LED" (id 1) (at 0 -2.54 0)
+        (effects (font (size 1.27 1.27)))
+      )
+      (property "Footprint" "fab:LED_1206" (id 2) (at 0 0 0)
+        (effects (font (size 1.27 1.27)) hide)
+      )
+      (property "Datasheet" "https://optoelectronics.liteon.com/upload/download/DS-22-98-0002/LTST-C150CKT.pdf" (id 3) (at 0 0 0)
+        (effects (font (size 1.27 1.27)) hide)
+      )
+      (property "ki_keywords" "LED diode 1206" (id 4) (at 0 0 0)
+        (effects (font (size 1.27 1.27)) hide)
+      )
+      (property "ki_description" "Light emitting diode, Lite-On Inc. LTST" (id 5) (at 0 0 0)
+        (effects (font (size 1.27 1.27)) hide)
+      )
+      (property "ki_fp_filters" "LED_*" (id 6) (at 0 0 0)
+        (effects (font (size 1.27 1.27)) hide)
+      )
+      (symbol "LED_0_1"
+        (polyline
+          (pts
+            (xy -1.27 -1.27)
+            (xy -1.27 1.27)
+          )
+          (stroke (width 0.2032) (type default) (color 0 0 0 0))
+          (fill (type none))
+        )
+        (polyline
+          (pts
+            (xy -1.27 0)
+            (xy 1.27 0)
+          )
+          (stroke (width 0) (type default) (color 0 0 0 0))
+          (fill (type none))
+        )
+        (polyline
+          (pts
+            (xy 1.27 -1.27)
+            (xy 1.27 1.27)
+            (xy -1.27 0)
+            (xy 1.27 -1.27)
+          )
+          (stroke (width 0.2032) (type default) (color 0 0 0 0))
+          (fill (type none))
+        )
+        (polyline
+          (pts
+            (xy -3.048 -0.762)
+            (xy -4.572 -2.286)
+            (xy -3.81 -2.286)
+            (xy -4.572 -2.286)
+            (xy -4.572 -1.524)
+          )
+          (stroke (width 0) (type default) (color 0 0 0 0))
+          (fill (type none))
+        )
+        (polyline
+          (pts
+            (xy -1.778 -0.762)
+            (xy -3.302 -2.286)
+            (xy -2.54 -2.286)
+            (xy -3.302 -2.286)
+            (xy -3.302 -1.524)
+          )
+          (stroke (width 0) (type default) (color 0 0 0 0))
+          (fill (type none))
+        )
+      )
+      (symbol "LED_1_1"
+        (pin passive line (at -3.81 0 0) (length 2.54)
+          (name "K" (effects (font (size 1.27 1.27))))
+          (number "1" (effects (font (size 1.27 1.27))))
+        )
+        (pin passive line (at 3.81 0 180) (length 2.54)
+          (name "A" (effects (font (size 1.27 1.27))))
+          (number "2" (effects (font (size 1.27 1.27))))
+        )
+      )
+    )
+    (symbol "fab:Microcontroller_ATSAMD11C14A-SSUT" (in_bom yes) (on_board yes)
+      (property "Reference" "U" (id 0) (at -10.16 16.51 0)
+        (effects (font (size 1.27 1.27)) (justify left))
+      )
+      (property "Value" "Microcontroller_ATSAMD11C14A-SSUT" (id 1) (at 1.27 16.51 0)
+        (effects (font (size 1.27 1.27)) (justify left))
+      )
+      (property "Footprint" "fab:SOIC-14_3.9x8.7mm_P1.27mm" (id 2) (at 0 -26.67 0)
+        (effects (font (size 1.27 1.27)) hide)
+      )
+      (property "Datasheet" "https://ww1.microchip.com/downloads/en/DeviceDoc/Atmel-42363-SAM-D11_Datasheet.pdf" (id 3) (at 0 -17.78 0)
+        (effects (font (size 1.27 1.27)) hide)
+      )
+      (property "ki_keywords" "arm sam d11c 32-bit 48mhz 16kb soic-14" (id 4) (at 0 0 0)
+        (effects (font (size 1.27 1.27)) hide)
+      )
+      (property "ki_description" "IC MCU 32BIT 16KB FLASH 14SOIC" (id 5) (at 0 0 0)
+        (effects (font (size 1.27 1.27)) hide)
+      )
+      (property "ki_fp_filters" "SOIC*3.9x8.7mm*P1.27mm*" (id 6) (at 0 0 0)
+        (effects (font (size 1.27 1.27)) hide)
+      )
+      (symbol "Microcontroller_ATSAMD11C14A-SSUT_0_1"
+        (rectangle (start -10.16 15.24) (end 10.16 -15.24)
+          (stroke (width 0.254) (type default) (color 0 0 0 0))
+          (fill (type background))
+        )
+      )
+      (symbol "Microcontroller_ATSAMD11C14A-SSUT_1_1"
+        (pin bidirectional line (at 12.7 2.54 180) (length 2.54)
+          (name "PA05" (effects (font (size 1.27 1.27))))
+          (number "1" (effects (font (size 1.27 1.27))))
+        )
+        (pin bidirectional line (at 12.7 -7.62 180) (length 2.54)
+          (name "PA25" (effects (font (size 1.27 1.27))))
+          (number "10" (effects (font (size 1.27 1.27))))
+        )
+        (pin power_in line (at 0 -17.78 90) (length 2.54)
+          (name "GND" (effects (font (size 1.27 1.27))))
+          (number "11" (effects (font (size 1.27 1.27))))
+        )
+        (pin power_in line (at 0 17.78 270) (length 2.54)
+          (name "VDD" (effects (font (size 1.27 1.27))))
+          (number "12" (effects (font (size 1.27 1.27))))
+        )
+        (pin bidirectional line (at 12.7 7.62 180) (length 2.54)
+          (name "PA02" (effects (font (size 1.27 1.27))))
+          (number "13" (effects (font (size 1.27 1.27))))
+        )
+        (pin bidirectional line (at 12.7 5.08 180) (length 2.54)
+          (name "PA04" (effects (font (size 1.27 1.27))))
+          (number "14" (effects (font (size 1.27 1.27))))
+        )
+        (pin bidirectional line (at -12.7 -5.08 0) (length 2.54)
+          (name "PA08/XIN" (effects (font (size 1.27 1.27))))
+          (number "2" (effects (font (size 1.27 1.27))))
+        )
+        (pin bidirectional line (at -12.7 -7.62 0) (length 2.54)
+          (name "PA09/XOUT" (effects (font (size 1.27 1.27))))
+          (number "3" (effects (font (size 1.27 1.27))))
+        )
+        (pin bidirectional line (at 12.7 0 180) (length 2.54)
+          (name "PA14" (effects (font (size 1.27 1.27))))
+          (number "4" (effects (font (size 1.27 1.27))))
+        )
+        (pin bidirectional line (at 12.7 -2.54 180) (length 2.54)
+          (name "PA15" (effects (font (size 1.27 1.27))))
+          (number "5" (effects (font (size 1.27 1.27))))
+        )
+        (pin bidirectional line (at -12.7 7.62 0) (length 2.54)
+          (name "PA28/~{RST}" (effects (font (size 1.27 1.27))))
+          (number "6" (effects (font (size 1.27 1.27))))
+        )
+        (pin bidirectional line (at -12.7 2.54 0) (length 2.54)
+          (name "PA30/SWCLK" (effects (font (size 1.27 1.27))))
+          (number "7" (effects (font (size 1.27 1.27))))
+        )
+        (pin bidirectional line (at -12.7 0 0) (length 2.54)
+          (name "PA31/SWDIO" (effects (font (size 1.27 1.27))))
+          (number "8" (effects (font (size 1.27 1.27))))
+        )
+        (pin bidirectional line (at 12.7 -5.08 180) (length 2.54)
+          (name "PA24" (effects (font (size 1.27 1.27))))
+          (number "9" (effects (font (size 1.27 1.27))))
+        )
+      )
+    )
+    (symbol "fab:Power_+3V3" (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" "Power_+3V3" (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 \"+3V3\"" (id 5) (at 0 0 0)
+        (effects (font (size 1.27 1.27)) hide)
+      )
+      (symbol "Power_+3V3_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 "Power_+3V3_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 "fab: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" "Power_+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 "Power_+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 "Power_+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 "fab: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" "Power_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 "Power_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 "Power_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))))
+        )
+      )
+    )
+    (symbol "fab:R_POT_10K_Trimmer" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
+      (property "Reference" "RV" (id 0) (at -4.445 0 90)
+        (effects (font (size 1.27 1.27)))
+      )
+      (property "Value" "R_POT_10K_Trimmer" (id 1) (at -2.54 0 90)
+        (effects (font (size 1.27 1.27)))
+      )
+      (property "Footprint" "fab:Potentiometer_TT_Model-23_4.5x5.0x3.0mm" (id 2) (at 0 0 0)
+        (effects (font (size 1.27 1.27)) hide)
+      )
+      (property "Datasheet" "https://www.ttelectronics.com/TTElectronics/media/ProductFiles/Trimmers/Datasheets/23.pdf" (id 3) (at 0 0 0)
+        (effects (font (size 1.27 1.27)) hide)
+      )
+      (property "ki_keywords" "resistor variable trimmer" (id 4) (at 0 0 0)
+        (effects (font (size 1.27 1.27)) hide)
+      )
+      (property "ki_description" "Trimmer Potentiometer 10K TT Electronics 23BR10KLFTR" (id 5) (at 0 0 0)
+        (effects (font (size 1.27 1.27)) hide)
+      )
+      (property "ki_fp_filters" "Potentiometer*" (id 6) (at 0 0 0)
+        (effects (font (size 1.27 1.27)) hide)
+      )
+      (symbol "R_POT_10K_Trimmer_0_1"
+        (polyline
+          (pts
+            (xy 2.54 0)
+            (xy 1.524 0)
+          )
+          (stroke (width 0) (type default) (color 0 0 0 0))
+          (fill (type none))
+        )
+        (polyline
+          (pts
+            (xy 1.143 0)
+            (xy 2.286 0.508)
+            (xy 2.286 -0.508)
+            (xy 1.143 0)
+          )
+          (stroke (width 0) (type default) (color 0 0 0 0))
+          (fill (type outline))
+        )
+        (rectangle (start 1.016 2.54) (end -1.016 -2.54)
+          (stroke (width 0.254) (type default) (color 0 0 0 0))
+          (fill (type none))
+        )
+      )
+      (symbol "R_POT_10K_Trimmer_1_1"
+        (pin passive line (at 0 3.81 270) (length 1.27)
+          (name "1" (effects (font (size 1.27 1.27))))
+          (number "1" (effects (font (size 1.27 1.27))))
+        )
+        (pin passive line (at 3.81 0 180) (length 1.27)
+          (name "2" (effects (font (size 1.27 1.27))))
+          (number "2" (effects (font (size 1.27 1.27))))
+        )
+        (pin passive line (at 0 -3.81 90) (length 1.27)
+          (name "3" (effects (font (size 1.27 1.27))))
+          (number "3" (effects (font (size 1.27 1.27))))
+        )
+      )
+    )
+    (symbol "fab:Regulator_Linear_LM3480-3.3V-100mA" (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" "Regulator_Linear_LM3480-3.3V-100mA" (id 1) (at 0 3.175 0)
+        (effects (font (size 1.27 1.27)) (justify left))
+      )
+      (property "Footprint" "fab:SOT-23" (id 2) (at 0 5.715 0)
+        (effects (font (size 1.27 1.27) italic) hide)
+      )
+      (property "Datasheet" "https://www.ti.com/lit/ds/symlink/lm3480.pdf" (id 3) (at 0 0 0)
+        (effects (font (size 1.27 1.27)) hide)
+      )
+      (property "ki_keywords" "ldo linear fixed positive" (id 4) (at 0 0 0)
+        (effects (font (size 1.27 1.27)) hide)
+      )
+      (property "ki_description" "100mA, Quasi Low Dropout Voltage Regulator, 3.3V positive fixed output, SOT-23 package" (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 "Regulator_Linear_LM3480-3.3V-100mA_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 "Regulator_Linear_LM3480-3.3V-100mA_1_1"
+        (pin power_out line (at 7.62 0 180) (length 2.54)
+          (name "VO" (effects (font (size 1.27 1.27))))
+          (number "1" (effects (font (size 1.27 1.27))))
+        )
+        (pin power_in line (at -7.62 0 0) (length 2.54)
+          (name "VI" (effects (font (size 1.27 1.27))))
+          (number "2" (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 "3" (effects (font (size 1.27 1.27))))
+        )
+      )
+    )
+  )
+
+  (junction (at 100.33 71.12) (diameter 0) (color 0 0 0 0)
+    (uuid 5280e494-4893-4ca6-a796-20c69b269c6a)
+  )
+  (junction (at 86.36 105.41) (diameter 0) (color 0 0 0 0)
+    (uuid 6775d502-c047-4ea5-9a55-c29f79ba0a2b)
+  )
+  (junction (at 76.2 113.03) (diameter 0) (color 0 0 0 0)
+    (uuid 8755b135-b5fe-48fe-9109-8ce3dfbe8780)
+  )
+  (junction (at 73.66 71.12) (diameter 0) (color 0 0 0 0)
+    (uuid befb29b5-ce4b-4aab-85e9-e28e0326f350)
+  )
+  (junction (at 87.63 78.74) (diameter 0) (color 0 0 0 0)
+    (uuid e0147b3f-ea18-4d99-bfaf-f95b85a0e2f6)
+  )
+
+  (wire (pts (xy 95.25 71.12) (xy 100.33 71.12))
+    (stroke (width 0) (type default) (color 0 0 0 0))
+    (uuid 0c4d911f-f4bf-474d-b813-fab717bd4418)
+  )
+  (wire (pts (xy 62.23 71.12) (xy 73.66 71.12))
+    (stroke (width 0) (type default) (color 0 0 0 0))
+    (uuid 24399ac7-8f3d-4e06-825a-bb83e4a014b6)
+  )
+  (wire (pts (xy 76.2 119.38) (xy 76.2 113.03))
+    (stroke (width 0) (type default) (color 0 0 0 0))
+    (uuid 52b511f4-20fa-4b74-98da-f68593657639)
+  )
+  (wire (pts (xy 87.63 78.74) (xy 100.33 78.74))
+    (stroke (width 0) (type default) (color 0 0 0 0))
+    (uuid 5dcc37f5-3658-4ad8-9997-22221290e6a5)
+  )
+  (wire (pts (xy 73.66 78.74) (xy 87.63 78.74))
+    (stroke (width 0) (type default) (color 0 0 0 0))
+    (uuid 72108bb3-4a3a-447b-b316-7150ef08fd16)
+  )
+  (wire (pts (xy 121.92 53.34) (xy 129.54 53.34))
+    (stroke (width 0) (type default) (color 0 0 0 0))
+    (uuid 75d77461-6cfe-4f3d-9213-d5fb4e02a6c9)
+  )
+  (wire (pts (xy 73.66 71.12) (xy 80.01 71.12))
+    (stroke (width 0) (type default) (color 0 0 0 0))
+    (uuid 7a164449-6085-4f9a-a434-49b1e7c564d1)
+  )
+  (wire (pts (xy 80.01 105.41) (xy 86.36 105.41))
+    (stroke (width 0) (type default) (color 0 0 0 0))
+    (uuid a7992b15-313d-4cdd-ba47-02dcc30ab02a)
+  )
+  (wire (pts (xy 76.2 109.22) (xy 76.2 113.03))
+    (stroke (width 0) (type default) (color 0 0 0 0))
+    (uuid d0240a6f-e390-4a0b-99a5-203a64802880)
+  )
+  (wire (pts (xy 76.2 97.79) (xy 76.2 101.6))
+    (stroke (width 0) (type default) (color 0 0 0 0))
+    (uuid d4570b72-0cbc-4d5e-90a4-a03b03a10976)
+  )
+  (wire (pts (xy 100.33 71.12) (xy 114.3 71.12))
+    (stroke (width 0) (type default) (color 0 0 0 0))
+    (uuid e669b261-cf45-489f-bae7-1627be261357)
+  )
+  (wire (pts (xy 76.2 113.03) (xy 86.36 113.03))
+    (stroke (width 0) (type default) (color 0 0 0 0))
+    (uuid ea9c80b4-bd77-49a0-87be-b65afb484a7e)
+  )
+  (wire (pts (xy 93.98 105.41) (xy 86.36 105.41))
+    (stroke (width 0) (type default) (color 0 0 0 0))
+    (uuid fd869977-3741-498c-9fc2-97726c70209a)
+  )
+
+  (global_label "LED_A" (shape input) (at 177.8 83.82 0) (fields_autoplaced)
+    (effects (font (size 1.27 1.27)) (justify left))
+    (uuid 0b633b30-89d7-4549-bba1-f799e9f1e13c)
+    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 185.7164 83.7406 0)
+      (effects (font (size 1.27 1.27)) (justify left) hide)
+    )
+  )
+  (global_label "D+" (shape input) (at 177.8 96.52 0) (fields_autoplaced)
+    (effects (font (size 1.27 1.27)) (justify left))
+    (uuid 0e012e18-4b5b-4769-ae7d-b650f0bca858)
+    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 183.0555 96.5994 0)
+      (effects (font (size 1.27 1.27)) (justify left) hide)
+    )
+  )
+  (global_label "DIO" (shape input) (at 173.99 135.89 0) (fields_autoplaced)
+    (effects (font (size 1.27 1.27)) (justify left))
+    (uuid 174881a6-8498-4243-b842-ea6fe03ba2ff)
+    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 179.6083 135.8106 0)
+      (effects (font (size 1.27 1.27)) (justify left) hide)
+    )
+  )
+  (global_label "POT" (shape input) (at 177.8 88.9 0) (fields_autoplaced)
+    (effects (font (size 1.27 1.27)) (justify left))
+    (uuid 33be55d4-3ea9-48d1-8a09-f2e9e0678d0c)
+    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 183.7812 88.8206 0)
+      (effects (font (size 1.27 1.27)) (justify left) hide)
+    )
+  )
+  (global_label "RST" (shape input) (at 153.67 138.43 180) (fields_autoplaced)
+    (effects (font (size 1.27 1.27)) (justify right))
+    (uuid 5bb7258d-263a-4a16-9939-91ee2427587a)
+    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 147.8098 138.3506 0)
+      (effects (font (size 1.27 1.27)) (justify right) hide)
+    )
+  )
+  (global_label "RST" (shape input) (at 152.4 81.28 180) (fields_autoplaced)
+    (effects (font (size 1.27 1.27)) (justify right))
+    (uuid 680e55ab-5231-4153-a892-b2f8b22b868f)
+    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 146.5398 81.2006 0)
+      (effects (font (size 1.27 1.27)) (justify right) hide)
+    )
+  )
+  (global_label "D-" (shape input) (at 132.08 53.34 270) (fields_autoplaced)
+    (effects (font (size 1.27 1.27)) (justify right))
+    (uuid 7414d656-dd39-46ef-a521-c9f3f1f6c66c)
+    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 132.0006 58.5955 90)
+      (effects (font (size 1.27 1.27)) (justify right) hide)
+    )
+  )
+  (global_label "POT" (shape input) (at 93.98 105.41 0) (fields_autoplaced)
+    (effects (font (size 1.27 1.27)) (justify left))
+    (uuid 778a6e9b-8450-4751-9ce7-950e829a0e06)
+    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 99.9612 105.3306 0)
+      (effects (font (size 1.27 1.27)) (justify left) hide)
+    )
+  )
+  (global_label "CLK" (shape input) (at 152.4 86.36 180) (fields_autoplaced)
+    (effects (font (size 1.27 1.27)) (justify right))
+    (uuid 8cc62a30-4fca-4a7a-be68-a179ae5a8404)
+    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 146.4188 86.2806 0)
+      (effects (font (size 1.27 1.27)) (justify right) hide)
+    )
+  )
+  (global_label "D-" (shape input) (at 177.8 93.98 0) (fields_autoplaced)
+    (effects (font (size 1.27 1.27)) (justify left))
+    (uuid 997de59d-3188-4e0f-ac3c-2979f0d9b4b8)
+    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 183.0555 94.0594 0)
+      (effects (font (size 1.27 1.27)) (justify left) hide)
+    )
+  )
+  (global_label "LED_C" (shape input) (at 198.12 104.14 270) (fields_autoplaced)
+    (effects (font (size 1.27 1.27)) (justify right))
+    (uuid 9d3e7d9e-f1a1-4647-8ac3-71e6b7055101)
+    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 198.1994 112.2379 90)
+      (effects (font (size 1.27 1.27)) (justify right) hide)
+    )
+  )
+  (global_label "LED_A" (shape input) (at 198.12 88.9 90) (fields_autoplaced)
+    (effects (font (size 1.27 1.27)) (justify left))
+    (uuid afe116e0-e392-472b-a812-f2ef7fbba3ff)
+    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 198.0406 80.9836 90)
+      (effects (font (size 1.27 1.27)) (justify left) hide)
+    )
+  )
+  (global_label "D+" (shape input) (at 134.62 53.34 270) (fields_autoplaced)
+    (effects (font (size 1.27 1.27)) (justify right))
+    (uuid b5177552-bd6c-48f3-a5b4-c0e4259dda0f)
+    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 134.5406 58.5955 90)
+      (effects (font (size 1.27 1.27)) (justify right) hide)
+    )
+  )
+  (global_label "DIO" (shape input) (at 152.4 88.9 180) (fields_autoplaced)
+    (effects (font (size 1.27 1.27)) (justify right))
+    (uuid d9012c5c-b757-4126-b082-fd80f22590bf)
+    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 146.7817 88.9794 0)
+      (effects (font (size 1.27 1.27)) (justify right) hide)
+    )
+  )
+  (global_label "LED_C" (shape input) (at 177.8 81.28 0) (fields_autoplaced)
+    (effects (font (size 1.27 1.27)) (justify left))
+    (uuid debff818-324e-41e4-8c61-d2af8aeb55bd)
+    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 185.8979 81.2006 0)
+      (effects (font (size 1.27 1.27)) (justify left) hide)
+    )
+  )
+  (global_label "CLK" (shape input) (at 153.67 135.89 180) (fields_autoplaced)
+    (effects (font (size 1.27 1.27)) (justify right))
+    (uuid f6240212-63d9-47cb-9d18-9babecba3ddf)
+    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 147.6888 135.8106 0)
+      (effects (font (size 1.27 1.27)) (justify right) hide)
+    )
+  )
+
+  (symbol (lib_id "fab:Power_GND") (at 173.99 138.43 0) (unit 1)
+    (in_bom yes) (on_board yes) (fields_autoplaced)
+    (uuid 038ae685-fadd-4b4a-a2fc-491a1177ca9d)
+    (property "Reference" "#PWR0112" (id 0) (at 173.99 144.78 0)
+      (effects (font (size 1.27 1.27)) hide)
+    )
+    (property "Value" "Power_GND" (id 1) (at 173.99 143.51 0))
+    (property "Footprint" "" (id 2) (at 173.99 138.43 0)
+      (effects (font (size 1.27 1.27)) hide)
+    )
+    (property "Datasheet" "" (id 3) (at 173.99 138.43 0)
+      (effects (font (size 1.27 1.27)) hide)
+    )
+    (pin "1" (uuid df1b3382-6c62-409b-a4fe-573228ac19ed))
+  )
+
+  (symbol (lib_id "fab:Microcontroller_ATSAMD11C14A-SSUT") (at 165.1 88.9 0) (unit 1)
+    (in_bom yes) (on_board yes) (fields_autoplaced)
+    (uuid 1c5f2b06-dd65-40ca-a36f-d7882ab411c5)
+    (property "Reference" "U2" (id 0) (at 167.1194 68.58 0)
+      (effects (font (size 1.27 1.27)) (justify left))
+    )
+    (property "Value" "Microcontroller_ATSAMD11C14A-SSUT" (id 1) (at 167.1194 71.12 0)
+      (effects (font (size 1.27 1.27)) (justify left))
+    )
+    (property "Footprint" "fab:SOIC-14_3.9x8.7mm_P1.27mm" (id 2) (at 165.1 115.57 0)
+      (effects (font (size 1.27 1.27)) hide)
+    )
+    (property "Datasheet" "https://ww1.microchip.com/downloads/en/DeviceDoc/Atmel-42363-SAM-D11_Datasheet.pdf" (id 3) (at 165.1 106.68 0)
+      (effects (font (size 1.27 1.27)) hide)
+    )
+    (pin "1" (uuid cadbff7f-57d8-485a-9ab3-b7a950994c7c))
+    (pin "10" (uuid 8000361b-81fd-47e5-a524-21109b036f6c))
+    (pin "11" (uuid 856388fb-18d9-48b8-a8f0-8c934a9b3630))
+    (pin "12" (uuid 53609c90-137a-4321-8460-00c118c2a9d1))
+    (pin "13" (uuid f7ab5afe-1f32-448e-94cd-57886eb9601f))
+    (pin "14" (uuid ce5bc57b-f12b-4678-ad8c-7b3dffaf60bb))
+    (pin "2" (uuid 25d8ed38-2451-4d4e-855a-33b89acfd0e8))
+    (pin "3" (uuid 368e0798-54c0-4134-bbf4-9e85f89f6e4d))
+    (pin "4" (uuid 52cd69ba-32ad-451b-9643-72396c445980))
+    (pin "5" (uuid ba99ad96-ad7a-4904-b2f3-b5665f325179))
+    (pin "6" (uuid 03d5d36d-7d04-4655-9ddd-9b2863c89c7c))
+    (pin "7" (uuid 02a23b8e-c710-4b39-9d83-63922652e346))
+    (pin "8" (uuid 098ab8c1-1380-40a5-b8a8-396b8356b7d7))
+    (pin "9" (uuid a8de82ca-1c04-48ac-9839-de2f36bbf95d))
+  )
+
+  (symbol (lib_id "fab:Power_+5V") (at 62.23 71.12 0) (unit 1)
+    (in_bom yes) (on_board yes) (fields_autoplaced)
+    (uuid 2f85ce3f-0ce3-48bb-9922-39b751469afe)
+    (property "Reference" "#PWR0101" (id 0) (at 62.23 74.93 0)
+      (effects (font (size 1.27 1.27)) hide)
+    )
+    (property "Value" "Power_+5V" (id 1) (at 62.23 66.04 0))
+    (property "Footprint" "" (id 2) (at 62.23 71.12 0)
+      (effects (font (size 1.27 1.27)) hide)
+    )
+    (property "Datasheet" "" (id 3) (at 62.23 71.12 0)
+      (effects (font (size 1.27 1.27)) hide)
+    )
+    (pin "1" (uuid 663cdde4-0ecc-4abf-ada3-2705e7dbaad2))
+  )
+
+  (symbol (lib_id "fab:Power_+3V3") (at 165.1 71.12 0) (unit 1)
+    (in_bom yes) (on_board yes) (fields_autoplaced)
+    (uuid 3361482c-ca19-4873-b4a9-88f85f1328a1)
+    (property "Reference" "#PWR0108" (id 0) (at 165.1 74.93 0)
+      (effects (font (size 1.27 1.27)) hide)
+    )
+    (property "Value" "Power_+3V3" (id 1) (at 165.1 66.04 0))
+    (property "Footprint" "" (id 2) (at 165.1 71.12 0)
+      (effects (font (size 1.27 1.27)) hide)
+    )
+    (property "Datasheet" "" (id 3) (at 165.1 71.12 0)
+      (effects (font (size 1.27 1.27)) hide)
+    )
+    (pin "1" (uuid fed99eb5-430a-467c-b673-21790df80de5))
+  )
+
+  (symbol (lib_id "fab:Power_GND") (at 165.1 106.68 0) (unit 1)
+    (in_bom yes) (on_board yes) (fields_autoplaced)
+    (uuid 428fd061-ea0a-462c-a8fb-5150bbd1d04f)
+    (property "Reference" "#PWR0110" (id 0) (at 165.1 113.03 0)
+      (effects (font (size 1.27 1.27)) hide)
+    )
+    (property "Value" "Power_GND" (id 1) (at 165.1 111.76 0))
+    (property "Footprint" "" (id 2) (at 165.1 106.68 0)
+      (effects (font (size 1.27 1.27)) hide)
+    )
+    (property "Datasheet" "" (id 3) (at 165.1 106.68 0)
+      (effects (font (size 1.27 1.27)) hide)
+    )
+    (pin "1" (uuid eea26951-4c03-48fe-b4f4-251e10ae0419))
+  )
+
+  (symbol (lib_id "fab:Conn_PinHeader_2x02_SWD_P2.54mm_Vertical_SMD") (at 163.83 137.16 180) (unit 1)
+    (in_bom yes) (on_board yes) (fields_autoplaced)
+    (uuid 4a55f4f3-4596-4061-91d2-6036b72881f5)
+    (property "Reference" "J3" (id 0) (at 163.83 128.27 0))
+    (property "Value" "Conn_PinHeader_2x02_SWD_P2.54mm_Vertical_SMD" (id 1) (at 163.83 130.81 0))
+    (property "Footprint" "fab:PinHeader_2x02_SWD_P2.54mm_Vertical_SMD" (id 2) (at 163.83 137.16 0)
+      (effects (font (size 1.27 1.27)) hide)
+    )
+    (property "Datasheet" "https://cdn.amphenol-icc.com/media/wysiwyg/files/drawing/95278.pdf" (id 3) (at 163.83 137.16 0)
+      (effects (font (size 1.27 1.27)) hide)
+    )
+    (pin "1" (uuid f0a34e5c-2e7e-4653-86b2-ac950cdd3724))
+    (pin "2" (uuid bededdee-3f1a-44ef-96c4-59657d743930))
+    (pin "3" (uuid 9644b0a2-cae3-4e14-9b1b-c7bea01e2d59))
+    (pin "4" (uuid 50240248-5a56-4d94-827c-5e2e88291360))
+  )
+
+  (symbol (lib_id "fab:Power_+3V3") (at 76.2 97.79 0) (unit 1)
+    (in_bom yes) (on_board yes) (fields_autoplaced)
+    (uuid 4dcf7572-843d-48f6-b72e-be5f45589e4c)
+    (property "Reference" "#PWR0105" (id 0) (at 76.2 101.6 0)
+      (effects (font (size 1.27 1.27)) hide)
+    )
+    (property "Value" "Power_+3V3" (id 1) (at 76.2 92.71 0))
+    (property "Footprint" "" (id 2) (at 76.2 97.79 0)
+      (effects (font (size 1.27 1.27)) hide)
+    )
+    (property "Datasheet" "" (id 3) (at 76.2 97.79 0)
+      (effects (font (size 1.27 1.27)) hide)
+    )
+    (pin "1" (uuid 839120d5-8677-4c13-a4f5-4ebde9ef39aa))
+  )
+
+  (symbol (lib_id "fab:Power_+5V") (at 121.92 53.34 0) (unit 1)
+    (in_bom yes) (on_board yes) (fields_autoplaced)
+    (uuid 66f033d4-7f4d-4d8b-8047-3c7c415b0219)
+    (property "Reference" "#PWR0104" (id 0) (at 121.92 57.15 0)
+      (effects (font (size 1.27 1.27)) hide)
+    )
+    (property "Value" "Power_+5V" (id 1) (at 121.92 48.26 0))
+    (property "Footprint" "" (id 2) (at 121.92 53.34 0)
+      (effects (font (size 1.27 1.27)) hide)
+    )
+    (property "Datasheet" "" (id 3) (at 121.92 53.34 0)
+      (effects (font (size 1.27 1.27)) hide)
+    )
+    (pin "1" (uuid 4f44dbb5-7291-4f3d-bac0-3894599fbeae))
+  )
+
+  (symbol (lib_id "fab:Regulator_Linear_LM3480-3.3V-100mA") (at 87.63 71.12 0) (unit 1)
+    (in_bom yes) (on_board yes) (fields_autoplaced)
+    (uuid 78dd0937-ee9d-48f7-810d-2995faf42b06)
+    (property "Reference" "U1" (id 0) (at 87.63 63.5 0))
+    (property "Value" "Regulator_Linear_LM3480-3.3V-100mA" (id 1) (at 87.63 66.04 0))
+    (property "Footprint" "fab:SOT-23W" (id 2) (at 87.63 65.405 0)
+      (effects (font (size 1.27 1.27) italic) hide)
+    )
+    (property "Datasheet" "https://www.ti.com/lit/ds/symlink/lm3480.pdf" (id 3) (at 87.63 71.12 0)
+      (effects (font (size 1.27 1.27)) hide)
+    )
+    (pin "1" (uuid 9c6f6ff8-1f53-4f5c-8a2a-517888dc43a2))
+    (pin "2" (uuid 16c9feaf-2caf-4dac-9da3-1a18a412111e))
+    (pin "3" (uuid af9dc2d2-6192-41e3-9749-a7b7261dc96b))
+  )
+
+  (symbol (lib_id "Device:R") (at 198.12 92.71 0) (unit 1)
+    (in_bom yes) (on_board yes) (fields_autoplaced)
+    (uuid 793db082-42ed-4019-b9c9-5a54a4f821e0)
+    (property "Reference" "R1" (id 0) (at 200.66 91.4399 0)
+      (effects (font (size 1.27 1.27)) (justify left))
+    )
+    (property "Value" "R" (id 1) (at 200.66 93.9799 0)
+      (effects (font (size 1.27 1.27)) (justify left))
+    )
+    (property "Footprint" "fab:R_1206" (id 2) (at 196.342 92.71 90)
+      (effects (font (size 1.27 1.27)) hide)
+    )
+    (property "Datasheet" "~" (id 3) (at 198.12 92.71 0)
+      (effects (font (size 1.27 1.27)) hide)
+    )
+    (pin "1" (uuid 44055cf7-6109-4262-a448-68840e768524))
+    (pin "2" (uuid fc758edc-b25a-45b0-be93-41b063978035))
+  )
+
+  (symbol (lib_id "fab:C") (at 86.36 109.22 0) (unit 1)
+    (in_bom yes) (on_board yes) (fields_autoplaced)
+    (uuid 7a2ca59d-820f-4fa1-abab-bd90f7425325)
+    (property "Reference" "C3" (id 0) (at 90.17 107.9499 0)
+      (effects (font (size 1.27 1.27)) (justify left))
+    )
+    (property "Value" "10uF" (id 1) (at 90.17 110.4899 0)
+      (effects (font (size 1.27 1.27)) (justify left))
+    )
+    (property "Footprint" "fab:C_1206" (id 2) (at 87.3252 113.03 0)
+      (effects (font (size 1.27 1.27)) hide)
+    )
+    (property "Datasheet" "" (id 3) (at 86.36 109.22 0)
+      (effects (font (size 1.27 1.27)) hide)
+    )
+    (pin "1" (uuid 5b291660-876b-4f49-bc42-f0ce83419c18))
+    (pin "2" (uuid b75f1e0c-939c-4133-8521-1cde57826af1))
+  )
+
+  (symbol (lib_id "fab:Power_+3V3") (at 114.3 71.12 0) (unit 1)
+    (in_bom yes) (on_board yes) (fields_autoplaced)
+    (uuid 8531299f-0363-423c-9a26-d8d114f39dac)
+    (property "Reference" "#PWR0111" (id 0) (at 114.3 74.93 0)
+      (effects (font (size 1.27 1.27)) hide)
+    )
+    (property "Value" "Power_+3V3" (id 1) (at 114.3 66.04 0))
+    (property "Footprint" "" (id 2) (at 114.3 71.12 0)
+      (effects (font (size 1.27 1.27)) hide)
+    )
+    (property "Datasheet" "" (id 3) (at 114.3 71.12 0)
+      (effects (font (size 1.27 1.27)) hide)
+    )
+    (pin "1" (uuid 226edbec-3749-4d3b-97ae-65e901554cdf))
+  )
+
+  (symbol (lib_id "fab:C") (at 73.66 74.93 0) (unit 1)
+    (in_bom yes) (on_board yes) (fields_autoplaced)
+    (uuid a20728c8-07ac-40ed-b60c-72d07a38f400)
+    (property "Reference" "C1" (id 0) (at 77.47 73.6599 0)
+      (effects (font (size 1.27 1.27)) (justify left))
+    )
+    (property "Value" "1uF" (id 1) (at 77.47 76.1999 0)
+      (effects (font (size 1.27 1.27)) (justify left))
+    )
+    (property "Footprint" "fab:C_1206" (id 2) (at 74.6252 78.74 0)
+      (effects (font (size 1.27 1.27)) hide)
+    )
+    (property "Datasheet" "" (id 3) (at 73.66 74.93 0)
+      (effects (font (size 1.27 1.27)) hide)
+    )
+    (pin "1" (uuid 3bd319dd-8733-4580-ac48-6d79711e4c32))
+    (pin "2" (uuid cbe7814d-9f21-4c8c-a1c5-a5ccddb70d48))
+  )
+
+  (symbol (lib_id "fab:Power_GND") (at 76.2 119.38 0) (unit 1)
+    (in_bom yes) (on_board yes) (fields_autoplaced)
+    (uuid b9db75b2-1bbe-4200-9aca-ad374b3c96fb)
+    (property "Reference" "#PWR0109" (id 0) (at 76.2 125.73 0)
+      (effects (font (size 1.27 1.27)) hide)
+    )
+    (property "Value" "Power_GND" (id 1) (at 76.2 124.46 0))
+    (property "Footprint" "" (id 2) (at 76.2 119.38 0)
+      (effects (font (size 1.27 1.27)) hide)
+    )
+    (property "Datasheet" "" (id 3) (at 76.2 119.38 0)
+      (effects (font (size 1.27 1.27)) hide)
+    )
+    (pin "1" (uuid 17013232-28bc-4c42-9ebe-2c288ac32cad))
+  )
+
+  (symbol (lib_id "fab:LED") (at 198.12 100.33 90) (unit 1)
+    (in_bom yes) (on_board yes) (fields_autoplaced)
+    (uuid c4a71020-03ce-4f30-a55a-13a246010c50)
+    (property "Reference" "D1" (id 0) (at 201.93 100.6601 90)
+      (effects (font (size 1.27 1.27)) (justify right))
+    )
+    (property "Value" "LED" (id 1) (at 201.93 103.2001 90)
+      (effects (font (size 1.27 1.27)) (justify right))
+    )
+    (property "Footprint" "fab:LED_1206" (id 2) (at 198.12 100.33 0)
+      (effects (font (size 1.27 1.27)) hide)
+    )
+    (property "Datasheet" "https://optoelectronics.liteon.com/upload/download/DS-22-98-0002/LTST-C150CKT.pdf" (id 3) (at 198.12 100.33 0)
+      (effects (font (size 1.27 1.27)) hide)
+    )
+    (pin "1" (uuid 9f59631e-0a60-498f-9a2e-609ac427fbf7))
+    (pin "2" (uuid 456172db-03b4-4378-936c-bc9704159fc8))
+  )
+
+  (symbol (lib_id "fab:R_POT_10K_Trimmer") (at 76.2 105.41 0) (unit 1)
+    (in_bom yes) (on_board yes) (fields_autoplaced)
+    (uuid cb31fc7d-d6de-4e03-9a36-81663ac3f889)
+    (property "Reference" "RV1" (id 0) (at 73.66 104.1399 0)
+      (effects (font (size 1.27 1.27)) (justify right))
+    )
+    (property "Value" "R_POT_10K_Trimmer" (id 1) (at 73.66 106.6799 0)
+      (effects (font (size 1.27 1.27)) (justify right))
+    )
+    (property "Footprint" "fab:pot_thru" (id 2) (at 76.2 105.41 0)
+      (effects (font (size 1.27 1.27)) hide)
+    )
+    (property "Datasheet" "https://www.ttelectronics.com/TTElectronics/media/ProductFiles/Trimmers/Datasheets/23.pdf" (id 3) (at 76.2 105.41 0)
+      (effects (font (size 1.27 1.27)) hide)
+    )
+    (pin "1" (uuid ea765ab6-b865-48ae-b69b-77409044eda1))
+    (pin "2" (uuid 77ecdc27-442c-46cb-8dc0-7df8f5c735e8))
+    (pin "3" (uuid 58302530-5888-4bd3-b3ab-c4aa3656618c))
+  )
+
+  (symbol (lib_id "fab:Conn_USB_A_Plain") (at 133.35 44.45 90) (unit 1)
+    (in_bom yes) (on_board yes) (fields_autoplaced)
+    (uuid edc78bf5-dcc5-4cd6-aa4e-c01e87f3a3ff)
+    (property "Reference" "P1" (id 0) (at 140.97 43.1799 90)
+      (effects (font (size 1.27 1.27)) (justify right))
+    )
+    (property "Value" "Conn_USB_A_Plain" (id 1) (at 140.97 45.7199 90)
+      (effects (font (size 1.27 1.27)) (justify right))
+    )
+    (property "Footprint" "fab:Conn_USB_A_Plain" (id 2) (at 133.35 44.45 0)
+      (effects (font (size 1.27 1.27)) hide)
+    )
+    (property "Datasheet" "" (id 3) (at 133.35 44.45 0)
+      (effects (font (size 1.27 1.27)) hide)
+    )
+    (pin "1" (uuid ca7a9c8a-6fca-454e-9d7c-7e51dae1cc4e))
+    (pin "2" (uuid cf8105f4-172a-4a36-a63d-9a225226c745))
+    (pin "3" (uuid 0a3024fe-1ac2-4a54-b6fe-0b7bdfe34a98))
+    (pin "4" (uuid ce4cbf58-6866-4f48-8ec7-2664e234b707))
+  )
+
+  (symbol (lib_id "fab:Power_GND") (at 87.63 78.74 0) (unit 1)
+    (in_bom yes) (on_board yes) (fields_autoplaced)
+    (uuid f0669dce-fc98-43cf-b391-c137ee9617c4)
+    (property "Reference" "#PWR0102" (id 0) (at 87.63 85.09 0)
+      (effects (font (size 1.27 1.27)) hide)
+    )
+    (property "Value" "Power_GND" (id 1) (at 87.63 83.82 0))
+    (property "Footprint" "" (id 2) (at 87.63 78.74 0)
+      (effects (font (size 1.27 1.27)) hide)
+    )
+    (property "Datasheet" "" (id 3) (at 87.63 78.74 0)
+      (effects (font (size 1.27 1.27)) hide)
+    )
+    (pin "1" (uuid d9486a70-192e-4aa2-b82a-43ac88477cdd))
+  )
+
+  (symbol (lib_id "fab:Power_GND") (at 137.16 53.34 0) (unit 1)
+    (in_bom yes) (on_board yes) (fields_autoplaced)
+    (uuid f9ee5e00-0811-48b2-9263-35eab98f8083)
+    (property "Reference" "#PWR0103" (id 0) (at 137.16 59.69 0)
+      (effects (font (size 1.27 1.27)) hide)
+    )
+    (property "Value" "Power_GND" (id 1) (at 137.16 58.42 0))
+    (property "Footprint" "" (id 2) (at 137.16 53.34 0)
+      (effects (font (size 1.27 1.27)) hide)
+    )
+    (property "Datasheet" "" (id 3) (at 137.16 53.34 0)
+      (effects (font (size 1.27 1.27)) hide)
+    )
+    (pin "1" (uuid 42a07442-6433-4026-95fc-95db33dd8be3))
+  )
+
+  (symbol (lib_id "fab:C") (at 100.33 74.93 0) (unit 1)
+    (in_bom yes) (on_board yes) (fields_autoplaced)
+    (uuid fde96c4e-b12c-43f8-9426-6e025c0e4ecc)
+    (property "Reference" "C2" (id 0) (at 104.14 73.6599 0)
+      (effects (font (size 1.27 1.27)) (justify left))
+    )
+    (property "Value" "1uF" (id 1) (at 104.14 76.1999 0)
+      (effects (font (size 1.27 1.27)) (justify left))
+    )
+    (property "Footprint" "fab:C_1206" (id 2) (at 101.2952 78.74 0)
+      (effects (font (size 1.27 1.27)) hide)
+    )
+    (property "Datasheet" "" (id 3) (at 100.33 74.93 0)
+      (effects (font (size 1.27 1.27)) hide)
+    )
+    (pin "1" (uuid 8c0dcd4c-7885-4a3c-b1a0-59692671ecde))
+    (pin "2" (uuid 21fffcc9-3602-43a0-bbe1-d2fc238600b5))
+  )
+
+  (sheet_instances
+    (path "/" (page "1"))
+  )
+
+  (symbol_instances
+    (path "/2f85ce3f-0ce3-48bb-9922-39b751469afe"
+      (reference "#PWR0101") (unit 1) (value "Power_+5V") (footprint "")
+    )
+    (path "/f0669dce-fc98-43cf-b391-c137ee9617c4"
+      (reference "#PWR0102") (unit 1) (value "Power_GND") (footprint "")
+    )
+    (path "/f9ee5e00-0811-48b2-9263-35eab98f8083"
+      (reference "#PWR0103") (unit 1) (value "Power_GND") (footprint "")
+    )
+    (path "/66f033d4-7f4d-4d8b-8047-3c7c415b0219"
+      (reference "#PWR0104") (unit 1) (value "Power_+5V") (footprint "")
+    )
+    (path "/4dcf7572-843d-48f6-b72e-be5f45589e4c"
+      (reference "#PWR0105") (unit 1) (value "Power_+3V3") (footprint "")
+    )
+    (path "/3361482c-ca19-4873-b4a9-88f85f1328a1"
+      (reference "#PWR0108") (unit 1) (value "Power_+3V3") (footprint "")
+    )
+    (path "/b9db75b2-1bbe-4200-9aca-ad374b3c96fb"
+      (reference "#PWR0109") (unit 1) (value "Power_GND") (footprint "")
+    )
+    (path "/428fd061-ea0a-462c-a8fb-5150bbd1d04f"
+      (reference "#PWR0110") (unit 1) (value "Power_GND") (footprint "")
+    )
+    (path "/8531299f-0363-423c-9a26-d8d114f39dac"
+      (reference "#PWR0111") (unit 1) (value "Power_+3V3") (footprint "")
+    )
+    (path "/038ae685-fadd-4b4a-a2fc-491a1177ca9d"
+      (reference "#PWR0112") (unit 1) (value "Power_GND") (footprint "")
+    )
+    (path "/a20728c8-07ac-40ed-b60c-72d07a38f400"
+      (reference "C1") (unit 1) (value "1uF") (footprint "fab:C_1206")
+    )
+    (path "/fde96c4e-b12c-43f8-9426-6e025c0e4ecc"
+      (reference "C2") (unit 1) (value "1uF") (footprint "fab:C_1206")
+    )
+    (path "/7a2ca59d-820f-4fa1-abab-bd90f7425325"
+      (reference "C3") (unit 1) (value "10uF") (footprint "fab:C_1206")
+    )
+    (path "/c4a71020-03ce-4f30-a55a-13a246010c50"
+      (reference "D1") (unit 1) (value "LED") (footprint "fab:LED_1206")
+    )
+    (path "/4a55f4f3-4596-4061-91d2-6036b72881f5"
+      (reference "J3") (unit 1) (value "Conn_PinHeader_2x02_SWD_P2.54mm_Vertical_SMD") (footprint "fab:PinHeader_2x02_SWD_P2.54mm_Vertical_SMD")
+    )
+    (path "/edc78bf5-dcc5-4cd6-aa4e-c01e87f3a3ff"
+      (reference "P1") (unit 1) (value "Conn_USB_A_Plain") (footprint "fab:Conn_USB_A_Plain")
+    )
+    (path "/793db082-42ed-4019-b9c9-5a54a4f821e0"
+      (reference "R1") (unit 1) (value "R") (footprint "fab:R_1206")
+    )
+    (path "/cb31fc7d-d6de-4e03-9a36-81663ac3f889"
+      (reference "RV1") (unit 1) (value "R_POT_10K_Trimmer") (footprint "fab:pot_thru")
+    )
+    (path "/78dd0937-ee9d-48f7-810d-2995faf42b06"
+      (reference "U1") (unit 1) (value "Regulator_Linear_LM3480-3.3V-100mA") (footprint "fab:SOT-23W")
+    )
+    (path "/1c5f2b06-dd65-40ca-a36f-d7882ab411c5"
+      (reference "U2") (unit 1) (value "Microcontroller_ATSAMD11C14A-SSUT") (footprint "fab:SOIC-14_3.9x8.7mm_P1.27mm")
+    )
+  )
+)
diff --git a/pressure/README.md b/pressure/README.md
deleted file mode 100644
index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..0000000000000000000000000000000000000000
diff --git a/thermistor-or-pressure/README.md b/thermistor-or-pressure/README.md
new file mode 100644
index 0000000000000000000000000000000000000000..a765945aeb7d504578f3c6c5e1edee0568ba0942
--- /dev/null
+++ b/thermistor-or-pressure/README.md
@@ -0,0 +1,17 @@
+# Urumbu thermistor/pressure input
+
+Bare:
+
+![](./img/D11C.10k.ADC.components.jpg)
+
+Pressure:
+
+![](./img/D11C.pressure.components.top.jpg)
+
+![](./img/D11C.pressure.components.bottom.jpg)
+
+This board returns a 10-bit value depending on the reading of the ADC, which is connected between a 10k resistor and a variable resistance device. This could be a 100k NTC or a pressure sensor.
+
+## Code
+
+Code can be found [here](./code/d11_pressure/d11_pressure.ino).
diff --git a/thermistor-or-pressure/code/d11_pressure/d11_pressure.ino b/thermistor-or-pressure/code/d11_pressure/d11_pressure.ino
new file mode 100644
index 0000000000000000000000000000000000000000..764ab92255694830288f426eb9ea4bc1c2f51a0a
--- /dev/null
+++ b/thermistor-or-pressure/code/d11_pressure/d11_pressure.ino
@@ -0,0 +1,39 @@
+#define PIN_LED_A 4
+#define PIN_LED_C 2
+#define PIN_SENSOR 5
+
+
+#define VAL_MIN 2300
+#define VAL_MAX 4095
+
+
+void setup() {
+  // put your setup code here, to run once:
+  pinMode(PIN_LED_A, OUTPUT);
+  digitalWrite(PIN_LED_A, HIGH);
+  pinMode(PIN_LED_C, OUTPUT);
+  digitalWrite(PIN_LED_C, LOW);
+  pinMode(PIN_SENSOR, INPUT);
+  SerialUSB.begin(115200);
+
+  analogReadResolution(12);
+}
+
+void print_16bit(int v) {
+  const char bfr[] = {v & 0xFF, (v >> 8) & 0xFF};
+  SerialUSB.write(bfr, 2);
+}
+
+void loop() {
+  if (SerialUSB.available()) {
+    char c = SerialUSB.read();
+    if (c == '?') {
+      int value_12bit = analogRead(PIN_SENSOR);
+      int value_10bit = map(value_12bit, VAL_MIN, VAL_MAX, 1023, 0);
+      value_10bit = max(min(value_10bit, 1023), 0);
+      print_16bit(value_10bit);
+    } else if (c == '@') {
+      SerialUSB.write("0006");
+    }
+  }
+}
diff --git a/thermistor-or-pressure/img/D11C.10k.ADC.components.jpg b/thermistor-or-pressure/img/D11C.10k.ADC.components.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..3b6c839f2d3d5006968c764040ca05ad46f28ccf
Binary files /dev/null and b/thermistor-or-pressure/img/D11C.10k.ADC.components.jpg differ
diff --git a/thermistor-or-pressure/img/D11C.pressure.components.bottom.jpg b/thermistor-or-pressure/img/D11C.pressure.components.bottom.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..39ae4525da91f261b6f3867b696f4213f11cd5aa
Binary files /dev/null and b/thermistor-or-pressure/img/D11C.pressure.components.bottom.jpg differ
diff --git a/thermistor-or-pressure/img/D11C.pressure.components.top.jpg b/thermistor-or-pressure/img/D11C.pressure.components.top.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..5a8f5b9303113e6ae1667ddaab48b737538f448f
Binary files /dev/null and b/thermistor-or-pressure/img/D11C.pressure.components.top.jpg differ
diff --git a/thermistor/README.md b/thermistor/README.md
deleted file mode 100644
index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..0000000000000000000000000000000000000000