-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathxerc2c.kicad_pcb
More file actions
4834 lines (4807 loc) · 194 KB
/
xerc2c.kicad_pcb
File metadata and controls
4834 lines (4807 loc) · 194 KB
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
(stackup
(layer "F.SilkS" (type "Top Silk Screen"))
(layer "F.Paste" (type "Top Solder Paste"))
(layer "F.Mask" (type "Top Solder Mask") (thickness 0.01))
(layer "F.Cu" (type "copper") (thickness 0.035))
(layer "dielectric 1" (type "core") (thickness 1.51) (material "FR4") (epsilon_r 4.5) (loss_tangent 0.02))
(layer "B.Cu" (type "copper") (thickness 0.035))
(layer "B.Mask" (type "Bottom Solder Mask") (thickness 0.01))
(layer "B.Paste" (type "Bottom Solder Paste"))
(layer "B.SilkS" (type "Bottom Silk Screen"))
(copper_finish "None")
(dielectric_constraints no)
)
(pad_to_mask_clearance 0)
(pcbplotparams
(layerselection 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 1)
(scaleselection 1)
(outputdirectory "")
)
)
(net 0 "")
(net 1 "GND")
(net 2 "VCC")
(net 3 "/IRd")
(net 4 "/SL")
(net 5 "/PO")
(net 6 "/IRs")
(net 7 "/IR+")
(net 8 "/PB")
(net 9 "/EB")
(net 10 "Net-(Q1-B)")
(net 11 "Net-(J2-Pin_3)")
(net 12 "Net-(J2-Pin_5)")
(net 13 "Net-(J2-Pin_6)")
(footprint "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu")
(tstamp 1b040c60-3d82-4877-a4b1-ec1aca97da6c)
(at 82.991 74.937 180)
(descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(property "Sheetfile" "xerc2c.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor")
(property "ki_keywords" "R res resistor")
(path "/f54188c9-9eac-4959-829e-598f05e60e93")
(attr smd)
(fp_text reference "R3" (at 0.107 1.297) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5dd85554-acb3-4dcb-ac19-bfc48fbd8136)
)
(fp_text value "100R" (at 0 1.43) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp fbea9d7f-8f1c-451a-bdf2-a9ad761f7526)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp c9012545-3619-4ea1-9630-30fad804e610)
)
(fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7a8f5fd5-5194-4f15-861b-b789561b18e2))
(fp_line (start -0.237258 0.5225) (end 0.237258 0.5225)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c697ebc9-b9a8-4c0f-8550-cb33137d97ec))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 518b8e93-b092-41e1-8d07-e938fd784717))
(fp_line (start -1.48 0.73) (end -1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 5d799687-5c6d-4d07-a7b4-bcbfccb64fa3))
(fp_line (start 1.48 -0.73) (end 1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 789e2266-30bb-46c2-8178-060ea9c5b46e))
(fp_line (start 1.48 0.73) (end -1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp dd5bd4a5-e282-4aae-b231-ec096db4cada))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f2e3fb89-32bf-4dfc-967f-a3543914f549))
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0875f168-b1b9-4b96-9485-8d2fd0844bd2))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a2899b12-fff1-4b89-8d88-97150d15ff3c))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7f6968d9-a490-493e-9b90-ff1a44866de2))
(pad "1" smd roundrect (at -0.825 0 180) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 7 "/IR+") (pintype "passive") (tstamp e2aad586-491f-4ffe-b2be-aa477b510b72))
(pad "2" smd roundrect (at 0.825 0 180) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "VCC") (pintype "passive") (tstamp 4e8fd8f6-ed18-42ff-9152-4a315a018b45))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu")
(tstamp 1cf75b72-d44f-4584-ace8-4a8baf492ca0)
(at 69.165 74.956)
(descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(property "Sheetfile" "xerc2c.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor")
(property "ki_keywords" "R res resistor")
(path "/0634102a-d9b9-425b-94fc-3557c703a3fe")
(attr smd)
(fp_text reference "R4" (at 0 -1.43) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0579acc5-37f0-43f7-a640-4515d818bff1)
)
(fp_text value "10k" (at 0 1.43) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a3ee0c6d-387e-4966-822c-ea98023f4c32)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 70cae5e9-9119-4637-a799-17ee353133fb)
)
(fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 07357ea8-d96a-481e-a583-66f5923177b0))
(fp_line (start -0.237258 0.5225) (end 0.237258 0.5225)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 61915db3-70ce-4a1b-b75d-1eb639119b58))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 95ea851e-808a-416f-9532-f829ce6d68be))
(fp_line (start -1.48 0.73) (end -1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp fc5c1ee8-d15b-4aed-ad3c-96d45a01ba1d))
(fp_line (start 1.48 -0.73) (end 1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 8a43a210-0f12-41cd-afab-a1a38a3f9aee))
(fp_line (start 1.48 0.73) (end -1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 27aa05bf-aa14-4686-81e0-446961a92405))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c71395d0-bc70-416f-89f8-1cfea944f10a))
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b280d432-8b8b-45d6-8012-09b5956d5d5c))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 5d717089-0bb1-48f0-8c92-5d040e8316f9))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp cdebc3b4-be5d-4807-a75c-047d0e4e6570))
(pad "1" smd roundrect (at -0.825 0) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 11 "Net-(J2-Pin_3)") (pintype "passive") (tstamp c08292aa-fc7f-4b38-a6b3-7e4df9bc6ca9))
(pad "2" smd roundrect (at 0.825 0) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "VCC") (pintype "passive") (tstamp 69d8683d-3ac0-4022-b06d-cf87edae9485))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Package_TO_SOT_SMD:SOT-23" (layer "F.Cu")
(tstamp 66ca5e36-3861-425d-8f16-b59dedc24aa2)
(at 80.743 78.052 -90)
(descr "SOT, 3 Pin (https://www.jedec.org/system/files/docs/to-236h.pdf variant AB), generated with kicad-footprint-generator ipc_gullwing_generator.py")
(tags "SOT TO_SOT_SMD")
(property "Sheetfile" "xerc2c.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "0.2A Ic, 40V Vce, Small Signal NPN Transistor, SOT-23")
(property "ki_keywords" "NPN Transistor")
(path "/5653e827-9b43-412a-940e-0f69c3b1c9ab")
(attr smd)
(fp_text reference "Q1" (at -0.537 2.388 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 62e9933d-71c9-4114-b58e-2d45c4ede944)
)
(fp_text value "2N3906" (at 0 2.4 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d973c9bc-e94f-4d52-83f6-aa487634e909)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.32 0.32) (thickness 0.05)))
(tstamp 3fd4c3de-e6d2-4936-b7cc-32ab381a70bd)
)
(fp_line (start 0 -1.56) (end -1.675 -1.56)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 837a7b76-f215-4b39-8db0-41fc89739314))
(fp_line (start 0 -1.56) (end 0.65 -1.56)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a9507f98-1590-4114-99c7-d97503fc0702))
(fp_line (start 0 1.56) (end -0.65 1.56)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8f1b825e-1e1f-455f-bfa1-231a43db2679))
(fp_line (start 0 1.56) (end 0.65 1.56)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 83949c78-52b5-4054-a724-e9da66d7e326))
(fp_line (start -1.92 -1.7) (end -1.92 1.7)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b2f4b638-ed53-45d1-b7e0-6c9483448339))
(fp_line (start -1.92 1.7) (end 1.92 1.7)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e53cc160-a3f3-4ba1-ba14-9a8bcfe8f7ef))
(fp_line (start 1.92 -1.7) (end -1.92 -1.7)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp aba7d836-0706-4a02-a127-6a91a9c43f10))
(fp_line (start 1.92 1.7) (end 1.92 -1.7)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 874ef339-9eaf-42ec-ac93-7c2795f49d85))
(fp_line (start -0.65 -1.125) (end -0.325 -1.45)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 98549716-8c30-4194-9ea6-3320ca79c5b1))
(fp_line (start -0.65 1.45) (end -0.65 -1.125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 6409f7c6-14a7-46ec-a0e2-76c19e5226af))
(fp_line (start -0.325 -1.45) (end 0.65 -1.45)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b52974cb-8c45-43a4-a5d2-7334938416ca))
(fp_line (start 0.65 -1.45) (end 0.65 1.45)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0e82bec2-297f-4d7d-8900-95ce8248ea54))
(fp_line (start 0.65 1.45) (end -0.65 1.45)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0674d975-19a9-442c-afb3-23fa3a305c0e))
(pad "1" smd roundrect (at -0.9375 -0.95 270) (size 1.475 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 10 "Net-(Q1-B)") (pinfunction "B") (pintype "input") (tstamp 4469da24-97a7-4bf4-b293-c56b445f076d))
(pad "2" smd roundrect (at -0.9375 0.95 270) (size 1.475 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "VCC") (pinfunction "E") (pintype "passive") (tstamp f915ac67-209e-4b42-a621-5c7a2bd1f4e2))
(pad "3" smd roundrect (at 0.9375 0 270) (size 1.475 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 4 "/SL") (pinfunction "C") (pintype "passive") (tstamp c64c2b71-59cc-4ad5-9d4e-fb8ed5757067))
(model "${KICAD6_3DMODEL_DIR}/Package_TO_SOT_SMD.3dshapes/SOT-23.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Library:SMDPAD" (layer "F.Cu")
(tstamp 72fcd7b5-180e-4ab0-a563-98db83993147)
(at 83.158375 86.923 90)
(property "Sheetfile" "xerc2c.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "test point")
(property "ki_keywords" "test point tp")
(path "/e3302dc3-5772-4f93-aa83-5cb703ff3551")
(attr smd)
(fp_text reference "TP9" (at 0 -0.5 90 unlocked) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.1)))
(tstamp 0afb5f6b-c6c9-4cf5-94f7-db2b11a776f5)
)
(fp_text value "SMD2" (at 0 1 90 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 297cd103-11c0-4008-a21d-5e20b493f4a8)
)
(fp_text user "${REFERENCE}" (at 0 2.5 90 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5cd74f46-bb18-41e0-970e-cb9457fc17e7)
)
(pad "1" smd roundrect (at 0 0 90) (size 3 2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 7 "/IR+") (pinfunction "1") (pintype "passive") (thermal_bridge_angle 45) (tstamp 6e33e998-cf2f-4046-8f78-f158146640ae))
)
(footprint "Diode_SMD:D_0603_1608Metric" (layer "F.Cu")
(tstamp 7b22f48f-eb75-46be-bc18-71c90d4c8185)
(at 63.735 78.695 90)
(descr "Diode SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags "diode")
(property "Sheetfile" "xerc2c.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Schottky diode")
(property "ki_keywords" "diode Schottky")
(path "/7766f855-f854-448f-866d-a9b3964a7b10")
(attr smd)
(fp_text reference "D1" (at 0.541 1.512 270) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 95f6f1ed-3ec6-4601-bb68-871e78d09886)
)
(fp_text value "D_Schottky" (at 0 1.43 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2622bd80-831a-45df-bd26-7449cbf3cbae)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp fee6685c-d910-40c1-8b9a-3b2490396165)
)
(fp_line (start -1.485 -0.735) (end -1.485 0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c76890d9-add0-4ca9-8f0c-ac62df754ab9))
(fp_line (start -1.485 0.735) (end 1.46 0.73)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5ec93d8b-ce64-418f-aaa8-6c9564e83f1d))
(fp_line (start 1.48 -0.745) (end 1.48 0.725)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 12e789ca-660d-4fcf-bec2-b59668bc8b45))
(fp_line (start 1.49 -0.735) (end -1.485 -0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f9a9f6ca-8530-47f9-8cda-df76dd5eb512))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 97592909-91bd-436d-855b-c1a2cacee2ae))
(fp_line (start -1.48 0.73) (end -1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 3081b29e-ec9b-4e35-a318-d5eb99fdf743))
(fp_line (start 1.48 -0.73) (end 1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ad4af120-23c4-4463-ab0d-c821b2442852))
(fp_line (start 1.48 0.73) (end -1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 99f24abc-2bb2-4d15-9ee2-b0c4d1dc0e48))
(fp_line (start -0.8 -0.1) (end -0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 26c46ac4-9c75-456c-824d-d39730e6d3f5))
(fp_line (start -0.8 0.4) (end 0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 6e35f104-6b52-48d2-a2e9-e8b2d93dcde5))
(fp_line (start -0.5 -0.4) (end -0.8 -0.1)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 16ca36d0-b53f-4d80-9971-e659e082f1d4))
(fp_line (start 0.8 -0.4) (end -0.5 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp eaf83919-305a-4034-bcfd-4c91713abc15))
(fp_line (start 0.8 0.4) (end 0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 75c3be7c-5e73-4067-ae85-a834c66d0389))
(pad "1" smd roundrect (at -0.7875 0 90) (size 0.875 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 3 "/IRd") (pinfunction "K") (pintype "passive") (tstamp 7bb42b3e-9dc3-465b-a0fc-d6e2a2b033c1))
(pad "2" smd roundrect (at 0.7875 0 90) (size 0.875 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 6 "/IRs") (pinfunction "A") (pintype "passive") (tstamp 26274a61-e847-4348-850c-f9a1da06b543))
(model "${KICAD6_3DMODEL_DIR}/Diode_SMD.3dshapes/D_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Library:SMDPAD" (layer "F.Cu")
(tstamp 7e4d9440-b11f-4807-a484-1ceb08b34ce9)
(at 72.007875 86.923 90)
(property "Sheetfile" "xerc2c.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "test point")
(property "ki_keywords" "test point tp")
(path "/4cf035a4-87e2-4600-88fa-5811e28c98bf")
(attr smd)
(fp_text reference "TP6" (at 0 -0.5 90 unlocked) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.1)))
(tstamp ed66d4eb-c646-4209-8244-07af189a388b)
)
(fp_text value "SMD2" (at 0 1 90 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 863aed29-7903-4e33-a3a6-ec7a14427cec)
)
(fp_text user "${REFERENCE}" (at 0 2.5 90 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 89775427-eea7-41e4-8dfb-cc34f35ad867)
)
(pad "1" smd roundrect (at 0 0 90) (size 3 2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 8 "/PB") (pinfunction "1") (pintype "passive") (thermal_bridge_angle 45) (tstamp 40ed6a90-f59b-429e-a9fb-701f3a6ff79a))
)
(footprint "Library:SMDPAD" (layer "F.Cu")
(tstamp 7e69bf6d-9029-4767-9155-d7890a282c62)
(at 74.7955 86.923 90)
(property "Sheetfile" "xerc2c.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "test point")
(property "ki_keywords" "test point tp")
(path "/794bc242-d6bb-480e-9ec7-3fd3e16fe168")
(attr smd)
(fp_text reference "TP7" (at 0 -0.5 90 unlocked) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.1)))
(tstamp e4b5bc6e-5776-45bb-9296-782c1533b2b8)
)
(fp_text value "SMD2" (at 0 1 90 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 44bbc8ba-27d9-4cba-b773-5cbaf1f2fa82)
)
(fp_text user "${REFERENCE}" (at 0 2.5 90 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 992f4d14-27d1-478f-b95b-6b36c8fe1243)
)
(pad "1" smd roundrect (at 0 0 90) (size 3 2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 9 "/EB") (pinfunction "1") (pintype "passive") (thermal_bridge_angle 45) (tstamp bbcde323-1c91-414c-9848-066eb2c0d035))
)
(footprint "Library:SMDPAD" (layer "F.Cu")
(tstamp 80f14eb4-8854-4f5e-8712-aa713a5308fa)
(at 66.432625 86.923 90)
(property "Sheetfile" "xerc2c.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "test point")
(property "ki_keywords" "test point tp")
(path "/c6a77233-2d80-4e9f-85ee-1b4e58fec7d1")
(attr smd)
(fp_text reference "TP2" (at 0 -0.5 90 unlocked) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.1)))
(tstamp 413a6806-7eea-49a0-b54d-948e9178cdaf)
)
(fp_text value "SMD2" (at 0 1 90 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d7d3f255-3f2e-47c7-b7a7-f8897d40cebf)
)
(fp_text user "${REFERENCE}" (at 0 2.5 90 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 077f5a45-23e9-4176-bdf6-e117ff701bf0)
)
(pad "1" smd roundrect (at 0 0 90) (size 3 2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pinfunction "1") (pintype "passive") (thermal_bridge_angle 45) (tstamp a54addbd-811e-413b-a623-64acf2860e58))
)
(footprint "Library:SMDPAD" (layer "F.Cu")
(tstamp 8bf38729-b182-4c35-8f72-3ce64db354ba)
(at 69.22025 86.923 90)
(property "Sheetfile" "xerc2c.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "test point")
(property "ki_keywords" "test point tp")
(path "/be9c4134-2d80-4a85-a68d-3fd77609d0bc")
(attr smd)
(fp_text reference "TP4" (at 0 -0.5 90 unlocked) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.1)))
(tstamp 78aa7b98-dfe5-4191-a400-4b58be4b28af)
)
(fp_text value "SMD2" (at 0 1 90 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a97f7f05-5eaa-4233-8f3f-9fe83c2f422d)
)
(fp_text user "${REFERENCE}" (at 0 2.5 90 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 446fd870-ff61-4f9e-ae23-256f510d7b7b)
)
(pad "1" smd roundrect (at 0 0 90) (size 3 2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 5 "/PO") (pinfunction "1") (pintype "passive") (thermal_bridge_angle 45) (tstamp ffab4f15-be21-48c1-86f3-c359b3bc0de1))
)
(footprint "Library:SMDPAD" (layer "F.Cu")
(tstamp b64a5c72-145d-4af6-83e8-ff98a113faa7)
(at 80.37075 86.923 90)
(property "Sheetfile" "xerc2c.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "test point")
(property "ki_keywords" "test point tp")
(path "/4add6344-47f9-43be-9d7a-353aa63b719a")
(attr smd)
(fp_text reference "TP5" (at 0 -0.5 90 unlocked) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.1)))
(tstamp 163e344c-eb68-40bf-b12d-4c2e8cc89c5e)
)
(fp_text value "SMD2" (at 0 1 90 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 33aae949-05ea-4397-954a-7ca723ecf658)
)
(fp_text user "${REFERENCE}" (at 0 2.5 90 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0cebba82-0a71-4db9-a36d-c23b7b8cd97c)
)
(pad "1" smd roundrect (at 0 0 90) (size 3 2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 3 "/IRd") (pinfunction "1") (pintype "passive") (thermal_bridge_angle 45) (tstamp 3e3be6a0-13ce-433f-b95a-c1e9d2c25a12))
)
(footprint "Library:SMDPAD" (layer "F.Cu")
(tstamp b9385e63-8e2b-4ba4-bd73-d8b016109a35)
(at 63.645 74.592 90)
(property "Sheetfile" "xerc2c.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "test point")
(property "ki_keywords" "test point tp")
(path "/9b36ca69-c370-433d-9fc9-17c052dd5211")
(attr smd)
(fp_text reference "TP8" (at -0.057 -2.733 90 unlocked) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.1)))
(tstamp 6ab3e73a-f113-4e3c-a574-e96f0565d7f7)
)
(fp_text value "SMD2" (at 0 1 90 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a736344a-8f71-4bf4-9481-66408f301d63)
)
(fp_text user "${REFERENCE}" (at 0 2.5 90 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6aae0293-7d0c-4a87-a044-8a1a76e6b1e4)
)
(pad "1" smd roundrect (at 0 0 90) (size 3 2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 6 "/IRs") (pinfunction "1") (pintype "passive") (thermal_bridge_angle 45) (tstamp c86d50aa-853d-49ee-89b9-b248aaa845d8))
)
(footprint "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu")
(tstamp bd7149b1-3089-4cfa-b442-2ded1f102205)
(at 80.585 81.9 180)
(descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(property "Sheetfile" "xerc2c.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor")
(property "ki_keywords" "R res resistor")
(path "/763b6da5-5eef-4cfa-b43e-4fe53390a6d5")
(attr smd)
(fp_text reference "R2" (at 2.349 0.06) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ee3db323-606a-4f3b-94f0-085c8645dc68)
)
(fp_text value "10k" (at 0 1.43) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 84ad2855-3f8c-4e86-a38d-c5683344a3d8)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 9d8e602c-a4a9-452f-82a7-3329164c20a0)
)
(fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0dcba921-6a02-4040-9391-9e95090faa7f))
(fp_line (start -0.237258 0.5225) (end 0.237258 0.5225)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 703087f4-f486-419c-94d8-f2215205f351))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 817a9a87-c7e5-4565-9108-51b95ad4ae97))
(fp_line (start -1.48 0.73) (end -1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 09b6d998-59d3-4a36-93fa-04a81aff668a))
(fp_line (start 1.48 -0.73) (end 1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a5cf61fc-a3d2-4628-bd56-84ddb6c72a41))
(fp_line (start 1.48 0.73) (end -1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 1e438459-0b8f-4447-8b53-d8d908616def))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ec517030-a0ed-4952-997d-f45c14934fb5))
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e115b0df-df37-4a82-aade-1781c45510ab))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 454c9b7a-b97c-42e8-a6c0-496ec6f485ca))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ec115e89-b138-4232-92e5-3d2082f23df4))
(pad "1" smd roundrect (at -0.825 0 180) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 5 "/PO") (pintype "passive") (tstamp 213bb617-d08d-4e20-8163-c9530e56e184))
(pad "2" smd roundrect (at 0.825 0 180) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 13 "Net-(J2-Pin_6)") (pintype "passive") (tstamp d690c6e4-b18e-4f62-89ce-2989f0327aae))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Library:SMDPAD" (layer "F.Cu")
(tstamp c5489469-5984-4b28-ad12-94735c29377e)
(at 77.583125 86.923 90)
(property "Sheetfile" "xerc2c.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "test point")
(property "ki_keywords" "test point tp")
(path "/942103b4-2e47-4166-80b2-0e46b581a4e2")
(attr smd)
(fp_text reference "TP3" (at 0 -0.5 90 unlocked) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.1)))
(tstamp c3fd7f51-f7ac-4963-9bd8-c0433c55d0c5)
)
(fp_text value "SMD2" (at 0 1 90 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ae39ce67-bc73-48d2-b5f9-5ec3181ebc14)
)
(fp_text user "${REFERENCE}" (at 0 2.5 90 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 689a97e5-4898-4c02-a4c8-0ced0e926cbd)
)
(pad "1" smd roundrect (at 0 0 90) (size 3 2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 4 "/SL") (pinfunction "1") (pintype "passive") (thermal_bridge_angle 45) (tstamp b929e3a6-224f-4cfd-b360-0f70e0a799fb))
)
(footprint "Capacitor_SMD:C_0603_1608Metric" (layer "F.Cu")
(tstamp daca2d95-927e-40cb-9da2-2f7c1f2f6da6)
(at 75.927 75.064)
(descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "Sheetfile" "xerc2c.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Unpolarized capacitor")
(property "ki_keywords" "cap capacitor")
(path "/b27bbd67-a2fd-4730-b6a0-f69e1a855de2")
(attr smd)
(fp_text reference "C2" (at 0 -1.43) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 08b23536-75ce-4c77-9054-4b5701e6cc07)
)
(fp_text value "0.1uF" (at 0 1.43) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ca9c6585-a6fc-4043-a7c2-8be6162bd83d)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 7f3500aa-2490-4610-87a5-ad468299f80b)
)
(fp_line (start -0.14058 -0.51) (end 0.14058 -0.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 87705976-0f5f-4607-bc5f-1b27abf6d9c9))
(fp_line (start -0.14058 0.51) (end 0.14058 0.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b776a7f6-3a61-4e82-9ee7-ebbeb6548060))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 3c63fe55-3174-4c16-931d-4619df7e661e))
(fp_line (start -1.48 0.73) (end -1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 32a09b82-00c6-448c-8aa4-1eb841ac136d))
(fp_line (start 1.48 -0.73) (end 1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 7c9d7ce8-9c55-4ff5-8d1e-87acbb8fbeb9))
(fp_line (start 1.48 0.73) (end -1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp cc33ef43-970e-46b9-8ed7-aabc66eecb46))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e686cc94-e1c7-4448-ae08-dc9b41c4132d))
(fp_line (start -0.8 0.4) (end -0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 556f642f-e514-427b-ab64-32c8f8de818c))
(fp_line (start 0.8 -0.4) (end 0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 5c5415ed-6bf3-4594-9982-88b40f7d2c03))
(fp_line (start 0.8 0.4) (end -0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 1713335b-eb35-44cb-b013-1cd0ee5aed0a))
(pad "1" smd roundrect (at -0.775 0) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "VCC") (pintype "passive") (tstamp 5c3979b1-8041-45a3-9755-eee81aaf69e0))
(pad "2" smd roundrect (at 0.775 0) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp 22af7d07-dbac-4843-a873-100acbcd6691))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu")
(tstamp e38541e9-5ae3-47aa-9c7c-54fd8281cedf)
(at 79.565 74.982 180)
(descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(property "Sheetfile" "xerc2c.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor")
(property "ki_keywords" "R res resistor")
(path "/6336eb1e-8162-4ca0-a69d-e55f7ce3601b")
(attr smd)
(fp_text reference "R1" (at -0.064 1.383) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b730bb2c-efdc-4b1f-8477-73eb762cd4f1)
)
(fp_text value "10k" (at 0 1.43) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4b995970-96d0-46af-96b8-626c34176def)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 8dc0e5b2-10a8-4b74-b69a-5e291a77f258)
)
(fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ae7a6060-d70b-43aa-a22d-4fd9ff45d876))
(fp_line (start -0.237258 0.5225) (end 0.237258 0.5225)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 424c941a-f175-40dd-8fc8-a71b4d5b7072))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp bfd4f017-74e0-47f8-ad7f-2f9a70d40914))
(fp_line (start -1.48 0.73) (end -1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 55ef8d18-e406-4500-ba6a-7023745a6a43))
(fp_line (start 1.48 -0.73) (end 1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 20a36bc8-1078-4328-ae62-3f74c27e0635))
(fp_line (start 1.48 0.73) (end -1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 9e54e875-30b1-47e3-ae5e-a48954640302))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9097a00f-db4c-4941-bb89-873a40c02603))
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 6c76d98a-5fd1-4e98-97ff-72bff4121839))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 749f55d8-59ea-46ec-8abb-c6d0e542f01a))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ed30b6e3-5407-44cb-b0df-aadc35d2656e))
(pad "1" smd roundrect (at -0.825 0 180) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 10 "Net-(Q1-B)") (pintype "passive") (tstamp 187fcb7c-4864-47c9-a022-6c989fa5ded6))
(pad "2" smd roundrect (at 0.825 0 180) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 12 "Net-(J2-Pin_5)") (pintype "passive") (tstamp 6056c0c5-64e1-4d9c-a44f-a8e0ac48a646))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Library:SMDPAD" (layer "F.Cu")
(tstamp ec97c1cd-6e88-4e1d-bc70-ccd953e2cb27)
(at 63.645 86.923 90)
(property "Sheetfile" "xerc2c.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "test point")
(property "ki_keywords" "test point tp")
(path "/0e487f47-dc15-4447-bb3b-0b2b369ce67a")
(attr smd)
(fp_text reference "TP1" (at 0 -0.5 90 unlocked) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.1)))
(tstamp ed2ca028-0c17-4802-92e1-46f6553ca3f0)
)
(fp_text value "SMD2" (at 0 1 90 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6f5804b2-d5f6-4639-8f40-7586e3845bbe)
)
(fp_text user "${REFERENCE}" (at 0 2.5 90 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp eccb4032-f9b0-4696-9613-bdf72edb6303)
)
(pad "1" smd roundrect (at 0 0 90) (size 3 2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "VCC") (pinfunction "1") (pintype "passive") (thermal_bridge_angle 45) (tstamp 9abcf29f-2b38-46d3-b5f0-6e028ae2ad6c))
)
(footprint "Capacitor_SMD:C_0805_2012Metric" (layer "F.Cu")
(tstamp f64ef471-4f18-426b-8890-b33e074b4d01)
(at 83.648 78.972 -90)
(descr "Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf, https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator")
(tags "capacitor")
(property "Sheetfile" "xerc2c.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Unpolarized capacitor")
(property "ki_keywords" "cap capacitor")
(path "/416e7aba-86cf-4d96-b1e9-d5f116b26a88")
(attr smd)
(fp_text reference "C1" (at -0.028 -1.845 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 60a4228f-9f45-4e94-a9e5-326053118ab1)
)
(fp_text value "4.7uF" (at 0 1.68 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ecc9406d-d38c-42c1-a3c1-fcb6a5cf92a5)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp dab1e07d-699a-4131-bcb2-6c5f6d05ac6d)
)
(fp_line (start -0.261252 -0.735) (end 0.261252 -0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 25b4720c-a1aa-4741-927e-9a80c3fa6415))
(fp_line (start -0.261252 0.735) (end 0.261252 0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4137ca83-4756-4c1e-805c-7ab315859069))
(fp_line (start -1.7 -0.98) (end 1.7 -0.98)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 621e7d2f-c552-4e67-ad2d-65bcffbdf6c7))
(fp_line (start -1.7 0.98) (end -1.7 -0.98)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 9e9cc437-cf17-4e00-8b7c-ca8ac264b6dc))
(fp_line (start 1.7 -0.98) (end 1.7 0.98)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 7706f455-0d91-40e0-be8b-32886720611a))
(fp_line (start 1.7 0.98) (end -1.7 0.98)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 2be69b31-5b6a-4047-a446-e560dcbccccb))
(fp_line (start -1 -0.625) (end 1 -0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f782bcba-b553-4be4-9b22-343fc301e35e))
(fp_line (start -1 0.625) (end -1 -0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp fcb6f1a7-061b-45f3-879a-6899bac1b9ff))
(fp_line (start 1 -0.625) (end 1 0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 1b9c9a92-584e-4715-83ed-8994245f4882))
(fp_line (start 1 0.625) (end -1 0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8aecd612-a32a-460a-a7c9-c4827242229a))
(pad "1" smd roundrect (at -0.95 0 270) (size 1 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 7 "/IR+") (pintype "passive") (tstamp aed571c0-7946-4fcc-8a89-f1dde431fa4d))
(pad "2" smd roundrect (at 0.95 0 270) (size 1 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp d264b698-dda0-4c6f-8094-0a5ea98073ff))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Library:SMDPAD" (layer "F.Cu")
(tstamp f79eb0dd-b63e-40bc-a871-34a2124f90ef)
(at 85.946 86.923 90)
(property "Sheetfile" "xerc2c.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "test point")
(property "ki_keywords" "test point tp")
(path "/0714f680-4694-4170-81cd-cec56603a3af")
(attr smd)
(fp_text reference "TP10" (at 0 -0.5 90 unlocked) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.1)))
(tstamp 119856b7-c816-4661-9ef7-f9317428a551)
)
(fp_text value "SMD2" (at 0 1 90 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 333bf4cd-4181-4001-938d-1b0855f7bf61)
)
(fp_text user "${REFERENCE}" (at 0 2.5 90 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 43fa15fc-52a6-45ab-98c7-b7a263326d64)
)
(pad "1" smd roundrect (at 0 0 90) (size 3 2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pinfunction "1") (pintype "passive") (thermal_bridge_angle 45) (tstamp 04df6881-87b1-40d1-b19c-7616a0b025ea))
)
(footprint "Package_SO:SOIC-8W_5.3x5.3mm_P1.27mm" (layer "F.Cu")
(tstamp f9b4e9bc-5763-4111-bd02-7ef25d6849ba)
(at 71.982 79.836)
(descr "8-Lead Plastic Small Outline (SM) - 5.28 mm Body [SOIC] (http://ww1.microchip.com/downloads/en/PackagingSpec/00000049BQ.pdf)")
(tags "SOIC 1.27")
(property "Sheetfile" "xerc2c.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "20MHz, 4kB Flash, 256B SRAM, 256B EEPROM, debugWIRE, SOIC-8W")
(property "ki_keywords" "AVR 8bit Microcontroller tinyAVR")
(path "/e24f0eb5-e461-4f1f-b714-65d92e96a33d")
(attr smd)
(fp_text reference "U1" (at 0 -3.68) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4bb3947c-652a-4a11-a5cc-2fe710bc15df)
)
(fp_text value "ATtiny45-20S" (at 0 3.68) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 234d9735-c8da-436d-b108-d29ca6dde619)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3b7344a2-c1bc-4ba5-8004-9f06f716b253)
)
(fp_line (start -2.75 -2.755) (end 2.75 -2.755)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 836d2bf1-a913-41d8-b773-1db8e7d083ce))
(fp_line (start -2.75 2.755) (end -2.75 -2.755)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 72dedf65-f12b-46bf-ac7a-5d3b75c0d636))
(fp_line (start -2.75 2.755) (end 2.75 2.755)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp f80ca3b9-b0f8-467c-b9af-1766ba0773f9))
(fp_line (start -2.74 -1.59) (end -1.56 -2.75)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp a320a6ce-4406-4fc7-9b68-c693ca2fb31f))
(fp_line (start 2.75 -2.755) (end 2.75 2.455)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp eb4f072a-eeca-4f7f-86cd-77e330b0af3c))
(fp_line (start 2.75 2.755) (end 2.75 2.455)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp c38097ca-a458-464d-89ac-5b1d21142f8b))
(fp_line (start -4.75 -2.95) (end -4.75 2.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d4f13c78-dabf-4e5d-9063-e0909d868e21))
(fp_line (start -4.75 -2.95) (end 4.75 -2.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 8833571c-7680-4542-a8f0-278c4ff581c0))
(fp_line (start -4.75 2.95) (end 4.75 2.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 323690fc-86c0-4a9b-a7ac-4150bcdbeead))
(fp_line (start 4.75 -2.95) (end 4.75 2.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 48d8d9df-f208-402f-a560-143b3e88895c))
(fp_line (start -2.65 -1.65) (end -1.65 -2.65)
(stroke (width 0.15) (type solid)) (layer "F.Fab") (tstamp 9fe6df33-165d-44ff-9611-15c0bf7d793e))
(fp_line (start -2.65 2.65) (end -2.65 -1.65)
(stroke (width 0.15) (type solid)) (layer "F.Fab") (tstamp a7a4d8d9-d1ee-4e09-aa3e-f070a8b3b4a5))
(fp_line (start -1.65 -2.65) (end 2.65 -2.65)
(stroke (width 0.15) (type solid)) (layer "F.Fab") (tstamp 32dcd9ac-5025-4fbf-9f77-dc9155a887fb))
(fp_line (start 2.65 -2.65) (end 2.65 2.65)
(stroke (width 0.15) (type solid)) (layer "F.Fab") (tstamp 9f62651d-10e8-4978-ad2c-2a7439556d62))
(fp_line (start 2.65 2.65) (end -2.65 2.65)
(stroke (width 0.15) (type solid)) (layer "F.Fab") (tstamp 2dff928b-60c5-453e-88dd-07398f8661bf))
(pad "1" smd rect (at -3.65 -1.905) (size 1.7 0.65) (layers "F.Cu" "F.Paste" "F.Mask")
(net 11 "Net-(J2-Pin_3)") (pinfunction "~{RESET}/PB5") (pintype "bidirectional") (tstamp 7078d3d1-fe4d-42ae-ba52-c88c4da5ef19))
(pad "2" smd rect (at -3.65 -0.635) (size 1.7 0.65) (layers "F.Cu" "F.Paste" "F.Mask")
(net 8 "/PB") (pinfunction "XTAL1/PB3") (pintype "bidirectional") (tstamp 07702eb2-5ab0-449c-91ef-da415864e106))
(pad "3" smd rect (at -3.65 0.635) (size 1.7 0.65) (layers "F.Cu" "F.Paste" "F.Mask")
(net 9 "/EB") (pinfunction "XTAL2/PB4") (pintype "bidirectional") (tstamp 3d38d6a9-6b9e-4f03-bab2-c5904a159795))
(pad "4" smd rect (at -3.65 1.905) (size 1.7 0.65) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pinfunction "GND") (pintype "power_in") (tstamp be50a304-9ff3-4144-ac36-ffea666c75a2))
(pad "5" smd rect (at 3.65 1.905) (size 1.7 0.65) (layers "F.Cu" "F.Paste" "F.Mask")
(net 13 "Net-(J2-Pin_6)") (pinfunction "AREF/PB0") (pintype "bidirectional") (tstamp 6e11c061-640e-4a04-83e8-3f73092d7e5c))
(pad "6" smd rect (at 3.65 0.635) (size 1.7 0.65) (layers "F.Cu" "F.Paste" "F.Mask")
(net 12 "Net-(J2-Pin_5)") (pinfunction "PB1") (pintype "bidirectional") (tstamp c0012416-3f5a-43ed-9616-c97cfc06ccc5))
(pad "7" smd rect (at 3.65 -0.635) (size 1.7 0.65) (layers "F.Cu" "F.Paste" "F.Mask")
(net 3 "/IRd") (pinfunction "PB2") (pintype "bidirectional") (tstamp 2bf74cd3-e334-4c94-bb9c-a06d55996f1e))
(pad "8" smd rect (at 3.65 -1.905) (size 1.7 0.65) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "VCC") (pinfunction "VCC") (pintype "power_in") (tstamp 0c0ef401-f132-478a-b0d3-79a4376f9333))
(model "${KICAD7_3DMODEL_DIR}/Package_SO.3dshapes/SOIC-8_3.9x4.9mm_P1.27mm.step"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_PinHeader_2.54mm:PinHeader_1x06_P2.54mm_Vertical" (layer "B.Cu")
(tstamp 4fa086ae-dff6-4698-9447-58aac7894d06)
(at 88.524 86.895)
(descr "Through hole straight pin header, 1x06, 2.54mm pitch, single row")
(tags "Through hole pin header THT 1x06 2.54mm single row")
(property "Sheetfile" "xerc2c.kicad_sch")
(property "Sheetname" "")
(property "dnp" "")
(property "ki_description" "Generic connector, single row, 01x06, script generated (kicad-library-utils/schlib/autogen/connector/)")
(property "ki_keywords" "connector")
(path "/3d85ad7d-811e-4dbf-a205-b94ea8219676")
(attr exclude_from_pos_files)
(fp_text reference "J2" (at 0 2.33) (layer "B.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 48260798-cf0a-4951-8994-467b0be55ed0)
)
(fp_text value "Conn_01x06" (at 0 -15.03) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp de420c17-e119-4f06-a106-59aaebe55616)
)
(fp_text user "${REFERENCE}" (at 0 -6.35 90) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp a7c2a517-80ec-47d9-9a1b-b3f7ed15bef2)
)
(fp_line (start -1.33 -14.03) (end 1.33 -14.03)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 3cb46793-5531-4a03-869c-a6194a25514a))
(fp_line (start -1.33 -1.27) (end -1.33 -14.03)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 7fd28b93-99d6-450d-8102-8219a96a0352))
(fp_line (start -1.33 -1.27) (end 1.33 -1.27)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 9fc1b885-94d7-4608-b0c0-f86a2826a70f))
(fp_line (start -1.33 0) (end -1.33 1.33)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 0fd69815-077b-493f-8bd3-42b0a6ca5710))
(fp_line (start -1.33 1.33) (end 0 1.33)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 5906eed1-2707-41dd-8e06-1f1b49bd80b0))
(fp_line (start 1.33 -1.27) (end 1.33 -14.03)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 436f8acb-a8ba-4984-9f47-817be96460f9))
(fp_line (start -1.8 -14.5) (end 1.8 -14.5)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 3bdf52c2-173c-40b5-90ac-2b718d9e8abb))
(fp_line (start -1.8 1.8) (end -1.8 -14.5)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp d5cfa8c0-0dd5-494b-976b-ab27bee408a2))
(fp_line (start 1.8 -14.5) (end 1.8 1.8)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 463680a9-8d99-419b-b961-298d856d2d51))
(fp_line (start 1.8 1.8) (end -1.8 1.8)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 9cc6a3da-b982-4f17-8356-f6cf0ab6984f))
(fp_line (start -1.27 -13.97) (end -1.27 0.635)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp dd174e19-d5ba-4755-8487-d17c86f82d46))
(fp_line (start -1.27 0.635) (end -0.635 1.27)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 7122bdaf-18e4-4123-bd1f-4597144eb3f3))
(fp_line (start -0.635 1.27) (end 1.27 1.27)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 23614831-1eca-425b-9d62-057788a8f1cf))
(fp_line (start 1.27 -13.97) (end -1.27 -13.97)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 86623d6d-1e09-45e5-aebf-827c44074924))
(fp_line (start 1.27 1.27) (end 1.27 -13.97)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 6a96cb57-ba0a-40cb-9277-f61c3002870e))
(pad "1" thru_hole rect (at 0 0) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 2 "VCC") (pinfunction "Pin_1") (pintype "passive") (tstamp 41421258-840a-4852-8166-28b3aa389b6e))
(pad "2" thru_hole oval (at 0 -2.54) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 1 "GND") (pinfunction "Pin_2") (pintype "passive") (tstamp 393bd005-45ae-4108-8ba9-2425bb29ee0a))
(pad "3" thru_hole oval (at 0 -5.08) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 11 "Net-(J2-Pin_3)") (pinfunction "Pin_3") (pintype "passive") (tstamp 5112b31c-bce6-421f-afd3-099681fafd44))
(pad "4" thru_hole oval (at 0 -7.62) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 3 "/IRd") (pinfunction "Pin_4") (pintype "passive") (tstamp 3646bbc6-a72d-4a9a-b910-1e496fe4fe06))
(pad "5" thru_hole oval (at 0 -10.16) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 12 "Net-(J2-Pin_5)") (pinfunction "Pin_5") (pintype "passive") (tstamp cbf72e6c-2c9b-4c5d-9c10-ed8f876668d7))
(pad "6" thru_hole oval (at 0 -12.7) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 13 "Net-(J2-Pin_6)") (pinfunction "Pin_6") (pintype "passive") (tstamp 55152bb8-5714-4d6b-978d-72d66c151340))
(model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x06_P2.54mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(gr_rect (start 62.115 72.564) (end 90.05 88.729)
(stroke (width 0.1) (type default)) (fill none) (layer "Edge.Cuts") (tstamp e987464c-9f9d-4aeb-a779-653b14322742))
(gr_text "SCK" (at 86.619 80.02) (layer "B.SilkS") (tstamp 22529cc2-d08f-4387-b582-3cf42c8d912e)
(effects (font (size 1 1) (thickness 0.15)) (justify left bottom mirror))
)
(gr_text "VCC" (at 86.525 87.716) (layer "B.SilkS") (tstamp 29913387-3be3-4c7e-818e-7399c1175509)
(effects (font (size 1 1) (thickness 0.15)) (justify left bottom mirror))
)
(gr_text "MISO" (at 86.589 77.269) (layer "B.SilkS") (tstamp ababd17e-4513-4ac0-ae73-5515b00cec15)
(effects (font (size 1 1) (thickness 0.15)) (justify left bottom mirror))
)
(gr_text "GND" (at 86.647 84.937) (layer "B.SilkS") (tstamp cd1201a8-19dd-4e97-a29f-9ef2bb07681f)
(effects (font (size 1 1) (thickness 0.15)) (justify left bottom mirror))
)
(gr_text "RST" (at 86.619 82.448) (layer "B.SilkS") (tstamp da44bcd7-0b82-4a7a-a8e6-1ba3b7072364)
(effects (font (size 1 1) (thickness 0.15)) (justify left bottom mirror))
)
(gr_text "MOSI" (at 86.506 74.727) (layer "B.SilkS") (tstamp eec6f21e-8df9-42ea-883b-626274c84a24)
(effects (font (size 1 1) (thickness 0.15)) (justify left bottom mirror))
)
(gr_text "IRd" (at 79.773 82.845548 -90) (layer "F.SilkS") (tstamp 15a6a627-5935-42e5-ad6a-26a0bc3dbbcb)
(effects (font (size 1 1) (thickness 0.15)) (justify left bottom))
)
(gr_text "P0" (at 68.206 85.13) (layer "F.SilkS") (tstamp 2cdb2a5d-7895-4f4c-895c-515821540a1f)
(effects (font (size 1 1) (thickness 0.15)) (justify left bottom))
)
(gr_text "IR+" (at 82.572 82.710215 270) (layer "F.SilkS") (tstamp 4c0346ea-a58d-4374-9bed-29597c1fc15f)
(effects (font (size 1 1) (thickness 0.15)) (justify left bottom))
)
(gr_text "PB" (at 71.003 85.149) (layer "F.SilkS") (tstamp 5125ff38-eaa1-450a-a94e-579c276bbc6a)
(effects (font (size 1 1) (thickness 0.15)) (justify left bottom))
)
(gr_text "IR-" (at 85.41 82.756215 270) (layer "F.SilkS") (tstamp 63962962-076d-4466-9b36-b6a0b7b38cca)
(effects (font (size 1 1) (thickness 0.15)) (justify left bottom))
)
(gr_text "GND" (at 65.843 82.078881 270) (layer "F.SilkS") (tstamp 90e2721f-90b9-43de-9ea8-c0cc0dde5f00)
(effects (font (size 1 1) (thickness 0.15)) (justify left bottom))
)
(gr_text "EB" (at 73.828 85.112) (layer "F.SilkS") (tstamp c64efc88-1bf2-4a84-97f0-c2dfb47e4522)
(effects (font (size 1 1) (thickness 0.15)) (justify left bottom))
)
(gr_text "PWR" (at 62.982 81.937643 -90) (layer "F.SilkS") (tstamp cfe409a9-4674-44f8-a19d-11c9d3464687)
(effects (font (size 1 1) (thickness 0.15)) (justify left bottom))
)
(gr_text "SL" (at 76.629 85.118) (layer "F.SilkS") (tstamp e24e2f1e-6139-410e-878e-1f438f00620e)
(effects (font (size 1 1) (thickness 0.15)) (justify left bottom))
)
(segment (start 68.332 82.725) (end 68.332 81.741) (width 0.3048) (layer "F.Cu") (net 1) (tstamp 712b558d-9467-4f45-95bf-a0af47d35d34))
(segment (start 66.432625 84.624375) (end 68.332 82.725) (width 0.3048) (layer "F.Cu") (net 1) (tstamp 91731258-ca41-4cda-b8a2-be1a13e8c9fb))