-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathrpizerow_kit_desarrollo.kicad_pcb
7626 lines (7600 loc) · 316 KB
/
rpizerow_kit_desarrollo.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")
(title_block
(title "Kit de desarrollo para Raspberry Pi Zero W")
(date "2023-12-26")
(rev "2")
(company "IMPA TRQ")
(comment 1 "Autores: Palmieri Hise Agustín y Carlassara Fabrizio")
)
(layers
(0 "F.Cu" signal)
(31 "B.Cu" signal)
(32 "B.Adhes" user "B.Adhesive")
(33 "F.Adhes" user "F.Adhesive")
(34 "B.Paste" user)
(35 "F.Paste" user)
(36 "B.SilkS" user "B.Silkscreen")
(37 "F.SilkS" user "F.Silkscreen")
(38 "B.Mask" user)
(39 "F.Mask" user)
(40 "Dwgs.User" user "User.Drawings")
(41 "Cmts.User" user "User.Comments")
(42 "Eco1.User" user "User.Eco1")
(43 "Eco2.User" user "User.Eco2")
(44 "Edge.Cuts" user)
(45 "Margin" user)
(46 "B.CrtYd" user "B.Courtyard")
(47 "F.CrtYd" user "F.Courtyard")
(48 "B.Fab" user)
(49 "F.Fab" user)
(50 "User.1" user)
(51 "User.2" user)
(52 "User.3" user)
(53 "User.4" user)
(54 "User.5" user)
(55 "User.6" user)
(56 "User.7" user)
(57 "User.8" user)
(58 "User.9" user)
)
(setup
(stackup
(layer "F.SilkS" (type "Top Silk Screen"))
(layer "F.Paste" (type "Top Solder Paste"))
(layer "F.Mask" (type "Top Solder Mask") (thickness 0.01))
(layer "F.Cu" (type "copper") (thickness 0.035))
(layer "dielectric 1" (type "core") (thickness 1.51) (material "FR4") (epsilon_r 4.5) (loss_tangent 0.02))
(layer "B.Cu" (type "copper") (thickness 0.035))
(layer "B.Mask" (type "Bottom Solder Mask") (thickness 0.01))
(layer "B.Paste" (type "Bottom Solder Paste"))
(layer "B.SilkS" (type "Bottom Silk Screen"))
(copper_finish "None")
(dielectric_constraints no)
)
(pad_to_mask_clearance 0)
(aux_axis_origin 35.485 23.2)
(pcbplotparams
(layerselection 0x00010fc_ffffffff)
(plot_on_all_layers_selection 0x0000000_00000000)
(disableapertmacros false)
(usegerberextensions false)
(usegerberattributes true)
(usegerberadvancedattributes true)
(creategerberjobfile false)
(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 false)
(plotinvisibletext false)
(sketchpadsonfab false)
(subtractmaskfromsilk true)
(outputformat 1)
(mirror false)
(drillshape 0)
(scaleselection 1)
(outputdirectory "./gerber_files")
)
)
(net 0 "")
(net 1 "I{slash}O 12")
(net 2 "PWM 1")
(net 3 "I2C SDA")
(net 4 "I2C SCL")
(net 5 "unconnected-(J1-GPIO04_GCLK-Pad7)")
(net 6 "unconnected-(J1-ID_SD-Pad27)")
(net 7 "unconnected-(J1-5V-Pad2)")
(net 8 "unconnected-(J1-5V-Pad4)")
(net 9 "UART Tx")
(net 10 "UART Rx")
(net 11 "PWM 3")
(net 12 "I{slash}O 13")
(net 13 "unconnected-(J1-ID_SC-Pad28)")
(net 14 "PWM 2")
(net 15 "unconnected-(J2-Pin_4-Pad4)")
(net 16 "unconnected-(J2-Pin_5-Pad5)")
(net 17 "Net-(U1-AIN0)")
(net 18 "Net-(U1-AIN1)")
(net 19 "Net-(U1-AIN3)")
(net 20 "unconnected-(U1-ALERT{slash}RDY-Pad2)")
(net 21 "Net-(D1-BA)")
(net 22 "unconnected-(J1-GPIO27-Pad13)")
(net 23 "unconnected-(J1-GPIO17-Pad11)")
(net 24 "Net-(D1-GA)")
(net 25 "Net-(D1-RA)")
(net 26 "unconnected-(J1-GPIO21-Pad40)")
(net 27 "Net-(J4-Pin_2)")
(net 28 "unconnected-(J1-GPIO11_SPI_CLK-Pad23)")
(net 29 "DIO")
(net 30 "CLK")
(net 31 "unconnected-(J1-GPIO10_SPI_MOSI-Pad19)")
(net 32 "unconnected-(J1-GPIO09_SPI_MISO-Pad21)")
(net 33 "unconnected-(J1-GPIO08_SPI_CE0_N-Pad24)")
(net 34 "unconnected-(J1-GPIO07_SPI_CE1_N-Pad26)")
(net 35 "unconnected-(J1-GPIO05-Pad29)")
(net 36 "unconnected-(J1-GPIO06-Pad31)")
(net 37 "unconnected-(J1-GPIO16-Pad36)")
(net 38 "unconnected-(J1-GPIO20-Pad38)")
(net 39 "GND")
(net 40 "unconnected-(J1-GPIO23-Pad16)")
(net 41 "unconnected-(J1-GPIO24-Pad18)")
(net 42 "+3.3V")
(footprint "Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal" (layer "F.Cu")
(tstamp 08f81081-bbd5-4cba-aeb9-21305c621e5e)
(at 113.985 57.27 90)
(descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=7.62mm, 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 7.62mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
(property "Sheetfile" "Pi Zero Mother.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor")
(property "ki_keywords" "R res resistor")
(attr through_hole)
(fp_text reference "R6" (at 3.81 -2.37 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b65a3e6c-5222-4ab2-9eee-e5a91adec3e5)
)
(fp_text value "R" (at 3.81 2.37 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 71cbee9c-fe3f-4d9f-8587-430ee8b083d2)
)
(fp_text user "${REFERENCE}" (at 3.81 0 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 45dc1433-017d-4b87-b07a-10fba30470cf)
)
(fp_line (start 0.54 -1.37) (end 7.08 -1.37)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e1ad1052-89cc-4d83-9549-5f2258868960))
(fp_line (start 0.54 -1.04) (end 0.54 -1.37)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5767cdff-434c-4f01-8851-db9a077abd41))
(fp_line (start 0.54 1.04) (end 0.54 1.37)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0a41d929-bd4e-4ce0-9e5e-398742fc1cf2))
(fp_line (start 0.54 1.37) (end 7.08 1.37)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7bcb74a3-44df-4f55-88e1-dd4a46f9605a))
(fp_line (start 7.08 -1.37) (end 7.08 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c255e83f-edf4-434d-97c2-7d42cff112ed))
(fp_line (start 7.08 1.37) (end 7.08 1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0bcf5002-3fbc-4e9c-ae6f-edf045243b13))
(fp_line (start -1.05 -1.5) (end -1.05 1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp db510f2a-2f66-48a3-8e32-18acc8144532))
(fp_line (start -1.05 1.5) (end 8.67 1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 395bc6b5-5eec-47e6-974f-ade6963f67f0))
(fp_line (start 8.67 -1.5) (end -1.05 -1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 70343e70-5eb1-442b-83b6-d423f06827ec))
(fp_line (start 8.67 1.5) (end 8.67 -1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 8847cb4d-0a1b-417e-a67f-f51478e43e97))
(fp_line (start 0 0) (end 0.66 0)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9565bfe6-d475-48a1-9234-5e3c7a7c9666))
(fp_line (start 0.66 -1.25) (end 0.66 1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 30fa5e4a-0191-4fc7-9b54-e5c4dae9cb6d))
(fp_line (start 0.66 1.25) (end 6.96 1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp fe846bed-5adc-4d4c-96a6-412b198a7fdd))
(fp_line (start 6.96 -1.25) (end 0.66 -1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 65bcc2ba-f7b4-4100-8053-96dd8dc5ae96))
(fp_line (start 6.96 1.25) (end 6.96 -1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 938fc4b3-435c-419d-b813-d5bc459278a3))
(fp_line (start 7.62 0) (end 6.96 0)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 5c459639-97ac-416f-9d7a-9e364ed5cd24))
(pad "1" thru_hole circle (at 0 0 90) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 12 "I{slash}O 13") (pintype "passive") (tstamp 73ba4091-0df3-414f-995f-4e5c8681cf95))
(pad "2" thru_hole oval (at 7.62 0 90) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 42 "+3.3V") (pintype "passive") (tstamp 963ef236-6163-4f8c-8a02-7f21573a8d7c))
(model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_PinHeader_2.54mm:PinHeader_1x10_P2.54mm_Vertical" (layer "F.Cu")
(tstamp 0b6c741d-6b9c-421c-b2e2-6f8e57b7d078)
(at 77.2275 58.7175 -90)
(descr "Through hole straight pin header, 1x10, 2.54mm pitch, single row")
(tags "Through hole pin header THT 1x10 2.54mm single row")
(property "Sheetfile" "Pi Zero Mother.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Ultra-Small, Low-Power, I2C-Compatible, 860-SPS, 16-Bit ADCs With Internal Reference, Oscillator, and Programmable Comparator, VSSOP-10")
(property "ki_keywords" "16 bit 4 channel I2C ADC")
(attr through_hole)
(fp_text reference "ADC Externo" (at 6.7825 26.7275 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8f36c423-aeb3-4611-b2f2-4a2597146343)
)
(fp_text value "ADS1115IDGS" (at 0 25.19 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1a1ce47f-f978-4807-95ef-df4b3b49f3e4)
)
(fp_text user "${REFERENCE}" (at 0 11.43) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5d5b0ef6-11a5-4429-8c9f-c4de7d5311e9)
)
(fp_line (start -1.33 -1.33) (end 0 -1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp bded4a36-3ff8-42d2-a9d4-5e7ccb4bc846))
(fp_line (start -1.33 0) (end -1.33 -1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 093788fc-3a86-4b36-9fc1-77f71ab86168))
(fp_line (start -1.33 1.27) (end -1.33 24.19)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f777585e-8676-4932-bbd3-27519f402486))
(fp_line (start -1.33 1.27) (end 1.33 1.27)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 770a2a74-1396-4b0c-848a-69ad0333cc3a))
(fp_line (start -1.33 24.19) (end 1.33 24.19)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a0303127-9ae3-460b-a181-5398b35e8683))
(fp_line (start 1.33 1.27) (end 1.33 24.19)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b4c0b567-89aa-489d-b027-92b1b78b4fc0))
(fp_rect (start -1.75 -1.75) (end 15.25 25.25)
(stroke (width 0.05) (type default)) (fill none) (layer "F.CrtYd") (tstamp 5e06cd99-59f7-4825-8bdf-61fe31fe8d49))
(fp_line (start -1.27 -0.635) (end -0.635 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 69a8e518-c17e-4d64-884b-d19d9f168798))
(fp_line (start -1.27 24.13) (end -1.27 -0.635)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 5d49115f-08e4-460a-b71d-a861ed1c6815))
(fp_line (start -0.635 -1.27) (end 1.27 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4391072a-00a3-4769-9b70-d2a436250eeb))
(fp_line (start 1.27 -1.27) (end 1.27 24.13)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 863131a0-af9d-4683-ad56-d88c30e2514e))
(fp_line (start 1.27 24.13) (end -1.27 24.13)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d44efc0a-379d-4957-97b7-9b0c8ff61345))
(pad "1" thru_hole oval (at 0 10.16 270) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 39 "GND") (pinfunction "ADDR") (pintype "input") (tstamp 160ed939-551d-46b9-b795-328b4c58c1fe))
(pad "2" thru_hole oval (at 0 12.7 270) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 20 "unconnected-(U1-ALERT{slash}RDY-Pad2)") (pinfunction "ALERT/RDY") (pintype "output") (tstamp 80b2747d-9d5d-4568-9325-63e0bceeb569))
(pad "3" thru_hole oval (at 0 2.54 270) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 39 "GND") (pinfunction "GND") (pintype "power_in") (tstamp f52fcbf2-7bc2-46b8-b4e2-2c90de6809b0))
(pad "4" thru_hole oval (at 0 15.24 270) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 17 "Net-(U1-AIN0)") (pinfunction "AIN0") (pintype "input") (tstamp bac27ec6-8dfc-4405-b528-80e3679948c3))
(pad "5" thru_hole oval (at 0 17.78 270) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 18 "Net-(U1-AIN1)") (pinfunction "AIN1") (pintype "input") (tstamp 3adf9fd4-6476-406c-b8a1-33a64bf011bb))
(pad "6" thru_hole oval (at 0 20.32 270) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 27 "Net-(J4-Pin_2)") (pinfunction "AIN2") (pintype "input") (tstamp 8a159e13-0b09-4699-a64b-b67db1a3f080))
(pad "7" thru_hole oval (at 0 22.86 270) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 19 "Net-(U1-AIN3)") (pinfunction "AIN3") (pintype "input") (tstamp b299d4ab-7c67-4154-8564-53e90b743e7f))
(pad "8" thru_hole rect (at 0 0 270) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 42 "+3.3V") (pinfunction "VDD") (pintype "power_in") (tstamp d3c468ba-40c3-414c-9fdd-d158a4e06e92))
(pad "9" thru_hole oval (at 0 7.62 270) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 3 "I2C SDA") (pinfunction "SDA") (pintype "bidirectional") (tstamp 56658bbe-a955-44da-8a65-31942b1f5147))
(pad "10" thru_hole oval (at 0 5.08 270) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 4 "I2C SCL") (pinfunction "SCL") (pintype "input") (tstamp 5ca6acda-94eb-4966-9b39-51784c876ad9))
(model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x10_P2.54mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Buzzer_Beeper:Buzzer_12x9.5RM7.6" (layer "F.Cu")
(tstamp 0db41e4f-565f-4176-9455-030ffeb75693)
(at 113.485 79.66 -90)
(descr "Generic Buzzer, D12mm height 9.5mm with RM7.6mm")
(tags "buzzer")
(property "Sheetfile" "Pi Zero Mother.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Buzzer, polarized")
(property "ki_keywords" "quartz resonator ceramic")
(attr through_hole)
(fp_text reference "Buzzer" (at -3.91 -0.265 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp bb9c8c53-e5e1-4c83-b9f2-73d8469f2e0c)
)
(fp_text value "Buzzer" (at 3.8 7.4 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d3523d43-d9df-4297-9340-2bda39fdda0b)
)
(fp_text user "+" (at -0.01 -2.54 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp cd1ea734-4a4e-4878-ad38-3dc3e93f5a7f)
)
(fp_text user "+" (at -0.01 -2.54 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9b0dd85c-bb0d-40be-abcf-6cfd94e52215)
)
(fp_text user "${REFERENCE}" (at 3.8 -4 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ee23a01d-90bf-4e7d-a10b-74110740506a)
)
(fp_circle (center 3.8 0) (end 9.9 0)
(stroke (width 0.12) (type solid)) (fill none) (layer "F.SilkS") (tstamp b00ba1f6-d31e-415c-aef9-70404e817b09))
(fp_circle (center 3.8 0) (end 10.05 0)
(stroke (width 0.05) (type solid)) (fill none) (layer "F.CrtYd") (tstamp 60b7fe36-fd47-4689-aadd-b94ed3331683))
(fp_circle (center 3.8 0) (end 4.8 0)
(stroke (width 0.1) (type solid)) (fill none) (layer "F.Fab") (tstamp 2c3daeec-140e-4d91-a0ce-c04e4783c6e9))
(fp_circle (center 3.8 0) (end 9.8 0)
(stroke (width 0.1) (type solid)) (fill none) (layer "F.Fab") (tstamp 8d04fc30-0ca0-4fc5-8aa9-6cbf4a57a6da))
(pad "1" thru_hole rect (at 0 0 270) (size 2 2) (drill 1) (layers "*.Cu" "*.Mask")
(net 1 "I{slash}O 12") (pinfunction "-") (pintype "passive") (tstamp 27763875-a331-4284-bf88-ed67fb463da0))
(pad "2" thru_hole circle (at 7.6 0 270) (size 2 2) (drill 1) (layers "*.Cu" "*.Mask")
(net 39 "GND") (pinfunction "+") (pintype "passive") (tstamp 207b3f93-8471-4ff9-b3ac-4f476590f559))
(model "${KICAD6_3DMODEL_DIR}/Buzzer_Beeper.3dshapes/Buzzer_12x9.5RM7.6.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Potentiometer_THT:Potentiometer_Bourns_3386F_Vertical" (layer "F.Cu")
(tstamp 1abda5d0-fab8-4391-8b2f-679a0334da12)
(at 41.33 67.25)
(descr "Potentiometer, vertical, Bourns 3386F, https://www.bourns.com/pdfs/3386.pdf")
(tags "Potentiometer vertical Bourns 3386F")
(property "Sheetfile" "Pi Zero Mother.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Potentiometer")
(property "ki_keywords" "resistor variable")
(attr through_hole)
(fp_text reference "RV" (at 2.655 -8.555) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 565e9efe-876b-40e6-acd9-9991380047a9)
)
(fp_text value "R_Potentiometer" (at 2.655 3.475) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b2b347f7-e7d0-4656-bb42-79932bec382e)
)
(fp_text user "${REFERENCE}" (at -1.11 -2.54 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp cfa9fc44-4035-43ff-8764-fdd6c7282ded)
)
(fp_line (start -2.23 -7.425) (end -2.23 2.345)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6d500df6-acd3-4b6a-8b7e-2662c65857ab))
(fp_line (start -2.23 -7.425) (end 7.54 -7.425)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 582c7edb-4dc2-4b32-bb3e-d60cb0ac3a3b))
(fp_line (start -2.23 2.345) (end 7.54 2.345)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c5fd3d0f-5dca-4d2c-af42-ffa937c1a327))
(fp_line (start 7.54 -7.425) (end 7.54 2.345)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 304eeb1c-4100-4574-b06a-e5e3379db5f1))
(fp_line (start -2.36 -7.56) (end -2.36 2.48)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e49b51aa-cdfa-4407-810b-4406dbf2a973))
(fp_line (start -2.36 2.48) (end 7.67 2.48)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 3d47797c-a4b0-4150-ad17-8645184d6b9d))
(fp_line (start 7.67 -7.56) (end -2.36 -7.56)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp f2539498-4012-452b-b862-5e05cf76b679))
(fp_line (start 7.67 2.48) (end 7.67 -7.56)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 813b35a3-19a9-433b-9417-e5b322044715))
(fp_line (start -2.11 -7.305) (end -2.11 2.225)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 1f5044f7-9fb4-44ed-936d-c07cdea29896))
(fp_line (start -2.11 2.225) (end 7.42 2.225)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8fd7208a-c894-484e-8dc1-eb4998dc4081))
(fp_line (start 1.781 -0.98) (end 1.781 -4.099)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 1addd8e1-71d8-49a4-ab17-905c17f4f522))
(fp_line (start 1.781 -0.98) (end 1.781 -4.099)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 37808436-8f4a-49f9-aadb-77c25b7adfa4))
(fp_line (start 7.42 -7.305) (end -2.11 -7.305)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9a23f076-01ec-4bb6-be3a-9ff1ff656773))
(fp_line (start 7.42 2.225) (end 7.42 -7.305)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b9b54a78-4602-4598-bc9f-1a3b372e43b8))
(fp_circle (center 1.781 -2.54) (end 3.356 -2.54)
(stroke (width 0.1) (type solid)) (fill none) (layer "F.Fab") (tstamp 94b5ef78-6c83-4e33-9f40-57790dc73022))
(pad "1" thru_hole circle (at 0 0) (size 1.44 1.44) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 42 "+3.3V") (pinfunction "1") (pintype "passive") (tstamp 39ca7c57-73a7-4e74-8d2f-b10b93682449))
(pad "2" thru_hole circle (at 5.08 -2.54) (size 1.44 1.44) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 19 "Net-(U1-AIN3)") (pinfunction "2") (pintype "passive") (tstamp 45d0b3c3-cc78-46f2-9db9-54d7f96648f3))
(pad "3" thru_hole circle (at 0 -5.08) (size 1.44 1.44) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 39 "GND") (pinfunction "3") (pintype "passive") (tstamp ace99b44-5dbb-4f1a-938e-5c1e51d73bdd))
(model "${KICAD6_3DMODEL_DIR}/Potentiometer_THT.3dshapes/Potentiometer_Bourns_3386F_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P2.54mm_Vertical" (layer "F.Cu")
(tstamp 476839d4-4df6-4835-9b41-dcf2dc7cf2c4)
(at 38.485 46.24 -90)
(descr "Resistor, Axial_DIN0204 series, Axial, Vertical, pin pitch=2.54mm, 0.167W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
(tags "Resistor Axial_DIN0204 series Axial Vertical pin pitch 2.54mm 0.167W length 3.6mm diameter 1.6mm")
(property "Sheetfile" "Pi Zero Mother.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Temperature dependent resistor")
(property "ki_keywords" "R res thermistor")
(attr through_hole)
(fp_text reference "NTC" (at 1.27 -1.92 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4cbd75e8-b91f-4e52-87ec-36e3360ae43a)
)
(fp_text value "Thermistor" (at 1.27 1.92 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4cbd1655-ec16-43f2-96cd-2f158ef7e34d)
)
(fp_text user "${REFERENCE}" (at 1.27 -1.92 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 67afcad4-c6e9-4973-8d02-eb39f827a719)
)
(fp_line (start 0.92 0) (end 1.54 0)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8fbb39e1-56e3-4034-8be7-4a2c00ed50a1))
(fp_circle (center 0 0) (end 0.92 0)
(stroke (width 0.12) (type solid)) (fill none) (layer "F.SilkS") (tstamp 663ccf14-b261-4483-95b9-c05bda3c0e48))
(fp_line (start -1.05 -1.05) (end -1.05 1.05)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 3f1e67cb-d08d-43c7-a7d8-f39d9da9c63a))
(fp_line (start -1.05 1.05) (end 3.49 1.05)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c4b1e4be-4d0a-48c1-9391-54149feb0d8b))
(fp_line (start 3.49 -1.05) (end -1.05 -1.05)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 17e682d6-c63f-41a8-aba2-72ccfa132397))
(fp_line (start 3.49 1.05) (end 3.49 -1.05)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp f70e266b-1927-4f8e-b7bf-350c319bb8ec))
(fp_line (start 0 0) (end 2.54 0)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f8195290-db29-4e87-a42f-b5aa91de95a9))
(fp_circle (center 0 0) (end 0.8 0)
(stroke (width 0.1) (type solid)) (fill none) (layer "F.Fab") (tstamp 607a4dd7-d7f2-42ed-a963-35c662fbd308))
(pad "1" thru_hole circle (at 0 0 270) (size 1.4 1.4) (drill 0.7) (layers "*.Cu" "*.Mask")
(net 39 "GND") (pintype "passive") (tstamp b57ef601-9296-492a-ba7d-6fd804fd769b))
(pad "2" thru_hole oval (at 2.54 0 270) (size 1.4 1.4) (drill 0.7) (layers "*.Cu" "*.Mask")
(net 18 "Net-(U1-AIN1)") (pintype "passive") (tstamp 65fb5a78-85f8-4888-b729-bdc8273fdd10))
(model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0204_L3.6mm_D1.6mm_P2.54mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Button_Switch_THT:SW_PUSH_6mm_H13mm" (layer "F.Cu")
(tstamp 56674b7c-74e6-4fe4-9be4-cec3786f7e55)
(at 96.235 58.21)
(descr "tactile push button, 6x6mm e.g. PHAP33xx series, height=13mm")
(tags "tact sw push 6mm")
(property "Sheetfile" "Pi Zero Mother.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "1x DIP Switch, Single Pole Single Throw (SPST) switch, small symbol")
(property "ki_keywords" "dip switch")
(attr through_hole)
(fp_text reference "SW" (at 3.015 7.04) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a4f5f32e-06ef-4660-8fb1-9e95b92ec9ec)
)
(fp_text value "SW_DIP_x01" (at 3.75 6.7) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1edc9ff4-b059-4bf9-ac9b-cbdcca81c0fc)
)
(fp_text user "${REFERENCE}" (at 3.25 2.25) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp cb203617-7a2d-45a6-997d-b4c6d51c87a7)
)
(fp_line (start -0.25 1.5) (end -0.25 3)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp bf6c669b-1473-4309-b2ea-5e1e9e7644b1))
(fp_line (start 1 5.5) (end 5.5 5.5)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0b2d57e0-4bf0-46ca-85df-560229c21993))
(fp_line (start 5.5 -1) (end 1 -1)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2dcc9e2a-1a3c-4458-b36b-57652b5788e7))
(fp_line (start 6.75 3) (end 6.75 1.5)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1113c404-6265-4ba4-8f69-c29d4787ff95))
(fp_line (start -1.5 -1.5) (end -1.25 -1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 0878dfc9-aea0-4e6c-b53b-6251c8244706))
(fp_line (start -1.5 -1.25) (end -1.5 -1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 8708e087-4d6e-4c73-9050-f1331effeb75))
(fp_line (start -1.5 5.75) (end -1.5 -1.25)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 169cc497-dec0-4727-a761-0a01808867ff))
(fp_line (start -1.5 5.75) (end -1.5 6)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 692f4b7c-7b3a-47df-97ca-8d7c0a72979b))
(fp_line (start -1.5 6) (end -1.25 6)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 6c514aae-64bb-4cd7-a5d2-2eaef119af0b))
(fp_line (start -1.25 -1.5) (end 7.75 -1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 7151c59b-fc13-4bac-b2e8-ab43432b7e0e))
(fp_line (start 7.75 -1.5) (end 8 -1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 6a29347a-bb0a-4d54-98f0-64a9b83f3226))
(fp_line (start 7.75 6) (end -1.25 6)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 649446a9-8b8c-4862-8c7f-5d14e2b9e292))
(fp_line (start 7.75 6) (end 8 6)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 5fb1c085-0bd6-413d-b37b-343672384c8f))
(fp_line (start 8 -1.5) (end 8 -1.25)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp bf491877-3749-484e-b644-dad1ef984338))
(fp_line (start 8 -1.25) (end 8 5.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 62ffff95-fed6-4b75-abfb-e3bd5651b425))
(fp_line (start 8 6) (end 8 5.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 42f99e02-4382-490d-b14c-2992a21711e5))
(fp_line (start 0.25 -0.75) (end 3.25 -0.75)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 609d99ee-5fbd-4038-927e-4a08aa461fe0))
(fp_line (start 0.25 5.25) (end 0.25 -0.75)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 68f50ff4-6372-4a35-9f99-641a55aed484))
(fp_line (start 3.25 -0.75) (end 6.25 -0.75)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 116f2b6c-f6dd-4e6d-96c6-9048a1e7f53e))
(fp_line (start 6.25 -0.75) (end 6.25 5.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3f35574d-7372-43f3-bb29-7307467f7f87))
(fp_line (start 6.25 5.25) (end 0.25 5.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 11c631ba-0325-4841-98b4-97d183b81f56))
(fp_circle (center 3.25 2.25) (end 1.25 2.5)
(stroke (width 0.1) (type solid)) (fill none) (layer "F.Fab") (tstamp ad95aafb-7aa5-466b-86d1-d550917bfd4f))
(pad "1" thru_hole circle (at 0 0 90) (size 2 2) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 12 "I{slash}O 13") (pintype "passive") (tstamp 6bcf1116-63c2-4886-8036-f365f9a36f28))
(pad "1" thru_hole circle (at 6.5 0 90) (size 2 2) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 12 "I{slash}O 13") (pintype "passive") (tstamp 35f773c3-b975-4518-8b1e-aae729639a27))
(pad "2" thru_hole circle (at 0 4.5 90) (size 2 2) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 39 "GND") (pintype "passive") (tstamp 6e8a469f-c88a-4296-8a54-8f602d84f73c))
(pad "2" thru_hole circle (at 6.5 4.5 90) (size 2 2) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 39 "GND") (pintype "passive") (tstamp b9188269-b78c-49ae-b447-c7e7a70948f5))
(model "${KICAD6_3DMODEL_DIR}/Button_Switch_THT.3dshapes/SW_PUSH_6mm_H13mm.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "TerminalBlock_Phoenix:TerminalBlock_Phoenix_MKDS-1,5-2-5.08_1x02_P5.08mm_Horizontal" (layer "F.Cu")
(tstamp 6a9f64c6-80c4-456f-b891-f83a7508c6bb)
(at 45.43 81.915 -90)
(descr "Terminal Block Phoenix MKDS-1,5-2-5.08, 2 pins, pitch 5.08mm, size 10.2x9.8mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.farnell.com/datasheets/100425.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix")
(tags "THT Terminal Block Phoenix MKDS-1,5-2-5.08 pitch 5.08mm size 10.2x9.8mm^2 drill 1.3mm pad 2.6mm")
(property "Sheetfile" "Pi Zero Mother.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")
(attr through_hole)
(fp_text reference "J2" (at -4.415 -0.32 -180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 09a098ca-5836-4981-9c1e-4141931fec71)
)
(fp_text value "Screw_Terminal_01x02" (at 2.54 5.66 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ae71e0ff-d426-46d6-a8ea-7c32c6137edb)
)
(fp_text user "${REFERENCE}" (at 2.54 3.2 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 12565c2d-f437-42c7-8187-66166774f204)
)
(fp_line (start -2.84 4.16) (end -2.84 4.9)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp bb7680ed-6b90-4e1b-b70d-2f7bb4f79585))
(fp_line (start -2.84 4.9) (end -2.34 4.9)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9eb8c9d8-4687-49cc-8db4-c25f296b3e64))
(fp_line (start -2.6 -5.261) (end -2.6 4.66)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c3538c5c-968c-4b40-8123-c8bb769d0b20))
(fp_line (start -2.6 -5.261) (end 7.68 -5.261)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 587e0d14-d9fd-4adf-87a3-532b1d175add))
(fp_line (start -2.6 -2.301) (end 7.68 -2.301)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5b45ad81-3cb9-4cae-b97a-7310a9ceb8bc))
(fp_line (start -2.6 2.6) (end 7.68 2.6)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4c205251-8313-42e5-93b5-67a5d9e1a11a))
(fp_line (start -2.6 4.1) (end 7.68 4.1)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a6849003-779e-4b21-848e-b885daec2929))
(fp_line (start -2.6 4.66) (end 7.68 4.66)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8ab78a28-859d-4bac-8da0-642139dbed60))
(fp_line (start 3.853 1.023) (end 3.806 1.069)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp df64d5eb-9d9b-4b09-8608-ed4869d8300d))
(fp_line (start 4.046 1.239) (end 4.011 1.274)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp aa7bfca6-3280-4f0d-b2f6-2d6f8d25b385))
(fp_line (start 6.15 -1.275) (end 6.115 -1.239)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 20942ed2-c98f-47c3-a40c-58aed9096677))
(fp_line (start 6.355 -1.069) (end 6.308 -1.023)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f6340c7e-1b6b-4e35-9d35-bb3c1251ed17))
(fp_line (start 7.68 -5.261) (end 7.68 4.66)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp de422999-8976-4b48-9154-7bb7458646dc))
(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 9e9223d4-1763-45a3-ac08-b1d4d651287c))
(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 7591581a-7d96-4794-9cf1-f27f2392a328))
(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 c1cf727c-8e1d-4e7b-8f62-e940def307a6))
(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 97120c02-18aa-4dc8-ba92-c7b586df44b4))
(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 3c26e7a6-69b1-4459-bd89-8ada8cbb4574))
(fp_circle (center 5.08 0) (end 6.76 0)
(stroke (width 0.12) (type solid)) (fill none) (layer "F.SilkS") (tstamp 7a460a56-a437-4086-aa53-c605d5cdedeb))
(fp_line (start -3.04 -5.71) (end -3.04 5.1)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 52890eaf-0527-4ae4-ba30-49a268a23789))
(fp_line (start -3.04 5.1) (end 8.13 5.1)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 5bd69f90-4901-4280-a763-1761b4e789de))
(fp_line (start 8.13 -5.71) (end -3.04 -5.71)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 4b4a1f4a-a08d-4332-b470-b506d4c42cb5))
(fp_line (start 8.13 5.1) (end 8.13 -5.71)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp befa9f34-6b64-45b1-9b3a-28a2f8c213fa))
(fp_line (start -2.54 -5.2) (end 7.62 -5.2)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ce6f9277-7b2c-4dc7-9380-daa84d507c1b))
(fp_line (start -2.54 -2.3) (end 7.62 -2.3)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c772ef40-d482-4499-8c5e-5bced9bdc25b))
(fp_line (start -2.54 2.6) (end 7.62 2.6)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 23e0e0f9-42c4-4a4a-955b-51ec966697a4))
(fp_line (start -2.54 4.1) (end -2.54 -5.2)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 349ce9d3-23b5-412b-a4a8-673b47ad93f1))
(fp_line (start -2.54 4.1) (end 7.62 4.1)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 70fe778a-1cb9-4082-ab7d-ad394550c453))
(fp_line (start -2.04 4.6) (end -2.54 4.1)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c49791ba-052d-4c10-b49e-519f0982356a))
(fp_line (start 0.955 -1.138) (end -1.138 0.955)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b8f9498d-e6b9-4f24-bbe3-be0fab26c6ad))
(fp_line (start 1.138 -0.955) (end -0.955 1.138)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 796eb5d9-d12a-4545-9e26-2364498922fc))
(fp_line (start 6.035 -1.138) (end 3.943 0.955)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 6a318200-615a-429b-b074-5565700d6c3f))
(fp_line (start 6.218 -0.955) (end 4.126 1.138)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp de6ecab2-f139-446a-9822-08912f3717ae))
(fp_line (start 7.62 -5.2) (end 7.62 4.6)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b73ea9cd-2a84-4f22-8129-7ec498a07e7a))
(fp_line (start 7.62 4.6) (end -2.04 4.6)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ac83af54-044d-4c7b-879d-d505bba27f6c))
(fp_circle (center 0 0) (end 1.5 0)
(stroke (width 0.1) (type solid)) (fill none) (layer "F.Fab") (tstamp 478b1f42-80e1-4b76-81c2-e02a4b8ccd9b))
(fp_circle (center 5.08 0) (end 6.58 0)
(stroke (width 0.1) (type solid)) (fill none) (layer "F.Fab") (tstamp 7cec5406-024c-436b-923b-0ba25dfd8b00))
(pad "1" thru_hole circle (at 5.08 0 270) (size 2.6 2.6) (drill 1.3) (layers "*.Cu" "*.Mask")
(net 39 "GND") (pinfunction "Pin_1") (pintype "passive") (tstamp 977766c3-4c63-4f15-b08b-b2741e07225d))
(pad "2" thru_hole rect (at 0 0 270) (size 2.6 2.6) (drill 1.3) (layers "*.Cu" "*.Mask")
(net 27 "Net-(J4-Pin_2)") (pinfunction "Pin_2") (pintype "passive") (tstamp b47077d7-aecb-4cf4-bb36-cb9cb72bc754))
(model "${KICAD6_3DMODEL_DIR}/TerminalBlock_Phoenix.3dshapes/TerminalBlock_Phoenix_MKDS-1,5-2-5.08_1x02_P5.08mm_Horizontal.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "TM1637:TM1637" (layer "F.Cu")
(tstamp 74057883-701a-46c0-83b8-81f9a5b415fa)
(at 80.625 85.38)
(property "Sheetfile" "Pi Zero Mother.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Generic connector, single row, 01x04, script generated")
(property "ki_keywords" "connector")
(attr through_hole)
(fp_text reference "4-Digit LED Display" (at 14.375 -11.38 unlocked) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 857857ab-edfd-484e-a109-c47d1eb5a538)
)
(fp_text value "TM1637" (at 0 -1.04 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 07a8a405-f5c5-4170-b8e7-fe9a2cd19916)
)
(fp_text user "${REFERENCE}" (at 0 2.54 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 98a6b359-9cc5-4bbc-b279-602f6c35a85f)
)
(fp_line (start -24.765 -10.16) (end -24.765 12.7)
(stroke (width 0.05) (type default)) (layer "F.CrtYd") (tstamp 5bda432f-f3d9-465e-b206-a9d520b58cd8))
(fp_line (start -24.765 12.7) (end 22.225 12.7)
(stroke (width 0.05) (type default)) (layer "F.CrtYd") (tstamp e92475f2-15ca-4f30-a9b5-8c934a3b0de0))
(fp_line (start 22.225 -10.16) (end -24.765 -10.16)
(stroke (width 0.05) (type default)) (layer "F.CrtYd") (tstamp 4d98eef4-f3bb-4b8f-adcf-2094f1fd3347))
(fp_line (start 22.225 12.7) (end 22.225 -10.16)
(stroke (width 0.05) (type default)) (layer "F.CrtYd") (tstamp cc9bb867-6e49-45bb-9e23-2a088634a893))
(pad "1" thru_hole circle (at -22.86 5.08) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 42 "+3.3V") (pinfunction "Pin_1") (pintype "passive") (tstamp fe3e8ff6-012d-46b9-912d-c876127342e2))
(pad "2" thru_hole circle (at -22.86 2.54) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 39 "GND") (pinfunction "Pin_2") (pintype "passive") (tstamp c7362905-1fbc-4b3a-bc70-a18df8e26aeb))
(pad "3" thru_hole circle (at -22.86 0) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 29 "DIO") (pinfunction "Pin_3") (pintype "passive") (tstamp 7fd5d1dd-b267-4604-9d79-6bdcca3e7cf2))
(pad "4" thru_hole circle (at -22.86 -2.54) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask" "F.Adhes")
(net 30 "CLK") (pinfunction "Pin_4") (pintype "passive") (tstamp 56042b2e-1d10-4eb4-9490-f454b9e201b2))
(pad "5" thru_hole circle (at 20.32 5.08) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") (tstamp fb632b31-aa97-46d7-8296-a50ba2b30e4f))
(pad "6" thru_hole circle (at 20.32 2.54) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") (tstamp c70a568b-496b-44af-ac10-0078f4cafca9))
(pad "7" thru_hole circle (at 20.32 0) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") (tstamp 8b164d5b-ea24-4ba4-aefc-6d52a50cbf4c))
(pad "8" thru_hole circle (at 20.32 -2.54) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask") (tstamp 4aa5bff4-5aa0-4abd-9f0b-6cf62e2eb15f))
)
(footprint "LED_THT:LED_D5.0mm-4_RGB" (layer "F.Cu")
(tstamp 868e7fef-f370-4738-aacc-d622bb1a62ec)
(at 115 35.98 -90)
(descr "LED, diameter 5.0mm, 4 pins, WP154A4, https://www.kingbright.com/attachments/file/psearch/000/00/00/L-154A4SUREQBFZGEW(Ver.11A).pdf")
(tags "LED diameter 5.0mm 2 pins diameter 5.0mm 3 pins diameter 5.0mm 4 pins RGB RGBLED")
(property "Sheetfile" "Pi Zero Mother.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "RGB LED, 6 pin package")
(property "ki_keywords" "LED RGB diode")
(attr through_hole)
(fp_text reference "RGB" (at 6.27 0 -180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp fe3eb140-4cdb-4cbb-aca3-92797b1c7627)
)
(fp_text value "LED_RGB" (at 1.905 3.96 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 611e7c99-2aba-4d2d-a3bd-f8072ea363d4)
)
(fp_text user "${REFERENCE}" (at 1.905 -3.96 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp db4f84a0-799b-41db-9e0e-0941df6ce743)
)
(fp_line (start -0.655 -1.545) (end -0.655 -1.08)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6bdbc26c-5064-44da-b4e1-7738cb36e4b6))
(fp_line (start -0.655 1.08) (end -0.655 1.545)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9ef32f8e-a729-464e-90ba-086c01c92422))
(fp_arc (start -0.655 -1.54483) (mid 2.163456 -2.978809) (end 4.692815 -1.080827)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 87d8f314-6433-491f-8f82-bcdec7c56cc7))
(fp_arc (start -0.349684 -1.08) (mid 1.904762 -2.5) (end 4.159479 -1.080429)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f8742ab3-158a-4804-8dd5-1c28bae96fd5))
(fp_arc (start 4.159479 1.080429) (mid 1.904762 2.5) (end -0.349684 1.08)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ff9a865b-ce78-48cd-bcc9-509cf995e385))
(fp_arc (start 4.692815 1.080827) (mid 2.163456 2.978808) (end -0.655 1.54483)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 240c330c-ce80-43b5-8e3c-78d4ea9364e3))
(fp_line (start -1.35 -3.25) (end -1.35 3.25)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp f4d3790a-e6f4-484c-9b06-ca4c48d89ad2))
(fp_line (start -1.35 3.25) (end 5.15 3.25)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 70c98d98-1598-4df8-a359-e56985d23c39))
(fp_line (start 5.15 -3.25) (end -1.35 -3.25)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 2db1e361-2712-4410-8fe1-d9ff068605ff))
(fp_line (start 5.15 3.25) (end 5.15 -3.25)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 157716fd-175b-4780-9bdf-483d5cd771aa))
(fp_line (start -0.595 -1.469694) (end -0.595 1.469694)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 35cb2186-b957-4c5f-87ad-3a82e98a2734))
(fp_arc (start -0.595 -1.469694) (mid 4.805 0.000016) (end -0.595016 1.469666)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2361b441-c421-4327-add2-56821ee8a650))
(fp_circle (center 1.905 0) (end 4.405 0)
(stroke (width 0.1) (type solid)) (fill none) (layer "F.Fab") (tstamp 3b144999-4077-458d-8dbf-f72a4864d297))
(pad "1" thru_hole oval (at 3.81 0 270) (size 1.07 1.8) (drill 0.9) (layers "*.Cu" "*.Mask")
(net 24 "Net-(D1-GA)") (pinfunction "BA") (pintype "passive") (tstamp 74b5f6f7-00be-40f5-a863-3f44296ab560))
(pad "2" thru_hole oval (at 2.54 0 270) (size 1.07 1.8) (drill 0.9) (layers "*.Cu" "*.Mask")
(net 39 "GND") (tstamp 07b8c820-a31d-4a1c-af5a-85e7f45e552e))
(pad "3" thru_hole oval (at 1.27 0 270) (size 1.07 1.8) (drill 0.9) (layers "*.Cu" "*.Mask")
(net 21 "Net-(D1-BA)") (tstamp 746dd23e-1106-4293-90d3-862978a7041c))
(pad "4" thru_hole rect (at 0 0 270) (size 1.07 1.8) (drill 0.9) (layers "*.Cu" "*.Mask")
(net 25 "Net-(D1-RA)") (pinfunction "RK") (pintype "passive") (tstamp 6dc36f6d-3f8d-44e9-b813-6d232b296718))
(model "${KICAD6_3DMODEL_DIR}/LED_THT.3dshapes/LED_D5.0mm-4_RGB.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_PinHeader_2.54mm:PinHeader_1x04_P2.54mm_Vertical" (layer "F.Cu")
(tstamp 9d2edd33-2f76-45d5-9f6d-db089cb39010)
(at 90.985 58.46 -90)
(descr "Through hole straight pin header, 1x04, 2.54mm pitch, single row")
(tags "Through hole pin header THT 1x04 2.54mm single row")
(property "Sheetfile" "Pi Zero Mother.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Generic connector, single row, 01x04, script generated")
(property "ki_keywords" "connector")
(attr through_hole)
(fp_text reference "BMP180" (at 12.04 3.735 -180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c7bc5ce5-d72f-4b5d-b9fe-317dac5ff1a6)
)
(fp_text value "BMP 280" (at 0 9.95 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5f21b5bd-098d-4c53-834e-fe3d564cf80b)
)
(fp_text user "${REFERENCE}" (at 0 3.81) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 586c5ec0-82ae-4b73-9226-94b1c2e3eaa4)
)
(fp_line (start -1.33 -1.33) (end 0 -1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ed9766ff-b84d-4675-98ea-1be281b51062))
(fp_line (start -1.33 0) (end -1.33 -1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7d4d17c0-0ba9-4daf-94a1-f987141fde3d))
(fp_line (start -1.33 1.27) (end -1.33 8.95)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp bb6766b2-082d-4eb4-a755-a6d9d7961835))
(fp_line (start -1.33 1.27) (end 1.33 1.27)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8f00c46e-c46c-4cd0-8f34-378eaffabca6))
(fp_line (start -1.33 8.95) (end 1.33 8.95)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ff610261-7ba4-48a0-afcb-4638b5f4218f))
(fp_line (start 1.33 1.27) (end 1.33 8.95)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 26dcd3d9-388e-4276-9c07-f35a5f6c9d9c))
(fp_line (start -1.8 -1.8) (end -1.8 9.4)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 2c938f31-d16c-488c-bbce-c1a703367849))
(fp_line (start -1.8 9.4) (end 1.8 9.4)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 80f530bb-2ae0-436b-8b6b-8a998cbca163))
(fp_line (start 1.8 -1.8) (end -1.8 -1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ba8675d0-2859-4332-95dc-43ab85d7fe16))
(fp_line (start 1.8 9.4) (end 1.8 -1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a71fc14a-a1f1-4be0-bc5d-4718630223d7))
(fp_line (start -1.27 -0.635) (end -0.635 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7d801f76-2829-4e15-ac60-f8932e5d583a))
(fp_line (start -1.27 8.89) (end -1.27 -0.635)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp db2795c6-2d84-4bc1-8ebe-29d10e0cb1c0))
(fp_line (start -0.635 -1.27) (end 1.27 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8f8ae110-f82a-42d1-aee4-b07ba0fc5734))
(fp_line (start 1.27 -1.27) (end 1.27 8.89)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b07e6477-70dd-4e8e-8be0-7902b2efadbc))
(fp_line (start 1.27 8.89) (end -1.27 8.89)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2fc6dba0-7e3d-46a4-889d-174068c3111a))
(pad "1" thru_hole rect (at 0 0 270) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 42 "+3.3V") (pinfunction "Pin_1") (pintype "passive") (tstamp 8807d5ff-1340-4b74-b23f-f00b700daba5))
(pad "2" thru_hole oval (at 0 2.54 270) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 39 "GND") (pinfunction "Pin_2") (pintype "passive") (tstamp ef605350-0948-4bf1-a92e-82db72c5c65f))
(pad "3" thru_hole oval (at 0 5.08 270) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 4 "I2C SCL") (pinfunction "Pin_3") (pintype "passive") (tstamp 46d77c8e-f6fc-43b6-9e6f-32f7c0bc8f09))
(pad "4" thru_hole oval (at 0 7.62 270) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 3 "I2C SDA") (pinfunction "Pin_4") (pintype "passive") (tstamp 7a2b28d4-df6f-4e06-8168-3ce20750f644))
(model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x04_P2.54mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Module:Raspberry_Pi_Zero_Socketed_THT_FaceDown_MountingHoles" (layer "F.Cu")
(tstamp d6416379-01a7-4496-8116-fcfa46a510d0)
(at 102.045 28.85 -90)
(descr "Raspberry Pi Zero using through hole straight pin socket, 2x20, 2.54mm pitch, https://www.raspberrypi.org/documentation/hardware/raspberrypi/mechanical/rpi_MECH_Zero_1p2.pdf")
(tags "raspberry pi zero through hole")
(property "Sheetfile" "Pi Zero Mother.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Raspberry Pi Hat GPIO")
(property "ki_keywords" "RPi Raspberry Pi GPIO")
(attr through_hole)
(fp_text reference "RPiZeroW" (at -1.35 -7.205 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9e3a4d1d-21aa-4810-bce7-df11a56f6e91)
)
(fp_text value "RPi_GPIO" (at 11.38 26.47 -360) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4f7da623-8b26-484e-bd59-3cb5a8ff07fc)
)
(fp_text user "${REFERENCE}" (at 22.88 26.47 -360) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7b1a0fde-6ab7-478a-b51c-0be2ea8fb593)
)
(fp_line (start -5.48 0.91) (end -5.48 9.03)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 11346e3e-0912-4f9c-a49b-e97f68f2f751))
(fp_line (start -5.48 9.03) (end -3.68 9.03)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 06f3c9ee-12f2-44c7-92a6-14812ceb02bc))
(fp_line (start -5.48 13.51) (end -5.48 21.63)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp be92278a-1ca6-4ca3-864e-467003e03487))
(fp_line (start -5.48 21.63) (end -3.68 21.63)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d32ba3a6-6d2a-4dda-804a-16f4bb2a223b))
(fp_line (start -4.38 40.86) (end -4.38 52.28)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6c209b7b-ca84-4558-a49c-046a23df1296))
(fp_line (start -4.38 52.28) (end -3.68 52.28)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ad7699ee-4599-4ba8-bf45-dba824e72d50))
(fp_line (start -3.68 -3.03) (end -3.68 0.91)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2dc822e5-ab4b-4bf2-a36b-730db73479fc))
(fp_line (start -3.68 0.91) (end -5.48 0.91)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 238f1955-5d10-45e8-98bc-f5e8140e0ff3))
(fp_line (start -3.68 9.03) (end -3.68 13.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 61b438f0-4d42-4685-85ad-13b2c861dfc4))
(fp_line (start -3.68 13.51) (end -5.48 13.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8d752053-58e4-45c9-aa53-8dde65ca4c49))
(fp_line (start -3.68 21.63) (end -3.68 40.86)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ede12813-5433-401b-ad1e-ca5bd101360f))
(fp_line (start -3.68 40.86) (end -4.38 40.86)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3b7ac3b0-d9a5-46f1-8155-7a9ce9aec838))
(fp_line (start -3.68 52.28) (end -3.68 55.97)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 063cc684-0af1-49ad-a6ce-429a62edbbbe))
(fp_line (start 2.82 -7.29) (end 2.82 -6.09)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp cdef2221-3d6d-4c8b-aa25-f7c9a1724758))
(fp_line (start 2.82 -6.09) (end -0.62 -6.09)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7ca92443-14d1-4e10-9910-6f419d0f234a))
(fp_line (start 19.94 -7.29) (end 2.82 -7.29)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 79915e00-5d64-4d9a-b8f7-e4ca2ca06f9b))
(fp_line (start 19.94 -6.09) (end 19.94 -7.29)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b2de0e85-48e0-4d83-b236-079e00ba60c4))
(fp_line (start 19.94 -6.09) (end 23.38 -6.09)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ef56bac7-c4c5-447e-8274-9a4382a9d979))
(fp_line (start 20.28 49.33) (end 20.28 1.01)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 22436b04-cf4f-4fd1-aeb4-6d6a9c92a9b2))
(fp_line (start 20.28 51.93) (end 20.28 50.6)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4605c88b-304e-430a-abf9-6a24db95adf1))
(fp_line (start 21.61 51.93) (end 20.28 51.93)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ef1e6ff9-960a-41d0-b260-5fc923a8a1b0))
(fp_line (start 22.88 49.33) (end 20.28 49.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4d956bac-ee76-4c4a-ba07-16e04ca52896))
(fp_line (start 22.88 51.93) (end 22.88 49.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 34edf6e2-ea57-4479-9748-c12378286523))
(fp_line (start 23.38 59.03) (end -0.62 59.03)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp da65dd6d-97a9-4e6f-a075-6b7cd3669526))
(fp_line (start 25.48 1.01) (end 20.28 1.01)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp dcb927eb-31fa-4475-a6f2-af31cdc647c5))
(fp_line (start 25.48 51.93) (end 22.88 51.93)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b0cc05c6-a6b2-4b13-bfd3-e1458bf08593))
(fp_line (start 25.48 51.93) (end 25.48 1.01)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 67395a8b-f072-4292-96d2-3cca77ed4caf))
(fp_line (start 26.44 -3.03) (end 26.44 55.97)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9bdbf01c-6ffa-4943-9aae-7affbff9d3ab))
(fp_arc (start -3.68 -3.03) (mid -2.783747 -5.193747) (end -0.62 -6.09)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e2a4a1ed-c906-49b4-8260-194e9ad09a31))
(fp_arc (start -0.62 59.03) (mid -2.783747 58.133747) (end -3.68 55.97)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d7f7383d-2c90-462b-b5f1-5ab6ad77154a))
(fp_arc (start 23.38 -6.09) (mid 25.543747 -5.193747) (end 26.44 -3.03)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a585324c-b937-468c-9a3f-f5f941d377be))
(fp_arc (start 26.44 55.97) (mid 25.543747 58.133747) (end 23.38 59.03)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d167f5c2-6e89-4918-86f0-87684950c00a))
(fp_line (start -5.92 0.47) (end -5.92 9.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a0abd2f5-6e60-42a2-b77b-9c9d51220cf9))
(fp_line (start -5.92 0.47) (end -3.87 0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b9a5f032-7525-4fa3-b000-fc377002c473))
(fp_line (start -5.92 9.47) (end -3.87 9.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e17a2291-1101-4524-9190-62c87b7c7b81))
(fp_line (start -5.92 13.07) (end -5.92 22.07)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d472fd6b-a6b4-4598-9799-7a18d64040e3))
(fp_line (start -5.92 13.07) (end -3.87 13.07)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp daef7a91-af77-4508-ad11-90452aa9256f))
(fp_line (start -5.92 22.07) (end -3.87 22.07)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 3f7b148d-89ec-411b-9122-49e6c09f6504))
(fp_line (start -4.82 40.42) (end -3.87 40.42)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 92dd68f5-8ab9-47e2-9142-b1fd8038dedb))
(fp_line (start -4.82 52.72) (end -4.82 40.42)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 80d8b726-094b-44e4-bd66-710f3793196e))
(fp_line (start -4.82 52.72) (end -3.87 52.72)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b7ec7ce5-8bf2-4ea5-bbfb-668f047ec729))
(fp_line (start -3.87 0.47) (end -3.87 -6.28)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 93389e8a-6f03-416f-b212-2dd40e2f14f8))
(fp_line (start -3.87 13.07) (end -3.87 9.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp abdb812c-8a86-49a5-a5e9-b9d251e31264))
(fp_line (start -3.87 22.07) (end -3.87 40.42)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ad4be30d-777a-4062-8b50-6a93ad41bfae))
(fp_line (start -3.87 52.72) (end -3.87 59.22)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 02f91d91-9b0b-402b-aa8e-e7a2f8f82fb0))
(fp_line (start 2.38 -7.73) (end 2.38 -6.28)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 7853dd1f-cdd1-4f2f-8a59-df61cdf62fef))
(fp_line (start 2.38 -7.73) (end 20.38 -7.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 84d6e13c-3e81-46be-ba21-d634e7a2559d))
(fp_line (start 2.38 -6.28) (end -3.87 -6.28)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 250d1a06-3fbd-46c1-abe8-869e328ea00f))
(fp_line (start 19.85 0.6) (end 25.95 0.6)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d42daa91-ff79-4b53-8387-a2a1e1e1b918))
(fp_line (start 19.85 52.4) (end 19.85 0.6)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 8ac53b70-2b11-41c9-ad71-6dd5d3287e3a))
(fp_line (start 20.38 -7.73) (end 20.38 -6.28)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 32c9ef01-50f2-4b5e-b009-06468085845e))
(fp_line (start 25.95 0.6) (end 25.95 52.4)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 7e8164ba-2561-41ed-97ee-4e2a8d5edbd4))
(fp_line (start 25.95 52.4) (end 19.85 52.4)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 2e7d4587-3504-4acc-8a39-d6a722a8c4ce))
(fp_line (start 26.63 -6.28) (end 20.38 -6.28)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 45589232-2ea6-41af-9011-cf0df6d58c93))
(fp_line (start 26.63 -6.28) (end 26.63 59.22)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 837955a3-4ef1-406f-bfe3-c15276f271af))
(fp_line (start 26.63 59.22) (end -3.87 59.22)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 79a7350b-8762-488a-988f-c4f95078e956))
(fp_line (start -5.42 0.97) (end -5.42 8.97)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 37f6bf27-4233-4c6b-9944-2fa4e6e57961))
(fp_line (start -5.42 8.97) (end -3.62 8.97)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 20377ec2-e645-4a00-bdf8-2c499e39dd88))
(fp_line (start -5.42 13.57) (end -5.42 21.57)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b15b2071-07d6-423a-8708-9203b0ee7171))
(fp_line (start -5.42 21.57) (end -3.62 21.57)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9808be1a-199d-4e85-934e-f920cdb9003a))
(fp_line (start -4.32 40.92) (end -4.32 52.22)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d590dc40-2d9e-42e1-8b8e-226cb0bac76f))
(fp_line (start -3.62 0.97) (end -5.42 0.97)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f63f4472-a310-491d-a808-5c94a526896e))
(fp_line (start -3.62 0.97) (end -3.62 -3.03)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9717a510-c123-44be-8ed7-50ce31b5579f))
(fp_line (start -3.62 8.97) (end -3.62 13.57)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3fed3710-21af-47af-8259-c57c27272947))
(fp_line (start -3.62 13.57) (end -5.42 13.57)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 43991e7c-35df-40f9-b5bd-7809f188c73a))
(fp_line (start -3.62 21.57) (end -3.62 40.92)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 33317e03-c3cd-4e4b-8f03-cb1a34e51cca))
(fp_line (start -3.62 40.92) (end -4.32 40.92)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 597fee60-0f44-403b-8398-aea00746240a))
(fp_line (start -3.62 52.22) (end -4.32 52.22)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 478992fe-d579-4291-86a9-8f3699dc8904))
(fp_line (start -3.62 52.22) (end -3.62 55.97)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4a2144f1-6003-4cc4-ba42-1b18a303af86))
(fp_line (start -0.62 -6.03) (end 2.88 -6.03)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b718659b-1716-443c-9529-0d40ee0becf7))
(fp_line (start 2.88 -6.03) (end 2.88 -7.23)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8f05acc2-8685-4e6c-a046-fd466a5fd98b))
(fp_line (start 19.88 -7.23) (end 2.88 -7.23)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4af97932-5b51-4e87-b1e9-21fba4139489))
(fp_line (start 19.88 -6.03) (end 19.88 -7.23)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 6c5a9464-4f04-4ee3-8c31-011a48e3ae7e))
(fp_line (start 20.34 1.07) (end 25.42 1.07)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 61864d7c-cd18-48d7-bddd-1904836ec999))
(fp_line (start 20.34 50.87) (end 20.34 1.07)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9ba3e318-e411-442a-9033-8010e94fd709))
(fp_line (start 21.34 51.87) (end 20.34 50.87)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 512ff198-9efa-4522-9a04-8593edc8a593))
(fp_line (start 23.38 -6.03) (end 19.88 -6.03)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 597be682-0152-45f5-99ad-ec234a8b2112))
(fp_line (start 23.38 58.97) (end -0.62 58.97)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9bad6dfe-4205-4a7c-b435-72a28fee95d1))
(fp_line (start 25.42 1.07) (end 25.42 51.87)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 325501d9-2f29-47f4-8811-26f8ff31138d))
(fp_line (start 25.42 51.87) (end 21.34 51.87)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 6c189d6a-9a1e-4dab-97eb-47176f94e15b))
(fp_line (start 26.38 -3.03) (end 26.38 55.97)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 5b94f678-c4d8-4afa-807c-814c952d1b9b))
(fp_arc (start -3.62 -3.03) (mid -2.74132 -5.15132) (end -0.62 -6.03)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e878a2ec-aa1a-4fc5-8648-81630d8e7e5a))
(fp_arc (start -0.62 58.97) (mid -2.74132 58.09132) (end -3.62 55.97)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp aa17fd7c-369e-40fd-ae93-3e3e2d686118))
(fp_arc (start 23.38 -6.03) (mid 25.50132 -5.15132) (end 26.38 -3.03)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c373a054-f880-4dbb-b4f7-4e62830f9474))
(fp_arc (start 26.38 55.97) (mid 25.50132 58.09132) (end 23.38 58.97)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 45911730-bab3-4188-840d-28a8b631819e))
(pad "1" thru_hole oval (at 21.61 2.34 90) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 42 "+3.3V") (pinfunction "3.3V") (pintype "power_in") (tstamp fcdbe2f0-ab74-4398-8a30-a0c1bb425258))
(pad "2" thru_hole oval (at 24.15 2.34 90) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 7 "unconnected-(J1-5V-Pad2)") (pinfunction "5V") (pintype "power_in") (tstamp 07446a86-ca64-4d40-86fe-7eae771667f5))