-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathW5100S-EVB-Pico-Breakout.kicad_pcb
19589 lines (19559 loc) · 778 KB
/
W5100S-EVB-Pico-Breakout.kicad_pcb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
(kicad_pcb (version 20221018) (generator pcbnew)
(general
(thickness 1.6)
)
(paper "A4")
(layers
(0 "F.Cu" signal)
(31 "B.Cu" signal)
(32 "B.Adhes" user "B.Adhesive")
(33 "F.Adhes" user "F.Adhesive")
(34 "B.Paste" user)
(35 "F.Paste" user)
(36 "B.SilkS" user "B.Silkscreen")
(37 "F.SilkS" user "F.Silkscreen")
(38 "B.Mask" user)
(39 "F.Mask" user)
(40 "Dwgs.User" user "User.Drawings")
(41 "Cmts.User" user "User.Comments")
(42 "Eco1.User" user "User.Eco1")
(43 "Eco2.User" user "User.Eco2")
(44 "Edge.Cuts" user)
(45 "Margin" user)
(46 "B.CrtYd" user "B.Courtyard")
(47 "F.CrtYd" user "F.Courtyard")
(48 "B.Fab" user)
(49 "F.Fab" user)
(50 "User.1" user)
(51 "User.2" user)
(52 "User.3" user)
(53 "User.4" user)
(54 "User.5" user)
(55 "User.6" user)
(56 "User.7" user)
(57 "User.8" user)
(58 "User.9" user)
)
(setup
(pad_to_mask_clearance 0)
(pcbplotparams
(layerselection 0x00010fc_ffffffff)
(plot_on_all_layers_selection 0x0000000_00000000)
(disableapertmacros false)
(usegerberextensions false)
(usegerberattributes true)
(usegerberadvancedattributes true)
(creategerberjobfile true)
(dashed_line_dash_ratio 12.000000)
(dashed_line_gap_ratio 3.000000)
(svgprecision 4)
(plotframeref false)
(viasonmask false)
(mode 1)
(useauxorigin false)
(hpglpennumber 1)
(hpglpenspeed 20)
(hpglpendiameter 15.000000)
(dxfpolygonmode true)
(dxfimperialunits true)
(dxfusepcbnewfont true)
(psnegative false)
(psa4output false)
(plotreference true)
(plotvalue true)
(plotinvisibletext false)
(sketchpadsonfab false)
(subtractmaskfromsilk false)
(outputformat 1)
(mirror false)
(drillshape 0)
(scaleselection 1)
(outputdirectory "fabricage/")
)
)
(net 0 "")
(net 1 "+3.3V")
(net 2 "GPIO10")
(net 3 "GPIO2")
(net 4 "GPIO26")
(net 5 "GND")
(net 6 "+5V")
(net 7 "GPIO7")
(net 8 "GPIO3")
(net 9 "GPIO4")
(net 10 "GPIO5")
(net 11 "GPIO6")
(net 12 "GPIO8")
(net 13 "GPIO9")
(net 14 "GPIO0")
(net 15 "GPIO1")
(net 16 "GPIO13")
(net 17 "GPIO14")
(net 18 "GPIO15")
(net 19 "unconnected-(U1-GPIO16-Pad21)")
(net 20 "Net-(Led4-Pin_2)")
(net 21 "unconnected-(U1-GPIO18-Pad24)")
(net 22 "unconnected-(U1-GPIO19-Pad25)")
(net 23 "unconnected-(U1-GPIO20-Pad26)")
(net 24 "unconnected-(U1-GPIO21-Pad27)")
(net 25 "unconnected-(U1-GPIO22-Pad29)")
(net 26 "unconnected-(U1-RUN-Pad30)")
(net 27 "GPIO11")
(net 28 "unconnected-(U1-GPIO27_ADC1-Pad32)")
(net 29 "unconnected-(U1-AGND-Pad33)")
(net 30 "unconnected-(U1-GPIO28_ADC2-Pad34)")
(net 31 "unconnected-(U1-ADC_VREF-Pad35)")
(net 32 "unconnected-(U1-3V3_EN-Pad37)")
(net 33 "unconnected-(U1-VSYS-Pad39)")
(net 34 "unconnected-(U1-GPIO12-Pad16)")
(net 35 "+12V")
(net 36 "Net-(Q1-B)")
(net 37 "Net-(PIR1-Pin_1)")
(net 38 "GPIO22")
(net 39 "Net-(J1-Pin_6)")
(net 40 "Net-(J1-Pin_2)")
(net 41 "Net-(J1-Pin_4)")
(net 42 "unconnected-(U1-GND-Pad8)")
(net 43 "unconnected-(U1-GND-Pad13)")
(net 44 "unconnected-(U1-GND-Pad18)")
(net 45 "unconnected-(U1-GND-Pad23)")
(net 46 "unconnected-(U1-GND-Pad28)")
(net 47 "unconnected-(U1-GND-Pad38)")
(footprint "Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P15.24mm_Horizontal" (layer "F.Cu")
(tstamp 21095597-5be2-42e8-884a-d53f44e0adb2)
(at 98.1065 77.3189 -90)
(descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=15.24mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
(tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 15.24mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
(property "Sheetfile" "W5100S-EVB-Pico-Breakout.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor")
(property "ki_keywords" "R res resistor")
(path "/e73236a1-4e6c-410f-95ea-a450e61b165f")
(attr through_hole)
(fp_text reference "R2" (at 12.599771 -1.028086 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5fcfd54e-c355-44c4-b97a-5fb87313aadb)
)
(fp_text value "10K" (at 7.5617 0.032507 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b128df85-ed28-49a4-8fbe-285ce53fc975)
)
(fp_text user "${REFERENCE}" (at 7.62 0 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b488b292-afe2-4aea-b352-b4db152b56c1)
)
(fp_line (start 1.04 0) (end 4.35 0)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 63ca748c-7434-4005-8a1e-eed87190299b))
(fp_line (start 4.35 -1.37) (end 4.35 1.37)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e194362f-7802-43a6-b4e8-15bfe89ccb6d))
(fp_line (start 4.35 1.37) (end 10.89 1.37)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp bf713c58-3b07-441f-9726-c0d85a41ea6d))
(fp_line (start 10.89 -1.37) (end 4.35 -1.37)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2e272843-defb-4e63-930e-5b6799165049))
(fp_line (start 10.89 1.37) (end 10.89 -1.37)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d8c8e888-cf0f-434c-bb8a-576543346019))
(fp_line (start 14.2 0) (end 10.89 0)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c348623b-d14a-4ecc-a944-c28b7a2e1167))
(fp_line (start -1.05 -1.5) (end -1.05 1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 57fa4504-034f-417e-be2b-043e722ea53e))
(fp_line (start -1.05 1.5) (end 16.29 1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 67e6fdd0-41b8-42b1-aaa3-4a4da62800c8))
(fp_line (start 16.29 -1.5) (end -1.05 -1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 3248d89d-5bf7-47f9-8e29-7a4f3db65c92))
(fp_line (start 16.29 1.5) (end 16.29 -1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 955ca88c-01ab-4275-a535-ea857ce13736))
(fp_line (start 0 0) (end 4.47 0)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d285331c-24f7-4cd4-8141-1ccc7551e34b))
(fp_line (start 4.47 -1.25) (end 4.47 1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b05f32a5-68c7-43cd-9608-9a898b525eaf))
(fp_line (start 4.47 1.25) (end 10.77 1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 6fafdea8-f622-424c-b7a1-076e5c5791d2))
(fp_line (start 10.77 -1.25) (end 4.47 -1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp fae52f34-7956-42dd-9cc1-2cbae8584eb4))
(fp_line (start 10.77 1.25) (end 10.77 -1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a85064cb-0dc6-4235-96aa-97252e46b6d1))
(fp_line (start 15.24 0) (end 10.77 0)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 97168fb0-fdce-4f8f-b9f6-16f434e3d338))
(pad "1" thru_hole circle (at 0 0 270) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 1 "+3.3V") (pintype "passive") (tstamp 3f12dffc-a9f5-46a3-b13b-a9e4255417ca))
(pad "2" thru_hole oval (at 15.24 0 270) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 13 "GPIO9") (pintype "passive") (tstamp 4055b642-cbd7-4c10-b04c-548bdf06265d))
(model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P15.24mm_Horizontal.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "TerminalBlock_MetzConnect:TerminalBlock_MetzConnect_Type094_RT03504HBLU_1x04_P5.00mm_Horizontal" (layer "F.Cu")
(tstamp 66ded04b-51ac-4b57-ba07-ea04bc9b3b33)
(at 135.9156 43.6255 180)
(descr "terminal block Metz Connect Type094_RT03504HBLU, 4 pins, pitch 5mm, size 20x8.3mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.metz-connect.com/ru/system/files/productfiles/Data_sheet_310941_RT035xxHBLU_OFF-022742T.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect")
(tags "THT terminal block Metz Connect Type094_RT03504HBLU pitch 5mm size 20x8.3mm^2 drill 1.3mm pad 2.6mm")
(property "Sheetfile" "W5100S-EVB-Pico-Breakout.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Generic screw terminal, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)")
(property "ki_keywords" "screw terminal")
(path "/96dd0db1-db74-44f6-a5d4-3d74bc84ed1f")
(attr through_hole)
(fp_text reference "Reedswitch_3_en_1" (at 7.5 -5.36) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp fdaebf34-b391-4ae8-9395-48a31514eeb0)
)
(fp_text value "Screw_Terminal_01x04" (at 7.5 5.06) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d96b8e69-e034-4915-b553-a77a684f1819)
)
(fp_text user "${REFERENCE}" (at 7.5 2.75) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e8a89d5b-d5f1-411c-b3cc-cb2ad7001983)
)
(fp_line (start -2.8 3.56) (end -2.8 4.3)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 11924ce9-b62c-4c17-b1b8-5068eba7b5f0))
(fp_line (start -2.8 4.3) (end -2.3 4.3)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 10a7910d-11e0-4034-af42-a1c2a7793e1e))
(fp_line (start -2.56 -4.36) (end -2.56 4.06)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ba78d05d-c5e6-48c9-8539-ddd959551bb4))
(fp_line (start -2.56 -4.36) (end 17.561 -4.36)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e1071aef-142a-4c39-a522-2ec48daa3113))
(fp_line (start -2.56 -2.301) (end 17.561 -2.301)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1608c34f-eaf8-475d-a7ed-6041633ed570))
(fp_line (start -2.56 2) (end 17.561 2)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 14c98056-11f0-4049-81e9-8e270637524e))
(fp_line (start -2.56 3.5) (end 17.561 3.5)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 60151a11-3792-4747-8540-889f6a23f265))
(fp_line (start -2.56 4.06) (end 17.561 4.06)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a48f1bd7-9ec2-439a-8420-575b9afce120))
(fp_line (start -1 -4.3) (end -1 -3.3)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 11a4c986-1306-41f8-967a-2e681ba4b578))
(fp_line (start -1 -4.3) (end 1 -4.3)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp dfa74660-4cd6-4de1-ac02-a6202a3d7d63))
(fp_line (start -1 -3.3) (end 1 -3.3)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e6b609cc-79bc-4da3-8daa-bd54e837f397))
(fp_line (start 1 -4.3) (end 1 -3.3)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e82d674b-0a2a-4aa6-8930-a8409a29c62e))
(fp_line (start 3.773 1.023) (end 3.726 1.069)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 14112b56-8574-46e2-b25f-8282ad76b844))
(fp_line (start 3.966 1.239) (end 3.931 1.274)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 030f8cb4-02f3-4265-9ea7-33fd64e2cb4a))
(fp_line (start 4 -4.3) (end 4 -3.3)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 78c990e2-1162-4758-9466-6562d9a03f57))
(fp_line (start 4 -4.3) (end 6 -4.3)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f87a7349-b1b3-40e6-af99-df0b337cea8f))
(fp_line (start 4 -3.3) (end 6 -3.3)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 731a1a7c-68d2-43f8-a42f-fb50a6e927b6))
(fp_line (start 6 -4.3) (end 6 -3.3)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 77430d8f-e147-44bb-a8a4-b2cb2b412aac))
(fp_line (start 6.07 -1.275) (end 6.035 -1.239)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b3304563-0a02-4dad-85f8-6cf43e5475b6))
(fp_line (start 6.275 -1.069) (end 6.228 -1.023)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 13a331db-70f3-4919-8d96-e8909bc2848b))
(fp_line (start 8.773 1.023) (end 8.726 1.069)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1113da1c-3bce-455b-81ae-fad245311326))
(fp_line (start 8.966 1.239) (end 8.931 1.274)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5170b334-da36-43df-8419-5f6d5774a3e6))
(fp_line (start 9 -4.3) (end 9 -3.3)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1ddff32d-4ed6-4006-ab69-641c923d2571))
(fp_line (start 9 -4.3) (end 11 -4.3)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 51794e48-fe26-40a7-a840-5fd4b2bd9614))
(fp_line (start 9 -3.3) (end 11 -3.3)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1206c9fd-78a4-4a0e-ba9f-fd7bf57bb4f5))
(fp_line (start 11 -4.3) (end 11 -3.3)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 37b10f89-08d9-46bb-954a-e2db4ce2c48f))
(fp_line (start 11.07 -1.275) (end 11.035 -1.239)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 24d2da1a-da94-4d52-8d5b-e09a8be6d4b1))
(fp_line (start 11.275 -1.069) (end 11.228 -1.023)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c2013ba7-9721-49f5-9513-ef17c49601fb))
(fp_line (start 13.773 1.023) (end 13.726 1.069)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1c2d588e-7d1d-4a00-b51b-c60e88c2c903))
(fp_line (start 13.966 1.239) (end 13.931 1.274)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 48b5f517-1e39-4080-b1aa-b1b144c0e5ec))
(fp_line (start 14 -4.3) (end 14 -3.3)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 179d8866-a54e-4427-ae53-4f7a29a00f82))
(fp_line (start 14 -4.3) (end 16 -4.3)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ca15f08b-6b17-45ee-9265-5273f9739ec9))
(fp_line (start 14 -3.3) (end 16 -3.3)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f0f8f6c9-4439-410f-a173-82fc70847517))
(fp_line (start 16 -4.3) (end 16 -3.3)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f14c4481-1b73-4449-bc36-9f0d0b61e6e1))
(fp_line (start 16.07 -1.275) (end 16.035 -1.239)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b26442fc-82e5-4f42-a9b8-ae276db90e90))
(fp_line (start 16.275 -1.069) (end 16.228 -1.023)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3d63a6f0-ff47-4c37-b8bd-a05a1545ed89))
(fp_line (start 17.561 -4.36) (end 17.561 4.06)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0bf91618-86dd-40dd-98df-cda68c7dca5e))
(fp_arc (start -1.535427 0.683042) (mid -1.680501 -0.000524) (end -1.535 -0.684)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d6810cfd-908d-497a-be01-c1eaf2824429))
(fp_arc (start -0.683042 -1.535427) (mid 0.000524 -1.680501) (end 0.684 -1.535)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 82d86854-91d8-471b-af5c-3512a722288a))
(fp_arc (start 0.028805 1.680253) (mid -0.335551 1.646659) (end -0.684 1.535)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7fca4114-6005-4107-aa8e-209d0923b7c4))
(fp_arc (start 0.683318 1.534756) (mid 0.349292 1.643288) (end 0 1.68)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4752ce6f-5ab7-4bce-9ef0-5ba380223125))
(fp_arc (start 1.535427 -0.683042) (mid 1.680501 0.000524) (end 1.535 0.684)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0debef06-1b1e-4949-b52b-98834fcd57cb))
(fp_circle (center 5 0) (end 6.68 0)
(stroke (width 0.12) (type solid)) (fill none) (layer "F.SilkS") (tstamp 25964cf6-7b5f-42d9-9ba9-19f1e19f3661))
(fp_circle (center 10 0) (end 11.68 0)
(stroke (width 0.12) (type solid)) (fill none) (layer "F.SilkS") (tstamp fe151dbe-69d7-4fd3-b3a0-e2ba8a290e1a))
(fp_circle (center 15 0) (end 16.68 0)
(stroke (width 0.12) (type solid)) (fill none) (layer "F.SilkS") (tstamp f1fa74ab-4996-4447-a864-1f229e922973))
(fp_line (start -3 -4.81) (end -3 4.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 81e10f63-7020-4964-8de2-b7bd938b5d18))
(fp_line (start -3 4.5) (end 18 4.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e4ef9f25-57ce-4495-8a7a-db5eda346e09))
(fp_line (start 18 -4.81) (end -3 -4.81)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 81f7720f-abdd-4209-abfc-52c3cc8d0bca))
(fp_line (start 18 4.5) (end 18 -4.81)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 4af5ecd9-d44d-417d-bd07-636e6458f5c5))
(fp_line (start -2.5 -4.3) (end 17.5 -4.3)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2929a2dd-1372-41c7-8cfd-ca4767e6bdab))
(fp_line (start -2.5 -2.3) (end 17.5 -2.3)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9c4d9426-234a-45ee-bf0d-6eb8983759a6))
(fp_line (start -2.5 2) (end 17.5 2)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4b27d600-65c6-43c6-921c-c3f5d9dcd13e))
(fp_line (start -2.5 3.5) (end -2.5 -4.3)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4e8cd11d-a25d-41ae-8717-94cefc89035a))
(fp_line (start -2.5 3.5) (end 17.5 3.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9dd87b51-0b36-4515-95d4-cc7fcf902290))
(fp_line (start -2 4) (end -2.5 3.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a5c68fb9-8ded-4e01-b1bf-f62c92f9cdc7))
(fp_line (start -1 -4.3) (end -1 -3.3)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp fd049f3f-df41-466d-8be3-0a4ecccfd5c2))
(fp_line (start -1 -3.3) (end 1 -3.3)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 74d03e1e-bd4c-4c1a-bc60-188a226ab142))
(fp_line (start 0.955 -1.138) (end -1.138 0.955)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp fd790f96-9410-4c24-baf5-896232a9a46d))
(fp_line (start 1 -4.3) (end -1 -4.3)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8a85405a-1f4f-43b1-baca-c1737ea0584f))
(fp_line (start 1 -3.3) (end 1 -4.3)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 841ee478-4273-4d79-9329-7a8a5ed0d6ee))
(fp_line (start 1.138 -0.955) (end -0.955 1.138)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ef8fb115-96e1-411e-8b26-2e412852406c))
(fp_line (start 4 -4.3) (end 4 -3.3)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp de518d85-1607-443b-93b0-ccf08c4fb18b))
(fp_line (start 4 -3.3) (end 6 -3.3)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a209e5c5-18f3-42d6-aa74-68a1457a9796))
(fp_line (start 5.955 -1.138) (end 3.863 0.955)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7a345828-714c-4839-bf54-820d61c63773))
(fp_line (start 6 -4.3) (end 4 -4.3)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8d9fddae-744a-468d-b0d3-9935ac7d0b58))
(fp_line (start 6 -3.3) (end 6 -4.3)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp fbfc8a91-05b8-45c5-b965-bc6ae80e2939))
(fp_line (start 6.138 -0.955) (end 4.046 1.138)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a946e911-1bb3-4059-8309-1c4a6e0e6289))
(fp_line (start 9 -4.3) (end 9 -3.3)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 93968099-a542-4b22-a42d-4ea79c289d2a))
(fp_line (start 9 -3.3) (end 11 -3.3)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8eb99a61-0f62-4c1d-ac74-2f448a01114d))
(fp_line (start 10.955 -1.138) (end 8.863 0.955)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 17efe497-ac2d-4e7b-a7f4-b6dda21eedf9))
(fp_line (start 11 -4.3) (end 9 -4.3)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp eab02124-a510-409c-a536-99babba73e86))
(fp_line (start 11 -3.3) (end 11 -4.3)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c0d6827a-6e0e-4668-bf6c-e30e773bc278))
(fp_line (start 11.138 -0.955) (end 9.046 1.138)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp cac0a506-bfb0-4d04-a225-5426d04dfb95))
(fp_line (start 14 -4.3) (end 14 -3.3)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 73851d1b-8336-4018-9280-7eb4fe84e99a))
(fp_line (start 14 -3.3) (end 16 -3.3)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 432815cc-f2ec-4369-b174-d18552e184d5))
(fp_line (start 15.955 -1.138) (end 13.863 0.955)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e8f89f1c-70cc-48ab-8c6c-690930539fed))
(fp_line (start 16 -4.3) (end 14 -4.3)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e2bca18a-9bcb-4ab3-b46c-c878586e2c3f))
(fp_line (start 16 -3.3) (end 16 -4.3)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 33ddd00a-7bdc-4170-9121-e6202dfe1061))
(fp_line (start 16.138 -0.955) (end 14.046 1.138)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 344cc144-1586-491a-8fe0-61f92368a153))
(fp_line (start 17.5 -4.3) (end 17.5 4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp eb01e743-06c6-4357-bd89-cf445dcf7b48))
(fp_line (start 17.5 4) (end -2 4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 213e8791-9746-4c06-b6ac-45662af8eb74))
(fp_circle (center 0 0) (end 1.5 0)
(stroke (width 0.1) (type solid)) (fill none) (layer "F.Fab") (tstamp 42c3959a-6277-4687-806c-08ffcef7d30a))
(fp_circle (center 5 0) (end 6.5 0)
(stroke (width 0.1) (type solid)) (fill none) (layer "F.Fab") (tstamp e9a5d3a4-a8d9-48e0-8851-3449581ce13d))
(fp_circle (center 10 0) (end 11.5 0)
(stroke (width 0.1) (type solid)) (fill none) (layer "F.Fab") (tstamp 613bc53a-bed9-4bbc-8ae3-5330c006a7c4))
(fp_circle (center 15 0) (end 16.5 0)
(stroke (width 0.1) (type solid)) (fill none) (layer "F.Fab") (tstamp 525fe0c2-0bab-4741-b614-2c1f639708c1))
(pad "1" thru_hole rect (at 0 0 180) (size 2.6 2.6) (drill 1.3) (layers "*.Cu" "*.Mask")
(net 5 "GND") (pinfunction "Pin_1") (pintype "passive") (tstamp 3cce3681-2060-4bd5-b8dc-d0c50550bf85))
(pad "2" thru_hole circle (at 5 0 180) (size 2.6 2.6) (drill 1.3) (layers "*.Cu" "*.Mask")
(net 27 "GPIO11") (pinfunction "Pin_2") (pintype "passive") (tstamp 121261b3-6076-4e74-a320-6a8b47f7bc82))
(pad "3" thru_hole circle (at 10 0 180) (size 2.6 2.6) (drill 1.3) (layers "*.Cu" "*.Mask")
(net 5 "GND") (pinfunction "Pin_3") (pintype "passive") (tstamp 2daeb2b7-3ca5-48a8-9f09-c18848449d1c))
(pad "4" thru_hole circle (at 15 0 180) (size 2.6 2.6) (drill 1.3) (layers "*.Cu" "*.Mask")
(net 2 "GPIO10") (pinfunction "Pin_4") (pintype "passive") (tstamp 433d546d-458c-4e40-8d4c-581fe16863ca))
(model "${KICAD6_3DMODEL_DIR}/TerminalBlock_MetzConnect.3dshapes/TerminalBlock_MetzConnect_Type094_RT03504HBLU_1x04_P5.00mm_Horizontal.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P15.24mm_Horizontal" (layer "F.Cu")
(tstamp 68f7ad03-4f26-4eb3-bedf-5e997ef0f012)
(at 98.1065 111.8366 90)
(descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=15.24mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
(tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 15.24mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
(property "Sheetfile" "W5100S-EVB-Pico-Breakout.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor")
(property "ki_keywords" "R res resistor")
(path "/88ac04bb-0b05-4fe6-bf07-d8a77009190c")
(attr through_hole)
(fp_text reference "R5" (at 2.74257 1.070888 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4a70f705-f348-48e9-a042-1a4f89d5464a)
)
(fp_text value "10K" (at 7.569965 0.116632 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c687d119-356f-425e-8d01-e416a7277c5e)
)
(fp_text user "${REFERENCE}" (at 7.62 0 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a35cc2c5-ac38-47f7-8a0e-264ecc0afddd)
)
(fp_line (start 1.04 0) (end 4.35 0)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d14a94bd-06d9-4e0f-b2ae-6ee4fa214dff))
(fp_line (start 4.35 -1.37) (end 4.35 1.37)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ffd6431f-8c05-4f76-b46d-aa6dfb4fa4d5))
(fp_line (start 4.35 1.37) (end 10.89 1.37)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 74f381d3-a4f9-433b-a660-49e6dd17b92d))
(fp_line (start 10.89 -1.37) (end 4.35 -1.37)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6e4335e5-774c-4d4a-a17b-4ac51343acac))
(fp_line (start 10.89 1.37) (end 10.89 -1.37)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5cd45997-d4be-43a3-bc59-fa52b04db44c))
(fp_line (start 14.2 0) (end 10.89 0)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp dc6f7e8f-897c-4e8e-bfd2-9b716cea8476))
(fp_line (start -1.05 -1.5) (end -1.05 1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 7710a212-e825-4506-8c3b-9a150469cf85))
(fp_line (start -1.05 1.5) (end 16.29 1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 6f3f1bc7-81c5-4862-bd62-6e62abb7ac40))
(fp_line (start 16.29 -1.5) (end -1.05 -1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 4dc83007-192f-4de7-b81d-12e7ccfbf456))
(fp_line (start 16.29 1.5) (end 16.29 -1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 7e9d66c2-450f-4398-9362-3b0e6a7e191c))
(fp_line (start 0 0) (end 4.47 0)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d1b17113-68ce-4265-8bb9-2b0b08647bbb))
(fp_line (start 4.47 -1.25) (end 4.47 1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b4774251-55d3-4649-ab3b-3b4164ffb5db))
(fp_line (start 4.47 1.25) (end 10.77 1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b928fc26-0339-4379-aa7c-d7cd0a399039))
(fp_line (start 10.77 -1.25) (end 4.47 -1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9aa4e04b-ab75-48ca-92e1-c75f9f92e0e1))
(fp_line (start 10.77 1.25) (end 10.77 -1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 6284f828-8627-4757-8be5-dbb8a5d85584))
(fp_line (start 15.24 0) (end 10.77 0)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7240fc3d-bbf0-40db-85fa-8be59f3cc9ff))
(pad "1" thru_hole circle (at 0 0 90) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 6 "+5V") (pintype "passive") (tstamp 75dbe693-aa12-40ae-8756-395ffa5aa218))
(pad "2" thru_hole oval (at 15.24 0 90) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 7 "GPIO7") (pintype "passive") (tstamp 32945f28-c1d5-4b26-a92b-455e13634087))
(model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P15.24mm_Horizontal.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "MCU_RaspberryPi_and_Boards:W5100S-EVB-Pico" (layer "F.Cu")
(tstamp 6a5e8064-1fde-44ed-922b-5ec72533eee9)
(at 114.5011 89.1889)
(descr "Through hole straight pin header, 2x20, 2.54mm pitch, double rows")
(tags "Through hole pin header THT 2x20 2.54mm double row")
(property "Sheetfile" "W5100S-EVB-Pico-Breakout.kicad_sch")
(property "Sheetname" "")
(path "/829ea9f4-8dcb-4444-8674-aa775ccca340")
(attr through_hole)
(fp_text reference "U1" (at 0 0) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8d3edfbe-f86c-46bb-a06a-575ee10713b5)
)
(fp_text value "Pico" (at 0 2.159) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 57df0a21-b93d-4478-8367-f99abe91ebd4)
)
(fp_text user "ETHERNET" (at -2.955373 53.36309 unlocked) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.1)) (justify left bottom))
(tstamp 1ac7b705-f086-45d8-8658-e3382baf61a4)
)
(fp_text user "USB" (at -1.640835 -23.296566 unlocked) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.1)) (justify left bottom))
(tstamp ed3c6d95-f83b-437a-a305-3d486d3d82c0)
)
(fp_text user "${REFERENCE}" (at 0 0 180) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9aa04381-a618-4294-9326-5d1fadd07df6)
)
(fp_line (start -10.5 -25.5) (end -10.5 25.5)
(stroke (width 0.1) (type default)) (layer "F.SilkS") (tstamp 363fd671-42a2-4398-be17-ffa9a0e75914))
(fp_line (start -10.5 -25.5) (end 10.5 -25.5)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 05abcd47-979a-4c1c-a3b3-a3eb5bd07f0a))
(fp_line (start -10.5 49.5) (end -10.5 -25.5)
(stroke (width 0.1) (type default)) (layer "F.SilkS") (tstamp 34e8b052-69e3-4a22-8ea9-d0a42dd0b54e))
(fp_line (start -10.5 49.5) (end 10.5 49.5)
(stroke (width 0.1) (type default)) (layer "F.SilkS") (tstamp dc7cf0a0-4887-4ce5-aa10-26cd2be3e205))
(fp_line (start -8.54134 49.503657) (end -8.54134 54.503657)
(stroke (width 0.1) (type default)) (layer "F.SilkS") (tstamp 1572d0b9-b4d8-40f1-bb6c-905255863c41))
(fp_line (start -8.54134 54.503657) (end 8.474434 54.500749)
(stroke (width 0.1) (type default)) (layer "F.SilkS") (tstamp 278ee570-91f8-4640-bc7f-e3996f1dabb9))
(fp_line (start -3.132941 -26.341383) (end 2.538776 -26.331985)
(stroke (width 0.1) (type default)) (layer "F.SilkS") (tstamp f6c5c1ee-4e50-44b3-911d-770aafe358af))
(fp_line (start -3.132941 -25.500343) (end -3.132941 -26.341383)
(stroke (width 0.1) (type default)) (layer "F.SilkS") (tstamp 6ad80c11-e29a-46f9-a651-69e528f1e624))
(fp_line (start 2.538776 -26.331985) (end 2.54 -25.513594)
(stroke (width 0.1) (type default)) (layer "F.SilkS") (tstamp aa7f6725-f875-42d3-8447-45def24cb9c6))
(fp_line (start 8.474434 49.500749) (end 8.474434 54.500749)
(stroke (width 0.1) (type default)) (layer "F.SilkS") (tstamp 4f765a23-c44f-4c0b-9cde-fc8694927b82))
(fp_line (start 10.5 -25.5) (end 10.5 25.5)
(stroke (width 0.1) (type default)) (layer "F.SilkS") (tstamp 83619deb-fe62-41f3-9fc2-0e6459e75526))
(fp_line (start 10.5 49.5) (end 10.5 -25.5)
(stroke (width 0.1) (type default)) (layer "F.SilkS") (tstamp df64f162-3ec9-4073-b21d-3f245eed6da7))
(fp_line (start -11 -26) (end 11 -26)
(stroke (width 0.12) (type solid)) (layer "F.CrtYd") (tstamp 48a48e11-ae16-4e44-975c-65c786fa9f81))
(fp_line (start -11 26) (end -11 -26)
(stroke (width 0.12) (type solid)) (layer "F.CrtYd") (tstamp d4c1cd00-603a-430f-b6ce-13219a8b0c34))
(fp_line (start 11 -26) (end 11 26)
(stroke (width 0.12) (type solid)) (layer "F.CrtYd") (tstamp 1ca107a2-05b0-438b-bdc6-1631d6b7d506))
(fp_line (start 11 26) (end -11 26)
(stroke (width 0.12) (type solid)) (layer "F.CrtYd") (tstamp 1f3027ed-22ae-4a5b-a601-4d61dcbe7b02))
(fp_line (start -10.5 -25.5) (end 10.5 -25.5)
(stroke (width 0.12) (type solid)) (layer "F.Fab") (tstamp 2290f602-0df4-46e5-98b4-e1f054c23e0b))
(fp_line (start -10.5 25.5) (end -10.5 -25.5)
(stroke (width 0.12) (type solid)) (layer "F.Fab") (tstamp 4db73418-c48a-4807-b740-70a3f502ee23))
(fp_line (start 10.5 -25.5) (end 10.5 25.5)
(stroke (width 0.12) (type solid)) (layer "F.Fab") (tstamp b390f031-473d-439f-95fb-741f51407969))
(pad "1" thru_hole oval (at -8.89 -24.13) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask")
(net 14 "GPIO0") (pinfunction "GPIO0") (pintype "bidirectional") (tstamp ab698029-c523-4c22-96d3-37e9ff4b95ad))
(pad "2" thru_hole oval (at -8.89 -21.59) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask")
(net 15 "GPIO1") (pinfunction "GPIO1") (pintype "bidirectional") (tstamp b23449ed-109c-4672-8cfb-c69b5cd07a1a))
(pad "3" thru_hole rect (at -8.89 -19.05) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask")
(net 5 "GND") (pinfunction "GND") (pintype "bidirectional") (tstamp 1a9ac92f-c909-4c17-8eae-e60e06b40df8))
(pad "4" thru_hole oval (at -8.89 -16.51) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask")
(net 3 "GPIO2") (pinfunction "GPIO2") (pintype "bidirectional") (tstamp 3da2a725-2d92-4fd3-955d-549fd9f80e52))
(pad "5" thru_hole oval (at -8.89 -13.97) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask")
(net 8 "GPIO3") (pinfunction "GPIO3") (pintype "bidirectional") (tstamp 2bd2cf46-c4ec-4920-b689-da516a904e6c))
(pad "6" thru_hole oval (at -8.89 -11.43) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask")
(net 9 "GPIO4") (pinfunction "GPIO4") (pintype "bidirectional") (tstamp 9113833f-6992-47ea-a260-e806e9ba3885))
(pad "7" thru_hole oval (at -8.89 -8.89) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask")
(net 10 "GPIO5") (pinfunction "GPIO5") (pintype "bidirectional") (tstamp 56020909-36c5-4836-a80f-a778653c2ba2))
(pad "8" thru_hole rect (at -8.89 -6.35) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask")
(net 42 "unconnected-(U1-GND-Pad8)") (pinfunction "GND") (pintype "power_in") (tstamp 785564de-4576-40fc-95c6-d6cfa305c1bf))
(pad "9" thru_hole oval (at -8.89 -3.81) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask")
(net 11 "GPIO6") (pinfunction "GPIO6") (pintype "bidirectional") (tstamp becad106-0bff-46e4-8b65-94128b56ae1a))
(pad "10" thru_hole oval (at -8.89 -1.27) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask")
(net 7 "GPIO7") (pinfunction "GPIO7") (pintype "bidirectional") (tstamp 3b15eb06-df23-49e3-a50b-51f08929be13))
(pad "11" thru_hole oval (at -8.89 1.27) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask")
(net 12 "GPIO8") (pinfunction "GPIO8") (pintype "bidirectional") (tstamp 472e8c10-d533-408f-b28b-f6b52dfba02f))
(pad "12" thru_hole oval (at -8.89 3.81) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask")
(net 13 "GPIO9") (pinfunction "GPIO9") (pintype "bidirectional") (tstamp 283164e7-8120-4ca2-a819-a22c2d3b2003))
(pad "13" thru_hole rect (at -8.89 6.35) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask")
(net 43 "unconnected-(U1-GND-Pad13)") (pinfunction "GND") (pintype "power_in") (tstamp ef7cb3ca-bbd7-444d-9d4d-daf385b014bf))
(pad "14" thru_hole oval (at -8.89 8.89) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask")
(net 2 "GPIO10") (pinfunction "GPIO10") (pintype "bidirectional") (tstamp 268c5dfc-a094-4c38-a79c-dc76a7234157))
(pad "15" thru_hole oval (at -8.89 11.43) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask")
(net 27 "GPIO11") (pinfunction "GPIO11") (pintype "bidirectional") (tstamp 04072102-4f57-454d-b97a-3a47bddfe6cf))
(pad "16" thru_hole oval (at -8.89 13.97) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask")
(net 34 "unconnected-(U1-GPIO12-Pad16)") (pinfunction "GPIO12") (pintype "bidirectional") (tstamp 9cb68462-ad5a-475d-8871-414308169b7a))
(pad "17" thru_hole oval (at -8.89 16.51) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask")
(net 16 "GPIO13") (pinfunction "GPIO13") (pintype "bidirectional") (tstamp 90dc2a29-bfba-4d2f-b352-81e189f58ad1))
(pad "18" thru_hole rect (at -8.89 19.05) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask")
(net 44 "unconnected-(U1-GND-Pad18)") (pinfunction "GND") (pintype "power_in") (tstamp 5a5d346f-4fc4-4586-826e-e7c544caa6a4))
(pad "19" thru_hole oval (at -8.89 21.59) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask")
(net 17 "GPIO14") (pinfunction "GPIO14") (pintype "bidirectional") (tstamp d724a334-2e93-48d0-b4c2-367a90c86f96))
(pad "20" thru_hole oval (at -8.89 24.13) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask")
(net 18 "GPIO15") (pinfunction "GPIO15") (pintype "bidirectional") (tstamp 2c0e193b-4116-47aa-9392-4964312df45e))
(pad "21" thru_hole oval (at 8.89 24.13) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask")
(net 19 "unconnected-(U1-GPIO16-Pad21)") (pinfunction "GPIO16") (pintype "bidirectional") (tstamp 169a20fe-da5b-41c6-8a48-e3fd1d1d9b06))
(pad "22" thru_hole oval (at 8.89 21.59) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask")
(net 38 "GPIO22") (pinfunction "GPIO17") (pintype "bidirectional") (tstamp e04d9347-c43e-488a-8ad8-b9fb455d4c33))
(pad "23" thru_hole rect (at 8.89 19.05) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask")
(net 45 "unconnected-(U1-GND-Pad23)") (pinfunction "GND") (pintype "power_in") (tstamp c617fa67-c18d-4a16-a554-6e48479db8b6))
(pad "24" thru_hole oval (at 8.89 16.51) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask")
(net 21 "unconnected-(U1-GPIO18-Pad24)") (pinfunction "GPIO18") (pintype "bidirectional") (tstamp 036cb31d-05a5-4d24-9850-5b8115ee99a5))
(pad "25" thru_hole oval (at 8.89 13.97) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask")
(net 22 "unconnected-(U1-GPIO19-Pad25)") (pinfunction "GPIO19") (pintype "bidirectional") (tstamp 6f7fa7f1-fbe9-43d0-af5c-ed048ca357d1))
(pad "26" thru_hole oval (at 8.89 11.43) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask")
(net 23 "unconnected-(U1-GPIO20-Pad26)") (pinfunction "GPIO20") (pintype "bidirectional") (tstamp c21be585-c64a-468d-b9d2-3d3820554419))
(pad "27" thru_hole oval (at 8.89 8.89) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask")
(net 24 "unconnected-(U1-GPIO21-Pad27)") (pinfunction "GPIO21") (pintype "bidirectional") (tstamp 6ccddead-db10-4722-8bce-5f440c2cd0a7))
(pad "28" thru_hole rect (at 8.89 6.35) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask")
(net 46 "unconnected-(U1-GND-Pad28)") (pinfunction "GND") (pintype "power_in") (tstamp fc4952a6-6f7d-4dca-b337-a3ee22304c69))
(pad "29" thru_hole oval (at 8.89 3.81) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask")
(net 25 "unconnected-(U1-GPIO22-Pad29)") (pinfunction "GPIO22") (pintype "bidirectional") (tstamp 645c629f-e81a-4c80-be0d-b1d70a5e33ce))
(pad "30" thru_hole oval (at 8.89 1.27) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask")
(net 26 "unconnected-(U1-RUN-Pad30)") (pinfunction "RUN") (pintype "input") (tstamp 37bc61b5-1bc2-43b2-869a-8f6987ff4edc))
(pad "31" thru_hole oval (at 8.89 -1.27) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask")
(net 4 "GPIO26") (pinfunction "GPIO26_ADC0") (pintype "bidirectional") (tstamp e2c1ba0c-489a-41c7-9691-ce21b255b9c4))
(pad "32" thru_hole oval (at 8.89 -3.81) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask")
(net 28 "unconnected-(U1-GPIO27_ADC1-Pad32)") (pinfunction "GPIO27_ADC1") (pintype "bidirectional") (tstamp 1dc7a0b4-a759-47f5-bd97-3e4075f6663c))
(pad "33" thru_hole rect (at 8.89 -6.35) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask")
(net 29 "unconnected-(U1-AGND-Pad33)") (pinfunction "AGND") (pintype "power_in") (tstamp bd86e03b-c1ee-4a32-858e-2eaf6fcb1131))
(pad "34" thru_hole oval (at 8.89 -8.89) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask")
(net 30 "unconnected-(U1-GPIO28_ADC2-Pad34)") (pinfunction "GPIO28_ADC2") (pintype "bidirectional") (tstamp b4788c1a-e8d0-4c6b-8e5b-cd38637239de))
(pad "35" thru_hole oval (at 8.89 -11.43) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask")
(net 31 "unconnected-(U1-ADC_VREF-Pad35)") (pinfunction "ADC_VREF") (pintype "power_in") (tstamp 997849c7-ad2d-421c-b607-e68feec479af))
(pad "36" thru_hole oval (at 8.89 -13.97) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask")
(net 1 "+3.3V") (pinfunction "3V3") (pintype "power_in") (tstamp 1b6f5b13-5115-46ec-94d7-319c25b6ffdd))
(pad "37" thru_hole oval (at 8.89 -16.51) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask")
(net 32 "unconnected-(U1-3V3_EN-Pad37)") (pinfunction "3V3_EN") (pintype "input") (tstamp efe43aa9-579b-4127-8cf9-9c9c90f77c5d))
(pad "38" thru_hole rect (at 8.89 -19.05) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask")
(net 47 "unconnected-(U1-GND-Pad38)") (pinfunction "GND") (pintype "bidirectional") (tstamp f985342b-8182-4827-ac86-3415347de14f))
(pad "39" thru_hole oval (at 8.89 -21.59) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask")
(net 33 "unconnected-(U1-VSYS-Pad39)") (pinfunction "VSYS") (pintype "power_in") (tstamp 5733d8ad-4829-4a8d-b84d-4e79b40e6674))
(pad "40" thru_hole oval (at 8.89 -24.13) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask")
(net 6 "+5V") (pinfunction "VBUS") (pintype "power_in") (tstamp ca6ad6e3-6fa2-43b5-a63c-ee9ca2ac370c))
(model "C:/Users/ncara/OneDrive/IoT/Tools/KiCad/RP-Pico Libraries/Pico.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P15.24mm_Horizontal" (layer "F.Cu")
(tstamp 702ace78-c37f-4fa0-8d3f-3142dc9e43d5)
(at 97.9672 131.8484 90)
(descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=15.24mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
(tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 15.24mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
(property "Sheetfile" "W5100S-EVB-Pico-Breakout.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor")
(property "ki_keywords" "R res resistor")
(path "/8b85daa8-bef6-4ca4-a23c-86b5f30dbac5")
(attr through_hole)
(fp_text reference "R9" (at 2.096606 1.035603 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9ce02452-dc1e-40bf-8b8d-89bb037b75e4)
)
(fp_text value "4.7K" (at 7.695977 0.092982 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3b1505b8-8d9a-43ac-b00b-4afd7ea62fd5)
)
(fp_text user "${REFERENCE}" (at 7.62 0 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a920ded8-dbd8-457e-8d01-82743e41e59d)
)
(fp_line (start 1.04 0) (end 4.35 0)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp fddc7345-c3f4-49ac-b32b-d717386f1368))
(fp_line (start 4.35 -1.37) (end 4.35 1.37)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 21ead680-20b6-48e9-b1c5-419a1bfbefc3))
(fp_line (start 4.35 1.37) (end 10.89 1.37)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b6830014-7c5c-4d72-b451-1085bd5e9f7b))
(fp_line (start 10.89 -1.37) (end 4.35 -1.37)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 47add1b5-6be9-4db0-8009-fdd7753c466b))
(fp_line (start 10.89 1.37) (end 10.89 -1.37)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0edbe0fe-4917-4118-beea-c81914ce9fc0))
(fp_line (start 14.2 0) (end 10.89 0)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8cecb8d3-c9da-49ee-bf6b-9d5199b72f85))
(fp_line (start -1.05 -1.5) (end -1.05 1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 343d3b4e-f888-4872-96c8-664a35cf066e))
(fp_line (start -1.05 1.5) (end 16.29 1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 85327453-6299-46fd-a72e-6c5c5415800f))
(fp_line (start 16.29 -1.5) (end -1.05 -1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 05f2bbf2-99e5-43a0-8c3c-b7d8e4a03841))
(fp_line (start 16.29 1.5) (end 16.29 -1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 860b6ed3-1e2e-4f3f-bd8b-debb188290f2))
(fp_line (start 0 0) (end 4.47 0)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d82c3a1a-2630-479b-9a90-9e3a32587f76))
(fp_line (start 4.47 -1.25) (end 4.47 1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8f807110-c1b6-4436-89a6-9ca64de96f9d))
(fp_line (start 4.47 1.25) (end 10.77 1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8ea7a3b5-69d7-4522-aeba-2c9f1efbdff2))
(fp_line (start 10.77 -1.25) (end 4.47 -1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 61951422-a94c-4a40-b6fc-2ad60d8e67e7))
(fp_line (start 10.77 1.25) (end 10.77 -1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 67b0db9e-8260-4b81-9b61-3ec7e13ae1d0))
(fp_line (start 15.24 0) (end 10.77 0)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4e8ccee9-5ace-42a7-80de-21bc6f2e771b))
(pad "1" thru_hole circle (at 0 0 90) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 1 "+3.3V") (pintype "passive") (tstamp b6d0cb08-4827-41bb-9b15-bd1ce7542242))
(pad "2" thru_hole oval (at 15.24 0 90) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 4 "GPIO26") (pintype "passive") (tstamp ae0b83c4-7b89-4aa1-ac8c-72d90be92822))
(model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P15.24mm_Horizontal.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P15.24mm_Horizontal" (layer "F.Cu")
(tstamp 8147a5c9-f0b2-4dc0-8766-39a099cf104f)
(at 101.1663 77.2606 -90)
(descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=15.24mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
(tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 15.24mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
(property "Sheetfile" "W5100S-EVB-Pico-Breakout.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor")
(property "ki_keywords" "R res resistor")
(path "/c9268914-99c9-4804-8e65-b15e3575d48c")
(attr through_hole)
(fp_text reference "R3" (at 12.658071 -1.226291 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp fde05f76-9186-4edc-b000-6da53d0ba4bc)
)
(fp_text value "10K" (at 7.62 0 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c16229bf-bd4c-4953-93be-a1eb57558fb5)
)
(fp_text user "${REFERENCE}" (at 7.62 0 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 933584ab-5fb3-48e9-a60f-c878a3c7f22b)
)
(fp_line (start 1.04 0) (end 4.35 0)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 99c441a8-7ded-42fb-bfd5-bdc0cf64711f))
(fp_line (start 4.35 -1.37) (end 4.35 1.37)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3791d42d-bdfe-4ad8-ae41-652a5c601594))
(fp_line (start 4.35 1.37) (end 10.89 1.37)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e7752936-9990-4ee5-8d61-76e123c800fd))
(fp_line (start 10.89 -1.37) (end 4.35 -1.37)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b88378a5-0722-4565-b842-f7473501b2e9))
(fp_line (start 10.89 1.37) (end 10.89 -1.37)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 322ba7ae-44ed-449d-8a2f-f74c14e38e2e))
(fp_line (start 14.2 0) (end 10.89 0)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a59b52bd-84b5-45d0-bef7-0850bec55fda))
(fp_line (start -1.05 -1.5) (end -1.05 1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 4915e4bb-3eff-4d8c-8705-31c3b6789b2d))
(fp_line (start -1.05 1.5) (end 16.29 1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e2e3770b-2572-4cc7-ae00-91a875256e54))
(fp_line (start 16.29 -1.5) (end -1.05 -1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 34200c35-3901-48bc-9578-ab39ac9b7c36))
(fp_line (start 16.29 1.5) (end 16.29 -1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c81e9ddd-b69a-493e-b59c-e4af98814703))
(fp_line (start 0 0) (end 4.47 0)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 102a3d3e-7221-4d59-84ec-c165e3739537))
(fp_line (start 4.47 -1.25) (end 4.47 1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8da9dc30-4a6a-4008-824d-1dfa6a8de9e2))
(fp_line (start 4.47 1.25) (end 10.77 1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3e5d519c-f4b8-4f91-96e5-e6f9b9800576))
(fp_line (start 10.77 -1.25) (end 4.47 -1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8aa06076-4a80-42fb-8452-0ddc20ed0163))
(fp_line (start 10.77 1.25) (end 10.77 -1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b50852b9-dac7-42ae-9aaf-5f4dea228238))
(fp_line (start 15.24 0) (end 10.77 0)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d2052843-ba62-4d79-b111-111938c01e52))
(pad "1" thru_hole circle (at 0 0 270) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 1 "+3.3V") (pintype "passive") (tstamp bf0bf1c3-af1c-4fc0-91ff-8039a65f3545))
(pad "2" thru_hole oval (at 15.24 0 270) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 2 "GPIO10") (pintype "passive") (tstamp 3eff5c36-2591-4333-8282-4b78778e3ce9))
(model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P15.24mm_Horizontal.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Custom_footprint_Library:Buzzer_12x9.5RM6.6_custom" (layer "F.Cu")
(tstamp 925cd56e-6b09-42fd-8e11-918016aba0fa)
(at 102.8846 56.6641)
(descr "Generic Buzzer, D12mm height 9.5mm with RM7.6mm")
(tags "buzzer")
(property "Sheetfile" "W5100S-EVB-Pico-Breakout.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Buzzer, polarized")
(property "ki_keywords" "quartz resonator ceramic")
(path "/785b4f0e-1131-4eda-9b72-8679f5c5ec92")
(attr through_hole)
(fp_text reference "BZ1" (at 6.080304 5.353974) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2360825f-eaec-462a-aca0-14bd5cccc121)
)
(fp_text value "Buzzer" (at 0 7.32139) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f9f56352-7d0d-4c4b-a43e-df420ec083e3)
)
(fp_text user "+" (at -3.81 -2.61861) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp bac28c92-6747-4643-8a24-b32494b9718d)
)
(fp_text user "${REFERENCE}" (at 0 -4.07861) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1e5b1f9e-8559-4fc0-a9eb-3c42b2c8d0df)
)
(fp_text user "+" (at -3.81 -2.61861) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 41ab26eb-52f2-4723-9454-087bdc9024c5)
)
(fp_circle (center 0 -0.07861) (end 6.1 -0.07861)
(stroke (width 0.12) (type solid)) (fill none) (layer "F.SilkS") (tstamp 514fff05-5d4c-46c6-b56b-7f24fa614d28))
(fp_circle (center 0 -0.07861) (end 6.25 -0.07861)
(stroke (width 0.05) (type solid)) (fill none) (layer "F.CrtYd") (tstamp dc9718d0-a14e-4699-bc5e-1011bfe8fec6))
(fp_circle (center 0 -0.07861) (end 1 -0.07861)
(stroke (width 0.1) (type solid)) (fill none) (layer "F.Fab") (tstamp 5c2428fb-3edb-45a0-8a63-b4b9655ef051))
(fp_circle (center 0 -0.07861) (end 6 -0.07861)
(stroke (width 0.1) (type solid)) (fill none) (layer "F.Fab") (tstamp 368a10d1-3284-43ad-91a2-1a1a7cfbc2e8))
(pad "1" thru_hole rect (at -3.3 -0.07861) (size 2 2) (drill 1) (layers "*.Cu" "*.Mask")
(net 3 "GPIO2") (pinfunction "-") (pintype "passive") (tstamp a29d7930-bb7b-472a-81c5-ab7810777204))
(pad "2" thru_hole circle (at 3.3 -0.07861) (size 2 2) (drill 1) (layers "*.Cu" "*.Mask")
(net 5 "GND") (pinfunction "+") (pintype "passive") (tstamp 50e7cefe-d28e-4855-979b-0c12084ad92f))
(model "${KICAD6_3DMODEL_DIR}/Buzzer_Beeper.3dshapes/Buzzer_12x9.5RM7.6.wrl"
(offset (xyz -3.8 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "TerminalBlock_MetzConnect:TerminalBlock_MetzConnect_Type094_RT03502HBLU_1x02_P5.00mm_Horizontal" (layer "F.Cu")
(tstamp 93c76fc2-8f91-47c5-a790-eca05da14b1b)
(at 134.6427 92.1652 90)
(descr "terminal block Metz Connect Type094_RT03502HBLU, 2 pins, pitch 5mm, size 10x8.3mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.metz-connect.com/ru/system/files/productfiles/Data_sheet_310941_RT035xxHBLU_OFF-022742T.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect")
(tags "THT terminal block Metz Connect Type094_RT03502HBLU pitch 5mm size 10x8.3mm^2 drill 1.3mm pad 2.6mm")
(property "Sheetfile" "W5100S-EVB-Pico-Breakout.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Generic screw terminal, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)")
(property "ki_keywords" "screw terminal")
(path "/f3544143-21b2-4709-b28f-c46b20ea3699")
(attr through_hole)
(fp_text reference "Led4" (at 8.913147 -5.013439 180) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 06dea4eb-4a33-4ecc-a4d5-78cca1e235c2)
)
(fp_text value "Screw_Terminal_01x02" (at 2.5 5.06 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 59560d0a-41ee-46ff-95a1-71f894c17f03)
)
(fp_text user "${REFERENCE}" (at 2.5 2.75 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7a8d42f6-8960-4273-b4dc-6af783f5b835)
)
(fp_line (start -2.8 3.56) (end -2.8 4.3)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 32da3310-cec8-43e8-b42a-e20ee4be45ba))
(fp_line (start -2.8 4.3) (end -2.3 4.3)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3cd3a891-ab65-4b8e-8bbb-c5f7c737ef48))
(fp_line (start -2.56 -4.36) (end -2.56 4.06)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2aba73e9-eb0c-4e01-be1e-4b851b3c818b))
(fp_line (start -2.56 -4.36) (end 7.56 -4.36)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 81f47d7b-36d3-47ce-8b9c-16a81332242a))
(fp_line (start -2.56 -2.301) (end 7.56 -2.301)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2cfe2049-5270-4920-b9f6-7cf8bd48ea2f))
(fp_line (start -2.56 2) (end 7.56 2)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d2b20bb5-c7e4-4200-89e1-9712fdfcf3d3))
(fp_line (start -2.56 3.5) (end 7.56 3.5)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp edbc7778-2921-4f78-b686-d0165064fb75))
(fp_line (start -2.56 4.06) (end 7.56 4.06)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8f4bf710-9ccc-458b-a875-1ea9af669096))
(fp_line (start -1 -4.3) (end -1 -3.3)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 354b13c9-3c0f-4494-9fe1-4f0416737598))
(fp_line (start -1 -4.3) (end 1 -4.3)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e9522896-7adc-45bb-af79-7f554cfbecc5))
(fp_line (start -1 -3.3) (end 1 -3.3)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ad2139e2-cf24-4172-9e65-32a046eb3e1e))
(fp_line (start 1 -4.3) (end 1 -3.3)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a135b430-37c8-48ca-b2ad-8ee108bb9b48))
(fp_line (start 3.773 1.023) (end 3.726 1.069)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp cab6103d-3591-465a-9245-622a6575473b))
(fp_line (start 3.966 1.239) (end 3.931 1.274)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ffc41280-e8c1-42ba-8c22-c2ad7176e6a8))
(fp_line (start 4 -4.3) (end 4 -3.3)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7c5f6d7c-092a-42ab-b7b7-f698329c9183))
(fp_line (start 4 -4.3) (end 6 -4.3)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b6969293-004c-4a60-a926-ba6eb24a1256))
(fp_line (start 4 -3.3) (end 6 -3.3)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 09d2bc58-d695-4f30-ae97-7e2e1e9e3b3e))
(fp_line (start 6 -4.3) (end 6 -3.3)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9c6b04c0-a187-49c9-a7ff-c6e07e692d55))
(fp_line (start 6.07 -1.275) (end 6.035 -1.239)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 003c34d7-1a37-4e47-9479-1e760afbb74b))
(fp_line (start 6.275 -1.069) (end 6.228 -1.023)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 82ab6356-be05-4ff0-b6ad-642c169da669))
(fp_line (start 7.56 -4.36) (end 7.56 4.06)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0626cd19-25c5-4548-b818-857efb6fd809))
(fp_arc (start -1.535427 0.683042) (mid -1.680501 -0.000524) (end -1.535 -0.684)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 30ac64b3-6487-4710-b2d4-7ea274a37f5f))
(fp_arc (start -0.683042 -1.535427) (mid 0.000524 -1.680501) (end 0.684 -1.535)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 985e95b2-5a0f-44fe-a3a5-a957d4d67bd6))
(fp_arc (start 0.028805 1.680253) (mid -0.335551 1.646659) (end -0.684 1.535)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0843b41f-65fb-44a1-b1a4-d119d15ba848))
(fp_arc (start 0.683318 1.534756) (mid 0.349292 1.643288) (end 0 1.68)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9b0bb61b-8456-46d8-97c4-5a45bebe12ce))
(fp_arc (start 1.535427 -0.683042) (mid 1.680501 0.000524) (end 1.535 0.684)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f1c555d8-8463-4648-b95b-643f91aa9415))
(fp_circle (center 5 0) (end 6.68 0)
(stroke (width 0.12) (type solid)) (fill none) (layer "F.SilkS") (tstamp 16cb2c68-6a46-466a-b7b3-39b9bbb5cf0c))
(fp_line (start -3 -4.81) (end -3 4.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 2e0fd866-0ab1-4521-ad7b-862a2338f38d))
(fp_line (start -3 4.5) (end 8 4.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 0167a079-92d2-44ac-a6d9-94ebf9b7e858))
(fp_line (start 8 -4.81) (end -3 -4.81)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 7b83f722-2dec-445a-ac42-dfbb72e9aea4))
(fp_line (start 8 4.5) (end 8 -4.81)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 27f9b6b2-af57-4b6c-815b-c29ab3c87c27))
(fp_line (start -2.5 -4.3) (end 7.5 -4.3)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 74a8b9f9-3c35-4859-838a-bb8098a9749b))
(fp_line (start -2.5 -2.3) (end 7.5 -2.3)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a7b01dfb-0803-4ac7-b38a-ae1dcdc00d45))
(fp_line (start -2.5 2) (end 7.5 2)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8876989b-5b48-431e-b343-dcd1b6a1f74e))
(fp_line (start -2.5 3.5) (end -2.5 -4.3)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 062818e1-3edd-415b-a021-187951182a7a))
(fp_line (start -2.5 3.5) (end 7.5 3.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0cd807e0-7c34-4840-ae05-bc475938af13))
(fp_line (start -2 4) (end -2.5 3.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9e3afb49-097a-419f-a377-f2bfe49fce2c))
(fp_line (start -1 -4.3) (end -1 -3.3)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d0475684-5b70-4615-ac46-47f942ceacf4))
(fp_line (start -1 -3.3) (end 1 -3.3)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7a20dc81-e121-4b51-8f13-5301acb21db2))
(fp_line (start 0.955 -1.138) (end -1.138 0.955)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 51d39b4d-b79e-427b-a336-0dd9042887e2))
(fp_line (start 1 -4.3) (end -1 -4.3)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 52aefa72-a565-4dcb-95fd-3a286931ba3d))
(fp_line (start 1 -3.3) (end 1 -4.3)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f7b64abd-d4cb-4e39-ac02-581c2804f3a6))
(fp_line (start 1.138 -0.955) (end -0.955 1.138)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f2a80f19-8f54-4981-b588-3b1bf9819f6b))
(fp_line (start 4 -4.3) (end 4 -3.3)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b618f5de-90a1-4e94-965c-d4bfb8b68f39))
(fp_line (start 4 -3.3) (end 6 -3.3)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp db053302-a057-4db5-b043-60f8d6c8d41f))
(fp_line (start 5.955 -1.138) (end 3.863 0.955)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 5da7db15-6e5b-4a82-a0c0-a92ac694a88b))
(fp_line (start 6 -4.3) (end 4 -4.3)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e4b65f00-38d8-462f-961a-d2996d836f2f))
(fp_line (start 6 -3.3) (end 6 -4.3)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e54ab2c5-00b6-4210-89e8-394e1216d690))
(fp_line (start 6.138 -0.955) (end 4.046 1.138)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4da2a2bf-aa3f-446c-82a2-a7b981fd5f8a))
(fp_line (start 7.5 -4.3) (end 7.5 4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 181b433d-470d-4d86-9e02-4188b81c2726))
(fp_line (start 7.5 4) (end -2 4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp afe87fe2-0403-42cb-9c6d-fe4dd50d7f75))
(fp_circle (center 0 0) (end 1.5 0)
(stroke (width 0.1) (type solid)) (fill none) (layer "F.Fab") (tstamp 5afd73bd-c107-4ffc-8d73-2fbaee78a30b))
(fp_circle (center 5 0) (end 6.5 0)
(stroke (width 0.1) (type solid)) (fill none) (layer "F.Fab") (tstamp 2caa5f51-0059-46de-9219-3e70aece3275))
(pad "1" thru_hole rect (at 0 0 90) (size 2.6 2.6) (drill 1.3) (layers "*.Cu" "*.Mask")
(net 11 "GPIO6") (pinfunction "Pin_1") (pintype "passive") (tstamp a0abc372-70cc-4a60-aaf9-43f7cefddbf6))
(pad "2" thru_hole circle (at 5 0 90) (size 2.6 2.6) (drill 1.3) (layers "*.Cu" "*.Mask")
(net 20 "Net-(Led4-Pin_2)") (pinfunction "Pin_2") (pintype "passive") (tstamp f2681006-2b86-4ab0-9c28-f4eebda00adf))
(model "${KICAD6_3DMODEL_DIR}/TerminalBlock_MetzConnect.3dshapes/TerminalBlock_MetzConnect_Type094_RT03502HBLU_1x02_P5.00mm_Horizontal.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Package_TO_SOT_THT:TO-92_Inline_Wide" (layer "F.Cu")
(tstamp 9635eb00-0c45-48bf-ac71-82d1b771ad41)
(at 99.06 68.58 -90)
(descr "TO-92 leads in-line, wide, drill 0.75mm (see NXP sot054_po.pdf)")
(tags "to-92 sc-43 sc-43a sot54 PA33 transistor")
(property "Sheetfile" "W5100S-EVB-Pico-Breakout.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "0.1A Ic, 45V Vce, Small Signal NPN Transistor, TO-92")
(property "ki_keywords" "NPN Transistor")
(path "/6e50efca-63e8-46f6-b9a4-7ac3bc5f68f6")
(attr through_hole)
(fp_text reference "Q1" (at 2.54 -3.56 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a1e199cc-57ef-47bf-aedf-4a27f2311ec0)
)
(fp_text value "BC547" (at 2.54 2.79 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6fb49e26-f944-4601-9934-110eefbf875e)
)
(fp_text user "${REFERENCE}" (at 2.54 0 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b9f5e8f1-bd58-43a5-8760-2404b7094041)
)
(fp_line (start 0.74 1.85) (end 4.34 1.85)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8774c348-6425-4365-a651-5fb3227f548b))
(fp_arc (start 0.1836 -1.098807) (mid 1.143021 -2.192817) (end 2.54 -2.6)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6b7b1792-843f-470b-94ea-7efc892a4330))
(fp_arc (start 0.74 1.85) (mid 0.446097 1.509328) (end 0.215816 1.122795)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 716debfa-04e7-406a-bf3f-94b301cd9f5e))
(fp_arc (start 2.54 -2.6) (mid 3.936979 -2.192818) (end 4.8964 -1.098807)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp df2387bf-7c70-4a88-9226-e5e9aced4f94))
(fp_arc (start 4.864184 1.122795) (mid 4.633903 1.509328) (end 4.34 1.85)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d8b34e1b-c138-47b1-aade-f7fa3218c9b8))
(fp_line (start -1.01 -2.73) (end -1.01 2.01)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 5a832f35-2675-4170-911f-8a6e530b4f6d))
(fp_line (start -1.01 -2.73) (end 6.09 -2.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 3d1e99fd-c249-4e22-98a7-06e37b3aaeff))
(fp_line (start 6.09 2.01) (end -1.01 2.01)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b516df1e-419b-4968-9974-babcd2ae635c))
(fp_line (start 6.09 2.01) (end 6.09 -2.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 88e193a8-e992-40f4-9f96-38a03e4e631c))
(fp_line (start 0.8 1.75) (end 4.3 1.75)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 5cd99baa-a314-4519-b1e6-7ff8936b0c89))
(fp_arc (start 0.786375 1.753625) (mid 0.248779 -0.949055) (end 2.54 -2.48)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3dedf538-05e0-4fb1-b70a-537948314a06))
(fp_arc (start 2.54 -2.48) (mid 4.831221 -0.949055) (end 4.293625 1.753625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 83ee3bfa-68d2-471f-8b0b-1712089c248a))
(pad "1" thru_hole rect (at 0 0 270) (size 1.5 1.5) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 37 "Net-(PIR1-Pin_1)") (pinfunction "C") (pintype "passive") (tstamp 15b4ba00-1172-46ee-9af8-3065dad55fc5))
(pad "2" thru_hole circle (at 2.54 0 270) (size 1.5 1.5) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 36 "Net-(Q1-B)") (pinfunction "B") (pintype "input") (tstamp 804c20bc-21ac-4ace-9f4d-df656cb33d73))
(pad "3" thru_hole circle (at 5.08 0 270) (size 1.5 1.5) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 5 "GND") (pinfunction "E") (pintype "passive") (tstamp b55fabf8-4f49-4ccc-b7f7-38e1ced8cd65))
(model "${KICAD6_3DMODEL_DIR}/Package_TO_SOT_THT.3dshapes/TO-92_Inline_Wide.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)