foist master
authorRuss Handorf <rhandorf@handorf.org>
Tue, 1 Feb 2022 18:05:32 +0000 (13:05 -0500)
committerRuss Handorf <rhandorf@handorf.org>
Tue, 1 Feb 2022 18:05:32 +0000 (13:05 -0500)
18 files changed:
arduino/sketch_jun06b.ino [new file with mode: 0644]
sensor/fp-info-cache [new file with mode: 0644]
sensor/gerbers.zip [new file with mode: 0644]
sensor/gerbers/sensor-B_Cu.gbr [new file with mode: 0644]
sensor/gerbers/sensor-B_Mask.gbr [new file with mode: 0644]
sensor/gerbers/sensor-B_SilkS.gbr [new file with mode: 0644]
sensor/gerbers/sensor-Edge_Cuts.gbr [new file with mode: 0644]
sensor/gerbers/sensor-F_Cu.gbr [new file with mode: 0644]
sensor/gerbers/sensor-F_Mask.gbr [new file with mode: 0644]
sensor/gerbers/sensor-F_SilkS.gbr [new file with mode: 0644]
sensor/gerbers/sensor-job.gbrjob [new file with mode: 0644]
sensor/gerbers/sensor.drl [new file with mode: 0644]
sensor/sensor-cache.lib [new file with mode: 0644]
sensor/sensor.kicad_pcb [new file with mode: 0644]
sensor/sensor.kicad_pcb-bak [new file with mode: 0644]
sensor/sensor.pro [new file with mode: 0644]
sensor/sensor.sch [new file with mode: 0644]
sensor/sensor.sch-bak [new file with mode: 0644]

diff --git a/arduino/sketch_jun06b.ino b/arduino/sketch_jun06b.ino
new file mode 100644 (file)
index 0000000..b868622
--- /dev/null
@@ -0,0 +1,80 @@
+//USBtinyISP upload using programmer
+//ArduinoUno
+
+#include <DHT.h>
+#include <ESP8266WiFi.h>
+
+DHT dht(0, DHT11);
+
+bool DEBUG = true;   //show more logs
+int responseTime = 10; //communication timeout
+
+unsigned long next;
+unsigned long timeout;
+char host[] = "some.host.com";
+int lightPin = A0;
+int lightValue = 0;
+const char ssid[] = "SSID";
+const char pass[] = "PASS";
+char macstr[20];
+byte mac[6];
+
+
+void setup() {
+  Serial.begin(9600);
+  next = millis() + 15000;
+  timeout = millis() + 5000;
+  WiFi.macAddress(mac);
+  snprintf(macstr, 18, "%02x:%02x:%02x:%02x:%02x:%02x", mac[0], mac[1], mac[2], mac[3], mac[4], mac[5]);
+  WiFi.mode(WIFI_STA);
+  WiFi.begin(ssid,pass);
+  WiFi.setAutoReconnect(true);
+  while (WiFi.status() != WL_CONNECTED) {
+    delay(500);
+    Serial.print(".");
+  }
+  Serial.print("Connected, IP address: ");
+  Serial.println(WiFi.localIP());
+  Serial.println("You're connected to the network");
+  Serial.println("Booted");
+  ESP.wdtDisable();
+  ESP.wdtEnable(60000);
+}
+
+void loop() {
+  if (((signed long)(millis() - next)) > 0) {
+    if ((WiFi.status() != WL_CONNECTED)) {
+      WiFi.reconnect();
+      int counter=0;
+      while (WiFi.status() != WL_CONNECTED) {
+        delay(200);
+        counter++;
+        if (counter>9) {
+          ESP.restart();
+        }
+      }
+    }
+    WiFiClient client;
+    next = millis() + 15000;
+    timeout = millis() + 15000;
+    if (client.connect(host,8086)) {
+      lightValue = analogRead(lightPin);
+      String PostData = "light,sensor=\"" + String(macstr) + "\" value=" + String(lightValue) + "\ntemp,sensor=\"" + String(macstr) + "\" value=" + String(dht.readTemperature(true)) + "\nhumidity,sensor=\"" + String(macstr) + "\" value=" + String(dht.readHumidity());
+      client.println("POST /write?db=sensors HTTP/1.1");
+      client.print("HOST:   ");
+      client.println(host);
+      client.println("User-Agent: Arduino/1.0");
+      client.println("Connection: close");
+      client.println("Content-Type: application/x-www-form-urlencoded;");
+      client.print("Content-Length: ");
+      client.println(PostData.length());
+      client.println();
+      client.println(PostData);
+      client.flush();
+      client.stop();
+      PostData = "";
+      client.flush();
+      client.stop();
+    }
+  }
+}
diff --git a/sensor/fp-info-cache b/sensor/fp-info-cache
new file mode 100644 (file)
index 0000000..35e2671
--- /dev/null
@@ -0,0 +1,547 @@
+123971035812536
+LED_SMD
+LED-APA102-2020
+http://www.led-color.com/upload/201604/APA102-2020%20SMD%20LED.pdf
+LED RGB SPI
+0
+8
+6
+LED_SMD
+LED-L1T2_LUMILEDS
+http://www.lumileds.com/uploads/438/DS133-pdf
+LUMILEDS LUXEON TX L1T2 LED
+0
+3
+3
+LED_SMD
+LED_1W_3W_R8
+https://www.gme.cz/data/attachments/dsh.518-234.1.pdf
+LED 1W 3W 5W
+0
+3
+3
+LED_SMD
+LED_0201_0603Metric
+LED SMD 0201 (0603 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.vishay.com/docs/20052/crcw0201e3.pdf), generated with kicad-footprint-generator
+LED
+0
+4
+2
+LED_SMD
+LED_0402_1005Metric
+LED SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator
+LED
+0
+2
+2
+LED_SMD
+LED_0603_1608Metric
+LED SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator
+diode
+0
+2
+2
+LED_SMD
+LED_0603_1608Metric_Castellated
+LED SMD 0603 (1608 Metric), castellated end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator
+LED castellated
+0
+2
+2
+LED_SMD
+LED_0603_1608Metric_Pad1.05x0.95mm_HandSolder
+LED SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator
+LED handsolder
+0
+2
+2
+LED_SMD
+LED_0805_2012Metric
+LED SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator
+diode
+0
+2
+2
+LED_SMD
+LED_0805_2012Metric_Castellated
+LED SMD 0805 (2012 Metric), castellated end terminal, IPC_7351 nominal, (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator
+LED castellated
+0
+2
+2
+LED_SMD
+LED_0805_2012Metric_Pad1.15x1.40mm_HandSolder
+LED SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator
+LED handsolder
+0
+2
+2
+LED_SMD
+LED_01005_0402Metric
+LED SMD 01005 (0402 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.vishay.com/docs/20056/crcw01005e3.pdf), generated with kicad-footprint-generator
+LED
+0
+4
+2
+LED_SMD
+LED_1206_3216Metric
+LED SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator
+diode
+0
+2
+2
+LED_SMD
+LED_1206_3216Metric_Castellated
+LED SMD 1206 (3216 Metric), castellated end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator
+LED castellated
+0
+2
+2
+LED_SMD
+LED_1206_3216Metric_Pad1.42x1.75mm_HandSolder
+LED SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator
+LED handsolder
+0
+2
+2
+LED_SMD
+LED_1206_3216Metric_ReverseMount_Hole1.8x2.4mm
+LED SMD 1206 (3216 Metric), reverse mount, square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator
+diode reverse
+0
+2
+2
+LED_SMD
+LED_1210_3225Metric
+LED SMD 1210 (3225 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator
+diode
+0
+2
+2
+LED_SMD
+LED_1210_3225Metric_Castellated
+LED SMD 1210 (3225 Metric), castellated end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator
+LED castellated
+0
+2
+2
+LED_SMD
+LED_1210_3225Metric_Pad1.42x2.65mm_HandSolder
+LED SMD 1210 (3225 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator
+LED handsolder
+0
+2
+2
+LED_SMD
+LED_1806_4516Metric
+LED SMD 1806 (4516 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.modelithics.com/models/Vendor/MuRata/BLM41P.pdf), generated with kicad-footprint-generator
+diode
+0
+2
+2
+LED_SMD
+LED_1806_4516Metric_Castellated
+LED SMD 1806 (4516 Metric), castellated end terminal, IPC_7351 nominal, (Body size source: https://www.modelithics.com/models/Vendor/MuRata/BLM41P.pdf), generated with kicad-footprint-generator
+LED castellated
+0
+2
+2
+LED_SMD
+LED_1806_4516Metric_Pad1.57x1.80mm_HandSolder
+LED SMD 1806 (4516 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.modelithics.com/models/Vendor/MuRata/BLM41P.pdf), generated with kicad-footprint-generator
+LED handsolder
+0
+2
+2
+LED_SMD
+LED_1812_4532Metric
+LED SMD 1812 (4532 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.nikhef.nl/pub/departments/mt/projects/detectorR_D/dtddice/ERJ2G.pdf), generated with kicad-footprint-generator
+diode
+0
+2
+2
+LED_SMD
+LED_1812_4532Metric_Castellated
+LED SMD 1812 (4532 Metric), castellated end terminal, IPC_7351 nominal, (Body size source: https://www.nikhef.nl/pub/departments/mt/projects/detectorR_D/dtddice/ERJ2G.pdf), generated with kicad-footprint-generator
+LED castellated
+0
+2
+2
+LED_SMD
+LED_1812_4532Metric_Pad1.30x3.40mm_HandSolder
+LED SMD 1812 (4532 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.nikhef.nl/pub/departments/mt/projects/detectorR_D/dtddice/ERJ2G.pdf), generated with kicad-footprint-generator
+LED handsolder
+0
+2
+2
+LED_SMD
+LED_2010_5025Metric
+LED SMD 2010 (5025 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator
+diode
+0
+2
+2
+LED_SMD
+LED_2010_5025Metric_Castellated
+LED SMD 2010 (5025 Metric), castellated end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator
+LED castellated
+0
+2
+2
+LED_SMD
+LED_2010_5025Metric_Pad1.52x2.65mm_HandSolder
+LED SMD 2010 (5025 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator
+LED handsolder
+0
+2
+2
+LED_SMD
+LED_2512_6332Metric
+LED SMD 2512 (6332 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator
+diode
+0
+2
+2
+LED_SMD
+LED_2512_6332Metric_Castellated
+LED SMD 2512 (6332 Metric), castellated end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator
+LED castellated
+0
+2
+2
+LED_SMD
+LED_2512_6332Metric_Pad1.52x3.35mm_HandSolder
+LED SMD 2512 (6332 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator
+LED handsolder
+0
+2
+2
+LED_SMD
+LED_2816_7142Metric
+LED SMD 2816 (7142 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size from: https://www.vishay.com/docs/30100/wsl.pdf), generated with kicad-footprint-generator
+diode
+0
+2
+2
+LED_SMD
+LED_2816_7142Metric_Castellated
+LED SMD 2816 (7142 Metric), castellated end terminal, IPC_7351 nominal, (Body size from: https://www.vishay.com/docs/30100/wsl.pdf), generated with kicad-footprint-generator
+LED castellated
+0
+2
+2
+LED_SMD
+LED_2816_7142Metric_Pad3.20x4.45mm_HandSolder
+LED SMD 2816 (7142 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size from: https://www.vishay.com/docs/30100/wsl.pdf), generated with kicad-footprint-generator
+LED handsolder
+0
+2
+2
+LED_SMD
+LED_ASMB-KTF0-0A306
+2220 Tricolor PLCC-4 LED, https://docs.broadcom.com/docs/ASMB-KTF0-0A306-DS100
+Tricolor LED
+0
+4
+4
+LED_SMD
+LED_Avago_PLCC4_3.2x2.8mm_CW
+https://docs.broadcom.com/docs/AV02-4186EN
+LED Avago PLCC-4 ASMB-MTB0-0A3A2
+0
+4
+4
+LED_SMD
+LED_Avago_PLCC6_3x2.8mm
+https://docs.broadcom.com/docs/AV02-3793EN
+LED Avago PLCC-6 ASMT-YTB7-0AA02
+0
+6
+6
+LED_SMD
+LED_Cree-PLCC4_2x2mm_CW
+2.0mm x 2.0mm PLCC4 LED, http://www.cree.com/~/media/Files/Cree/LED-Components-and-Modules/HB/Data-Sheets/CLMVBFKA.pdf
+LED Cree PLCC-4
+0
+4
+4
+LED_SMD
+LED_Cree-PLCC4_3.2x2.8mm_CCW
+3.2mm x 2.8mm PLCC4 LED, http://www.cree.com/led-components/media/documents/CLV1AFKB(874).pdf
+LED Cree PLCC-4
+0
+4
+4
+LED_SMD
+LED_Cree-PLCC4_5x5mm_CW
+5.0mm x 5.0mm PLCC4 LED
+LED Cree PLCC-4
+0
+4
+4
+LED_SMD
+LED_Cree-PLCC6_4.7x1.5mm
+4.7mm x 1.5mm PLCC6 LED, http://www.cree.com/led-components/media/documents/1381-QLS6AFKW.pdf
+LED Cree PLCC-6
+0
+6
+6
+LED_SMD
+LED_Cree-XB
+http://www.cree.com/~/media/Files/Cree/LED-Components-and-Modules/XLamp/Data-and-Binning/XLampXBD.pdf
+LED Cree XB
+0
+5
+3
+LED_SMD
+LED_Cree-XH
+http://www.cree.com/~/media/Files/Cree/LED-Components-and-Modules/XLamp/Data-and-Binning/ds-XHB.pdf
+LED Cree XH
+0
+8
+2
+LED_SMD
+LED_Cree-XHP35
+http://www.cree.com/~/media/Files/Cree/LED-Components-and-Modules/XLamp/Data-and-Binning/ds--XHP35.pdf
+LED Cree XHP35
+0
+6
+3
+LED_SMD
+LED_Cree-XHP50_6V
+Cree XHP50, 6V footprint, http://www.cree.com/~/media/Files/Cree/LED%20Components%20and%20Modules/XLamp/Data%20and%20Binning/ds%20XHP50.pdf
+LED Cree XHP50
+0
+15
+3
+LED_SMD
+LED_Cree-XHP50_12V
+Cree XHP50, 12V footprint, http://www.cree.com/~/media/Files/Cree/LED%20Components%20and%20Modules/XLamp/Data%20and%20Binning/ds%20XHP50.pdf
+LED XHP50 Cree
+0
+15
+3
+LED_SMD
+LED_Cree-XHP70_6V
+Cree XHP70 LED, 6V version, http://www.cree.com/~/media/Files/Cree/LED%20Components%20and%20Modules/XLamp/Data%20and%20Binning/ds%20XHP70.pdf
+LED Cree XHP70
+0
+15
+3
+LED_SMD
+LED_Cree-XHP70_12V
+Cree XHP70 LED, 12V version, http://www.cree.com/~/media/Files/Cree/LED%20Components%20and%20Modules/XLamp/Data%20and%20Binning/ds%20XHP70.pdf
+LED Cree XHP70
+0
+15
+3
+LED_SMD
+LED_Cree-XP
+LED Cree-XP http://www.cree.com/~/media/Files/Cree/LED-Components-and-Modules/XLamp/Data-and-Binning/XLampXPE2.pdf
+LED Cree XP
+0
+6
+3
+LED_SMD
+LED_Cree-XP-G
+LED Cree-XP-G http://www.cree.com/~/media/Files/Cree/LED%20Components%20and%20Modules/XLamp/Data%20and%20Binning/XLampXPG.pdf
+LED Cree XP-G
+0
+6
+3
+LED_SMD
+LED_Cree-XQ
+LED Cree-XQ http://www.cree.com/~/media/Files/Cree/LED-Components-and-Modules/XLamp/Data-and-Binning/ds-XQB.pdf
+LED Cree XQ
+0
+2
+2
+LED_SMD
+LED_Cree-XQ_HandSoldering
+LED Cree-XQ handsoldering pads http://www.cree.com/~/media/Files/Cree/LED-Components-and-Modules/XLamp/Data-and-Binning/ds-XQB.pdf
+LED Cree XQ
+0
+2
+2
+LED_SMD
+LED_Dialight_591
+LED SMD 3mm Right Angle series (http://www.dialightsignalsandcomponents.com/Assets/Drawings/2D_Drawings_DrawingDetailedSpec/C17354.pdf)
+LED Dialight 591
+0
+2
+2
+LED_SMD
+LED_Inolux_IN-PI554FCH_PLCC4_5.0x5.0mm_P3.2mm
+http://www.inolux-corp.com/datasheet/SMDLED/Addressable%20LED/IN-PI554FCH.pdf
+RGB LED NeoPixel addressable
+0
+4
+4
+LED_SMD
+LED_Kingbright_AAA3528ESGCT
+Kingbright, dual LED, 3.5 x 2.8 mm Surface Mount LED Lamp (http://www.kingbrightusa.com/images/catalog/SPEC/AAA3528ESGCT.pdf)
+dual led smd
+0
+4
+4
+LED_SMD
+LED_Kingbright_APFA3010_3x1.5mm_Horizontal
+LED RGB, APFA3010, http://www.kingbrightusa.com/images/catalog/SPEC/APFA3010LSEEZGKQBKC.pdf
+LED RGB APFA3010 KINGBRIGHT 3x1.5mm
+0
+4
+4
+LED_SMD
+LED_LiteOn_LTST-C19HE1WT
+LiteOn RGB LED; https://optoelectronics.liteon.com/upload/download/DS22-2008-0044/LTST-C19HE1WT.pdf
+LED RGB Chip SMD
+0
+4
+4
+LED_SMD
+LED_LiteOn_LTST-S326
+http://optoelectronics.liteon.com/upload/download/DS22-2000-287/LTST-S326KGJRKT.PDF
+LED SMD right angle  CCA
+0
+3
+3
+LED_SMD
+LED_Lumex_SML-LX0303SIUPGUSB
+Lumex RGB LED, clear, SMD, https://www.lumex.com/spec/SML-LX0303SIUPGUSB.pdf
+LED RGB
+0
+4
+4
+LED_SMD
+LED_Osram_Lx_P47F_D2mm_ReverseMount
+OSRAM, reverse-mount LED, SMD, 2mm diameter, http://www.farnell.com/datasheets/2711587.pdf
+LED ReverseMount Reverse
+0
+4
+2
+LED_SMD
+LED_PLCC-2
+LED PLCC-2 SMD package
+LED PLCC-2 SMD
+0
+2
+2
+LED_SMD
+LED_PLCC_2835
+https://www.luckylight.cn/media/component/data-sheet/R2835BC-B2M-M10.pdf
+LED
+0
+2
+2
+LED_SMD
+LED_PLCC_2835_Handsoldering
+https://www.luckylight.cn/media/component/data-sheet/R2835BC-B2M-M10.pdf
+LED
+0
+2
+2
+LED_SMD
+LED_RGB_1210
+RGB LED 3.2x2.7mm http://www.avagotech.com/docs/AV02-0610EN
+LED 3227
+0
+4
+4
+LED_SMD
+LED_RGB_5050-6
+http://cdn.sparkfun.com/datasheets/Components/LED/5060BRG4.pdf
+RGB LED 5050-6
+0
+6
+6
+LED_SMD
+LED_RGB_Cree-PLCC-6_6x5mm_P2.1mm
+http://www.farnell.com/datasheets/2003905.pdf
+LED RGB PLCC-6 CLP6C-FBK
+0
+6
+6
+LED_SMD
+LED_RGB_Getian_GT-P6PRGB4303
+https://www.gme.sk/img/cache/doc/518/177/vykonova-led-getian-gt-p6prgb4303-datasheet-1.pdf
+LED RGB 
+0
+7
+7
+LED_SMD
+LED_RGB_PLCC-6
+RGB LED PLCC-6
+RGB LED PLCC-6
+0
+6
+6
+LED_SMD
+LED_ROHM_SMLVN6
+https://www.rohm.com/datasheet/SMLVN6RGB1U
+LED ROHM SMLVN6
+0
+6
+6
+LED_SMD
+LED_SK6805_PLCC4_2.4x2.7mm_P1.3mm
+https://cdn-shop.adafruit.com/product-files/3484/3484_Datasheet.pdf
+LED RGB NeoPixel Nano
+0
+4
+4
+LED_SMD
+LED_SK6812MINI_PLCC4_3.5x3.5mm_P1.75mm
+https://cdn-shop.adafruit.com/product-files/2686/SK6812MINI_REV.01-1-2.pdf
+LED RGB NeoPixel Mini
+0
+4
+4
+LED_SMD
+LED_SK6812_EC15_1.5x1.5mm
+http://www.newstar-ledstrip.com/product/20181119172602110.pdf
+LED RGB NeoPixel
+0
+4
+4
+LED_SMD
+LED_SK6812_PLCC4_5.0x5.0mm_P3.2mm
+https://cdn-shop.adafruit.com/product-files/1138/SK6812+LED+datasheet+.pdf
+LED RGB NeoPixel
+0
+4
+4
+LED_SMD
+LED_WS2812B_PLCC4_5.0x5.0mm_P3.2mm
+https://cdn-shop.adafruit.com/datasheets/WS2812B.pdf
+LED RGB NeoPixel
+0
+4
+4
+LED_SMD
+LED_WS2812_PLCC6_5.0x5.0mm_P1.6mm
+https://cdn-shop.adafruit.com/datasheets/WS2812.pdf
+LED RGB NeoPixel
+0
+6
+6
+LED_SMD
+LED_Yuji_5730
+LED,Yuji,5730,https://cdn.shopify.com/s/files/1/0344/6401/files/YJWJ014-1.1_YJ-BC-5730L-G02.pdf
+LED Yuji 5730
+0
+3
+2
+LED_SMD
+LED_miniPLCC_2315
+https://docs.broadcom.com/cs/Satellite?blobcol=urldata&blobheader=application%2Fpdf&blobheadername1=Content-Disposition&blobheadername2=Content-Type&blobheadername3=MDT-Type&blobheadervalue1=attachment%3Bfilename%3DAV02-2205EN_DS_ASMT-TxBM_2014-05-09.pdf&blobheadervalue2=application%2Fx-download&blobheadervalue3=abinary%253B%2Bcharset%253DUTF-8&blobkey=id&blobnocache=true&blobtable=MungoBlobs&blobwhere=1430858274704&ssbinary=true
+LED
+0
+2
+2
+LED_SMD
+LED_miniPLCC_2315_Handsoldering
+https://docs.broadcom.com/cs/Satellite?blobcol=urldata&blobheader=application%2Fpdf&blobheadername1=Content-Disposition&blobheadername2=Content-Type&blobheadername3=MDT-Type&blobheadervalue1=attachment%3Bfilename%3DAV02-2205EN_DS_ASMT-TxBM_2014-05-09.pdf&blobheadervalue2=application%2Fx-download&blobheadervalue3=abinary%253B%2Bcharset%253DUTF-8&blobkey=id&blobnocache=true&blobtable=MungoBlobs&blobwhere=1430858274704&ssbinary=true
+LED
+0
+2
+2
diff --git a/sensor/gerbers.zip b/sensor/gerbers.zip
new file mode 100644 (file)
index 0000000..04e5682
Binary files /dev/null and b/sensor/gerbers.zip differ
diff --git a/sensor/gerbers/sensor-B_Cu.gbr b/sensor/gerbers/sensor-B_Cu.gbr
new file mode 100644 (file)
index 0000000..bbcc4af
--- /dev/null
@@ -0,0 +1,1485 @@
+%TF.GenerationSoftware,KiCad,Pcbnew,5.1.6-c6e7f7d~87~ubuntu18.04.1*%
+%TF.CreationDate,2020-12-29T21:19:46-05:00*%
+%TF.ProjectId,sensor,73656e73-6f72-42e6-9b69-6361645f7063,rev?*%
+%TF.SameCoordinates,Original*%
+%TF.FileFunction,Copper,L2,Bot*%
+%TF.FilePolarity,Positive*%
+%FSLAX46Y46*%
+G04 Gerber Fmt 4.6, Leading zero omitted, Abs format (unit mm)*
+G04 Created by KiCad (PCBNEW 5.1.6-c6e7f7d~87~ubuntu18.04.1) date 2020-12-29 21:19:46*
+%MOMM*%
+%LPD*%
+G01*
+G04 APERTURE LIST*
+%TA.AperFunction,ComponentPad*%
+%ADD10O,2.000000X1.600000*%
+%TD*%
+%TA.AperFunction,ComponentPad*%
+%ADD11R,2.000000X2.000000*%
+%TD*%
+%TA.AperFunction,ComponentPad*%
+%ADD12C,1.500000*%
+%TD*%
+%TA.AperFunction,ComponentPad*%
+%ADD13R,1.500000X1.500000*%
+%TD*%
+%TA.AperFunction,ComponentPad*%
+%ADD14O,1.600000X1.600000*%
+%TD*%
+%TA.AperFunction,ComponentPad*%
+%ADD15C,1.600000*%
+%TD*%
+%TA.AperFunction,Conductor*%
+%ADD16C,0.254000*%
+%TD*%
+G04 APERTURE END LIST*
+D10*
+%TO.P,U2,16*%
+%TO.N,Net-(U2-Pad16)*%
+X151130000Y-64770000D03*
+%TO.P,U2,15*%
+%TO.N,Net-(U2-Pad15)*%
+X151130000Y-62230000D03*
+%TO.P,U2,14*%
+%TO.N,Net-(U2-Pad14)*%
+X151130000Y-59690000D03*
+%TO.P,U2,13*%
+%TO.N,Net-(U2-Pad13)*%
+X151130000Y-57150000D03*
+%TO.P,U2,12*%
+%TO.N,D3*%
+X151130000Y-54610000D03*
+%TO.P,U2,11*%
+%TO.N,D4*%
+X151130000Y-52070000D03*
+%TO.P,U2,10*%
+%TO.N,GND*%
+X151130000Y-49530000D03*
+%TO.P,U2,9*%
+%TO.N,5V*%
+X151130000Y-46990000D03*
+%TO.P,U2,8*%
+%TO.N,3.3V*%
+X128270000Y-46990000D03*
+%TO.P,U2,7*%
+%TO.N,Net-(U2-Pad7)*%
+X128270000Y-49530000D03*
+%TO.P,U2,6*%
+%TO.N,Net-(U2-Pad6)*%
+X128270000Y-52070000D03*
+%TO.P,U2,5*%
+%TO.N,Net-(U2-Pad5)*%
+X128270000Y-54610000D03*
+%TO.P,U2,4*%
+%TO.N,Net-(U2-Pad4)*%
+X128270000Y-57150000D03*
+%TO.P,U2,3*%
+%TO.N,Net-(U2-Pad3)*%
+X128270000Y-59690000D03*
+D11*
+%TO.P,U2,1*%
+%TO.N,Net-(U2-Pad1)*%
+X128270000Y-64770000D03*
+D10*
+%TO.P,U2,2*%
+%TO.N,A0*%
+X128270000Y-62230000D03*
+%TD*%
+D12*
+%TO.P,U1,4*%
+%TO.N,GND*%
+X143510000Y-62230000D03*
+%TO.P,U1,3*%
+%TO.N,Net-(U1-Pad3)*%
+X140970000Y-62230000D03*
+%TO.P,U1,2*%
+%TO.N,D3*%
+X138430000Y-62230000D03*
+D13*
+%TO.P,U1,1*%
+%TO.N,3.3V*%
+X135890000Y-62230000D03*
+%TD*%
+D14*
+%TO.P,R2,2*%
+%TO.N,A0*%
+X132080000Y-41910000D03*
+D15*
+%TO.P,R2,1*%
+%TO.N,3.3V*%
+X129540000Y-41910000D03*
+%TD*%
+D14*
+%TO.P,R1,2*%
+%TO.N,GND*%
+X149860000Y-41910000D03*
+D15*
+%TO.P,R1,1*%
+%TO.N,A0*%
+X139700000Y-41910000D03*
+%TD*%
+D16*
+%TO.N,GND*%
+G36*
+X153543000Y-65913000D02*
+G01*
+X152199254Y-65913000D01*
+X152349608Y-65789608D01*
+X152528932Y-65571101D01*
+X152662182Y-65321808D01*
+X152744236Y-65051309D01*
+X152771943Y-64770000D01*
+X152744236Y-64488691D01*
+X152662182Y-64218192D01*
+X152528932Y-63968899D01*
+X152349608Y-63750392D01*
+X152131101Y-63571068D01*
+X151998142Y-63500000D01*
+X152131101Y-63428932D01*
+X152349608Y-63249608D01*
+X152528932Y-63031101D01*
+X152662182Y-62781808D01*
+X152744236Y-62511309D01*
+X152771943Y-62230000D01*
+X152744236Y-61948691D01*
+X152662182Y-61678192D01*
+X152528932Y-61428899D01*
+X152349608Y-61210392D01*
+X152131101Y-61031068D01*
+X151998142Y-60960000D01*
+X152131101Y-60888932D01*
+X152349608Y-60709608D01*
+X152528932Y-60491101D01*
+X152662182Y-60241808D01*
+X152744236Y-59971309D01*
+X152771943Y-59690000D01*
+X152744236Y-59408691D01*
+X152662182Y-59138192D01*
+X152528932Y-58888899D01*
+X152349608Y-58670392D01*
+X152131101Y-58491068D01*
+X151998142Y-58420000D01*
+X152131101Y-58348932D01*
+X152349608Y-58169608D01*
+X152528932Y-57951101D01*
+X152662182Y-57701808D01*
+X152744236Y-57431309D01*
+X152771943Y-57150000D01*
+X152744236Y-56868691D01*
+X152662182Y-56598192D01*
+X152528932Y-56348899D01*
+X152349608Y-56130392D01*
+X152131101Y-55951068D01*
+X151998142Y-55880000D01*
+X152131101Y-55808932D01*
+X152349608Y-55629608D01*
+X152528932Y-55411101D01*
+X152662182Y-55161808D01*
+X152744236Y-54891309D01*
+X152771943Y-54610000D01*
+X152744236Y-54328691D01*
+X152662182Y-54058192D01*
+X152528932Y-53808899D01*
+X152349608Y-53590392D01*
+X152131101Y-53411068D01*
+X151998142Y-53340000D01*
+X152131101Y-53268932D01*
+X152349608Y-53089608D01*
+X152528932Y-52871101D01*
+X152662182Y-52621808D01*
+X152744236Y-52351309D01*
+X152771943Y-52070000D01*
+X152744236Y-51788691D01*
+X152662182Y-51518192D01*
+X152528932Y-51268899D01*
+X152349608Y-51050392D01*
+X152131101Y-50871068D01*
+X152001655Y-50801878D01*
+X152019227Y-50794430D01*
+X152252662Y-50635673D01*
+X152450639Y-50434425D01*
+X152605551Y-50198421D01*
+X152711444Y-49936730D01*
+X152721904Y-49879039D01*
+X152599915Y-49657000D01*
+X151257000Y-49657000D01*
+X151257000Y-49677000D01*
+X151003000Y-49677000D01*
+X151003000Y-49657000D01*
+X149660085Y-49657000D01*
+X149538096Y-49879039D01*
+X149548556Y-49936730D01*
+X149654449Y-50198421D01*
+X149809361Y-50434425D01*
+X150007338Y-50635673D01*
+X150240773Y-50794430D01*
+X150258345Y-50801878D01*
+X150128899Y-50871068D01*
+X149910392Y-51050392D01*
+X149731068Y-51268899D01*
+X149597818Y-51518192D01*
+X149515764Y-51788691D01*
+X149488057Y-52070000D01*
+X149515764Y-52351309D01*
+X149597818Y-52621808D01*
+X149731068Y-52871101D01*
+X149910392Y-53089608D01*
+X150128899Y-53268932D01*
+X150261858Y-53340000D01*
+X150128899Y-53411068D01*
+X149910392Y-53590392D01*
+X149731068Y-53808899D01*
+X149597818Y-54058192D01*
+X149515764Y-54328691D01*
+X149488057Y-54610000D01*
+X149515764Y-54891309D01*
+X149597818Y-55161808D01*
+X149731068Y-55411101D01*
+X149910392Y-55629608D01*
+X150128899Y-55808932D01*
+X150261858Y-55880000D01*
+X150128899Y-55951068D01*
+X149910392Y-56130392D01*
+X149731068Y-56348899D01*
+X149597818Y-56598192D01*
+X149515764Y-56868691D01*
+X149488057Y-57150000D01*
+X149515764Y-57431309D01*
+X149597818Y-57701808D01*
+X149731068Y-57951101D01*
+X149910392Y-58169608D01*
+X150128899Y-58348932D01*
+X150261858Y-58420000D01*
+X150128899Y-58491068D01*
+X149910392Y-58670392D01*
+X149731068Y-58888899D01*
+X149597818Y-59138192D01*
+X149515764Y-59408691D01*
+X149488057Y-59690000D01*
+X149515764Y-59971309D01*
+X149597818Y-60241808D01*
+X149731068Y-60491101D01*
+X149910392Y-60709608D01*
+X150128899Y-60888932D01*
+X150261858Y-60960000D01*
+X150128899Y-61031068D01*
+X149910392Y-61210392D01*
+X149731068Y-61428899D01*
+X149597818Y-61678192D01*
+X149515764Y-61948691D01*
+X149488057Y-62230000D01*
+X149515764Y-62511309D01*
+X149597818Y-62781808D01*
+X149731068Y-63031101D01*
+X149910392Y-63249608D01*
+X150128899Y-63428932D01*
+X150261858Y-63500000D01*
+X150128899Y-63571068D01*
+X149910392Y-63750392D01*
+X149731068Y-63968899D01*
+X149597818Y-64218192D01*
+X149515764Y-64488691D01*
+X149488057Y-64770000D01*
+X149515764Y-65051309D01*
+X149597818Y-65321808D01*
+X149731068Y-65571101D01*
+X149910392Y-65789608D01*
+X150060746Y-65913000D01*
+X129890195Y-65913000D01*
+X129895812Y-65894482D01*
+X129908072Y-65770000D01*
+X129908072Y-63770000D01*
+X129895812Y-63645518D01*
+X129859502Y-63525820D01*
+X129800537Y-63415506D01*
+X129721185Y-63318815D01*
+X129624494Y-63239463D01*
+X129536524Y-63192441D01*
+X129668932Y-63031101D01*
+X129802182Y-62781808D01*
+X129884236Y-62511309D01*
+X129911943Y-62230000D01*
+X129884236Y-61948691D01*
+X129802182Y-61678192D01*
+X129696247Y-61480000D01*
+X134501928Y-61480000D01*
+X134501928Y-62980000D01*
+X134514188Y-63104482D01*
+X134550498Y-63224180D01*
+X134609463Y-63334494D01*
+X134688815Y-63431185D01*
+X134785506Y-63510537D01*
+X134895820Y-63569502D01*
+X135015518Y-63605812D01*
+X135140000Y-63618072D01*
+X136640000Y-63618072D01*
+X136764482Y-63605812D01*
+X136884180Y-63569502D01*
+X136994494Y-63510537D01*
+X137091185Y-63431185D01*
+X137170537Y-63334494D01*
+X137229502Y-63224180D01*
+X137265812Y-63104482D01*
+X137276445Y-62996517D01*
+X137354201Y-63112886D01*
+X137547114Y-63305799D01*
+X137773957Y-63457371D01*
+X138026011Y-63561775D01*
+X138293589Y-63615000D01*
+X138566411Y-63615000D01*
+X138833989Y-63561775D01*
+X139086043Y-63457371D01*
+X139312886Y-63305799D01*
+X139505799Y-63112886D01*
+X139657371Y-62886043D01*
+X139700000Y-62783127D01*
+X139742629Y-62886043D01*
+X139894201Y-63112886D01*
+X140087114Y-63305799D01*
+X140313957Y-63457371D01*
+X140566011Y-63561775D01*
+X140833589Y-63615000D01*
+X141106411Y-63615000D01*
+X141373989Y-63561775D01*
+X141626043Y-63457371D01*
+X141852886Y-63305799D01*
+X141971692Y-63186993D01*
+X142732612Y-63186993D01*
+X142798137Y-63425860D01*
+X143045116Y-63541760D01*
+X143309960Y-63607250D01*
+X143582492Y-63619812D01*
+X143852238Y-63578965D01*
+X144108832Y-63486277D01*
+X144221863Y-63425860D01*
+X144287388Y-63186993D01*
+X143510000Y-62409605D01*
+X142732612Y-63186993D01*
+X141971692Y-63186993D01*
+X142045799Y-63112886D01*
+X142197371Y-62886043D01*
+X142238511Y-62786721D01*
+X142253723Y-62828832D01*
+X142314140Y-62941863D01*
+X142553007Y-63007388D01*
+X143330395Y-62230000D01*
+X143689605Y-62230000D01*
+X144466993Y-63007388D01*
+X144705860Y-62941863D01*
+X144821760Y-62694884D01*
+X144887250Y-62430040D01*
+X144899812Y-62157508D01*
+X144858965Y-61887762D01*
+X144766277Y-61631168D01*
+X144705860Y-61518137D01*
+X144466993Y-61452612D01*
+X143689605Y-62230000D01*
+X143330395Y-62230000D01*
+X142553007Y-61452612D01*
+X142314140Y-61518137D01*
+X142239836Y-61676477D01*
+X142197371Y-61573957D01*
+X142045799Y-61347114D01*
+X141971692Y-61273007D01*
+X142732612Y-61273007D01*
+X143510000Y-62050395D01*
+X144287388Y-61273007D01*
+X144221863Y-61034140D01*
+X143974884Y-60918240D01*
+X143710040Y-60852750D01*
+X143437508Y-60840188D01*
+X143167762Y-60881035D01*
+X142911168Y-60973723D01*
+X142798137Y-61034140D01*
+X142732612Y-61273007D01*
+X141971692Y-61273007D01*
+X141852886Y-61154201D01*
+X141626043Y-61002629D01*
+X141373989Y-60898225D01*
+X141106411Y-60845000D01*
+X140833589Y-60845000D01*
+X140566011Y-60898225D01*
+X140313957Y-61002629D01*
+X140087114Y-61154201D01*
+X139894201Y-61347114D01*
+X139742629Y-61573957D01*
+X139700000Y-61676873D01*
+X139657371Y-61573957D01*
+X139505799Y-61347114D01*
+X139312886Y-61154201D01*
+X139086043Y-61002629D01*
+X138833989Y-60898225D01*
+X138566411Y-60845000D01*
+X138293589Y-60845000D01*
+X138026011Y-60898225D01*
+X137773957Y-61002629D01*
+X137547114Y-61154201D01*
+X137354201Y-61347114D01*
+X137276445Y-61463483D01*
+X137265812Y-61355518D01*
+X137229502Y-61235820D01*
+X137170537Y-61125506D01*
+X137091185Y-61028815D01*
+X136994494Y-60949463D01*
+X136884180Y-60890498D01*
+X136764482Y-60854188D01*
+X136640000Y-60841928D01*
+X135140000Y-60841928D01*
+X135015518Y-60854188D01*
+X134895820Y-60890498D01*
+X134785506Y-60949463D01*
+X134688815Y-61028815D01*
+X134609463Y-61125506D01*
+X134550498Y-61235820D01*
+X134514188Y-61355518D01*
+X134501928Y-61480000D01*
+X129696247Y-61480000D01*
+X129668932Y-61428899D01*
+X129489608Y-61210392D01*
+X129271101Y-61031068D01*
+X129138142Y-60960000D01*
+X129271101Y-60888932D01*
+X129489608Y-60709608D01*
+X129668932Y-60491101D01*
+X129802182Y-60241808D01*
+X129884236Y-59971309D01*
+X129911943Y-59690000D01*
+X129884236Y-59408691D01*
+X129802182Y-59138192D01*
+X129668932Y-58888899D01*
+X129489608Y-58670392D01*
+X129271101Y-58491068D01*
+X129138142Y-58420000D01*
+X129271101Y-58348932D01*
+X129489608Y-58169608D01*
+X129668932Y-57951101D01*
+X129802182Y-57701808D01*
+X129884236Y-57431309D01*
+X129911943Y-57150000D01*
+X129884236Y-56868691D01*
+X129802182Y-56598192D01*
+X129668932Y-56348899D01*
+X129489608Y-56130392D01*
+X129271101Y-55951068D01*
+X129138142Y-55880000D01*
+X129271101Y-55808932D01*
+X129489608Y-55629608D01*
+X129668932Y-55411101D01*
+X129802182Y-55161808D01*
+X129884236Y-54891309D01*
+X129911943Y-54610000D01*
+X129884236Y-54328691D01*
+X129802182Y-54058192D01*
+X129668932Y-53808899D01*
+X129489608Y-53590392D01*
+X129271101Y-53411068D01*
+X129138142Y-53340000D01*
+X129271101Y-53268932D01*
+X129489608Y-53089608D01*
+X129668932Y-52871101D01*
+X129802182Y-52621808D01*
+X129884236Y-52351309D01*
+X129911943Y-52070000D01*
+X129884236Y-51788691D01*
+X129802182Y-51518192D01*
+X129668932Y-51268899D01*
+X129489608Y-51050392D01*
+X129271101Y-50871068D01*
+X129138142Y-50800000D01*
+X129271101Y-50728932D01*
+X129489608Y-50549608D01*
+X129668932Y-50331101D01*
+X129802182Y-50081808D01*
+X129884236Y-49811309D01*
+X129911943Y-49530000D01*
+X129884236Y-49248691D01*
+X129802182Y-48978192D01*
+X129668932Y-48728899D01*
+X129489608Y-48510392D01*
+X129271101Y-48331068D01*
+X129138142Y-48260000D01*
+X129271101Y-48188932D01*
+X129489608Y-48009608D01*
+X129668932Y-47791101D01*
+X129802182Y-47541808D01*
+X129884236Y-47271309D01*
+X129911943Y-46990000D01*
+X149488057Y-46990000D01*
+X149515764Y-47271309D01*
+X149597818Y-47541808D01*
+X149731068Y-47791101D01*
+X149910392Y-48009608D01*
+X150128899Y-48188932D01*
+X150258345Y-48258122D01*
+X150240773Y-48265570D01*
+X150007338Y-48424327D01*
+X149809361Y-48625575D01*
+X149654449Y-48861579D01*
+X149548556Y-49123270D01*
+X149538096Y-49180961D01*
+X149660085Y-49403000D01*
+X151003000Y-49403000D01*
+X151003000Y-49383000D01*
+X151257000Y-49383000D01*
+X151257000Y-49403000D01*
+X152599915Y-49403000D01*
+X152721904Y-49180961D01*
+X152711444Y-49123270D01*
+X152605551Y-48861579D01*
+X152450639Y-48625575D01*
+X152252662Y-48424327D01*
+X152019227Y-48265570D01*
+X152001655Y-48258122D01*
+X152131101Y-48188932D01*
+X152349608Y-48009608D01*
+X152528932Y-47791101D01*
+X152662182Y-47541808D01*
+X152744236Y-47271309D01*
+X152771943Y-46990000D01*
+X152744236Y-46708691D01*
+X152662182Y-46438192D01*
+X152528932Y-46188899D01*
+X152349608Y-45970392D01*
+X152131101Y-45791068D01*
+X151881808Y-45657818D01*
+X151611309Y-45575764D01*
+X151400492Y-45555000D01*
+X150859508Y-45555000D01*
+X150648691Y-45575764D01*
+X150378192Y-45657818D01*
+X150128899Y-45791068D01*
+X149910392Y-45970392D01*
+X149731068Y-46188899D01*
+X149597818Y-46438192D01*
+X149515764Y-46708691D01*
+X149488057Y-46990000D01*
+X129911943Y-46990000D01*
+X129884236Y-46708691D01*
+X129802182Y-46438192D01*
+X129668932Y-46188899D01*
+X129489608Y-45970392D01*
+X129271101Y-45791068D01*
+X129021808Y-45657818D01*
+X128751309Y-45575764D01*
+X128540492Y-45555000D01*
+X127999508Y-45555000D01*
+X127788691Y-45575764D01*
+X127518192Y-45657818D01*
+X127268899Y-45791068D01*
+X127050392Y-45970392D01*
+X126871068Y-46188899D01*
+X126737818Y-46438192D01*
+X126655764Y-46708691D01*
+X126628057Y-46990000D01*
+X126655764Y-47271309D01*
+X126737818Y-47541808D01*
+X126871068Y-47791101D01*
+X127050392Y-48009608D01*
+X127268899Y-48188932D01*
+X127401858Y-48260000D01*
+X127268899Y-48331068D01*
+X127050392Y-48510392D01*
+X126871068Y-48728899D01*
+X126737818Y-48978192D01*
+X126655764Y-49248691D01*
+X126628057Y-49530000D01*
+X126655764Y-49811309D01*
+X126737818Y-50081808D01*
+X126871068Y-50331101D01*
+X127050392Y-50549608D01*
+X127268899Y-50728932D01*
+X127401858Y-50800000D01*
+X127268899Y-50871068D01*
+X127050392Y-51050392D01*
+X126871068Y-51268899D01*
+X126737818Y-51518192D01*
+X126655764Y-51788691D01*
+X126628057Y-52070000D01*
+X126655764Y-52351309D01*
+X126737818Y-52621808D01*
+X126871068Y-52871101D01*
+X127050392Y-53089608D01*
+X127268899Y-53268932D01*
+X127401858Y-53340000D01*
+X127268899Y-53411068D01*
+X127050392Y-53590392D01*
+X126871068Y-53808899D01*
+X126737818Y-54058192D01*
+X126655764Y-54328691D01*
+X126628057Y-54610000D01*
+X126655764Y-54891309D01*
+X126737818Y-55161808D01*
+X126871068Y-55411101D01*
+X127050392Y-55629608D01*
+X127268899Y-55808932D01*
+X127401858Y-55880000D01*
+X127268899Y-55951068D01*
+X127050392Y-56130392D01*
+X126871068Y-56348899D01*
+X126737818Y-56598192D01*
+X126655764Y-56868691D01*
+X126628057Y-57150000D01*
+X126655764Y-57431309D01*
+X126737818Y-57701808D01*
+X126871068Y-57951101D01*
+X127050392Y-58169608D01*
+X127268899Y-58348932D01*
+X127401858Y-58420000D01*
+X127268899Y-58491068D01*
+X127050392Y-58670392D01*
+X126871068Y-58888899D01*
+X126737818Y-59138192D01*
+X126655764Y-59408691D01*
+X126628057Y-59690000D01*
+X126655764Y-59971309D01*
+X126737818Y-60241808D01*
+X126871068Y-60491101D01*
+X127050392Y-60709608D01*
+X127268899Y-60888932D01*
+X127401858Y-60960000D01*
+X127268899Y-61031068D01*
+X127050392Y-61210392D01*
+X126871068Y-61428899D01*
+X126737818Y-61678192D01*
+X126655764Y-61948691D01*
+X126628057Y-62230000D01*
+X126655764Y-62511309D01*
+X126737818Y-62781808D01*
+X126871068Y-63031101D01*
+X127003476Y-63192441D01*
+X126915506Y-63239463D01*
+X126818815Y-63318815D01*
+X126739463Y-63415506D01*
+X126680498Y-63525820D01*
+X126644188Y-63645518D01*
+X126631928Y-63770000D01*
+X126631928Y-65770000D01*
+X126644188Y-65894482D01*
+X126649805Y-65913000D01*
+X125857000Y-65913000D01*
+X125857000Y-41768665D01*
+X128105000Y-41768665D01*
+X128105000Y-42051335D01*
+X128160147Y-42328574D01*
+X128268320Y-42589727D01*
+X128425363Y-42824759D01*
+X128625241Y-43024637D01*
+X128860273Y-43181680D01*
+X129121426Y-43289853D01*
+X129398665Y-43345000D01*
+X129681335Y-43345000D01*
+X129958574Y-43289853D01*
+X130219727Y-43181680D01*
+X130454759Y-43024637D01*
+X130654637Y-42824759D01*
+X130810000Y-42592241D01*
+X130965363Y-42824759D01*
+X131165241Y-43024637D01*
+X131400273Y-43181680D01*
+X131661426Y-43289853D01*
+X131938665Y-43345000D01*
+X132221335Y-43345000D01*
+X132498574Y-43289853D01*
+X132759727Y-43181680D01*
+X132994759Y-43024637D01*
+X133194637Y-42824759D01*
+X133351680Y-42589727D01*
+X133459853Y-42328574D01*
+X133515000Y-42051335D01*
+X133515000Y-41768665D01*
+X138265000Y-41768665D01*
+X138265000Y-42051335D01*
+X138320147Y-42328574D01*
+X138428320Y-42589727D01*
+X138585363Y-42824759D01*
+X138785241Y-43024637D01*
+X139020273Y-43181680D01*
+X139281426Y-43289853D01*
+X139558665Y-43345000D01*
+X139841335Y-43345000D01*
+X140118574Y-43289853D01*
+X140379727Y-43181680D01*
+X140614759Y-43024637D01*
+X140814637Y-42824759D01*
+X140971680Y-42589727D01*
+X141079853Y-42328574D01*
+X141093684Y-42259039D01*
+X148468096Y-42259039D01*
+X148508754Y-42393087D01*
+X148628963Y-42647420D01*
+X148796481Y-42873414D01*
+X149004869Y-43062385D01*
+X149246119Y-43207070D01*
+X149510960Y-43301909D01*
+X149733000Y-43180624D01*
+X149733000Y-42037000D01*
+X149987000Y-42037000D01*
+X149987000Y-43180624D01*
+X150209040Y-43301909D01*
+X150473881Y-43207070D01*
+X150715131Y-43062385D01*
+X150923519Y-42873414D01*
+X151091037Y-42647420D01*
+X151211246Y-42393087D01*
+X151251904Y-42259039D01*
+X151129915Y-42037000D01*
+X149987000Y-42037000D01*
+X149733000Y-42037000D01*
+X148590085Y-42037000D01*
+X148468096Y-42259039D01*
+X141093684Y-42259039D01*
+X141135000Y-42051335D01*
+X141135000Y-41768665D01*
+X141093685Y-41560961D01*
+X148468096Y-41560961D01*
+X148590085Y-41783000D01*
+X149733000Y-41783000D01*
+X149733000Y-40639376D01*
+X149987000Y-40639376D01*
+X149987000Y-41783000D01*
+X151129915Y-41783000D01*
+X151251904Y-41560961D01*
+X151211246Y-41426913D01*
+X151091037Y-41172580D01*
+X150923519Y-40946586D01*
+X150715131Y-40757615D01*
+X150473881Y-40612930D01*
+X150209040Y-40518091D01*
+X149987000Y-40639376D01*
+X149733000Y-40639376D01*
+X149510960Y-40518091D01*
+X149246119Y-40612930D01*
+X149004869Y-40757615D01*
+X148796481Y-40946586D01*
+X148628963Y-41172580D01*
+X148508754Y-41426913D01*
+X148468096Y-41560961D01*
+X141093685Y-41560961D01*
+X141079853Y-41491426D01*
+X140971680Y-41230273D01*
+X140814637Y-40995241D01*
+X140614759Y-40795363D01*
+X140379727Y-40638320D01*
+X140118574Y-40530147D01*
+X139841335Y-40475000D01*
+X139558665Y-40475000D01*
+X139281426Y-40530147D01*
+X139020273Y-40638320D01*
+X138785241Y-40795363D01*
+X138585363Y-40995241D01*
+X138428320Y-41230273D01*
+X138320147Y-41491426D01*
+X138265000Y-41768665D01*
+X133515000Y-41768665D01*
+X133459853Y-41491426D01*
+X133351680Y-41230273D01*
+X133194637Y-40995241D01*
+X132994759Y-40795363D01*
+X132759727Y-40638320D01*
+X132498574Y-40530147D01*
+X132221335Y-40475000D01*
+X131938665Y-40475000D01*
+X131661426Y-40530147D01*
+X131400273Y-40638320D01*
+X131165241Y-40795363D01*
+X130965363Y-40995241D01*
+X130810000Y-41227759D01*
+X130654637Y-40995241D01*
+X130454759Y-40795363D01*
+X130219727Y-40638320D01*
+X129958574Y-40530147D01*
+X129681335Y-40475000D01*
+X129398665Y-40475000D01*
+X129121426Y-40530147D01*
+X128860273Y-40638320D01*
+X128625241Y-40795363D01*
+X128425363Y-40995241D01*
+X128268320Y-41230273D01*
+X128160147Y-41491426D01*
+X128105000Y-41768665D01*
+X125857000Y-41768665D01*
+X125857000Y-38227000D01*
+X153543000Y-38227000D01*
+X153543000Y-65913000D01*
+G37*
+X153543000Y-65913000D02*
+X152199254Y-65913000D01*
+X152349608Y-65789608D01*
+X152528932Y-65571101D01*
+X152662182Y-65321808D01*
+X152744236Y-65051309D01*
+X152771943Y-64770000D01*
+X152744236Y-64488691D01*
+X152662182Y-64218192D01*
+X152528932Y-63968899D01*
+X152349608Y-63750392D01*
+X152131101Y-63571068D01*
+X151998142Y-63500000D01*
+X152131101Y-63428932D01*
+X152349608Y-63249608D01*
+X152528932Y-63031101D01*
+X152662182Y-62781808D01*
+X152744236Y-62511309D01*
+X152771943Y-62230000D01*
+X152744236Y-61948691D01*
+X152662182Y-61678192D01*
+X152528932Y-61428899D01*
+X152349608Y-61210392D01*
+X152131101Y-61031068D01*
+X151998142Y-60960000D01*
+X152131101Y-60888932D01*
+X152349608Y-60709608D01*
+X152528932Y-60491101D01*
+X152662182Y-60241808D01*
+X152744236Y-59971309D01*
+X152771943Y-59690000D01*
+X152744236Y-59408691D01*
+X152662182Y-59138192D01*
+X152528932Y-58888899D01*
+X152349608Y-58670392D01*
+X152131101Y-58491068D01*
+X151998142Y-58420000D01*
+X152131101Y-58348932D01*
+X152349608Y-58169608D01*
+X152528932Y-57951101D01*
+X152662182Y-57701808D01*
+X152744236Y-57431309D01*
+X152771943Y-57150000D01*
+X152744236Y-56868691D01*
+X152662182Y-56598192D01*
+X152528932Y-56348899D01*
+X152349608Y-56130392D01*
+X152131101Y-55951068D01*
+X151998142Y-55880000D01*
+X152131101Y-55808932D01*
+X152349608Y-55629608D01*
+X152528932Y-55411101D01*
+X152662182Y-55161808D01*
+X152744236Y-54891309D01*
+X152771943Y-54610000D01*
+X152744236Y-54328691D01*
+X152662182Y-54058192D01*
+X152528932Y-53808899D01*
+X152349608Y-53590392D01*
+X152131101Y-53411068D01*
+X151998142Y-53340000D01*
+X152131101Y-53268932D01*
+X152349608Y-53089608D01*
+X152528932Y-52871101D01*
+X152662182Y-52621808D01*
+X152744236Y-52351309D01*
+X152771943Y-52070000D01*
+X152744236Y-51788691D01*
+X152662182Y-51518192D01*
+X152528932Y-51268899D01*
+X152349608Y-51050392D01*
+X152131101Y-50871068D01*
+X152001655Y-50801878D01*
+X152019227Y-50794430D01*
+X152252662Y-50635673D01*
+X152450639Y-50434425D01*
+X152605551Y-50198421D01*
+X152711444Y-49936730D01*
+X152721904Y-49879039D01*
+X152599915Y-49657000D01*
+X151257000Y-49657000D01*
+X151257000Y-49677000D01*
+X151003000Y-49677000D01*
+X151003000Y-49657000D01*
+X149660085Y-49657000D01*
+X149538096Y-49879039D01*
+X149548556Y-49936730D01*
+X149654449Y-50198421D01*
+X149809361Y-50434425D01*
+X150007338Y-50635673D01*
+X150240773Y-50794430D01*
+X150258345Y-50801878D01*
+X150128899Y-50871068D01*
+X149910392Y-51050392D01*
+X149731068Y-51268899D01*
+X149597818Y-51518192D01*
+X149515764Y-51788691D01*
+X149488057Y-52070000D01*
+X149515764Y-52351309D01*
+X149597818Y-52621808D01*
+X149731068Y-52871101D01*
+X149910392Y-53089608D01*
+X150128899Y-53268932D01*
+X150261858Y-53340000D01*
+X150128899Y-53411068D01*
+X149910392Y-53590392D01*
+X149731068Y-53808899D01*
+X149597818Y-54058192D01*
+X149515764Y-54328691D01*
+X149488057Y-54610000D01*
+X149515764Y-54891309D01*
+X149597818Y-55161808D01*
+X149731068Y-55411101D01*
+X149910392Y-55629608D01*
+X150128899Y-55808932D01*
+X150261858Y-55880000D01*
+X150128899Y-55951068D01*
+X149910392Y-56130392D01*
+X149731068Y-56348899D01*
+X149597818Y-56598192D01*
+X149515764Y-56868691D01*
+X149488057Y-57150000D01*
+X149515764Y-57431309D01*
+X149597818Y-57701808D01*
+X149731068Y-57951101D01*
+X149910392Y-58169608D01*
+X150128899Y-58348932D01*
+X150261858Y-58420000D01*
+X150128899Y-58491068D01*
+X149910392Y-58670392D01*
+X149731068Y-58888899D01*
+X149597818Y-59138192D01*
+X149515764Y-59408691D01*
+X149488057Y-59690000D01*
+X149515764Y-59971309D01*
+X149597818Y-60241808D01*
+X149731068Y-60491101D01*
+X149910392Y-60709608D01*
+X150128899Y-60888932D01*
+X150261858Y-60960000D01*
+X150128899Y-61031068D01*
+X149910392Y-61210392D01*
+X149731068Y-61428899D01*
+X149597818Y-61678192D01*
+X149515764Y-61948691D01*
+X149488057Y-62230000D01*
+X149515764Y-62511309D01*
+X149597818Y-62781808D01*
+X149731068Y-63031101D01*
+X149910392Y-63249608D01*
+X150128899Y-63428932D01*
+X150261858Y-63500000D01*
+X150128899Y-63571068D01*
+X149910392Y-63750392D01*
+X149731068Y-63968899D01*
+X149597818Y-64218192D01*
+X149515764Y-64488691D01*
+X149488057Y-64770000D01*
+X149515764Y-65051309D01*
+X149597818Y-65321808D01*
+X149731068Y-65571101D01*
+X149910392Y-65789608D01*
+X150060746Y-65913000D01*
+X129890195Y-65913000D01*
+X129895812Y-65894482D01*
+X129908072Y-65770000D01*
+X129908072Y-63770000D01*
+X129895812Y-63645518D01*
+X129859502Y-63525820D01*
+X129800537Y-63415506D01*
+X129721185Y-63318815D01*
+X129624494Y-63239463D01*
+X129536524Y-63192441D01*
+X129668932Y-63031101D01*
+X129802182Y-62781808D01*
+X129884236Y-62511309D01*
+X129911943Y-62230000D01*
+X129884236Y-61948691D01*
+X129802182Y-61678192D01*
+X129696247Y-61480000D01*
+X134501928Y-61480000D01*
+X134501928Y-62980000D01*
+X134514188Y-63104482D01*
+X134550498Y-63224180D01*
+X134609463Y-63334494D01*
+X134688815Y-63431185D01*
+X134785506Y-63510537D01*
+X134895820Y-63569502D01*
+X135015518Y-63605812D01*
+X135140000Y-63618072D01*
+X136640000Y-63618072D01*
+X136764482Y-63605812D01*
+X136884180Y-63569502D01*
+X136994494Y-63510537D01*
+X137091185Y-63431185D01*
+X137170537Y-63334494D01*
+X137229502Y-63224180D01*
+X137265812Y-63104482D01*
+X137276445Y-62996517D01*
+X137354201Y-63112886D01*
+X137547114Y-63305799D01*
+X137773957Y-63457371D01*
+X138026011Y-63561775D01*
+X138293589Y-63615000D01*
+X138566411Y-63615000D01*
+X138833989Y-63561775D01*
+X139086043Y-63457371D01*
+X139312886Y-63305799D01*
+X139505799Y-63112886D01*
+X139657371Y-62886043D01*
+X139700000Y-62783127D01*
+X139742629Y-62886043D01*
+X139894201Y-63112886D01*
+X140087114Y-63305799D01*
+X140313957Y-63457371D01*
+X140566011Y-63561775D01*
+X140833589Y-63615000D01*
+X141106411Y-63615000D01*
+X141373989Y-63561775D01*
+X141626043Y-63457371D01*
+X141852886Y-63305799D01*
+X141971692Y-63186993D01*
+X142732612Y-63186993D01*
+X142798137Y-63425860D01*
+X143045116Y-63541760D01*
+X143309960Y-63607250D01*
+X143582492Y-63619812D01*
+X143852238Y-63578965D01*
+X144108832Y-63486277D01*
+X144221863Y-63425860D01*
+X144287388Y-63186993D01*
+X143510000Y-62409605D01*
+X142732612Y-63186993D01*
+X141971692Y-63186993D01*
+X142045799Y-63112886D01*
+X142197371Y-62886043D01*
+X142238511Y-62786721D01*
+X142253723Y-62828832D01*
+X142314140Y-62941863D01*
+X142553007Y-63007388D01*
+X143330395Y-62230000D01*
+X143689605Y-62230000D01*
+X144466993Y-63007388D01*
+X144705860Y-62941863D01*
+X144821760Y-62694884D01*
+X144887250Y-62430040D01*
+X144899812Y-62157508D01*
+X144858965Y-61887762D01*
+X144766277Y-61631168D01*
+X144705860Y-61518137D01*
+X144466993Y-61452612D01*
+X143689605Y-62230000D01*
+X143330395Y-62230000D01*
+X142553007Y-61452612D01*
+X142314140Y-61518137D01*
+X142239836Y-61676477D01*
+X142197371Y-61573957D01*
+X142045799Y-61347114D01*
+X141971692Y-61273007D01*
+X142732612Y-61273007D01*
+X143510000Y-62050395D01*
+X144287388Y-61273007D01*
+X144221863Y-61034140D01*
+X143974884Y-60918240D01*
+X143710040Y-60852750D01*
+X143437508Y-60840188D01*
+X143167762Y-60881035D01*
+X142911168Y-60973723D01*
+X142798137Y-61034140D01*
+X142732612Y-61273007D01*
+X141971692Y-61273007D01*
+X141852886Y-61154201D01*
+X141626043Y-61002629D01*
+X141373989Y-60898225D01*
+X141106411Y-60845000D01*
+X140833589Y-60845000D01*
+X140566011Y-60898225D01*
+X140313957Y-61002629D01*
+X140087114Y-61154201D01*
+X139894201Y-61347114D01*
+X139742629Y-61573957D01*
+X139700000Y-61676873D01*
+X139657371Y-61573957D01*
+X139505799Y-61347114D01*
+X139312886Y-61154201D01*
+X139086043Y-61002629D01*
+X138833989Y-60898225D01*
+X138566411Y-60845000D01*
+X138293589Y-60845000D01*
+X138026011Y-60898225D01*
+X137773957Y-61002629D01*
+X137547114Y-61154201D01*
+X137354201Y-61347114D01*
+X137276445Y-61463483D01*
+X137265812Y-61355518D01*
+X137229502Y-61235820D01*
+X137170537Y-61125506D01*
+X137091185Y-61028815D01*
+X136994494Y-60949463D01*
+X136884180Y-60890498D01*
+X136764482Y-60854188D01*
+X136640000Y-60841928D01*
+X135140000Y-60841928D01*
+X135015518Y-60854188D01*
+X134895820Y-60890498D01*
+X134785506Y-60949463D01*
+X134688815Y-61028815D01*
+X134609463Y-61125506D01*
+X134550498Y-61235820D01*
+X134514188Y-61355518D01*
+X134501928Y-61480000D01*
+X129696247Y-61480000D01*
+X129668932Y-61428899D01*
+X129489608Y-61210392D01*
+X129271101Y-61031068D01*
+X129138142Y-60960000D01*
+X129271101Y-60888932D01*
+X129489608Y-60709608D01*
+X129668932Y-60491101D01*
+X129802182Y-60241808D01*
+X129884236Y-59971309D01*
+X129911943Y-59690000D01*
+X129884236Y-59408691D01*
+X129802182Y-59138192D01*
+X129668932Y-58888899D01*
+X129489608Y-58670392D01*
+X129271101Y-58491068D01*
+X129138142Y-58420000D01*
+X129271101Y-58348932D01*
+X129489608Y-58169608D01*
+X129668932Y-57951101D01*
+X129802182Y-57701808D01*
+X129884236Y-57431309D01*
+X129911943Y-57150000D01*
+X129884236Y-56868691D01*
+X129802182Y-56598192D01*
+X129668932Y-56348899D01*
+X129489608Y-56130392D01*
+X129271101Y-55951068D01*
+X129138142Y-55880000D01*
+X129271101Y-55808932D01*
+X129489608Y-55629608D01*
+X129668932Y-55411101D01*
+X129802182Y-55161808D01*
+X129884236Y-54891309D01*
+X129911943Y-54610000D01*
+X129884236Y-54328691D01*
+X129802182Y-54058192D01*
+X129668932Y-53808899D01*
+X129489608Y-53590392D01*
+X129271101Y-53411068D01*
+X129138142Y-53340000D01*
+X129271101Y-53268932D01*
+X129489608Y-53089608D01*
+X129668932Y-52871101D01*
+X129802182Y-52621808D01*
+X129884236Y-52351309D01*
+X129911943Y-52070000D01*
+X129884236Y-51788691D01*
+X129802182Y-51518192D01*
+X129668932Y-51268899D01*
+X129489608Y-51050392D01*
+X129271101Y-50871068D01*
+X129138142Y-50800000D01*
+X129271101Y-50728932D01*
+X129489608Y-50549608D01*
+X129668932Y-50331101D01*
+X129802182Y-50081808D01*
+X129884236Y-49811309D01*
+X129911943Y-49530000D01*
+X129884236Y-49248691D01*
+X129802182Y-48978192D01*
+X129668932Y-48728899D01*
+X129489608Y-48510392D01*
+X129271101Y-48331068D01*
+X129138142Y-48260000D01*
+X129271101Y-48188932D01*
+X129489608Y-48009608D01*
+X129668932Y-47791101D01*
+X129802182Y-47541808D01*
+X129884236Y-47271309D01*
+X129911943Y-46990000D01*
+X149488057Y-46990000D01*
+X149515764Y-47271309D01*
+X149597818Y-47541808D01*
+X149731068Y-47791101D01*
+X149910392Y-48009608D01*
+X150128899Y-48188932D01*
+X150258345Y-48258122D01*
+X150240773Y-48265570D01*
+X150007338Y-48424327D01*
+X149809361Y-48625575D01*
+X149654449Y-48861579D01*
+X149548556Y-49123270D01*
+X149538096Y-49180961D01*
+X149660085Y-49403000D01*
+X151003000Y-49403000D01*
+X151003000Y-49383000D01*
+X151257000Y-49383000D01*
+X151257000Y-49403000D01*
+X152599915Y-49403000D01*
+X152721904Y-49180961D01*
+X152711444Y-49123270D01*
+X152605551Y-48861579D01*
+X152450639Y-48625575D01*
+X152252662Y-48424327D01*
+X152019227Y-48265570D01*
+X152001655Y-48258122D01*
+X152131101Y-48188932D01*
+X152349608Y-48009608D01*
+X152528932Y-47791101D01*
+X152662182Y-47541808D01*
+X152744236Y-47271309D01*
+X152771943Y-46990000D01*
+X152744236Y-46708691D01*
+X152662182Y-46438192D01*
+X152528932Y-46188899D01*
+X152349608Y-45970392D01*
+X152131101Y-45791068D01*
+X151881808Y-45657818D01*
+X151611309Y-45575764D01*
+X151400492Y-45555000D01*
+X150859508Y-45555000D01*
+X150648691Y-45575764D01*
+X150378192Y-45657818D01*
+X150128899Y-45791068D01*
+X149910392Y-45970392D01*
+X149731068Y-46188899D01*
+X149597818Y-46438192D01*
+X149515764Y-46708691D01*
+X149488057Y-46990000D01*
+X129911943Y-46990000D01*
+X129884236Y-46708691D01*
+X129802182Y-46438192D01*
+X129668932Y-46188899D01*
+X129489608Y-45970392D01*
+X129271101Y-45791068D01*
+X129021808Y-45657818D01*
+X128751309Y-45575764D01*
+X128540492Y-45555000D01*
+X127999508Y-45555000D01*
+X127788691Y-45575764D01*
+X127518192Y-45657818D01*
+X127268899Y-45791068D01*
+X127050392Y-45970392D01*
+X126871068Y-46188899D01*
+X126737818Y-46438192D01*
+X126655764Y-46708691D01*
+X126628057Y-46990000D01*
+X126655764Y-47271309D01*
+X126737818Y-47541808D01*
+X126871068Y-47791101D01*
+X127050392Y-48009608D01*
+X127268899Y-48188932D01*
+X127401858Y-48260000D01*
+X127268899Y-48331068D01*
+X127050392Y-48510392D01*
+X126871068Y-48728899D01*
+X126737818Y-48978192D01*
+X126655764Y-49248691D01*
+X126628057Y-49530000D01*
+X126655764Y-49811309D01*
+X126737818Y-50081808D01*
+X126871068Y-50331101D01*
+X127050392Y-50549608D01*
+X127268899Y-50728932D01*
+X127401858Y-50800000D01*
+X127268899Y-50871068D01*
+X127050392Y-51050392D01*
+X126871068Y-51268899D01*
+X126737818Y-51518192D01*
+X126655764Y-51788691D01*
+X126628057Y-52070000D01*
+X126655764Y-52351309D01*
+X126737818Y-52621808D01*
+X126871068Y-52871101D01*
+X127050392Y-53089608D01*
+X127268899Y-53268932D01*
+X127401858Y-53340000D01*
+X127268899Y-53411068D01*
+X127050392Y-53590392D01*
+X126871068Y-53808899D01*
+X126737818Y-54058192D01*
+X126655764Y-54328691D01*
+X126628057Y-54610000D01*
+X126655764Y-54891309D01*
+X126737818Y-55161808D01*
+X126871068Y-55411101D01*
+X127050392Y-55629608D01*
+X127268899Y-55808932D01*
+X127401858Y-55880000D01*
+X127268899Y-55951068D01*
+X127050392Y-56130392D01*
+X126871068Y-56348899D01*
+X126737818Y-56598192D01*
+X126655764Y-56868691D01*
+X126628057Y-57150000D01*
+X126655764Y-57431309D01*
+X126737818Y-57701808D01*
+X126871068Y-57951101D01*
+X127050392Y-58169608D01*
+X127268899Y-58348932D01*
+X127401858Y-58420000D01*
+X127268899Y-58491068D01*
+X127050392Y-58670392D01*
+X126871068Y-58888899D01*
+X126737818Y-59138192D01*
+X126655764Y-59408691D01*
+X126628057Y-59690000D01*
+X126655764Y-59971309D01*
+X126737818Y-60241808D01*
+X126871068Y-60491101D01*
+X127050392Y-60709608D01*
+X127268899Y-60888932D01*
+X127401858Y-60960000D01*
+X127268899Y-61031068D01*
+X127050392Y-61210392D01*
+X126871068Y-61428899D01*
+X126737818Y-61678192D01*
+X126655764Y-61948691D01*
+X126628057Y-62230000D01*
+X126655764Y-62511309D01*
+X126737818Y-62781808D01*
+X126871068Y-63031101D01*
+X127003476Y-63192441D01*
+X126915506Y-63239463D01*
+X126818815Y-63318815D01*
+X126739463Y-63415506D01*
+X126680498Y-63525820D01*
+X126644188Y-63645518D01*
+X126631928Y-63770000D01*
+X126631928Y-65770000D01*
+X126644188Y-65894482D01*
+X126649805Y-65913000D01*
+X125857000Y-65913000D01*
+X125857000Y-41768665D01*
+X128105000Y-41768665D01*
+X128105000Y-42051335D01*
+X128160147Y-42328574D01*
+X128268320Y-42589727D01*
+X128425363Y-42824759D01*
+X128625241Y-43024637D01*
+X128860273Y-43181680D01*
+X129121426Y-43289853D01*
+X129398665Y-43345000D01*
+X129681335Y-43345000D01*
+X129958574Y-43289853D01*
+X130219727Y-43181680D01*
+X130454759Y-43024637D01*
+X130654637Y-42824759D01*
+X130810000Y-42592241D01*
+X130965363Y-42824759D01*
+X131165241Y-43024637D01*
+X131400273Y-43181680D01*
+X131661426Y-43289853D01*
+X131938665Y-43345000D01*
+X132221335Y-43345000D01*
+X132498574Y-43289853D01*
+X132759727Y-43181680D01*
+X132994759Y-43024637D01*
+X133194637Y-42824759D01*
+X133351680Y-42589727D01*
+X133459853Y-42328574D01*
+X133515000Y-42051335D01*
+X133515000Y-41768665D01*
+X138265000Y-41768665D01*
+X138265000Y-42051335D01*
+X138320147Y-42328574D01*
+X138428320Y-42589727D01*
+X138585363Y-42824759D01*
+X138785241Y-43024637D01*
+X139020273Y-43181680D01*
+X139281426Y-43289853D01*
+X139558665Y-43345000D01*
+X139841335Y-43345000D01*
+X140118574Y-43289853D01*
+X140379727Y-43181680D01*
+X140614759Y-43024637D01*
+X140814637Y-42824759D01*
+X140971680Y-42589727D01*
+X141079853Y-42328574D01*
+X141093684Y-42259039D01*
+X148468096Y-42259039D01*
+X148508754Y-42393087D01*
+X148628963Y-42647420D01*
+X148796481Y-42873414D01*
+X149004869Y-43062385D01*
+X149246119Y-43207070D01*
+X149510960Y-43301909D01*
+X149733000Y-43180624D01*
+X149733000Y-42037000D01*
+X149987000Y-42037000D01*
+X149987000Y-43180624D01*
+X150209040Y-43301909D01*
+X150473881Y-43207070D01*
+X150715131Y-43062385D01*
+X150923519Y-42873414D01*
+X151091037Y-42647420D01*
+X151211246Y-42393087D01*
+X151251904Y-42259039D01*
+X151129915Y-42037000D01*
+X149987000Y-42037000D01*
+X149733000Y-42037000D01*
+X148590085Y-42037000D01*
+X148468096Y-42259039D01*
+X141093684Y-42259039D01*
+X141135000Y-42051335D01*
+X141135000Y-41768665D01*
+X141093685Y-41560961D01*
+X148468096Y-41560961D01*
+X148590085Y-41783000D01*
+X149733000Y-41783000D01*
+X149733000Y-40639376D01*
+X149987000Y-40639376D01*
+X149987000Y-41783000D01*
+X151129915Y-41783000D01*
+X151251904Y-41560961D01*
+X151211246Y-41426913D01*
+X151091037Y-41172580D01*
+X150923519Y-40946586D01*
+X150715131Y-40757615D01*
+X150473881Y-40612930D01*
+X150209040Y-40518091D01*
+X149987000Y-40639376D01*
+X149733000Y-40639376D01*
+X149510960Y-40518091D01*
+X149246119Y-40612930D01*
+X149004869Y-40757615D01*
+X148796481Y-40946586D01*
+X148628963Y-41172580D01*
+X148508754Y-41426913D01*
+X148468096Y-41560961D01*
+X141093685Y-41560961D01*
+X141079853Y-41491426D01*
+X140971680Y-41230273D01*
+X140814637Y-40995241D01*
+X140614759Y-40795363D01*
+X140379727Y-40638320D01*
+X140118574Y-40530147D01*
+X139841335Y-40475000D01*
+X139558665Y-40475000D01*
+X139281426Y-40530147D01*
+X139020273Y-40638320D01*
+X138785241Y-40795363D01*
+X138585363Y-40995241D01*
+X138428320Y-41230273D01*
+X138320147Y-41491426D01*
+X138265000Y-41768665D01*
+X133515000Y-41768665D01*
+X133459853Y-41491426D01*
+X133351680Y-41230273D01*
+X133194637Y-40995241D01*
+X132994759Y-40795363D01*
+X132759727Y-40638320D01*
+X132498574Y-40530147D01*
+X132221335Y-40475000D01*
+X131938665Y-40475000D01*
+X131661426Y-40530147D01*
+X131400273Y-40638320D01*
+X131165241Y-40795363D01*
+X130965363Y-40995241D01*
+X130810000Y-41227759D01*
+X130654637Y-40995241D01*
+X130454759Y-40795363D01*
+X130219727Y-40638320D01*
+X129958574Y-40530147D01*
+X129681335Y-40475000D01*
+X129398665Y-40475000D01*
+X129121426Y-40530147D01*
+X128860273Y-40638320D01*
+X128625241Y-40795363D01*
+X128425363Y-40995241D01*
+X128268320Y-41230273D01*
+X128160147Y-41491426D01*
+X128105000Y-41768665D01*
+X125857000Y-41768665D01*
+X125857000Y-38227000D01*
+X153543000Y-38227000D01*
+X153543000Y-65913000D01*
+%TD*%
+M02*
diff --git a/sensor/gerbers/sensor-B_Mask.gbr b/sensor/gerbers/sensor-B_Mask.gbr
new file mode 100644 (file)
index 0000000..034ac45
--- /dev/null
@@ -0,0 +1,62 @@
+%TF.GenerationSoftware,KiCad,Pcbnew,5.1.6-c6e7f7d~87~ubuntu18.04.1*%
+%TF.CreationDate,2020-12-29T21:19:46-05:00*%
+%TF.ProjectId,sensor,73656e73-6f72-42e6-9b69-6361645f7063,rev?*%
+%TF.SameCoordinates,Original*%
+%TF.FileFunction,Soldermask,Bot*%
+%TF.FilePolarity,Negative*%
+%FSLAX46Y46*%
+G04 Gerber Fmt 4.6, Leading zero omitted, Abs format (unit mm)*
+G04 Created by KiCad (PCBNEW 5.1.6-c6e7f7d~87~ubuntu18.04.1) date 2020-12-29 21:19:46*
+%MOMM*%
+%LPD*%
+G01*
+G04 APERTURE LIST*
+%ADD10O,2.101600X1.701600*%
+%ADD11R,2.101600X2.101600*%
+%ADD12C,1.601600*%
+%ADD13R,1.601600X1.601600*%
+%ADD14O,1.701600X1.701600*%
+%ADD15C,1.701600*%
+G04 APERTURE END LIST*
+D10*
+%TO.C,U2*%
+X151130000Y-64770000D03*
+X151130000Y-62230000D03*
+X151130000Y-59690000D03*
+X151130000Y-57150000D03*
+X151130000Y-54610000D03*
+X151130000Y-52070000D03*
+X151130000Y-49530000D03*
+X151130000Y-46990000D03*
+X128270000Y-46990000D03*
+X128270000Y-49530000D03*
+X128270000Y-52070000D03*
+X128270000Y-54610000D03*
+X128270000Y-57150000D03*
+X128270000Y-59690000D03*
+D11*
+X128270000Y-64770000D03*
+D10*
+X128270000Y-62230000D03*
+%TD*%
+D12*
+%TO.C,U1*%
+X143510000Y-62230000D03*
+X140970000Y-62230000D03*
+X138430000Y-62230000D03*
+D13*
+X135890000Y-62230000D03*
+%TD*%
+D14*
+%TO.C,R2*%
+X132080000Y-41910000D03*
+D15*
+X129540000Y-41910000D03*
+%TD*%
+D14*
+%TO.C,R1*%
+X149860000Y-41910000D03*
+D15*
+X139700000Y-41910000D03*
+%TD*%
+M02*
diff --git a/sensor/gerbers/sensor-B_SilkS.gbr b/sensor/gerbers/sensor-B_SilkS.gbr
new file mode 100644 (file)
index 0000000..aa73c2d
--- /dev/null
@@ -0,0 +1,77 @@
+%TF.GenerationSoftware,KiCad,Pcbnew,5.1.6-c6e7f7d~87~ubuntu18.04.1*%
+%TF.CreationDate,2020-12-29T21:19:46-05:00*%
+%TF.ProjectId,sensor,73656e73-6f72-42e6-9b69-6361645f7063,rev?*%
+%TF.SameCoordinates,Original*%
+%TF.FileFunction,Legend,Bot*%
+%TF.FilePolarity,Positive*%
+%FSLAX46Y46*%
+G04 Gerber Fmt 4.6, Leading zero omitted, Abs format (unit mm)*
+G04 Created by KiCad (PCBNEW 5.1.6-c6e7f7d~87~ubuntu18.04.1) date 2020-12-29 21:19:46*
+%MOMM*%
+%LPD*%
+G01*
+G04 APERTURE LIST*
+%ADD10C,0.120000*%
+%ADD11C,0.150000*%
+G04 APERTURE END LIST*
+D10*
+%TO.C,U2*%
+X150500000Y-73110000D02*
+G75*
+G03*
+X152630000Y-70980000I0J2130000D01*
+G01*
+X126770000Y-70980000D02*
+G75*
+G03*
+X128900000Y-73110000I2130000J0D01*
+G01*
+X129310000Y-38650000D02*
+X152630000Y-38650000D01*
+X126770000Y-45550000D02*
+X126770000Y-70980000D01*
+X152630000Y-38650000D02*
+X152630000Y-70980000D01*
+X150510000Y-73110000D02*
+X128900000Y-73110000D01*
+D11*
+G36*
+X125730000Y-65405000D02*
+G01*
+X125730000Y-64135000D01*
+X126365000Y-64770000D01*
+X125730000Y-65405000D01*
+G37*
+X125730000Y-65405000D02*
+X125730000Y-64135000D01*
+X126365000Y-64770000D01*
+X125730000Y-65405000D01*
+D10*
+X126770000Y-45550000D02*
+X129310000Y-45550000D01*
+X129310000Y-45550000D02*
+X129310000Y-38650000D01*
+D11*
+X151031904Y-37222380D02*
+X151031904Y-38031904D01*
+X150984285Y-38127142D01*
+X150936666Y-38174761D01*
+X150841428Y-38222380D01*
+X150650952Y-38222380D01*
+X150555714Y-38174761D01*
+X150508095Y-38127142D01*
+X150460476Y-38031904D01*
+X150460476Y-37222380D01*
+X150031904Y-37317619D02*
+X149984285Y-37270000D01*
+X149889047Y-37222380D01*
+X149650952Y-37222380D01*
+X149555714Y-37270000D01*
+X149508095Y-37317619D01*
+X149460476Y-37412857D01*
+X149460476Y-37508095D01*
+X149508095Y-37650952D01*
+X150079523Y-38222380D01*
+X149460476Y-38222380D01*
+%TD*%
+M02*
diff --git a/sensor/gerbers/sensor-Edge_Cuts.gbr b/sensor/gerbers/sensor-Edge_Cuts.gbr
new file mode 100644 (file)
index 0000000..c3bee18
--- /dev/null
@@ -0,0 +1,26 @@
+%TF.GenerationSoftware,KiCad,Pcbnew,5.1.6-c6e7f7d~87~ubuntu18.04.1*%
+%TF.CreationDate,2020-12-29T21:19:46-05:00*%
+%TF.ProjectId,sensor,73656e73-6f72-42e6-9b69-6361645f7063,rev?*%
+%TF.SameCoordinates,Original*%
+%TF.FileFunction,Profile,NP*%
+%FSLAX46Y46*%
+G04 Gerber Fmt 4.6, Leading zero omitted, Abs format (unit mm)*
+G04 Created by KiCad (PCBNEW 5.1.6-c6e7f7d~87~ubuntu18.04.1) date 2020-12-29 21:19:46*
+%MOMM*%
+%LPD*%
+G01*
+G04 APERTURE LIST*
+%TA.AperFunction,Profile*%
+%ADD10C,0.150000*%
+%TD*%
+G04 APERTURE END LIST*
+D10*
+X124460000Y-74930000D02*
+X124460000Y-36830000D01*
+X154940000Y-74930000D02*
+X124460000Y-74930000D01*
+X154940000Y-36830000D02*
+X154940000Y-74930000D01*
+X124460000Y-36830000D02*
+X154940000Y-36830000D01*
+M02*
diff --git a/sensor/gerbers/sensor-F_Cu.gbr b/sensor/gerbers/sensor-F_Cu.gbr
new file mode 100644 (file)
index 0000000..9916e6c
--- /dev/null
@@ -0,0 +1,206 @@
+%TF.GenerationSoftware,KiCad,Pcbnew,5.1.6-c6e7f7d~87~ubuntu18.04.1*%
+%TF.CreationDate,2020-12-29T21:19:46-05:00*%
+%TF.ProjectId,sensor,73656e73-6f72-42e6-9b69-6361645f7063,rev?*%
+%TF.SameCoordinates,Original*%
+%TF.FileFunction,Copper,L1,Top*%
+%TF.FilePolarity,Positive*%
+%FSLAX46Y46*%
+G04 Gerber Fmt 4.6, Leading zero omitted, Abs format (unit mm)*
+G04 Created by KiCad (PCBNEW 5.1.6-c6e7f7d~87~ubuntu18.04.1) date 2020-12-29 21:19:46*
+%MOMM*%
+%LPD*%
+G01*
+G04 APERTURE LIST*
+%TA.AperFunction,ComponentPad*%
+%ADD10O,2.000000X1.600000*%
+%TD*%
+%TA.AperFunction,ComponentPad*%
+%ADD11R,2.000000X2.000000*%
+%TD*%
+%TA.AperFunction,ComponentPad*%
+%ADD12C,1.500000*%
+%TD*%
+%TA.AperFunction,ComponentPad*%
+%ADD13R,1.500000X1.500000*%
+%TD*%
+%TA.AperFunction,ComponentPad*%
+%ADD14O,1.600000X1.600000*%
+%TD*%
+%TA.AperFunction,ComponentPad*%
+%ADD15C,1.600000*%
+%TD*%
+%TA.AperFunction,SMDPad,CuDef*%
+%ADD16R,1.500000X1.000000*%
+%TD*%
+%TA.AperFunction,Conductor*%
+%ADD17C,0.250000*%
+%TD*%
+G04 APERTURE END LIST*
+D10*
+%TO.P,U2,16*%
+%TO.N,Net-(U2-Pad16)*%
+X151130000Y-64770000D03*
+%TO.P,U2,15*%
+%TO.N,Net-(U2-Pad15)*%
+X151130000Y-62230000D03*
+%TO.P,U2,14*%
+%TO.N,Net-(U2-Pad14)*%
+X151130000Y-59690000D03*
+%TO.P,U2,13*%
+%TO.N,Net-(U2-Pad13)*%
+X151130000Y-57150000D03*
+%TO.P,U2,12*%
+%TO.N,D3*%
+X151130000Y-54610000D03*
+%TO.P,U2,11*%
+%TO.N,D4*%
+X151130000Y-52070000D03*
+%TO.P,U2,10*%
+%TO.N,GND*%
+X151130000Y-49530000D03*
+%TO.P,U2,9*%
+%TO.N,5V*%
+X151130000Y-46990000D03*
+%TO.P,U2,8*%
+%TO.N,3.3V*%
+X128270000Y-46990000D03*
+%TO.P,U2,7*%
+%TO.N,Net-(U2-Pad7)*%
+X128270000Y-49530000D03*
+%TO.P,U2,6*%
+%TO.N,Net-(U2-Pad6)*%
+X128270000Y-52070000D03*
+%TO.P,U2,5*%
+%TO.N,Net-(U2-Pad5)*%
+X128270000Y-54610000D03*
+%TO.P,U2,4*%
+%TO.N,Net-(U2-Pad4)*%
+X128270000Y-57150000D03*
+%TO.P,U2,3*%
+%TO.N,Net-(U2-Pad3)*%
+X128270000Y-59690000D03*
+D11*
+%TO.P,U2,1*%
+%TO.N,Net-(U2-Pad1)*%
+X128270000Y-64770000D03*
+D10*
+%TO.P,U2,2*%
+%TO.N,A0*%
+X128270000Y-62230000D03*
+%TD*%
+D12*
+%TO.P,U1,4*%
+%TO.N,GND*%
+X143510000Y-62230000D03*
+%TO.P,U1,3*%
+%TO.N,Net-(U1-Pad3)*%
+X140970000Y-62230000D03*
+%TO.P,U1,2*%
+%TO.N,D3*%
+X138430000Y-62230000D03*
+D13*
+%TO.P,U1,1*%
+%TO.N,3.3V*%
+X135890000Y-62230000D03*
+%TD*%
+D14*
+%TO.P,R2,2*%
+%TO.N,A0*%
+X132080000Y-41910000D03*
+D15*
+%TO.P,R2,1*%
+%TO.N,3.3V*%
+X129540000Y-41910000D03*
+%TD*%
+D14*
+%TO.P,R1,2*%
+%TO.N,GND*%
+X149860000Y-41910000D03*
+D15*
+%TO.P,R1,1*%
+%TO.N,A0*%
+X139700000Y-41910000D03*
+%TD*%
+D16*
+%TO.P,D1,1*%
+%TO.N,Net-(D1-Pad1)*%
+X137250000Y-68250000D03*
+%TO.P,D1,2*%
+%TO.N,GND*%
+X137250000Y-71450000D03*
+%TO.P,D1,4*%
+%TO.N,D4*%
+X142150000Y-68250000D03*
+%TO.P,D1,3*%
+%TO.N,5V*%
+X142150000Y-71450000D03*
+%TD*%
+D17*
+%TO.N,GND*%
+X137250000Y-71450000D02*
+X139700000Y-69000000D01*
+X139700000Y-66040000D02*
+X143510000Y-62230000D01*
+X139700000Y-69000000D02*
+X139700000Y-66040000D01*
+%TO.N,D4*%
+X151130000Y-52070000D02*
+X152400000Y-52070000D01*
+X152400000Y-52070000D02*
+X153219990Y-52889990D01*
+X153219990Y-52889990D02*
+X153219990Y-65853600D01*
+X153219990Y-65853600D02*
+X150811795Y-68261795D01*
+X150800000Y-68250000D02*
+X142150000Y-68250000D01*
+X150811795Y-68261795D02*
+X150800000Y-68250000D01*
+%TO.N,5V*%
+X142150000Y-71450000D02*
+X148260000Y-71450000D01*
+X148260000Y-71450000D02*
+X153670000Y-66040000D01*
+X153670000Y-66040000D02*
+X153670000Y-48260000D01*
+X152400000Y-46990000D02*
+X151130000Y-46990000D01*
+X153670000Y-48260000D02*
+X152400000Y-46990000D01*
+%TO.N,A0*%
+X132080000Y-41910000D02*
+X139700000Y-41910000D01*
+X128270000Y-62230000D02*
+X130810000Y-62230000D01*
+X132080000Y-60960000D02*
+X132080000Y-41910000D01*
+X130810000Y-62230000D02*
+X132080000Y-60960000D01*
+%TO.N,3.3V*%
+X129540000Y-45720000D02*
+X128270000Y-46990000D01*
+X129540000Y-41910000D02*
+X129540000Y-45720000D01*
+X135890000Y-63500000D02*
+X132080000Y-67310000D01*
+X127000000Y-46990000D02*
+X128270000Y-46990000D01*
+X125730000Y-66040000D02*
+X125730000Y-48260000D01*
+X135890000Y-62230000D02*
+X135890000Y-63500000D01*
+X132080000Y-67310000D02*
+X127000000Y-67310000D01*
+X127000000Y-67310000D02*
+X125730000Y-66040000D01*
+X125730000Y-48260000D02*
+X127000000Y-46990000D01*
+%TO.N,D3*%
+X138430000Y-62230000D02*
+X138430000Y-57150000D01*
+X140970000Y-54610000D02*
+X151130000Y-54610000D01*
+X138430000Y-57150000D02*
+X140970000Y-54610000D01*
+%TD*%
+M02*
diff --git a/sensor/gerbers/sensor-F_Mask.gbr b/sensor/gerbers/sensor-F_Mask.gbr
new file mode 100644 (file)
index 0000000..beab6ff
--- /dev/null
@@ -0,0 +1,70 @@
+%TF.GenerationSoftware,KiCad,Pcbnew,5.1.6-c6e7f7d~87~ubuntu18.04.1*%
+%TF.CreationDate,2020-12-29T21:19:46-05:00*%
+%TF.ProjectId,sensor,73656e73-6f72-42e6-9b69-6361645f7063,rev?*%
+%TF.SameCoordinates,Original*%
+%TF.FileFunction,Soldermask,Top*%
+%TF.FilePolarity,Negative*%
+%FSLAX46Y46*%
+G04 Gerber Fmt 4.6, Leading zero omitted, Abs format (unit mm)*
+G04 Created by KiCad (PCBNEW 5.1.6-c6e7f7d~87~ubuntu18.04.1) date 2020-12-29 21:19:46*
+%MOMM*%
+%LPD*%
+G01*
+G04 APERTURE LIST*
+%ADD10O,2.101600X1.701600*%
+%ADD11R,2.101600X2.101600*%
+%ADD12C,1.601600*%
+%ADD13R,1.601600X1.601600*%
+%ADD14O,1.701600X1.701600*%
+%ADD15C,1.701600*%
+%ADD16R,1.601600X1.101600*%
+G04 APERTURE END LIST*
+D10*
+%TO.C,U2*%
+X151130000Y-64770000D03*
+X151130000Y-62230000D03*
+X151130000Y-59690000D03*
+X151130000Y-57150000D03*
+X151130000Y-54610000D03*
+X151130000Y-52070000D03*
+X151130000Y-49530000D03*
+X151130000Y-46990000D03*
+X128270000Y-46990000D03*
+X128270000Y-49530000D03*
+X128270000Y-52070000D03*
+X128270000Y-54610000D03*
+X128270000Y-57150000D03*
+X128270000Y-59690000D03*
+D11*
+X128270000Y-64770000D03*
+D10*
+X128270000Y-62230000D03*
+%TD*%
+D12*
+%TO.C,U1*%
+X143510000Y-62230000D03*
+X140970000Y-62230000D03*
+X138430000Y-62230000D03*
+D13*
+X135890000Y-62230000D03*
+%TD*%
+D14*
+%TO.C,R2*%
+X132080000Y-41910000D03*
+D15*
+X129540000Y-41910000D03*
+%TD*%
+D14*
+%TO.C,R1*%
+X149860000Y-41910000D03*
+D15*
+X139700000Y-41910000D03*
+%TD*%
+D16*
+%TO.C,D1*%
+X137250000Y-68250000D03*
+X137250000Y-71450000D03*
+X142150000Y-68250000D03*
+X142150000Y-71450000D03*
+%TD*%
+M02*
diff --git a/sensor/gerbers/sensor-F_SilkS.gbr b/sensor/gerbers/sensor-F_SilkS.gbr
new file mode 100644 (file)
index 0000000..d12a2f4
--- /dev/null
@@ -0,0 +1,153 @@
+%TF.GenerationSoftware,KiCad,Pcbnew,5.1.6-c6e7f7d~87~ubuntu18.04.1*%
+%TF.CreationDate,2020-12-29T21:19:46-05:00*%
+%TF.ProjectId,sensor,73656e73-6f72-42e6-9b69-6361645f7063,rev?*%
+%TF.SameCoordinates,Original*%
+%TF.FileFunction,Legend,Top*%
+%TF.FilePolarity,Positive*%
+%FSLAX46Y46*%
+G04 Gerber Fmt 4.6, Leading zero omitted, Abs format (unit mm)*
+G04 Created by KiCad (PCBNEW 5.1.6-c6e7f7d~87~ubuntu18.04.1) date 2020-12-29 21:19:46*
+%MOMM*%
+%LPD*%
+G01*
+G04 APERTURE LIST*
+%ADD10C,0.120000*%
+%ADD11C,0.150000*%
+G04 APERTURE END LIST*
+D10*
+%TO.C,U1*%
+X133570000Y-65100000D02*
+X133570000Y-59360000D01*
+X133570000Y-59350000D02*
+X145830000Y-59350000D01*
+X145830000Y-59350000D02*
+X145830000Y-65110000D01*
+X145830000Y-65110000D02*
+X133580000Y-65110000D01*
+X133290000Y-65390000D02*
+X135290000Y-65390000D01*
+X133290000Y-65390000D02*
+X133290000Y-63780000D01*
+%TO.C,R2*%
+X130910000Y-41910000D02*
+G75*
+G03*
+X130910000Y-41910000I-1370000J0D01*
+G01*
+X130910000Y-41910000D02*
+X130980000Y-41910000D01*
+%TO.C,R1*%
+X141510000Y-40540000D02*
+X141510000Y-43280000D01*
+X141510000Y-43280000D02*
+X148050000Y-43280000D01*
+X148050000Y-43280000D02*
+X148050000Y-40540000D01*
+X148050000Y-40540000D02*
+X141510000Y-40540000D01*
+X140740000Y-41910000D02*
+X141510000Y-41910000D01*
+X148820000Y-41910000D02*
+X148050000Y-41910000D01*
+%TO.C,D1*%
+X136050000Y-67100000D02*
+X143350000Y-67100000D01*
+X136050000Y-72600000D02*
+X143350000Y-72600000D01*
+X143350000Y-72600000D02*
+X143350000Y-71450000D01*
+%TO.C,U1*%
+D11*
+X131842380Y-63991904D02*
+X132651904Y-63991904D01*
+X132747142Y-63944285D01*
+X132794761Y-63896666D01*
+X132842380Y-63801428D01*
+X132842380Y-63610952D01*
+X132794761Y-63515714D01*
+X132747142Y-63468095D01*
+X132651904Y-63420476D01*
+X131842380Y-63420476D01*
+X132842380Y-62420476D02*
+X132842380Y-62991904D01*
+X132842380Y-62706190D02*
+X131842380Y-62706190D01*
+X131985238Y-62801428D01*
+X132080476Y-62896666D01*
+X132128095Y-62991904D01*
+%TO.C,R2*%
+X130643333Y-39992380D02*
+X130310000Y-39516190D01*
+X130071904Y-39992380D02*
+X130071904Y-38992380D01*
+X130452857Y-38992380D01*
+X130548095Y-39040000D01*
+X130595714Y-39087619D01*
+X130643333Y-39182857D01*
+X130643333Y-39325714D01*
+X130595714Y-39420952D01*
+X130548095Y-39468571D01*
+X130452857Y-39516190D01*
+X130071904Y-39516190D01*
+X131024285Y-39087619D02*
+X131071904Y-39040000D01*
+X131167142Y-38992380D01*
+X131405238Y-38992380D01*
+X131500476Y-39040000D01*
+X131548095Y-39087619D01*
+X131595714Y-39182857D01*
+X131595714Y-39278095D01*
+X131548095Y-39420952D01*
+X130976666Y-39992380D01*
+X131595714Y-39992380D01*
+%TO.C,R1*%
+X144613333Y-39992380D02*
+X144280000Y-39516190D01*
+X144041904Y-39992380D02*
+X144041904Y-38992380D01*
+X144422857Y-38992380D01*
+X144518095Y-39040000D01*
+X144565714Y-39087619D01*
+X144613333Y-39182857D01*
+X144613333Y-39325714D01*
+X144565714Y-39420952D01*
+X144518095Y-39468571D01*
+X144422857Y-39516190D01*
+X144041904Y-39516190D01*
+X145565714Y-39992380D02*
+X144994285Y-39992380D01*
+X145280000Y-39992380D02*
+X145280000Y-38992380D01*
+X145184761Y-39135238D01*
+X145089523Y-39230476D01*
+X144994285Y-39278095D01*
+%TO.C,D1*%
+X138961904Y-66802380D02*
+X138961904Y-65802380D01*
+X139200000Y-65802380D01*
+X139342857Y-65850000D01*
+X139438095Y-65945238D01*
+X139485714Y-66040476D01*
+X139533333Y-66230952D01*
+X139533333Y-66373809D01*
+X139485714Y-66564285D01*
+X139438095Y-66659523D01*
+X139342857Y-66754761D01*
+X139200000Y-66802380D01*
+X138961904Y-66802380D01*
+X140485714Y-66802380D02*
+X139914285Y-66802380D01*
+X140200000Y-66802380D02*
+X140200000Y-65802380D01*
+X140104761Y-65945238D01*
+X140009523Y-66040476D01*
+X139914285Y-66088095D01*
+X135835714Y-68702380D02*
+X135264285Y-68702380D01*
+X135550000Y-68702380D02*
+X135550000Y-67702380D01*
+X135454761Y-67845238D01*
+X135359523Y-67940476D01*
+X135264285Y-67988095D01*
+%TD*%
+M02*
diff --git a/sensor/gerbers/sensor-job.gbrjob b/sensor/gerbers/sensor-job.gbrjob
new file mode 100644 (file)
index 0000000..9cb07d0
--- /dev/null
@@ -0,0 +1,110 @@
+{
+  "Header":
+  {
+    "GenerationSoftware":
+    {
+      "Vendor":      "KiCad",
+      "Application": "Pcbnew",
+      "Version":     "5.1.6-c6e7f7d~87~ubuntu18.04.1"
+    },
+    "CreationDate":  "2020-12-29T21:19:46-05:00"
+  },
+  "GeneralSpecs":
+  {
+    "ProjectId":
+    {
+      "Name": "sensor",
+      "GUID": "73656e73-6f72-42e6-9b69-6361645f7063",
+      "Revision": "rev?"
+    },
+    "Size":
+    {
+      "X": 30.630,
+      "Y": 38.250
+    },
+    "LayerNumber": 2,
+    "BoardThickness":  1.600
+  },
+  "DesignRules":
+  [
+    {
+      "Layers": "Outer",
+      "PadToPad":  0.200,
+      "PadToTrack":  0.200,
+      "TrackToTrack":  0.200,
+      "MinLineWidth":  0.250,
+      "TrackToRegion":  0.508,
+      "RegionToRegion":  0.508
+    }
+  ],
+  "FilesAttributes":
+  [
+    {
+      "Path":  "sensor-F_Cu.gbr",
+      "FileFunction":  "Copper,L1,Top",
+      "FilePolarity":  "Positive"
+    },
+    {
+      "Path":  "sensor-B_Cu.gbr",
+      "FileFunction":  "Copper,L2,Bot",
+      "FilePolarity":  "Positive"
+    },
+    {
+      "Path":  "sensor-F_SilkS.gbr",
+      "FileFunction":  "Legend,Top",
+      "FilePolarity":  "Positive"
+    },
+    {
+      "Path":  "sensor-B_SilkS.gbr",
+      "FileFunction":  "Legend,Bot",
+      "FilePolarity":  "Positive"
+    },
+    {
+      "Path":  "sensor-F_Mask.gbr",
+      "FileFunction":  "SolderMask,Top",
+      "FilePolarity":  "Negative"
+    },
+    {
+      "Path":  "sensor-B_Mask.gbr",
+      "FileFunction":  "SolderMask,Bot",
+      "FilePolarity":  "Negative"
+    },
+    {
+      "Path":  "sensor-Edge_Cuts.gbr",
+      "FileFunction":  "Profile",
+      "FilePolarity":  "Positive"
+    }
+  ],
+  "MaterialStackup":
+  [
+    {
+      "Type":  "Legend",
+      "Notes":  "Layer F.SilkS"
+    },
+    {
+      "Type":  "SolderMask",
+      "Notes":  "Layer F.Mask"
+    },
+    {
+      "Type":  "Copper",
+      "Notes":  "Layer F.Cu"
+    },
+    {
+      "Type":  "Dielectric",
+      "Material":  "FR4",
+      "Notes":  "Layers L1/L2"
+    },
+    {
+      "Type":  "Copper",
+      "Notes":  "Layer B.Cu"
+    },
+    {
+      "Type":  "SolderMask",
+      "Notes":  "Layer B.Mask"
+    },
+    {
+      "Type":  "Legend",
+      "Notes":  "Layer B.SilkS"
+    }
+  ]
+}
diff --git a/sensor/gerbers/sensor.drl b/sensor/gerbers/sensor.drl
new file mode 100644 (file)
index 0000000..5611d7d
--- /dev/null
@@ -0,0 +1,40 @@
+M48
+; DRILL file {KiCad 5.1.6-c6e7f7d~87~ubuntu18.04.1} date Tue Dec 29 21:20:36 2020
+; FORMAT={-:-/ absolute / inch / decimal}
+; #@! TF.CreationDate,2020-12-29T21:20:36-05:00
+; #@! TF.GenerationSoftware,Kicad,Pcbnew,5.1.6-c6e7f7d~87~ubuntu18.04.1
+FMAT,2
+INCH
+T1C0.0315
+T2C0.0394
+%
+G90
+G05
+T1
+X5.1Y-1.65
+X5.2Y-1.65
+X5.5Y-1.65
+X5.9Y-1.65
+X5.35Y-2.45
+X5.45Y-2.45
+X5.55Y-2.45
+X5.65Y-2.45
+T2
+X5.05Y-1.85
+X5.05Y-1.95
+X5.05Y-2.05
+X5.05Y-2.15
+X5.05Y-2.25
+X5.05Y-2.35
+X5.05Y-2.45
+X5.05Y-2.55
+X5.95Y-1.85
+X5.95Y-1.95
+X5.95Y-2.05
+X5.95Y-2.15
+X5.95Y-2.25
+X5.95Y-2.35
+X5.95Y-2.45
+X5.95Y-2.55
+T0
+M30
diff --git a/sensor/sensor-cache.lib b/sensor/sensor-cache.lib
new file mode 100644 (file)
index 0000000..66a6567
--- /dev/null
@@ -0,0 +1,128 @@
+EESchema-LIBRARY Version 2.4
+#encoding utf-8
+#
+# Device_R_PHOTO
+#
+DEF Device_R_PHOTO R 0 0 N Y 1 F N
+F0 "R" 50 50 50 H V L CNN
+F1 "Device_R_PHOTO" 50 0 50 H V L TNN
+F2 "" 50 -250 50 V I L CNN
+F3 "" 0 -50 50 H I C CNN
+$FPLIST
+ *LDR*
+ R?LDR*
+$ENDFPLIST
+DRAW
+S -40 100 40 -100 0 1 10 N
+P 2 0 1 0 -60 -90 -160 10 N
+P 2 0 1 0 -60 -90 -90 -90 N
+P 2 0 1 0 -60 -90 -60 -60 N
+P 2 0 1 0 -60 -30 -160 70 N
+P 2 0 1 0 -60 -30 -90 -30 N
+P 2 0 1 0 -60 -30 -60 0 N
+X ~ 1 0 150 50 D 50 50 1 1 P
+X ~ 2 0 -150 50 U 50 50 1 1 P
+ENDDRAW
+ENDDEF
+#
+# Device_R_US
+#
+DEF Device_R_US R 0 0 N Y 1 F N
+F0 "R" 100 0 50 V V C CNN
+F1 "Device_R_US" -100 0 50 V V C CNN
+F2 "" 40 -10 50 V I C CNN
+F3 "" 0 0 50 H I C CNN
+$FPLIST
+ R_*
+$ENDFPLIST
+DRAW
+P 2 0 1 0 0 -90 0 -100 N
+P 2 0 1 0 0 90 0 100 N
+P 5 0 1 0 0 -30 40 -45 0 -60 -40 -75 0 -90 N
+P 5 0 1 0 0 30 40 15 0 0 -40 -15 0 -30 N
+P 5 0 1 0 0 90 40 75 0 60 -40 45 0 30 N
+X ~ 1 0 150 50 D 50 50 1 1 P
+X ~ 2 0 -150 50 U 50 50 1 1 P
+ENDDRAW
+ENDDEF
+#
+# LED_NeoPixel_THT
+#
+DEF LED_NeoPixel_THT D 0 10 Y Y 1 F N
+F0 "D" 200 225 50 H V R BNN
+F1 "LED_NeoPixel_THT" 50 -225 50 H V L TNN
+F2 "" 50 -300 50 H I L TNN
+F3 "" 100 -375 50 H I L TNN
+$FPLIST
+ LED*D5.0mm*
+ LED*D8.0mm*
+$ENDFPLIST
+DRAW
+T 0 90 -165 30 0 0 0 RGB Normal 0 C C
+S 200 200 -200 -200 0 1 10 f
+P 2 0 1 0 50 -140 70 -140 N
+P 2 0 1 0 50 -100 70 -100 N
+P 2 0 1 0 185 -140 105 -140 N
+P 3 0 1 0 90 -100 50 -140 50 -120 N
+P 3 0 1 0 90 -60 50 -100 50 -80 N
+P 3 0 1 0 145 -40 145 -140 145 -160 N
+P 4 0 1 0 185 -60 105 -60 145 -140 185 -60 N
+X DOUT 1 300 0 100 L 50 50 1 1 O
+X GND 2 0 -300 100 U 50 50 1 1 W
+X VDD 3 0 300 100 D 50 50 1 1 W
+X DIN 4 -300 0 100 R 50 50 1 1 I
+ENDDRAW
+ENDDEF
+#
+# MCU_Module_WeMos_D1_mini
+#
+DEF MCU_Module_WeMos_D1_mini U 0 20 Y Y 1 F N
+F0 "U" 150 750 50 H V L CNN
+F1 "MCU_Module_WeMos_D1_mini" 50 -750 50 H V L CNN
+F2 "Module:WEMOS_D1_mini_light" 0 -1150 50 H I C CNN
+F3 "" -1850 -1150 50 H I C CNN
+$FPLIST
+ WEMOS*D1*mini*
+$ENDFPLIST
+DRAW
+S -300 700 300 -700 1 1 10 f
+X ~RST 1 -400 400 100 R 50 50 1 1 I
+X GND 10 0 -800 100 U 50 50 1 1 W
+X D4 11 400 0 100 L 50 50 1 1 B
+X D3 12 400 100 100 L 50 50 1 1 B
+X SDA/D2 13 400 200 100 L 50 50 1 1 B
+X SCL/D1 14 400 300 100 L 50 50 1 1 B
+X RX 15 -400 100 100 R 50 50 1 1 I
+X TX 16 -400 0 100 R 50 50 1 1 O
+X A0 2 400 500 100 L 50 50 1 1 I
+X D0 3 400 400 100 L 50 50 1 1 B
+X SCK/D5 4 400 -100 100 L 50 50 1 1 B
+X MISO/D6 5 400 -200 100 L 50 50 1 1 B
+X MOSI/D7 6 400 -300 100 L 50 50 1 1 B
+X CS/D8 7 400 -400 100 L 50 50 1 1 B
+X 3V3 8 100 800 100 D 50 50 1 1 w
+X 5V 9 -100 800 100 D 50 50 1 1 W
+ENDDRAW
+ENDDEF
+#
+# Sensor_DHT11
+#
+DEF Sensor_DHT11 U 0 20 Y Y 1 F N
+F0 "U" -150 250 50 H V C CNN
+F1 "Sensor_DHT11" 150 250 50 H V C CNN
+F2 "Sensor:Aosong_DHT11_5.5x12.0_P2.54mm" 0 -400 50 H I C CNN
+F3 "" 150 250 50 H I C CNN
+ALIAS CHT11
+$FPLIST
+ Aosong*DHT11*5.5x12.0*P2.54mm*
+$ENDFPLIST
+DRAW
+S -200 200 200 -200 0 1 10 f
+X VCC 1 0 300 100 D 50 50 1 1 W
+X IO 2 300 0 100 L 50 50 1 1 B
+X NC 3 -200 0 100 R 50 50 1 1 N N
+X GND 4 0 -300 100 U 50 50 1 1 W
+ENDDRAW
+ENDDEF
+#
+#End Library
diff --git a/sensor/sensor.kicad_pcb b/sensor/sensor.kicad_pcb
new file mode 100644 (file)
index 0000000..30d345c
--- /dev/null
@@ -0,0 +1,613 @@
+(kicad_pcb (version 20171130) (host pcbnew 5.1.6-c6e7f7d~87~ubuntu18.04.1)
+
+  (general
+    (thickness 1.6)
+    (drawings 4)
+    (tracks 30)
+    (zones 0)
+    (modules 5)
+    (nets 19)
+  )
+
+  (page A4)
+  (layers
+    (0 F.Cu signal)
+    (31 B.Cu signal)
+    (32 B.Adhes user)
+    (33 F.Adhes user)
+    (34 B.Paste user)
+    (35 F.Paste user)
+    (36 B.SilkS user)
+    (37 F.SilkS user)
+    (38 B.Mask user)
+    (39 F.Mask user)
+    (40 Dwgs.User user)
+    (41 Cmts.User user)
+    (42 Eco1.User user)
+    (43 Eco2.User user)
+    (44 Edge.Cuts user)
+    (45 Margin user)
+    (46 B.CrtYd user)
+    (47 F.CrtYd user)
+    (48 B.Fab user)
+    (49 F.Fab user)
+  )
+
+  (setup
+    (last_trace_width 0.25)
+    (user_trace_width 0.4)
+    (trace_clearance 0.2)
+    (zone_clearance 0.508)
+    (zone_45_only no)
+    (trace_min 0.2)
+    (via_size 0.8)
+    (via_drill 0.4)
+    (via_min_size 0.4)
+    (via_min_drill 0.3)
+    (uvia_size 0.3)
+    (uvia_drill 0.1)
+    (uvias_allowed no)
+    (uvia_min_size 0.2)
+    (uvia_min_drill 0.1)
+    (edge_width 0.05)
+    (segment_width 0.2)
+    (pcb_text_width 0.3)
+    (pcb_text_size 1.5 1.5)
+    (mod_edge_width 0.12)
+    (mod_text_size 1 1)
+    (mod_text_width 0.15)
+    (pad_size 1.524 1.524)
+    (pad_drill 0.762)
+    (pad_to_mask_clearance 0.0508)
+    (aux_axis_origin 0 0)
+    (visible_elements FFFFFF7F)
+    (pcbplotparams
+      (layerselection 0x010f0_ffffffff)
+      (usegerberextensions false)
+      (usegerberattributes true)
+      (usegerberadvancedattributes true)
+      (creategerberjobfile true)
+      (excludeedgelayer true)
+      (linewidth 0.100000)
+      (plotframeref false)
+      (viasonmask false)
+      (mode 1)
+      (useauxorigin false)
+      (hpglpennumber 1)
+      (hpglpenspeed 20)
+      (hpglpendiameter 15.000000)
+      (psnegative false)
+      (psa4output false)
+      (plotreference true)
+      (plotvalue true)
+      (plotinvisibletext false)
+      (padsonsilk false)
+      (subtractmaskfromsilk false)
+      (outputformat 1)
+      (mirror false)
+      (drillshape 0)
+      (scaleselection 1)
+      (outputdirectory "gerbers/"))
+  )
+
+  (net 0 "")
+  (net 1 "Net-(D1-Pad1)")
+  (net 2 GND)
+  (net 3 D4)
+  (net 4 5V)
+  (net 5 A0)
+  (net 6 3.3V)
+  (net 7 "Net-(U1-Pad3)")
+  (net 8 D3)
+  (net 9 "Net-(U2-Pad16)")
+  (net 10 "Net-(U2-Pad15)")
+  (net 11 "Net-(U2-Pad14)")
+  (net 12 "Net-(U2-Pad13)")
+  (net 13 "Net-(U2-Pad7)")
+  (net 14 "Net-(U2-Pad6)")
+  (net 15 "Net-(U2-Pad5)")
+  (net 16 "Net-(U2-Pad4)")
+  (net 17 "Net-(U2-Pad3)")
+  (net 18 "Net-(U2-Pad1)")
+
+  (net_class Default "This is the default net class."
+    (clearance 0.2)
+    (trace_width 0.25)
+    (via_dia 0.8)
+    (via_drill 0.4)
+    (uvia_dia 0.3)
+    (uvia_drill 0.1)
+    (add_net 3.3V)
+    (add_net 5V)
+    (add_net A0)
+    (add_net D3)
+    (add_net D4)
+    (add_net GND)
+    (add_net "Net-(D1-Pad1)")
+    (add_net "Net-(U1-Pad3)")
+    (add_net "Net-(U2-Pad1)")
+    (add_net "Net-(U2-Pad13)")
+    (add_net "Net-(U2-Pad14)")
+    (add_net "Net-(U2-Pad15)")
+    (add_net "Net-(U2-Pad16)")
+    (add_net "Net-(U2-Pad3)")
+    (add_net "Net-(U2-Pad4)")
+    (add_net "Net-(U2-Pad5)")
+    (add_net "Net-(U2-Pad6)")
+    (add_net "Net-(U2-Pad7)")
+  )
+
+  (module Module:WEMOS_D1_mini_light (layer B.Cu) (tedit 5BBFB1CE) (tstamp 5FEBEC97)
+    (at 128.27 64.77)
+    (descr "16-pin module, column spacing 22.86 mm (900 mils), https://wiki.wemos.cc/products:d1:d1_mini, https://c1.staticflickr.com/1/734/31400410271_f278b087db_z.jpg")
+    (tags "ESP8266 WiFi microcontroller")
+    (path /5FEBDB80)
+    (fp_text reference U2 (at 22 -27) (layer B.SilkS)
+      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
+    )
+    (fp_text value WeMos_D1_mini (at 11.7 0) (layer B.Fab)
+      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
+    )
+    (fp_text user "No copper" (at 11.43 3.81) (layer Cmts.User)
+      (effects (font (size 1 1) (thickness 0.15)))
+    )
+    (fp_text user "KEEP OUT" (at 11.43 6.35) (layer Cmts.User)
+      (effects (font (size 1 1) (thickness 0.15)))
+    )
+    (fp_arc (start 22.23 6.21) (end 24.36 6.21) (angle 90) (layer B.SilkS) (width 0.12))
+    (fp_arc (start 0.63 6.21) (end 0.63 8.34) (angle 90) (layer B.SilkS) (width 0.12))
+    (fp_arc (start 22.23 6.21) (end 24.23 6.19) (angle 90) (layer B.Fab) (width 0.1))
+    (fp_arc (start 0.63 6.21) (end 0.63 8.21) (angle 90) (layer B.Fab) (width 0.1))
+    (fp_text user %R (at 11.43 -10) (layer B.Fab)
+      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
+    )
+    (fp_line (start 1.04 -26.12) (end 24.36 -26.12) (layer B.SilkS) (width 0.12))
+    (fp_line (start -1.5 -19.22) (end -1.5 6.21) (layer B.SilkS) (width 0.12))
+    (fp_line (start 24.36 -26.12) (end 24.36 6.21) (layer B.SilkS) (width 0.12))
+    (fp_line (start 22.24 8.34) (end 0.63 8.34) (layer B.SilkS) (width 0.12))
+    (fp_line (start 1.17 -25.99) (end 24.23 -25.99) (layer B.Fab) (width 0.1))
+    (fp_line (start 24.23 -25.99) (end 24.23 6.21) (layer B.Fab) (width 0.1))
+    (fp_line (start 22.23 8.21) (end 0.63 8.21) (layer B.Fab) (width 0.1))
+    (fp_line (start -1.37 -1) (end -1.37 -19.09) (layer B.Fab) (width 0.1))
+    (fp_line (start -1.62 8.46) (end 24.48 8.46) (layer B.CrtYd) (width 0.05))
+    (fp_line (start 24.48 8.41) (end 24.48 -26.24) (layer B.CrtYd) (width 0.05))
+    (fp_line (start 24.48 -26.24) (end -1.62 -26.24) (layer B.CrtYd) (width 0.05))
+    (fp_line (start -1.62 -26.24) (end -1.62 8.46) (layer B.CrtYd) (width 0.05))
+    (fp_poly (pts (xy -2.54 0.635) (xy -2.54 -0.635) (xy -1.905 0)) (layer B.SilkS) (width 0.15))
+    (fp_line (start -1.35 1.4) (end 24.25 1.4) (layer Dwgs.User) (width 0.1))
+    (fp_line (start 24.25 1.4) (end 24.25 8.2) (layer Dwgs.User) (width 0.1))
+    (fp_line (start 24.25 8.2) (end -1.35 8.2) (layer Dwgs.User) (width 0.1))
+    (fp_line (start -1.35 8.2) (end -1.35 1.4) (layer Dwgs.User) (width 0.1))
+    (fp_line (start -1.35 1.4) (end 5.45 8.2) (layer Dwgs.User) (width 0.1))
+    (fp_line (start 0.65 1.4) (end 7.45 8.2) (layer Dwgs.User) (width 0.1))
+    (fp_line (start 2.65 1.4) (end 9.45 8.2) (layer Dwgs.User) (width 0.1))
+    (fp_line (start 4.65 1.4) (end 11.45 8.2) (layer Dwgs.User) (width 0.1))
+    (fp_line (start 6.65 1.4) (end 13.45 8.2) (layer Dwgs.User) (width 0.1))
+    (fp_line (start 8.65 1.4) (end 15.45 8.2) (layer Dwgs.User) (width 0.1))
+    (fp_line (start 10.65 1.4) (end 17.45 8.2) (layer Dwgs.User) (width 0.1))
+    (fp_line (start 12.65 1.4) (end 19.45 8.2) (layer Dwgs.User) (width 0.1))
+    (fp_line (start 14.65 1.4) (end 21.45 8.2) (layer Dwgs.User) (width 0.1))
+    (fp_line (start 16.65 1.4) (end 23.45 8.2) (layer Dwgs.User) (width 0.1))
+    (fp_line (start 18.65 1.4) (end 24.25 7) (layer Dwgs.User) (width 0.1))
+    (fp_line (start 20.65 1.4) (end 24.25 5) (layer Dwgs.User) (width 0.1))
+    (fp_line (start 22.65 1.4) (end 24.25 3) (layer Dwgs.User) (width 0.1))
+    (fp_line (start -1.35 3.4) (end 3.45 8.2) (layer Dwgs.User) (width 0.1))
+    (fp_line (start -1.3 5.45) (end 1.45 8.2) (layer Dwgs.User) (width 0.1))
+    (fp_line (start -1.35 7.4) (end -0.55 8.2) (layer Dwgs.User) (width 0.1))
+    (fp_line (start -1.37 -19.09) (end 1.17 -19.09) (layer B.Fab) (width 0.1))
+    (fp_line (start 1.17 -19.09) (end 1.17 -25.99) (layer B.Fab) (width 0.1))
+    (fp_line (start -1.37 6.21) (end -1.37 1) (layer B.Fab) (width 0.1))
+    (fp_line (start -1.37 -1) (end -0.37 0) (layer B.Fab) (width 0.1))
+    (fp_line (start -0.37 0) (end -1.37 1) (layer B.Fab) (width 0.1))
+    (fp_line (start -1.5 -19.22) (end 1.04 -19.22) (layer B.SilkS) (width 0.12))
+    (fp_line (start 1.04 -19.22) (end 1.04 -26.12) (layer B.SilkS) (width 0.12))
+    (pad 16 thru_hole oval (at 22.86 0) (size 2 1.6) (drill 1) (layers *.Cu *.Mask)
+      (net 9 "Net-(U2-Pad16)"))
+    (pad 15 thru_hole oval (at 22.86 -2.54) (size 2 1.6) (drill 1) (layers *.Cu *.Mask)
+      (net 10 "Net-(U2-Pad15)"))
+    (pad 14 thru_hole oval (at 22.86 -5.08) (size 2 1.6) (drill 1) (layers *.Cu *.Mask)
+      (net 11 "Net-(U2-Pad14)"))
+    (pad 13 thru_hole oval (at 22.86 -7.62) (size 2 1.6) (drill 1) (layers *.Cu *.Mask)
+      (net 12 "Net-(U2-Pad13)"))
+    (pad 12 thru_hole oval (at 22.86 -10.16) (size 2 1.6) (drill 1) (layers *.Cu *.Mask)
+      (net 8 D3))
+    (pad 11 thru_hole oval (at 22.86 -12.7) (size 2 1.6) (drill 1) (layers *.Cu *.Mask)
+      (net 3 D4))
+    (pad 10 thru_hole oval (at 22.86 -15.24) (size 2 1.6) (drill 1) (layers *.Cu *.Mask)
+      (net 2 GND))
+    (pad 9 thru_hole oval (at 22.86 -17.78) (size 2 1.6) (drill 1) (layers *.Cu *.Mask)
+      (net 4 5V))
+    (pad 8 thru_hole oval (at 0 -17.78) (size 2 1.6) (drill 1) (layers *.Cu *.Mask)
+      (net 6 3.3V))
+    (pad 7 thru_hole oval (at 0 -15.24) (size 2 1.6) (drill 1) (layers *.Cu *.Mask)
+      (net 13 "Net-(U2-Pad7)"))
+    (pad 6 thru_hole oval (at 0 -12.7) (size 2 1.6) (drill 1) (layers *.Cu *.Mask)
+      (net 14 "Net-(U2-Pad6)"))
+    (pad 5 thru_hole oval (at 0 -10.16) (size 2 1.6) (drill 1) (layers *.Cu *.Mask)
+      (net 15 "Net-(U2-Pad5)"))
+    (pad 4 thru_hole oval (at 0 -7.62) (size 2 1.6) (drill 1) (layers *.Cu *.Mask)
+      (net 16 "Net-(U2-Pad4)"))
+    (pad 3 thru_hole oval (at 0 -5.08) (size 2 1.6) (drill 1) (layers *.Cu *.Mask)
+      (net 17 "Net-(U2-Pad3)"))
+    (pad 1 thru_hole rect (at 0 0) (size 2 2) (drill 1) (layers *.Cu *.Mask)
+      (net 18 "Net-(U2-Pad1)"))
+    (pad 2 thru_hole oval (at 0 -2.54) (size 2 1.6) (drill 1) (layers *.Cu *.Mask)
+      (net 5 A0))
+    (model ${KISYS3DMOD}/Module.3dshapes/WEMOS_D1_mini_light.wrl
+      (at (xyz 0 0 0))
+      (scale (xyz 1 1 1))
+      (rotate (xyz 0 0 0))
+    )
+    (model ${KISYS3DMOD}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x08_P2.54mm_Vertical.wrl
+      (offset (xyz 0 0 9.5))
+      (scale (xyz 1 1 1))
+      (rotate (xyz 0 -180 0))
+    )
+    (model ${KISYS3DMOD}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x08_P2.54mm_Vertical.wrl
+      (offset (xyz 22.86 0 9.5))
+      (scale (xyz 1 1 1))
+      (rotate (xyz 0 -180 0))
+    )
+    (model ${KISYS3DMOD}/Connector_PinSocket_2.54mm.3dshapes/PinSocket_1x08_P2.54mm_Vertical.wrl
+      (at (xyz 0 0 0))
+      (scale (xyz 1 1 1))
+      (rotate (xyz 0 0 0))
+    )
+    (model ${KISYS3DMOD}/Connector_PinSocket_2.54mm.3dshapes/PinSocket_1x08_P2.54mm_Vertical.wrl
+      (offset (xyz 22.86 0 0))
+      (scale (xyz 1 1 1))
+      (rotate (xyz 0 0 0))
+    )
+  )
+
+  (module Sensor:Aosong_DHT11_5.5x12.0_P2.54mm (layer F.Cu) (tedit 5C4B60CF) (tstamp 5FEBEC54)
+    (at 135.89 62.23 90)
+    (descr "Temperature and humidity module, http://akizukidenshi.com/download/ds/aosong/DHT11.pdf")
+    (tags "Temperature and humidity module")
+    (path /5FEBF3C3)
+    (fp_text reference U1 (at -1 -3.5 90) (layer F.SilkS)
+      (effects (font (size 1 1) (thickness 0.15)))
+    )
+    (fp_text value DHT11 (at 0 11.3 90) (layer F.Fab)
+      (effects (font (size 1 1) (thickness 0.15)))
+    )
+    (fp_text user %R (at 0 3.81 90) (layer F.Fab)
+      (effects (font (size 1 1) (thickness 0.15)))
+    )
+    (fp_line (start -1.75 -2.19) (end 2.75 -2.19) (layer F.Fab) (width 0.1))
+    (fp_line (start 2.75 -2.19) (end 2.75 9.81) (layer F.Fab) (width 0.1))
+    (fp_line (start 2.75 9.81) (end -2.75 9.81) (layer F.Fab) (width 0.1))
+    (fp_line (start -2.75 -1.19) (end -2.75 9.81) (layer F.Fab) (width 0.1))
+    (fp_line (start -2.87 -2.32) (end 2.87 -2.32) (layer F.SilkS) (width 0.12))
+    (fp_line (start 2.88 -2.32) (end 2.88 9.94) (layer F.SilkS) (width 0.12))
+    (fp_line (start 2.88 9.94) (end -2.88 9.94) (layer F.SilkS) (width 0.12))
+    (fp_line (start -2.88 9.94) (end -2.88 -2.31) (layer F.SilkS) (width 0.12))
+    (fp_line (start -3 -2.44) (end 3 -2.44) (layer F.CrtYd) (width 0.05))
+    (fp_line (start 3 -2.44) (end 3 10.06) (layer F.CrtYd) (width 0.05))
+    (fp_line (start 3 10.06) (end -3 10.06) (layer F.CrtYd) (width 0.05))
+    (fp_line (start -3 10.06) (end -3 -2.44) (layer F.CrtYd) (width 0.05))
+    (fp_line (start -2.75 -1.19) (end -1.75 -2.19) (layer F.Fab) (width 0.1))
+    (fp_line (start -3.16 -2.6) (end -3.16 -0.6) (layer F.SilkS) (width 0.12))
+    (fp_line (start -3.16 -2.6) (end -1.55 -2.6) (layer F.SilkS) (width 0.12))
+    (pad 4 thru_hole circle (at 0 7.62 90) (size 1.5 1.5) (drill 0.8) (layers *.Cu *.Mask)
+      (net 2 GND))
+    (pad 3 thru_hole circle (at 0 5.08 90) (size 1.5 1.5) (drill 0.8) (layers *.Cu *.Mask)
+      (net 7 "Net-(U1-Pad3)"))
+    (pad 2 thru_hole circle (at 0 2.54 90) (size 1.5 1.5) (drill 0.8) (layers *.Cu *.Mask)
+      (net 8 D3))
+    (pad 1 thru_hole rect (at 0 0 90) (size 1.5 1.5) (drill 0.8) (layers *.Cu *.Mask)
+      (net 6 3.3V))
+    (model ${KISYS3DMOD}/Sensor.3dshapes/Aosong_DHT11_5.5x12.0_P2.54mm.wrl
+      (at (xyz 0 0 0))
+      (scale (xyz 1 1 1))
+      (rotate (xyz 0 0 0))
+    )
+  )
+
+  (module Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P2.54mm_Vertical (layer F.Cu) (tedit 5AE5139B) (tstamp 5FEBEC3C)
+    (at 129.54 41.91)
+    (descr "Resistor, Axial_DIN0207 series, Axial, Vertical, pin pitch=2.54mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
+    (tags "Resistor Axial_DIN0207 series Axial Vertical pin pitch 2.54mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
+    (path /5FEBE6A0)
+    (fp_text reference R2 (at 1.27 -2.37) (layer F.SilkS)
+      (effects (font (size 1 1) (thickness 0.15)))
+    )
+    (fp_text value R_PHOTO (at 1.27 2.37) (layer F.Fab)
+      (effects (font (size 1 1) (thickness 0.15)))
+    )
+    (fp_text user %R (at 1.27 -2.37) (layer F.Fab)
+      (effects (font (size 1 1) (thickness 0.15)))
+    )
+    (fp_circle (center 0 0) (end 1.25 0) (layer F.Fab) (width 0.1))
+    (fp_circle (center 0 0) (end 1.37 0) (layer F.SilkS) (width 0.12))
+    (fp_line (start 0 0) (end 2.54 0) (layer F.Fab) (width 0.1))
+    (fp_line (start 1.37 0) (end 1.44 0) (layer F.SilkS) (width 0.12))
+    (fp_line (start -1.5 -1.5) (end -1.5 1.5) (layer F.CrtYd) (width 0.05))
+    (fp_line (start -1.5 1.5) (end 3.59 1.5) (layer F.CrtYd) (width 0.05))
+    (fp_line (start 3.59 1.5) (end 3.59 -1.5) (layer F.CrtYd) (width 0.05))
+    (fp_line (start 3.59 -1.5) (end -1.5 -1.5) (layer F.CrtYd) (width 0.05))
+    (pad 2 thru_hole oval (at 2.54 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
+      (net 5 A0))
+    (pad 1 thru_hole circle (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
+      (net 6 3.3V))
+    (model ${KISYS3DMOD}/Resistor_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P2.54mm_Vertical.wrl
+      (at (xyz 0 0 0))
+      (scale (xyz 1 1 1))
+      (rotate (xyz 0 0 0))
+    )
+  )
+
+  (module Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal (layer F.Cu) (tedit 5AE5139B) (tstamp 5FEBEC2D)
+    (at 139.7 41.91)
+    (descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=10.16mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
+    (tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 10.16mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
+    (path /5FEC0D85)
+    (fp_text reference R1 (at 5.08 -2.37) (layer F.SilkS)
+      (effects (font (size 1 1) (thickness 0.15)))
+    )
+    (fp_text value 10k (at 5.08 2.37) (layer F.Fab)
+      (effects (font (size 1 1) (thickness 0.15)))
+    )
+    (fp_text user %R (at 5.08 0) (layer F.Fab)
+      (effects (font (size 1 1) (thickness 0.15)))
+    )
+    (fp_line (start 1.93 -1.25) (end 1.93 1.25) (layer F.Fab) (width 0.1))
+    (fp_line (start 1.93 1.25) (end 8.23 1.25) (layer F.Fab) (width 0.1))
+    (fp_line (start 8.23 1.25) (end 8.23 -1.25) (layer F.Fab) (width 0.1))
+    (fp_line (start 8.23 -1.25) (end 1.93 -1.25) (layer F.Fab) (width 0.1))
+    (fp_line (start 0 0) (end 1.93 0) (layer F.Fab) (width 0.1))
+    (fp_line (start 10.16 0) (end 8.23 0) (layer F.Fab) (width 0.1))
+    (fp_line (start 1.81 -1.37) (end 1.81 1.37) (layer F.SilkS) (width 0.12))
+    (fp_line (start 1.81 1.37) (end 8.35 1.37) (layer F.SilkS) (width 0.12))
+    (fp_line (start 8.35 1.37) (end 8.35 -1.37) (layer F.SilkS) (width 0.12))
+    (fp_line (start 8.35 -1.37) (end 1.81 -1.37) (layer F.SilkS) (width 0.12))
+    (fp_line (start 1.04 0) (end 1.81 0) (layer F.SilkS) (width 0.12))
+    (fp_line (start 9.12 0) (end 8.35 0) (layer F.SilkS) (width 0.12))
+    (fp_line (start -1.05 -1.5) (end -1.05 1.5) (layer F.CrtYd) (width 0.05))
+    (fp_line (start -1.05 1.5) (end 11.21 1.5) (layer F.CrtYd) (width 0.05))
+    (fp_line (start 11.21 1.5) (end 11.21 -1.5) (layer F.CrtYd) (width 0.05))
+    (fp_line (start 11.21 -1.5) (end -1.05 -1.5) (layer F.CrtYd) (width 0.05))
+    (pad 2 thru_hole oval (at 10.16 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
+      (net 2 GND))
+    (pad 1 thru_hole circle (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
+      (net 5 A0))
+    (model ${KISYS3DMOD}/Resistor_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal.wrl
+      (at (xyz 0 0 0))
+      (scale (xyz 1 1 1))
+      (rotate (xyz 0 0 0))
+    )
+  )
+
+  (module LED_SMD:LED_WS2812B_PLCC4_5.0x5.0mm_P3.2mm (layer F.Cu) (tedit 5AA4B285) (tstamp 5FEBEC16)
+    (at 139.7 69.85)
+    (descr https://cdn-shop.adafruit.com/datasheets/WS2812B.pdf)
+    (tags "LED RGB NeoPixel")
+    (path /5FEBEC8A)
+    (attr smd)
+    (fp_text reference D1 (at 0 -3.5) (layer F.SilkS)
+      (effects (font (size 1 1) (thickness 0.15)))
+    )
+    (fp_text value NeoPixel_THT (at 0 4) (layer F.Fab)
+      (effects (font (size 1 1) (thickness 0.15)))
+    )
+    (fp_text user %R (at 0 0) (layer F.Fab)
+      (effects (font (size 0.8 0.8) (thickness 0.15)))
+    )
+    (fp_text user 1 (at -4.15 -1.6) (layer F.SilkS)
+      (effects (font (size 1 1) (thickness 0.15)))
+    )
+    (fp_line (start 3.45 -2.75) (end -3.45 -2.75) (layer F.CrtYd) (width 0.05))
+    (fp_line (start 3.45 2.75) (end 3.45 -2.75) (layer F.CrtYd) (width 0.05))
+    (fp_line (start -3.45 2.75) (end 3.45 2.75) (layer F.CrtYd) (width 0.05))
+    (fp_line (start -3.45 -2.75) (end -3.45 2.75) (layer F.CrtYd) (width 0.05))
+    (fp_line (start 2.5 1.5) (end 1.5 2.5) (layer F.Fab) (width 0.1))
+    (fp_line (start -2.5 -2.5) (end -2.5 2.5) (layer F.Fab) (width 0.1))
+    (fp_line (start -2.5 2.5) (end 2.5 2.5) (layer F.Fab) (width 0.1))
+    (fp_line (start 2.5 2.5) (end 2.5 -2.5) (layer F.Fab) (width 0.1))
+    (fp_line (start 2.5 -2.5) (end -2.5 -2.5) (layer F.Fab) (width 0.1))
+    (fp_line (start -3.65 -2.75) (end 3.65 -2.75) (layer F.SilkS) (width 0.12))
+    (fp_line (start -3.65 2.75) (end 3.65 2.75) (layer F.SilkS) (width 0.12))
+    (fp_line (start 3.65 2.75) (end 3.65 1.6) (layer F.SilkS) (width 0.12))
+    (fp_circle (center 0 0) (end 0 -2) (layer F.Fab) (width 0.1))
+    (pad 1 smd rect (at -2.45 -1.6) (size 1.5 1) (layers F.Cu F.Paste F.Mask)
+      (net 1 "Net-(D1-Pad1)"))
+    (pad 2 smd rect (at -2.45 1.6) (size 1.5 1) (layers F.Cu F.Paste F.Mask)
+      (net 2 GND))
+    (pad 4 smd rect (at 2.45 -1.6) (size 1.5 1) (layers F.Cu F.Paste F.Mask)
+      (net 3 D4))
+    (pad 3 smd rect (at 2.45 1.6) (size 1.5 1) (layers F.Cu F.Paste F.Mask)
+      (net 4 5V))
+    (model ${KISYS3DMOD}/LED_SMD.3dshapes/LED_WS2812B_PLCC4_5.0x5.0mm_P3.2mm.wrl
+      (at (xyz 0 0 0))
+      (scale (xyz 1 1 1))
+      (rotate (xyz 0 0 0))
+    )
+  )
+
+  (gr_line (start 124.46 74.93) (end 124.46 36.83) (layer Edge.Cuts) (width 0.15) (tstamp 5FEBF16F))
+  (gr_line (start 154.94 74.93) (end 124.46 74.93) (layer Edge.Cuts) (width 0.15))
+  (gr_line (start 154.94 36.83) (end 154.94 74.93) (layer Edge.Cuts) (width 0.15))
+  (gr_line (start 124.46 36.83) (end 154.94 36.83) (layer Edge.Cuts) (width 0.15))
+
+  (segment (start 137.25 71.45) (end 139.7 69) (width 0.25) (layer F.Cu) (net 2))
+  (segment (start 139.7 66.04) (end 143.51 62.23) (width 0.25) (layer F.Cu) (net 2))
+  (segment (start 139.7 69) (end 139.7 66.04) (width 0.25) (layer F.Cu) (net 2))
+  (segment (start 151.13 52.07) (end 152.4 52.07) (width 0.25) (layer F.Cu) (net 3))
+  (segment (start 152.4 52.07) (end 153.21999 52.88999) (width 0.25) (layer F.Cu) (net 3))
+  (segment (start 153.21999 52.88999) (end 153.21999 65.8536) (width 0.25) (layer F.Cu) (net 3))
+  (segment (start 153.21999 65.8536) (end 150.811795 68.261795) (width 0.25) (layer F.Cu) (net 3))
+  (segment (start 150.8 68.25) (end 142.15 68.25) (width 0.25) (layer F.Cu) (net 3))
+  (segment (start 150.811795 68.261795) (end 150.8 68.25) (width 0.25) (layer F.Cu) (net 3))
+  (segment (start 142.15 71.45) (end 148.26 71.45) (width 0.25) (layer F.Cu) (net 4))
+  (segment (start 148.26 71.45) (end 153.67 66.04) (width 0.25) (layer F.Cu) (net 4))
+  (segment (start 153.67 66.04) (end 153.67 48.26) (width 0.25) (layer F.Cu) (net 4))
+  (segment (start 152.4 46.99) (end 151.13 46.99) (width 0.25) (layer F.Cu) (net 4))
+  (segment (start 153.67 48.26) (end 152.4 46.99) (width 0.25) (layer F.Cu) (net 4))
+  (segment (start 132.08 41.91) (end 139.7 41.91) (width 0.25) (layer F.Cu) (net 5))
+  (segment (start 128.27 62.23) (end 130.81 62.23) (width 0.25) (layer F.Cu) (net 5))
+  (segment (start 132.08 60.96) (end 132.08 41.91) (width 0.25) (layer F.Cu) (net 5))
+  (segment (start 130.81 62.23) (end 132.08 60.96) (width 0.25) (layer F.Cu) (net 5))
+  (segment (start 129.54 45.72) (end 128.27 46.99) (width 0.25) (layer F.Cu) (net 6))
+  (segment (start 129.54 41.91) (end 129.54 45.72) (width 0.25) (layer F.Cu) (net 6))
+  (segment (start 135.89 63.5) (end 132.08 67.31) (width 0.25) (layer F.Cu) (net 6))
+  (segment (start 127 46.99) (end 128.27 46.99) (width 0.25) (layer F.Cu) (net 6))
+  (segment (start 125.73 66.04) (end 125.73 48.26) (width 0.25) (layer F.Cu) (net 6))
+  (segment (start 135.89 62.23) (end 135.89 63.5) (width 0.25) (layer F.Cu) (net 6))
+  (segment (start 132.08 67.31) (end 127 67.31) (width 0.25) (layer F.Cu) (net 6))
+  (segment (start 127 67.31) (end 125.73 66.04) (width 0.25) (layer F.Cu) (net 6))
+  (segment (start 125.73 48.26) (end 127 46.99) (width 0.25) (layer F.Cu) (net 6))
+  (segment (start 138.43 62.23) (end 138.43 57.15) (width 0.25) (layer F.Cu) (net 8))
+  (segment (start 140.97 54.61) (end 151.13 54.61) (width 0.25) (layer F.Cu) (net 8))
+  (segment (start 138.43 57.15) (end 140.97 54.61) (width 0.25) (layer F.Cu) (net 8))
+
+  (zone (net 2) (net_name GND) (layer B.Cu) (tstamp 5FEBF266) (hatch edge 0.508)
+    (connect_pads (clearance 0.508))
+    (min_thickness 0.254)
+    (fill yes (arc_segments 32) (thermal_gap 0.508) (thermal_bridge_width 0.508))
+    (polygon
+      (pts
+        (xy 153.67 66.04) (xy 125.73 66.04) (xy 125.73 38.1) (xy 153.67 38.1)
+      )
+    )
+    (filled_polygon
+      (pts
+        (xy 153.543 65.913) (xy 152.199254 65.913) (xy 152.349608 65.789608) (xy 152.528932 65.571101) (xy 152.662182 65.321808)
+        (xy 152.744236 65.051309) (xy 152.771943 64.77) (xy 152.744236 64.488691) (xy 152.662182 64.218192) (xy 152.528932 63.968899)
+        (xy 152.349608 63.750392) (xy 152.131101 63.571068) (xy 151.998142 63.5) (xy 152.131101 63.428932) (xy 152.349608 63.249608)
+        (xy 152.528932 63.031101) (xy 152.662182 62.781808) (xy 152.744236 62.511309) (xy 152.771943 62.23) (xy 152.744236 61.948691)
+        (xy 152.662182 61.678192) (xy 152.528932 61.428899) (xy 152.349608 61.210392) (xy 152.131101 61.031068) (xy 151.998142 60.96)
+        (xy 152.131101 60.888932) (xy 152.349608 60.709608) (xy 152.528932 60.491101) (xy 152.662182 60.241808) (xy 152.744236 59.971309)
+        (xy 152.771943 59.69) (xy 152.744236 59.408691) (xy 152.662182 59.138192) (xy 152.528932 58.888899) (xy 152.349608 58.670392)
+        (xy 152.131101 58.491068) (xy 151.998142 58.42) (xy 152.131101 58.348932) (xy 152.349608 58.169608) (xy 152.528932 57.951101)
+        (xy 152.662182 57.701808) (xy 152.744236 57.431309) (xy 152.771943 57.15) (xy 152.744236 56.868691) (xy 152.662182 56.598192)
+        (xy 152.528932 56.348899) (xy 152.349608 56.130392) (xy 152.131101 55.951068) (xy 151.998142 55.88) (xy 152.131101 55.808932)
+        (xy 152.349608 55.629608) (xy 152.528932 55.411101) (xy 152.662182 55.161808) (xy 152.744236 54.891309) (xy 152.771943 54.61)
+        (xy 152.744236 54.328691) (xy 152.662182 54.058192) (xy 152.528932 53.808899) (xy 152.349608 53.590392) (xy 152.131101 53.411068)
+        (xy 151.998142 53.34) (xy 152.131101 53.268932) (xy 152.349608 53.089608) (xy 152.528932 52.871101) (xy 152.662182 52.621808)
+        (xy 152.744236 52.351309) (xy 152.771943 52.07) (xy 152.744236 51.788691) (xy 152.662182 51.518192) (xy 152.528932 51.268899)
+        (xy 152.349608 51.050392) (xy 152.131101 50.871068) (xy 152.001655 50.801878) (xy 152.019227 50.79443) (xy 152.252662 50.635673)
+        (xy 152.450639 50.434425) (xy 152.605551 50.198421) (xy 152.711444 49.93673) (xy 152.721904 49.879039) (xy 152.599915 49.657)
+        (xy 151.257 49.657) (xy 151.257 49.677) (xy 151.003 49.677) (xy 151.003 49.657) (xy 149.660085 49.657)
+        (xy 149.538096 49.879039) (xy 149.548556 49.93673) (xy 149.654449 50.198421) (xy 149.809361 50.434425) (xy 150.007338 50.635673)
+        (xy 150.240773 50.79443) (xy 150.258345 50.801878) (xy 150.128899 50.871068) (xy 149.910392 51.050392) (xy 149.731068 51.268899)
+        (xy 149.597818 51.518192) (xy 149.515764 51.788691) (xy 149.488057 52.07) (xy 149.515764 52.351309) (xy 149.597818 52.621808)
+        (xy 149.731068 52.871101) (xy 149.910392 53.089608) (xy 150.128899 53.268932) (xy 150.261858 53.34) (xy 150.128899 53.411068)
+        (xy 149.910392 53.590392) (xy 149.731068 53.808899) (xy 149.597818 54.058192) (xy 149.515764 54.328691) (xy 149.488057 54.61)
+        (xy 149.515764 54.891309) (xy 149.597818 55.161808) (xy 149.731068 55.411101) (xy 149.910392 55.629608) (xy 150.128899 55.808932)
+        (xy 150.261858 55.88) (xy 150.128899 55.951068) (xy 149.910392 56.130392) (xy 149.731068 56.348899) (xy 149.597818 56.598192)
+        (xy 149.515764 56.868691) (xy 149.488057 57.15) (xy 149.515764 57.431309) (xy 149.597818 57.701808) (xy 149.731068 57.951101)
+        (xy 149.910392 58.169608) (xy 150.128899 58.348932) (xy 150.261858 58.42) (xy 150.128899 58.491068) (xy 149.910392 58.670392)
+        (xy 149.731068 58.888899) (xy 149.597818 59.138192) (xy 149.515764 59.408691) (xy 149.488057 59.69) (xy 149.515764 59.971309)
+        (xy 149.597818 60.241808) (xy 149.731068 60.491101) (xy 149.910392 60.709608) (xy 150.128899 60.888932) (xy 150.261858 60.96)
+        (xy 150.128899 61.031068) (xy 149.910392 61.210392) (xy 149.731068 61.428899) (xy 149.597818 61.678192) (xy 149.515764 61.948691)
+        (xy 149.488057 62.23) (xy 149.515764 62.511309) (xy 149.597818 62.781808) (xy 149.731068 63.031101) (xy 149.910392 63.249608)
+        (xy 150.128899 63.428932) (xy 150.261858 63.5) (xy 150.128899 63.571068) (xy 149.910392 63.750392) (xy 149.731068 63.968899)
+        (xy 149.597818 64.218192) (xy 149.515764 64.488691) (xy 149.488057 64.77) (xy 149.515764 65.051309) (xy 149.597818 65.321808)
+        (xy 149.731068 65.571101) (xy 149.910392 65.789608) (xy 150.060746 65.913) (xy 129.890195 65.913) (xy 129.895812 65.894482)
+        (xy 129.908072 65.77) (xy 129.908072 63.77) (xy 129.895812 63.645518) (xy 129.859502 63.52582) (xy 129.800537 63.415506)
+        (xy 129.721185 63.318815) (xy 129.624494 63.239463) (xy 129.536524 63.192441) (xy 129.668932 63.031101) (xy 129.802182 62.781808)
+        (xy 129.884236 62.511309) (xy 129.911943 62.23) (xy 129.884236 61.948691) (xy 129.802182 61.678192) (xy 129.696247 61.48)
+        (xy 134.501928 61.48) (xy 134.501928 62.98) (xy 134.514188 63.104482) (xy 134.550498 63.22418) (xy 134.609463 63.334494)
+        (xy 134.688815 63.431185) (xy 134.785506 63.510537) (xy 134.89582 63.569502) (xy 135.015518 63.605812) (xy 135.14 63.618072)
+        (xy 136.64 63.618072) (xy 136.764482 63.605812) (xy 136.88418 63.569502) (xy 136.994494 63.510537) (xy 137.091185 63.431185)
+        (xy 137.170537 63.334494) (xy 137.229502 63.22418) (xy 137.265812 63.104482) (xy 137.276445 62.996517) (xy 137.354201 63.112886)
+        (xy 137.547114 63.305799) (xy 137.773957 63.457371) (xy 138.026011 63.561775) (xy 138.293589 63.615) (xy 138.566411 63.615)
+        (xy 138.833989 63.561775) (xy 139.086043 63.457371) (xy 139.312886 63.305799) (xy 139.505799 63.112886) (xy 139.657371 62.886043)
+        (xy 139.7 62.783127) (xy 139.742629 62.886043) (xy 139.894201 63.112886) (xy 140.087114 63.305799) (xy 140.313957 63.457371)
+        (xy 140.566011 63.561775) (xy 140.833589 63.615) (xy 141.106411 63.615) (xy 141.373989 63.561775) (xy 141.626043 63.457371)
+        (xy 141.852886 63.305799) (xy 141.971692 63.186993) (xy 142.732612 63.186993) (xy 142.798137 63.42586) (xy 143.045116 63.54176)
+        (xy 143.30996 63.60725) (xy 143.582492 63.619812) (xy 143.852238 63.578965) (xy 144.108832 63.486277) (xy 144.221863 63.42586)
+        (xy 144.287388 63.186993) (xy 143.51 62.409605) (xy 142.732612 63.186993) (xy 141.971692 63.186993) (xy 142.045799 63.112886)
+        (xy 142.197371 62.886043) (xy 142.238511 62.786721) (xy 142.253723 62.828832) (xy 142.31414 62.941863) (xy 142.553007 63.007388)
+        (xy 143.330395 62.23) (xy 143.689605 62.23) (xy 144.466993 63.007388) (xy 144.70586 62.941863) (xy 144.82176 62.694884)
+        (xy 144.88725 62.43004) (xy 144.899812 62.157508) (xy 144.858965 61.887762) (xy 144.766277 61.631168) (xy 144.70586 61.518137)
+        (xy 144.466993 61.452612) (xy 143.689605 62.23) (xy 143.330395 62.23) (xy 142.553007 61.452612) (xy 142.31414 61.518137)
+        (xy 142.239836 61.676477) (xy 142.197371 61.573957) (xy 142.045799 61.347114) (xy 141.971692 61.273007) (xy 142.732612 61.273007)
+        (xy 143.51 62.050395) (xy 144.287388 61.273007) (xy 144.221863 61.03414) (xy 143.974884 60.91824) (xy 143.71004 60.85275)
+        (xy 143.437508 60.840188) (xy 143.167762 60.881035) (xy 142.911168 60.973723) (xy 142.798137 61.03414) (xy 142.732612 61.273007)
+        (xy 141.971692 61.273007) (xy 141.852886 61.154201) (xy 141.626043 61.002629) (xy 141.373989 60.898225) (xy 141.106411 60.845)
+        (xy 140.833589 60.845) (xy 140.566011 60.898225) (xy 140.313957 61.002629) (xy 140.087114 61.154201) (xy 139.894201 61.347114)
+        (xy 139.742629 61.573957) (xy 139.7 61.676873) (xy 139.657371 61.573957) (xy 139.505799 61.347114) (xy 139.312886 61.154201)
+        (xy 139.086043 61.002629) (xy 138.833989 60.898225) (xy 138.566411 60.845) (xy 138.293589 60.845) (xy 138.026011 60.898225)
+        (xy 137.773957 61.002629) (xy 137.547114 61.154201) (xy 137.354201 61.347114) (xy 137.276445 61.463483) (xy 137.265812 61.355518)
+        (xy 137.229502 61.23582) (xy 137.170537 61.125506) (xy 137.091185 61.028815) (xy 136.994494 60.949463) (xy 136.88418 60.890498)
+        (xy 136.764482 60.854188) (xy 136.64 60.841928) (xy 135.14 60.841928) (xy 135.015518 60.854188) (xy 134.89582 60.890498)
+        (xy 134.785506 60.949463) (xy 134.688815 61.028815) (xy 134.609463 61.125506) (xy 134.550498 61.23582) (xy 134.514188 61.355518)
+        (xy 134.501928 61.48) (xy 129.696247 61.48) (xy 129.668932 61.428899) (xy 129.489608 61.210392) (xy 129.271101 61.031068)
+        (xy 129.138142 60.96) (xy 129.271101 60.888932) (xy 129.489608 60.709608) (xy 129.668932 60.491101) (xy 129.802182 60.241808)
+        (xy 129.884236 59.971309) (xy 129.911943 59.69) (xy 129.884236 59.408691) (xy 129.802182 59.138192) (xy 129.668932 58.888899)
+        (xy 129.489608 58.670392) (xy 129.271101 58.491068) (xy 129.138142 58.42) (xy 129.271101 58.348932) (xy 129.489608 58.169608)
+        (xy 129.668932 57.951101) (xy 129.802182 57.701808) (xy 129.884236 57.431309) (xy 129.911943 57.15) (xy 129.884236 56.868691)
+        (xy 129.802182 56.598192) (xy 129.668932 56.348899) (xy 129.489608 56.130392) (xy 129.271101 55.951068) (xy 129.138142 55.88)
+        (xy 129.271101 55.808932) (xy 129.489608 55.629608) (xy 129.668932 55.411101) (xy 129.802182 55.161808) (xy 129.884236 54.891309)
+        (xy 129.911943 54.61) (xy 129.884236 54.328691) (xy 129.802182 54.058192) (xy 129.668932 53.808899) (xy 129.489608 53.590392)
+        (xy 129.271101 53.411068) (xy 129.138142 53.34) (xy 129.271101 53.268932) (xy 129.489608 53.089608) (xy 129.668932 52.871101)
+        (xy 129.802182 52.621808) (xy 129.884236 52.351309) (xy 129.911943 52.07) (xy 129.884236 51.788691) (xy 129.802182 51.518192)
+        (xy 129.668932 51.268899) (xy 129.489608 51.050392) (xy 129.271101 50.871068) (xy 129.138142 50.8) (xy 129.271101 50.728932)
+        (xy 129.489608 50.549608) (xy 129.668932 50.331101) (xy 129.802182 50.081808) (xy 129.884236 49.811309) (xy 129.911943 49.53)
+        (xy 129.884236 49.248691) (xy 129.802182 48.978192) (xy 129.668932 48.728899) (xy 129.489608 48.510392) (xy 129.271101 48.331068)
+        (xy 129.138142 48.26) (xy 129.271101 48.188932) (xy 129.489608 48.009608) (xy 129.668932 47.791101) (xy 129.802182 47.541808)
+        (xy 129.884236 47.271309) (xy 129.911943 46.99) (xy 149.488057 46.99) (xy 149.515764 47.271309) (xy 149.597818 47.541808)
+        (xy 149.731068 47.791101) (xy 149.910392 48.009608) (xy 150.128899 48.188932) (xy 150.258345 48.258122) (xy 150.240773 48.26557)
+        (xy 150.007338 48.424327) (xy 149.809361 48.625575) (xy 149.654449 48.861579) (xy 149.548556 49.12327) (xy 149.538096 49.180961)
+        (xy 149.660085 49.403) (xy 151.003 49.403) (xy 151.003 49.383) (xy 151.257 49.383) (xy 151.257 49.403)
+        (xy 152.599915 49.403) (xy 152.721904 49.180961) (xy 152.711444 49.12327) (xy 152.605551 48.861579) (xy 152.450639 48.625575)
+        (xy 152.252662 48.424327) (xy 152.019227 48.26557) (xy 152.001655 48.258122) (xy 152.131101 48.188932) (xy 152.349608 48.009608)
+        (xy 152.528932 47.791101) (xy 152.662182 47.541808) (xy 152.744236 47.271309) (xy 152.771943 46.99) (xy 152.744236 46.708691)
+        (xy 152.662182 46.438192) (xy 152.528932 46.188899) (xy 152.349608 45.970392) (xy 152.131101 45.791068) (xy 151.881808 45.657818)
+        (xy 151.611309 45.575764) (xy 151.400492 45.555) (xy 150.859508 45.555) (xy 150.648691 45.575764) (xy 150.378192 45.657818)
+        (xy 150.128899 45.791068) (xy 149.910392 45.970392) (xy 149.731068 46.188899) (xy 149.597818 46.438192) (xy 149.515764 46.708691)
+        (xy 149.488057 46.99) (xy 129.911943 46.99) (xy 129.884236 46.708691) (xy 129.802182 46.438192) (xy 129.668932 46.188899)
+        (xy 129.489608 45.970392) (xy 129.271101 45.791068) (xy 129.021808 45.657818) (xy 128.751309 45.575764) (xy 128.540492 45.555)
+        (xy 127.999508 45.555) (xy 127.788691 45.575764) (xy 127.518192 45.657818) (xy 127.268899 45.791068) (xy 127.050392 45.970392)
+        (xy 126.871068 46.188899) (xy 126.737818 46.438192) (xy 126.655764 46.708691) (xy 126.628057 46.99) (xy 126.655764 47.271309)
+        (xy 126.737818 47.541808) (xy 126.871068 47.791101) (xy 127.050392 48.009608) (xy 127.268899 48.188932) (xy 127.401858 48.26)
+        (xy 127.268899 48.331068) (xy 127.050392 48.510392) (xy 126.871068 48.728899) (xy 126.737818 48.978192) (xy 126.655764 49.248691)
+        (xy 126.628057 49.53) (xy 126.655764 49.811309) (xy 126.737818 50.081808) (xy 126.871068 50.331101) (xy 127.050392 50.549608)
+        (xy 127.268899 50.728932) (xy 127.401858 50.8) (xy 127.268899 50.871068) (xy 127.050392 51.050392) (xy 126.871068 51.268899)
+        (xy 126.737818 51.518192) (xy 126.655764 51.788691) (xy 126.628057 52.07) (xy 126.655764 52.351309) (xy 126.737818 52.621808)
+        (xy 126.871068 52.871101) (xy 127.050392 53.089608) (xy 127.268899 53.268932) (xy 127.401858 53.34) (xy 127.268899 53.411068)
+        (xy 127.050392 53.590392) (xy 126.871068 53.808899) (xy 126.737818 54.058192) (xy 126.655764 54.328691) (xy 126.628057 54.61)
+        (xy 126.655764 54.891309) (xy 126.737818 55.161808) (xy 126.871068 55.411101) (xy 127.050392 55.629608) (xy 127.268899 55.808932)
+        (xy 127.401858 55.88) (xy 127.268899 55.951068) (xy 127.050392 56.130392) (xy 126.871068 56.348899) (xy 126.737818 56.598192)
+        (xy 126.655764 56.868691) (xy 126.628057 57.15) (xy 126.655764 57.431309) (xy 126.737818 57.701808) (xy 126.871068 57.951101)
+        (xy 127.050392 58.169608) (xy 127.268899 58.348932) (xy 127.401858 58.42) (xy 127.268899 58.491068) (xy 127.050392 58.670392)
+        (xy 126.871068 58.888899) (xy 126.737818 59.138192) (xy 126.655764 59.408691) (xy 126.628057 59.69) (xy 126.655764 59.971309)
+        (xy 126.737818 60.241808) (xy 126.871068 60.491101) (xy 127.050392 60.709608) (xy 127.268899 60.888932) (xy 127.401858 60.96)
+        (xy 127.268899 61.031068) (xy 127.050392 61.210392) (xy 126.871068 61.428899) (xy 126.737818 61.678192) (xy 126.655764 61.948691)
+        (xy 126.628057 62.23) (xy 126.655764 62.511309) (xy 126.737818 62.781808) (xy 126.871068 63.031101) (xy 127.003476 63.192441)
+        (xy 126.915506 63.239463) (xy 126.818815 63.318815) (xy 126.739463 63.415506) (xy 126.680498 63.52582) (xy 126.644188 63.645518)
+        (xy 126.631928 63.77) (xy 126.631928 65.77) (xy 126.644188 65.894482) (xy 126.649805 65.913) (xy 125.857 65.913)
+        (xy 125.857 41.768665) (xy 128.105 41.768665) (xy 128.105 42.051335) (xy 128.160147 42.328574) (xy 128.26832 42.589727)
+        (xy 128.425363 42.824759) (xy 128.625241 43.024637) (xy 128.860273 43.18168) (xy 129.121426 43.289853) (xy 129.398665 43.345)
+        (xy 129.681335 43.345) (xy 129.958574 43.289853) (xy 130.219727 43.18168) (xy 130.454759 43.024637) (xy 130.654637 42.824759)
+        (xy 130.81 42.592241) (xy 130.965363 42.824759) (xy 131.165241 43.024637) (xy 131.400273 43.18168) (xy 131.661426 43.289853)
+        (xy 131.938665 43.345) (xy 132.221335 43.345) (xy 132.498574 43.289853) (xy 132.759727 43.18168) (xy 132.994759 43.024637)
+        (xy 133.194637 42.824759) (xy 133.35168 42.589727) (xy 133.459853 42.328574) (xy 133.515 42.051335) (xy 133.515 41.768665)
+        (xy 138.265 41.768665) (xy 138.265 42.051335) (xy 138.320147 42.328574) (xy 138.42832 42.589727) (xy 138.585363 42.824759)
+        (xy 138.785241 43.024637) (xy 139.020273 43.18168) (xy 139.281426 43.289853) (xy 139.558665 43.345) (xy 139.841335 43.345)
+        (xy 140.118574 43.289853) (xy 140.379727 43.18168) (xy 140.614759 43.024637) (xy 140.814637 42.824759) (xy 140.97168 42.589727)
+        (xy 141.079853 42.328574) (xy 141.093684 42.259039) (xy 148.468096 42.259039) (xy 148.508754 42.393087) (xy 148.628963 42.64742)
+        (xy 148.796481 42.873414) (xy 149.004869 43.062385) (xy 149.246119 43.20707) (xy 149.51096 43.301909) (xy 149.733 43.180624)
+        (xy 149.733 42.037) (xy 149.987 42.037) (xy 149.987 43.180624) (xy 150.20904 43.301909) (xy 150.473881 43.20707)
+        (xy 150.715131 43.062385) (xy 150.923519 42.873414) (xy 151.091037 42.64742) (xy 151.211246 42.393087) (xy 151.251904 42.259039)
+        (xy 151.129915 42.037) (xy 149.987 42.037) (xy 149.733 42.037) (xy 148.590085 42.037) (xy 148.468096 42.259039)
+        (xy 141.093684 42.259039) (xy 141.135 42.051335) (xy 141.135 41.768665) (xy 141.093685 41.560961) (xy 148.468096 41.560961)
+        (xy 148.590085 41.783) (xy 149.733 41.783) (xy 149.733 40.639376) (xy 149.987 40.639376) (xy 149.987 41.783)
+        (xy 151.129915 41.783) (xy 151.251904 41.560961) (xy 151.211246 41.426913) (xy 151.091037 41.17258) (xy 150.923519 40.946586)
+        (xy 150.715131 40.757615) (xy 150.473881 40.61293) (xy 150.20904 40.518091) (xy 149.987 40.639376) (xy 149.733 40.639376)
+        (xy 149.51096 40.518091) (xy 149.246119 40.61293) (xy 149.004869 40.757615) (xy 148.796481 40.946586) (xy 148.628963 41.17258)
+        (xy 148.508754 41.426913) (xy 148.468096 41.560961) (xy 141.093685 41.560961) (xy 141.079853 41.491426) (xy 140.97168 41.230273)
+        (xy 140.814637 40.995241) (xy 140.614759 40.795363) (xy 140.379727 40.63832) (xy 140.118574 40.530147) (xy 139.841335 40.475)
+        (xy 139.558665 40.475) (xy 139.281426 40.530147) (xy 139.020273 40.63832) (xy 138.785241 40.795363) (xy 138.585363 40.995241)
+        (xy 138.42832 41.230273) (xy 138.320147 41.491426) (xy 138.265 41.768665) (xy 133.515 41.768665) (xy 133.459853 41.491426)
+        (xy 133.35168 41.230273) (xy 133.194637 40.995241) (xy 132.994759 40.795363) (xy 132.759727 40.63832) (xy 132.498574 40.530147)
+        (xy 132.221335 40.475) (xy 131.938665 40.475) (xy 131.661426 40.530147) (xy 131.400273 40.63832) (xy 131.165241 40.795363)
+        (xy 130.965363 40.995241) (xy 130.81 41.227759) (xy 130.654637 40.995241) (xy 130.454759 40.795363) (xy 130.219727 40.63832)
+        (xy 129.958574 40.530147) (xy 129.681335 40.475) (xy 129.398665 40.475) (xy 129.121426 40.530147) (xy 128.860273 40.63832)
+        (xy 128.625241 40.795363) (xy 128.425363 40.995241) (xy 128.26832 41.230273) (xy 128.160147 41.491426) (xy 128.105 41.768665)
+        (xy 125.857 41.768665) (xy 125.857 38.227) (xy 153.543 38.227)
+      )
+    )
+  )
+)
diff --git a/sensor/sensor.kicad_pcb-bak b/sensor/sensor.kicad_pcb-bak
new file mode 100644 (file)
index 0000000..0cee2c8
--- /dev/null
@@ -0,0 +1,613 @@
+(kicad_pcb (version 20171130) (host pcbnew 5.1.6-c6e7f7d~87~ubuntu18.04.1)
+
+  (general
+    (thickness 1.6)
+    (drawings 4)
+    (tracks 30)
+    (zones 0)
+    (modules 5)
+    (nets 19)
+  )
+
+  (page A4)
+  (layers
+    (0 F.Cu signal)
+    (31 B.Cu signal)
+    (32 B.Adhes user)
+    (33 F.Adhes user)
+    (34 B.Paste user)
+    (35 F.Paste user)
+    (36 B.SilkS user)
+    (37 F.SilkS user)
+    (38 B.Mask user)
+    (39 F.Mask user)
+    (40 Dwgs.User user)
+    (41 Cmts.User user)
+    (42 Eco1.User user)
+    (43 Eco2.User user)
+    (44 Edge.Cuts user)
+    (45 Margin user)
+    (46 B.CrtYd user)
+    (47 F.CrtYd user)
+    (48 B.Fab user)
+    (49 F.Fab user)
+  )
+
+  (setup
+    (last_trace_width 0.25)
+    (user_trace_width 0.4)
+    (trace_clearance 0.2)
+    (zone_clearance 0.508)
+    (zone_45_only no)
+    (trace_min 0.2)
+    (via_size 0.8)
+    (via_drill 0.4)
+    (via_min_size 0.4)
+    (via_min_drill 0.3)
+    (uvia_size 0.3)
+    (uvia_drill 0.1)
+    (uvias_allowed no)
+    (uvia_min_size 0.2)
+    (uvia_min_drill 0.1)
+    (edge_width 0.05)
+    (segment_width 0.2)
+    (pcb_text_width 0.3)
+    (pcb_text_size 1.5 1.5)
+    (mod_edge_width 0.12)
+    (mod_text_size 1 1)
+    (mod_text_width 0.15)
+    (pad_size 1.524 1.524)
+    (pad_drill 0.762)
+    (pad_to_mask_clearance 0.0508)
+    (aux_axis_origin 0 0)
+    (visible_elements FFFFFF7F)
+    (pcbplotparams
+      (layerselection 0x010fc_ffffffff)
+      (usegerberextensions false)
+      (usegerberattributes true)
+      (usegerberadvancedattributes true)
+      (creategerberjobfile true)
+      (excludeedgelayer true)
+      (linewidth 0.100000)
+      (plotframeref false)
+      (viasonmask false)
+      (mode 1)
+      (useauxorigin false)
+      (hpglpennumber 1)
+      (hpglpenspeed 20)
+      (hpglpendiameter 15.000000)
+      (psnegative false)
+      (psa4output false)
+      (plotreference true)
+      (plotvalue true)
+      (plotinvisibletext false)
+      (padsonsilk false)
+      (subtractmaskfromsilk false)
+      (outputformat 1)
+      (mirror false)
+      (drillshape 1)
+      (scaleselection 1)
+      (outputdirectory ""))
+  )
+
+  (net 0 "")
+  (net 1 "Net-(D1-Pad1)")
+  (net 2 GND)
+  (net 3 D4)
+  (net 4 5V)
+  (net 5 A0)
+  (net 6 3.3V)
+  (net 7 "Net-(U1-Pad3)")
+  (net 8 D3)
+  (net 9 "Net-(U2-Pad16)")
+  (net 10 "Net-(U2-Pad15)")
+  (net 11 "Net-(U2-Pad14)")
+  (net 12 "Net-(U2-Pad13)")
+  (net 13 "Net-(U2-Pad7)")
+  (net 14 "Net-(U2-Pad6)")
+  (net 15 "Net-(U2-Pad5)")
+  (net 16 "Net-(U2-Pad4)")
+  (net 17 "Net-(U2-Pad3)")
+  (net 18 "Net-(U2-Pad1)")
+
+  (net_class Default "This is the default net class."
+    (clearance 0.2)
+    (trace_width 0.25)
+    (via_dia 0.8)
+    (via_drill 0.4)
+    (uvia_dia 0.3)
+    (uvia_drill 0.1)
+    (add_net 3.3V)
+    (add_net 5V)
+    (add_net A0)
+    (add_net D3)
+    (add_net D4)
+    (add_net GND)
+    (add_net "Net-(D1-Pad1)")
+    (add_net "Net-(U1-Pad3)")
+    (add_net "Net-(U2-Pad1)")
+    (add_net "Net-(U2-Pad13)")
+    (add_net "Net-(U2-Pad14)")
+    (add_net "Net-(U2-Pad15)")
+    (add_net "Net-(U2-Pad16)")
+    (add_net "Net-(U2-Pad3)")
+    (add_net "Net-(U2-Pad4)")
+    (add_net "Net-(U2-Pad5)")
+    (add_net "Net-(U2-Pad6)")
+    (add_net "Net-(U2-Pad7)")
+  )
+
+  (module Module:WEMOS_D1_mini_light (layer B.Cu) (tedit 5BBFB1CE) (tstamp 5FEBEC97)
+    (at 128.27 64.77)
+    (descr "16-pin module, column spacing 22.86 mm (900 mils), https://wiki.wemos.cc/products:d1:d1_mini, https://c1.staticflickr.com/1/734/31400410271_f278b087db_z.jpg")
+    (tags "ESP8266 WiFi microcontroller")
+    (path /5FEBDB80)
+    (fp_text reference U2 (at 22 -27) (layer B.SilkS)
+      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
+    )
+    (fp_text value WeMos_D1_mini (at 11.7 0) (layer B.Fab)
+      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
+    )
+    (fp_text user "No copper" (at 11.43 3.81) (layer Cmts.User)
+      (effects (font (size 1 1) (thickness 0.15)))
+    )
+    (fp_text user "KEEP OUT" (at 11.43 6.35) (layer Cmts.User)
+      (effects (font (size 1 1) (thickness 0.15)))
+    )
+    (fp_arc (start 22.23 6.21) (end 24.36 6.21) (angle 90) (layer B.SilkS) (width 0.12))
+    (fp_arc (start 0.63 6.21) (end 0.63 8.34) (angle 90) (layer B.SilkS) (width 0.12))
+    (fp_arc (start 22.23 6.21) (end 24.23 6.19) (angle 90) (layer B.Fab) (width 0.1))
+    (fp_arc (start 0.63 6.21) (end 0.63 8.21) (angle 90) (layer B.Fab) (width 0.1))
+    (fp_text user %R (at 11.43 -10) (layer B.Fab)
+      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
+    )
+    (fp_line (start 1.04 -26.12) (end 24.36 -26.12) (layer B.SilkS) (width 0.12))
+    (fp_line (start -1.5 -19.22) (end -1.5 6.21) (layer B.SilkS) (width 0.12))
+    (fp_line (start 24.36 -26.12) (end 24.36 6.21) (layer B.SilkS) (width 0.12))
+    (fp_line (start 22.24 8.34) (end 0.63 8.34) (layer B.SilkS) (width 0.12))
+    (fp_line (start 1.17 -25.99) (end 24.23 -25.99) (layer B.Fab) (width 0.1))
+    (fp_line (start 24.23 -25.99) (end 24.23 6.21) (layer B.Fab) (width 0.1))
+    (fp_line (start 22.23 8.21) (end 0.63 8.21) (layer B.Fab) (width 0.1))
+    (fp_line (start -1.37 -1) (end -1.37 -19.09) (layer B.Fab) (width 0.1))
+    (fp_line (start -1.62 8.46) (end 24.48 8.46) (layer B.CrtYd) (width 0.05))
+    (fp_line (start 24.48 8.41) (end 24.48 -26.24) (layer B.CrtYd) (width 0.05))
+    (fp_line (start 24.48 -26.24) (end -1.62 -26.24) (layer B.CrtYd) (width 0.05))
+    (fp_line (start -1.62 -26.24) (end -1.62 8.46) (layer B.CrtYd) (width 0.05))
+    (fp_poly (pts (xy -2.54 0.635) (xy -2.54 -0.635) (xy -1.905 0)) (layer B.SilkS) (width 0.15))
+    (fp_line (start -1.35 1.4) (end 24.25 1.4) (layer Dwgs.User) (width 0.1))
+    (fp_line (start 24.25 1.4) (end 24.25 8.2) (layer Dwgs.User) (width 0.1))
+    (fp_line (start 24.25 8.2) (end -1.35 8.2) (layer Dwgs.User) (width 0.1))
+    (fp_line (start -1.35 8.2) (end -1.35 1.4) (layer Dwgs.User) (width 0.1))
+    (fp_line (start -1.35 1.4) (end 5.45 8.2) (layer Dwgs.User) (width 0.1))
+    (fp_line (start 0.65 1.4) (end 7.45 8.2) (layer Dwgs.User) (width 0.1))
+    (fp_line (start 2.65 1.4) (end 9.45 8.2) (layer Dwgs.User) (width 0.1))
+    (fp_line (start 4.65 1.4) (end 11.45 8.2) (layer Dwgs.User) (width 0.1))
+    (fp_line (start 6.65 1.4) (end 13.45 8.2) (layer Dwgs.User) (width 0.1))
+    (fp_line (start 8.65 1.4) (end 15.45 8.2) (layer Dwgs.User) (width 0.1))
+    (fp_line (start 10.65 1.4) (end 17.45 8.2) (layer Dwgs.User) (width 0.1))
+    (fp_line (start 12.65 1.4) (end 19.45 8.2) (layer Dwgs.User) (width 0.1))
+    (fp_line (start 14.65 1.4) (end 21.45 8.2) (layer Dwgs.User) (width 0.1))
+    (fp_line (start 16.65 1.4) (end 23.45 8.2) (layer Dwgs.User) (width 0.1))
+    (fp_line (start 18.65 1.4) (end 24.25 7) (layer Dwgs.User) (width 0.1))
+    (fp_line (start 20.65 1.4) (end 24.25 5) (layer Dwgs.User) (width 0.1))
+    (fp_line (start 22.65 1.4) (end 24.25 3) (layer Dwgs.User) (width 0.1))
+    (fp_line (start -1.35 3.4) (end 3.45 8.2) (layer Dwgs.User) (width 0.1))
+    (fp_line (start -1.3 5.45) (end 1.45 8.2) (layer Dwgs.User) (width 0.1))
+    (fp_line (start -1.35 7.4) (end -0.55 8.2) (layer Dwgs.User) (width 0.1))
+    (fp_line (start -1.37 -19.09) (end 1.17 -19.09) (layer B.Fab) (width 0.1))
+    (fp_line (start 1.17 -19.09) (end 1.17 -25.99) (layer B.Fab) (width 0.1))
+    (fp_line (start -1.37 6.21) (end -1.37 1) (layer B.Fab) (width 0.1))
+    (fp_line (start -1.37 -1) (end -0.37 0) (layer B.Fab) (width 0.1))
+    (fp_line (start -0.37 0) (end -1.37 1) (layer B.Fab) (width 0.1))
+    (fp_line (start -1.5 -19.22) (end 1.04 -19.22) (layer B.SilkS) (width 0.12))
+    (fp_line (start 1.04 -19.22) (end 1.04 -26.12) (layer B.SilkS) (width 0.12))
+    (pad 16 thru_hole oval (at 22.86 0) (size 2 1.6) (drill 1) (layers *.Cu *.Mask)
+      (net 9 "Net-(U2-Pad16)"))
+    (pad 15 thru_hole oval (at 22.86 -2.54) (size 2 1.6) (drill 1) (layers *.Cu *.Mask)
+      (net 10 "Net-(U2-Pad15)"))
+    (pad 14 thru_hole oval (at 22.86 -5.08) (size 2 1.6) (drill 1) (layers *.Cu *.Mask)
+      (net 11 "Net-(U2-Pad14)"))
+    (pad 13 thru_hole oval (at 22.86 -7.62) (size 2 1.6) (drill 1) (layers *.Cu *.Mask)
+      (net 12 "Net-(U2-Pad13)"))
+    (pad 12 thru_hole oval (at 22.86 -10.16) (size 2 1.6) (drill 1) (layers *.Cu *.Mask)
+      (net 8 D3))
+    (pad 11 thru_hole oval (at 22.86 -12.7) (size 2 1.6) (drill 1) (layers *.Cu *.Mask)
+      (net 3 D4))
+    (pad 10 thru_hole oval (at 22.86 -15.24) (size 2 1.6) (drill 1) (layers *.Cu *.Mask)
+      (net 2 GND))
+    (pad 9 thru_hole oval (at 22.86 -17.78) (size 2 1.6) (drill 1) (layers *.Cu *.Mask)
+      (net 4 5V))
+    (pad 8 thru_hole oval (at 0 -17.78) (size 2 1.6) (drill 1) (layers *.Cu *.Mask)
+      (net 6 3.3V))
+    (pad 7 thru_hole oval (at 0 -15.24) (size 2 1.6) (drill 1) (layers *.Cu *.Mask)
+      (net 13 "Net-(U2-Pad7)"))
+    (pad 6 thru_hole oval (at 0 -12.7) (size 2 1.6) (drill 1) (layers *.Cu *.Mask)
+      (net 14 "Net-(U2-Pad6)"))
+    (pad 5 thru_hole oval (at 0 -10.16) (size 2 1.6) (drill 1) (layers *.Cu *.Mask)
+      (net 15 "Net-(U2-Pad5)"))
+    (pad 4 thru_hole oval (at 0 -7.62) (size 2 1.6) (drill 1) (layers *.Cu *.Mask)
+      (net 16 "Net-(U2-Pad4)"))
+    (pad 3 thru_hole oval (at 0 -5.08) (size 2 1.6) (drill 1) (layers *.Cu *.Mask)
+      (net 17 "Net-(U2-Pad3)"))
+    (pad 1 thru_hole rect (at 0 0) (size 2 2) (drill 1) (layers *.Cu *.Mask)
+      (net 18 "Net-(U2-Pad1)"))
+    (pad 2 thru_hole oval (at 0 -2.54) (size 2 1.6) (drill 1) (layers *.Cu *.Mask)
+      (net 5 A0))
+    (model ${KISYS3DMOD}/Module.3dshapes/WEMOS_D1_mini_light.wrl
+      (at (xyz 0 0 0))
+      (scale (xyz 1 1 1))
+      (rotate (xyz 0 0 0))
+    )
+    (model ${KISYS3DMOD}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x08_P2.54mm_Vertical.wrl
+      (offset (xyz 0 0 9.5))
+      (scale (xyz 1 1 1))
+      (rotate (xyz 0 -180 0))
+    )
+    (model ${KISYS3DMOD}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x08_P2.54mm_Vertical.wrl
+      (offset (xyz 22.86 0 9.5))
+      (scale (xyz 1 1 1))
+      (rotate (xyz 0 -180 0))
+    )
+    (model ${KISYS3DMOD}/Connector_PinSocket_2.54mm.3dshapes/PinSocket_1x08_P2.54mm_Vertical.wrl
+      (at (xyz 0 0 0))
+      (scale (xyz 1 1 1))
+      (rotate (xyz 0 0 0))
+    )
+    (model ${KISYS3DMOD}/Connector_PinSocket_2.54mm.3dshapes/PinSocket_1x08_P2.54mm_Vertical.wrl
+      (offset (xyz 22.86 0 0))
+      (scale (xyz 1 1 1))
+      (rotate (xyz 0 0 0))
+    )
+  )
+
+  (module Sensor:Aosong_DHT11_5.5x12.0_P2.54mm (layer F.Cu) (tedit 5C4B60CF) (tstamp 5FEBEC54)
+    (at 135.89 62.23 90)
+    (descr "Temperature and humidity module, http://akizukidenshi.com/download/ds/aosong/DHT11.pdf")
+    (tags "Temperature and humidity module")
+    (path /5FEBF3C3)
+    (fp_text reference U1 (at -1 -3.5 90) (layer F.SilkS)
+      (effects (font (size 1 1) (thickness 0.15)))
+    )
+    (fp_text value DHT11 (at 0 11.3 90) (layer F.Fab)
+      (effects (font (size 1 1) (thickness 0.15)))
+    )
+    (fp_text user %R (at 0 3.81 90) (layer F.Fab)
+      (effects (font (size 1 1) (thickness 0.15)))
+    )
+    (fp_line (start -1.75 -2.19) (end 2.75 -2.19) (layer F.Fab) (width 0.1))
+    (fp_line (start 2.75 -2.19) (end 2.75 9.81) (layer F.Fab) (width 0.1))
+    (fp_line (start 2.75 9.81) (end -2.75 9.81) (layer F.Fab) (width 0.1))
+    (fp_line (start -2.75 -1.19) (end -2.75 9.81) (layer F.Fab) (width 0.1))
+    (fp_line (start -2.87 -2.32) (end 2.87 -2.32) (layer F.SilkS) (width 0.12))
+    (fp_line (start 2.88 -2.32) (end 2.88 9.94) (layer F.SilkS) (width 0.12))
+    (fp_line (start 2.88 9.94) (end -2.88 9.94) (layer F.SilkS) (width 0.12))
+    (fp_line (start -2.88 9.94) (end -2.88 -2.31) (layer F.SilkS) (width 0.12))
+    (fp_line (start -3 -2.44) (end 3 -2.44) (layer F.CrtYd) (width 0.05))
+    (fp_line (start 3 -2.44) (end 3 10.06) (layer F.CrtYd) (width 0.05))
+    (fp_line (start 3 10.06) (end -3 10.06) (layer F.CrtYd) (width 0.05))
+    (fp_line (start -3 10.06) (end -3 -2.44) (layer F.CrtYd) (width 0.05))
+    (fp_line (start -2.75 -1.19) (end -1.75 -2.19) (layer F.Fab) (width 0.1))
+    (fp_line (start -3.16 -2.6) (end -3.16 -0.6) (layer F.SilkS) (width 0.12))
+    (fp_line (start -3.16 -2.6) (end -1.55 -2.6) (layer F.SilkS) (width 0.12))
+    (pad 4 thru_hole circle (at 0 7.62 90) (size 1.5 1.5) (drill 0.8) (layers *.Cu *.Mask)
+      (net 2 GND))
+    (pad 3 thru_hole circle (at 0 5.08 90) (size 1.5 1.5) (drill 0.8) (layers *.Cu *.Mask)
+      (net 7 "Net-(U1-Pad3)"))
+    (pad 2 thru_hole circle (at 0 2.54 90) (size 1.5 1.5) (drill 0.8) (layers *.Cu *.Mask)
+      (net 8 D3))
+    (pad 1 thru_hole rect (at 0 0 90) (size 1.5 1.5) (drill 0.8) (layers *.Cu *.Mask)
+      (net 6 3.3V))
+    (model ${KISYS3DMOD}/Sensor.3dshapes/Aosong_DHT11_5.5x12.0_P2.54mm.wrl
+      (at (xyz 0 0 0))
+      (scale (xyz 1 1 1))
+      (rotate (xyz 0 0 0))
+    )
+  )
+
+  (module Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P2.54mm_Vertical (layer F.Cu) (tedit 5AE5139B) (tstamp 5FEBEC3C)
+    (at 129.54 41.91)
+    (descr "Resistor, Axial_DIN0207 series, Axial, Vertical, pin pitch=2.54mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
+    (tags "Resistor Axial_DIN0207 series Axial Vertical pin pitch 2.54mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
+    (path /5FEBE6A0)
+    (fp_text reference R2 (at 1.27 -2.37) (layer F.SilkS)
+      (effects (font (size 1 1) (thickness 0.15)))
+    )
+    (fp_text value R_PHOTO (at 1.27 2.37) (layer F.Fab)
+      (effects (font (size 1 1) (thickness 0.15)))
+    )
+    (fp_text user %R (at 1.27 -2.37) (layer F.Fab)
+      (effects (font (size 1 1) (thickness 0.15)))
+    )
+    (fp_circle (center 0 0) (end 1.25 0) (layer F.Fab) (width 0.1))
+    (fp_circle (center 0 0) (end 1.37 0) (layer F.SilkS) (width 0.12))
+    (fp_line (start 0 0) (end 2.54 0) (layer F.Fab) (width 0.1))
+    (fp_line (start 1.37 0) (end 1.44 0) (layer F.SilkS) (width 0.12))
+    (fp_line (start -1.5 -1.5) (end -1.5 1.5) (layer F.CrtYd) (width 0.05))
+    (fp_line (start -1.5 1.5) (end 3.59 1.5) (layer F.CrtYd) (width 0.05))
+    (fp_line (start 3.59 1.5) (end 3.59 -1.5) (layer F.CrtYd) (width 0.05))
+    (fp_line (start 3.59 -1.5) (end -1.5 -1.5) (layer F.CrtYd) (width 0.05))
+    (pad 2 thru_hole oval (at 2.54 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
+      (net 5 A0))
+    (pad 1 thru_hole circle (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
+      (net 6 3.3V))
+    (model ${KISYS3DMOD}/Resistor_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P2.54mm_Vertical.wrl
+      (at (xyz 0 0 0))
+      (scale (xyz 1 1 1))
+      (rotate (xyz 0 0 0))
+    )
+  )
+
+  (module Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal (layer F.Cu) (tedit 5AE5139B) (tstamp 5FEBEC2D)
+    (at 139.7 41.91)
+    (descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=10.16mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
+    (tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 10.16mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
+    (path /5FEC0D85)
+    (fp_text reference R1 (at 5.08 -2.37) (layer F.SilkS)
+      (effects (font (size 1 1) (thickness 0.15)))
+    )
+    (fp_text value 10k (at 5.08 2.37) (layer F.Fab)
+      (effects (font (size 1 1) (thickness 0.15)))
+    )
+    (fp_text user %R (at 5.08 0) (layer F.Fab)
+      (effects (font (size 1 1) (thickness 0.15)))
+    )
+    (fp_line (start 1.93 -1.25) (end 1.93 1.25) (layer F.Fab) (width 0.1))
+    (fp_line (start 1.93 1.25) (end 8.23 1.25) (layer F.Fab) (width 0.1))
+    (fp_line (start 8.23 1.25) (end 8.23 -1.25) (layer F.Fab) (width 0.1))
+    (fp_line (start 8.23 -1.25) (end 1.93 -1.25) (layer F.Fab) (width 0.1))
+    (fp_line (start 0 0) (end 1.93 0) (layer F.Fab) (width 0.1))
+    (fp_line (start 10.16 0) (end 8.23 0) (layer F.Fab) (width 0.1))
+    (fp_line (start 1.81 -1.37) (end 1.81 1.37) (layer F.SilkS) (width 0.12))
+    (fp_line (start 1.81 1.37) (end 8.35 1.37) (layer F.SilkS) (width 0.12))
+    (fp_line (start 8.35 1.37) (end 8.35 -1.37) (layer F.SilkS) (width 0.12))
+    (fp_line (start 8.35 -1.37) (end 1.81 -1.37) (layer F.SilkS) (width 0.12))
+    (fp_line (start 1.04 0) (end 1.81 0) (layer F.SilkS) (width 0.12))
+    (fp_line (start 9.12 0) (end 8.35 0) (layer F.SilkS) (width 0.12))
+    (fp_line (start -1.05 -1.5) (end -1.05 1.5) (layer F.CrtYd) (width 0.05))
+    (fp_line (start -1.05 1.5) (end 11.21 1.5) (layer F.CrtYd) (width 0.05))
+    (fp_line (start 11.21 1.5) (end 11.21 -1.5) (layer F.CrtYd) (width 0.05))
+    (fp_line (start 11.21 -1.5) (end -1.05 -1.5) (layer F.CrtYd) (width 0.05))
+    (pad 2 thru_hole oval (at 10.16 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
+      (net 2 GND))
+    (pad 1 thru_hole circle (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
+      (net 5 A0))
+    (model ${KISYS3DMOD}/Resistor_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal.wrl
+      (at (xyz 0 0 0))
+      (scale (xyz 1 1 1))
+      (rotate (xyz 0 0 0))
+    )
+  )
+
+  (module LED_SMD:LED_WS2812B_PLCC4_5.0x5.0mm_P3.2mm (layer F.Cu) (tedit 5AA4B285) (tstamp 5FEBEC16)
+    (at 139.7 69.85)
+    (descr https://cdn-shop.adafruit.com/datasheets/WS2812B.pdf)
+    (tags "LED RGB NeoPixel")
+    (path /5FEBEC8A)
+    (attr smd)
+    (fp_text reference D1 (at 0 -3.5) (layer F.SilkS)
+      (effects (font (size 1 1) (thickness 0.15)))
+    )
+    (fp_text value NeoPixel_THT (at 0 4) (layer F.Fab)
+      (effects (font (size 1 1) (thickness 0.15)))
+    )
+    (fp_text user %R (at 0 0) (layer F.Fab)
+      (effects (font (size 0.8 0.8) (thickness 0.15)))
+    )
+    (fp_text user 1 (at -4.15 -1.6) (layer F.SilkS)
+      (effects (font (size 1 1) (thickness 0.15)))
+    )
+    (fp_line (start 3.45 -2.75) (end -3.45 -2.75) (layer F.CrtYd) (width 0.05))
+    (fp_line (start 3.45 2.75) (end 3.45 -2.75) (layer F.CrtYd) (width 0.05))
+    (fp_line (start -3.45 2.75) (end 3.45 2.75) (layer F.CrtYd) (width 0.05))
+    (fp_line (start -3.45 -2.75) (end -3.45 2.75) (layer F.CrtYd) (width 0.05))
+    (fp_line (start 2.5 1.5) (end 1.5 2.5) (layer F.Fab) (width 0.1))
+    (fp_line (start -2.5 -2.5) (end -2.5 2.5) (layer F.Fab) (width 0.1))
+    (fp_line (start -2.5 2.5) (end 2.5 2.5) (layer F.Fab) (width 0.1))
+    (fp_line (start 2.5 2.5) (end 2.5 -2.5) (layer F.Fab) (width 0.1))
+    (fp_line (start 2.5 -2.5) (end -2.5 -2.5) (layer F.Fab) (width 0.1))
+    (fp_line (start -3.65 -2.75) (end 3.65 -2.75) (layer F.SilkS) (width 0.12))
+    (fp_line (start -3.65 2.75) (end 3.65 2.75) (layer F.SilkS) (width 0.12))
+    (fp_line (start 3.65 2.75) (end 3.65 1.6) (layer F.SilkS) (width 0.12))
+    (fp_circle (center 0 0) (end 0 -2) (layer F.Fab) (width 0.1))
+    (pad 1 smd rect (at -2.45 -1.6) (size 1.5 1) (layers F.Cu F.Paste F.Mask)
+      (net 1 "Net-(D1-Pad1)"))
+    (pad 2 smd rect (at -2.45 1.6) (size 1.5 1) (layers F.Cu F.Paste F.Mask)
+      (net 2 GND))
+    (pad 4 smd rect (at 2.45 -1.6) (size 1.5 1) (layers F.Cu F.Paste F.Mask)
+      (net 3 D4))
+    (pad 3 smd rect (at 2.45 1.6) (size 1.5 1) (layers F.Cu F.Paste F.Mask)
+      (net 4 5V))
+    (model ${KISYS3DMOD}/LED_SMD.3dshapes/LED_WS2812B_PLCC4_5.0x5.0mm_P3.2mm.wrl
+      (at (xyz 0 0 0))
+      (scale (xyz 1 1 1))
+      (rotate (xyz 0 0 0))
+    )
+  )
+
+  (gr_line (start 124.46 74.93) (end 124.46 36.83) (layer Edge.Cuts) (width 0.15) (tstamp 5FEBF16F))
+  (gr_line (start 154.94 74.93) (end 124.46 74.93) (layer Edge.Cuts) (width 0.15))
+  (gr_line (start 154.94 36.83) (end 154.94 74.93) (layer Edge.Cuts) (width 0.15))
+  (gr_line (start 124.46 36.83) (end 154.94 36.83) (layer Edge.Cuts) (width 0.15))
+
+  (segment (start 137.25 71.45) (end 139.7 69) (width 0.25) (layer F.Cu) (net 2))
+  (segment (start 139.7 66.04) (end 143.51 62.23) (width 0.25) (layer F.Cu) (net 2))
+  (segment (start 139.7 69) (end 139.7 66.04) (width 0.25) (layer F.Cu) (net 2))
+  (segment (start 151.13 52.07) (end 152.4 52.07) (width 0.25) (layer F.Cu) (net 3))
+  (segment (start 152.4 52.07) (end 153.21999 52.88999) (width 0.25) (layer F.Cu) (net 3))
+  (segment (start 153.21999 52.88999) (end 153.21999 65.8536) (width 0.25) (layer F.Cu) (net 3))
+  (segment (start 153.21999 65.8536) (end 150.811795 68.261795) (width 0.25) (layer F.Cu) (net 3))
+  (segment (start 150.8 68.25) (end 142.15 68.25) (width 0.25) (layer F.Cu) (net 3))
+  (segment (start 150.811795 68.261795) (end 150.8 68.25) (width 0.25) (layer F.Cu) (net 3))
+  (segment (start 142.15 71.45) (end 148.26 71.45) (width 0.25) (layer F.Cu) (net 4))
+  (segment (start 148.26 71.45) (end 153.67 66.04) (width 0.25) (layer F.Cu) (net 4))
+  (segment (start 153.67 66.04) (end 153.67 48.26) (width 0.25) (layer F.Cu) (net 4))
+  (segment (start 152.4 46.99) (end 151.13 46.99) (width 0.25) (layer F.Cu) (net 4))
+  (segment (start 153.67 48.26) (end 152.4 46.99) (width 0.25) (layer F.Cu) (net 4))
+  (segment (start 132.08 41.91) (end 139.7 41.91) (width 0.25) (layer F.Cu) (net 5))
+  (segment (start 128.27 62.23) (end 130.81 62.23) (width 0.25) (layer F.Cu) (net 5))
+  (segment (start 132.08 60.96) (end 132.08 41.91) (width 0.25) (layer F.Cu) (net 5))
+  (segment (start 130.81 62.23) (end 132.08 60.96) (width 0.25) (layer F.Cu) (net 5))
+  (segment (start 129.54 45.72) (end 128.27 46.99) (width 0.25) (layer F.Cu) (net 6))
+  (segment (start 129.54 41.91) (end 129.54 45.72) (width 0.25) (layer F.Cu) (net 6))
+  (segment (start 135.89 63.5) (end 132.08 67.31) (width 0.25) (layer F.Cu) (net 6))
+  (segment (start 127 46.99) (end 128.27 46.99) (width 0.25) (layer F.Cu) (net 6))
+  (segment (start 125.73 66.04) (end 125.73 48.26) (width 0.25) (layer F.Cu) (net 6))
+  (segment (start 135.89 62.23) (end 135.89 63.5) (width 0.25) (layer F.Cu) (net 6))
+  (segment (start 132.08 67.31) (end 127 67.31) (width 0.25) (layer F.Cu) (net 6))
+  (segment (start 127 67.31) (end 125.73 66.04) (width 0.25) (layer F.Cu) (net 6))
+  (segment (start 125.73 48.26) (end 127 46.99) (width 0.25) (layer F.Cu) (net 6))
+  (segment (start 138.43 62.23) (end 138.43 57.15) (width 0.25) (layer F.Cu) (net 8))
+  (segment (start 140.97 54.61) (end 151.13 54.61) (width 0.25) (layer F.Cu) (net 8))
+  (segment (start 138.43 57.15) (end 140.97 54.61) (width 0.25) (layer F.Cu) (net 8))
+
+  (zone (net 2) (net_name GND) (layer B.Cu) (tstamp 5FEBF25C) (hatch edge 0.508)
+    (connect_pads (clearance 0.508))
+    (min_thickness 0.254)
+    (fill yes (arc_segments 32) (thermal_gap 0.508) (thermal_bridge_width 0.508))
+    (polygon
+      (pts
+        (xy 153.67 66.04) (xy 125.73 66.04) (xy 125.73 38.1) (xy 153.67 38.1)
+      )
+    )
+    (filled_polygon
+      (pts
+        (xy 153.543 65.913) (xy 152.199254 65.913) (xy 152.349608 65.789608) (xy 152.528932 65.571101) (xy 152.662182 65.321808)
+        (xy 152.744236 65.051309) (xy 152.771943 64.77) (xy 152.744236 64.488691) (xy 152.662182 64.218192) (xy 152.528932 63.968899)
+        (xy 152.349608 63.750392) (xy 152.131101 63.571068) (xy 151.998142 63.5) (xy 152.131101 63.428932) (xy 152.349608 63.249608)
+        (xy 152.528932 63.031101) (xy 152.662182 62.781808) (xy 152.744236 62.511309) (xy 152.771943 62.23) (xy 152.744236 61.948691)
+        (xy 152.662182 61.678192) (xy 152.528932 61.428899) (xy 152.349608 61.210392) (xy 152.131101 61.031068) (xy 151.998142 60.96)
+        (xy 152.131101 60.888932) (xy 152.349608 60.709608) (xy 152.528932 60.491101) (xy 152.662182 60.241808) (xy 152.744236 59.971309)
+        (xy 152.771943 59.69) (xy 152.744236 59.408691) (xy 152.662182 59.138192) (xy 152.528932 58.888899) (xy 152.349608 58.670392)
+        (xy 152.131101 58.491068) (xy 151.998142 58.42) (xy 152.131101 58.348932) (xy 152.349608 58.169608) (xy 152.528932 57.951101)
+        (xy 152.662182 57.701808) (xy 152.744236 57.431309) (xy 152.771943 57.15) (xy 152.744236 56.868691) (xy 152.662182 56.598192)
+        (xy 152.528932 56.348899) (xy 152.349608 56.130392) (xy 152.131101 55.951068) (xy 151.998142 55.88) (xy 152.131101 55.808932)
+        (xy 152.349608 55.629608) (xy 152.528932 55.411101) (xy 152.662182 55.161808) (xy 152.744236 54.891309) (xy 152.771943 54.61)
+        (xy 152.744236 54.328691) (xy 152.662182 54.058192) (xy 152.528932 53.808899) (xy 152.349608 53.590392) (xy 152.131101 53.411068)
+        (xy 151.998142 53.34) (xy 152.131101 53.268932) (xy 152.349608 53.089608) (xy 152.528932 52.871101) (xy 152.662182 52.621808)
+        (xy 152.744236 52.351309) (xy 152.771943 52.07) (xy 152.744236 51.788691) (xy 152.662182 51.518192) (xy 152.528932 51.268899)
+        (xy 152.349608 51.050392) (xy 152.131101 50.871068) (xy 152.001655 50.801878) (xy 152.019227 50.79443) (xy 152.252662 50.635673)
+        (xy 152.450639 50.434425) (xy 152.605551 50.198421) (xy 152.711444 49.93673) (xy 152.721904 49.879039) (xy 152.599915 49.657)
+        (xy 151.257 49.657) (xy 151.257 49.677) (xy 151.003 49.677) (xy 151.003 49.657) (xy 149.660085 49.657)
+        (xy 149.538096 49.879039) (xy 149.548556 49.93673) (xy 149.654449 50.198421) (xy 149.809361 50.434425) (xy 150.007338 50.635673)
+        (xy 150.240773 50.79443) (xy 150.258345 50.801878) (xy 150.128899 50.871068) (xy 149.910392 51.050392) (xy 149.731068 51.268899)
+        (xy 149.597818 51.518192) (xy 149.515764 51.788691) (xy 149.488057 52.07) (xy 149.515764 52.351309) (xy 149.597818 52.621808)
+        (xy 149.731068 52.871101) (xy 149.910392 53.089608) (xy 150.128899 53.268932) (xy 150.261858 53.34) (xy 150.128899 53.411068)
+        (xy 149.910392 53.590392) (xy 149.731068 53.808899) (xy 149.597818 54.058192) (xy 149.515764 54.328691) (xy 149.488057 54.61)
+        (xy 149.515764 54.891309) (xy 149.597818 55.161808) (xy 149.731068 55.411101) (xy 149.910392 55.629608) (xy 150.128899 55.808932)
+        (xy 150.261858 55.88) (xy 150.128899 55.951068) (xy 149.910392 56.130392) (xy 149.731068 56.348899) (xy 149.597818 56.598192)
+        (xy 149.515764 56.868691) (xy 149.488057 57.15) (xy 149.515764 57.431309) (xy 149.597818 57.701808) (xy 149.731068 57.951101)
+        (xy 149.910392 58.169608) (xy 150.128899 58.348932) (xy 150.261858 58.42) (xy 150.128899 58.491068) (xy 149.910392 58.670392)
+        (xy 149.731068 58.888899) (xy 149.597818 59.138192) (xy 149.515764 59.408691) (xy 149.488057 59.69) (xy 149.515764 59.971309)
+        (xy 149.597818 60.241808) (xy 149.731068 60.491101) (xy 149.910392 60.709608) (xy 150.128899 60.888932) (xy 150.261858 60.96)
+        (xy 150.128899 61.031068) (xy 149.910392 61.210392) (xy 149.731068 61.428899) (xy 149.597818 61.678192) (xy 149.515764 61.948691)
+        (xy 149.488057 62.23) (xy 149.515764 62.511309) (xy 149.597818 62.781808) (xy 149.731068 63.031101) (xy 149.910392 63.249608)
+        (xy 150.128899 63.428932) (xy 150.261858 63.5) (xy 150.128899 63.571068) (xy 149.910392 63.750392) (xy 149.731068 63.968899)
+        (xy 149.597818 64.218192) (xy 149.515764 64.488691) (xy 149.488057 64.77) (xy 149.515764 65.051309) (xy 149.597818 65.321808)
+        (xy 149.731068 65.571101) (xy 149.910392 65.789608) (xy 150.060746 65.913) (xy 129.890195 65.913) (xy 129.895812 65.894482)
+        (xy 129.908072 65.77) (xy 129.908072 63.77) (xy 129.895812 63.645518) (xy 129.859502 63.52582) (xy 129.800537 63.415506)
+        (xy 129.721185 63.318815) (xy 129.624494 63.239463) (xy 129.536524 63.192441) (xy 129.668932 63.031101) (xy 129.802182 62.781808)
+        (xy 129.884236 62.511309) (xy 129.911943 62.23) (xy 129.884236 61.948691) (xy 129.802182 61.678192) (xy 129.696247 61.48)
+        (xy 134.501928 61.48) (xy 134.501928 62.98) (xy 134.514188 63.104482) (xy 134.550498 63.22418) (xy 134.609463 63.334494)
+        (xy 134.688815 63.431185) (xy 134.785506 63.510537) (xy 134.89582 63.569502) (xy 135.015518 63.605812) (xy 135.14 63.618072)
+        (xy 136.64 63.618072) (xy 136.764482 63.605812) (xy 136.88418 63.569502) (xy 136.994494 63.510537) (xy 137.091185 63.431185)
+        (xy 137.170537 63.334494) (xy 137.229502 63.22418) (xy 137.265812 63.104482) (xy 137.276445 62.996517) (xy 137.354201 63.112886)
+        (xy 137.547114 63.305799) (xy 137.773957 63.457371) (xy 138.026011 63.561775) (xy 138.293589 63.615) (xy 138.566411 63.615)
+        (xy 138.833989 63.561775) (xy 139.086043 63.457371) (xy 139.312886 63.305799) (xy 139.505799 63.112886) (xy 139.657371 62.886043)
+        (xy 139.7 62.783127) (xy 139.742629 62.886043) (xy 139.894201 63.112886) (xy 140.087114 63.305799) (xy 140.313957 63.457371)
+        (xy 140.566011 63.561775) (xy 140.833589 63.615) (xy 141.106411 63.615) (xy 141.373989 63.561775) (xy 141.626043 63.457371)
+        (xy 141.852886 63.305799) (xy 141.971692 63.186993) (xy 142.732612 63.186993) (xy 142.798137 63.42586) (xy 143.045116 63.54176)
+        (xy 143.30996 63.60725) (xy 143.582492 63.619812) (xy 143.852238 63.578965) (xy 144.108832 63.486277) (xy 144.221863 63.42586)
+        (xy 144.287388 63.186993) (xy 143.51 62.409605) (xy 142.732612 63.186993) (xy 141.971692 63.186993) (xy 142.045799 63.112886)
+        (xy 142.197371 62.886043) (xy 142.238511 62.786721) (xy 142.253723 62.828832) (xy 142.31414 62.941863) (xy 142.553007 63.007388)
+        (xy 143.330395 62.23) (xy 143.689605 62.23) (xy 144.466993 63.007388) (xy 144.70586 62.941863) (xy 144.82176 62.694884)
+        (xy 144.88725 62.43004) (xy 144.899812 62.157508) (xy 144.858965 61.887762) (xy 144.766277 61.631168) (xy 144.70586 61.518137)
+        (xy 144.466993 61.452612) (xy 143.689605 62.23) (xy 143.330395 62.23) (xy 142.553007 61.452612) (xy 142.31414 61.518137)
+        (xy 142.239836 61.676477) (xy 142.197371 61.573957) (xy 142.045799 61.347114) (xy 141.971692 61.273007) (xy 142.732612 61.273007)
+        (xy 143.51 62.050395) (xy 144.287388 61.273007) (xy 144.221863 61.03414) (xy 143.974884 60.91824) (xy 143.71004 60.85275)
+        (xy 143.437508 60.840188) (xy 143.167762 60.881035) (xy 142.911168 60.973723) (xy 142.798137 61.03414) (xy 142.732612 61.273007)
+        (xy 141.971692 61.273007) (xy 141.852886 61.154201) (xy 141.626043 61.002629) (xy 141.373989 60.898225) (xy 141.106411 60.845)
+        (xy 140.833589 60.845) (xy 140.566011 60.898225) (xy 140.313957 61.002629) (xy 140.087114 61.154201) (xy 139.894201 61.347114)
+        (xy 139.742629 61.573957) (xy 139.7 61.676873) (xy 139.657371 61.573957) (xy 139.505799 61.347114) (xy 139.312886 61.154201)
+        (xy 139.086043 61.002629) (xy 138.833989 60.898225) (xy 138.566411 60.845) (xy 138.293589 60.845) (xy 138.026011 60.898225)
+        (xy 137.773957 61.002629) (xy 137.547114 61.154201) (xy 137.354201 61.347114) (xy 137.276445 61.463483) (xy 137.265812 61.355518)
+        (xy 137.229502 61.23582) (xy 137.170537 61.125506) (xy 137.091185 61.028815) (xy 136.994494 60.949463) (xy 136.88418 60.890498)
+        (xy 136.764482 60.854188) (xy 136.64 60.841928) (xy 135.14 60.841928) (xy 135.015518 60.854188) (xy 134.89582 60.890498)
+        (xy 134.785506 60.949463) (xy 134.688815 61.028815) (xy 134.609463 61.125506) (xy 134.550498 61.23582) (xy 134.514188 61.355518)
+        (xy 134.501928 61.48) (xy 129.696247 61.48) (xy 129.668932 61.428899) (xy 129.489608 61.210392) (xy 129.271101 61.031068)
+        (xy 129.138142 60.96) (xy 129.271101 60.888932) (xy 129.489608 60.709608) (xy 129.668932 60.491101) (xy 129.802182 60.241808)
+        (xy 129.884236 59.971309) (xy 129.911943 59.69) (xy 129.884236 59.408691) (xy 129.802182 59.138192) (xy 129.668932 58.888899)
+        (xy 129.489608 58.670392) (xy 129.271101 58.491068) (xy 129.138142 58.42) (xy 129.271101 58.348932) (xy 129.489608 58.169608)
+        (xy 129.668932 57.951101) (xy 129.802182 57.701808) (xy 129.884236 57.431309) (xy 129.911943 57.15) (xy 129.884236 56.868691)
+        (xy 129.802182 56.598192) (xy 129.668932 56.348899) (xy 129.489608 56.130392) (xy 129.271101 55.951068) (xy 129.138142 55.88)
+        (xy 129.271101 55.808932) (xy 129.489608 55.629608) (xy 129.668932 55.411101) (xy 129.802182 55.161808) (xy 129.884236 54.891309)
+        (xy 129.911943 54.61) (xy 129.884236 54.328691) (xy 129.802182 54.058192) (xy 129.668932 53.808899) (xy 129.489608 53.590392)
+        (xy 129.271101 53.411068) (xy 129.138142 53.34) (xy 129.271101 53.268932) (xy 129.489608 53.089608) (xy 129.668932 52.871101)
+        (xy 129.802182 52.621808) (xy 129.884236 52.351309) (xy 129.911943 52.07) (xy 129.884236 51.788691) (xy 129.802182 51.518192)
+        (xy 129.668932 51.268899) (xy 129.489608 51.050392) (xy 129.271101 50.871068) (xy 129.138142 50.8) (xy 129.271101 50.728932)
+        (xy 129.489608 50.549608) (xy 129.668932 50.331101) (xy 129.802182 50.081808) (xy 129.884236 49.811309) (xy 129.911943 49.53)
+        (xy 129.884236 49.248691) (xy 129.802182 48.978192) (xy 129.668932 48.728899) (xy 129.489608 48.510392) (xy 129.271101 48.331068)
+        (xy 129.138142 48.26) (xy 129.271101 48.188932) (xy 129.489608 48.009608) (xy 129.668932 47.791101) (xy 129.802182 47.541808)
+        (xy 129.884236 47.271309) (xy 129.911943 46.99) (xy 149.488057 46.99) (xy 149.515764 47.271309) (xy 149.597818 47.541808)
+        (xy 149.731068 47.791101) (xy 149.910392 48.009608) (xy 150.128899 48.188932) (xy 150.258345 48.258122) (xy 150.240773 48.26557)
+        (xy 150.007338 48.424327) (xy 149.809361 48.625575) (xy 149.654449 48.861579) (xy 149.548556 49.12327) (xy 149.538096 49.180961)
+        (xy 149.660085 49.403) (xy 151.003 49.403) (xy 151.003 49.383) (xy 151.257 49.383) (xy 151.257 49.403)
+        (xy 152.599915 49.403) (xy 152.721904 49.180961) (xy 152.711444 49.12327) (xy 152.605551 48.861579) (xy 152.450639 48.625575)
+        (xy 152.252662 48.424327) (xy 152.019227 48.26557) (xy 152.001655 48.258122) (xy 152.131101 48.188932) (xy 152.349608 48.009608)
+        (xy 152.528932 47.791101) (xy 152.662182 47.541808) (xy 152.744236 47.271309) (xy 152.771943 46.99) (xy 152.744236 46.708691)
+        (xy 152.662182 46.438192) (xy 152.528932 46.188899) (xy 152.349608 45.970392) (xy 152.131101 45.791068) (xy 151.881808 45.657818)
+        (xy 151.611309 45.575764) (xy 151.400492 45.555) (xy 150.859508 45.555) (xy 150.648691 45.575764) (xy 150.378192 45.657818)
+        (xy 150.128899 45.791068) (xy 149.910392 45.970392) (xy 149.731068 46.188899) (xy 149.597818 46.438192) (xy 149.515764 46.708691)
+        (xy 149.488057 46.99) (xy 129.911943 46.99) (xy 129.884236 46.708691) (xy 129.802182 46.438192) (xy 129.668932 46.188899)
+        (xy 129.489608 45.970392) (xy 129.271101 45.791068) (xy 129.021808 45.657818) (xy 128.751309 45.575764) (xy 128.540492 45.555)
+        (xy 127.999508 45.555) (xy 127.788691 45.575764) (xy 127.518192 45.657818) (xy 127.268899 45.791068) (xy 127.050392 45.970392)
+        (xy 126.871068 46.188899) (xy 126.737818 46.438192) (xy 126.655764 46.708691) (xy 126.628057 46.99) (xy 126.655764 47.271309)
+        (xy 126.737818 47.541808) (xy 126.871068 47.791101) (xy 127.050392 48.009608) (xy 127.268899 48.188932) (xy 127.401858 48.26)
+        (xy 127.268899 48.331068) (xy 127.050392 48.510392) (xy 126.871068 48.728899) (xy 126.737818 48.978192) (xy 126.655764 49.248691)
+        (xy 126.628057 49.53) (xy 126.655764 49.811309) (xy 126.737818 50.081808) (xy 126.871068 50.331101) (xy 127.050392 50.549608)
+        (xy 127.268899 50.728932) (xy 127.401858 50.8) (xy 127.268899 50.871068) (xy 127.050392 51.050392) (xy 126.871068 51.268899)
+        (xy 126.737818 51.518192) (xy 126.655764 51.788691) (xy 126.628057 52.07) (xy 126.655764 52.351309) (xy 126.737818 52.621808)
+        (xy 126.871068 52.871101) (xy 127.050392 53.089608) (xy 127.268899 53.268932) (xy 127.401858 53.34) (xy 127.268899 53.411068)
+        (xy 127.050392 53.590392) (xy 126.871068 53.808899) (xy 126.737818 54.058192) (xy 126.655764 54.328691) (xy 126.628057 54.61)
+        (xy 126.655764 54.891309) (xy 126.737818 55.161808) (xy 126.871068 55.411101) (xy 127.050392 55.629608) (xy 127.268899 55.808932)
+        (xy 127.401858 55.88) (xy 127.268899 55.951068) (xy 127.050392 56.130392) (xy 126.871068 56.348899) (xy 126.737818 56.598192)
+        (xy 126.655764 56.868691) (xy 126.628057 57.15) (xy 126.655764 57.431309) (xy 126.737818 57.701808) (xy 126.871068 57.951101)
+        (xy 127.050392 58.169608) (xy 127.268899 58.348932) (xy 127.401858 58.42) (xy 127.268899 58.491068) (xy 127.050392 58.670392)
+        (xy 126.871068 58.888899) (xy 126.737818 59.138192) (xy 126.655764 59.408691) (xy 126.628057 59.69) (xy 126.655764 59.971309)
+        (xy 126.737818 60.241808) (xy 126.871068 60.491101) (xy 127.050392 60.709608) (xy 127.268899 60.888932) (xy 127.401858 60.96)
+        (xy 127.268899 61.031068) (xy 127.050392 61.210392) (xy 126.871068 61.428899) (xy 126.737818 61.678192) (xy 126.655764 61.948691)
+        (xy 126.628057 62.23) (xy 126.655764 62.511309) (xy 126.737818 62.781808) (xy 126.871068 63.031101) (xy 127.003476 63.192441)
+        (xy 126.915506 63.239463) (xy 126.818815 63.318815) (xy 126.739463 63.415506) (xy 126.680498 63.52582) (xy 126.644188 63.645518)
+        (xy 126.631928 63.77) (xy 126.631928 65.77) (xy 126.644188 65.894482) (xy 126.649805 65.913) (xy 125.857 65.913)
+        (xy 125.857 41.768665) (xy 128.105 41.768665) (xy 128.105 42.051335) (xy 128.160147 42.328574) (xy 128.26832 42.589727)
+        (xy 128.425363 42.824759) (xy 128.625241 43.024637) (xy 128.860273 43.18168) (xy 129.121426 43.289853) (xy 129.398665 43.345)
+        (xy 129.681335 43.345) (xy 129.958574 43.289853) (xy 130.219727 43.18168) (xy 130.454759 43.024637) (xy 130.654637 42.824759)
+        (xy 130.81 42.592241) (xy 130.965363 42.824759) (xy 131.165241 43.024637) (xy 131.400273 43.18168) (xy 131.661426 43.289853)
+        (xy 131.938665 43.345) (xy 132.221335 43.345) (xy 132.498574 43.289853) (xy 132.759727 43.18168) (xy 132.994759 43.024637)
+        (xy 133.194637 42.824759) (xy 133.35168 42.589727) (xy 133.459853 42.328574) (xy 133.515 42.051335) (xy 133.515 41.768665)
+        (xy 138.265 41.768665) (xy 138.265 42.051335) (xy 138.320147 42.328574) (xy 138.42832 42.589727) (xy 138.585363 42.824759)
+        (xy 138.785241 43.024637) (xy 139.020273 43.18168) (xy 139.281426 43.289853) (xy 139.558665 43.345) (xy 139.841335 43.345)
+        (xy 140.118574 43.289853) (xy 140.379727 43.18168) (xy 140.614759 43.024637) (xy 140.814637 42.824759) (xy 140.97168 42.589727)
+        (xy 141.079853 42.328574) (xy 141.093684 42.259039) (xy 148.468096 42.259039) (xy 148.508754 42.393087) (xy 148.628963 42.64742)
+        (xy 148.796481 42.873414) (xy 149.004869 43.062385) (xy 149.246119 43.20707) (xy 149.51096 43.301909) (xy 149.733 43.180624)
+        (xy 149.733 42.037) (xy 149.987 42.037) (xy 149.987 43.180624) (xy 150.20904 43.301909) (xy 150.473881 43.20707)
+        (xy 150.715131 43.062385) (xy 150.923519 42.873414) (xy 151.091037 42.64742) (xy 151.211246 42.393087) (xy 151.251904 42.259039)
+        (xy 151.129915 42.037) (xy 149.987 42.037) (xy 149.733 42.037) (xy 148.590085 42.037) (xy 148.468096 42.259039)
+        (xy 141.093684 42.259039) (xy 141.135 42.051335) (xy 141.135 41.768665) (xy 141.093685 41.560961) (xy 148.468096 41.560961)
+        (xy 148.590085 41.783) (xy 149.733 41.783) (xy 149.733 40.639376) (xy 149.987 40.639376) (xy 149.987 41.783)
+        (xy 151.129915 41.783) (xy 151.251904 41.560961) (xy 151.211246 41.426913) (xy 151.091037 41.17258) (xy 150.923519 40.946586)
+        (xy 150.715131 40.757615) (xy 150.473881 40.61293) (xy 150.20904 40.518091) (xy 149.987 40.639376) (xy 149.733 40.639376)
+        (xy 149.51096 40.518091) (xy 149.246119 40.61293) (xy 149.004869 40.757615) (xy 148.796481 40.946586) (xy 148.628963 41.17258)
+        (xy 148.508754 41.426913) (xy 148.468096 41.560961) (xy 141.093685 41.560961) (xy 141.079853 41.491426) (xy 140.97168 41.230273)
+        (xy 140.814637 40.995241) (xy 140.614759 40.795363) (xy 140.379727 40.63832) (xy 140.118574 40.530147) (xy 139.841335 40.475)
+        (xy 139.558665 40.475) (xy 139.281426 40.530147) (xy 139.020273 40.63832) (xy 138.785241 40.795363) (xy 138.585363 40.995241)
+        (xy 138.42832 41.230273) (xy 138.320147 41.491426) (xy 138.265 41.768665) (xy 133.515 41.768665) (xy 133.459853 41.491426)
+        (xy 133.35168 41.230273) (xy 133.194637 40.995241) (xy 132.994759 40.795363) (xy 132.759727 40.63832) (xy 132.498574 40.530147)
+        (xy 132.221335 40.475) (xy 131.938665 40.475) (xy 131.661426 40.530147) (xy 131.400273 40.63832) (xy 131.165241 40.795363)
+        (xy 130.965363 40.995241) (xy 130.81 41.227759) (xy 130.654637 40.995241) (xy 130.454759 40.795363) (xy 130.219727 40.63832)
+        (xy 129.958574 40.530147) (xy 129.681335 40.475) (xy 129.398665 40.475) (xy 129.121426 40.530147) (xy 128.860273 40.63832)
+        (xy 128.625241 40.795363) (xy 128.425363 40.995241) (xy 128.26832 41.230273) (xy 128.160147 41.491426) (xy 128.105 41.768665)
+        (xy 125.857 41.768665) (xy 125.857 38.227) (xy 153.543 38.227)
+      )
+    )
+  )
+)
diff --git a/sensor/sensor.pro b/sensor/sensor.pro
new file mode 100644 (file)
index 0000000..2be1222
--- /dev/null
@@ -0,0 +1,239 @@
+update=Tue 29 Dec 2020 09:11:39 PM EST
+version=1
+last_client=kicad
+[general]
+version=1
+RootSch=
+BoardNm=
+[cvpcb]
+version=1
+NetIExt=net
+[eeschema]
+version=1
+LibDir=
+[eeschema/libraries]
+[pcbnew]
+version=1
+PageLayoutDescrFile=
+LastNetListRead=
+CopperLayerCount=2
+BoardThickness=1.6
+AllowMicroVias=0
+AllowBlindVias=0
+RequireCourtyardDefinitions=0
+ProhibitOverlappingCourtyards=1
+MinTrackWidth=0.2
+MinViaDiameter=0.4
+MinViaDrill=0.3
+MinMicroViaDiameter=0.2
+MinMicroViaDrill=0.09999999999999999
+MinHoleToHole=0.25
+TrackWidth1=0.25
+TrackWidth2=0.4
+ViaDiameter1=0.8
+ViaDrill1=0.4
+dPairWidth1=0.2
+dPairGap1=0.25
+dPairViaGap1=0.25
+SilkLineWidth=0.12
+SilkTextSizeV=1
+SilkTextSizeH=1
+SilkTextSizeThickness=0.15
+SilkTextItalic=0
+SilkTextUpright=1
+CopperLineWidth=0.2
+CopperTextSizeV=1.5
+CopperTextSizeH=1.5
+CopperTextThickness=0.3
+CopperTextItalic=0
+CopperTextUpright=1
+EdgeCutLineWidth=0.05
+CourtyardLineWidth=0.05
+OthersLineWidth=0.15
+OthersTextSizeV=1
+OthersTextSizeH=1
+OthersTextSizeThickness=0.15
+OthersTextItalic=0
+OthersTextUpright=1
+SolderMaskClearance=0.0508
+SolderMaskMinWidth=0
+SolderPasteClearance=0
+SolderPasteRatio=-0
+[pcbnew/Layer.F.Cu]
+Name=F.Cu
+Type=0
+Enabled=1
+[pcbnew/Layer.In1.Cu]
+Name=In1.Cu
+Type=0
+Enabled=0
+[pcbnew/Layer.In2.Cu]
+Name=In2.Cu
+Type=0
+Enabled=0
+[pcbnew/Layer.In3.Cu]
+Name=In3.Cu
+Type=0
+Enabled=0
+[pcbnew/Layer.In4.Cu]
+Name=In4.Cu
+Type=0
+Enabled=0
+[pcbnew/Layer.In5.Cu]
+Name=In5.Cu
+Type=0
+Enabled=0
+[pcbnew/Layer.In6.Cu]
+Name=In6.Cu
+Type=0
+Enabled=0
+[pcbnew/Layer.In7.Cu]
+Name=In7.Cu
+Type=0
+Enabled=0
+[pcbnew/Layer.In8.Cu]
+Name=In8.Cu
+Type=0
+Enabled=0
+[pcbnew/Layer.In9.Cu]
+Name=In9.Cu
+Type=0
+Enabled=0
+[pcbnew/Layer.In10.Cu]
+Name=In10.Cu
+Type=0
+Enabled=0
+[pcbnew/Layer.In11.Cu]
+Name=In11.Cu
+Type=0
+Enabled=0
+[pcbnew/Layer.In12.Cu]
+Name=In12.Cu
+Type=0
+Enabled=0
+[pcbnew/Layer.In13.Cu]
+Name=In13.Cu
+Type=0
+Enabled=0
+[pcbnew/Layer.In14.Cu]
+Name=In14.Cu
+Type=0
+Enabled=0
+[pcbnew/Layer.In15.Cu]
+Name=In15.Cu
+Type=0
+Enabled=0
+[pcbnew/Layer.In16.Cu]
+Name=In16.Cu
+Type=0
+Enabled=0
+[pcbnew/Layer.In17.Cu]
+Name=In17.Cu
+Type=0
+Enabled=0
+[pcbnew/Layer.In18.Cu]
+Name=In18.Cu
+Type=0
+Enabled=0
+[pcbnew/Layer.In19.Cu]
+Name=In19.Cu
+Type=0
+Enabled=0
+[pcbnew/Layer.In20.Cu]
+Name=In20.Cu
+Type=0
+Enabled=0
+[pcbnew/Layer.In21.Cu]
+Name=In21.Cu
+Type=0
+Enabled=0
+[pcbnew/Layer.In22.Cu]
+Name=In22.Cu
+Type=0
+Enabled=0
+[pcbnew/Layer.In23.Cu]
+Name=In23.Cu
+Type=0
+Enabled=0
+[pcbnew/Layer.In24.Cu]
+Name=In24.Cu
+Type=0
+Enabled=0
+[pcbnew/Layer.In25.Cu]
+Name=In25.Cu
+Type=0
+Enabled=0
+[pcbnew/Layer.In26.Cu]
+Name=In26.Cu
+Type=0
+Enabled=0
+[pcbnew/Layer.In27.Cu]
+Name=In27.Cu
+Type=0
+Enabled=0
+[pcbnew/Layer.In28.Cu]
+Name=In28.Cu
+Type=0
+Enabled=0
+[pcbnew/Layer.In29.Cu]
+Name=In29.Cu
+Type=0
+Enabled=0
+[pcbnew/Layer.In30.Cu]
+Name=In30.Cu
+Type=0
+Enabled=0
+[pcbnew/Layer.B.Cu]
+Name=B.Cu
+Type=0
+Enabled=1
+[pcbnew/Layer.B.Adhes]
+Enabled=1
+[pcbnew/Layer.F.Adhes]
+Enabled=1
+[pcbnew/Layer.B.Paste]
+Enabled=1
+[pcbnew/Layer.F.Paste]
+Enabled=1
+[pcbnew/Layer.B.SilkS]
+Enabled=1
+[pcbnew/Layer.F.SilkS]
+Enabled=1
+[pcbnew/Layer.B.Mask]
+Enabled=1
+[pcbnew/Layer.F.Mask]
+Enabled=1
+[pcbnew/Layer.Dwgs.User]
+Enabled=1
+[pcbnew/Layer.Cmts.User]
+Enabled=1
+[pcbnew/Layer.Eco1.User]
+Enabled=1
+[pcbnew/Layer.Eco2.User]
+Enabled=1
+[pcbnew/Layer.Edge.Cuts]
+Enabled=1
+[pcbnew/Layer.Margin]
+Enabled=1
+[pcbnew/Layer.B.CrtYd]
+Enabled=1
+[pcbnew/Layer.F.CrtYd]
+Enabled=1
+[pcbnew/Layer.B.Fab]
+Enabled=1
+[pcbnew/Layer.F.Fab]
+Enabled=1
+[pcbnew/Layer.Rescue]
+Enabled=0
+[pcbnew/Netclasses]
+[pcbnew/Netclasses/Default]
+Name=Default
+Clearance=0.2
+TrackWidth=0.25
+ViaDiameter=0.8
+ViaDrill=0.4
+uViaDiameter=0.3
+uViaDrill=0.1
+dPairWidth=0.2
+dPairGap=0.25
+dPairViaGap=0.25
diff --git a/sensor/sensor.sch b/sensor/sensor.sch
new file mode 100644 (file)
index 0000000..aa49efc
--- /dev/null
@@ -0,0 +1,136 @@
+EESchema Schematic File Version 4
+EELAYER 30 0
+EELAYER END
+$Descr A4 11693 8268
+encoding utf-8
+Sheet 1 1
+Title ""
+Date ""
+Rev ""
+Comp ""
+Comment1 ""
+Comment2 ""
+Comment3 ""
+Comment4 ""
+$EndDescr
+$Comp
+L MCU_Module:WeMos_D1_mini U2
+U 1 1 5FEBDB80
+P 1900 1700
+F 0 "U2" H 1900 811 50  0000 C CNN
+F 1 "WeMos_D1_mini" H 1900 720 50  0000 C CNN
+F 2 "Module:WEMOS_D1_mini_light" H 1900 550 50  0001 C CNN
+F 3 "https://wiki.wemos.cc/products:d1:d1_mini#documentation" H 50  550 50  0001 C CNN
+       1    1900 1700
+       1    0    0    -1  
+$EndComp
+$Comp
+L Device:R_PHOTO R2
+U 1 1 5FEBE6A0
+P 5400 1100
+F 0 "R2" V 5075 1100 50  0000 C CNN
+F 1 "R_PHOTO" V 5166 1100 50  0000 C CNN
+F 2 "Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P2.54mm_Vertical" V 5450 850 50  0001 L CNN
+F 3 "~" H 5400 1050 50  0001 C CNN
+       1    5400 1100
+       0    1    1    0   
+$EndComp
+$Comp
+L LED:NeoPixel_THT D1
+U 1 1 5FEBEC8A
+P 5450 2650
+F 0 "D1" H 5794 2696 50  0000 L CNN
+F 1 "NeoPixel_THT" H 5794 2605 50  0000 L CNN
+F 2 "LED_SMD:LED_WS2812B_PLCC4_5.0x5.0mm_P3.2mm" H 5500 2350 50  0001 L TNN
+F 3 "https://www.adafruit.com/product/1938" H 5550 2275 50  0001 L TNN
+       1    5450 2650
+       1    0    0    -1  
+$EndComp
+$Comp
+L Sensor:DHT11 U1
+U 1 1 5FEBF3C3
+P 5450 4350
+F 0 "U1" V 5069 4350 50  0000 C CNN
+F 1 "DHT11" V 5160 4350 50  0000 C CNN
+F 2 "Sensor:Aosong_DHT11_5.5x12.0_P2.54mm" H 5450 3950 50  0001 C CNN
+F 3 "http://akizukidenshi.com/download/ds/aosong/DHT11.pdf" H 5600 4600 50  0001 C CNN
+       1    5450 4350
+       0    1    1    0   
+$EndComp
+Text GLabel 5900 4350 2    50   Input ~ 0
+3.3V
+Text GLabel 5000 4350 0    50   Input ~ 0
+GND
+Text GLabel 5450 4800 3    50   Input ~ 0
+D3
+Wire Wire Line
+       5750 4350 5900 4350
+Wire Wire Line
+       5450 4650 5450 4800
+Wire Wire Line
+       5150 4350 5000 4350
+Text GLabel 2450 1600 2    50   Input ~ 0
+D3
+Text GLabel 2000 800  1    50   Input ~ 0
+3.3V
+Text GLabel 2050 2500 2    50   Input ~ 0
+GND
+Wire Wire Line
+       1900 2500 2050 2500
+Wire Wire Line
+       2300 1600 2450 1600
+Wire Wire Line
+       2000 800  2000 900 
+Text GLabel 5800 1100 2    50   Input ~ 0
+3.3V
+Text GLabel 4950 1100 0    50   Input ~ 0
+A0
+Text GLabel 5250 1500 2    50   Input ~ 0
+GND
+$Comp
+L Device:R_US R1
+U 1 1 5FEC0D85
+P 5100 1350
+F 0 "R1" H 5168 1396 50  0000 L CNN
+F 1 "10k" H 5168 1305 50  0000 L CNN
+F 2 "Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal" V 5140 1340 50  0001 C CNN
+F 3 "~" H 5100 1350 50  0001 C CNN
+       1    5100 1350
+       1    0    0    -1  
+$EndComp
+Wire Wire Line
+       5550 1100 5800 1100
+Wire Wire Line
+       5250 1100 5100 1100
+Wire Wire Line
+       5100 1200 5100 1100
+Connection ~ 5100 1100
+Wire Wire Line
+       5100 1100 4950 1100
+Wire Wire Line
+       5100 1500 5250 1500
+Text GLabel 2450 1200 2    50   Input ~ 0
+A0
+Wire Wire Line
+       2300 1200 2450 1200
+Text GLabel 5450 3100 3    50   Input ~ 0
+GND
+Text GLabel 5450 2200 1    50   Input ~ 0
+5V
+Text GLabel 5000 2650 0    50   Input ~ 0
+D4
+Wire Wire Line
+       5450 2200 5450 2350
+Wire Wire Line
+       5450 2950 5450 3100
+Wire Wire Line
+       5150 2650 5000 2650
+Text GLabel 2450 1700 2    50   Input ~ 0
+D4
+Text GLabel 1800 800  1    50   Input ~ 0
+5V
+Wire Wire Line
+       1800 800  1800 900 
+Wire Wire Line
+       2300 1700 2450 1700
+$EndSCHEMATC
diff --git a/sensor/sensor.sch-bak b/sensor/sensor.sch-bak
new file mode 100644 (file)
index 0000000..16cc687
--- /dev/null
@@ -0,0 +1,136 @@
+EESchema Schematic File Version 4
+EELAYER 30 0
+EELAYER END
+$Descr A4 11693 8268
+encoding utf-8
+Sheet 1 1
+Title ""
+Date ""
+Rev ""
+Comp ""
+Comment1 ""
+Comment2 ""
+Comment3 ""
+Comment4 ""
+$EndDescr
+$Comp
+L MCU_Module:WeMos_D1_mini U?
+U 1 1 5FEBDB80
+P 1900 1700
+F 0 "U?" H 1900 811 50  0000 C CNN
+F 1 "WeMos_D1_mini" H 1900 720 50  0000 C CNN
+F 2 "Module:WEMOS_D1_mini_light" H 1900 550 50  0001 C CNN
+F 3 "https://wiki.wemos.cc/products:d1:d1_mini#documentation" H 50  550 50  0001 C CNN
+       1    1900 1700
+       1    0    0    -1  
+$EndComp
+$Comp
+L Device:R_PHOTO R2
+U 1 1 5FEBE6A0
+P 5400 1100
+F 0 "R2" V 5075 1100 50  0000 C CNN
+F 1 "R_PHOTO" V 5166 1100 50  0000 C CNN
+F 2 "Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P2.54mm_Vertical" V 5450 850 50  0001 L CNN
+F 3 "~" H 5400 1050 50  0001 C CNN
+       1    5400 1100
+       0    1    1    0   
+$EndComp
+$Comp
+L LED:NeoPixel_THT D1
+U 1 1 5FEBEC8A
+P 5450 2650
+F 0 "D1" H 5794 2696 50  0000 L CNN
+F 1 "NeoPixel_THT" H 5794 2605 50  0000 L CNN
+F 2 "LED_SMD:LED_WS2812B_PLCC4_5.0x5.0mm_P3.2mm" H 5500 2350 50  0001 L TNN
+F 3 "https://www.adafruit.com/product/1938" H 5550 2275 50  0001 L TNN
+       1    5450 2650
+       1    0    0    -1  
+$EndComp
+$Comp
+L Sensor:DHT11 U?
+U 1 1 5FEBF3C3
+P 5450 4350
+F 0 "U?" V 5069 4350 50  0000 C CNN
+F 1 "DHT11" V 5160 4350 50  0000 C CNN
+F 2 "Sensor:Aosong_DHT11_5.5x12.0_P2.54mm" H 5450 3950 50  0001 C CNN
+F 3 "http://akizukidenshi.com/download/ds/aosong/DHT11.pdf" H 5600 4600 50  0001 C CNN
+       1    5450 4350
+       0    1    1    0   
+$EndComp
+Text GLabel 5900 4350 2    50   Input ~ 0
+3.3V
+Text GLabel 5000 4350 0    50   Input ~ 0
+GND
+Text GLabel 5450 4800 3    50   Input ~ 0
+D3
+Wire Wire Line
+       5750 4350 5900 4350
+Wire Wire Line
+       5450 4650 5450 4800
+Wire Wire Line
+       5150 4350 5000 4350
+Text GLabel 2450 1600 2    50   Input ~ 0
+D3
+Text GLabel 2000 800  1    50   Input ~ 0
+3.3V
+Text GLabel 2050 2500 2    50   Input ~ 0
+GND
+Wire Wire Line
+       1900 2500 2050 2500
+Wire Wire Line
+       2300 1600 2450 1600
+Wire Wire Line
+       2000 800  2000 900 
+Text GLabel 5800 1100 2    50   Input ~ 0
+3.3V
+Text GLabel 4950 1100 0    50   Input ~ 0
+A0
+Text GLabel 5250 1500 2    50   Input ~ 0
+GND
+$Comp
+L Device:R_US R1
+U 1 1 5FEC0D85
+P 5100 1350
+F 0 "R1" H 5168 1396 50  0000 L CNN
+F 1 "10k" H 5168 1305 50  0000 L CNN
+F 2 "Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal" V 5140 1340 50  0001 C CNN
+F 3 "~" H 5100 1350 50  0001 C CNN
+       1    5100 1350
+       1    0    0    -1  
+$EndComp
+Wire Wire Line
+       5550 1100 5800 1100
+Wire Wire Line
+       5250 1100 5100 1100
+Wire Wire Line
+       5100 1200 5100 1100
+Connection ~ 5100 1100
+Wire Wire Line
+       5100 1100 4950 1100
+Wire Wire Line
+       5100 1500 5250 1500
+Text GLabel 2450 1200 2    50   Input ~ 0
+A0
+Wire Wire Line
+       2300 1200 2450 1200
+Text GLabel 5450 3100 3    50   Input ~ 0
+GND
+Text GLabel 5450 2200 1    50   Input ~ 0
+5V
+Text GLabel 5000 2650 0    50   Input ~ 0
+D4
+Wire Wire Line
+       5450 2200 5450 2350
+Wire Wire Line
+       5450 2950 5450 3100
+Wire Wire Line
+       5150 2650 5000 2650
+Text GLabel 2450 1700 2    50   Input ~ 0
+D4
+Text GLabel 1800 800  1    50   Input ~ 0
+5V
+Wire Wire Line
+       1800 800  1800 900 
+Wire Wire Line
+       2300 1700 2450 1700
+$EndSCHEMATC