From 9c4a4796c0c8acc3f333e2c679d607e2f8e686b0 Mon Sep 17 00:00:00 2001 From: Jeffrey Wang <66625372+JeffreyWangDev@users.noreply.github.com> Date: Mon, 27 Jan 2025 11:40:55 -0500 Subject: [PATCH 1/6] Create first --- designs/weather_stations/cool-cloud/first | 1 + 1 file changed, 1 insertion(+) create mode 100644 designs/weather_stations/cool-cloud/first diff --git a/designs/weather_stations/cool-cloud/first b/designs/weather_stations/cool-cloud/first new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/designs/weather_stations/cool-cloud/first @@ -0,0 +1 @@ + From 439718d21fad0b1042122260b29cb7366f3c717b Mon Sep 17 00:00:00 2001 From: Jeffrey Wang <66625372+JeffreyWangDev@users.noreply.github.com> Date: Mon, 27 Jan 2025 11:41:33 -0500 Subject: [PATCH 2/6] Create first --- designs/weather_stations/cool-cloud/code/first | 1 + 1 file changed, 1 insertion(+) create mode 100644 designs/weather_stations/cool-cloud/code/first diff --git a/designs/weather_stations/cool-cloud/code/first b/designs/weather_stations/cool-cloud/code/first new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/designs/weather_stations/cool-cloud/code/first @@ -0,0 +1 @@ + From ebb88b77e5d905879fc415ca3720c97e517562ba Mon Sep 17 00:00:00 2001 From: Jeffrey Wang <66625372+JeffreyWangDev@users.noreply.github.com> Date: Mon, 27 Jan 2025 11:41:53 -0500 Subject: [PATCH 3/6] Add files via upload --- .../cool-cloud/code/sketch_dec14a.ino | 78 +++++++++++++++++++ 1 file changed, 78 insertions(+) create mode 100644 designs/weather_stations/cool-cloud/code/sketch_dec14a.ino diff --git a/designs/weather_stations/cool-cloud/code/sketch_dec14a.ino b/designs/weather_stations/cool-cloud/code/sketch_dec14a.ino new file mode 100644 index 0000000..6160831 --- /dev/null +++ b/designs/weather_stations/cool-cloud/code/sketch_dec14a.ino @@ -0,0 +1,78 @@ +#include // Core graphics library +#include // Hardware-specific library +#include +#include +#include +#include + +#define BLACK 0x0000 +#define BLUE 0x001F +#define RED 0xF800 +#define GREEN 0x07E0 +#define CYAN 0x07FF +#define MAGENTA 0xF81F +#define YELLOW 0xFFE0 +#define WHITE 0xFFFF + +const char* ssid = "SSID"; +const char* password = "PASSWORD"; + +String api = "https://api.open-meteo.com/v1/forecast?latitude=43.8396194&longitude=-72.714202¤t=temperature_2m,precipitation&hourly=is_day&daily=weather_code,temperature_2m_max,temperature_2m_min,precipitation_probability_max,wind_speed_10m_max&temperature_unit=fahrenheit&wind_speed_unit=mph&precipitation_unit=inch&timezone=America%2FNew_York&forecast_days=1"; + +#define TFT_CS 16 +#define TFT_RST 15 +#define TFT_DC 4 + +#define TFT_SCLK 13 +#define TFT_MOSI 11 + +Adafruit_ST7735 tft = Adafruit_ST7735(TFT_CS, TFT_DC, TFT_MOSI, TFT_SCLK, TFT_RST); + +void setup() { + Serial.begin(115200); + tft.initR(INITR_BLACKTAB); + tft.fillScreen(ST7735_BLACK); + WiFi.begin(ssid, password); + Serial.println("Connecting"); + while(WiFi.status() != WL_CONNECTED) { + delay(500); + Serial.print("."); + } + Serial.println("Connected"); +} + +void loop() { + if(WiFi.status()== WL_CONNECTED){ + HTTPClient http; + http.begin(api.c_str()); + int httpResponseCode = http.GET(); + if (httpResponseCode>0) { + Serial.print("HTTP Response code: "); + Serial.println(httpResponseCode); + String payload = http.getString(); + JSONVar wetherObj = JSON.parse(payload); + if (JSON.typeof(wetherObj) == "undefined") { + Serial.println("Parsing input failed!"); + + }else{ + tft.fillScreen(ST7735_BLACK); + tft.setCursor(0,0); + tft.setTextColor(ST7735_WHITE); + tft.setTextSize(1); + + tft.print("Temp: "); + tft.println(wetherObj["current"]["temperature_2m"]); + tft.print("Rain chance: "); + tft.println(wetherObj["current"]["precipitation"]); + } + } + else { + Serial.print("Error code: "); + Serial.println(httpResponseCode); + } + http.end(); + } else { + Serial.println("WiFi Disconnected"); + } + delay(5000); +} From 062fa4ff250f10ee09e3abb0b6be4e089b9c3173 Mon Sep 17 00:00:00 2001 From: Jeffrey Wang <66625372+JeffreyWangDev@users.noreply.github.com> Date: Mon, 27 Jan 2025 11:42:43 -0500 Subject: [PATCH 4/6] Create new --- designs/weather_stations/cool-cloud/pcb/new | 1 + 1 file changed, 1 insertion(+) create mode 100644 designs/weather_stations/cool-cloud/pcb/new diff --git a/designs/weather_stations/cool-cloud/pcb/new b/designs/weather_stations/cool-cloud/pcb/new new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/designs/weather_stations/cool-cloud/pcb/new @@ -0,0 +1 @@ + From 24ce1316431e1e8afaa26b4a94e23fc32b3ab848 Mon Sep 17 00:00:00 2001 From: Jeffrey Wang <66625372+JeffreyWangDev@users.noreply.github.com> Date: Mon, 27 Jan 2025 11:43:12 -0500 Subject: [PATCH 5/6] Add files via upload --- .../cool-cloud/pcb/asylum.kicad_pcb | 4198 +++++++++++++++++ .../cool-cloud/pcb/asylum.kicad_prl | 83 + .../cool-cloud/pcb/asylum.kicad_pro | 613 +++ .../cool-cloud/pcb/asylum.kicad_sch | 3485 ++++++++++++++ 4 files changed, 8379 insertions(+) create mode 100644 designs/weather_stations/cool-cloud/pcb/asylum.kicad_pcb create mode 100644 designs/weather_stations/cool-cloud/pcb/asylum.kicad_prl create mode 100644 designs/weather_stations/cool-cloud/pcb/asylum.kicad_pro create mode 100644 designs/weather_stations/cool-cloud/pcb/asylum.kicad_sch diff --git a/designs/weather_stations/cool-cloud/pcb/asylum.kicad_pcb b/designs/weather_stations/cool-cloud/pcb/asylum.kicad_pcb new file mode 100644 index 0000000..e96c4ca --- /dev/null +++ b/designs/weather_stations/cool-cloud/pcb/asylum.kicad_pcb @@ -0,0 +1,4198 @@ +(kicad_pcb + (version 20240108) + (generator "pcbnew") + (generator_version "8.0") + (general + (thickness 1.6) + (legacy_teardrops no) + ) + (paper "A4") + (layers + (0 "F.Cu" signal) + (31 "B.Cu" signal) + (32 "B.Adhes" user "B.Adhesive") + (33 "F.Adhes" user "F.Adhesive") + (34 "B.Paste" user) + (35 "F.Paste" user) + (36 "B.SilkS" user "B.Silkscreen") + (37 "F.SilkS" user "F.Silkscreen") + (38 "B.Mask" user) + (39 "F.Mask" user) + (40 "Dwgs.User" user "User.Drawings") + (41 "Cmts.User" user "User.Comments") + (42 "Eco1.User" user "User.Eco1") + (43 "Eco2.User" user "User.Eco2") + (44 "Edge.Cuts" user) + (45 "Margin" user) + (46 "B.CrtYd" user "B.Courtyard") + (47 "F.CrtYd" user "F.Courtyard") + (48 "B.Fab" user) + (49 "F.Fab" user) + (50 "User.1" user) + (51 "User.2" user) + (52 "User.3" user) + (53 "User.4" user) + (54 "User.5" user) + (55 "User.6" user) + (56 "User.7" user) + (57 "User.8" user) + (58 "User.9" user) + ) + (setup + (pad_to_mask_clearance 0) + (allow_soldermask_bridges_in_footprints no) + (pcbplotparams + (layerselection 0x00010fc_ffffffff) + (plot_on_all_layers_selection 0x0000000_00000000) + (disableapertmacros no) + (usegerberextensions no) + (usegerberattributes yes) + (usegerberadvancedattributes yes) + (creategerberjobfile yes) + (dashed_line_dash_ratio 12.000000) + (dashed_line_gap_ratio 3.000000) + (svgprecision 4) + (plotframeref no) + (viasonmask no) + (mode 1) + (useauxorigin no) + (hpglpennumber 1) + (hpglpenspeed 20) + (hpglpendiameter 15.000000) + (pdf_front_fp_property_popups yes) + (pdf_back_fp_property_popups yes) + (dxfpolygonmode yes) + (dxfimperialunits yes) + (dxfusepcbnewfont yes) + (psnegative no) + (psa4output no) + (plotreference yes) + (plotvalue yes) + (plotfptext yes) + (plotinvisibletext no) + (sketchpadsonfab no) + (subtractmaskfromsilk no) + (outputformat 1) + (mirror no) + (drillshape 1) + (scaleselection 1) + (outputdirectory "") + ) + ) + (net 0 "") + (net 1 "+3V3") + (net 2 "SDA") + (net 3 "RESET") + (net 4 "GND") + (net 5 "CS") + (net 6 "SCK") + (net 7 "A0") + (net 8 "unconnected-(U1-TX-Pad16)") + (net 9 "unconnected-(U1-~{RST}-Pad1)") + (net 10 "unconnected-(U1-A0-Pad2)") + (net 11 "BACKLIGHT") + (net 12 "Net-(J1-Pin_8)") + (net 13 "Net-(Button_N1-Pad1)") + (net 14 "Net-(U1-D3)") + (net 15 "TEMP_SCL") + (net 16 "TEMP_SDA") + (net 17 "LED") + (net 18 "Net-(J3-Pin_3)") + (footprint "Connector_PinHeader_2.54mm:PinHeader_1x04_P2.54mm_Vertical" + (layer "F.Cu") + (uuid "1169ec0a-4664-4fe8-a6ac-7bf13b8922cb") + (at 163 79.2) + (descr "Through hole straight pin header, 1x04, 2.54mm pitch, single row") + (tags "Through hole pin header THT 1x04 2.54mm single row") + (property "Reference" "J2" + (at 0 -2.33 0) + (layer "F.SilkS") + (uuid "fba90566-b88c-4bdb-8cbf-f0b7885571e9") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "Conn_01x04_MountingPin" + (at 0 9.95 0) + (layer "F.Fab") + (uuid "53505b00-d6df-4463-8309-78fe4dcf30b3") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_1x04_P2.54mm_Vertical" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "9cfce80f-7db6-4d87-a3e2-141c2f9e8a55") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "13951a7f-a9f1-47f8-938b-e0c3d9a7f041") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "Generic connectable mounting pin connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "b76c785a-6bd5-4ec4-8aec-e31db391b80c") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "Connector*:*_1x??-1MP*") + (path "/da70803b-b9af-4722-96e7-e7a595fcfc44") + (sheetname "Root") + (sheetfile "asylum.kicad_sch") + (attr through_hole) + (fp_line + (start -1.33 -1.33) + (end 0 -1.33) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "59d33b30-8b19-4c7a-b4cb-cf8732ae3220") + ) + (fp_line + (start -1.33 0) + (end -1.33 -1.33) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "42f07755-b7c2-4d9b-8e97-79af068114cd") + ) + (fp_line + (start -1.33 1.27) + (end -1.33 8.95) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "30d7fb0d-b32c-499b-83a6-871ad69a42c7") + ) + (fp_line + (start -1.33 1.27) + (end 1.33 1.27) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "75fd4638-04a8-4cc4-8308-1bb09ddca308") + ) + (fp_line + (start -1.33 8.95) + (end 1.33 8.95) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "c3f077de-a7c9-4d46-9755-3378e8b375aa") + ) + (fp_line + (start 1.33 1.27) + (end 1.33 8.95) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "94fab750-e3a3-454e-89f5-5171eebc3fb0") + ) + (fp_line + (start -1.8 -1.8) + (end -1.8 9.4) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "723a828d-3fb1-4305-9798-c8a41e094de2") + ) + (fp_line + (start -1.8 9.4) + (end 1.8 9.4) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "7aa5f818-9092-43e3-aa00-584c24a79d7d") + ) + (fp_line + (start 1.8 -1.8) + (end -1.8 -1.8) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "3a0767ae-50d4-41fe-81f3-862ab3c280c0") + ) + (fp_line + (start 1.8 9.4) + (end 1.8 -1.8) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "c9a23e34-6012-4eea-888e-6e7e8f823f69") + ) + (fp_line + (start -1.27 -0.635) + (end -0.635 -1.27) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "0c73e818-796c-4184-85f6-eefc0d1cd096") + ) + (fp_line + (start -1.27 8.89) + (end -1.27 -0.635) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "79906744-6e95-4a52-8498-b213aeec3ac7") + ) + (fp_line + (start -0.635 -1.27) + (end 1.27 -1.27) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "b93f9674-103e-47fc-9d27-e60b90e23958") + ) + (fp_line + (start 1.27 -1.27) + (end 1.27 8.89) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "77ec1c7d-eeac-427b-bd20-6ede8d8c71b4") + ) + (fp_line + (start 1.27 8.89) + (end -1.27 8.89) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "dfa437ec-3273-4f72-908c-387aad58db55") + ) + (fp_text user "${REFERENCE}" + (at 0 3.81 90) + (layer "F.Fab") + (uuid "ce61e28f-444b-4a88-9b95-4be0fbcff878") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (pad "1" thru_hole rect + (at 0 0) + (size 1.7 1.7) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 1 "+3V3") + (pinfunction "Pin_1") + (pintype "passive") + (uuid "0048b079-def7-4619-828b-82cf78f42e30") + ) + (pad "2" thru_hole oval + (at 0 2.54) + (size 1.7 1.7) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 4 "GND") + (pinfunction "Pin_2") + (pintype "passive") + (uuid "faba0818-c50c-460a-adf9-1b4ad14f6636") + ) + (pad "3" thru_hole oval + (at 0 5.08) + (size 1.7 1.7) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 15 "TEMP_SCL") + (pinfunction "Pin_3") + (pintype "passive") + (uuid "072e6921-47dc-41e9-81b3-16fad49b11ad") + ) + (pad "4" thru_hole oval + (at 0 7.62) + (size 1.7 1.7) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 16 "TEMP_SDA") + (pinfunction "Pin_4") + (pintype "passive") + (uuid "d861d2e7-bf5e-4818-880a-dc7305e856f5") + ) + (model "${KICAD8_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x04_P2.54mm_Vertical.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "MountingHole:MountingHole_2.7mm_M2.5" + (layer "F.Cu") + (uuid "118a3b70-59b3-45b4-8a87-fa3f0c42b347") + (at 164 74) + (descr "Mounting Hole 2.7mm, no annular, M2.5") + (tags "mounting hole 2.7mm no annular m2.5") + (property "Reference" "H1" + (at -5 0 0) + (layer "F.SilkS") + (uuid "73b6202b-ad8f-432c-a9c3-0f7a63d2c848") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "MountingHole" + (at 0 3.7 0) + (layer "F.Fab") + (uuid "875ba31a-4fa4-4d3b-86e2-3f9c94b7f9c4") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "MountingHole:MountingHole_2.7mm_M2.5" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "bc940f00-341c-4ec7-a8c5-bdf87fdbd9ba") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "0b5be0f2-2322-42b4-a4e1-cdd2fd4795cc") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "Mounting Hole without connection" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "b2a015e2-1675-41ff-806d-5661db31b39e") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "MountingHole*") + (path "/d940e126-7104-467d-84f4-36ad853ed489") + (sheetname "Root") + (sheetfile "asylum.kicad_sch") + (attr exclude_from_pos_files exclude_from_bom) + (fp_circle + (center 0 0) + (end 2.7 0) + (stroke + (width 0.15) + (type solid) + ) + (fill none) + (layer "Cmts.User") + (uuid "4b8d5304-109c-40f6-a46e-66c5b048d52a") + ) + (fp_circle + (center 0 0) + (end 2.95 0) + (stroke + (width 0.05) + (type solid) + ) + (fill none) + (layer "F.CrtYd") + (uuid "0f619072-0784-4d5c-8212-a90f1b4d89dc") + ) + (fp_text user "${REFERENCE}" + (at 0 0 0) + (layer "F.Fab") + (uuid "50a9ab06-0a9e-4a34-9777-4e9492d6ecbb") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (pad "" np_thru_hole circle + (at 0 0) + (size 2.7 2.7) + (drill 2.7) + (layers "*.Cu" "*.Mask") + (uuid "880789b8-81e1-4fa3-b505-88471b85e701") + ) + ) + (footprint "Module:WEMOS_D1_mini_light" + (layer "F.Cu") + (uuid "77c033d4-a931-4725-a010-8a11a75c210e") + (at 136.14 79.22) + (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") + (property "Reference" "U1" + (at 22 27 0) + (layer "F.SilkS") + (hide yes) + (uuid "cbaf1828-7cb4-44b7-a734-6abe7641c29d") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "WeMos_D1_mini" + (at 11.7 0 0) + (layer "F.Fab") + (uuid "77951db2-37ed-491b-bcc2-22bb452a9204") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "Module:WEMOS_D1_mini_light" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "b366bed2-4a0d-449a-a886-c58b9b80cc31") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "https://wiki.wemos.cc/products:d1:d1_mini#documentation" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "4d27383c-6831-412a-8a20-8dcf329e544a") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "32-bit microcontroller module with WiFi" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "622bddbf-55e5-4717-b490-656cbd09cc85") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "WEMOS*D1*mini*") + (path "/adcd2d74-e370-492c-8ce7-2bfeb4e607d9") + (sheetname "Root") + (sheetfile "asylum.kicad_sch") + (attr through_hole) + (fp_line + (start -1.5 19.22) + (end -1.5 -6.21) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "57ed6600-eee9-46d0-b790-efa1c9edcb60") + ) + (fp_line + (start -1.5 19.22) + (end 1.04 19.22) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "be3cbf20-e3c0-45e0-940a-b6ea7dd18c29") + ) + (fp_line + (start 1.04 19.22) + (end 1.04 26.12) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "ed5e3081-b8b4-4a59-8af6-c580c59657aa") + ) + (fp_line + (start 1.04 26.12) + (end 24.36 26.12) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "2e3dd8b3-ee3f-4874-aefe-c26f22ebcab0") + ) + (fp_line + (start 22.24 -8.34) + (end 0.63 -8.34) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "60de5cfc-ed53-45f1-9885-76846ca57663") + ) + (fp_line + (start 24.36 26.12) + (end 24.36 -6.21) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "3afb9f8f-3e05-4398-8d1c-385df15bf62b") + ) + (fp_arc + (start -1.5 -6.21) + (mid -0.876137 -7.716137) + (end 0.63 -8.34) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "98aa64c2-fa3f-4901-96ca-64d9f0d4b05b") + ) + (fp_arc + (start 22.23 -8.34) + (mid 23.736137 -7.716137) + (end 24.36 -6.21) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "5766acb9-2bb9-4e38-be4d-a276fa9f1896") + ) + (fp_poly + (pts + (xy -2.54 -0.635) (xy -2.54 0.635) (xy -1.905 0) + ) + (stroke + (width 0.15) + (type solid) + ) + (fill solid) + (layer "F.SilkS") + (uuid "b5914b68-cc94-4455-ac13-5dc5e3eeb199") + ) + (fp_line + (start -1.35 -8.2) + (end -1.35 -1.4) + (stroke + (width 0.1) + (type solid) + ) + (layer "Dwgs.User") + (uuid "9d26686d-9702-47aa-80e4-050001945d85") + ) + (fp_line + (start -1.35 -7.4) + (end -0.55 -8.2) + (stroke + (width 0.1) + (type solid) + ) + (layer "Dwgs.User") + (uuid "0e3f5d52-6fa2-4f06-8c7d-05bff7bddad0") + ) + (fp_line + (start -1.35 -3.4) + (end 3.45 -8.2) + (stroke + (width 0.1) + (type solid) + ) + (layer "Dwgs.User") + (uuid "224f0bdf-06d9-4715-a87c-c6c2425a13cc") + ) + (fp_line + (start -1.35 -1.4) + (end 5.45 -8.2) + (stroke + (width 0.1) + (type solid) + ) + (layer "Dwgs.User") + (uuid "748d7247-bb9c-41e7-8a90-e6da7b25af9f") + ) + (fp_line + (start -1.35 -1.4) + (end 24.25 -1.4) + (stroke + (width 0.1) + (type solid) + ) + (layer "Dwgs.User") + (uuid "7fff4504-ab19-4d4e-bc7b-f3f28bc38718") + ) + (fp_line + (start -1.3 -5.45) + (end 1.45 -8.2) + (stroke + (width 0.1) + (type solid) + ) + (layer "Dwgs.User") + (uuid "d024e24e-0353-4f2f-bac1-44aab6374518") + ) + (fp_line + (start 0.65 -1.4) + (end 7.45 -8.2) + (stroke + (width 0.1) + (type solid) + ) + (layer "Dwgs.User") + (uuid "a8e5734a-85a7-4539-bf94-c72a66c6b768") + ) + (fp_line + (start 2.65 -1.4) + (end 9.45 -8.2) + (stroke + (width 0.1) + (type solid) + ) + (layer "Dwgs.User") + (uuid "2babc98c-a11f-4f7c-b5ec-6544249d55e3") + ) + (fp_line + (start 4.65 -1.4) + (end 11.45 -8.2) + (stroke + (width 0.1) + (type solid) + ) + (layer "Dwgs.User") + (uuid "17a0f83d-a421-4f14-83ee-d4a9f14a437d") + ) + (fp_line + (start 6.65 -1.4) + (end 13.45 -8.2) + (stroke + (width 0.1) + (type solid) + ) + (layer "Dwgs.User") + (uuid "f0a57128-8aaf-497d-b52e-e19dbc3905eb") + ) + (fp_line + (start 8.65 -1.4) + (end 15.45 -8.2) + (stroke + (width 0.1) + (type solid) + ) + (layer "Dwgs.User") + (uuid "23a0a6bf-ed1f-4cd8-8874-abd51c62d689") + ) + (fp_line + (start 10.65 -1.4) + (end 17.45 -8.2) + (stroke + (width 0.1) + (type solid) + ) + (layer "Dwgs.User") + (uuid "5019061d-1981-4429-a29f-5fa7dd2a9cd9") + ) + (fp_line + (start 12.65 -1.4) + (end 19.45 -8.2) + (stroke + (width 0.1) + (type solid) + ) + (layer "Dwgs.User") + (uuid "76989108-7f7c-4881-a1f9-fd14af9f9381") + ) + (fp_line + (start 14.65 -1.4) + (end 21.45 -8.2) + (stroke + (width 0.1) + (type solid) + ) + (layer "Dwgs.User") + (uuid "0c1d69b7-f6e9-4076-8317-d40ab0fda628") + ) + (fp_line + (start 16.65 -1.4) + (end 23.45 -8.2) + (stroke + (width 0.1) + (type solid) + ) + (layer "Dwgs.User") + (uuid "ba1edc39-f33b-4761-9cc9-bde46c98d73e") + ) + (fp_line + (start 18.65 -1.4) + (end 24.25 -7) + (stroke + (width 0.1) + (type solid) + ) + (layer "Dwgs.User") + (uuid "6f6dfadf-4d47-4171-9d70-36f0a9b056ec") + ) + (fp_line + (start 20.65 -1.4) + (end 24.25 -5) + (stroke + (width 0.1) + (type solid) + ) + (layer "Dwgs.User") + (uuid "16da4e57-da7d-4826-b6a8-5109feb636f3") + ) + (fp_line + (start 22.65 -1.4) + (end 24.25 -3) + (stroke + (width 0.1) + (type solid) + ) + (layer "Dwgs.User") + (uuid "1d09f995-368c-4acf-b388-3ec1436bef35") + ) + (fp_line + (start 24.25 -8.2) + (end -1.35 -8.2) + (stroke + (width 0.1) + (type solid) + ) + (layer "Dwgs.User") + (uuid "6d41269d-c08b-461f-9262-53ae8a84fa16") + ) + (fp_line + (start 24.25 -1.4) + (end 24.25 -8.2) + (stroke + (width 0.1) + (type solid) + ) + (layer "Dwgs.User") + (uuid "a97ea4ea-09f1-4b90-b905-9b0ab97a5196") + ) + (fp_line + (start -1.62 -8.46) + (end 24.48 -8.46) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "1878067c-1f02-4838-9c4d-f4c152ec9ac7") + ) + (fp_line + (start -1.62 26.24) + (end -1.62 -8.46) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "f6afcff0-b4e3-4f73-832e-54e3ff9e60a0") + ) + (fp_line + (start 24.48 -8.46) + (end 24.48 26.24) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "e5460e94-64a6-469a-a144-ee9cf1e959ae") + ) + (fp_line + (start 24.48 26.24) + (end -1.62 26.24) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "53a07ee0-8b7b-470b-bf38-4ae26080f804") + ) + (fp_line + (start -1.37 -6.21) + (end -1.37 -1) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "67385e20-fc3d-40e2-aea6-24d192dd3fb1") + ) + (fp_line + (start -1.37 1) + (end -1.37 19.09) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "71648088-2245-44e0-9a0c-9446603a8c4b") + ) + (fp_line + (start -1.37 1) + (end -0.37 0) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "d8fe32bf-763b-4320-ac18-f99eee4dc820") + ) + (fp_line + (start -1.37 19.09) + (end 1.17 19.09) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "cf2e0049-4818-4e74-9285-5380af6464c7") + ) + (fp_line + (start -0.37 0) + (end -1.37 -1) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "1d3f1b8a-341b-4a5f-a7b0-a44f916a94ed") + ) + (fp_line + (start 1.17 19.09) + (end 1.17 25.99) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "0c6a5ed9-af13-456a-ba6f-4da83359b929") + ) + (fp_line + (start 1.17 25.99) + (end 24.23 25.99) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "8032e419-27a6-45c2-b3bd-1c31a36cec60") + ) + (fp_line + (start 22.23 -8.21) + (end 0.63 -8.21) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "5a14dfbd-e2db-49ea-ae72-b36a92cbbf6c") + ) + (fp_line + (start 24.23 25.99) + (end 24.23 -6.21) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "ed5a6548-3c1a-4c90-b901-a25270e31182") + ) + (fp_arc + (start -1.37 -6.21) + (mid -0.784214 -7.624214) + (end 0.63 -8.21) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "7f103730-5882-4913-af9b-2389c0825fc3") + ) + (fp_arc + (start 22.25 -8.21) + (mid 23.658356 -7.610071) + (end 24.23 -6.19) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "061890b7-e18c-4856-8bf7-0343ff41bc37") + ) + (fp_text user "No copper" + (at 11.43 -3.81 0) + (layer "Cmts.User") + (uuid "0bfa0783-06dd-4ca1-8236-19db55ba0611") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (fp_text user "KEEP OUT" + (at 11.43 -6.35 0) + (layer "Cmts.User") + (uuid "341798dc-14e6-404c-bd0e-d32b1b0f96af") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (fp_text user "${REFERENCE}" + (at 11.43 10 0) + (layer "F.Fab") + (uuid "50b8d965-c65b-4689-ab69-5fb6a9854daf") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (pad "1" thru_hole rect + (at 0 0) + (size 2 2) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 9 "unconnected-(U1-~{RST}-Pad1)") + (pinfunction "~{RST}") + (pintype "input") + (uuid "5d65ee43-0639-4ab9-af24-1c59ecd93ffd") + ) + (pad "2" thru_hole oval + (at 0 2.54) + (size 2 1.6) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 10 "unconnected-(U1-A0-Pad2)") + (pinfunction "A0") + (pintype "input") + (uuid "7226fa9d-5005-43b9-9008-6195b47e342c") + ) + (pad "3" thru_hole oval + (at 0 5.08) + (size 2 1.6) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 17 "LED") + (pinfunction "D0") + (pintype "bidirectional") + (uuid "166f769d-a743-4082-a343-a2bcd5a6dbc2") + ) + (pad "4" thru_hole oval + (at 0 7.62) + (size 2 1.6) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 6 "SCK") + (pinfunction "SCK/D5") + (pintype "bidirectional") + (uuid "132b2651-98d2-4774-841c-67872700328a") + ) + (pad "5" thru_hole oval + (at 0 10.16) + (size 2 1.6) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 11 "BACKLIGHT") + (pinfunction "MISO/D6") + (pintype "bidirectional") + (uuid "abb6bd03-8748-43b0-a750-a8907488506f") + ) + (pad "6" thru_hole oval + (at 0 12.7) + (size 2 1.6) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 2 "SDA") + (pinfunction "MOSI/D7") + (pintype "bidirectional") + (uuid "d5e016d2-45fa-46fd-b19b-423298980341") + ) + (pad "7" thru_hole oval + (at 0 15.24) + (size 2 1.6) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 5 "CS") + (pinfunction "CS/D8") + (pintype "bidirectional") + (uuid "10a0a65c-3c4d-4170-85e9-2457db8abdaf") + ) + (pad "8" thru_hole oval + (at 0 17.78) + (size 2 1.6) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 1 "+3V3") + (pinfunction "3V3") + (pintype "power_out") + (uuid "fabf09ac-43b6-4324-b345-d9bb02e3a821") + ) + (pad "9" thru_hole oval + (at 22.86 17.78) + (size 2 1.6) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 18 "Net-(J3-Pin_3)") + (pinfunction "5V") + (pintype "power_in") + (uuid "d561c303-cdbb-4460-aae5-11aec44205eb") + ) + (pad "10" thru_hole oval + (at 22.86 15.24) + (size 2 1.6) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 4 "GND") + (pinfunction "GND") + (pintype "power_in") + (uuid "7d1a7b61-c991-4d7f-b520-f76699a99dfd") + ) + (pad "11" thru_hole oval + (at 22.86 12.7) + (size 2 1.6) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 7 "A0") + (pinfunction "D4") + (pintype "bidirectional") + (uuid "d0c7d5e6-e75f-4795-a277-4ebf4d20121d") + ) + (pad "12" thru_hole oval + (at 22.86 10.16) + (size 2 1.6) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 14 "Net-(U1-D3)") + (pinfunction "D3") + (pintype "bidirectional") + (uuid "90e7427c-7174-4fe3-9777-c3a9007a9345") + ) + (pad "13" thru_hole oval + (at 22.86 7.62) + (size 2 1.6) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 16 "TEMP_SDA") + (pinfunction "SDA/D2") + (pintype "bidirectional") + (uuid "aab86f1e-e643-4069-afbc-cfd63b8cc3ad") + ) + (pad "14" thru_hole oval + (at 22.86 5.08) + (size 2 1.6) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 15 "TEMP_SCL") + (pinfunction "SCL/D1") + (pintype "bidirectional") + (uuid "a2285d32-01d7-4ed6-81ae-c356a6b87aaa") + ) + (pad "15" thru_hole oval + (at 22.86 2.54) + (size 2 1.6) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 3 "RESET") + (pinfunction "RX") + (pintype "input") + (uuid "518d936f-dfa7-43e7-9b20-b71623a6abe0") + ) + (pad "16" thru_hole oval + (at 22.86 0) + (size 2 1.6) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 8 "unconnected-(U1-TX-Pad16)") + (pinfunction "TX") + (pintype "output") + (uuid "f9b2b9d3-2561-463d-88ef-24cc87c86306") + ) + (model "${KICAD8_3DMODEL_DIR}/Module.3dshapes/wemos_d1_mini_light.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + (model "${KICAD8_3DMODEL_DIR}/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 "${KICAD8_3DMODEL_DIR}/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 "${KICAD8_3DMODEL_DIR}/Connector_PinSocket_2.54mm.3dshapes/PinSocket_1x08_P2.54mm_Vertical.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + (model "${KICAD8_3DMODEL_DIR}/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) + ) + ) + ) + (footprint "MountingHole:MountingHole_2.7mm_M2.5" + (layer "F.Cu") + (uuid "96445bb4-3782-48e0-813e-64515493da37") + (at 163 108) + (descr "Mounting Hole 2.7mm, no annular, M2.5") + (tags "mounting hole 2.7mm no annular m2.5") + (property "Reference" "H4" + (at 0 -3.7 0) + (layer "F.SilkS") + (uuid "210e0971-ad5b-4c38-8ff0-058dd1da73e3") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "MountingHole" + (at 0 3.7 0) + (layer "F.Fab") + (uuid "2de39a25-6376-4d86-8e3c-b6160dfe1ab3") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "MountingHole:MountingHole_2.7mm_M2.5" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "dd7ef303-a48f-44b2-8797-849abb32630b") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "5b25ebc0-049d-496f-90a6-4d0caba48de5") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "Mounting Hole without connection" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "1edb4ce6-826c-4e52-ae7b-ed363a90d098") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "MountingHole*") + (path "/5461c12a-ec93-4144-9029-44710357fad7") + (sheetname "Root") + (sheetfile "asylum.kicad_sch") + (attr exclude_from_pos_files exclude_from_bom) + (fp_circle + (center 0 0) + (end 2.7 0) + (stroke + (width 0.15) + (type solid) + ) + (fill none) + (layer "Cmts.User") + (uuid "b0c86ff0-3c7d-4e2d-81d3-4633807b9ed9") + ) + (fp_circle + (center 0 0) + (end 2.95 0) + (stroke + (width 0.05) + (type solid) + ) + (fill none) + (layer "F.CrtYd") + (uuid "3a1502e9-7da9-4239-aa04-61ed076471ab") + ) + (fp_text user "${REFERENCE}" + (at 0 0 0) + (layer "F.Fab") + (uuid "a85745df-72f3-482a-94a0-eaf9be0b3f75") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (pad "" np_thru_hole circle + (at 0 0) + (size 2.7 2.7) + (drill 2.7) + (layers "*.Cu" "*.Mask") + (uuid "b2690593-4e20-41ed-9f01-abce357bfcce") + ) + ) + (footprint "Capacitor_SMD:C_0201_0603Metric_Pad0.64x0.40mm_HandSolder" + (layer "F.Cu") + (uuid "cfcf664f-d63b-476a-8f5c-9ff03b877aed") + (at 153.4325 106) + (descr "Capacitor SMD 0201 (0603 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://www.vishay.com/docs/20052/crcw0201e3.pdf), generated with kicad-footprint-generator") + (tags "capacitor handsolder") + (property "Reference" "R1" + (at 2.4325 0 0) + (layer "F.SilkS") + (uuid "8517be11-bcc3-4c62-8367-300a68800d46") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "10ohm" + (at 0 1.05 0) + (layer "F.Fab") + (uuid "c1598fa9-cb79-4c42-9980-fd8d4d843563") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "Capacitor_SMD:C_0201_0603Metric_Pad0.64x0.40mm_HandSolder" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "092aca43-e009-4f3e-969b-565cad4392dd") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "1923ca25-ad76-42cf-892b-3cd9b07d576e") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "Resistor, small symbol" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "c528b5d3-46a0-4a78-b9df-59e7c949da80") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "R_*") + (path "/8dca19b5-da6f-42ef-9ed6-d1adad5752ef") + (sheetname "Root") + (sheetfile "asylum.kicad_sch") + (attr smd) + (fp_line + (start -0.88 -0.35) + (end 0.88 -0.35) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "fff3bc1d-bcd2-48b6-b479-08728ecd9925") + ) + (fp_line + (start -0.88 0.35) + (end -0.88 -0.35) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "27b175b7-6ba9-4ca9-9ae4-548abac1c892") + ) + (fp_line + (start 0.88 -0.35) + (end 0.88 0.35) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "5aff90e2-a542-4045-892d-3dea2ed78a0f") + ) + (fp_line + (start 0.88 0.35) + (end -0.88 0.35) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "3c1a9cb7-b95a-4346-9f9d-4e62d93676c9") + ) + (fp_line + (start -0.3 -0.15) + (end 0.3 -0.15) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "30de9a24-5ec3-48c1-99e0-0127633a679f") + ) + (fp_line + (start -0.3 0.15) + (end -0.3 -0.15) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "beeaa304-5910-46f9-bcef-54fc44b1a37b") + ) + (fp_line + (start 0.3 -0.15) + (end 0.3 0.15) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "a6390de2-95ca-48ed-8b58-0071ea3e7260") + ) + (fp_line + (start 0.3 0.15) + (end -0.3 0.15) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "896ceda8-305d-4184-a962-caabe890366a") + ) + (fp_text user "${REFERENCE}" + (at 0 -0.68 0) + (layer "F.Fab") + (uuid "9d7d12f2-4ad3-4320-9a8f-03a5cd6e8b49") + (effects + (font + (size 0.25 0.25) + (thickness 0.04) + ) + ) + ) + (pad "" smd roundrect + (at -0.4325 0) + (size 0.458 0.36) + (layers "F.Paste") + (roundrect_rratio 0.25) + (uuid "ec5c5c9c-c184-4c37-aed3-a812116134d2") + ) + (pad "" smd roundrect + (at 0.4325 0) + (size 0.458 0.36) + (layers "F.Paste") + (roundrect_rratio 0.25) + (uuid "cd1e9f2f-3d4f-459b-95c7-48b13297c410") + ) + (pad "1" smd roundrect + (at -0.4075 0) + (size 0.635 0.4) + (layers "F.Cu" "F.Mask") + (roundrect_rratio 0.25) + (net 11 "BACKLIGHT") + (pintype "passive") + (uuid "c6bd2c68-1c11-49f9-944f-41082538959f") + ) + (pad "2" smd roundrect + (at 0.4075 0) + (size 0.635 0.4) + (layers "F.Cu" "F.Mask") + (roundrect_rratio 0.25) + (net 12 "Net-(J1-Pin_8)") + (pintype "passive") + (uuid "233592bf-f5ef-423b-aab3-ec9b6384c8c9") + ) + (model "${KICAD8_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0201_0603Metric.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "MountingHole:MountingHole_2.7mm_M2.5" + (layer "F.Cu") + (uuid "e266a5d3-6468-4b00-a7e6-6074858b4f0b") + (at 133 108) + (descr "Mounting Hole 2.7mm, no annular, M2.5") + (tags "mounting hole 2.7mm no annular m2.5") + (property "Reference" "H3" + (at 0 -3.7 0) + (layer "F.SilkS") + (uuid "a69cbce1-af43-4237-ae07-9bec2b8cf1f2") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "MountingHole" + (at 0 3.7 0) + (layer "F.Fab") + (uuid "61c17514-595e-4700-b679-a33540651d6d") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "MountingHole:MountingHole_2.7mm_M2.5" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "bd885106-121f-4b07-8e71-9a8211b2eba1") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "8d92b586-306c-4d82-8a23-6e72abc74ab6") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "Mounting Hole without connection" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "7cd297b1-eb26-477e-886c-3eadb1579e68") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "MountingHole*") + (path "/caa042fd-63b6-4649-9145-6008199b3fe1") + (sheetname "Root") + (sheetfile "asylum.kicad_sch") + (attr exclude_from_pos_files exclude_from_bom) + (fp_circle + (center 0 0) + (end 2.7 0) + (stroke + (width 0.15) + (type solid) + ) + (fill none) + (layer "Cmts.User") + (uuid "8b2297e8-eeff-4215-997d-5d2b47f9cc49") + ) + (fp_circle + (center 0 0) + (end 2.95 0) + (stroke + (width 0.05) + (type solid) + ) + (fill none) + (layer "F.CrtYd") + (uuid "c46ab0d1-e1d8-48eb-b388-7cc95a1e2a7f") + ) + (fp_text user "${REFERENCE}" + (at 0 0 0) + (layer "F.Fab") + (uuid "afea6240-bc92-47ac-bedb-4d26aad3c15d") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (pad "" np_thru_hole circle + (at 0 0) + (size 2.7 2.7) + (drill 2.7) + (layers "*.Cu" "*.Mask") + (uuid "26b93c75-e4e3-41d6-a6b0-09da598e41e1") + ) + ) + (footprint "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical" + (layer "F.Cu") + (uuid "fb5191b0-053e-4171-8b65-e194dbf893be") + (at 163 92.475) + (descr "Through hole straight pin header, 1x03, 2.54mm pitch, single row") + (tags "Through hole pin header THT 1x03 2.54mm single row") + (property "Reference" "J3" + (at 0 -2.33 0) + (layer "F.SilkS") + (uuid "eec2b778-7995-4077-8911-d0d829faf7cf") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "Conn_01x03_MountingPin" + (at 0 7.41 0) + (layer "F.Fab") + (uuid "d588963a-ae1b-4d71-aac0-b05c3b9a7b48") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "2714225e-dccc-4003-9e43-b252f00da097") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "20795b4a-c40e-4405-a06b-72cf26845059") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "Generic connectable mounting pin connector, single row, 01x03, script generated (kicad-library-utils/schlib/autogen/connector/)" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "3d9fb961-1f6d-4d66-9ca7-05bcd3df6699") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "Connector*:*_1x??-1MP*") + (path "/d2a8b688-e895-4303-bd3e-a3d071738238") + (sheetname "Root") + (sheetfile "asylum.kicad_sch") + (attr through_hole) + (fp_line + (start -1.33 -1.33) + (end 0 -1.33) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "d7aa52ad-3373-4101-b9db-57817a699adc") + ) + (fp_line + (start -1.33 0) + (end -1.33 -1.33) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "1bb9402a-ac13-47ed-b46c-463767fa8f96") + ) + (fp_line + (start -1.33 1.27) + (end -1.33 6.41) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "553fb46b-7e02-4b5f-abbd-d8dedae47e43") + ) + (fp_line + (start -1.33 1.27) + (end 1.33 1.27) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "f2004cf3-ae60-49fa-905e-6bea4565a6c3") + ) + (fp_line + (start -1.33 6.41) + (end 1.33 6.41) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "8c3818c2-deaf-45ae-abd1-0c164b8670cd") + ) + (fp_line + (start 1.33 1.27) + (end 1.33 6.41) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "ccf860bf-5e17-4a4c-a54f-0343ffe3916c") + ) + (fp_line + (start -1.8 -1.8) + (end -1.8 6.85) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "87b7a93f-4ce0-4bca-8eba-65a0abc9981b") + ) + (fp_line + (start -1.8 6.85) + (end 1.8 6.85) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "03deda7f-cb62-46a8-8caf-d5fd5f00f879") + ) + (fp_line + (start 1.8 -1.8) + (end -1.8 -1.8) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "9d4b5b6f-cc99-4e45-9ec2-d75b01ac8501") + ) + (fp_line + (start 1.8 6.85) + (end 1.8 -1.8) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "a7af3168-483c-4d82-9f84-eb0fff57413f") + ) + (fp_line + (start -1.27 -0.635) + (end -0.635 -1.27) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "0f230eb8-184a-4241-97ab-8f26c1ef76f6") + ) + (fp_line + (start -1.27 6.35) + (end -1.27 -0.635) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "bafb3f81-36cb-43f5-9796-e852116d8b68") + ) + (fp_line + (start -0.635 -1.27) + (end 1.27 -1.27) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "7649f66c-58c7-40f5-935a-7daae8fd323c") + ) + (fp_line + (start 1.27 -1.27) + (end 1.27 6.35) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "ceaa8b50-86ed-4caf-b34c-cd803dae520a") + ) + (fp_line + (start 1.27 6.35) + (end -1.27 6.35) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "e170851b-a128-48e3-9546-bad18c3f7636") + ) + (fp_text user "${REFERENCE}" + (at 0 2.54 90) + (layer "F.Fab") + (uuid "6289d5dd-bd9a-4b65-8f40-275039bb3be7") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (pad "1" thru_hole rect + (at 0 0) + (size 1.7 1.7) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 4 "GND") + (pinfunction "Pin_1") + (pintype "passive") + (uuid "77da42da-08e5-4527-b7f8-03368494d0a2") + ) + (pad "2" thru_hole oval + (at 0 2.54) + (size 1.7 1.7) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 17 "LED") + (pinfunction "Pin_2") + (pintype "passive") + (uuid "c8bfc81b-94e8-46d1-a8bf-0d275ac497e6") + ) + (pad "3" thru_hole oval + (at 0 5.08) + (size 1.7 1.7) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 18 "Net-(J3-Pin_3)") + (pinfunction "Pin_3") + (pintype "passive") + (uuid "cc96a245-ce16-41b7-bfd7-8922ad037e3b") + ) + (model "${KICAD8_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x03_P2.54mm_Vertical.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Capacitor_SMD:C_0201_0603Metric_Pad0.64x0.40mm_HandSolder" + (layer "B.Cu") + (uuid "0161e2aa-4690-4e6a-8da0-04ef44a218ce") + (at 147.5925 87 180) + (descr "Capacitor SMD 0201 (0603 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://www.vishay.com/docs/20052/crcw0201e3.pdf), generated with kicad-footprint-generator") + (tags "capacitor handsolder") + (property "Reference" "R2" + (at 0 1.05 0) + (layer "B.SilkS") + (hide yes) + (uuid "1d8ca8f7-c581-43ca-969c-d896f4af534e") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "Value" "10ohm" + (at 0 -1.05 0) + (layer "B.Fab") + (hide yes) + (uuid "ebec5b50-fc52-40bc-8815-b0d5aa66ba2c") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "Footprint" "Capacitor_SMD:C_0201_0603Metric_Pad0.64x0.40mm_HandSolder" + (at 0 0 0) + (unlocked yes) + (layer "B.Fab") + (hide yes) + (uuid "abe6e980-7291-4ab2-94ee-72f56221af73") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "Datasheet" "" + (at 0 0 0) + (unlocked yes) + (layer "B.Fab") + (hide yes) + (uuid "16eb8578-cfbe-4b20-94a6-e255a0573a10") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "Description" "Resistor, small symbol" + (at 0 0 0) + (unlocked yes) + (layer "B.Fab") + (hide yes) + (uuid "7644b756-5baf-4b07-992e-f405095b0677") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property ki_fp_filters "R_*") + (path "/fe46a1ff-780d-497c-91fe-da5685175a12") + (sheetname "Root") + (sheetfile "asylum.kicad_sch") + (attr smd) + (fp_line + (start 0.88 0.35) + (end -0.88 0.35) + (stroke + (width 0.05) + (type solid) + ) + (layer "B.CrtYd") + (uuid "2b5e6a8d-773c-49c0-9e27-30066ddc5383") + ) + (fp_line + (start 0.88 -0.35) + (end 0.88 0.35) + (stroke + (width 0.05) + (type solid) + ) + (layer "B.CrtYd") + (uuid "48553671-0867-48be-b027-d322ed52e209") + ) + (fp_line + (start -0.88 0.35) + (end -0.88 -0.35) + (stroke + (width 0.05) + (type solid) + ) + (layer "B.CrtYd") + (uuid "066fcb35-58af-4669-97ea-e84eb475fa51") + ) + (fp_line + (start -0.88 -0.35) + (end 0.88 -0.35) + (stroke + (width 0.05) + (type solid) + ) + (layer "B.CrtYd") + (uuid "0bcb961d-92a0-45d2-bc4c-9d9abcd3bc67") + ) + (fp_line + (start 0.3 0.15) + (end -0.3 0.15) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "e1ee2eca-fe7a-435e-a1a5-be1ade344555") + ) + (fp_line + (start 0.3 -0.15) + (end 0.3 0.15) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "f5eb8b56-18ab-4e3c-95e4-1cb199220968") + ) + (fp_line + (start -0.3 0.15) + (end -0.3 -0.15) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "bb4bb801-6f17-4add-a704-083c4b10c0d3") + ) + (fp_line + (start -0.3 -0.15) + (end 0.3 -0.15) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "18cbc051-204c-4733-8d63-0dd885a6ac7c") + ) + (fp_text user "${REFERENCE}" + (at 0 0.68 0) + (layer "B.Fab") + (uuid "765f0705-8aa7-43d8-9273-8fc29eeddcdc") + (effects + (font + (size 0.25 0.25) + (thickness 0.04) + ) + (justify mirror) + ) + ) + (pad "" smd roundrect + (at -0.4325 0 180) + (size 0.458 0.36) + (layers "B.Paste") + (roundrect_rratio 0.25) + (uuid "de466810-29d1-42ce-ba2f-d3d1592a3016") + ) + (pad "" smd roundrect + (at 0.4325 0 180) + (size 0.458 0.36) + (layers "B.Paste") + (roundrect_rratio 0.25) + (uuid "4a15fc6d-f199-4949-8837-d0215098bf21") + ) + (pad "1" smd roundrect + (at -0.4075 0 180) + (size 0.635 0.4) + (layers "B.Cu" "B.Mask") + (roundrect_rratio 0.25) + (net 14 "Net-(U1-D3)") + (pintype "passive") + (uuid "493ca73a-f449-4fec-8b91-ccb30cacfc65") + ) + (pad "2" smd roundrect + (at 0.4075 0 180) + (size 0.635 0.4) + (layers "B.Cu" "B.Mask") + (roundrect_rratio 0.25) + (net 13 "Net-(Button_N1-Pad1)") + (pintype "passive") + (uuid "24ed3ca4-e192-4535-a704-712c0bd67890") + ) + (model "${KICAD8_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0201_0603Metric.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "TestPoint:TestPoint_Pad_2.5x2.5mm" + (layer "B.Cu") + (uuid "13b47054-3a75-4904-a902-b1b6e2c313d0") + (at 144.36 83 180) + (descr "SMD rectangular pad as test Point, square 2.5mm side length") + (tags "test point SMD pad rectangle square") + (property "Reference" "Button_P1" + (at 0.36 -7 0) + (layer "B.SilkS") + (uuid "7db07c8d-9917-459e-9b66-8105a9835d7f") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "Value" "TestPoint" + (at 0 -5 0) + (layer "B.Fab") + (uuid "41cbbe6d-f04a-4fd9-b7eb-3758049b1007") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "Footprint" "TestPoint:TestPoint_Pad_2.5x2.5mm" + (at 0 0 0) + (unlocked yes) + (layer "B.Fab") + (hide yes) + (uuid "07649450-bf9c-4d2f-b94c-a126d9f90320") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "Datasheet" "" + (at 0 0 0) + (unlocked yes) + (layer "B.Fab") + (hide yes) + (uuid "44cdc4f5-f76c-4e46-bdf7-278c0e008821") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "Description" "test point" + (at 0 0 0) + (unlocked yes) + (layer "B.Fab") + (hide yes) + (uuid "b51f94d1-0abd-4fd3-b61a-a125c2ff54b0") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property ki_fp_filters "Pin* Test*") + (path "/450affa4-9efd-45f3-91d6-ec0c6796064d") + (sheetname "Root") + (sheetfile "asylum.kicad_sch") + (attr exclude_from_pos_files) + (fp_line + (start 1.45 1.45) + (end -1.45 1.45) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "7a158d06-3925-4ee5-b452-62c980e42b08") + ) + (fp_line + (start 1.45 -1.45) + (end 1.45 1.45) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "c391e02d-ead8-46f2-b989-cca027131698") + ) + (fp_line + (start -1.45 1.45) + (end -1.45 -1.45) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "7f8292b5-ed84-48f9-b3a7-e5ab271aa468") + ) + (fp_line + (start -1.45 -1.45) + (end 1.45 -1.45) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "815db8e6-f81a-4b1a-8918-214fa0847d20") + ) + (fp_line + (start 1.75 1.75) + (end 1.75 -1.75) + (stroke + (width 0.05) + (type solid) + ) + (layer "B.CrtYd") + (uuid "9bb1cb3c-dfda-4153-b8e0-9f453c71ed6c") + ) + (fp_line + (start 1.75 1.75) + (end -1.75 1.75) + (stroke + (width 0.05) + (type solid) + ) + (layer "B.CrtYd") + (uuid "24a66379-30fc-4b5c-806f-f69784b404af") + ) + (fp_line + (start -1.75 -1.75) + (end 1.75 -1.75) + (stroke + (width 0.05) + (type solid) + ) + (layer "B.CrtYd") + (uuid "fdaa2f4b-a1d1-4b77-acc2-58fe3401408f") + ) + (fp_line + (start -1.75 -1.75) + (end -1.75 1.75) + (stroke + (width 0.05) + (type solid) + ) + (layer "B.CrtYd") + (uuid "cd61c746-f4d4-471e-84ab-4ea407000e9d") + ) + (pad "1" smd rect + (at 0 0 180) + (size 2.5 2.5) + (layers "B.Cu" "B.Mask") + (net 1 "+3V3") + (pinfunction "1") + (pintype "passive") + (uuid "0d7ff746-0312-428c-8113-9b63fc0eea14") + ) + ) + (footprint "TestPoint:TestPoint_Pad_2.5x2.5mm" + (layer "B.Cu") + (uuid "49e8df12-80ef-4c72-8ab6-e927964c7406") + (at 144.36 87.45 180) + (descr "SMD rectangular pad as test Point, square 2.5mm side length") + (tags "test point SMD pad rectangle square") + (property "Reference" "Button_N1" + (at 0 7.45 0) + (layer "B.SilkS") + (uuid "1f8830df-b07c-42f5-9c57-1105b0a0e2cd") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "Value" "TestPoint" + (at 0 -2.25 0) + (layer "B.Fab") + (hide yes) + (uuid "ad7f0b0e-87d2-43d1-b335-45981cd97dc7") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "Footprint" "TestPoint:TestPoint_Pad_2.5x2.5mm" + (at 0 0 0) + (unlocked yes) + (layer "B.Fab") + (hide yes) + (uuid "8f9fed6b-b317-4d7f-8c4a-79fd78931802") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "Datasheet" "" + (at 0 0 0) + (unlocked yes) + (layer "B.Fab") + (hide yes) + (uuid "2be18615-ea4a-4c15-8396-e3091f23dfbe") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "Description" "test point" + (at 0 0 0) + (unlocked yes) + (layer "B.Fab") + (hide yes) + (uuid "2021f869-5c1f-44bb-b0d2-2e4d905e7f73") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property ki_fp_filters "Pin* Test*") + (path "/a1b36521-bcbf-4fa0-b6d1-114b4b517a25") + (sheetname "Root") + (sheetfile "asylum.kicad_sch") + (attr exclude_from_pos_files) + (fp_line + (start 1.45 1.45) + (end -1.45 1.45) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "94a10562-ed6d-4810-928f-7a06d68a773e") + ) + (fp_line + (start 1.45 -1.45) + (end 1.45 1.45) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "bcba06f5-b4db-482b-ae39-1db95c7836b8") + ) + (fp_line + (start -1.45 1.45) + (end -1.45 -1.45) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "8b3ad0eb-781e-47ea-8684-9351316f3b00") + ) + (fp_line + (start -1.45 -1.45) + (end 1.45 -1.45) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "439036f2-2e85-4596-bc0e-681f0c42ee02") + ) + (fp_line + (start 1.75 1.75) + (end 1.75 -1.75) + (stroke + (width 0.05) + (type solid) + ) + (layer "B.CrtYd") + (uuid "0733191c-3d53-4b82-9198-1a7c5f3daee0") + ) + (fp_line + (start 1.75 1.75) + (end -1.75 1.75) + (stroke + (width 0.05) + (type solid) + ) + (layer "B.CrtYd") + (uuid "352a78fc-21a2-4e84-b3d5-761a34d319e0") + ) + (fp_line + (start -1.75 -1.75) + (end 1.75 -1.75) + (stroke + (width 0.05) + (type solid) + ) + (layer "B.CrtYd") + (uuid "bc048360-d409-492d-add7-81ac99109128") + ) + (fp_line + (start -1.75 -1.75) + (end -1.75 1.75) + (stroke + (width 0.05) + (type solid) + ) + (layer "B.CrtYd") + (uuid "2af88e58-f67d-4d4d-9221-a211af3c28a4") + ) + (fp_text user "${REFERENCE}" + (at 0 2.15 0) + (layer "B.Fab") + (uuid "d176b08b-4a09-432b-b372-7732b64b8120") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (pad "1" smd rect + (at 0 0 180) + (size 2.5 2.5) + (layers "B.Cu" "B.Mask") + (net 13 "Net-(Button_N1-Pad1)") + (pinfunction "1") + (pintype "passive") + (uuid "f2d2c41c-f914-4144-99d6-f780bad646f9") + ) + ) + (footprint "Connector_PinHeader_2.54mm:PinHeader_1x08_P2.54mm_Vertical" + (layer "B.Cu") + (uuid "68e8de9c-fe88-41d4-8142-85110c792854") + (at 139.46 108 -90) + (descr "Through hole straight pin header, 1x08, 2.54mm pitch, single row") + (tags "Through hole pin header THT 1x08 2.54mm single row") + (property "Reference" "J1" + (at 0 3.38 0) + (layer "B.SilkS") + (uuid "5c579684-dac4-474b-b87f-71da7082ac7c") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "Value" "Conn_01x08_MountingPin" + (at 0 -20.11 90) + (layer "B.Fab") + (uuid "85bbd5e4-1d4d-402c-bb5a-c7fba7717d8b") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_1x08_P2.54mm_Vertical" + (at 0 0 90) + (unlocked yes) + (layer "B.Fab") + (hide yes) + (uuid "27ae8a87-7c06-4469-9643-8371326e357a") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "Datasheet" "" + (at 0 0 90) + (unlocked yes) + (layer "B.Fab") + (hide yes) + (uuid "3151482f-b0c8-4ae1-9253-8626cb28ff42") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "Description" "Generic connectable mounting pin connector, single row, 01x08, script generated (kicad-library-utils/schlib/autogen/connector/)" + (at 0 0 90) + (unlocked yes) + (layer "B.Fab") + (hide yes) + (uuid "de6d19c1-e99d-4cb6-9294-966d9d18196e") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property ki_fp_filters "Connector*:*_1x??-1MP*") + (path "/dcdcbd78-2073-4c1e-9570-2aedf76f206d") + (sheetname "Root") + (sheetfile "asylum.kicad_sch") + (attr through_hole) + (fp_line + (start -1.33 1.33) + (end -1.33 0) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "4b1250b0-6513-46c5-8860-21f6a5ce2df8") + ) + (fp_line + (start 0 1.33) + (end -1.33 1.33) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "c800e37b-2c5f-47ac-acfd-67967a2e18a7") + ) + (fp_line + (start 1.33 -1.27) + (end -1.33 -1.27) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "e1ac3944-dde9-4683-8321-a44c9800a703") + ) + (fp_line + (start -1.33 -19.11) + (end -1.33 -1.27) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "fc240e7c-bb54-49ef-a424-777e0a352c14") + ) + (fp_line + (start 1.33 -19.11) + (end 1.33 -1.27) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "10898c54-af18-46ba-88d2-6d5cf070643a") + ) + (fp_line + (start 1.33 -19.11) + (end -1.33 -19.11) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "d3d9b6d8-8d8c-4d7a-b15a-66e3a562b275") + ) + (fp_line + (start -1.8 1.8) + (end 1.8 1.8) + (stroke + (width 0.05) + (type solid) + ) + (layer "B.CrtYd") + (uuid "70303fba-954f-46df-86d4-d32c00751eac") + ) + (fp_line + (start 1.8 1.8) + (end 1.8 -19.55) + (stroke + (width 0.05) + (type solid) + ) + (layer "B.CrtYd") + (uuid "89550d10-b2fc-4a9c-8a3a-3441d6c536d6") + ) + (fp_line + (start -1.8 -19.55) + (end -1.8 1.8) + (stroke + (width 0.05) + (type solid) + ) + (layer "B.CrtYd") + (uuid "c9ae4cee-c53f-4b41-978c-0faf70cb9542") + ) + (fp_line + (start 1.8 -19.55) + (end -1.8 -19.55) + (stroke + (width 0.05) + (type solid) + ) + (layer "B.CrtYd") + (uuid "bb23aaed-0b5f-4dc1-af9c-4e65107884e9") + ) + (fp_line + (start -0.635 1.27) + (end -1.27 0.635) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "9849eb33-7f69-41ff-889b-67a40dcf571f") + ) + (fp_line + (start 1.27 1.27) + (end -0.635 1.27) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "7511ab46-c1fd-4898-8ee8-d0ade819dcab") + ) + (fp_line + (start -1.27 0.635) + (end -1.27 -19.05) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "9479902e-9806-447c-b087-0662647950fc") + ) + (fp_line + (start -1.27 -19.05) + (end 1.27 -19.05) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "7484cf32-65fe-48cf-ab90-68f86951a54d") + ) + (fp_line + (start 1.27 -19.05) + (end 1.27 1.27) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "9f1d42b1-4f37-4caa-91a0-016434b4bd68") + ) + (fp_text user "${REFERENCE}" + (at 0 -8.89 0) + (layer "B.Fab") + (uuid "a9fbc106-901a-4695-88fa-a9a8f52a09ae") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (pad "1" thru_hole rect + (at 0 0 270) + (size 1.7 1.7) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 1 "+3V3") + (pinfunction "Pin_1") + (pintype "passive") + (uuid "1cb5d314-8992-425e-86a0-dd4751a34bf6") + ) + (pad "2" thru_hole oval + (at 0 -2.54 270) + (size 1.7 1.7) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 4 "GND") + (pinfunction "Pin_2") + (pintype "passive") + (uuid "a8fd8401-cc56-4ccb-bfad-1f22b4038fe6") + ) + (pad "3" thru_hole oval + (at 0 -5.08 270) + (size 1.7 1.7) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 5 "CS") + (pinfunction "Pin_3") + (pintype "passive") + (uuid "b5ce687a-5517-4dcf-b6d3-29e4a02c06f6") + ) + (pad "4" thru_hole oval + (at 0 -7.62 270) + (size 1.7 1.7) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 3 "RESET") + (pinfunction "Pin_4") + (pintype "passive") + (uuid "864116bc-f5b7-4590-9612-c3b52272ced2") + ) + (pad "5" thru_hole oval + (at 0 -10.16 270) + (size 1.7 1.7) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 7 "A0") + (pinfunction "Pin_5") + (pintype "passive") + (uuid "f8dfa5eb-cdb5-4b6c-acbe-d0f7000c88d3") + ) + (pad "6" thru_hole oval + (at 0 -12.7 270) + (size 1.7 1.7) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 2 "SDA") + (pinfunction "Pin_6") + (pintype "passive") + (uuid "55ecacba-7fb5-4d74-b6e1-09ccf4f4f038") + ) + (pad "7" thru_hole oval + (at 0 -15.24 270) + (size 1.7 1.7) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 6 "SCK") + (pinfunction "Pin_7") + (pintype "passive") + (uuid "b6ff1b90-a1da-4156-9683-ac9396fa9a2f") + ) + (pad "8" thru_hole oval + (at 0 -17.78 270) + (size 1.7 1.7) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 12 "Net-(J1-Pin_8)") + (pinfunction "Pin_8") + (pintype "passive") + (uuid "ae7d50b0-d862-4538-ab55-17a9ddae2e7a") + ) + (model "${KICAD8_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x08_P2.54mm_Vertical.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (gr_rect + (start 130 70) + (end 167 111) + (stroke + (width 0.05) + (type default) + ) + (fill none) + (layer "Edge.Cuts") + (uuid "a4435d04-cbd6-4965-8d0a-06c1f3e02838") + ) + (segment + (start 161.77 77.97) + (end 155.17 77.97) + (width 0.5) + (layer "F.Cu") + (net 1) + (uuid "2936c894-2878-4c70-b2a4-ee859f2e48f9") + ) + (segment + (start 139.46 100.32) + (end 136.14 97) + (width 0.5) + (layer "F.Cu") + (net 1) + (uuid "7ab58dd0-8917-4082-afb7-e3ba0677e303") + ) + (segment + (start 163 79.2) + (end 161.77 77.97) + (width 0.5) + (layer "F.Cu") + (net 1) + (uuid "9e0bdc0f-618e-487c-a2b9-be1d5e5bae94") + ) + (segment + (start 155.17 77.97) + (end 136.14 97) + (width 0.5) + (layer "F.Cu") + (net 1) + (uuid "c1731ab5-cb15-4cfc-84db-791dd62ebc33") + ) + (segment + (start 139.46 108) + (end 139.46 100.32) + (width 0.5) + (layer "F.Cu") + (net 1) + (uuid "dd4b8e01-c7a6-4f82-a362-75f21d23ed97") + ) + (segment + (start 144.36 83) + (end 149.39 77.97) + (width 0.5) + (layer "B.Cu") + (net 1) + (uuid "62b9eb4d-f6fd-48a9-a34b-bb834f0466ec") + ) + (segment + (start 149.39 77.97) + (end 161.77 77.97) + (width 0.5) + (layer "B.Cu") + (net 1) + (uuid "c25e4e88-43d4-44c6-9ec5-eebbcb839c82") + ) + (segment + (start 161.77 77.97) + (end 163 79.2) + (width 0.5) + (layer "B.Cu") + (net 1) + (uuid "eca50df4-aa94-4a3f-b5b3-931bf62a688d") + ) + (segment + (start 152.16 108) + (end 136.14 91.98) + (width 0.2) + (layer "B.Cu") + (net 2) + (uuid "5e24e94d-4411-4264-9694-d2a97dcbc1a5") + ) + (segment + (start 136.14 91.98) + (end 136.14 91.92) + (width 0.2) + (layer "B.Cu") + (net 2) + (uuid "cc8b138a-0619-4286-a60f-5c9eaa6a8467") + ) + (segment + (start 147.08 108) + (end 147.08 93.68) + (width 0.2) + (layer "F.Cu") + (net 3) + (uuid "15e914ee-859d-4087-a4da-1905cab2b761") + ) + (segment + (start 147.08 93.68) + (end 159 81.76) + (width 0.2) + (layer "F.Cu") + (net 3) + (uuid "da2dc8a5-a10b-49b1-af1c-bcc20a794291") + ) + (segment + (start 158.54 94.46) + (end 157 96) + (width 0.5) + (layer "F.Cu") + (net 4) + (uuid "03d61b96-8e37-4579-856d-9355c6eebf05") + ) + (segment + (start 159 94.46) + (end 158.54 94.46) + (width 0.5) + (layer "F.Cu") + (net 4) + (uuid "0cb94a56-498d-4872-bbdc-2a7e702b37e9") + ) + (segment + (start 163 81.74) + (end 161.74 83) + (width 0.5) + (layer "F.Cu") + (net 4) + (uuid "0db2a57f-bbb9-47f5-b1e4-8250445a3c44") + ) + (segment + (start 161.74 83) + (end 161 83) + (width 0.5) + (layer "F.Cu") + (net 4) + (uuid "b4e59b70-2fe0-433d-812a-f193b7e5dd1f") + ) + (segment + (start 142 108) + (end 143 107) + (width 0.5) + (layer "F.Cu") + (net 4) + (uuid "db040797-2c8b-4146-9f24-b836a7ab4ed1") + ) + (via + (at 142 95) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (free yes) + (net 4) + (uuid "4180a46e-2362-4d5a-bde7-9b0e439a54db") + ) + (via + (at 155 92) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (free yes) + (net 4) + (uuid "4b1f6828-20c8-4b9f-999f-64d9e35bdb6b") + ) + (via + (at 136 100) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (free yes) + (net 4) + (uuid "5d5e4291-ad7a-4de4-bd01-23aac7864ec0") + ) + (via + (at 140 80) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (free yes) + (net 4) + (uuid "5db33f0b-439e-465f-b519-71600d9de64c") + ) + (via + (at 155 80) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (free yes) + (net 4) + (uuid "71737310-edac-4043-b81c-fd261dc74440") + ) + (via + (at 155 84) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (free yes) + (net 4) + (uuid "758f045e-4c0e-46c5-806b-189998654188") + ) + (via + (at 155 98) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (free yes) + (net 4) + (uuid "9f6e4cbf-2059-452e-8a78-0e27aaa82204") + ) + (via + (at 155 87) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (free yes) + (net 4) + (uuid "d0098fc2-3663-492d-b37a-66787050b4e9") + ) + (segment + (start 163 81.74) + (end 161.73 80.47) + (width 0.5) + (layer "B.Cu") + (net 4) + (uuid "16e11d9f-e4ea-4ffa-84ca-def2b49e945c") + ) + (segment + (start 161.73 80.47) + (end 157.53 80.47) + (width 0.5) + (layer "B.Cu") + (net 4) + (uuid "7c21eda1-f06f-4019-8267-c19a6e7bac24") + ) + (segment + (start 157.53 80.47) + (end 157 81) + (width 0.5) + (layer "B.Cu") + (net 4) + (uuid "dd5f0f87-419d-4d2a-b5cf-269f29047c47") + ) + (segment + (start 137.46 94.46) + (end 136.14 94.46) + (width 0.2) + (layer "B.Cu") + (net 5) + (uuid "2c854eba-57f4-4001-9cf5-1083cd038264") + ) + (segment + (start 144.54 101.54) + (end 137.46 94.46) + (width 0.2) + (layer "B.Cu") + (net 5) + (uuid "482189ed-389f-4b48-a9cc-5910cb1820c5") + ) + (segment + (start 144.54 108) + (end 144.54 101.54) + (width 0.2) + (layer "B.Cu") + (net 5) + (uuid "e343b486-ad2b-46e3-9159-8569cb5c13fc") + ) + (segment + (start 154.7 105.4) + (end 136.14 86.84) + (width 0.2) + (layer "B.Cu") + (net 6) + (uuid "8a753618-53b0-4822-a60c-0f63b696c8b5") + ) + (segment + (start 154.7 108) + (end 154.7 105.4) + (width 0.2) + (layer "B.Cu") + (net 6) + (uuid "bc79f6d4-fdce-4ebb-baf4-5f3b5045dab1") + ) + (segment + (start 149.62 101.3) + (end 159 91.92) + (width 0.2) + (layer "F.Cu") + (net 7) + (uuid "9b5b0d40-fc62-4d08-be00-a3852879a81e") + ) + (segment + (start 149.62 108) + (end 149.62 101.3) + (width 0.2) + (layer "F.Cu") + (net 7) + (uuid "a73510a8-de2a-42f0-b475-111470ec1bee") + ) + (segment + (start 153.025 106) + (end 153 106) + (width 0.2) + (layer "F.Cu") + (net 11) + (uuid "0a8474b7-9038-45a3-b882-abb4dc36c474") + ) + (segment + (start 153 106) + (end 152 105) + (width 0.2) + (layer "F.Cu") + (net 11) + (uuid "204653f4-6711-443a-9e02-3013d045a430") + ) + (via + (at 152 105) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 11) + (uuid "ccc6fbb8-ab99-4dcc-a94f-91155838a202") + ) + (segment + (start 152 105) + (end 151 105) + (width 0.2) + (layer "B.Cu") + (net 11) + (uuid "54e8d5ac-b396-41fc-bc48-99ba0ad60805") + ) + (segment + (start 136.14 90.14) + (end 136.14 89.38) + (width 0.2) + (layer "B.Cu") + (net 11) + (uuid "564ae469-906e-4d95-975d-ec12bc5feb5a") + ) + (segment + (start 151 105) + (end 136.14 90.14) + (width 0.2) + (layer "B.Cu") + (net 11) + (uuid "8f12dcbe-15c0-42a2-a219-31b6ae10b804") + ) + (segment + (start 153.84 106) + (end 155.24 106) + (width 0.2) + (layer "F.Cu") + (net 12) + (uuid "01891ed6-1322-4c4d-a95f-8038784224bc") + ) + (segment + (start 157.24 108.735) + (end 157.24 108) + (width 0.2) + (layer "F.Cu") + (net 12) + (uuid "15749154-0f37-40fc-a564-a1af6d27f2f2") + ) + (segment + (start 155.24 106) + (end 157.24 108) + (width 0.2) + (layer "F.Cu") + (net 12) + (uuid "e96d93f7-d6ef-4215-85fb-a8a11eda4e62") + ) + (segment + (start 144.36 87.45) + (end 146.735 87.45) + (width 0.2) + (layer "B.Cu") + (net 13) + (uuid "78bb7728-957b-4884-a672-a76bbdf2c168") + ) + (segment + (start 146.735 87.45) + (end 147.185 87) + (width 0.2) + (layer "B.Cu") + (net 13) + (uuid "d8fb807d-1b79-472d-b88a-2a057ab49285") + ) + (segment + (start 149 87) + (end 151.38 89.38) + (width 0.2) + (layer "B.Cu") + (net 14) + (uuid "53ff9356-1e47-4427-9a14-94b69f680c36") + ) + (segment + (start 148 87) + (end 149 87) + (width 0.2) + (layer "B.Cu") + (net 14) + (uuid "ab040f32-b979-43a9-96a3-05ee36b44d1b") + ) + (segment + (start 151.38 89.38) + (end 159 89.38) + (width 0.2) + (layer "B.Cu") + (net 14) + (uuid "d2975e36-4f36-4b45-abf1-2ca1f99a71c5") + ) + (segment + (start 159.02 84.28) + (end 159 84.3) + (width 0.2) + (layer "F.Cu") + (net 15) + (uuid "7d439316-e911-470f-a1db-4d3529e9e2bc") + ) + (segment + (start 163 84.28) + (end 159.02 84.28) + (width 0.2) + (layer "F.Cu") + (net 15) + (uuid "f43b0c72-ccd8-46bb-9ac3-b715ee832ff4") + ) + (segment + (start 159 86.84) + (end 162.98 86.84) + (width 0.2) + (layer "F.Cu") + (net 16) + (uuid "109dc0f4-2cb9-438f-b41b-341525e0f27d") + ) + (segment + (start 162.98 86.84) + (end 163 86.82) + (width 0.2) + (layer "F.Cu") + (net 16) + (uuid "dbbf1de0-5633-4a05-b67d-c93d7f4dc17a") + ) + (segment + (start 145 89) + (end 140.84 89) + (width 0.2) + (layer "B.Cu") + (net 17) + (uuid "1e244ff1-1272-41e3-97cf-939d6024b48c") + ) + (segment + (start 163 95.015) + (end 162.115 95.9) + (width 0.2) + (layer "B.Cu") + (net 17) + (uuid "3db404fe-9eec-4175-af7e-5f0c1f74a29d") + ) + (segment + (start 140.84 89) + (end 136.14 84.3) + (width 0.2) + (layer "B.Cu") + (net 17) + (uuid "4c28274e-b34f-44a6-9edf-d8419b52313c") + ) + (segment + (start 162.115 95.9) + (end 151.9 95.9) + (width 0.2) + (layer "B.Cu") + (net 17) + (uuid "9c169390-d7d8-4469-b67e-5d52dd9db9b2") + ) + (segment + (start 151.9 95.9) + (end 145 89) + (width 0.2) + (layer "B.Cu") + (net 17) + (uuid "e8754d81-fb07-4f28-bdc7-0b4167b5e8e9") + ) + (segment + (start 159.555 97.555) + (end 159 97) + (width 0.2) + (layer "F.Cu") + (net 18) + (uuid "adaf5819-8d2e-4d64-a355-bbc7e6571166") + ) + (segment + (start 163 97.555) + (end 159.555 97.555) + (width 0.5) + (layer "F.Cu") + (net 18) + (uuid "b63801ee-8930-4a18-bac5-d56c85a54bab") + ) + (zone + (net 4) + (net_name "GND") + (layers "F&B.Cu") + (uuid "9814f57b-ee93-4912-b3f3-6f0e4ec26a9d") + (hatch edge 0.5) + (connect_pads + (clearance 0.5) + ) + (min_thickness 0.25) + (filled_areas_thickness no) + (fill yes + (thermal_gap 0.5) + (thermal_bridge_width 0.5) + ) + (polygon + (pts + (xy 134 110) (xy 134 78) (xy 164 78) (xy 164 110) + ) + ) + (filled_polygon + (layer "F.Cu") + (pts + (xy 134.586999 78.019685) (xy 134.632754 78.072489) (xy 134.643249 78.137252) (xy 134.6395 78.172127) + (xy 134.6395 78.172134) (xy 134.6395 78.172135) (xy 134.6395 80.26787) (xy 134.639501 80.267876) + (xy 134.645908 80.327483) (xy 134.696202 80.462328) (xy 134.696206 80.462335) (xy 134.782452 80.577544) + (xy 134.782455 80.577547) (xy 134.897664 80.663793) (xy 134.897673 80.663798) (xy 134.934914 80.677688) + (xy 134.990848 80.719559) (xy 135.015266 80.785023) (xy 135.000415 80.853296) (xy 134.979265 80.88155) + (xy 134.948027 80.912787) (xy 134.827715 81.078386) (xy 134.734781 81.260776) (xy 134.671522 81.455465) + (xy 134.6395 81.657648) (xy 134.6395 81.862351) (xy 134.671522 82.064534) (xy 134.734781 82.259223) + (xy 134.827715 82.441613) (xy 134.948028 82.607213) (xy 135.092786 82.751971) (xy 135.247749 82.864556) + (xy 135.25839 82.872287) (xy 135.34984 82.918883) (xy 135.35108 82.919515) (xy 135.401876 82.96749) + (xy 135.418671 83.035311) (xy 135.396134 83.101446) (xy 135.35108 83.140485) (xy 135.258386 83.187715) + (xy 135.092786 83.308028) (xy 134.948028 83.452786) (xy 134.827715 83.618386) (xy 134.734781 83.800776) + (xy 134.671522 83.995465) (xy 134.6395 84.197648) (xy 134.6395 84.402351) (xy 134.671522 84.604534) + (xy 134.734781 84.799223) (xy 134.78481 84.897409) (xy 134.815596 84.95783) (xy 134.827715 84.981613) + (xy 134.948028 85.147213) (xy 135.092786 85.291971) (xy 135.247749 85.404556) (xy 135.25839 85.412287) + (xy 135.329315 85.448425) (xy 135.35108 85.459515) (xy 135.401876 85.50749) (xy 135.418671 85.575311) + (xy 135.396134 85.641446) (xy 135.35108 85.680485) (xy 135.258386 85.727715) (xy 135.092786 85.848028) + (xy 134.948028 85.992786) (xy 134.827715 86.158386) (xy 134.734781 86.340776) (xy 134.671522 86.535465) + (xy 134.6395 86.737648) (xy 134.6395 86.942351) (xy 134.671522 87.144534) (xy 134.734781 87.339223) + (xy 134.786385 87.4405) (xy 134.815596 87.49783) (xy 134.827715 87.521613) (xy 134.948028 87.687213) + (xy 135.092786 87.831971) (xy 135.247749 87.944556) (xy 135.25839 87.952287) (xy 135.340319 87.994032) + (xy 135.35108 87.999515) (xy 135.401876 88.04749) (xy 135.418671 88.115311) (xy 135.396134 88.181446) + (xy 135.35108 88.220485) (xy 135.258386 88.267715) (xy 135.092786 88.388028) (xy 134.948028 88.532786) + (xy 134.827715 88.698386) (xy 134.734781 88.880776) (xy 134.671522 89.075465) (xy 134.6395 89.277648) + (xy 134.6395 89.482351) (xy 134.671522 89.684534) (xy 134.734781 89.879223) (xy 134.827715 90.061613) + (xy 134.948028 90.227213) (xy 135.092786 90.371971) (xy 135.247749 90.484556) (xy 135.25839 90.492287) + (xy 135.34984 90.538883) (xy 135.35108 90.539515) (xy 135.401876 90.58749) (xy 135.418671 90.655311) + (xy 135.396134 90.721446) (xy 135.35108 90.760485) (xy 135.258386 90.807715) (xy 135.092786 90.928028) + (xy 134.948028 91.072786) (xy 134.827715 91.238386) (xy 134.734781 91.420776) (xy 134.671522 91.615465) + (xy 134.6395 91.817648) (xy 134.6395 92.022351) (xy 134.671522 92.224534) (xy 134.734781 92.419223) + (xy 134.783987 92.515794) (xy 134.827402 92.601) (xy 134.827715 92.601613) (xy 134.948028 92.767213) + (xy 135.092786 92.911971) (xy 135.247749 93.024556) (xy 135.25839 93.032287) (xy 135.34984 93.078883) + (xy 135.35108 93.079515) (xy 135.401876 93.12749) (xy 135.418671 93.195311) (xy 135.396134 93.261446) + (xy 135.35108 93.300485) (xy 135.258388 93.347714) (xy 135.092786 93.468028) (xy 134.948028 93.612786) + (xy 134.827715 93.778386) (xy 134.734781 93.960776) (xy 134.671522 94.155465) (xy 134.6395 94.357648) + (xy 134.6395 94.562351) (xy 134.671522 94.764534) (xy 134.734781 94.959223) (xy 134.827715 95.141613) + (xy 134.948028 95.307213) (xy 135.092786 95.451971) (xy 135.247749 95.564556) (xy 135.25839 95.572287) + (xy 135.34984 95.618883) (xy 135.35108 95.619515) (xy 135.401876 95.66749) (xy 135.418671 95.735311) + (xy 135.396134 95.801446) (xy 135.35108 95.840485) (xy 135.258386 95.887715) (xy 135.092786 96.008028) + (xy 134.948028 96.152786) (xy 134.827715 96.318386) (xy 134.734781 96.500776) (xy 134.671522 96.695465) + (xy 134.6395 96.897648) (xy 134.6395 97.102351) (xy 134.671522 97.304534) (xy 134.734781 97.499223) + (xy 134.827715 97.681613) (xy 134.948028 97.847213) (xy 135.092786 97.991971) (xy 135.247749 98.104556) + (xy 135.25839 98.112287) (xy 135.374607 98.171503) (xy 135.440776 98.205218) (xy 135.440778 98.205218) + (xy 135.440781 98.20522) (xy 135.525756 98.23283) (xy 135.635465 98.268477) (xy 135.736557 98.284488) + (xy 135.837648 98.3005) (xy 136.32777 98.3005) (xy 136.394809 98.320185) (xy 136.415451 98.336819) + (xy 138.673181 100.594549) (xy 138.706666 100.655872) (xy 138.7095 100.68223) (xy 138.7095 106.5255) + (xy 138.689815 106.592539) (xy 138.637011 106.638294) (xy 138.585505 106.6495) (xy 138.562132 106.6495) + (xy 138.562123 106.649501) (xy 138.502516 106.655908) (xy 138.367671 106.706202) (xy 138.367664 106.706206) + (xy 138.252455 106.792452) (xy 138.252452 106.792455) (xy 138.166206 106.907664) (xy 138.166202 106.907671) + (xy 138.115908 107.042517) (xy 138.109501 107.102116) (xy 138.1095 107.102135) (xy 138.1095 108.89787) + (xy 138.109501 108.897876) (xy 138.115908 108.957483) (xy 138.166202 109.092328) (xy 138.166206 109.092335) + (xy 138.252452 109.207544) (xy 138.252455 109.207547) (xy 138.367664 109.293793) (xy 138.367671 109.293797) + (xy 138.502517 109.344091) (xy 138.502516 109.344091) (xy 138.509444 109.344835) (xy 138.562127 109.3505) + (xy 139.697769 109.350499) (xy 139.764808 109.370184) (xy 139.78545 109.386818) (xy 140.186951 109.788319) + (xy 140.220436 109.849642) (xy 140.215452 109.919334) (xy 140.17358 109.975267) (xy 140.108116 109.999684) + (xy 140.09927 110) (xy 134.124 110) (xy 134.056961 109.980315) (xy 134.011206 109.927511) (xy 134 109.876) + (xy 134 109.314389) (xy 134.019685 109.24735) (xy 134.039555 109.224582) (xy 134.039211 109.224238) + (xy 134.117555 109.145894) (xy 134.220793 109.042656) (xy 134.36887 108.838845) (xy 134.483241 108.614379) + (xy 134.56109 108.374785) (xy 134.6005 108.125962) (xy 134.6005 107.874038) (xy 134.56109 107.625215) + (xy 134.483241 107.385621) (xy 134.483239 107.385618) (xy 134.483239 107.385616) (xy 134.441747 107.304184) + (xy 134.36887 107.161155) (xy 134.32599 107.102135) (xy 134.220798 106.95735) (xy 134.220794 106.957345) + (xy 134.039211 106.775762) (xy 134.040148 106.774824) (xy 134.005268 106.72137) (xy 134 106.68561) + (xy 134 78.124) (xy 134.019685 78.056961) (xy 134.072489 78.011206) (xy 134.124 78) (xy 134.51996 78) + ) + ) + (filled_polygon + (layer "F.Cu") + (pts + (xy 157.419436 94.452311) (xy 157.475369 94.494183) (xy 157.499719 94.558757) (xy 157.499998 94.56231) + (xy 157.532009 94.764417) (xy 157.595244 94.959031) (xy 157.68814 95.141349) (xy 157.808417 95.306894) + (xy 157.808417 95.306895) (xy 157.953104 95.451582) (xy 158.118652 95.571861) (xy 158.211628 95.619234) + (xy 158.262425 95.667208) (xy 158.27922 95.735029) (xy 158.256683 95.801164) (xy 158.21163 95.840203) + (xy 158.118388 95.887713) (xy 157.952786 96.008028) (xy 157.808028 96.152786) (xy 157.687715 96.318386) + (xy 157.594781 96.500776) (xy 157.531522 96.695465) (xy 157.4995 96.897648) (xy 157.4995 97.102351) + (xy 157.531522 97.304534) (xy 157.594781 97.499223) (xy 157.687715 97.681613) (xy 157.808028 97.847213) + (xy 157.952786 97.991971) (xy 158.107749 98.104556) (xy 158.11839 98.112287) (xy 158.234607 98.171503) + (xy 158.300776 98.205218) (xy 158.300778 98.205218) (xy 158.300781 98.20522) (xy 158.385756 98.23283) + (xy 158.495465 98.268477) (xy 158.596557 98.284488) (xy 158.697648 98.3005) (xy 158.697649 98.3005) + (xy 159.30235 98.3005) (xy 159.302352 98.3005) (xy 159.36599 98.29042) (xy 159.409576 98.291275) + (xy 159.455947 98.3005) (xy 159.481081 98.3055) (xy 159.481082 98.3055) (xy 161.812299 98.3055) + (xy 161.879338 98.325185) (xy 161.913873 98.358376) (xy 161.961505 98.426401) (xy 162.128599 98.593495) + (xy 162.18753 98.634759) (xy 162.322165 98.729032) (xy 162.322167 98.729033) (xy 162.32217 98.729035) + (xy 162.536337 98.828903) (xy 162.764592 98.890063) (xy 162.952918 98.906539) (xy 162.999999 98.910659) + (xy 163 98.910659) (xy 163.000001 98.910659) (xy 163.039234 98.907226) (xy 163.235408 98.890063) + (xy 163.463663 98.828903) (xy 163.67783 98.729035) (xy 163.739709 98.685707) (xy 163.804877 98.640076) + (xy 163.871083 98.617749) (xy 163.93885 98.634759) (xy 163.986663 98.685707) (xy 164 98.741651) + (xy 164 106.510892) (xy 163.980315 106.577931) (xy 163.927511 106.623686) (xy 163.858353 106.63363) + (xy 163.819705 106.621377) (xy 163.614383 106.516761) (xy 163.614382 106.51676) (xy 163.614379 106.516759) + (xy 163.374785 106.43891) (xy 163.125962 106.3995) (xy 162.874038 106.3995) (xy 162.749626 106.419205) + (xy 162.625214 106.43891) (xy 162.385616 106.51676) (xy 162.161151 106.631132) (xy 161.95735 106.779201) + (xy 161.957345 106.779205) (xy 161.779205 106.957345) (xy 161.779201 106.95735) (xy 161.631132 107.161151) + (xy 161.51676 107.385616) (xy 161.467788 107.536337) (xy 161.43891 107.625215) (xy 161.3995 107.874038) + (xy 161.3995 108.125962) (xy 161.417371 108.238794) (xy 161.43891 108.374785) (xy 161.51676 108.614383) + (xy 161.553171 108.685842) (xy 161.620131 108.817259) (xy 161.631132 108.838848) (xy 161.779201 109.042649) + (xy 161.779205 109.042654) (xy 161.957345 109.220794) (xy 161.95735 109.220798) (xy 162.12705 109.344091) + (xy 162.161155 109.36887) (xy 162.298204 109.4387) (xy 162.385616 109.483239) (xy 162.385618 109.483239) + (xy 162.385621 109.483241) (xy 162.625215 109.56109) (xy 162.874038 109.6005) (xy 162.874039 109.6005) + (xy 163.125961 109.6005) (xy 163.125962 109.6005) (xy 163.374785 109.56109) (xy 163.614379 109.483241) + (xy 163.819705 109.378621) (xy 163.888374 109.365726) (xy 163.953115 109.392002) (xy 163.993372 109.449109) + (xy 164 109.489107) (xy 164 109.876) (xy 163.980315 109.943039) (xy 163.927511 109.988794) (xy 163.876 110) + (xy 157.123596 110) (xy 157.056557 109.980315) (xy 157.010802 109.927511) (xy 157.000858 109.858353) + (xy 157.029883 109.794797) (xy 157.035915 109.788319) (xy 157.223734 109.6005) (xy 157.470716 109.353517) + (xy 157.526301 109.321426) (xy 157.641657 109.290516) (xy 157.703653 109.273906) (xy 157.703654 109.273905) + (xy 157.703663 109.273903) (xy 157.91783 109.174035) (xy 158.111401 109.038495) (xy 158.278495 108.871401) + (xy 158.414035 108.67783) (xy 158.513903 108.463663) (xy 158.575063 108.235408) (xy 158.595659 108) + (xy 158.575063 107.764592) (xy 158.513903 107.536337) (xy 158.414035 107.322171) (xy 158.408731 107.314595) + (xy 158.278494 107.128597) (xy 158.111402 106.961506) (xy 158.111395 106.961501) (xy 157.917834 106.825967) + (xy 157.91783 106.825965) (xy 157.912085 106.823286) (xy 157.703663 106.726097) (xy 157.703659 106.726096) + (xy 157.703655 106.726094) (xy 157.475413 106.664938) (xy 157.475403 106.664936) (xy 157.240001 106.644341) + (xy 157.239999 106.644341) (xy 157.004596 106.664936) (xy 157.004586 106.664938) (xy 156.776344 106.726094) + (xy 156.776335 106.726098) (xy 156.562171 106.825964) (xy 156.562169 106.825965) (xy 156.368597 106.961505) + (xy 156.201505 107.128597) (xy 156.071575 107.314158) (xy 156.016998 107.357783) (xy 155.9475 107.364977) + (xy 155.885145 107.333454) (xy 155.868425 107.314158) (xy 155.738494 107.128597) (xy 155.571402 106.961506) + (xy 155.571395 106.961501) (xy 155.377834 106.825967) (xy 155.37783 106.825965) (xy 155.372085 106.823286) + (xy 155.163663 106.726097) (xy 155.163659 106.726096) (xy 155.163655 106.726094) (xy 154.935413 106.664938) + (xy 154.935403 106.664936) (xy 154.700001 106.644341) (xy 154.699999 106.644341) (xy 154.464596 106.664936) + (xy 154.464586 106.664938) (xy 154.236344 106.726094) (xy 154.236335 106.726098) (xy 154.022171 106.825964) + (xy 154.022169 106.825965) (xy 153.828597 106.961505) (xy 153.661505 107.128597) (xy 153.531575 107.314158) + (xy 153.476998 107.357783) (xy 153.4075 107.364977) (xy 153.345145 107.333454) (xy 153.328425 107.314158) + (xy 153.198494 107.128597) (xy 153.031402 106.961506) (xy 153.031395 106.961501) (xy 152.837834 106.825967) + (xy 152.83783 106.825965) (xy 152.832085 106.823286) (xy 152.623663 106.726097) (xy 152.623659 106.726096) + (xy 152.623655 106.726094) (xy 152.395413 106.664938) (xy 152.395403 106.664936) (xy 152.160001 106.644341) + (xy 152.159999 106.644341) (xy 151.924596 106.664936) (xy 151.924586 106.664938) (xy 151.696344 106.726094) + (xy 151.696335 106.726098) (xy 151.482171 106.825964) (xy 151.482169 106.825965) (xy 151.288597 106.961505) + (xy 151.121505 107.128597) (xy 150.991575 107.314158) (xy 150.936998 107.357783) (xy 150.8675 107.364977) + (xy 150.805145 107.333454) (xy 150.788425 107.314158) (xy 150.658494 107.128597) (xy 150.491402 106.961506) + (xy 150.491395 106.961501) (xy 150.297831 106.825965) (xy 150.297826 106.825962) (xy 150.292091 106.823288) + (xy 150.239653 106.777113) (xy 150.2205 106.710908) (xy 150.2205 101.600096) (xy 150.240185 101.533057) + (xy 150.256814 101.51242) (xy 157.288423 94.48081) (xy 157.349744 94.447327) + ) + ) + (filled_polygon + (layer "F.Cu") + (pts + (xy 157.491238 78.740185) (xy 157.536993 78.792989) (xy 157.546937 78.862147) (xy 157.54213 78.882817) + (xy 157.531524 78.915457) (xy 157.531523 78.915464) (xy 157.4995 79.117648) (xy 157.4995 79.322351) + (xy 157.531522 79.524534) (xy 157.594781 79.719223) (xy 157.687715 79.901613) (xy 157.808028 80.067213) + (xy 157.952786 80.211971) (xy 158.0634 80.292335) (xy 158.11839 80.332287) (xy 158.20984 80.378883) + (xy 158.21108 80.379515) (xy 158.261876 80.42749) (xy 158.278671 80.495311) (xy 158.256134 80.561446) + (xy 158.21108 80.600485) (xy 158.118386 80.647715) (xy 157.952786 80.768028) (xy 157.808028 80.912786) + (xy 157.687715 81.078386) (xy 157.594781 81.260776) (xy 157.531522 81.455465) (xy 157.4995 81.657648) + (xy 157.4995 81.862351) (xy 157.531523 82.064535) (xy 157.531523 82.064538) (xy 157.585218 82.229795) + (xy 157.587213 82.299637) (xy 157.554968 82.355794) (xy 146.711286 93.199478) (xy 146.599481 93.311282) + (xy 146.599479 93.311284) (xy 146.584696 93.336889) (xy 146.578448 93.347713) (xy 146.520423 93.448215) + (xy 146.479499 93.600943) (xy 146.479499 93.600945) (xy 146.479499 93.769046) (xy 146.4795 93.769059) + (xy 146.4795 106.710908) (xy 146.459815 106.777947) (xy 146.407914 106.823286) (xy 146.402173 106.825963) + (xy 146.402169 106.825965) (xy 146.208597 106.961505) (xy 146.041505 107.128597) (xy 145.911575 107.314158) + (xy 145.856998 107.357783) (xy 145.7875 107.364977) (xy 145.725145 107.333454) (xy 145.708425 107.314158) + (xy 145.578494 107.128597) (xy 145.411402 106.961506) (xy 145.411395 106.961501) (xy 145.217834 106.825967) + (xy 145.21783 106.825965) (xy 145.212085 106.823286) (xy 145.003663 106.726097) (xy 145.003659 106.726096) + (xy 145.003655 106.726094) (xy 144.775413 106.664938) (xy 144.775403 106.664936) (xy 144.540001 106.644341) + (xy 144.539999 106.644341) (xy 144.304596 106.664936) (xy 144.304586 106.664938) (xy 144.076344 106.726094) + (xy 144.076335 106.726098) (xy 143.862171 106.825964) (xy 143.862169 106.825965) (xy 143.668597 106.961505) + (xy 143.501508 107.128594) (xy 143.371269 107.314595) (xy 143.316692 107.358219) (xy 143.247193 107.365412) + (xy 143.184839 107.33389) (xy 143.168119 107.314594) (xy 143.038113 107.128926) (xy 143.038108 107.12892) + (xy 142.871082 106.961894) (xy 142.677578 106.826399) (xy 142.463492 106.72657) (xy 142.463486 106.726567) + (xy 142.25 106.669364) (xy 142.25 107.566988) (xy 142.192993 107.534075) (xy 142.065826 107.5) (xy 141.934174 107.5) + (xy 141.807007 107.534075) (xy 141.75 107.566988) (xy 141.75 106.669364) (xy 141.749999 106.669364) + (xy 141.536513 106.726567) (xy 141.536507 106.72657) (xy 141.322422 106.826399) (xy 141.32242 106.8264) + (xy 141.128926 106.961886) (xy 141.006865 107.083947) (xy 140.945542 107.117431) (xy 140.87585 107.112447) + (xy 140.819917 107.070575) (xy 140.803002 107.039598) (xy 140.753797 106.907671) (xy 140.753793 106.907664) + (xy 140.667547 106.792455) (xy 140.667544 106.792452) (xy 140.552335 106.706206) (xy 140.552328 106.706202) + (xy 140.417482 106.655908) (xy 140.417483 106.655908) (xy 140.357883 106.649501) (xy 140.357881 106.6495) + (xy 140.357873 106.6495) (xy 140.357865 106.6495) (xy 140.3345 106.6495) (xy 140.267461 106.629815) + (xy 140.221706 106.577011) (xy 140.2105 106.5255) (xy 140.2105 100.246079) (xy 140.181659 100.101092) + (xy 140.181658 100.101091) (xy 140.181658 100.101087) (xy 140.125084 99.964505) (xy 140.092186 99.91527) + (xy 140.092185 99.915268) (xy 140.042956 99.841589) (xy 140.042952 99.841584) (xy 137.637052 97.435684) + (xy 137.603567 97.374361) (xy 137.606806 97.309673) (xy 137.608477 97.304534) (xy 137.6405 97.102352) + (xy 137.6405 96.897648) (xy 137.608477 96.695466) (xy 137.606802 96.690313) (xy 137.604806 96.620476) + (xy 137.63705 96.564316) (xy 155.444548 78.756819) (xy 155.505871 78.723334) (xy 155.532229 78.7205) + (xy 157.424199 78.7205) + ) + ) + (filled_polygon + (layer "F.Cu") + (pts + (xy 157.41897 84.292778) (xy 157.474903 84.33465) (xy 157.498627 84.397557) (xy 157.498738 84.39754) + (xy 157.498822 84.398076) (xy 157.499252 84.399214) (xy 157.499498 84.402342) (xy 157.531522 84.604534) + (xy 157.594781 84.799223) (xy 157.64481 84.897409) (xy 157.675596 84.95783) (xy 157.687715 84.981613) + (xy 157.808028 85.147213) (xy 157.952786 85.291971) (xy 158.107749 85.404556) (xy 158.11839 85.412287) + (xy 158.189315 85.448425) (xy 158.21108 85.459515) (xy 158.261876 85.50749) (xy 158.278671 85.575311) + (xy 158.256134 85.641446) (xy 158.21108 85.680485) (xy 158.118386 85.727715) (xy 157.952786 85.848028) + (xy 157.808028 85.992786) (xy 157.687715 86.158386) (xy 157.594781 86.340776) (xy 157.531522 86.535465) + (xy 157.4995 86.737648) (xy 157.4995 86.942351) (xy 157.531522 87.144534) (xy 157.594781 87.339223) + (xy 157.646385 87.4405) (xy 157.675596 87.49783) (xy 157.687715 87.521613) (xy 157.808028 87.687213) + (xy 157.952786 87.831971) (xy 158.107749 87.944556) (xy 158.11839 87.952287) (xy 158.200319 87.994032) + (xy 158.21108 87.999515) (xy 158.261876 88.04749) (xy 158.278671 88.115311) (xy 158.256134 88.181446) + (xy 158.21108 88.220485) (xy 158.118386 88.267715) (xy 157.952786 88.388028) (xy 157.808028 88.532786) + (xy 157.687715 88.698386) (xy 157.594781 88.880776) (xy 157.531522 89.075465) (xy 157.4995 89.277648) + (xy 157.4995 89.482351) (xy 157.531522 89.684534) (xy 157.594781 89.879223) (xy 157.687715 90.061613) + (xy 157.808028 90.227213) (xy 157.952786 90.371971) (xy 158.107749 90.484556) (xy 158.11839 90.492287) + (xy 158.20984 90.538883) (xy 158.21108 90.539515) (xy 158.261876 90.58749) (xy 158.278671 90.655311) + (xy 158.256134 90.721446) (xy 158.21108 90.760485) (xy 158.118386 90.807715) (xy 157.952786 90.928028) + (xy 157.808028 91.072786) (xy 157.687715 91.238386) (xy 157.594781 91.420776) (xy 157.531522 91.615465) + (xy 157.4995 91.817648) (xy 157.4995 92.022351) (xy 157.531523 92.224535) (xy 157.531523 92.224538) + (xy 157.585219 92.389795) (xy 157.587214 92.459636) (xy 157.554969 92.515794) (xy 149.251286 100.819478) + (xy 149.139481 100.931282) (xy 149.139479 100.931284) (xy 149.117647 100.969099) (xy 149.108419 100.985084) + (xy 149.060423 101.068215) (xy 149.019499 101.220943) (xy 149.019499 101.220945) (xy 149.019499 101.389046) + (xy 149.0195 101.389059) (xy 149.0195 106.710908) (xy 148.999815 106.777947) (xy 148.947914 106.823286) + (xy 148.942173 106.825963) (xy 148.942169 106.825965) (xy 148.748597 106.961505) (xy 148.581505 107.128597) + (xy 148.451575 107.314158) (xy 148.396998 107.357783) (xy 148.3275 107.364977) (xy 148.265145 107.333454) + (xy 148.248425 107.314158) (xy 148.118494 107.128597) (xy 147.951402 106.961506) (xy 147.951395 106.961501) + (xy 147.757831 106.825965) (xy 147.757826 106.825962) (xy 147.752091 106.823288) (xy 147.699653 106.777113) + (xy 147.6805 106.710908) (xy 147.6805 93.980097) (xy 147.700185 93.913058) (xy 147.716819 93.892416) + (xy 152.331587 89.277648) (xy 157.287957 84.321277) (xy 157.349278 84.287794) + ) + ) + (filled_polygon + (layer "F.Cu") + (pts + (xy 161.788313 87.460185) (xy 161.821156 87.494588) (xy 161.82286 87.493396) (xy 161.842616 87.52161) + (xy 161.961505 87.691401) (xy 162.128599 87.858495) (xy 162.18753 87.899759) (xy 162.322165 87.994032) + (xy 162.322167 87.994033) (xy 162.32217 87.994035) (xy 162.536337 88.093903) (xy 162.764592 88.155063) + (xy 162.952918 88.171539) (xy 162.999999 88.175659) (xy 163 88.175659) (xy 163.000001 88.175659) + (xy 163.039234 88.172226) (xy 163.235408 88.155063) (xy 163.463663 88.093903) (xy 163.67783 87.994035) + (xy 163.739709 87.950707) (xy 163.804877 87.905076) (xy 163.871083 87.882749) (xy 163.93885 87.899759) + (xy 163.986663 87.950707) (xy 164 88.006651) (xy 164 91.001) (xy 163.980315 91.068039) (xy 163.927511 91.113794) + (xy 163.876 91.125) (xy 163.25 91.125) (xy 163.25 92.041988) (xy 163.192993 92.009075) (xy 163.065826 91.975) + (xy 162.934174 91.975) (xy 162.807007 92.009075) (xy 162.75 92.041988) (xy 162.75 91.125) (xy 162.102155 91.125) + (xy 162.042627 91.131401) (xy 162.04262 91.131403) (xy 161.907913 91.181645) (xy 161.907906 91.181649) + (xy 161.792812 91.267809) (xy 161.792809 91.267812) (xy 161.706649 91.382906) (xy 161.706645 91.382913) + (xy 161.656403 91.51762) (xy 161.656401 91.517627) (xy 161.65 91.577155) (xy 161.65 92.225) (xy 162.566988 92.225) + (xy 162.534075 92.282007) (xy 162.5 92.409174) (xy 162.5 92.540826) (xy 162.534075 92.667993) (xy 162.566988 92.725) + (xy 161.65 92.725) (xy 161.65 93.372844) (xy 161.656401 93.432372) (xy 161.656403 93.432379) (xy 161.706645 93.567086) + (xy 161.706649 93.567093) (xy 161.792809 93.682187) (xy 161.792812 93.68219) (xy 161.907906 93.76835) + (xy 161.907913 93.768354) (xy 162.03947 93.817421) (xy 162.095403 93.859292) (xy 162.119821 93.924756) + (xy 162.10497 93.993029) (xy 162.083819 94.021284) (xy 161.961503 94.1436) (xy 161.825965 94.337169) + (xy 161.825964 94.337171) (xy 161.726098 94.551335) (xy 161.726094 94.551344) (xy 161.664938 94.779586) + (xy 161.664936 94.779596) (xy 161.644341 95.014999) (xy 161.644341 95.015) (xy 161.664936 95.250403) + (xy 161.664938 95.250413) (xy 161.726094 95.478655) (xy 161.726096 95.478659) (xy 161.726097 95.478663) + (xy 161.769755 95.572287) (xy 161.825965 95.69283) (xy 161.825967 95.692834) (xy 161.961501 95.886395) + (xy 161.961506 95.886402) (xy 162.128597 96.053493) (xy 162.128603 96.053498) (xy 162.314158 96.183425) + (xy 162.357783 96.238002) (xy 162.364977 96.3075) (xy 162.333454 96.369855) (xy 162.314158 96.386575) + (xy 162.128597 96.516505) (xy 161.961506 96.683596) (xy 161.913874 96.751623) (xy 161.859297 96.795248) + (xy 161.812299 96.8045) (xy 160.591652 96.8045) (xy 160.524613 96.784815) (xy 160.478858 96.732011) + (xy 160.469179 96.699902) (xy 160.468477 96.695466) (xy 160.40522 96.500781) (xy 160.312287 96.31839) + (xy 160.288028 96.285) (xy 160.191971 96.152786) (xy 160.047213 96.008028) (xy 159.881611 95.887713) + (xy 159.788369 95.840203) (xy 159.737574 95.792229) (xy 159.720779 95.724407) (xy 159.743317 95.658273) + (xy 159.788371 95.619234) (xy 159.881347 95.571861) (xy 160.046894 95.451582) (xy 160.046895 95.451582) + (xy 160.191582 95.306895) (xy 160.191582 95.306894) (xy 160.311859 95.141349) (xy 160.404755 94.959029) + (xy 160.46799 94.764413) (xy 160.476609 94.71) (xy 159.433012 94.71) (xy 159.465925 94.652993) (xy 159.5 94.525826) + (xy 159.5 94.394174) (xy 159.465925 94.267007) (xy 159.433012 94.21) (xy 160.476609 94.21) (xy 160.46799 94.155586) + (xy 160.404755 93.96097) (xy 160.311859 93.77865) (xy 160.191582 93.613105) (xy 160.191582 93.613104) + (xy 160.046895 93.468417) (xy 159.881349 93.34814) (xy 159.78837 93.300765) (xy 159.737574 93.25279) + (xy 159.720779 93.184969) (xy 159.743316 93.118835) (xy 159.78837 93.079795) (xy 159.78892 93.079515) + (xy 159.88161 93.032287) (xy 159.90277 93.016913) (xy 160.047213 92.911971) (xy 160.047215 92.911968) + (xy 160.047219 92.911966) (xy 160.191966 92.767219) (xy 160.191968 92.767215) (xy 160.191971 92.767213) + (xy 160.264057 92.667993) (xy 160.312287 92.60161) (xy 160.40522 92.419219) (xy 160.468477 92.224534) + (xy 160.5005 92.022352) (xy 160.5005 91.817648) (xy 160.468477 91.615466) (xy 160.40522 91.420781) + (xy 160.405218 91.420778) (xy 160.405218 91.420776) (xy 160.327278 91.267812) (xy 160.312287 91.23839) + (xy 160.27106 91.181645) (xy 160.191971 91.072786) (xy 160.047213 90.928028) (xy 159.881614 90.807715) + (xy 159.875006 90.804348) (xy 159.788917 90.760483) (xy 159.738123 90.712511) (xy 159.721328 90.64469) + (xy 159.743865 90.578555) (xy 159.788917 90.539516) (xy 159.88161 90.492287) (xy 159.90277 90.476913) + (xy 160.047213 90.371971) (xy 160.047215 90.371968) (xy 160.047219 90.371966) (xy 160.191966 90.227219) + (xy 160.191968 90.227215) (xy 160.191971 90.227213) (xy 160.244732 90.15459) (xy 160.312287 90.06161) + (xy 160.40522 89.879219) (xy 160.468477 89.684534) (xy 160.5005 89.482352) (xy 160.5005 89.277648) + (xy 160.468477 89.075466) (xy 160.40522 88.880781) (xy 160.405218 88.880778) (xy 160.405218 88.880776) + (xy 160.371503 88.814607) (xy 160.312287 88.69839) (xy 160.304556 88.687749) (xy 160.191971 88.532786) + (xy 160.047213 88.388028) (xy 159.881614 88.267715) (xy 159.875006 88.264348) (xy 159.788917 88.220483) + (xy 159.738123 88.172511) (xy 159.721328 88.10469) (xy 159.743865 88.038555) (xy 159.788917 87.999516) + (xy 159.88161 87.952287) (xy 160.010705 87.858495) (xy 160.047213 87.831971) (xy 160.047215 87.831968) + (xy 160.047219 87.831966) (xy 160.191966 87.687219) (xy 160.191968 87.687215) (xy 160.191971 87.687213) + (xy 160.312284 87.521614) (xy 160.312285 87.521613) (xy 160.312287 87.52161) (xy 160.319117 87.508204) + (xy 160.367091 87.457409) (xy 160.429602 87.4405) (xy 161.721274 87.4405) + ) + ) + (filled_polygon + (layer "F.Cu") + (pts + (xy 153.84631 78.019685) (xy 153.892065 78.072489) (xy 153.902009 78.141647) (xy 153.872984 78.205203) + (xy 153.866952 78.211681) (xy 137.823587 94.255044) (xy 137.762264 94.288529) (xy 137.692572 94.283545) + (xy 137.636639 94.241673) (xy 137.613433 94.186762) (xy 137.608477 94.155466) (xy 137.54522 93.960781) + (xy 137.545218 93.960778) (xy 137.545218 93.960776) (xy 137.510386 93.892416) (xy 137.452287 93.77839) + (xy 137.438241 93.759057) (xy 137.331971 93.612786) (xy 137.187213 93.468028) (xy 137.021612 93.347714) + (xy 137.018186 93.345968) (xy 136.928917 93.300483) (xy 136.878123 93.252511) (xy 136.861328 93.18469) + (xy 136.883865 93.118555) (xy 136.928917 93.079516) (xy 137.02161 93.032287) (xy 137.04277 93.016913) + (xy 137.187213 92.911971) (xy 137.187215 92.911968) (xy 137.187219 92.911966) (xy 137.331966 92.767219) + (xy 137.331968 92.767215) (xy 137.331971 92.767213) (xy 137.404057 92.667993) (xy 137.452287 92.60161) + (xy 137.54522 92.419219) (xy 137.608477 92.224534) (xy 137.6405 92.022352) (xy 137.6405 91.817648) + (xy 137.608477 91.615466) (xy 137.54522 91.420781) (xy 137.545218 91.420778) (xy 137.545218 91.420776) + (xy 137.467278 91.267812) (xy 137.452287 91.23839) (xy 137.41106 91.181645) (xy 137.331971 91.072786) + (xy 137.187213 90.928028) (xy 137.021614 90.807715) (xy 137.015006 90.804348) (xy 136.928917 90.760483) + (xy 136.878123 90.712511) (xy 136.861328 90.64469) (xy 136.883865 90.578555) (xy 136.928917 90.539516) + (xy 137.02161 90.492287) (xy 137.04277 90.476913) (xy 137.187213 90.371971) (xy 137.187215 90.371968) + (xy 137.187219 90.371966) (xy 137.331966 90.227219) (xy 137.331968 90.227215) (xy 137.331971 90.227213) + (xy 137.384732 90.15459) (xy 137.452287 90.06161) (xy 137.54522 89.879219) (xy 137.608477 89.684534) + (xy 137.6405 89.482352) (xy 137.6405 89.277648) (xy 137.608477 89.075466) (xy 137.54522 88.880781) + (xy 137.545218 88.880778) (xy 137.545218 88.880776) (xy 137.511503 88.814607) (xy 137.452287 88.69839) + (xy 137.444556 88.687749) (xy 137.331971 88.532786) (xy 137.187213 88.388028) (xy 137.021614 88.267715) + (xy 137.015006 88.264348) (xy 136.928917 88.220483) (xy 136.878123 88.172511) (xy 136.861328 88.10469) + (xy 136.883865 88.038555) (xy 136.928917 87.999516) (xy 137.02161 87.952287) (xy 137.150705 87.858495) + (xy 137.187213 87.831971) (xy 137.187215 87.831968) (xy 137.187219 87.831966) (xy 137.331966 87.687219) + (xy 137.331968 87.687215) (xy 137.331971 87.687213) (xy 137.384732 87.61459) (xy 137.452287 87.52161) + (xy 137.54522 87.339219) (xy 137.608477 87.144534) (xy 137.6405 86.942352) (xy 137.6405 86.737648) + (xy 137.608477 86.535466) (xy 137.54522 86.340781) (xy 137.545218 86.340778) (xy 137.545218 86.340776) + (xy 137.511503 86.274607) (xy 137.452287 86.15839) (xy 137.440502 86.142169) (xy 137.331971 85.992786) + (xy 137.187213 85.848028) (xy 137.021614 85.727715) (xy 137.015006 85.724348) (xy 136.928917 85.680483) + (xy 136.878123 85.632511) (xy 136.861328 85.56469) (xy 136.883865 85.498555) (xy 136.928917 85.459516) + (xy 137.02161 85.412287) (xy 137.150705 85.318495) (xy 137.187213 85.291971) (xy 137.187215 85.291968) + (xy 137.187219 85.291966) (xy 137.331966 85.147219) (xy 137.331968 85.147215) (xy 137.331971 85.147213) + (xy 137.384732 85.07459) (xy 137.452287 84.98161) (xy 137.54522 84.799219) (xy 137.608477 84.604534) + (xy 137.6405 84.402352) (xy 137.6405 84.197648) (xy 137.608477 83.995466) (xy 137.54522 83.800781) + (xy 137.545218 83.800778) (xy 137.545218 83.800776) (xy 137.483424 83.6795) (xy 137.452287 83.61839) + (xy 137.440503 83.60217) (xy 137.331971 83.452786) (xy 137.187213 83.308028) (xy 137.021614 83.187715) + (xy 137.015006 83.184348) (xy 136.928917 83.140483) (xy 136.878123 83.092511) (xy 136.861328 83.02469) + (xy 136.883865 82.958555) (xy 136.928917 82.919516) (xy 137.02161 82.872287) (xy 137.04277 82.856913) + (xy 137.187213 82.751971) (xy 137.187215 82.751968) (xy 137.187219 82.751966) (xy 137.331966 82.607219) + (xy 137.331968 82.607215) (xy 137.331971 82.607213) (xy 137.384732 82.53459) (xy 137.452287 82.44161) + (xy 137.54522 82.259219) (xy 137.608477 82.064534) (xy 137.6405 81.862352) (xy 137.6405 81.657648) + (xy 137.608477 81.455466) (xy 137.54522 81.260781) (xy 137.545218 81.260778) (xy 137.545218 81.260776) + (xy 137.511503 81.194607) (xy 137.452287 81.07839) (xy 137.440684 81.06242) (xy 137.331971 80.912786) + (xy 137.300736 80.881551) (xy 137.267251 80.820228) (xy 137.272235 80.750536) (xy 137.314107 80.694603) + (xy 137.34508 80.677689) (xy 137.382331 80.663796) (xy 137.497546 80.577546) (xy 137.583796 80.462331) + (xy 137.634091 80.327483) (xy 137.6405 80.267873) (xy 137.640499 78.172128) (xy 137.63675 78.137253) + (xy 137.649157 78.068494) (xy 137.696767 78.017358) (xy 137.76004 78) (xy 153.779271 78) + ) + ) + (filled_polygon + (layer "F.Cu") + (pts + (xy 161.474809 78.740185) (xy 161.495446 78.756814) (xy 161.613182 78.874549) (xy 161.646666 78.93587) + (xy 161.6495 78.962229) (xy 161.6495 80.09787) (xy 161.649501 80.097876) (xy 161.655908 80.157483) + (xy 161.706202 80.292328) (xy 161.706206 80.292335) (xy 161.792452 80.407544) (xy 161.792455 80.407547) + (xy 161.907664 80.493793) (xy 161.907671 80.493797) (xy 161.969902 80.517007) (xy 162.039598 80.543002) + (xy 162.095531 80.584873) (xy 162.119949 80.650337) (xy 162.105098 80.71861) (xy 162.083947 80.746865) + (xy 161.961886 80.868926) (xy 161.8264 81.06242) (xy 161.826399 81.062422) (xy 161.72657 81.276507) + (xy 161.726567 81.276513) (xy 161.669364 81.489999) (xy 161.669364 81.49) (xy 162.566988 81.49) + (xy 162.534075 81.547007) (xy 162.5 81.674174) (xy 162.5 81.805826) (xy 162.534075 81.932993) (xy 162.566988 81.99) + (xy 161.669364 81.99) (xy 161.726567 82.203486) (xy 161.72657 82.203492) (xy 161.826399 82.417578) + (xy 161.961894 82.611082) (xy 162.128917 82.778105) (xy 162.314595 82.908119) (xy 162.358219 82.962696) + (xy 162.365412 83.032195) (xy 162.33389 83.094549) (xy 162.314595 83.111269) (xy 162.128594 83.241508) + (xy 161.961506 83.408596) (xy 161.825965 83.60217) (xy 161.825962 83.602175) (xy 161.823289 83.607909) + (xy 161.777115 83.660346) (xy 161.710909 83.6795) (xy 160.419179 83.6795) (xy 160.35214 83.659815) + (xy 160.315325 83.622204) (xy 160.315151 83.622331) (xy 160.314293 83.62115) (xy 160.313452 83.620291) + (xy 160.312283 83.618383) (xy 160.191971 83.452786) (xy 160.047213 83.308028) (xy 159.881614 83.187715) + (xy 159.875006 83.184348) (xy 159.788917 83.140483) (xy 159.738123 83.092511) (xy 159.721328 83.02469) + (xy 159.743865 82.958555) (xy 159.788917 82.919516) (xy 159.88161 82.872287) (xy 159.90277 82.856913) + (xy 160.047213 82.751971) (xy 160.047215 82.751968) (xy 160.047219 82.751966) (xy 160.191966 82.607219) + (xy 160.191968 82.607215) (xy 160.191971 82.607213) (xy 160.244732 82.53459) (xy 160.312287 82.44161) + (xy 160.40522 82.259219) (xy 160.468477 82.064534) (xy 160.5005 81.862352) (xy 160.5005 81.657648) + (xy 160.468477 81.455466) (xy 160.40522 81.260781) (xy 160.405218 81.260778) (xy 160.405218 81.260776) + (xy 160.371503 81.194607) (xy 160.312287 81.07839) (xy 160.300684 81.06242) (xy 160.191971 80.912786) + (xy 160.047213 80.768028) (xy 159.881614 80.647715) (xy 159.875006 80.644348) (xy 159.788917 80.600483) + (xy 159.738123 80.552511) (xy 159.721328 80.48469) (xy 159.743865 80.418555) (xy 159.788917 80.379516) + (xy 159.88161 80.332287) (xy 159.936605 80.292331) (xy 160.047213 80.211971) (xy 160.047215 80.211968) + (xy 160.047219 80.211966) (xy 160.191966 80.067219) (xy 160.191968 80.067215) (xy 160.191971 80.067213) + (xy 160.244732 79.99459) (xy 160.312287 79.90161) (xy 160.40522 79.719219) (xy 160.468477 79.524534) + (xy 160.5005 79.322352) (xy 160.5005 79.117648) (xy 160.468477 78.915466) (xy 160.468475 78.915462) + (xy 160.468475 78.915457) (xy 160.45787 78.882817) (xy 160.455875 78.812976) (xy 160.491956 78.753143) + (xy 160.554657 78.722316) (xy 160.575801 78.7205) (xy 161.40777 78.7205) + ) + ) + (filled_polygon + (layer "B.Cu") + (pts + (xy 134.586999 78.019685) (xy 134.632754 78.072489) (xy 134.643249 78.137252) (xy 134.6395 78.172127) + (xy 134.6395 78.172134) (xy 134.6395 78.172135) (xy 134.6395 80.26787) (xy 134.639501 80.267876) + (xy 134.645908 80.327483) (xy 134.696202 80.462328) (xy 134.696206 80.462335) (xy 134.782452 80.577544) + (xy 134.782455 80.577547) (xy 134.897664 80.663793) (xy 134.897673 80.663798) (xy 134.934914 80.677688) + (xy 134.990848 80.719559) (xy 135.015266 80.785023) (xy 135.000415 80.853296) (xy 134.979265 80.88155) + (xy 134.948027 80.912787) (xy 134.827715 81.078386) (xy 134.734781 81.260776) (xy 134.671522 81.455465) + (xy 134.6395 81.657648) (xy 134.6395 81.862351) (xy 134.671522 82.064534) (xy 134.734781 82.259223) + (xy 134.827715 82.441613) (xy 134.948028 82.607213) (xy 135.092786 82.751971) (xy 135.247749 82.864556) + (xy 135.25839 82.872287) (xy 135.34984 82.918883) (xy 135.35108 82.919515) (xy 135.401876 82.96749) + (xy 135.418671 83.035311) (xy 135.396134 83.101446) (xy 135.35108 83.140485) (xy 135.258386 83.187715) + (xy 135.092786 83.308028) (xy 134.948028 83.452786) (xy 134.827715 83.618386) (xy 134.734781 83.800776) + (xy 134.671522 83.995465) (xy 134.6395 84.197648) (xy 134.6395 84.402351) (xy 134.671522 84.604534) + (xy 134.734781 84.799223) (xy 134.783987 84.895794) (xy 134.815596 84.95783) (xy 134.827715 84.981613) + (xy 134.948028 85.147213) (xy 135.092786 85.291971) (xy 135.247749 85.404556) (xy 135.25839 85.412287) + (xy 135.329315 85.448425) (xy 135.35108 85.459515) (xy 135.401876 85.50749) (xy 135.418671 85.575311) + (xy 135.396134 85.641446) (xy 135.35108 85.680485) (xy 135.258386 85.727715) (xy 135.092786 85.848028) + (xy 134.948028 85.992786) (xy 134.827715 86.158386) (xy 134.734781 86.340776) (xy 134.671522 86.535465) + (xy 134.6395 86.737648) (xy 134.6395 86.942351) (xy 134.671522 87.144534) (xy 134.734781 87.339223) + (xy 134.783987 87.435794) (xy 134.815596 87.49783) (xy 134.827715 87.521613) (xy 134.948028 87.687213) + (xy 135.092786 87.831971) (xy 135.22843 87.93052) (xy 135.25839 87.952287) (xy 135.31404 87.980642) + (xy 135.35108 87.999515) (xy 135.401876 88.04749) (xy 135.418671 88.115311) (xy 135.396134 88.181446) + (xy 135.35108 88.220485) (xy 135.258386 88.267715) (xy 135.092786 88.388028) (xy 134.948028 88.532786) + (xy 134.827715 88.698386) (xy 134.734781 88.880776) (xy 134.671522 89.075465) (xy 134.6395 89.277648) + (xy 134.6395 89.482351) (xy 134.671522 89.684534) (xy 134.734781 89.879223) (xy 134.827715 90.061613) + (xy 134.948028 90.227213) (xy 135.092786 90.371971) (xy 135.247749 90.484556) (xy 135.25839 90.492287) + (xy 135.34984 90.538883) (xy 135.35108 90.539515) (xy 135.401876 90.58749) (xy 135.418671 90.655311) + (xy 135.396134 90.721446) (xy 135.35108 90.760485) (xy 135.258386 90.807715) (xy 135.092786 90.928028) + (xy 134.948028 91.072786) (xy 134.827715 91.238386) (xy 134.734781 91.420776) (xy 134.671522 91.615465) + (xy 134.6395 91.817648) (xy 134.6395 92.022351) (xy 134.671522 92.224534) (xy 134.734781 92.419223) + (xy 134.775406 92.498952) (xy 134.827402 92.601) (xy 134.827715 92.601613) (xy 134.948028 92.767213) + (xy 135.092786 92.911971) (xy 135.247749 93.024556) (xy 135.25839 93.032287) (xy 135.34984 93.078883) + (xy 135.35108 93.079515) (xy 135.401876 93.12749) (xy 135.418671 93.195311) (xy 135.396134 93.261446) + (xy 135.35108 93.300485) (xy 135.258386 93.347715) (xy 135.092786 93.468028) (xy 134.948028 93.612786) + (xy 134.827715 93.778386) (xy 134.734781 93.960776) (xy 134.671522 94.155465) (xy 134.6395 94.357648) + (xy 134.6395 94.562351) (xy 134.671522 94.764534) (xy 134.734781 94.959223) (xy 134.827715 95.141613) + (xy 134.948028 95.307213) (xy 135.092786 95.451971) (xy 135.247749 95.564556) (xy 135.25839 95.572287) + (xy 135.34984 95.618883) (xy 135.35108 95.619515) (xy 135.401876 95.66749) (xy 135.418671 95.735311) + (xy 135.396134 95.801446) (xy 135.35108 95.840485) (xy 135.258386 95.887715) (xy 135.092786 96.008028) + (xy 134.948028 96.152786) (xy 134.827715 96.318386) (xy 134.734781 96.500776) (xy 134.671522 96.695465) + (xy 134.6395 96.897648) (xy 134.6395 97.102351) (xy 134.671522 97.304534) (xy 134.734781 97.499223) + (xy 134.827715 97.681613) (xy 134.948028 97.847213) (xy 135.092786 97.991971) (xy 135.247749 98.104556) + (xy 135.25839 98.112287) (xy 135.374607 98.171503) (xy 135.440776 98.205218) (xy 135.440778 98.205218) + (xy 135.440781 98.20522) (xy 135.525756 98.23283) (xy 135.635465 98.268477) (xy 135.736557 98.284488) + (xy 135.837648 98.3005) (xy 135.837649 98.3005) (xy 136.442351 98.3005) (xy 136.442352 98.3005) + (xy 136.644534 98.268477) (xy 136.839219 98.20522) (xy 137.02161 98.112287) (xy 137.150472 98.018664) + (xy 137.187213 97.991971) (xy 137.187215 97.991968) (xy 137.187219 97.991966) (xy 137.331966 97.847219) + (xy 137.331968 97.847215) (xy 137.331971 97.847213) (xy 137.384732 97.77459) (xy 137.452287 97.68161) + (xy 137.54522 97.499219) (xy 137.608477 97.304534) (xy 137.6405 97.102352) (xy 137.6405 96.897648) + (xy 137.608477 96.695466) (xy 137.608476 96.695464) (xy 137.555735 96.533143) (xy 137.54522 96.500781) + (xy 137.545218 96.500778) (xy 137.545218 96.500776) (xy 137.511503 96.434607) (xy 137.452287 96.31839) + (xy 137.428028 96.285) (xy 137.331971 96.152786) (xy 137.187213 96.008028) (xy 137.021614 95.887715) + (xy 137.015006 95.884348) (xy 136.928917 95.840483) (xy 136.878123 95.792511) (xy 136.861328 95.72469) + (xy 136.883865 95.658555) (xy 136.928917 95.619516) (xy 137.02161 95.572287) (xy 137.04277 95.556913) + (xy 137.187213 95.451971) (xy 137.187215 95.451968) (xy 137.187219 95.451966) (xy 137.307294 95.331891) + (xy 137.368617 95.298406) (xy 137.438309 95.30339) (xy 137.482656 95.331891) (xy 143.903181 101.752416) + (xy 143.936666 101.813739) (xy 143.9395 101.840097) (xy 143.9395 106.710908) (xy 143.919815 106.777947) + (xy 143.867914 106.823286) (xy 143.862173 106.825963) (xy 143.862169 106.825965) (xy 143.668597 106.961505) + (xy 143.501508 107.128594) (xy 143.371269 107.314595) (xy 143.316692 107.358219) (xy 143.247193 107.365412) + (xy 143.184839 107.33389) (xy 143.168119 107.314594) (xy 143.038113 107.128926) (xy 143.038108 107.12892) + (xy 142.871082 106.961894) (xy 142.677578 106.826399) (xy 142.463492 106.72657) (xy 142.463486 106.726567) + (xy 142.25 106.669364) (xy 142.25 107.566988) (xy 142.192993 107.534075) (xy 142.065826 107.5) (xy 141.934174 107.5) + (xy 141.807007 107.534075) (xy 141.75 107.566988) (xy 141.75 106.669364) (xy 141.749999 106.669364) + (xy 141.536513 106.726567) (xy 141.536507 106.72657) (xy 141.322422 106.826399) (xy 141.32242 106.8264) + (xy 141.128926 106.961886) (xy 141.006865 107.083947) (xy 140.945542 107.117431) (xy 140.87585 107.112447) + (xy 140.819917 107.070575) (xy 140.803002 107.039598) (xy 140.753797 106.907671) (xy 140.753793 106.907664) + (xy 140.667547 106.792455) (xy 140.667544 106.792452) (xy 140.552335 106.706206) (xy 140.552328 106.706202) + (xy 140.417482 106.655908) (xy 140.417483 106.655908) (xy 140.357883 106.649501) (xy 140.357881 106.6495) + (xy 140.357873 106.6495) (xy 140.357864 106.6495) (xy 138.562129 106.6495) (xy 138.562123 106.649501) + (xy 138.502516 106.655908) (xy 138.367671 106.706202) (xy 138.367664 106.706206) (xy 138.252455 106.792452) + (xy 138.252452 106.792455) (xy 138.166206 106.907664) (xy 138.166202 106.907671) (xy 138.115908 107.042517) + (xy 138.109501 107.102116) (xy 138.1095 107.102135) (xy 138.1095 108.89787) (xy 138.109501 108.897876) + (xy 138.115908 108.957483) (xy 138.166202 109.092328) (xy 138.166206 109.092335) (xy 138.252452 109.207544) + (xy 138.252455 109.207547) (xy 138.367664 109.293793) (xy 138.367671 109.293797) (xy 138.502517 109.344091) + (xy 138.502516 109.344091) (xy 138.509444 109.344835) (xy 138.562127 109.3505) (xy 140.357872 109.350499) + (xy 140.417483 109.344091) (xy 140.552331 109.293796) (xy 140.667546 109.207546) (xy 140.753796 109.092331) + (xy 140.803002 108.960401) (xy 140.844872 108.904468) (xy 140.910337 108.88005) (xy 140.97861 108.894901) + (xy 141.006865 108.916053) (xy 141.128917 109.038105) (xy 141.322421 109.1736) (xy 141.536507 109.273429) + (xy 141.536516 109.273433) (xy 141.75 109.330634) (xy 141.75 108.433012) (xy 141.807007 108.465925) + (xy 141.934174 108.5) (xy 142.065826 108.5) (xy 142.192993 108.465925) (xy 142.25 108.433012) (xy 142.25 109.330633) + (xy 142.463483 109.273433) (xy 142.463492 109.273429) (xy 142.677578 109.1736) (xy 142.871082 109.038105) + (xy 143.038105 108.871082) (xy 143.168119 108.685405) (xy 143.222696 108.641781) (xy 143.292195 108.634588) + (xy 143.354549 108.66611) (xy 143.371269 108.685405) (xy 143.501505 108.871401) (xy 143.668599 109.038495) + (xy 143.765384 109.106265) (xy 143.862165 109.174032) (xy 143.862167 109.174033) (xy 143.86217 109.174035) + (xy 144.076337 109.273903) (xy 144.304592 109.335063) (xy 144.481034 109.3505) (xy 144.539999 109.355659) + (xy 144.54 109.355659) (xy 144.540001 109.355659) (xy 144.598966 109.3505) (xy 144.775408 109.335063) + (xy 145.003663 109.273903) (xy 145.21783 109.174035) (xy 145.411401 109.038495) (xy 145.578495 108.871401) + (xy 145.708425 108.685842) (xy 145.763002 108.642217) (xy 145.8325 108.635023) (xy 145.894855 108.666546) + (xy 145.911575 108.685842) (xy 146.0415 108.871395) (xy 146.041505 108.871401) (xy 146.208599 109.038495) + (xy 146.305384 109.106265) (xy 146.402165 109.174032) (xy 146.402167 109.174033) (xy 146.40217 109.174035) + (xy 146.616337 109.273903) (xy 146.844592 109.335063) (xy 147.021034 109.3505) (xy 147.079999 109.355659) + (xy 147.08 109.355659) (xy 147.080001 109.355659) (xy 147.138966 109.3505) (xy 147.315408 109.335063) + (xy 147.543663 109.273903) (xy 147.75783 109.174035) (xy 147.951401 109.038495) (xy 148.118495 108.871401) + (xy 148.248425 108.685842) (xy 148.303002 108.642217) (xy 148.3725 108.635023) (xy 148.434855 108.666546) + (xy 148.451575 108.685842) (xy 148.5815 108.871395) (xy 148.581505 108.871401) (xy 148.748599 109.038495) + (xy 148.845384 109.106265) (xy 148.942165 109.174032) (xy 148.942167 109.174033) (xy 148.94217 109.174035) + (xy 149.156337 109.273903) (xy 149.384592 109.335063) (xy 149.561034 109.3505) (xy 149.619999 109.355659) + (xy 149.62 109.355659) (xy 149.620001 109.355659) (xy 149.678966 109.3505) (xy 149.855408 109.335063) + (xy 150.083663 109.273903) (xy 150.29783 109.174035) (xy 150.491401 109.038495) (xy 150.658495 108.871401) + (xy 150.788425 108.685842) (xy 150.843002 108.642217) (xy 150.9125 108.635023) (xy 150.974855 108.666546) + (xy 150.991575 108.685842) (xy 151.1215 108.871395) (xy 151.121505 108.871401) (xy 151.288599 109.038495) + (xy 151.385384 109.106265) (xy 151.482165 109.174032) (xy 151.482167 109.174033) (xy 151.48217 109.174035) + (xy 151.696337 109.273903) (xy 151.924592 109.335063) (xy 152.101034 109.3505) (xy 152.159999 109.355659) + (xy 152.16 109.355659) (xy 152.160001 109.355659) (xy 152.218966 109.3505) (xy 152.395408 109.335063) + (xy 152.623663 109.273903) (xy 152.83783 109.174035) (xy 153.031401 109.038495) (xy 153.198495 108.871401) + (xy 153.328425 108.685842) (xy 153.383002 108.642217) (xy 153.4525 108.635023) (xy 153.514855 108.666546) + (xy 153.531575 108.685842) (xy 153.6615 108.871395) (xy 153.661505 108.871401) (xy 153.828599 109.038495) + (xy 153.925384 109.106265) (xy 154.022165 109.174032) (xy 154.022167 109.174033) (xy 154.02217 109.174035) + (xy 154.236337 109.273903) (xy 154.464592 109.335063) (xy 154.641034 109.3505) (xy 154.699999 109.355659) + (xy 154.7 109.355659) (xy 154.700001 109.355659) (xy 154.758966 109.3505) (xy 154.935408 109.335063) + (xy 155.163663 109.273903) (xy 155.37783 109.174035) (xy 155.571401 109.038495) (xy 155.738495 108.871401) + (xy 155.868425 108.685842) (xy 155.923002 108.642217) (xy 155.9925 108.635023) (xy 156.054855 108.666546) + (xy 156.071575 108.685842) (xy 156.2015 108.871395) (xy 156.201505 108.871401) (xy 156.368599 109.038495) + (xy 156.465384 109.106265) (xy 156.562165 109.174032) (xy 156.562167 109.174033) (xy 156.56217 109.174035) + (xy 156.776337 109.273903) (xy 157.004592 109.335063) (xy 157.181034 109.3505) (xy 157.239999 109.355659) + (xy 157.24 109.355659) (xy 157.240001 109.355659) (xy 157.298966 109.3505) (xy 157.475408 109.335063) + (xy 157.703663 109.273903) (xy 157.91783 109.174035) (xy 158.111401 109.038495) (xy 158.278495 108.871401) + (xy 158.414035 108.67783) (xy 158.513903 108.463663) (xy 158.575063 108.235408) (xy 158.595659 108) + (xy 158.575063 107.764592) (xy 158.513903 107.536337) (xy 158.414035 107.322171) (xy 158.408731 107.314595) + (xy 158.278494 107.128597) (xy 158.111402 106.961506) (xy 158.111395 106.961501) (xy 157.917834 106.825967) + (xy 157.91783 106.825965) (xy 157.912085 106.823286) (xy 157.703663 106.726097) (xy 157.703659 106.726096) + (xy 157.703655 106.726094) (xy 157.475413 106.664938) (xy 157.475403 106.664936) (xy 157.240001 106.644341) + (xy 157.239999 106.644341) (xy 157.004596 106.664936) (xy 157.004586 106.664938) (xy 156.776344 106.726094) + (xy 156.776335 106.726098) (xy 156.562171 106.825964) (xy 156.562169 106.825965) (xy 156.368597 106.961505) + (xy 156.201505 107.128597) (xy 156.071575 107.314158) (xy 156.016998 107.357783) (xy 155.9475 107.364977) + (xy 155.885145 107.333454) (xy 155.868425 107.314158) (xy 155.738494 107.128597) (xy 155.571402 106.961506) + (xy 155.571395 106.961501) (xy 155.377831 106.825965) (xy 155.377826 106.825962) (xy 155.372091 106.823288) + (xy 155.319653 106.777113) (xy 155.3005 106.710908) (xy 155.3005 105.48906) (xy 155.300501 105.489047) + (xy 155.300501 105.320944) (xy 155.259576 105.168214) (xy 155.259573 105.168209) (xy 155.180524 105.03129) + (xy 155.180518 105.031282) (xy 137.585029 87.435794) (xy 137.551544 87.374471) (xy 137.554778 87.3098) + (xy 137.608477 87.144534) (xy 137.6405 86.942352) (xy 137.6405 86.942334) (xy 137.640745 86.939229) + (xy 137.641171 86.938109) (xy 137.641262 86.93754) (xy 137.641381 86.937558) (xy 137.66563 86.873941) + (xy 137.721862 86.832471) (xy 137.791587 86.827985) (xy 137.852043 86.861278) (xy 140.471284 89.48052) + (xy 140.471286 89.480521) (xy 140.47129 89.480524) (xy 140.608209 89.559573) (xy 140.608216 89.559577) + (xy 140.760943 89.600501) (xy 140.760945 89.600501) (xy 140.926654 89.600501) (xy 140.92667 89.6005) + (xy 144.699903 89.6005) (xy 144.766942 89.620185) (xy 144.787583 89.636818) (xy 151.531284 96.38052) + (xy 151.531286 96.380521) (xy 151.53129 96.380524) (xy 151.668209 96.459573) (xy 151.668216 96.459577) + (xy 151.820943 96.500501) (xy 151.820945 96.500501) (xy 151.986654 96.500501) (xy 151.98667 96.5005) + (xy 157.424199 96.5005) (xy 157.491238 96.520185) (xy 157.536993 96.572989) (xy 157.546937 96.642147) + (xy 157.54213 96.662817) (xy 157.531524 96.695457) (xy 157.531523 96.695464) (xy 157.4995 96.897648) + (xy 157.4995 97.102351) (xy 157.531522 97.304534) (xy 157.594781 97.499223) (xy 157.687715 97.681613) + (xy 157.808028 97.847213) (xy 157.952786 97.991971) (xy 158.107749 98.104556) (xy 158.11839 98.112287) + (xy 158.234607 98.171503) (xy 158.300776 98.205218) (xy 158.300778 98.205218) (xy 158.300781 98.20522) + (xy 158.385756 98.23283) (xy 158.495465 98.268477) (xy 158.596557 98.284488) (xy 158.697648 98.3005) + (xy 158.697649 98.3005) (xy 159.302351 98.3005) (xy 159.302352 98.3005) (xy 159.504534 98.268477) + (xy 159.699219 98.20522) (xy 159.88161 98.112287) (xy 160.010472 98.018664) (xy 160.047213 97.991971) + (xy 160.047215 97.991968) (xy 160.047219 97.991966) (xy 160.191966 97.847219) (xy 160.191968 97.847215) + (xy 160.191971 97.847213) (xy 160.244732 97.77459) (xy 160.312287 97.68161) (xy 160.40522 97.499219) + (xy 160.468477 97.304534) (xy 160.5005 97.102352) (xy 160.5005 96.897648) (xy 160.468477 96.695466) + (xy 160.468475 96.695462) (xy 160.468475 96.695457) (xy 160.45787 96.662817) (xy 160.455875 96.592976) + (xy 160.491956 96.533143) (xy 160.554657 96.502316) (xy 160.575801 96.5005) (xy 161.85151 96.5005) + (xy 161.918549 96.520185) (xy 161.964304 96.572989) (xy 161.974248 96.642147) (xy 161.953085 96.695623) + (xy 161.825965 96.877169) (xy 161.825964 96.877171) (xy 161.726098 97.091335) (xy 161.726094 97.091344) + (xy 161.664938 97.319586) (xy 161.664936 97.319596) (xy 161.644341 97.554999) (xy 161.644341 97.555) + (xy 161.664936 97.790403) (xy 161.664938 97.790413) (xy 161.726094 98.018655) (xy 161.726096 98.018659) + (xy 161.726097 98.018663) (xy 161.769755 98.112287) (xy 161.825965 98.23283) (xy 161.825967 98.232834) + (xy 161.850925 98.268477) (xy 161.961505 98.426401) (xy 162.128599 98.593495) (xy 162.18753 98.634759) + (xy 162.322165 98.729032) (xy 162.322167 98.729033) (xy 162.32217 98.729035) (xy 162.536337 98.828903) + (xy 162.764592 98.890063) (xy 162.952918 98.906539) (xy 162.999999 98.910659) (xy 163 98.910659) + (xy 163.000001 98.910659) (xy 163.039234 98.907226) (xy 163.235408 98.890063) (xy 163.463663 98.828903) + (xy 163.67783 98.729035) (xy 163.739709 98.685707) (xy 163.804877 98.640076) (xy 163.871083 98.617749) + (xy 163.93885 98.634759) (xy 163.986663 98.685707) (xy 164 98.741651) (xy 164 106.510892) (xy 163.980315 106.577931) + (xy 163.927511 106.623686) (xy 163.858353 106.63363) (xy 163.819705 106.621377) (xy 163.614383 106.516761) + (xy 163.614382 106.51676) (xy 163.614379 106.516759) (xy 163.374785 106.43891) (xy 163.125962 106.3995) + (xy 162.874038 106.3995) (xy 162.749626 106.419205) (xy 162.625214 106.43891) (xy 162.385616 106.51676) + (xy 162.161151 106.631132) (xy 161.95735 106.779201) (xy 161.957345 106.779205) (xy 161.779205 106.957345) + (xy 161.779201 106.95735) (xy 161.631132 107.161151) (xy 161.51676 107.385616) (xy 161.467788 107.536337) + (xy 161.43891 107.625215) (xy 161.3995 107.874038) (xy 161.3995 108.125962) (xy 161.428175 108.307007) + (xy 161.43891 108.374785) (xy 161.51676 108.614383) (xy 161.631132 108.838848) (xy 161.779201 109.042649) + (xy 161.779205 109.042654) (xy 161.957345 109.220794) (xy 161.95735 109.220798) (xy 162.12705 109.344091) + (xy 162.161155 109.36887) (xy 162.304184 109.441747) (xy 162.385616 109.483239) (xy 162.385618 109.483239) + (xy 162.385621 109.483241) (xy 162.625215 109.56109) (xy 162.874038 109.6005) (xy 162.874039 109.6005) + (xy 163.125961 109.6005) (xy 163.125962 109.6005) (xy 163.374785 109.56109) (xy 163.614379 109.483241) + (xy 163.819705 109.378621) (xy 163.888374 109.365726) (xy 163.953115 109.392002) (xy 163.993372 109.449109) + (xy 164 109.489107) (xy 164 109.876) (xy 163.980315 109.943039) (xy 163.927511 109.988794) (xy 163.876 110) + (xy 134.124 110) (xy 134.056961 109.980315) (xy 134.011206 109.927511) (xy 134 109.876) (xy 134 109.314389) + (xy 134.019685 109.24735) (xy 134.039555 109.224582) (xy 134.039211 109.224238) (xy 134.089849 109.1736) + (xy 134.220793 109.042656) (xy 134.36887 108.838845) (xy 134.483241 108.614379) (xy 134.56109 108.374785) + (xy 134.6005 108.125962) (xy 134.6005 107.874038) (xy 134.56109 107.625215) (xy 134.483241 107.385621) + (xy 134.483239 107.385618) (xy 134.483239 107.385616) (xy 134.441747 107.304184) (xy 134.36887 107.161155) + (xy 134.32599 107.102135) (xy 134.220798 106.95735) (xy 134.220794 106.957345) (xy 134.039211 106.775762) + (xy 134.040148 106.774824) (xy 134.005268 106.72137) (xy 134 106.68561) (xy 134 78.124) (xy 134.019685 78.056961) + (xy 134.072489 78.011206) (xy 134.124 78) (xy 134.51996 78) + ) + ) + (filled_polygon + (layer "B.Cu") + (pts + (xy 137.852044 89.401279) (xy 154.063181 105.612416) (xy 154.096666 105.673739) (xy 154.0995 105.700097) + (xy 154.0995 106.710908) (xy 154.079815 106.777947) (xy 154.027914 106.823286) (xy 154.022173 106.825963) + (xy 154.022169 106.825965) (xy 153.828597 106.961505) (xy 153.661505 107.128597) (xy 153.531575 107.314158) + (xy 153.476998 107.357783) (xy 153.4075 107.364977) (xy 153.345145 107.333454) (xy 153.328425 107.314158) + (xy 153.198494 107.128597) (xy 153.031402 106.961506) (xy 153.031395 106.961501) (xy 152.837834 106.825967) + (xy 152.83783 106.825965) (xy 152.832085 106.823286) (xy 152.623663 106.726097) (xy 152.623659 106.726096) + (xy 152.623655 106.726094) (xy 152.395413 106.664938) (xy 152.395403 106.664936) (xy 152.160001 106.644341) + (xy 152.159999 106.644341) (xy 151.924596 106.664936) (xy 151.924583 106.664939) (xy 151.796241 106.699327) + (xy 151.726392 106.697664) (xy 151.676468 106.667233) (xy 137.56951 92.560275) (xy 137.536025 92.498952) + (xy 137.541009 92.42926) (xy 137.543431 92.423755) (xy 137.543354 92.423723) (xy 137.545211 92.419235) + (xy 137.54522 92.419219) (xy 137.608477 92.224534) (xy 137.6405 92.022352) (xy 137.6405 91.817648) + (xy 137.608477 91.615466) (xy 137.54522 91.420781) (xy 137.545218 91.420778) (xy 137.545218 91.420776) + (xy 137.467278 91.267812) (xy 137.452287 91.23839) (xy 137.41106 91.181645) (xy 137.331971 91.072786) + (xy 137.187213 90.928028) (xy 137.021614 90.807715) (xy 137.015006 90.804348) (xy 136.928917 90.760483) + (xy 136.878123 90.712511) (xy 136.861328 90.64469) (xy 136.883865 90.578555) (xy 136.928917 90.539516) + (xy 137.02161 90.492287) (xy 137.04277 90.476913) (xy 137.187213 90.371971) (xy 137.187215 90.371968) + (xy 137.187219 90.371966) (xy 137.331966 90.227219) (xy 137.331968 90.227215) (xy 137.331971 90.227213) + (xy 137.384732 90.15459) (xy 137.452287 90.06161) (xy 137.54522 89.879219) (xy 137.608477 89.684534) + (xy 137.6405 89.482352) (xy 137.6405 89.482334) (xy 137.640745 89.479229) (xy 137.641171 89.478109) + (xy 137.641262 89.47754) (xy 137.641381 89.477558) (xy 137.66563 89.413941) (xy 137.721862 89.372471) + (xy 137.791587 89.367985) + ) + ) + (filled_polygon + (layer "B.Cu") + (pts + (xy 148.766942 87.620185) (xy 148.787584 87.636819) (xy 150.895139 89.744374) (xy 150.895149 89.744385) + (xy 150.899479 89.748715) (xy 150.89948 89.748716) (xy 151.011284 89.86052) (xy 151.098095 89.910639) + (xy 151.098097 89.910641) (xy 151.148213 89.939576) (xy 151.148215 89.939577) (xy 151.300942 89.9805) + (xy 151.300943 89.9805) (xy 157.570398 89.9805) (xy 157.637437 90.000185) (xy 157.680883 90.048205) + (xy 157.687715 90.061614) (xy 157.808028 90.227213) (xy 157.952786 90.371971) (xy 158.107749 90.484556) + (xy 158.11839 90.492287) (xy 158.20984 90.538883) (xy 158.21108 90.539515) (xy 158.261876 90.58749) + (xy 158.278671 90.655311) (xy 158.256134 90.721446) (xy 158.21108 90.760485) (xy 158.118386 90.807715) + (xy 157.952786 90.928028) (xy 157.808028 91.072786) (xy 157.687715 91.238386) (xy 157.594781 91.420776) + (xy 157.531522 91.615465) (xy 157.4995 91.817648) (xy 157.4995 92.022351) (xy 157.531522 92.224534) + (xy 157.594781 92.419223) (xy 157.635406 92.498952) (xy 157.687402 92.601) (xy 157.687715 92.601613) + (xy 157.808028 92.767213) (xy 157.952786 92.911971) (xy 158.107749 93.024556) (xy 158.11839 93.032287) + (xy 158.190424 93.06899) (xy 158.211629 93.079795) (xy 158.262425 93.12777) (xy 158.27922 93.195591) + (xy 158.256682 93.261726) (xy 158.211629 93.300765) (xy 158.11865 93.34814) (xy 157.953105 93.468417) + (xy 157.953104 93.468417) (xy 157.808417 93.613104) (xy 157.808417 93.613105) (xy 157.68814 93.77865) + (xy 157.595244 93.96097) (xy 157.532009 94.155586) (xy 157.523391 94.21) (xy 158.566988 94.21) (xy 158.534075 94.267007) + (xy 158.5 94.394174) (xy 158.5 94.525826) (xy 158.534075 94.652993) (xy 158.566988 94.71) (xy 157.523391 94.71) + (xy 157.532009 94.764413) (xy 157.595245 94.959032) (xy 157.676857 95.119206) (xy 157.689753 95.187875) + (xy 157.663476 95.252615) (xy 157.60637 95.292872) (xy 157.566372 95.2995) (xy 152.200098 95.2995) + (xy 152.133059 95.279815) (xy 152.112417 95.263181) (xy 146.017508 89.168273) (xy 145.984023 89.10695) + (xy 145.989007 89.037258) (xy 146.00592 89.006283) (xy 146.053796 88.942331) (xy 146.104091 88.807483) + (xy 146.1105 88.747873) (xy 146.1105 88.1745) (xy 146.130185 88.107461) (xy 146.182989 88.061706) + (xy 146.2345 88.0505) (xy 146.648331 88.0505) (xy 146.648347 88.050501) (xy 146.655943 88.050501) + (xy 146.814054 88.050501) (xy 146.814057 88.050501) (xy 146.966785 88.009577) (xy 147.016904 87.980639) + (xy 147.103716 87.93052) (xy 147.21552 87.818716) (xy 147.215521 87.818713) (xy 147.297418 87.736815) + (xy 147.35874 87.703333) (xy 147.385097 87.700499) (xy 147.441863 87.700499) (xy 147.559255 87.685045) + (xy 147.559255 87.685044) (xy 147.559262 87.685044) (xy 147.559267 87.685041) (xy 147.5604 87.684739) + (xy 147.561585 87.684738) (xy 147.567321 87.683984) (xy 147.56742 87.684738) (xy 147.61758 87.684737) + (xy 147.61768 87.683983) (xy 147.623407 87.684737) (xy 147.624591 87.684737) (xy 147.625734 87.685043) + (xy 147.625736 87.685043) (xy 147.625738 87.685044) (xy 147.743139 87.7005) (xy 148.25686 87.700499) + (xy 148.256863 87.700499) (xy 148.374253 87.685046) (xy 148.374257 87.685044) (xy 148.374262 87.685044) + (xy 148.520341 87.624536) (xy 148.520345 87.624532) (xy 148.527376 87.620474) (xy 148.528382 87.622216) + (xy 148.583432 87.600931) (xy 148.593757 87.6005) (xy 148.699903 87.6005) + ) + ) + (filled_polygon + (layer "B.Cu") + (pts + (xy 161.474809 78.740185) (xy 161.495446 78.756814) (xy 161.613182 78.874549) (xy 161.646666 78.93587) + (xy 161.6495 78.962229) (xy 161.6495 80.09787) (xy 161.649501 80.097876) (xy 161.655908 80.157483) + (xy 161.706202 80.292328) (xy 161.706206 80.292335) (xy 161.792452 80.407544) (xy 161.792455 80.407547) + (xy 161.907664 80.493793) (xy 161.907671 80.493797) (xy 161.969902 80.517007) (xy 162.039598 80.543002) + (xy 162.095531 80.584873) (xy 162.119949 80.650337) (xy 162.105098 80.71861) (xy 162.083947 80.746865) + (xy 161.961886 80.868926) (xy 161.8264 81.06242) (xy 161.826399 81.062422) (xy 161.72657 81.276507) + (xy 161.726567 81.276513) (xy 161.669364 81.489999) (xy 161.669364 81.49) (xy 162.566988 81.49) + (xy 162.534075 81.547007) (xy 162.5 81.674174) (xy 162.5 81.805826) (xy 162.534075 81.932993) (xy 162.566988 81.99) + (xy 161.669364 81.99) (xy 161.726567 82.203486) (xy 161.72657 82.203492) (xy 161.826399 82.417578) + (xy 161.961894 82.611082) (xy 162.128917 82.778105) (xy 162.314595 82.908119) (xy 162.358219 82.962696) + (xy 162.365412 83.032195) (xy 162.33389 83.094549) (xy 162.314595 83.111269) (xy 162.128594 83.241508) + (xy 161.961505 83.408597) (xy 161.825965 83.602169) (xy 161.825964 83.602171) (xy 161.726098 83.816335) + (xy 161.726094 83.816344) (xy 161.664938 84.044586) (xy 161.664936 84.044596) (xy 161.644341 84.279999) + (xy 161.644341 84.28) (xy 161.664936 84.515403) (xy 161.664938 84.515413) (xy 161.726094 84.743655) + (xy 161.726096 84.743659) (xy 161.726097 84.743663) (xy 161.768442 84.834471) (xy 161.825965 84.95783) + (xy 161.825967 84.957834) (xy 161.961501 85.151395) (xy 161.961506 85.151402) (xy 162.128597 85.318493) + (xy 162.128603 85.318498) (xy 162.314158 85.448425) (xy 162.357783 85.503002) (xy 162.364977 85.5725) + (xy 162.333454 85.634855) (xy 162.314158 85.651575) (xy 162.128597 85.781505) (xy 161.961505 85.948597) + (xy 161.825965 86.142169) (xy 161.825964 86.142171) (xy 161.726098 86.356335) (xy 161.726094 86.356344) + (xy 161.664938 86.584586) (xy 161.664936 86.584596) (xy 161.644341 86.819999) (xy 161.644341 86.82) + (xy 161.664936 87.055403) (xy 161.664938 87.055413) (xy 161.726094 87.283655) (xy 161.726096 87.283659) + (xy 161.726097 87.283663) (xy 161.768442 87.374471) (xy 161.825965 87.49783) (xy 161.825967 87.497834) + (xy 161.914687 87.624538) (xy 161.961505 87.691401) (xy 162.128599 87.858495) (xy 162.18753 87.899759) + (xy 162.322165 87.994032) (xy 162.322167 87.994033) (xy 162.32217 87.994035) (xy 162.536337 88.093903) + (xy 162.764592 88.155063) (xy 162.952918 88.171539) (xy 162.999999 88.175659) (xy 163 88.175659) + (xy 163.000001 88.175659) (xy 163.039234 88.172226) (xy 163.235408 88.155063) (xy 163.463663 88.093903) + (xy 163.67783 87.994035) (xy 163.76854 87.930519) (xy 163.804877 87.905076) (xy 163.871083 87.882749) + (xy 163.93885 87.899759) (xy 163.986663 87.950707) (xy 164 88.006651) (xy 164 91.001) (xy 163.980315 91.068039) + (xy 163.927511 91.113794) (xy 163.876 91.125) (xy 163.25 91.125) (xy 163.25 92.041988) (xy 163.192993 92.009075) + (xy 163.065826 91.975) (xy 162.934174 91.975) (xy 162.807007 92.009075) (xy 162.75 92.041988) (xy 162.75 91.125) + (xy 162.102155 91.125) (xy 162.042627 91.131401) (xy 162.04262 91.131403) (xy 161.907913 91.181645) + (xy 161.907906 91.181649) (xy 161.792812 91.267809) (xy 161.792809 91.267812) (xy 161.706649 91.382906) + (xy 161.706645 91.382913) (xy 161.656403 91.51762) (xy 161.656401 91.517627) (xy 161.65 91.577155) + (xy 161.65 92.225) (xy 162.566988 92.225) (xy 162.534075 92.282007) (xy 162.5 92.409174) (xy 162.5 92.540826) + (xy 162.534075 92.667993) (xy 162.566988 92.725) (xy 161.65 92.725) (xy 161.65 93.372844) (xy 161.656401 93.432372) + (xy 161.656403 93.432379) (xy 161.706645 93.567086) (xy 161.706649 93.567093) (xy 161.792809 93.682187) + (xy 161.792812 93.68219) (xy 161.907906 93.76835) (xy 161.907913 93.768354) (xy 162.03947 93.817421) + (xy 162.095403 93.859292) (xy 162.119821 93.924756) (xy 162.10497 93.993029) (xy 162.083819 94.021284) + (xy 161.961503 94.1436) (xy 161.825965 94.337169) (xy 161.825964 94.337171) (xy 161.726098 94.551335) + (xy 161.726094 94.551344) (xy 161.664938 94.779586) (xy 161.664936 94.779596) (xy 161.649221 94.959219) + (xy 161.644341 95.015) (xy 161.656839 95.157853) (xy 161.657438 95.164692) (xy 161.643672 95.233192) + (xy 161.595057 95.283375) (xy 161.53391 95.2995) (xy 160.433628 95.2995) (xy 160.366589 95.279815) + (xy 160.320834 95.227011) (xy 160.31089 95.157853) (xy 160.323143 95.119206) (xy 160.404754 94.959032) + (xy 160.46799 94.764413) (xy 160.476609 94.71) (xy 159.433012 94.71) (xy 159.465925 94.652993) (xy 159.5 94.525826) + (xy 159.5 94.394174) (xy 159.465925 94.267007) (xy 159.433012 94.21) (xy 160.476609 94.21) (xy 160.46799 94.155586) + (xy 160.404755 93.96097) (xy 160.311859 93.77865) (xy 160.191582 93.613105) (xy 160.191582 93.613104) + (xy 160.046895 93.468417) (xy 159.881349 93.34814) (xy 159.78837 93.300765) (xy 159.737574 93.25279) + (xy 159.720779 93.184969) (xy 159.743316 93.118835) (xy 159.78837 93.079795) (xy 159.78892 93.079515) + (xy 159.88161 93.032287) (xy 159.90277 93.016913) (xy 160.047213 92.911971) (xy 160.047215 92.911968) + (xy 160.047219 92.911966) (xy 160.191966 92.767219) (xy 160.191968 92.767215) (xy 160.191971 92.767213) + (xy 160.264057 92.667993) (xy 160.312287 92.60161) (xy 160.40522 92.419219) (xy 160.468477 92.224534) + (xy 160.5005 92.022352) (xy 160.5005 91.817648) (xy 160.468477 91.615466) (xy 160.40522 91.420781) + (xy 160.405218 91.420778) (xy 160.405218 91.420776) (xy 160.327278 91.267812) (xy 160.312287 91.23839) + (xy 160.27106 91.181645) (xy 160.191971 91.072786) (xy 160.047213 90.928028) (xy 159.881614 90.807715) + (xy 159.875006 90.804348) (xy 159.788917 90.760483) (xy 159.738123 90.712511) (xy 159.721328 90.64469) + (xy 159.743865 90.578555) (xy 159.788917 90.539516) (xy 159.88161 90.492287) (xy 159.90277 90.476913) + (xy 160.047213 90.371971) (xy 160.047215 90.371968) (xy 160.047219 90.371966) (xy 160.191966 90.227219) + (xy 160.191968 90.227215) (xy 160.191971 90.227213) (xy 160.244732 90.15459) (xy 160.312287 90.06161) + (xy 160.40522 89.879219) (xy 160.468477 89.684534) (xy 160.5005 89.482352) (xy 160.5005 89.277648) + (xy 160.483955 89.17319) (xy 160.468477 89.075465) (xy 160.405218 88.880776) (xy 160.367872 88.807482) + (xy 160.312287 88.69839) (xy 160.304556 88.687749) (xy 160.191971 88.532786) (xy 160.047213 88.388028) + (xy 159.881614 88.267715) (xy 159.875006 88.264348) (xy 159.788917 88.220483) (xy 159.738123 88.172511) + (xy 159.721328 88.10469) (xy 159.743865 88.038555) (xy 159.788917 87.999516) (xy 159.88161 87.952287) + (xy 160.010705 87.858495) (xy 160.047213 87.831971) (xy 160.047215 87.831968) (xy 160.047219 87.831966) + (xy 160.191966 87.687219) (xy 160.191968 87.687215) (xy 160.191971 87.687213) (xy 160.254657 87.600931) + (xy 160.312287 87.52161) (xy 160.40522 87.339219) (xy 160.468477 87.144534) (xy 160.5005 86.942352) + (xy 160.5005 86.737648) (xy 160.468477 86.535466) (xy 160.40522 86.340781) (xy 160.405218 86.340778) + (xy 160.405218 86.340776) (xy 160.371503 86.274607) (xy 160.312287 86.15839) (xy 160.264428 86.092517) + (xy 160.191971 85.992786) (xy 160.047213 85.848028) (xy 159.881614 85.727715) (xy 159.838815 85.705908) + (xy 159.788917 85.680483) (xy 159.738123 85.632511) (xy 159.721328 85.56469) (xy 159.743865 85.498555) + (xy 159.788917 85.459516) (xy 159.88161 85.412287) (xy 160.010705 85.318495) (xy 160.047213 85.291971) + (xy 160.047215 85.291968) (xy 160.047219 85.291966) (xy 160.191966 85.147219) (xy 160.191968 85.147215) + (xy 160.191971 85.147213) (xy 160.244732 85.07459) (xy 160.312287 84.98161) (xy 160.40522 84.799219) + (xy 160.468477 84.604534) (xy 160.5005 84.402352) (xy 160.5005 84.197648) (xy 160.468477 83.995466) + (xy 160.40522 83.800781) (xy 160.405218 83.800778) (xy 160.405218 83.800776) (xy 160.371503 83.734607) + (xy 160.312287 83.61839) (xy 160.300502 83.602169) (xy 160.191971 83.452786) (xy 160.047213 83.308028) + (xy 159.881614 83.187715) (xy 159.875006 83.184348) (xy 159.788917 83.140483) (xy 159.738123 83.092511) + (xy 159.721328 83.02469) (xy 159.743865 82.958555) (xy 159.788917 82.919516) (xy 159.88161 82.872287) + (xy 159.90277 82.856913) (xy 160.047213 82.751971) (xy 160.047215 82.751968) (xy 160.047219 82.751966) + (xy 160.191966 82.607219) (xy 160.191968 82.607215) (xy 160.191971 82.607213) (xy 160.244732 82.53459) + (xy 160.312287 82.44161) (xy 160.40522 82.259219) (xy 160.468477 82.064534) (xy 160.5005 81.862352) + (xy 160.5005 81.657648) (xy 160.476745 81.507669) (xy 160.468477 81.455465) (xy 160.419978 81.306202) + (xy 160.40522 81.260781) (xy 160.405218 81.260778) (xy 160.405218 81.260776) (xy 160.371503 81.194607) + (xy 160.312287 81.07839) (xy 160.300684 81.06242) (xy 160.191971 80.912786) (xy 160.047213 80.768028) + (xy 159.881614 80.647715) (xy 159.875006 80.644348) (xy 159.788917 80.600483) (xy 159.738123 80.552511) + (xy 159.721328 80.48469) (xy 159.743865 80.418555) (xy 159.788917 80.379516) (xy 159.88161 80.332287) + (xy 159.936605 80.292331) (xy 160.047213 80.211971) (xy 160.047215 80.211968) (xy 160.047219 80.211966) + (xy 160.191966 80.067219) (xy 160.191968 80.067215) (xy 160.191971 80.067213) (xy 160.244732 79.99459) + (xy 160.312287 79.90161) (xy 160.40522 79.719219) (xy 160.468477 79.524534) (xy 160.5005 79.322352) + (xy 160.5005 79.117648) (xy 160.468477 78.915466) (xy 160.468475 78.915462) (xy 160.468475 78.915457) + (xy 160.45787 78.882817) (xy 160.455875 78.812976) (xy 160.491956 78.753143) (xy 160.554657 78.722316) + (xy 160.575801 78.7205) (xy 161.40777 78.7205) + ) + ) + (filled_polygon + (layer "B.Cu") + (pts + (xy 148.06631 78.019685) (xy 148.112065 78.072489) (xy 148.122009 78.141647) (xy 148.092984 78.205203) + (xy 148.086952 78.211681) (xy 145.08545 81.213181) (xy 145.024127 81.246666) (xy 144.997769 81.2495) + (xy 143.062129 81.2495) (xy 143.062123 81.249501) (xy 143.002516 81.255908) (xy 142.867671 81.306202) + (xy 142.867664 81.306206) (xy 142.752455 81.392452) (xy 142.752452 81.392455) (xy 142.666206 81.507664) + (xy 142.666202 81.507671) (xy 142.615908 81.642517) (xy 142.609501 81.702116) (xy 142.6095 81.702135) + (xy 142.6095 84.29787) (xy 142.609501 84.297876) (xy 142.615908 84.357483) (xy 142.666202 84.492328) + (xy 142.666206 84.492335) (xy 142.752452 84.607544) (xy 142.752455 84.607547) (xy 142.867664 84.693793) + (xy 142.867671 84.693797) (xy 143.002517 84.744091) (xy 143.002516 84.744091) (xy 143.009444 84.744835) + (xy 143.062127 84.7505) (xy 145.657872 84.750499) (xy 145.717483 84.744091) (xy 145.852331 84.693796) + (xy 145.967546 84.607546) (xy 146.053796 84.492331) (xy 146.104091 84.357483) (xy 146.1105 84.297873) + (xy 146.110499 82.362228) (xy 146.130184 82.29519) (xy 146.146813 82.274553) (xy 149.664548 78.756819) + (xy 149.725871 78.723334) (xy 149.752229 78.7205) (xy 157.424199 78.7205) (xy 157.491238 78.740185) + (xy 157.536993 78.792989) (xy 157.546937 78.862147) (xy 157.54213 78.882817) (xy 157.531524 78.915457) + (xy 157.531523 78.915464) (xy 157.4995 79.117648) (xy 157.4995 79.322351) (xy 157.531522 79.524534) + (xy 157.594781 79.719223) (xy 157.687715 79.901613) (xy 157.808028 80.067213) (xy 157.952786 80.211971) + (xy 158.0634 80.292335) (xy 158.11839 80.332287) (xy 158.20984 80.378883) (xy 158.21108 80.379515) + (xy 158.261876 80.42749) (xy 158.278671 80.495311) (xy 158.256134 80.561446) (xy 158.21108 80.600485) + (xy 158.118386 80.647715) (xy 157.952786 80.768028) (xy 157.808028 80.912786) (xy 157.687715 81.078386) + (xy 157.594781 81.260776) (xy 157.531522 81.455465) (xy 157.4995 81.657648) (xy 157.4995 81.862351) + (xy 157.531522 82.064534) (xy 157.594781 82.259223) (xy 157.687715 82.441613) (xy 157.808028 82.607213) + (xy 157.952786 82.751971) (xy 158.107749 82.864556) (xy 158.11839 82.872287) (xy 158.20984 82.918883) + (xy 158.21108 82.919515) (xy 158.261876 82.96749) (xy 158.278671 83.035311) (xy 158.256134 83.101446) + (xy 158.21108 83.140485) (xy 158.118386 83.187715) (xy 157.952786 83.308028) (xy 157.808028 83.452786) + (xy 157.687715 83.618386) (xy 157.594781 83.800776) (xy 157.531522 83.995465) (xy 157.4995 84.197648) + (xy 157.4995 84.402351) (xy 157.531522 84.604534) (xy 157.594781 84.799223) (xy 157.643987 84.895794) + (xy 157.675596 84.95783) (xy 157.687715 84.981613) (xy 157.808028 85.147213) (xy 157.952786 85.291971) + (xy 158.107749 85.404556) (xy 158.11839 85.412287) (xy 158.189315 85.448425) (xy 158.21108 85.459515) + (xy 158.261876 85.50749) (xy 158.278671 85.575311) (xy 158.256134 85.641446) (xy 158.21108 85.680485) + (xy 158.118386 85.727715) (xy 157.952786 85.848028) (xy 157.808028 85.992786) (xy 157.687715 86.158386) + (xy 157.594781 86.340776) (xy 157.531522 86.535465) (xy 157.4995 86.737648) (xy 157.4995 86.942351) + (xy 157.531522 87.144534) (xy 157.594781 87.339223) (xy 157.643987 87.435794) (xy 157.675596 87.49783) + (xy 157.687715 87.521613) (xy 157.808028 87.687213) (xy 157.952786 87.831971) (xy 158.08843 87.93052) + (xy 158.11839 87.952287) (xy 158.17404 87.980642) (xy 158.21108 87.999515) (xy 158.261876 88.04749) + (xy 158.278671 88.115311) (xy 158.256134 88.181446) (xy 158.21108 88.220485) (xy 158.118386 88.267715) + (xy 157.952786 88.388028) (xy 157.808028 88.532786) (xy 157.687715 88.698385) (xy 157.680883 88.711795) + (xy 157.632909 88.762591) (xy 157.570398 88.7795) (xy 151.680097 88.7795) (xy 151.613058 88.759815) + (xy 151.592416 88.743181) (xy 149.48759 86.638355) (xy 149.487588 86.638352) (xy 149.368717 86.519481) + (xy 149.368716 86.51948) (xy 149.281904 86.46936) (xy 149.281904 86.469359) (xy 149.2819 86.469358) + (xy 149.231785 86.440423) (xy 149.079057 86.399499) (xy 148.920943 86.399499) (xy 148.913347 86.399499) + (xy 148.913331 86.3995) (xy 148.593757 86.3995) (xy 148.526718 86.379815) (xy 148.5214 86.376075) + (xy 148.520336 86.375461) (xy 148.374265 86.314957) (xy 148.37426 86.314955) (xy 148.256861 86.2995) + (xy 147.743136 86.2995) (xy 147.625734 86.314955) (xy 147.624583 86.315264) (xy 147.623391 86.315264) + (xy 147.617679 86.316016) (xy 147.61758 86.315264) (xy 147.567419 86.315264) (xy 147.56732 86.316017) + (xy 147.561607 86.315264) (xy 147.560417 86.315265) (xy 147.559265 86.314956) (xy 147.441861 86.2995) + (xy 146.928136 86.2995) (xy 146.810746 86.314953) (xy 146.810737 86.314956) (xy 146.66466 86.375463) + (xy 146.539218 86.471718) (xy 146.442963 86.59716) (xy 146.382456 86.743237) (xy 146.380353 86.751088) + (xy 146.378696 86.750644) (xy 146.354399 86.805576) (xy 146.296077 86.844051) (xy 146.259722 86.8495) + (xy 146.234499 86.8495) (xy 146.16746 86.829815) (xy 146.121705 86.777011) (xy 146.110499 86.7255) + (xy 146.110499 86.152129) (xy 146.110498 86.152123) (xy 146.110497 86.152116) (xy 146.104091 86.092517) + (xy 146.053796 85.957669) (xy 146.053795 85.957668) (xy 146.053793 85.957664) (xy 145.967547 85.842455) + (xy 145.967544 85.842452) (xy 145.852335 85.756206) (xy 145.852328 85.756202) (xy 145.717482 85.705908) + (xy 145.717483 85.705908) (xy 145.657883 85.699501) (xy 145.657881 85.6995) (xy 145.657873 85.6995) + (xy 145.657864 85.6995) (xy 143.062129 85.6995) (xy 143.062123 85.699501) (xy 143.002516 85.705908) + (xy 142.867671 85.756202) (xy 142.867664 85.756206) (xy 142.752455 85.842452) (xy 142.752452 85.842455) + (xy 142.666206 85.957664) (xy 142.666202 85.957671) (xy 142.615908 86.092517) (xy 142.61057 86.142171) + (xy 142.609501 86.152123) (xy 142.6095 86.152135) (xy 142.609501 88.2755) (xy 142.589816 88.342539) + (xy 142.537013 88.388294) (xy 142.485501 88.3995) (xy 141.140098 88.3995) (xy 141.073059 88.379815) + (xy 141.052417 88.363181) (xy 137.585029 84.895794) (xy 137.551544 84.834471) (xy 137.554778 84.7698) + (xy 137.608477 84.604534) (xy 137.6405 84.402352) (xy 137.6405 84.197648) (xy 137.608477 83.995466) + (xy 137.54522 83.800781) (xy 137.545218 83.800778) (xy 137.545218 83.800776) (xy 137.511503 83.734607) + (xy 137.452287 83.61839) (xy 137.440502 83.602169) (xy 137.331971 83.452786) (xy 137.187213 83.308028) + (xy 137.021614 83.187715) (xy 137.015006 83.184348) (xy 136.928917 83.140483) (xy 136.878123 83.092511) + (xy 136.861328 83.02469) (xy 136.883865 82.958555) (xy 136.928917 82.919516) (xy 137.02161 82.872287) + (xy 137.04277 82.856913) (xy 137.187213 82.751971) (xy 137.187215 82.751968) (xy 137.187219 82.751966) + (xy 137.331966 82.607219) (xy 137.331968 82.607215) (xy 137.331971 82.607213) (xy 137.384732 82.53459) + (xy 137.452287 82.44161) (xy 137.54522 82.259219) (xy 137.608477 82.064534) (xy 137.6405 81.862352) + (xy 137.6405 81.657648) (xy 137.616745 81.507669) (xy 137.608477 81.455465) (xy 137.559978 81.306202) + (xy 137.54522 81.260781) (xy 137.545218 81.260778) (xy 137.545218 81.260776) (xy 137.511503 81.194607) + (xy 137.452287 81.07839) (xy 137.440684 81.06242) (xy 137.331971 80.912786) (xy 137.300736 80.881551) + (xy 137.267251 80.820228) (xy 137.272235 80.750536) (xy 137.314107 80.694603) (xy 137.34508 80.677689) + (xy 137.382331 80.663796) (xy 137.497546 80.577546) (xy 137.583796 80.462331) (xy 137.634091 80.327483) + (xy 137.6405 80.267873) (xy 137.640499 78.172128) (xy 137.63675 78.137253) (xy 137.649157 78.068494) + (xy 137.696767 78.017358) (xy 137.76004 78) (xy 147.999271 78) + ) + ) + ) +) diff --git a/designs/weather_stations/cool-cloud/pcb/asylum.kicad_prl b/designs/weather_stations/cool-cloud/pcb/asylum.kicad_prl new file mode 100644 index 0000000..3a8b531 --- /dev/null +++ b/designs/weather_stations/cool-cloud/pcb/asylum.kicad_prl @@ -0,0 +1,83 @@ +{ + "board": { + "active_layer": 0, + "active_layer_preset": "All Layers", + "auto_track_width": true, + "hidden_netclasses": [], + "hidden_nets": [], + "high_contrast_mode": 0, + "net_color_mode": 1, + "opacity": { + "images": 0.6, + "pads": 1.0, + "tracks": 1.0, + "vias": 1.0, + "zones": 0.6 + }, + "selection_filter": { + "dimensions": true, + "footprints": true, + "graphics": true, + "keepouts": true, + "lockedItems": false, + "otherItems": true, + "pads": true, + "text": true, + "tracks": true, + "vias": true, + "zones": true + }, + "visible_items": [ + 0, + 1, + 2, + 3, + 4, + 5, + 8, + 9, + 10, + 11, + 12, + 13, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 32, + 33, + 34, + 35, + 36, + 39, + 40 + ], + "visible_layers": "fffffff_ffffffff", + "zone_display_mode": 0 + }, + "git": { + "repo_password": "", + "repo_type": "", + "repo_username": "", + "ssh_key": "" + }, + "meta": { + "filename": "asylum.kicad_prl", + "version": 3 + }, + "project": { + "files": [] + } +} diff --git a/designs/weather_stations/cool-cloud/pcb/asylum.kicad_pro b/designs/weather_stations/cool-cloud/pcb/asylum.kicad_pro new file mode 100644 index 0000000..4bbfaac --- /dev/null +++ b/designs/weather_stations/cool-cloud/pcb/asylum.kicad_pro @@ -0,0 +1,613 @@ +{ + "board": { + "3dviewports": [], + "design_settings": { + "defaults": { + "apply_defaults_to_fp_fields": false, + "apply_defaults_to_fp_shapes": false, + "apply_defaults_to_fp_text": false, + "board_outline_line_width": 0.05, + "copper_line_width": 0.2, + "copper_text_italic": false, + "copper_text_size_h": 1.5, + "copper_text_size_v": 1.5, + "copper_text_thickness": 0.3, + "copper_text_upright": false, + "courtyard_line_width": 0.05, + "dimension_precision": 4, + "dimension_units": 3, + "dimensions": { + "arrow_length": 1270000, + "extension_offset": 500000, + "keep_text_aligned": true, + "suppress_zeroes": false, + "text_position": 0, + "units_format": 1 + }, + "fab_line_width": 0.1, + "fab_text_italic": false, + "fab_text_size_h": 1.0, + "fab_text_size_v": 1.0, + "fab_text_thickness": 0.15, + "fab_text_upright": false, + "other_line_width": 0.1, + "other_text_italic": false, + "other_text_size_h": 1.0, + "other_text_size_v": 1.0, + "other_text_thickness": 0.15, + "other_text_upright": false, + "pads": { + "drill": 0.762, + "height": 1.524, + "width": 1.524 + }, + "silk_line_width": 0.1, + "silk_text_italic": false, + "silk_text_size_h": 1.0, + "silk_text_size_v": 1.0, + "silk_text_thickness": 0.1, + "silk_text_upright": false, + "zones": { + "min_clearance": 0.5 + } + }, + "diff_pair_dimensions": [], + "drc_exclusions": [ + "clearance|147782500|86900000|493ca73a-f449-4fec-8b91-ccb30cacfc65|24ed3ca4-e192-4535-a704-712c0bd67890", + "clearance|155377500|110100000|c6bd2c68-1c11-49f9-944f-41082538959f|233592bf-f5ef-423b-aab3-ec9b6384c8c9" + ], + "meta": { + "version": 2 + }, + "rule_severities": { + "annular_width": "error", + "clearance": "error", + "connection_width": "warning", + "copper_edge_clearance": "error", + "copper_sliver": "warning", + "courtyards_overlap": "error", + "diff_pair_gap_out_of_range": "error", + "diff_pair_uncoupled_length_too_long": "error", + "drill_out_of_range": "error", + "duplicate_footprints": "warning", + "extra_footprint": "warning", + "footprint": "error", + "footprint_symbol_mismatch": "warning", + "footprint_type_mismatch": "ignore", + "hole_clearance": "error", + "hole_near_hole": "error", + "holes_co_located": "warning", + "invalid_outline": "error", + "isolated_copper": "warning", + "item_on_disabled_layer": "error", + "items_not_allowed": "error", + "length_out_of_range": "error", + "lib_footprint_issues": "warning", + "lib_footprint_mismatch": "warning", + "malformed_courtyard": "error", + "microvia_drill_out_of_range": "error", + "missing_courtyard": "ignore", + "missing_footprint": "warning", + "net_conflict": "warning", + "npth_inside_courtyard": "ignore", + "padstack": "warning", + "pth_inside_courtyard": "ignore", + "shorting_items": "error", + "silk_edge_clearance": "warning", + "silk_over_copper": "warning", + "silk_overlap": "warning", + "skew_out_of_range": "error", + "solder_mask_bridge": "error", + "starved_thermal": "error", + "text_height": "warning", + "text_thickness": "warning", + "through_hole_pad_without_hole": "error", + "too_many_vias": "error", + "track_dangling": "warning", + "track_width": "error", + "tracks_crossing": "error", + "unconnected_items": "error", + "unresolved_variable": "error", + "via_dangling": "warning", + "zones_intersect": "error" + }, + "rules": { + "max_error": 0.005, + "min_clearance": 0.1, + "min_connection": 0.0, + "min_copper_edge_clearance": 0.5, + "min_hole_clearance": 0.25, + "min_hole_to_hole": 0.25, + "min_microvia_diameter": 0.2, + "min_microvia_drill": 0.1, + "min_resolved_spokes": 2, + "min_silk_clearance": 0.0, + "min_text_height": 0.8, + "min_text_thickness": 0.08, + "min_through_hole_diameter": 0.3, + "min_track_width": 0.1, + "min_via_annular_width": 0.1, + "min_via_diameter": 0.5, + "solder_mask_to_copper_clearance": 0.0, + "use_height_for_length_calcs": true + }, + "teardrop_options": [ + { + "td_onpadsmd": true, + "td_onroundshapesonly": false, + "td_ontrackend": false, + "td_onviapad": true + } + ], + "teardrop_parameters": [ + { + "td_allow_use_two_tracks": true, + "td_curve_segcount": 0, + "td_height_ratio": 1.0, + "td_length_ratio": 0.5, + "td_maxheight": 2.0, + "td_maxlen": 1.0, + "td_on_pad_in_zone": false, + "td_target_name": "td_round_shape", + "td_width_to_size_filter_ratio": 0.9 + }, + { + "td_allow_use_two_tracks": true, + "td_curve_segcount": 0, + "td_height_ratio": 1.0, + "td_length_ratio": 0.5, + "td_maxheight": 2.0, + "td_maxlen": 1.0, + "td_on_pad_in_zone": false, + "td_target_name": "td_rect_shape", + "td_width_to_size_filter_ratio": 0.9 + }, + { + "td_allow_use_two_tracks": true, + "td_curve_segcount": 0, + "td_height_ratio": 1.0, + "td_length_ratio": 0.5, + "td_maxheight": 2.0, + "td_maxlen": 1.0, + "td_on_pad_in_zone": false, + "td_target_name": "td_track_end", + "td_width_to_size_filter_ratio": 0.9 + } + ], + "track_widths": [], + "tuning_pattern_settings": { + "diff_pair_defaults": { + "corner_radius_percentage": 80, + "corner_style": 1, + "max_amplitude": 1.0, + "min_amplitude": 0.2, + "single_sided": false, + "spacing": 1.0 + }, + "diff_pair_skew_defaults": { + "corner_radius_percentage": 80, + "corner_style": 1, + "max_amplitude": 1.0, + "min_amplitude": 0.2, + "single_sided": false, + "spacing": 0.6 + }, + "single_track_defaults": { + "corner_radius_percentage": 80, + "corner_style": 1, + "max_amplitude": 1.0, + "min_amplitude": 0.2, + "single_sided": false, + "spacing": 0.6 + } + }, + "via_dimensions": [], + "zones_allow_external_fillets": false + }, + "ipc2581": { + "dist": "", + "distpn": "", + "internal_id": "", + "mfg": "", + "mpn": "" + }, + "layer_presets": [], + "viewports": [] + }, + "boards": [], + "cvpcb": { + "equivalence_files": [] + }, + "erc": { + "erc_exclusions": [], + "meta": { + "version": 0 + }, + "pin_map": [ + [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 2 + ], + [ + 0, + 2, + 0, + 1, + 0, + 0, + 1, + 0, + 2, + 2, + 2, + 2 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 1, + 0, + 1, + 2 + ], + [ + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 1, + 2, + 1, + 1, + 2 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 2 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 2 + ], + [ + 1, + 1, + 1, + 1, + 1, + 0, + 1, + 1, + 1, + 1, + 1, + 2 + ], + [ + 0, + 0, + 0, + 1, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 2 + ], + [ + 0, + 2, + 1, + 2, + 0, + 0, + 1, + 0, + 2, + 2, + 2, + 2 + ], + [ + 0, + 2, + 0, + 1, + 0, + 0, + 1, + 0, + 2, + 0, + 0, + 2 + ], + [ + 0, + 2, + 1, + 1, + 0, + 0, + 1, + 0, + 2, + 0, + 0, + 2 + ], + [ + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2 + ] + ], + "rule_severities": { + "bus_definition_conflict": "error", + "bus_entry_needed": "error", + "bus_to_bus_conflict": "error", + "bus_to_net_conflict": "error", + "conflicting_netclasses": "error", + "different_unit_footprint": "error", + "different_unit_net": "error", + "duplicate_reference": "error", + "duplicate_sheet_names": "error", + "endpoint_off_grid": "warning", + "extra_units": "error", + "global_label_dangling": "warning", + "hier_label_mismatch": "error", + "label_dangling": "error", + "lib_symbol_issues": "warning", + "missing_bidi_pin": "warning", + "missing_input_pin": "warning", + "missing_power_pin": "error", + "missing_unit": "warning", + "multiple_net_names": "warning", + "net_not_bus_member": "warning", + "no_connect_connected": "warning", + "no_connect_dangling": "warning", + "pin_not_connected": "error", + "pin_not_driven": "error", + "pin_to_pin": "warning", + "power_pin_not_driven": "error", + "similar_labels": "warning", + "simulation_model_issue": "ignore", + "unannotated": "error", + "unit_value_mismatch": "error", + "unresolved_variable": "error", + "wire_dangling": "error" + } + }, + "libraries": { + "pinned_footprint_libs": [], + "pinned_symbol_libs": [] + }, + "meta": { + "filename": "asylum.kicad_pro", + "version": 1 + }, + "net_settings": { + "classes": [ + { + "bus_width": 12, + "clearance": 0.2, + "diff_pair_gap": 0.25, + "diff_pair_via_gap": 0.25, + "diff_pair_width": 0.2, + "line_style": 0, + "microvia_diameter": 0.3, + "microvia_drill": 0.1, + "name": "Default", + "pcb_color": "rgba(0, 0, 0, 0.000)", + "schematic_color": "rgba(0, 0, 0, 0.000)", + "track_width": 0.2, + "via_diameter": 0.6, + "via_drill": 0.3, + "wire_width": 6 + }, + { + "bus_width": 12, + "clearance": 0.2, + "diff_pair_gap": 0.25, + "diff_pair_via_gap": 0.25, + "diff_pair_width": 0.2, + "line_style": 0, + "microvia_diameter": 0.3, + "microvia_drill": 0.1, + "name": "power", + "pcb_color": "rgba(0, 0, 0, 0.000)", + "schematic_color": "rgba(0, 0, 0, 0.000)", + "track_width": 0.5, + "via_diameter": 0.6, + "via_drill": 0.3, + "wire_width": 6 + } + ], + "meta": { + "version": 3 + }, + "net_colors": null, + "netclass_assignments": null, + "netclass_patterns": [ + { + "netclass": "power", + "pattern": "+3V3" + }, + { + "netclass": "power", + "pattern": "GND" + } + ] + }, + "pcbnew": { + "last_paths": { + "gencad": "", + "idf": "", + "netlist": "", + "plot": "", + "pos_files": "", + "specctra_dsn": "", + "step": "", + "svg": "", + "vrml": "" + }, + "page_layout_descr_file": "" + }, + "schematic": { + "annotate_start_num": 0, + "bom_export_filename": "", + "bom_fmt_presets": [], + "bom_fmt_settings": { + "field_delimiter": ",", + "keep_line_breaks": false, + "keep_tabs": false, + "name": "CSV", + "ref_delimiter": ",", + "ref_range_delimiter": "", + "string_delimiter": "\"" + }, + "bom_presets": [], + "bom_settings": { + "exclude_dnp": false, + "fields_ordered": [ + { + "group_by": false, + "label": "Reference", + "name": "Reference", + "show": true + }, + { + "group_by": true, + "label": "Value", + "name": "Value", + "show": true + }, + { + "group_by": false, + "label": "Datasheet", + "name": "Datasheet", + "show": true + }, + { + "group_by": false, + "label": "Footprint", + "name": "Footprint", + "show": true + }, + { + "group_by": false, + "label": "Qty", + "name": "${QUANTITY}", + "show": true + }, + { + "group_by": true, + "label": "DNP", + "name": "${DNP}", + "show": true + } + ], + "filter_string": "", + "group_symbols": true, + "name": "Grouped By Value", + "sort_asc": true, + "sort_field": "Reference" + }, + "connection_grid_size": 50.0, + "drawing": { + "dashed_lines_dash_length_ratio": 12.0, + "dashed_lines_gap_length_ratio": 3.0, + "default_line_thickness": 6.0, + "default_text_size": 50.0, + "field_names": [], + "intersheets_ref_own_page": false, + "intersheets_ref_prefix": "", + "intersheets_ref_short": false, + "intersheets_ref_show": false, + "intersheets_ref_suffix": "", + "junction_size_choice": 3, + "label_size_ratio": 0.375, + "operating_point_overlay_i_precision": 3, + "operating_point_overlay_i_range": "~A", + "operating_point_overlay_v_precision": 3, + "operating_point_overlay_v_range": "~V", + "overbar_offset_ratio": 1.23, + "pin_symbol_size": 25.0, + "text_offset_ratio": 0.15 + }, + "legacy_lib_dir": "", + "legacy_lib_list": [], + "meta": { + "version": 1 + }, + "net_format_name": "", + "page_layout_descr_file": "", + "plot_directory": "", + "spice_current_sheet_as_root": false, + "spice_external_command": "spice \"%I\"", + "spice_model_current_sheet_as_root": true, + "spice_save_all_currents": false, + "spice_save_all_dissipations": false, + "spice_save_all_voltages": false, + "subpart_first_id": 65, + "subpart_id_separator": 0 + }, + "sheets": [ + [ + "7f28c959-dabf-4319-828e-ced85b1a7732", + "Root" + ] + ], + "text_variables": {} +} diff --git a/designs/weather_stations/cool-cloud/pcb/asylum.kicad_sch b/designs/weather_stations/cool-cloud/pcb/asylum.kicad_sch new file mode 100644 index 0000000..7a20467 --- /dev/null +++ b/designs/weather_stations/cool-cloud/pcb/asylum.kicad_sch @@ -0,0 +1,3485 @@ +(kicad_sch + (version 20231120) + (generator "eeschema") + (generator_version "8.0") + (uuid "7f28c959-dabf-4319-828e-ced85b1a7732") + (paper "A4") + (lib_symbols + (symbol "Connector:TestPoint" + (pin_numbers hide) + (pin_names + (offset 0.762) hide) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "TP" + (at 0 6.858 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "TestPoint" + (at 0 5.08 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 5.08 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 5.08 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "test point" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "test point tp" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_fp_filters" "Pin* Test*" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "TestPoint_0_1" + (circle + (center 0 3.302) + (radius 0.762) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + ) + (symbol "TestPoint_1_1" + (pin passive line + (at 0 0 90) + (length 2.54) + (name "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) + (symbol "Connector_Generic_MountingPin:Conn_01x03_MountingPin" + (pin_names + (offset 1.016) hide) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "J" + (at 0 5.08 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "Conn_01x03_MountingPin" + (at 1.27 -5.08 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Generic connectable mounting pin connector, single row, 01x03, script generated (kicad-library-utils/schlib/autogen/connector/)" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "connector" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_fp_filters" "Connector*:*_1x??-1MP*" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "Conn_01x03_MountingPin_1_1" + (rectangle + (start -1.27 -2.413) + (end 0 -2.667) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start -1.27 0.127) + (end 0 -0.127) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start -1.27 2.667) + (end 0 2.413) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start -1.27 3.81) + (end 1.27 -3.81) + (stroke + (width 0.254) + (type default) + ) + (fill + (type background) + ) + ) + (polyline + (pts + (xy -1.016 -4.572) (xy 1.016 -4.572) + ) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (text "Mounting" + (at 0 -4.191 0) + (effects + (font + (size 0.381 0.381) + ) + ) + ) + (pin passive line + (at -5.08 2.54 0) + (length 3.81) + (name "Pin_1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -5.08 0 0) + (length 3.81) + (name "Pin_2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -5.08 -2.54 0) + (length 3.81) + (name "Pin_3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 0 -7.62 90) + (length 3.048) + (name "MountPin" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "MP" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) + (symbol "Connector_Generic_MountingPin:Conn_01x04_MountingPin" + (pin_names + (offset 1.016) hide) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "J" + (at 0 5.08 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "Conn_01x04_MountingPin" + (at 1.27 -7.62 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Generic connectable mounting pin connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "connector" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_fp_filters" "Connector*:*_1x??-1MP*" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "Conn_01x04_MountingPin_1_1" + (rectangle + (start -1.27 -4.953) + (end 0 -5.207) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start -1.27 -2.413) + (end 0 -2.667) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start -1.27 0.127) + (end 0 -0.127) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start -1.27 2.667) + (end 0 2.413) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start -1.27 3.81) + (end 1.27 -6.35) + (stroke + (width 0.254) + (type default) + ) + (fill + (type background) + ) + ) + (polyline + (pts + (xy -1.016 -7.112) (xy 1.016 -7.112) + ) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (text "Mounting" + (at 0 -6.731 0) + (effects + (font + (size 0.381 0.381) + ) + ) + ) + (pin passive line + (at -5.08 2.54 0) + (length 3.81) + (name "Pin_1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -5.08 0 0) + (length 3.81) + (name "Pin_2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -5.08 -2.54 0) + (length 3.81) + (name "Pin_3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -5.08 -5.08 0) + (length 3.81) + (name "Pin_4" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "4" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 0 -10.16 90) + (length 3.048) + (name "MountPin" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "MP" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) + (symbol "Connector_Generic_MountingPin:Conn_01x08_MountingPin" + (pin_names + (offset 1.016) hide) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "J" + (at 0 10.16 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "Conn_01x08_MountingPin" + (at 1.27 -12.7 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Generic connectable mounting pin connector, single row, 01x08, script generated (kicad-library-utils/schlib/autogen/connector/)" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "connector" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_fp_filters" "Connector*:*_1x??-1MP*" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "Conn_01x08_MountingPin_1_1" + (rectangle + (start -1.27 -10.033) + (end 0 -10.287) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start -1.27 -7.493) + (end 0 -7.747) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start -1.27 -4.953) + (end 0 -5.207) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start -1.27 -2.413) + (end 0 -2.667) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start -1.27 0.127) + (end 0 -0.127) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start -1.27 2.667) + (end 0 2.413) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start -1.27 5.207) + (end 0 4.953) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start -1.27 7.747) + (end 0 7.493) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start -1.27 8.89) + (end 1.27 -11.43) + (stroke + (width 0.254) + (type default) + ) + (fill + (type background) + ) + ) + (polyline + (pts + (xy -1.016 -12.192) (xy 1.016 -12.192) + ) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (text "Mounting" + (at 0 -11.811 0) + (effects + (font + (size 0.381 0.381) + ) + ) + ) + (pin passive line + (at -5.08 7.62 0) + (length 3.81) + (name "Pin_1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -5.08 5.08 0) + (length 3.81) + (name "Pin_2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -5.08 2.54 0) + (length 3.81) + (name "Pin_3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -5.08 0 0) + (length 3.81) + (name "Pin_4" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "4" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -5.08 -2.54 0) + (length 3.81) + (name "Pin_5" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "5" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -5.08 -5.08 0) + (length 3.81) + (name "Pin_6" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "6" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -5.08 -7.62 0) + (length 3.81) + (name "Pin_7" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "7" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -5.08 -10.16 0) + (length 3.81) + (name "Pin_8" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "8" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 0 -15.24 90) + (length 3.048) + (name "MountPin" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "MP" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) + (symbol "Device:R_Small" + (pin_numbers hide) + (pin_names + (offset 0.254) hide) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "R" + (at 0.762 0.508 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "R_Small" + (at 0.762 -1.016 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Resistor, small symbol" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "R resistor" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_fp_filters" "R_*" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "R_Small_0_1" + (rectangle + (start -0.762 1.778) + (end 0.762 -1.778) + (stroke + (width 0.2032) + (type default) + ) + (fill + (type none) + ) + ) + ) + (symbol "R_Small_1_1" + (pin passive line + (at 0 2.54 270) + (length 0.762) + (name "~" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 0 -2.54 90) + (length 0.762) + (name "~" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) + (symbol "MCU_Module:WeMos_D1_mini" + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "U" + (at 3.81 19.05 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "WeMos_D1_mini" + (at 1.27 -19.05 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Module:WEMOS_D1_mini_light" + (at 0 -29.21 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "https://wiki.wemos.cc/products:d1:d1_mini#documentation" + (at -46.99 -29.21 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "32-bit microcontroller module with WiFi" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "ESP8266 WiFi microcontroller ESP8266EX" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_fp_filters" "WEMOS*D1*mini*" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "WeMos_D1_mini_1_1" + (rectangle + (start -7.62 17.78) + (end 7.62 -17.78) + (stroke + (width 0.254) + (type default) + ) + (fill + (type background) + ) + ) + (pin input line + (at -10.16 10.16 0) + (length 2.54) + (name "~{RST}" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 0 -20.32 90) + (length 2.54) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "10" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at 10.16 0 180) + (length 2.54) + (name "D4" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "11" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at 10.16 2.54 180) + (length 2.54) + (name "D3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "12" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at 10.16 5.08 180) + (length 2.54) + (name "SDA/D2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "13" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at 10.16 7.62 180) + (length 2.54) + (name "SCL/D1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "14" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at -10.16 2.54 0) + (length 2.54) + (name "RX" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "15" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at -10.16 0 0) + (length 2.54) + (name "TX" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "16" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at 10.16 12.7 180) + (length 2.54) + (name "A0" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at 10.16 10.16 180) + (length 2.54) + (name "D0" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at 10.16 -2.54 180) + (length 2.54) + (name "SCK/D5" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "4" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at 10.16 -5.08 180) + (length 2.54) + (name "MISO/D6" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "5" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at 10.16 -7.62 180) + (length 2.54) + (name "MOSI/D7" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "6" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at 10.16 -10.16 180) + (length 2.54) + (name "CS/D8" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "7" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_out line + (at 2.54 20.32 270) + (length 2.54) + (name "3V3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "8" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at -2.54 20.32 270) + (length 2.54) + (name "5V" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "9" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) + (symbol "Mechanical:MountingHole" + (pin_names + (offset 1.016) + ) + (exclude_from_sim yes) + (in_bom no) + (on_board yes) + (property "Reference" "H" + (at 0 5.08 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "MountingHole" + (at 0 3.175 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Mounting Hole without connection" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "mounting hole" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_fp_filters" "MountingHole*" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "MountingHole_0_1" + (circle + (center 0 0) + (radius 1.27) + (stroke + (width 1.27) + (type default) + ) + (fill + (type none) + ) + ) + ) + ) + (symbol "power:+3V3" + (power) + (pin_numbers hide) + (pin_names + (offset 0) hide) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "#PWR" + (at 0 -3.81 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "+3V3" + (at 0 3.556 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"+3V3\"" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "global power" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "+3V3_0_1" + (polyline + (pts + (xy -0.762 1.27) (xy 0 2.54) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 0 0) (xy 0 2.54) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 0 2.54) (xy 0.762 1.27) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + ) + (symbol "+3V3_1_1" + (pin power_in line + (at 0 0 90) + (length 0) + (name "~" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) + (symbol "power:GND" + (power) + (pin_numbers hide) + (pin_names + (offset 0) hide) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "#PWR" + (at 0 -6.35 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 0 -3.81 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "global power" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "GND_0_1" + (polyline + (pts + (xy 0 0) (xy 0 -1.27) (xy 1.27 -1.27) (xy 0 -2.54) (xy -1.27 -1.27) (xy 0 -1.27) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + ) + (symbol "GND_1_1" + (pin power_in line + (at 0 0 270) + (length 0) + (name "~" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) + ) + (wire + (pts + (xy 101.6 80.01) (xy 95.25 80.01) + ) + (stroke + (width 0) + (type default) + ) + (uuid "1fbb5e68-975c-451d-a501-6f3177c03256") + ) + (wire + (pts + (xy 68.58 62.23) (xy 68.58 68.58) + ) + (stroke + (width 0) + (type default) + ) + (uuid "371d36dd-514c-44f4-9e8c-7ded55847ea2") + ) + (wire + (pts + (xy 101.6 69.85) (xy 101.6 80.01) + ) + (stroke + (width 0) + (type default) + ) + (uuid "501024c9-673a-4dbe-ad3f-f05cf3fc8d59") + ) + (wire + (pts + (xy 82.55 62.23) (xy 68.58 62.23) + ) + (stroke + (width 0) + (type default) + ) + (uuid "bf430a56-33e9-4c51-963a-6d3ced8d4388") + ) + (global_label "SDA" + (shape input) + (at 95.25 90.17 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + (uuid "01e4c893-a7ab-4a55-8077-df41a4b060a6") + (property "Intersheetrefs" "${INTERSHEET_REFS}" + (at 101.8033 90.17 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + (hide yes) + ) + ) + ) + (global_label "RESET" + (shape input) + (at 74.93 80.01 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + (uuid "10a4b9f0-d038-431f-b3e4-5a00cbb84a11") + (property "Intersheetrefs" "${INTERSHEET_REFS}" + (at 66.1997 80.01 0) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + (hide yes) + ) + ) + ) + (global_label "SCK" + (shape input) + (at 95.25 85.09 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + (uuid "3e3c3ff5-5082-456b-85e0-95d81f6ed8da") + (property "Intersheetrefs" "${INTERSHEET_REFS}" + (at 101.9847 85.09 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + (hide yes) + ) + ) + ) + (global_label "TEMP_SCL" + (shape input) + (at 71.12 49.53 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + (uuid "44af8014-488e-4cf1-ab12-09f458613190") + (property "Intersheetrefs" "${INTERSHEET_REFS}" + (at 58.8216 49.53 0) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + (hide yes) + ) + ) + ) + (global_label "CS" + (shape input) + (at 95.25 92.71 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + (uuid "45347857-8011-47f9-b2aa-335f7fd43070") + (property "Intersheetrefs" "${INTERSHEET_REFS}" + (at 100.7147 92.71 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + (hide yes) + ) + ) + ) + (global_label "TEMP_SCL" + (shape input) + (at 95.25 74.93 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + (uuid "47a7e707-e470-43b9-a52d-76c7624d63fc") + (property "Intersheetrefs" "${INTERSHEET_REFS}" + (at 107.5484 74.93 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + (hide yes) + ) + ) + ) + (global_label "RESET" + (shape input) + (at 120.65 77.47 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + (uuid "541cb553-afc9-4af1-bbe1-e935677a1787") + (property "Intersheetrefs" "${INTERSHEET_REFS}" + (at 111.9197 77.47 0) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + (hide yes) + ) + ) + ) + (global_label "A0" + (shape input) + (at 95.25 82.55 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + (uuid "9d91133f-de6f-4b04-b27f-5be0986611c1") + (property "Intersheetrefs" "${INTERSHEET_REFS}" + (at 100.5333 82.55 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + (hide yes) + ) + ) + ) + (global_label "BACKLIGHT" + (shape input) + (at 115.57 87.63 270) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + (uuid "ac79b8f6-b571-43f0-87a1-f78085180348") + (property "Intersheetrefs" "${INTERSHEET_REFS}" + (at 115.57 100.7148 90) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + (hide yes) + ) + ) + ) + (global_label "A0" + (shape input) + (at 120.65 80.01 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + (uuid "c0fa9766-4d3c-4b45-b3b8-44dada8b64fe") + (property "Intersheetrefs" "${INTERSHEET_REFS}" + (at 115.3667 80.01 0) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + (hide yes) + ) + ) + ) + (global_label "SCK" + (shape input) + (at 120.65 85.09 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + (uuid "d6982ecb-a1f0-4bd3-92f4-cb2ebc0f3d8c") + (property "Intersheetrefs" "${INTERSHEET_REFS}" + (at 113.9153 85.09 0) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + (hide yes) + ) + ) + ) + (global_label "TEMP_SDA" + (shape input) + (at 95.25 77.47 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + (uuid "dc73bdea-0043-4c09-aef6-979ebf112428") + (property "Intersheetrefs" "${INTERSHEET_REFS}" + (at 107.6089 77.47 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + (hide yes) + ) + ) + ) + (global_label "BACKLIGHT" + (shape input) + (at 95.25 87.63 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + (uuid "dcb18485-dcb9-49a9-8c32-797a4b756e0b") + (property "Intersheetrefs" "${INTERSHEET_REFS}" + (at 108.3348 87.63 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + (hide yes) + ) + ) + ) + (global_label "TEMP_SDA" + (shape input) + (at 71.12 52.07 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + (uuid "e203d8e7-10ba-4550-b863-696cdb97f6ff") + (property "Intersheetrefs" "${INTERSHEET_REFS}" + (at 58.7611 52.07 0) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + (hide yes) + ) + ) + ) + (global_label "CS" + (shape input) + (at 120.65 74.93 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + (uuid "e4a616e2-1550-4a7a-8fb5-dda818136796") + (property "Intersheetrefs" "${INTERSHEET_REFS}" + (at 115.1853 74.93 0) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + (hide yes) + ) + ) + ) + (global_label "SDA" + (shape input) + (at 120.65 82.55 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + (uuid "e6e9b97c-5258-466c-8be1-6adf33fa18a7") + (property "Intersheetrefs" "${INTERSHEET_REFS}" + (at 114.0967 82.55 0) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + (hide yes) + ) + ) + ) + (global_label "LED" + (shape input) + (at 68.58 71.12 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + (uuid "f31eed18-50ce-493c-9dec-fce77f1e72c8") + (property "Intersheetrefs" "${INTERSHEET_REFS}" + (at 75.0123 71.12 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + (hide yes) + ) + ) + ) + (global_label "LED" + (shape input) + (at 95.25 72.39 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + (uuid "f5cbd66b-d7cb-46bf-b3d4-f2a523306d80") + (property "Intersheetrefs" "${INTERSHEET_REFS}" + (at 101.6823 72.39 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + (hide yes) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 120.65 72.39 270) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "020d9d1c-f5bc-4deb-ba54-1f7112fca7ac") + (property "Reference" "#PWR05" + (at 114.3 72.39 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 116.84 72.3899 90) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + ) + (property "Footprint" "" + (at 120.65 72.39 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 120.65 72.39 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" + (at 120.65 72.39 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "62547a9b-33aa-4633-8a17-4c64f2e1f17c") + ) + (instances + (project "asylum" + (path "/7f28c959-dabf-4319-828e-ced85b1a7732" + (reference "#PWR05") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 68.58 73.66 90) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "40cad1db-37d5-4505-a7fc-30a8b5af65e7") + (property "Reference" "#PWR09" + (at 74.93 73.66 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 72.39 73.6599 90) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + ) + (property "Footprint" "" + (at 68.58 73.66 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 68.58 73.66 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" + (at 68.58 73.66 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "e0ac5a80-8372-490a-868e-1a59a29e5312") + ) + (instances + (project "asylum" + (path "/7f28c959-dabf-4319-828e-ced85b1a7732" + (reference "#PWR09") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Connector:TestPoint") + (at 95.25 52.07 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "450affa4-9efd-45f3-91d6-ec0c6796064d") + (property "Reference" "Button_P1" + (at 97.79 47.4979 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "TestPoint" + (at 97.79 50.0379 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "TestPoint:TestPoint_Pad_2.5x2.5mm" + (at 100.33 52.07 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 100.33 52.07 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "test point" + (at 95.25 52.07 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "6ed6a49d-3692-4664-a7e1-3295f5b3fd99") + ) + (instances + (project "asylum" + (path "/7f28c959-dabf-4319-828e-ced85b1a7732" + (reference "Button_P1") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Mechanical:MountingHole") + (at 72.39 118.11 0) + (unit 1) + (exclude_from_sim yes) + (in_bom no) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "5461c12a-ec93-4144-9029-44710357fad7") + (property "Reference" "H4" + (at 74.93 116.8399 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "MountingHole" + (at 74.93 119.3799 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "MountingHole:MountingHole_2.7mm_M2.5" + (at 72.39 118.11 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 72.39 118.11 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Mounting Hole without connection" + (at 72.39 118.11 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (instances + (project "asylum" + (path "/7f28c959-dabf-4319-828e-ced85b1a7732" + (reference "H4") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:+3V3") + (at 120.65 69.85 90) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "72583dca-c003-4839-a6ad-f07e58455d8c") + (property "Reference" "#PWR03" + (at 124.46 69.85 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "+3V3" + (at 116.84 69.8499 90) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "" + (at 120.65 69.85 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 120.65 69.85 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"+3V3\"" + (at 120.65 69.85 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "b48b3eff-f59a-429d-9c87-63088c7d452f") + ) + (instances + (project "asylum" + (path "/7f28c959-dabf-4319-828e-ced85b1a7732" + (reference "#PWR03") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:+3V3") + (at 87.63 62.23 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "8028973f-aaac-4bdc-ba5b-754ca65db8fd") + (property "Reference" "#PWR01" + (at 87.63 66.04 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "+3V3" + (at 87.63 57.15 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 87.63 62.23 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 87.63 62.23 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"+3V3\"" + (at 87.63 62.23 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "997fcc23-52e5-4dee-9cf7-3f6fb4182e3d") + ) + (instances + (project "" + (path "/7f28c959-dabf-4319-828e-ced85b1a7732" + (reference "#PWR01") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:R_Small") + (at 118.11 87.63 90) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "8dca19b5-da6f-42ef-9ed6-d1adad5752ef") + (property "Reference" "R1" + (at 118.11 89.408 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "10ohm" + (at 120.396 91.694 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "Capacitor_SMD:C_0201_0603Metric_Pad0.64x0.40mm_HandSolder" + (at 118.11 87.63 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 118.11 87.63 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Resistor, small symbol" + (at 118.11 87.63 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "f3df138c-06fc-4bce-9f32-8eac86562578") + ) + (pin "2" + (uuid "bd6fffc6-d1a3-4a7f-a8dd-e5a87a6b9b4c") + ) + (instances + (project "" + (path "/7f28c959-dabf-4319-828e-ced85b1a7732" + (reference "R1") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:+3V3") + (at 71.12 44.45 90) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "90456d7e-cbc0-4aab-b2eb-de4cbc644f61") + (property "Reference" "#PWR08" + (at 74.93 44.45 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "+3V3" + (at 67.31 44.4499 90) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "" + (at 71.12 44.45 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 71.12 44.45 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"+3V3\"" + (at 71.12 44.45 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "3c9b90d9-746c-4b7c-b039-1556a3d0a4eb") + ) + (instances + (project "asylum" + (path "/7f28c959-dabf-4319-828e-ced85b1a7732" + (reference "#PWR08") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Connector:TestPoint") + (at 101.6 64.77 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "a1b36521-bcbf-4fa0-b6d1-114b4b517a25") + (property "Reference" "Button_N1" + (at 104.14 60.1979 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "TestPoint" + (at 104.14 62.7379 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "TestPoint:TestPoint_Pad_2.5x2.5mm" + (at 106.68 64.77 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 106.68 64.77 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "test point" + (at 101.6 64.77 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "b5fe7b59-dbfb-497c-92e5-c93f527ac5b4") + ) + (instances + (project "" + (path "/7f28c959-dabf-4319-828e-ced85b1a7732" + (reference "Button_N1") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "MCU_Module:WeMos_D1_mini") + (at 85.09 82.55 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "adcd2d74-e370-492c-8ce7-2bfeb4e607d9") + (property "Reference" "U1" + (at 87.2841 102.87 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "WeMos_D1_mini" + (at 87.2841 105.41 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Module:WEMOS_D1_mini_light" + (at 85.09 111.76 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "https://wiki.wemos.cc/products:d1:d1_mini#documentation" + (at 38.1 111.76 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "32-bit microcontroller module with WiFi" + (at 85.09 82.55 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "13" + (uuid "bee6f5de-4cd1-42bc-a5f3-f7a19eb72240") + ) + (pin "12" + (uuid "0ba9b5e5-4866-4d98-a3dd-6863b4043ef8") + ) + (pin "3" + (uuid "9594d811-d4ee-4dd5-bc3b-3348e5ce628d") + ) + (pin "15" + (uuid "1f6d7896-12d9-47ad-abbf-38136ffc0f03") + ) + (pin "1" + (uuid "07acc79e-3566-4b3f-95b4-012fba44381b") + ) + (pin "9" + (uuid "7a2121bb-845e-4035-b671-36b833f26b33") + ) + (pin "6" + (uuid "5df0a9d4-a37e-4d5c-87b1-ae065e8146b4") + ) + (pin "5" + (uuid "876c3392-304e-4fce-be93-53311a0ed4dc") + ) + (pin "16" + (uuid "d70fd2ef-eff2-4200-8d94-d94c39df5f09") + ) + (pin "2" + (uuid "51b752c7-49a6-4b24-9c27-96b66e9ae9fb") + ) + (pin "4" + (uuid "cb1b4236-49f5-486a-a21d-91251d28bc79") + ) + (pin "10" + (uuid "2b7e5988-ff7c-45ac-a3f3-d26a8d445060") + ) + (pin "8" + (uuid "7af5d865-b2fb-4e4a-a5af-86aab8b41a29") + ) + (pin "14" + (uuid "4432f887-2461-47c0-9acf-ae91f364f083") + ) + (pin "11" + (uuid "a6f677d8-044b-46e1-85e5-5a4029b09843") + ) + (pin "7" + (uuid "198807a5-8b6a-46b8-bea1-d4961ff7d25e") + ) + (instances + (project "" + (path "/7f28c959-dabf-4319-828e-ced85b1a7732" + (reference "U1") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Mechanical:MountingHole") + (at 58.42 119.38 0) + (unit 1) + (exclude_from_sim yes) + (in_bom no) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "caa042fd-63b6-4649-9145-6008199b3fe1") + (property "Reference" "H3" + (at 60.96 118.1099 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "MountingHole" + (at 60.96 120.6499 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "MountingHole:MountingHole_2.7mm_M2.5" + (at 58.42 119.38 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 58.42 119.38 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Mounting Hole without connection" + (at 58.42 119.38 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (instances + (project "asylum" + (path "/7f28c959-dabf-4319-828e-ced85b1a7732" + (reference "H3") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Connector_Generic_MountingPin:Conn_01x03_MountingPin") + (at 63.5 71.12 180) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "d2a8b688-e895-4303-bd3e-a3d071738238") + (property "Reference" "J3" + (at 60.96 72.0345 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "Conn_01x03_MountingPin" + (at 61.468 55.626 90) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical" + (at 63.5 71.12 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 63.5 71.12 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Generic connectable mounting pin connector, single row, 01x03, script generated (kicad-library-utils/schlib/autogen/connector/)" + (at 63.5 71.12 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "3" + (uuid "611f573d-e80c-45b0-b87f-34183a00a2b2") + ) + (pin "1" + (uuid "886dc9f1-da95-4b55-a7c9-10c06a6f94b1") + ) + (pin "2" + (uuid "08841f4e-11b3-4a4e-8f2b-3d7bb61a1697") + ) + (pin "MP" + (uuid "bad3cf72-e7f3-41c6-ae1d-d53f96bd1f43") + ) + (instances + (project "" + (path "/7f28c959-dabf-4319-828e-ced85b1a7732" + (reference "J3") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 71.12 46.99 270) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "d5517511-497b-47f0-aa97-d7787770d759") + (property "Reference" "#PWR07" + (at 64.77 46.99 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 67.31 46.9899 90) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + ) + (property "Footprint" "" + (at 71.12 46.99 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 71.12 46.99 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" + (at 71.12 46.99 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "60694f56-600f-4a2c-ad11-7b1477cdf534") + ) + (instances + (project "asylum" + (path "/7f28c959-dabf-4319-828e-ced85b1a7732" + (reference "#PWR07") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:+3V3") + (at 95.25 52.07 180) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "d761564c-6426-448d-b6ce-e5d28cd3e483") + (property "Reference" "#PWR06" + (at 95.25 48.26 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "+3V3" + (at 95.25 57.15 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 95.25 52.07 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 95.25 52.07 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"+3V3\"" + (at 95.25 52.07 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "3f370964-1135-4462-b54e-c21f12e4514e") + ) + (instances + (project "asylum" + (path "/7f28c959-dabf-4319-828e-ced85b1a7732" + (reference "#PWR06") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Mechanical:MountingHole") + (at 58.42 111.76 0) + (unit 1) + (exclude_from_sim yes) + (in_bom no) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "d940e126-7104-467d-84f4-36ad853ed489") + (property "Reference" "H1" + (at 60.96 110.4899 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "MountingHole" + (at 60.96 113.0299 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "MountingHole:MountingHole_2.7mm_M2.5" + (at 58.42 111.76 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 58.42 111.76 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Mounting Hole without connection" + (at 58.42 111.76 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (instances + (project "" + (path "/7f28c959-dabf-4319-828e-ced85b1a7732" + (reference "H1") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Connector_Generic_MountingPin:Conn_01x04_MountingPin") + (at 76.2 46.99 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "da70803b-b9af-4722-96e7-e7a595fcfc44") + (property "Reference" "J2" + (at 78.74 47.3455 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "Conn_01x04_MountingPin" + (at 82.55 54.356 90) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_1x04_P2.54mm_Vertical" + (at 76.2 46.99 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 76.2 46.99 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Generic connectable mounting pin connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)" + (at 76.2 46.99 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "2" + (uuid "09b4b52b-20e8-4f14-9576-5618abb369ac") + ) + (pin "4" + (uuid "c5986f6a-61b9-4c6c-829f-d7af20ca4164") + ) + (pin "1" + (uuid "e28c68a7-b00a-4c18-9d00-b24a1b90a04e") + ) + (pin "3" + (uuid "2b9b0fb5-8764-4002-bc23-b1c6f8619763") + ) + (pin "MP" + (uuid "f64ec8fb-6980-4651-b13c-f8b27f79e961") + ) + (instances + (project "" + (path "/7f28c959-dabf-4319-828e-ced85b1a7732" + (reference "J2") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Connector_Generic_MountingPin:Conn_01x08_MountingPin") + (at 125.73 77.47 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "dcdcbd78-2073-4c1e-9570-2aedf76f206d") + (property "Reference" "J1" + (at 128.27 77.8255 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "Conn_01x08_MountingPin" + (at 128.27 80.3655 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_1x08_P2.54mm_Vertical" + (at 125.73 77.47 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 125.73 77.47 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Generic connectable mounting pin connector, single row, 01x08, script generated (kicad-library-utils/schlib/autogen/connector/)" + (at 125.73 77.47 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "5" + (uuid "b60204c4-a8fb-4d14-a036-bb1e742ff13d") + ) + (pin "1" + (uuid "9a240673-46e0-4eee-af3b-30d9a55279f0") + ) + (pin "8" + (uuid "29176b42-1f55-41ed-87b4-de5c20643851") + ) + (pin "4" + (uuid "8ef971b4-1993-4d2e-8612-7f969c092e25") + ) + (pin "7" + (uuid "d6851c14-6c60-4c3d-88ae-d64473c19a17") + ) + (pin "3" + (uuid "cf6e2d98-883a-4709-b68c-c06150e14442") + ) + (pin "6" + (uuid "2e03c793-b118-4881-94f1-5413de88a462") + ) + (pin "MP" + (uuid "a8de8413-9062-4341-8063-a30cf98dd23d") + ) + (pin "2" + (uuid "53ba3c10-bc68-4879-a9b7-bdf600f8dc1c") + ) + (instances + (project "" + (path "/7f28c959-dabf-4319-828e-ced85b1a7732" + (reference "J1") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 85.09 102.87 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "de743d54-9f89-4c17-9518-178e53548022") + (property "Reference" "#PWR04" + (at 85.09 109.22 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 85.09 107.95 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 85.09 102.87 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 85.09 102.87 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" + (at 85.09 102.87 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "b03d821b-74d5-43c2-b14a-8c38468ad446") + ) + (instances + (project "" + (path "/7f28c959-dabf-4319-828e-ced85b1a7732" + (reference "#PWR04") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:R_Small") + (at 101.6 67.31 180) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "fe46a1ff-780d-497c-91fe-da5685175a12") + (property "Reference" "R2" + (at 103.378 67.31 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "10ohm" + (at 105.664 67.31 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "Capacitor_SMD:C_0201_0603Metric_Pad0.64x0.40mm_HandSolder" + (at 101.6 67.31 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 101.6 67.31 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Resistor, small symbol" + (at 101.6 67.31 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "9baf2c6b-9021-4885-a4dc-f7dded4efa7a") + ) + (pin "2" + (uuid "350ee83d-adcf-47b3-a24f-4cbdf5686baa") + ) + (instances + (project "asylum" + (path "/7f28c959-dabf-4319-828e-ced85b1a7732" + (reference "R2") + (unit 1) + ) + ) + ) + ) + (sheet_instances + (path "/" + (page "1") + ) + ) +) From 56fb21c58dddccc4608b882faa9fac848c64f77c Mon Sep 17 00:00:00 2001 From: Jeffrey Wang <66625372+JeffreyWangDev@users.noreply.github.com> Date: Mon, 27 Jan 2025 16:23:54 -0500 Subject: [PATCH 6/6] Create README.md --- designs/weather_stations/cool-cloud/README.md | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 designs/weather_stations/cool-cloud/README.md diff --git a/designs/weather_stations/cool-cloud/README.md b/designs/weather_stations/cool-cloud/README.md new file mode 100644 index 0000000..102df2b --- /dev/null +++ b/designs/weather_stations/cool-cloud/README.md @@ -0,0 +1,8 @@ +# Here is my submission for the weather station +It uses the display to show current weather and a forecast +Instead of a case, I will put this in an old box that I have and fill it with cotton to make it look like a cloud. + +# PCB +![image](https://github.com/user-attachments/assets/b9cdcbb0-c48c-4ea6-b68c-3efaf5abf042) +[] I ran DRC in KiCad and have made sure there are 0 errors! +