-
Notifications
You must be signed in to change notification settings - Fork 0
/
ArduinoSolderChallenge.kicad_pcb
4345 lines (4313 loc) · 177 KB
/
ArduinoSolderChallenge.kicad_pcb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
(kicad_pcb (version 20221018) (generator pcbnew)
(general
(thickness 1.6)
)
(paper "A4")
(layers
(0 "F.Cu" signal)
(31 "B.Cu" signal)
(32 "B.Adhes" user "B.Adhesive")
(33 "F.Adhes" user "F.Adhesive")
(34 "B.Paste" user)
(35 "F.Paste" user)
(36 "B.SilkS" user "B.Silkscreen")
(37 "F.SilkS" user "F.Silkscreen")
(38 "B.Mask" user)
(39 "F.Mask" user)
(40 "Dwgs.User" user "User.Drawings")
(41 "Cmts.User" user "User.Comments")
(42 "Eco1.User" user "User.Eco1")
(43 "Eco2.User" user "User.Eco2")
(44 "Edge.Cuts" user)
(45 "Margin" user)
(46 "B.CrtYd" user "B.Courtyard")
(47 "F.CrtYd" user "F.Courtyard")
(48 "B.Fab" user)
(49 "F.Fab" user)
(50 "User.1" user)
(51 "User.2" user)
(52 "User.3" user)
(53 "User.4" user)
(54 "User.5" user)
(55 "User.6" user)
(56 "User.7" user)
(57 "User.8" user)
(58 "User.9" user)
)
(setup
(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 0)
(scaleselection 1)
(outputdirectory "/Users/jackwoods/Documents/ENGR100-950/ArduinoSolderChallenge/0915PRODGBR/")
)
)
(net 0 "")
(net 1 "unconnected-(A1-TX1-Pad1)")
(net 2 "unconnected-(A1-RX1-Pad2)")
(net 3 "unconnected-(A1-~{RESET}-Pad3)")
(net 4 "GND")
(net 5 "Net-(A1-D2)")
(net 6 "Net-(A1-D3)")
(net 7 "Net-(A1-D4)")
(net 8 "Net-(A1-D5)")
(net 9 "Net-(A1-D6)")
(net 10 "Net-(A1-D7)")
(net 11 "Net-(A1-D8)")
(net 12 "Net-(A1-D9)")
(net 13 "Net-(A1-D10)")
(net 14 "unconnected-(A1-MOSI-Pad14)")
(net 15 "Net-(A1-A7)")
(net 16 "unconnected-(A1-SCK-Pad16)")
(net 17 "+3.3V")
(net 18 "unconnected-(A1-AREF-Pad18)")
(net 19 "+5V")
(net 20 "Net-(A1-A2)")
(net 21 "Net-(A1-A3)")
(net 22 "unconnected-(A1-SCL{slash}A5-Pad24)")
(net 23 "Net-(A1-A6)")
(net 24 "unconnected-(A1-~{RESET}-Pad28)")
(net 25 "+BATT")
(net 26 "Net-(D1-K)")
(net 27 "Net-(D2-K)")
(net 28 "Net-(D3-K)")
(net 29 "Net-(D4-K)")
(net 30 "Net-(D5-K)")
(net 31 "Net-(D6-K)")
(net 32 "Net-(D7-K)")
(net 33 "Net-(D8-K)")
(net 34 "Net-(D9-K)")
(footprint "Module:Arduino_Nano" (layer "F.Cu")
(tstamp 019e857e-be88-4f50-9bd7-17ffb05e4a27)
(at 59.3 61.99 180)
(descr "Arduino Nano, http://www.mouser.com/pdfdocs/Gravitech_Arduino_Nano3_0.pdf")
(tags "Arduino Nano")
(property "Sheetfile" "ArduinoSolderChallenge.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Arduino Nano Every")
(property "ki_keywords" "Arduino nano microcontroller module USB UPDI AATMega4809 AVR")
(path "/a49c7dbb-64c3-489e-9ae5-85f65f80ad02")
(attr through_hole)
(fp_text reference "A1" (at -2.95 -3.06) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp fbc76960-7fe5-444d-8605-8d507a70fa80)
)
(fp_text value "Arduino_Nano_Every" (at 8.89 19.05 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 711df389-2e03-46e9-b85e-23f085d5da5e)
)
(fp_text user "USB" (at 7.62 35.56 180 unlocked) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 70a5927c-6461-431e-95af-0e6f3f44dbd2)
)
(fp_text user "${REFERENCE}" (at 6.35 19.05 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d7181684-8733-4e4a-a924-7af00a6dd874)
)
(fp_line (start -1.4 -3.94) (end -1.4 -1.27)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8301bfe2-9117-495f-922b-318d3969dc0b))
(fp_line (start -1.4 1.27) (end -1.4 39.5)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e7ff758f-22fb-4a4f-af95-cdca90e57bd0))
(fp_line (start -1.4 39.5) (end 3.68 39.5)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8a036b39-3dc2-489c-9697-b173255d1dd3))
(fp_line (start 1.27 -1.27) (end -1.4 -1.27)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3ba02285-4d66-47c1-a3e8-49685d856a87))
(fp_line (start 1.27 1.27) (end -1.4 1.27)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7acce238-1f59-4415-8aeb-e767a216128e))
(fp_line (start 1.27 1.27) (end 1.27 -1.27)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp acf7dc6e-0f2c-4c46-af7c-bd82c6b9b7e7))
(fp_line (start 1.27 1.27) (end 1.27 36.83)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp fe30a944-1e0d-439d-ba9e-04be5ed278e3))
(fp_line (start 1.27 36.83) (end -1.4 36.83)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b967d029-6539-46c3-a24f-596a67cf5dd5))
(fp_line (start 3.68 31.62) (end 11.56 31.62)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f2c6b979-7d30-4106-809f-cea29adbed77))
(fp_line (start 3.68 42.04) (end 3.68 31.62)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1c0f8f22-eefe-4c15-b804-1e180346f578))
(fp_line (start 11.56 31.62) (end 11.56 42.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2c365d66-f769-403e-b7ca-c67ba047b798))
(fp_line (start 11.56 42.04) (end 3.68 42.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a0c7847b-e13a-4883-b157-e9be8cdde020))
(fp_line (start 13.97 -1.27) (end 13.97 36.83)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f54dcdc4-9bb9-4d96-9dde-83d1f50a5c97))
(fp_line (start 13.97 -1.27) (end 16.64 -1.27)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 35297c62-4e08-4c7f-9ece-a1d1a643ba59))
(fp_line (start 13.97 36.83) (end 16.64 36.83)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 508a102a-073d-497e-a205-fee6ec0ab465))
(fp_line (start 16.64 -3.94) (end -1.4 -3.94)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 783fae64-9893-4d16-bf37-4ea350e7e9a2))
(fp_line (start 16.64 39.5) (end 11.56 39.5)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9667a197-d720-453b-ac2f-1be75ba6a723))
(fp_line (start 16.64 39.5) (end 16.64 -3.94)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8d1b62a0-37e6-4cf2-a6f6-1bd9a76f83b3))
(fp_line (start -1.53 -4.06) (end -1.53 42.16)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp bd232b6a-fd9d-494d-a3e8-91f0db6c87dc))
(fp_line (start -1.53 -4.06) (end 16.75 -4.06)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 06f4f29d-c113-4905-954a-00f9c3b3f718))
(fp_line (start 16.75 42.16) (end -1.53 42.16)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 7955ad3f-c09c-43c9-ac62-5dda7ff2ef28))
(fp_line (start 16.75 42.16) (end 16.75 -4.06)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a08f9c6c-b816-42e5-af71-29169ee7df04))
(fp_line (start -1.27 -2.54) (end 0 -3.81)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp bea58f44-1295-4678-9472-a873fcf87f29))
(fp_line (start -1.27 39.37) (end -1.27 -2.54)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 595485ce-51e7-401c-8dc3-7ffbed2e7f6d))
(fp_line (start 0 -3.81) (end 16.51 -3.81)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c1c81b42-b225-4f63-8f71-26b27aa6b4ce))
(fp_line (start 3.81 31.75) (end 11.43 31.75)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp aef3ef69-b0ce-46cc-99ed-9f0fb18e3d1b))
(fp_line (start 3.81 41.91) (end 3.81 31.75)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9bcdde8d-6be3-4d88-a339-266d7d459ddd))
(fp_line (start 11.43 31.75) (end 11.43 41.91)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4b2c910c-d416-44d4-b40e-6528d6d8acf2))
(fp_line (start 11.43 41.91) (end 3.81 41.91)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 73a1e0e8-57a5-4f1e-b30e-6eeed37cffa5))
(fp_line (start 16.51 -3.81) (end 16.51 39.37)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 654fa11d-5d67-42aa-8fc9-63fa7e4b46d7))
(fp_line (start 16.51 39.37) (end -1.27 39.37)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7ca63ce3-7c7c-4e2d-b62e-18fcd91fe6bd))
(pad "1" thru_hole rect (at 0 0 180) (size 1.6 1.6) (drill 1) (layers "*.Cu" "*.Mask")
(net 1 "unconnected-(A1-TX1-Pad1)") (pinfunction "TX1") (pintype "bidirectional") (tstamp 69c643de-5b8e-42f9-86ab-66aeedb41f75))
(pad "2" thru_hole oval (at 0 2.54 180) (size 1.6 1.6) (drill 1) (layers "*.Cu" "*.Mask")
(net 2 "unconnected-(A1-RX1-Pad2)") (pinfunction "RX1") (pintype "bidirectional") (tstamp ad079bc1-0c8b-487a-9045-31b0e65e62bb))
(pad "3" thru_hole oval (at 0 5.08 180) (size 1.6 1.6) (drill 1) (layers "*.Cu" "*.Mask")
(net 3 "unconnected-(A1-~{RESET}-Pad3)") (pinfunction "~{RESET}") (pintype "input") (tstamp 7ce5d6ca-eb25-4e68-b18a-296c564f28ad))
(pad "4" thru_hole oval (at 0 7.62 180) (size 1.6 1.6) (drill 1) (layers "*.Cu" "*.Mask")
(net 4 "GND") (pinfunction "GND") (pintype "power_in") (tstamp c3f98233-8fe9-4a51-b29e-f4cd1b3468a2))
(pad "5" thru_hole oval (at 0 10.16 180) (size 1.6 1.6) (drill 1) (layers "*.Cu" "*.Mask")
(net 5 "Net-(A1-D2)") (pinfunction "D2") (pintype "bidirectional") (tstamp 577dc6f3-0cee-409b-a1a3-3541048ebd69))
(pad "6" thru_hole oval (at 0 12.7 180) (size 1.6 1.6) (drill 1) (layers "*.Cu" "*.Mask")
(net 6 "Net-(A1-D3)") (pinfunction "D3") (pintype "bidirectional") (tstamp 2bc1fa8e-cd0e-47ba-92e4-f9f1b5332454))
(pad "7" thru_hole oval (at 0 15.24 180) (size 1.6 1.6) (drill 1) (layers "*.Cu" "*.Mask")
(net 7 "Net-(A1-D4)") (pinfunction "D4") (pintype "bidirectional") (tstamp b4c9099a-0b3a-4894-9514-4f0b4f7a254e))
(pad "8" thru_hole oval (at 0 17.78 180) (size 1.6 1.6) (drill 1) (layers "*.Cu" "*.Mask")
(net 8 "Net-(A1-D5)") (pinfunction "D5") (pintype "bidirectional") (tstamp b61e08a9-437c-4b1b-84dd-806e1aeff8ec))
(pad "9" thru_hole oval (at 0 20.32 180) (size 1.6 1.6) (drill 1) (layers "*.Cu" "*.Mask")
(net 9 "Net-(A1-D6)") (pinfunction "D6") (pintype "bidirectional") (tstamp 5f97475b-6a95-42e0-aa48-e459961f5b62))
(pad "10" thru_hole oval (at 0 22.86 180) (size 1.6 1.6) (drill 1) (layers "*.Cu" "*.Mask")
(net 10 "Net-(A1-D7)") (pinfunction "D7") (pintype "bidirectional") (tstamp 13d8740e-c0fc-40e6-b592-8bac8c9c8258))
(pad "11" thru_hole oval (at 0 25.4 180) (size 1.6 1.6) (drill 1) (layers "*.Cu" "*.Mask")
(net 11 "Net-(A1-D8)") (pinfunction "D8") (pintype "bidirectional") (tstamp 85b5cffb-eaac-45ec-80ff-31c43138d751))
(pad "12" thru_hole oval (at 0 27.94 180) (size 1.6 1.6) (drill 1) (layers "*.Cu" "*.Mask")
(net 12 "Net-(A1-D9)") (pinfunction "D9") (pintype "bidirectional") (tstamp b9c5d529-6ad8-4ba5-b6ca-5d92b814eda7))
(pad "13" thru_hole oval (at 0 30.48 180) (size 1.6 1.6) (drill 1) (layers "*.Cu" "*.Mask")
(net 13 "Net-(A1-D10)") (pinfunction "D10") (pintype "bidirectional") (tstamp a3c59068-f5f5-4d8a-96a8-0ebdd8fadb59))
(pad "14" thru_hole oval (at 0 33.02 180) (size 1.6 1.6) (drill 1) (layers "*.Cu" "*.Mask")
(net 14 "unconnected-(A1-MOSI-Pad14)") (pinfunction "MOSI") (pintype "bidirectional") (tstamp cf7a1d4d-e619-42e7-82e2-0242268a063e))
(pad "15" thru_hole oval (at 0 35.56 180) (size 1.6 1.6) (drill 1) (layers "*.Cu" "*.Mask")
(net 15 "Net-(A1-A7)") (pinfunction "MISO") (pintype "bidirectional") (tstamp 4017e7bf-2897-4ed6-9701-3a628e3a9a6c))
(pad "16" thru_hole oval (at 15.24 35.56 180) (size 1.6 1.6) (drill 1) (layers "*.Cu" "*.Mask")
(net 16 "unconnected-(A1-SCK-Pad16)") (pinfunction "SCK") (pintype "bidirectional") (tstamp df2edfca-700e-46be-9960-9e35f4326441))
(pad "17" thru_hole oval (at 15.24 33.02 180) (size 1.6 1.6) (drill 1) (layers "*.Cu" "*.Mask")
(net 17 "+3.3V") (pinfunction "3V3") (pintype "power_out") (tstamp 5807a36a-7d44-4c0d-9165-7d591590f384))
(pad "18" thru_hole oval (at 15.24 30.48 180) (size 1.6 1.6) (drill 1) (layers "*.Cu" "*.Mask")
(net 18 "unconnected-(A1-AREF-Pad18)") (pinfunction "AREF") (pintype "input") (tstamp e2e71e43-f56f-4136-b0ce-e46fae8395e2))
(pad "19" thru_hole oval (at 15.24 27.94 180) (size 1.6 1.6) (drill 1) (layers "*.Cu" "*.Mask")
(net 17 "+3.3V") (pinfunction "A0") (pintype "bidirectional") (tstamp 4e4a0d94-766c-4ac3-b553-73825e710934))
(pad "20" thru_hole oval (at 15.24 25.4 180) (size 1.6 1.6) (drill 1) (layers "*.Cu" "*.Mask")
(net 19 "+5V") (pinfunction "A1") (pintype "bidirectional") (tstamp b2d993aa-d4a9-4338-8854-32ebec8e37fb))
(pad "21" thru_hole oval (at 15.24 22.86 180) (size 1.6 1.6) (drill 1) (layers "*.Cu" "*.Mask")
(net 20 "Net-(A1-A2)") (pinfunction "A2") (pintype "bidirectional") (tstamp 15baf29e-1f5b-44fb-8b12-350fb8bc0eea))
(pad "22" thru_hole oval (at 15.24 20.32 180) (size 1.6 1.6) (drill 1) (layers "*.Cu" "*.Mask")
(net 21 "Net-(A1-A3)") (pinfunction "A3") (pintype "bidirectional") (tstamp a8eead86-0625-4326-b920-c559cf434ef3))
(pad "23" thru_hole oval (at 15.24 17.78 180) (size 1.6 1.6) (drill 1) (layers "*.Cu" "*.Mask")
(net 4 "GND") (pinfunction "SDA/A4") (pintype "bidirectional") (tstamp 76abbd8a-d89b-4809-a830-2c2c83b46b27))
(pad "24" thru_hole oval (at 15.24 15.24 180) (size 1.6 1.6) (drill 1) (layers "*.Cu" "*.Mask")
(net 22 "unconnected-(A1-SCL{slash}A5-Pad24)") (pinfunction "SCL/A5") (pintype "bidirectional") (tstamp 649e189d-2684-4311-96c6-2fbbeef98f52))
(pad "25" thru_hole oval (at 15.24 12.7 180) (size 1.6 1.6) (drill 1) (layers "*.Cu" "*.Mask")
(net 23 "Net-(A1-A6)") (pinfunction "A6") (pintype "bidirectional") (tstamp 5a4a5d45-dc21-4b63-b99d-f5340b447c5c))
(pad "26" thru_hole oval (at 15.24 10.16 180) (size 1.6 1.6) (drill 1) (layers "*.Cu" "*.Mask")
(net 15 "Net-(A1-A7)") (pinfunction "A7") (pintype "bidirectional") (tstamp e81c79d8-947c-4499-991b-2fc3b207250a))
(pad "27" thru_hole oval (at 15.24 7.62 180) (size 1.6 1.6) (drill 1) (layers "*.Cu" "*.Mask")
(net 19 "+5V") (pinfunction "+5V") (pintype "power_out") (tstamp 35b865e0-6acd-4bdc-ab2e-78b6dc787548))
(pad "28" thru_hole oval (at 15.24 5.08 180) (size 1.6 1.6) (drill 1) (layers "*.Cu" "*.Mask")
(net 24 "unconnected-(A1-~{RESET}-Pad28)") (pinfunction "~{RESET}") (pintype "input") (tstamp a5f31500-9c15-4169-a419-735755e42f8c))
(pad "29" thru_hole oval (at 15.24 2.54 180) (size 1.6 1.6) (drill 1) (layers "*.Cu" "*.Mask")
(net 4 "GND") (pinfunction "GND") (pintype "passive") (tstamp 255f6b8f-6c12-4ce8-906d-47e7f1f13675))
(pad "30" thru_hole oval (at 15.24 0 180) (size 1.6 1.6) (drill 1) (layers "*.Cu" "*.Mask")
(net 25 "+BATT") (pinfunction "VIN") (pintype "power_in") (tstamp 53e2ce51-b765-4249-8c87-4e0747cdaa74))
(model "${KICAD6_3DMODEL_DIR}/Module.3dshapes/Arduino_Nano_WithMountingHoles.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Tracker Custom Library:LED" (layer "F.Cu")
(tstamp 198c2b6e-5a4b-4450-8e2a-3a5197ad29fe)
(at 66.8 44.06 180)
(property "Sheetfile" "ArduinoSolderChallenge.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Light emitting diode")
(property "ki_keywords" "LED diode")
(path "/a39e6db7-e3db-47fe-815b-cb933ce1a33a")
(attr through_hole)
(fp_text reference "D5" (at 2.35 0 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 97d98557-a426-4d22-9fa5-9fc89c851fcf)
)
(fp_text value "LED" (at -1.350872 2.06604 180 unlocked) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c20d32e7-7eca-4da7-aab5-3f792e706bb5)
)
(fp_text user "${REFERENCE}" (at -0.913825 3.61557 180 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a6d67fef-63d4-4f80-bb64-0d97f788578c)
)
(pad "1" thru_hole circle (at -2.54 0 180) (size 2.286 2.286) (drill 0.762) (layers "*.Cu" "*.Mask")
(net 30 "Net-(D5-K)") (pinfunction "K") (pintype "passive") (tstamp 32b6b3c8-6280-438b-a3e6-88928cc06e4f))
(pad "2" thru_hole circle (at 0 0 180) (size 2.286 2.286) (drill 0.762) (layers "*.Cu" "*.Mask")
(net 9 "Net-(A1-D6)") (pinfunction "A") (pintype "passive") (tstamp 0b1f2bba-8b1c-49df-a90e-42af9e344168))
)
(footprint "Tracker Custom Library:LED" (layer "F.Cu")
(tstamp 19bda476-ef41-4fc5-b5e0-3b82fc919c00)
(at 66.8 56.66 180)
(property "Sheetfile" "ArduinoSolderChallenge.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Light emitting diode")
(property "ki_keywords" "LED diode")
(path "/2a07f315-13dd-4f55-bdf2-ab1a419a54c1")
(attr through_hole)
(fp_text reference "D1" (at 2.2 0 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp cfc46a95-458b-411b-b7ec-ff786cd5e298)
)
(fp_text value "LED" (at -1.350872 2.06604 180 unlocked) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 038a3df8-8ec3-489d-b6b4-45e52093a171)
)
(fp_text user "${REFERENCE}" (at -0.913825 3.61557 180 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9d484ad2-da8b-481a-9297-bc5b5bc97f41)
)
(pad "1" thru_hole circle (at -2.54 0 180) (size 2.286 2.286) (drill 0.762) (layers "*.Cu" "*.Mask")
(net 26 "Net-(D1-K)") (pinfunction "K") (pintype "passive") (tstamp 6820633d-8469-4a16-bb4c-3badabdfc4af))
(pad "2" thru_hole circle (at 0 0 180) (size 2.286 2.286) (drill 0.762) (layers "*.Cu" "*.Mask")
(net 5 "Net-(A1-D2)") (pinfunction "A") (pintype "passive") (tstamp 7759d563-18e1-4b8e-b1ab-cecd11334c4c))
)
(footprint "Tracker Custom Library:Resistor" (layer "F.Cu")
(tstamp 28a53b97-5c9b-432a-aa45-c70840dd14d3)
(at 78.8 56.66 180)
(property "Sheetfile" "ArduinoSolderChallenge.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor")
(property "ki_keywords" "R res resistor")
(path "/63ca4438-4cca-4fb1-a976-eec4d4d82f74")
(attr through_hole)
(fp_text reference "R1" (at -5.002 -0.004 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c95babd3-79ca-4a10-a9bc-98dc7154ba27)
)
(fp_text value "R" (at 1.059927 1.813261 180 unlocked) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7383b683-3503-4e51-9b80-90baf7acade8)
)
(fp_text user "${REFERENCE}" (at 1.387786 -0.43141 180 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0a53a864-f557-447a-a42d-3d35123a9108)
)
(pad "1" thru_hole circle (at -2.54 0 180) (size 2.286 2.286) (drill 0.762) (layers "*.Cu" "*.Mask")
(net 4 "GND") (pintype "passive") (tstamp 450a8bcb-dba3-463a-8f5c-5c6a0358f1cf))
(pad "2" thru_hole circle (at 5.08 0 180) (size 2.286 2.286) (drill 0.762) (layers "*.Cu" "*.Mask")
(net 26 "Net-(D1-K)") (pintype "passive") (tstamp 7173d4a4-7d1c-4bbb-bf6b-ea00eac6de3f))
)
(footprint "Resistor_SMD:R_1206_3216Metric_Pad1.30x1.75mm_HandSolder" (layer "F.Cu")
(tstamp 3bdf930f-4426-490b-80a8-55ff1ddb9558)
(at 73.33 41.15 180)
(descr "Resistor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (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 handsolder")
(property "Sheetfile" "ArduinoSolderChallenge.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor")
(property "ki_keywords" "R res resistor")
(path "/0b4fd656-da61-4a13-b8c5-bd80efa3bf04")
(attr smd)
(fp_text reference "R6" (at -3.5 -0.01) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 618df848-2e05-4210-9641-68d403bdd286)
)
(fp_text value "R" (at 0 1.82) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e91a2e94-4f69-4ea5-9182-b361dc2231ac)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.12)))
(tstamp 3242cbc6-cd0f-4fb6-83a1-77f173d002aa)
)
(fp_line (start -0.727064 -0.91) (end 0.727064 -0.91)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5f68881e-6654-4e75-ba9e-0c39c877f58b))
(fp_line (start -0.727064 0.91) (end 0.727064 0.91)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a9851be9-0323-4137-87fa-db4a4a41c11b))
(fp_line (start -2.45 -1.12) (end 2.45 -1.12)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 8b9c9395-944c-4bed-87e6-0584e32db8a6))
(fp_line (start -2.45 1.12) (end -2.45 -1.12)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 0407f8c4-30b1-447a-9e10-d162210d6cc0))
(fp_line (start 2.45 -1.12) (end 2.45 1.12)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c119cdbf-a1ae-408d-970c-41a6fc18f95b))
(fp_line (start 2.45 1.12) (end -2.45 1.12)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 1be53e11-3882-4631-a303-52c6584c434a))
(fp_line (start -1.6 -0.8) (end 1.6 -0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 96639893-d9b0-416d-a2f0-d25738a45a4e))
(fp_line (start -1.6 0.8) (end -1.6 -0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3d76d1b6-c4a6-432b-bc99-1eff01b268ea))
(fp_line (start 1.6 -0.8) (end 1.6 0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ef532eef-8f2f-4cee-8640-b36331319122))
(fp_line (start 1.6 0.8) (end -1.6 0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e5ecb36f-84b2-44b9-ab50-4f09e78c2942))
(pad "1" smd roundrect (at -1.55 0 180) (size 1.3 1.75) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1923076923)
(net 4 "GND") (pintype "passive") (tstamp 1d1b451f-86a1-4867-bfa9-a708b23aeb65))
(pad "2" smd roundrect (at 1.55 0 180) (size 1.3 1.75) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1923076923)
(net 31 "Net-(D6-K)") (pintype "passive") (tstamp 0543f8fc-67a6-4c98-b78c-997d3f7a1da3))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_1206_3216Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Tracker Custom Library:Resistor" (layer "F.Cu")
(tstamp 45852a4c-371c-468b-8054-9777dd59f0b4)
(at 78.8 44.26 180)
(property "Sheetfile" "ArduinoSolderChallenge.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor")
(property "ki_keywords" "R res resistor")
(path "/9a16f2b4-3348-4917-9a45-7f30de039a65")
(attr through_hole)
(fp_text reference "R5" (at -4.99 0.05) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d2e233a3-f99c-4775-9e93-56b44a0504bc)
)
(fp_text value "R" (at 1.059927 1.813261 180 unlocked) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 09b325f7-9512-4129-a6e0-bb5969c873c1)
)
(fp_text user "${REFERENCE}" (at 1.387786 -0.43141 180 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f8c586f3-c0c6-4caf-b035-3474e27f3fe3)
)
(pad "1" thru_hole circle (at -2.54 0 180) (size 2.286 2.286) (drill 0.762) (layers "*.Cu" "*.Mask")
(net 4 "GND") (pintype "passive") (tstamp 1d992baa-70cf-4bf0-948d-7cec3671ed1f))
(pad "2" thru_hole circle (at 5.08 0 180) (size 2.286 2.286) (drill 0.762) (layers "*.Cu" "*.Mask")
(net 30 "Net-(D5-K)") (pintype "passive") (tstamp 2d207bf2-83cb-4eac-9978-123ec6cef743))
)
(footprint "LED_SMD:LED_1206_3216Metric_Pad1.42x1.75mm_HandSolder" (layer "F.Cu")
(tstamp 5164a2c1-507c-4b7e-9421-94fb151d248b)
(at 67.33 33.05 180)
(descr "LED SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags "LED handsolder")
(property "Sheetfile" "ArduinoSolderChallenge.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Light emitting diode")
(property "ki_keywords" "LED diode")
(path "/38c9c7a7-1ef1-4bb3-aee5-d561420360dc")
(attr smd)
(fp_text reference "D9" (at 3.65 0) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 452a7a9e-bc6e-49ae-91f6-6b51aa0f4aa2)
)
(fp_text value "LED" (at 0 1.82) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 07386a7d-c9fb-4365-acf3-17dbd804b417)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.12)))
(tstamp e8d13cc0-ae93-4260-88fc-4e1e1e514e93)
)
(fp_line (start -2.46 -1.135) (end -2.46 1.135)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 51fa5ad9-2d5e-4d1f-829d-04186351f49f))
(fp_line (start -2.46 1.135) (end 1.6 1.135)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d68badee-74d9-4ff3-9ca4-feee77e84014))
(fp_line (start 1.6 -1.135) (end -2.46 -1.135)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4242a731-bfd7-47e1-a086-b8065397d3fa))
(fp_line (start -2.45 -1.12) (end 2.45 -1.12)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 4a285967-a408-4f74-907a-e7042f1a8c39))
(fp_line (start -2.45 1.12) (end -2.45 -1.12)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 9d524217-1bf1-43f3-9c4b-fa6e9e2a86d1))
(fp_line (start 2.45 -1.12) (end 2.45 1.12)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp f5ee2759-ac2b-4c54-8962-f95e44806590))
(fp_line (start 2.45 1.12) (end -2.45 1.12)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a3cde340-bd5d-4d7f-b80e-987d6edcd0ab))
(fp_line (start -1.6 -0.4) (end -1.6 0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp be042a37-4799-4bf1-b6e0-39c4df015ae7))
(fp_line (start -1.6 0.8) (end 1.6 0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9db01301-8b8c-42bb-841b-14c9f807de37))
(fp_line (start -1.2 -0.8) (end -1.6 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 30ed5149-0371-4be9-8eef-883449b46ade))
(fp_line (start 1.6 -0.8) (end -1.2 -0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 633c9233-91c6-472b-aea8-8c55e69113a5))
(fp_line (start 1.6 0.8) (end 1.6 -0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 28a38ed1-7e54-4d79-9526-5690cd968bb0))
(pad "1" smd roundrect (at -1.4875 0 180) (size 1.425 1.75) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1754392982)
(net 34 "Net-(D9-K)") (pinfunction "K") (pintype "passive") (tstamp 62cdc078-6ed8-4e68-bbdc-8f3bb11d4872))
(pad "2" smd roundrect (at 1.4875 0 180) (size 1.425 1.75) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1754392982)
(net 13 "Net-(A1-D10)") (pinfunction "A") (pintype "passive") (tstamp 33cc28b7-c7eb-4977-9496-f2e05382ba7a))
(model "${KICAD6_3DMODEL_DIR}/LED_SMD.3dshapes/LED_1206_3216Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_1206_3216Metric_Pad1.30x1.75mm_HandSolder" (layer "F.Cu")
(tstamp 594caeb9-e359-4fa6-a006-9035e11c64f9)
(at 67.53 64.85)
(descr "Resistor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (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 handsolder")
(property "Sheetfile" "ArduinoSolderChallenge.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor")
(property "ki_keywords" "R res resistor")
(path "/26e1abcc-a3cf-4ef6-a23b-23abe6145a00")
(attr smd)
(fp_text reference "R14" (at 0 1.8) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4c00adc9-1dc7-4e00-9894-673fc36cf75e)
)
(fp_text value "R" (at 0 1.82) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8c87364c-adc6-405c-9165-cbcc8c357e0e)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.12)))
(tstamp b8de6037-c125-42cf-9424-112676ca4828)
)
(fp_line (start -0.727064 -0.91) (end 0.727064 -0.91)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b161cc23-28cd-4ac6-8e69-04917a182d33))
(fp_line (start -0.727064 0.91) (end 0.727064 0.91)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8b5595d6-3310-4098-9ca0-19e9c61726f7))
(fp_line (start -2.45 -1.12) (end 2.45 -1.12)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d25ec4de-6e0b-4397-b828-6b1b2aafa82f))
(fp_line (start -2.45 1.12) (end -2.45 -1.12)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 94bcfea2-6c13-4d28-a0d0-b2124866f2ff))
(fp_line (start 2.45 -1.12) (end 2.45 1.12)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 65f2a4b7-52b7-4d4e-b4c5-a0f026148a7d))
(fp_line (start 2.45 1.12) (end -2.45 1.12)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 67ef96b4-c9ec-4dca-984d-ef5fdadbdd21))
(fp_line (start -1.6 -0.8) (end 1.6 -0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7f99848e-0384-4cb1-a6e2-3b1761023e07))
(fp_line (start -1.6 0.8) (end -1.6 -0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9e61c505-0b96-4e0e-ae17-dad3dde18575))
(fp_line (start 1.6 -0.8) (end 1.6 0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e1dc7832-c3de-4c0a-b72a-e19c584d528f))
(fp_line (start 1.6 0.8) (end -1.6 0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4f9d431b-0c16-4f0d-9e82-2d11b2cca6b5))
(pad "1" smd roundrect (at -1.55 0) (size 1.3 1.75) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1923076923)
(net 23 "Net-(A1-A6)") (pintype "passive") (tstamp 1b865b6d-e770-4d60-a071-6720dd387da9))
(pad "2" smd roundrect (at 1.55 0) (size 1.3 1.75) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1923076923)
(net 4 "GND") (pintype "passive") (tstamp e80ea3b1-74fa-4dd7-a7b2-a743cfc718fe))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_1206_3216Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_1206_3216Metric_Pad1.30x1.75mm_HandSolder" (layer "F.Cu")
(tstamp 60adba21-edb8-40c2-97d0-37e37a6c4c85)
(at 67.53 60.75 180)
(descr "Resistor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (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 handsolder")
(property "Sheetfile" "ArduinoSolderChallenge.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor")
(property "ki_keywords" "R res resistor")
(path "/a6305d3a-32fd-4ea2-9d62-324c840aa128")
(attr smd)
(fp_text reference "R13" (at 0 -1.82) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c77a9b3b-aa4f-40e0-bb89-2d5b1291e4ac)
)
(fp_text value "R" (at 0 1.82) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0246b924-c876-4165-b6e0-1d1b1d0a4b2d)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.12)))
(tstamp a95057cf-f947-4f17-ba93-d60dc3a228aa)
)
(fp_line (start -0.727064 -0.91) (end 0.727064 -0.91)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8a6f3af3-5e84-4b40-b122-b4087615b7f5))
(fp_line (start -0.727064 0.91) (end 0.727064 0.91)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d8f67799-1e88-481c-ada1-2b8fdee2f0a4))
(fp_line (start -2.45 -1.12) (end 2.45 -1.12)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a45351e3-7fa7-4bfb-9fe2-f7c2b1e630ec))
(fp_line (start -2.45 1.12) (end -2.45 -1.12)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 1f6f672e-8065-4e4e-8ef6-f7c4a51519f6))
(fp_line (start 2.45 -1.12) (end 2.45 1.12)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c79b690b-98f5-45a0-b0d3-3f8f2b670770))
(fp_line (start 2.45 1.12) (end -2.45 1.12)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp fac252fb-cdd2-4cfd-adde-91d17c016085))
(fp_line (start -1.6 -0.8) (end 1.6 -0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7d32c43e-4fe6-4278-904d-900ef26bc59d))
(fp_line (start -1.6 0.8) (end -1.6 -0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ed384c5d-8f1e-4de8-9d46-687a7f808d90))
(fp_line (start 1.6 -0.8) (end 1.6 0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c4fa3caa-47e4-41dd-af7f-4a2fd52267fb))
(fp_line (start 1.6 0.8) (end -1.6 0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 354a7908-eb71-4985-9684-0d34e6e5335c))
(pad "1" smd roundrect (at -1.55 0 180) (size 1.3 1.75) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1923076923)
(net 25 "+BATT") (pintype "passive") (tstamp ecde3912-421a-4951-bae4-0d7482f3704e))
(pad "2" smd roundrect (at 1.55 0 180) (size 1.3 1.75) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1923076923)
(net 23 "Net-(A1-A6)") (pintype "passive") (tstamp c0c70696-3905-4e91-ba59-a66d14c9bc7b))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_1206_3216Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "LED_SMD:LED_1206_3216Metric_Pad1.42x1.75mm_HandSolder" (layer "F.Cu")
(tstamp 78f75dbb-cffc-4885-8e46-96e0c8058637)
(at 67.33 41.15 180)
(descr "LED SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags "LED handsolder")
(property "Sheetfile" "ArduinoSolderChallenge.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Light emitting diode")
(property "ki_keywords" "LED diode")
(path "/e0699145-7ec0-483e-8950-f7576465d8a4")
(attr smd)
(fp_text reference "D6" (at 3.6 0.05) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4503842a-e20e-4df7-90cd-a8c82711b92e)
)
(fp_text value "LED" (at 0 1.82) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp fa943cca-dfa3-4257-b4fe-ac26e4797c18)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.12)))
(tstamp da1f1560-39c8-4e32-b9e5-3d43ef5eea99)
)
(fp_line (start -2.46 -1.135) (end -2.46 1.135)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6f056714-91b2-4391-8814-ab6842ceff1c))
(fp_line (start -2.46 1.135) (end 1.6 1.135)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9f4bc633-62bc-4727-bed1-417d413a75b0))
(fp_line (start 1.6 -1.135) (end -2.46 -1.135)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 29fc3472-e63f-47c6-8be5-363dd6129e6c))
(fp_line (start -2.45 -1.12) (end 2.45 -1.12)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 864309ac-d131-43b5-b7e8-e43baa264cb1))
(fp_line (start -2.45 1.12) (end -2.45 -1.12)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ceb0f213-532f-4e6f-a245-7c460a909a84))
(fp_line (start 2.45 -1.12) (end 2.45 1.12)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 52e29bdd-14cb-47f5-8333-71f7257f01c9))
(fp_line (start 2.45 1.12) (end -2.45 1.12)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp aea613eb-07d7-4aee-b0e8-78abeb6565e5))
(fp_line (start -1.6 -0.4) (end -1.6 0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 716c90ff-22c7-43e6-8364-a1046e2db555))
(fp_line (start -1.6 0.8) (end 1.6 0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d84aa4c2-093f-44ce-8e0f-e0f7c84afd80))
(fp_line (start -1.2 -0.8) (end -1.6 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8cde3353-e428-466f-8c5b-1b7cf683284f))
(fp_line (start 1.6 -0.8) (end -1.2 -0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 1190bd9b-ce47-472a-8edb-2705e706ea54))
(fp_line (start 1.6 0.8) (end 1.6 -0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9b13785e-7b46-489d-906e-eda3be494b15))
(pad "1" smd roundrect (at -1.4875 0 180) (size 1.425 1.75) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1754392982)
(net 31 "Net-(D6-K)") (pinfunction "K") (pintype "passive") (tstamp cc1bc464-3cf7-416a-855b-c574b7062fbe))
(pad "2" smd roundrect (at 1.4875 0 180) (size 1.425 1.75) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1754392982)
(net 10 "Net-(A1-D7)") (pinfunction "A") (pintype "passive") (tstamp 04e07a52-e1f1-4c7e-9415-9e40aa9b4334))
(model "${KICAD6_3DMODEL_DIR}/LED_SMD.3dshapes/LED_1206_3216Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Tracker Custom Library:Resistor" (layer "F.Cu")
(tstamp 89be1878-9732-47ca-a9d6-9e61c0f259fe)
(at 69.8 22.3)
(property "Sheetfile" "ArduinoSolderChallenge.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor")
(property "ki_keywords" "R res resistor")
(path "/1be7b0cc-d4e7-47f1-8e3b-da01e75e538a")
(attr through_hole)
(fp_text reference "R12" (at -5.53 -0.05) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7a9096a4-7d04-44aa-b0fa-36ee69be6881)
)
(fp_text value "R" (at 1.059927 1.813261 unlocked) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 78a296f1-a06d-44ee-a532-c32cbcfb6857)
)
(fp_text user "${REFERENCE}" (at 1.387786 -0.43141 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp dd010b13-710a-4b55-8368-4e877b291024)
)
(pad "1" thru_hole circle (at -2.54 0) (size 2.286 2.286) (drill 0.762) (layers "*.Cu" "*.Mask")
(net 21 "Net-(A1-A3)") (pintype "passive") (tstamp 2e56de36-ed2b-49f2-b0f8-7344b8f2a3e2))
(pad "2" thru_hole circle (at 5.08 0) (size 2.286 2.286) (drill 0.762) (layers "*.Cu" "*.Mask")
(net 4 "GND") (pintype "passive") (tstamp a685099e-b635-4d32-95a5-6dfd2477e725))
)
(footprint "Tracker Custom Library:Resistor" (layer "F.Cu")
(tstamp a1e6f65c-e832-4f7f-8bc9-f594456333b5)
(at 78.8 50.36 180)
(property "Sheetfile" "ArduinoSolderChallenge.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor")
(property "ki_keywords" "R res resistor")
(path "/d63ee29c-e99f-4d7e-8d4d-b1f150a34e35")
(attr through_hole)
(fp_text reference "R3" (at -4.99 -0.028) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9cf0af8f-3dab-482a-8cc8-806ead258a7c)
)
(fp_text value "R" (at 1.059927 1.813261 180 unlocked) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4319fb1c-37a1-4f0e-98f4-a362fa3c33a3)
)
(fp_text user "${REFERENCE}" (at 1.387786 -0.43141 180 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ea4e76c3-6f07-46b3-97aa-05fcf0127a6f)
)
(pad "1" thru_hole circle (at -2.54 0 180) (size 2.286 2.286) (drill 0.762) (layers "*.Cu" "*.Mask")
(net 4 "GND") (pintype "passive") (tstamp 06b32884-23b6-46ce-b1ef-b2813671fd3e))
(pad "2" thru_hole circle (at 5.08 0 180) (size 2.286 2.286) (drill 0.762) (layers "*.Cu" "*.Mask")
(net 28 "Net-(D3-K)") (pintype "passive") (tstamp 785dc401-30d9-42e6-b201-4875a082c554))
)
(footprint "Tracker Custom Library:Keystone 967 9V battery holder" (layer "F.Cu")
(tstamp a5334707-28e1-4646-a669-0631d7cac129)
(at 55.9 73.75 180)
(property "Sheetfile" "ArduinoSolderChallenge.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Multiple-cell battery")
(property "ki_keywords" "batt voltage-source cell")
(path "/12dfc3cf-198b-4ed8-9ceb-373f97720665")
(attr through_hole)
(fp_text reference "BT1" (at 11.6 6.35) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 350245bb-d579-4e32-a6d5-39e2e3d06f10)
)
(fp_text value "Battery" (at -8.455 7.915) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3cb6c7f0-a335-411c-9a90-99896a6acf71)
)
(fp_line (start -11.9808 -5.7324) (end -10.9808 -5.7324)
(stroke (width 0.127) (type solid)) (layer "F.SilkS") (tstamp 8dc3140a-b819-496b-a262-fbc77c19a058))
(fp_line (start -11.4808 -6.2324) (end -11.4808 -5.2324)
(stroke (width 0.127) (type solid)) (layer "F.SilkS") (tstamp 782db5ae-9860-4fa1-bd3c-5b140d03d9f3))
(fp_line (start -6.225 -6.795) (end 6.225 -6.795)
(stroke (width 0.127) (type solid)) (layer "F.SilkS") (tstamp bf19f695-42e7-4049-9c55-10726b2faad4))
(fp_line (start 6.225 6.795) (end -6.225 6.795)
(stroke (width 0.127) (type solid)) (layer "F.SilkS") (tstamp 0714320a-98ff-4aa6-a1cd-f9d201d68795))
(fp_line (start 11.311 -5.6896) (end 12.311 -5.6896)
(stroke (width 0.127) (type solid)) (layer "F.SilkS") (tstamp f279e663-4153-4a95-a06f-246c65b5db96))
(fp_arc (start -13.02 0) (mid -11.029791 -4.804791) (end -6.225 -6.795)
(stroke (width 0.127) (type solid)) (layer "F.SilkS") (tstamp 86b7a348-c65a-4f8c-b397-2ac4ca95a951))
(fp_arc (start -6.225 6.795) (mid -11.029791 4.804791) (end -13.02 0)
(stroke (width 0.127) (type solid)) (layer "F.SilkS") (tstamp 49918502-a5a7-4e99-9f80-4df376725890))
(fp_arc (start 6.225 -6.795) (mid 11.029791 -4.804791) (end 13.02 0)
(stroke (width 0.127) (type solid)) (layer "F.SilkS") (tstamp 64acbec7-18ce-4315-807a-b3a6b25771fe))
(fp_arc (start 13.02 0) (mid 11.029791 4.804791) (end 6.225 6.795)
(stroke (width 0.127) (type solid)) (layer "F.SilkS") (tstamp 69fab53b-599c-4ef3-806f-57e3c2da55b2))
(fp_line (start -13.27 -7.045) (end 13.27 -7.045)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 89943e69-f588-4c1b-ba28-0d242816914a))
(fp_line (start -13.27 7.045) (end -13.27 -7.045)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 0a5d7c90-9711-49f8-9618-6db5e3afe09f))
(fp_line (start 13.27 -7.045) (end 13.27 7.045)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 8c3f5b33-44af-49cf-8848-6417f494271f))
(fp_line (start 13.27 7.045) (end -13.27 7.045)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp cdaac8e9-5fb3-4ad9-8f9b-cf79b1c0c937))
(fp_line (start -11.4808 -6.2324) (end -11.4808 -5.2324)
(stroke (width 0.127) (type solid)) (layer "F.Fab") (tstamp 3e710414-1f43-4f17-8448-6483fd499656))
(fp_line (start -10.9808 -5.7324) (end -11.9808 -5.7324)
(stroke (width 0.127) (type solid)) (layer "F.Fab") (tstamp 0bf40d16-4848-4989-8d5a-9bcc056613e9))
(fp_line (start -6.225 -6.795) (end 6.225 -6.795)
(stroke (width 0.127) (type solid)) (layer "F.Fab") (tstamp f4c6809e-e979-4ece-b795-21fc744ad5a9))
(fp_line (start 6.225 6.795) (end -6.225 6.795)
(stroke (width 0.127) (type solid)) (layer "F.Fab") (tstamp 23bdcd88-908e-4495-8806-324969d12115))
(fp_line (start 13.5 0) (end 14.5 0)
(stroke (width 0.127) (type solid)) (layer "F.Fab") (tstamp 2118f49d-4b98-459a-b86c-cb3065fe3a17))
(fp_arc (start -13.02 0) (mid -11.029791 -4.804791) (end -6.225 -6.795)
(stroke (width 0.127) (type solid)) (layer "F.Fab") (tstamp 13048776-91f9-4aec-849d-9cd7a8bbc02c))
(fp_arc (start -6.225 6.795) (mid -11.029791 4.804791) (end -13.02 0)
(stroke (width 0.127) (type solid)) (layer "F.Fab") (tstamp 4cfcea86-668e-4616-87bb-6ec32be94470))
(fp_arc (start 6.225 -6.795) (mid 11.029791 -4.804791) (end 13.02 0)
(stroke (width 0.127) (type solid)) (layer "F.Fab") (tstamp e8a881cb-edaa-4e8d-9d3c-f57a07dda67a))
(fp_arc (start 13.02 0) (mid 11.029791 4.804791) (end 6.225 6.795)
(stroke (width 0.127) (type solid)) (layer "F.Fab") (tstamp 6fcc830a-8a72-4694-9933-84f2992c8770))
(pad "1" thru_hole circle (at -6.35 0 180) (size 3.196 3.196) (drill 2.18) (layers "*.Cu" "*.Mask")
(net 25 "+BATT") (pinfunction "+") (pintype "passive") (solder_mask_margin 0.102) (tstamp 9dcb7542-e6d5-468b-9c1e-6e135015eb84))
(pad "2" thru_hole circle (at 6.35 0 180) (size 3.196 3.196) (drill 2.18) (layers "*.Cu" "*.Mask")
(net 4 "GND") (pinfunction "-") (pintype "passive") (solder_mask_margin 0.102) (tstamp 75522b9e-77df-4e49-b60f-5606bfb10fa4))
)
(footprint "Tracker Custom Library:Resistor" (layer "F.Cu")
(tstamp baa9abea-e8c1-4d87-a0b6-eb5b73a47f3d)
(at 69.8 28.6)
(property "Sheetfile" "ArduinoSolderChallenge.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor")
(property "ki_keywords" "R res resistor")
(path "/241deb4a-467f-4f5e-80f2-bf720ca96d19")
(attr through_hole)
(fp_text reference "R10" (at -5.57 -0.05) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2f369f15-a3c9-4687-b18c-c1d65d396a6f)
)
(fp_text value "R" (at 1.059927 1.813261 unlocked) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 13411ce2-ba9f-4c93-accc-04e7b4b0a104)
)
(fp_text user "${REFERENCE}" (at 1.387786 -0.43141 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2ab82ebd-4cf2-4c26-bbdc-49e4db282d32)
)
(pad "1" thru_hole circle (at -2.54 0) (size 2.286 2.286) (drill 0.762) (layers "*.Cu" "*.Mask")
(net 19 "+5V") (pintype "passive") (tstamp 624278bb-ed90-431c-8fd1-3075af44587f))
(pad "2" thru_hole circle (at 5.08 0) (size 2.286 2.286) (drill 0.762) (layers "*.Cu" "*.Mask")
(net 20 "Net-(A1-A2)") (pintype "passive") (tstamp ba1e32f9-eb10-4690-8812-ce78cd422bf9))
)
(footprint "Tracker Custom Library:LED" (layer "F.Cu")
(tstamp bd27f1c5-c287-4c62-876b-a9229e59f051)
(at 66.8 50.36 180)
(property "Sheetfile" "ArduinoSolderChallenge.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Light emitting diode")
(property "ki_keywords" "LED diode")
(path "/e6f54a93-69d7-4cd7-a703-5ca80b1dfc16")
(attr through_hole)
(fp_text reference "D3" (at 2.31 0 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1f17d6ec-47f5-428d-a146-8605849c3e7c)
)
(fp_text value "LED" (at -1.350872 2.06604 180 unlocked) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 19e99126-0fb3-4683-8df4-a67f6a0ec052)
)
(fp_text user "${REFERENCE}" (at -0.913825 3.61557 180 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp dec130c0-4cee-4df8-afa9-2155797e10c0)
)
(pad "1" thru_hole circle (at -2.54 0 180) (size 2.286 2.286) (drill 0.762) (layers "*.Cu" "*.Mask")
(net 28 "Net-(D3-K)") (pinfunction "K") (pintype "passive") (tstamp 2319d88a-b475-417a-acb0-69a235fab01a))
(pad "2" thru_hole circle (at 0 0 180) (size 2.286 2.286) (drill 0.762) (layers "*.Cu" "*.Mask")
(net 7 "Net-(A1-D4)") (pinfunction "A") (pintype "passive") (tstamp c7e1c79e-b960-43d3-8b0a-a88b51c793d3))
)
(footprint "Resistor_SMD:R_1206_3216Metric_Pad1.30x1.75mm_HandSolder" (layer "F.Cu")
(tstamp bf4cb61c-7610-4b22-8e33-18559ee6729e)
(at 73.33 38.45 180)
(descr "Resistor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (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 handsolder")
(property "Sheetfile" "ArduinoSolderChallenge.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor")
(property "ki_keywords" "R res resistor")
(path "/43f3bb96-9e91-4e0b-8c80-29ccbf141ceb")
(attr smd)
(fp_text reference "R7" (at -3.5 0) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 06898aa6-cbd6-4332-ac7f-84381a21afad)
)
(fp_text value "R" (at 0 1.82) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f4666628-fc69-47f4-aadb-3cbbe97c2a19)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.12)))
(tstamp f25cb64f-3ece-4ee7-8452-3e61114538b6)
)
(fp_line (start -0.727064 -0.91) (end 0.727064 -0.91)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1df58149-2443-439e-9697-f8ff9f723a34))
(fp_line (start -0.727064 0.91) (end 0.727064 0.91)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f76c28cd-30ba-4d57-951d-6d62d2d2928c))
(fp_line (start -2.45 -1.12) (end 2.45 -1.12)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c2403809-40e1-4648-aafa-77374dba6ce3))
(fp_line (start -2.45 1.12) (end -2.45 -1.12)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 4ac1ee7f-4421-45f7-800c-08404cc0060e))
(fp_line (start 2.45 -1.12) (end 2.45 1.12)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 5674e77e-33a2-410b-9324-51e0c08e7962))
(fp_line (start 2.45 1.12) (end -2.45 1.12)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp bfc2fb5b-c3d6-415a-8689-b7b323691fa4))
(fp_line (start -1.6 -0.8) (end 1.6 -0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp bc07cd23-c08f-4faf-8ebf-43744a36d70a))
(fp_line (start -1.6 0.8) (end -1.6 -0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ad01c868-a29b-48c0-908d-12e31e98348c))
(fp_line (start 1.6 -0.8) (end 1.6 0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp cc8c644b-283f-48e0-a9e3-ea5f76b44c7a))
(fp_line (start 1.6 0.8) (end -1.6 0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3719efca-a536-41fe-a9a1-152ba9fa16ef))
(pad "1" smd roundrect (at -1.55 0 180) (size 1.3 1.75) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1923076923)
(net 4 "GND") (pintype "passive") (tstamp 46ef39f4-fa22-466b-92e5-2481cecabbe1))
(pad "2" smd roundrect (at 1.55 0 180) (size 1.3 1.75) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1923076923)
(net 32 "Net-(D7-K)") (pintype "passive") (tstamp 56fc40e2-d7dd-43fd-9282-b2746823dc3c))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_1206_3216Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Tracker Custom Library:Resistor" (layer "F.Cu")
(tstamp c27d2994-a3c8-4fa3-b1b8-56d7ebb56ca7)
(at 78.8 53.51 180)
(property "Sheetfile" "ArduinoSolderChallenge.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor")
(property "ki_keywords" "R res resistor")
(path "/055bde89-0759-44e8-8049-fef7b11d5451")
(attr through_hole)
(fp_text reference "R2" (at -4.97 0.022 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6cb0f41b-a855-4012-a18b-1ff9803eb831)
)
(fp_text value "R" (at 1.059927 1.813261 180 unlocked) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp be6124f2-ad63-4e3a-99d2-7f4e83f3705a)
)
(fp_text user "${REFERENCE}" (at 1.387786 -0.43141 180 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 528ed05e-b744-46e1-8df9-10c6832ecfbe)
)
(pad "1" thru_hole circle (at -2.54 0 180) (size 2.286 2.286) (drill 0.762) (layers "*.Cu" "*.Mask")
(net 4 "GND") (pintype "passive") (tstamp 3f74267a-d78a-46a3-8ed4-e6b459d64b8f))
(pad "2" thru_hole circle (at 5.08 0 180) (size 2.286 2.286) (drill 0.762) (layers "*.Cu" "*.Mask")
(net 27 "Net-(D2-K)") (pintype "passive") (tstamp bbebcd98-5030-4997-9193-751514ada1a7))
)
(footprint "Tracker Custom Library:LED" (layer "F.Cu")
(tstamp c7e55929-f6b1-4c8b-90d6-2662644053c5)
(at 66.8 47.21 180)
(property "Sheetfile" "ArduinoSolderChallenge.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Light emitting diode")
(property "ki_keywords" "LED diode")
(path "/a3c0a713-c30e-43cb-8dd2-cc3532eee81c")
(attr through_hole)
(fp_text reference "D4" (at 2.31 0 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 857bad3d-9319-45b1-b1a0-8282e657f06d)
)
(fp_text value "LED" (at -1.350872 2.06604 180 unlocked) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 926f0827-a5f6-48a6-a661-35de7e2ba35a)
)
(fp_text user "${REFERENCE}" (at -0.913825 3.61557 180 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e2d6ca05-0395-45ca-a6c3-3f874766dd1b)
)
(pad "1" thru_hole circle (at -2.54 0 180) (size 2.286 2.286) (drill 0.762) (layers "*.Cu" "*.Mask")
(net 29 "Net-(D4-K)") (pinfunction "K") (pintype "passive") (tstamp f17ae6f7-264c-4688-934f-8ffe97cfcfe1))
(pad "2" thru_hole circle (at 0 0 180) (size 2.286 2.286) (drill 0.762) (layers "*.Cu" "*.Mask")
(net 8 "Net-(A1-D5)") (pinfunction "A") (pintype "passive") (tstamp 6ba3dc04-b926-44c5-8289-c83780aec829))
)
(footprint "Resistor_SMD:R_1206_3216Metric_Pad1.30x1.75mm_HandSolder" (layer "F.Cu")
(tstamp ce73fa3b-f341-4eba-b51a-e7e7356d2f90)
(at 73.33 35.75 180)
(descr "Resistor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (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 handsolder")
(property "Sheetfile" "ArduinoSolderChallenge.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor")
(property "ki_keywords" "R res resistor")
(path "/fca8d470-5aac-4331-95ca-a8c5259b657c")
(attr smd)
(fp_text reference "R8" (at -3.5 0.01) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5ff54ea4-1fb2-48a7-9b2d-8d30977d5c65)
)
(fp_text value "R" (at 0 1.82) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d317b414-006b-406e-8a24-5c9205135947)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.12)))
(tstamp 810a9b26-21df-47bf-a268-cd65ed782c69)
)
(fp_line (start -0.727064 -0.91) (end 0.727064 -0.91)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a8a9ff52-8a7d-4d25-a9f8-9fdd1bad034b))
(fp_line (start -0.727064 0.91) (end 0.727064 0.91)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 89939c83-c264-4614-ae29-6e8ceaa0fca5))
(fp_line (start -2.45 -1.12) (end 2.45 -1.12)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 2ee9d734-fb48-4199-8473-9a6e6064ea4c))
(fp_line (start -2.45 1.12) (end -2.45 -1.12)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 91490005-6148-4d31-93e1-9e1937be2516))
(fp_line (start 2.45 -1.12) (end 2.45 1.12)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b96e988c-dc12-4df6-8a11-e3cacd24c213))
(fp_line (start 2.45 1.12) (end -2.45 1.12)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 77a058aa-a265-4698-805e-02fe072a20c1))
(fp_line (start -1.6 -0.8) (end 1.6 -0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f419bc27-c0df-4fea-8167-a51e2c0e8b14))
(fp_line (start -1.6 0.8) (end -1.6 -0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8a40841b-e9e4-4dbf-87c1-153bc5d9d11a))
(fp_line (start 1.6 -0.8) (end 1.6 0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ce7940a9-e9a5-44c3-9cc2-c44a3cd6db7a))
(fp_line (start 1.6 0.8) (end -1.6 0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp cb188f4c-80a4-4795-a7f9-c999caac2af9))
(pad "1" smd roundrect (at -1.55 0 180) (size 1.3 1.75) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1923076923)
(net 4 "GND") (pintype "passive") (tstamp cbf99a56-a174-4c41-a995-a7968f850ff8))
(pad "2" smd roundrect (at 1.55 0 180) (size 1.3 1.75) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1923076923)
(net 33 "Net-(D8-K)") (pintype "passive") (tstamp fd36dfb6-ecc7-445f-86e8-1d07f2aadfd7))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_1206_3216Metric.wrl"
(offset (xyz 0 0 0))