-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNightly.kicad_pcb
12916 lines (12870 loc) · 567 KB
/
Nightly.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 20211014) (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)
(aux_axis_origin -140 -18)
(pcbplotparams
(layerselection 0x00010fc_ffffffff)
(disableapertmacros false)
(usegerberextensions false)
(usegerberattributes true)
(usegerberadvancedattributes true)
(creategerberjobfile true)
(svguseinch false)
(svgprecision 6)
(excludeedgelayer true)
(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 "Net-(C1-Pad1)")
(net 2 "GND")
(net 3 "/5V_P")
(net 4 "/5V_N")
(net 5 "Net-(D1-Pad1)")
(net 6 "Net-(D1-Pad2)")
(net 7 "Net-(D3-Pad1)")
(net 8 "Net-(D4-Pad2)")
(net 9 "Net-(D5-Pad1)")
(net 10 "Net-(D5-Pad2)")
(net 11 "Net-(D7-Pad1)")
(net 12 "Net-(D7-Pad2)")
(net 13 "Net-(D10-Pad2)")
(net 14 "Net-(D10-Pad1)")
(net 15 "Net-(D11-Pad1)")
(net 16 "Net-(D11-Pad2)")
(net 17 "Net-(D13-Pad1)")
(net 18 "Net-(D13-Pad2)")
(net 19 "Net-(D15-Pad1)")
(net 20 "Net-(D15-Pad2)")
(net 21 "Net-(R1-Pad1)")
(net 22 "Net-(R2-Pad2)")
(net 23 "/DRV1")
(net 24 "/DRV2")
(net 25 "/DRV3")
(net 26 "unconnected-(U1-Pad1)")
(net 27 "unconnected-(U1-Pad5)")
(net 28 "unconnected-(U1-Pad8)")
(net 29 "unconnected-(U3-Pad1)")
(net 30 "unconnected-(U3-Pad5)")
(net 31 "unconnected-(U3-Pad8)")
(footprint "Resistor_THT:R_Axial_DIN0411_L9.9mm_D3.6mm_P15.24mm_Horizontal" (layer "F.Cu")
(tedit 5AE5139B) (tstamp 003974b6-cb8f-491b-a226-fc7891eb9a62)
(at -98 -54.62 -90)
(descr "Resistor, Axial_DIN0411 series, Axial, Horizontal, pin pitch=15.24mm, 1W, length*diameter=9.9*3.6mm^2")
(tags "Resistor Axial_DIN0411 series Axial Horizontal pin pitch 15.24mm 1W length 9.9mm diameter 3.6mm")
(property "Sheetfile" "Nightly.kicad_sch")
(property "Sheetname" "")
(path "/b4a1744e-ab8f-4c8e-99f5-cd2de39e719f")
(attr through_hole)
(fp_text reference "R12" (at 7.62 -2.92 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8d9ea4cf-1047-42af-bf72-13258f22d6ad)
)
(fp_text value "3K3" (at 7.62 2.92 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e16a8ef9-72be-44ea-a34c-71d53d6ff2bf)
)
(fp_text user "${REFERENCE}" (at 7.62 0 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f22aae5d-f6eb-438b-9ba4-dcb7ba01f85f)
)
(fp_line (start 12.69 1.92) (end 12.69 -1.92) (layer "F.SilkS") (width 0.12) (tstamp 01106a52-6b7d-40fd-b165-c927be1f6a1d))
(fp_line (start 1.44 0) (end 2.55 0) (layer "F.SilkS") (width 0.12) (tstamp 37e43d63-cb41-40f8-97c4-4ee588727924))
(fp_line (start 2.55 1.92) (end 12.69 1.92) (layer "F.SilkS") (width 0.12) (tstamp 69cceaac-6f1b-4182-8e1c-91402953f92a))
(fp_line (start 2.55 -1.92) (end 2.55 1.92) (layer "F.SilkS") (width 0.12) (tstamp 9fb044e3-00d4-4901-9cd7-c364c152358f))
(fp_line (start 12.69 -1.92) (end 2.55 -1.92) (layer "F.SilkS") (width 0.12) (tstamp a0af1aa5-82ff-4825-8836-86496e7db65f))
(fp_line (start 13.8 0) (end 12.69 0) (layer "F.SilkS") (width 0.12) (tstamp d7fccf28-3bfa-4b51-bf91-5d4755a0686e))
(fp_line (start -1.45 -2.05) (end -1.45 2.05) (layer "F.CrtYd") (width 0.05) (tstamp 3785db90-bbe9-4018-bab6-3a4673f84f27))
(fp_line (start 16.69 2.05) (end 16.69 -2.05) (layer "F.CrtYd") (width 0.05) (tstamp 478afa34-e0e2-4584-885c-121c8a802996))
(fp_line (start 16.69 -2.05) (end -1.45 -2.05) (layer "F.CrtYd") (width 0.05) (tstamp e8e23712-f080-4685-ae22-9028780f7b13))
(fp_line (start -1.45 2.05) (end 16.69 2.05) (layer "F.CrtYd") (width 0.05) (tstamp e96432f3-c6ee-4cdc-892b-eb9f8e5ebd05))
(fp_line (start 2.67 1.8) (end 12.57 1.8) (layer "F.Fab") (width 0.1) (tstamp 082621c8-b51d-48fd-937c-afceb255b94e))
(fp_line (start 0 0) (end 2.67 0) (layer "F.Fab") (width 0.1) (tstamp 430cb5a0-6865-46d0-be60-5d722d3e8d80))
(fp_line (start 12.57 -1.8) (end 2.67 -1.8) (layer "F.Fab") (width 0.1) (tstamp 728dda43-38f9-4d13-b2a9-59e599c86d99))
(fp_line (start 15.24 0) (end 12.57 0) (layer "F.Fab") (width 0.1) (tstamp a1441258-3477-4706-8540-9e88ae0dac49))
(fp_line (start 12.57 1.8) (end 12.57 -1.8) (layer "F.Fab") (width 0.1) (tstamp a65cad0c-0ef1-4ea5-a965-4eae7ac1f6af))
(fp_line (start 2.67 -1.8) (end 2.67 1.8) (layer "F.Fab") (width 0.1) (tstamp eef9a49b-90d1-4463-b2c5-af035d3ae9d7))
(pad "1" thru_hole circle (at 0 0 270) (size 2.4 2.4) (drill 1.2) (layers *.Cu *.Mask)
(net 14 "Net-(D10-Pad1)") (pintype "passive") (tstamp 9b84db75-decc-418f-80b8-9703cc547aae))
(pad "2" thru_hole oval (at 15.24 0 270) (size 2.4 2.4) (drill 1.2) (layers *.Cu *.Mask)
(net 2 "GND") (pintype "passive") (tstamp 4e944601-14c5-4478-a9d6-8d2ad19dcc43))
(model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0411_L9.9mm_D3.6mm_P15.24mm_Horizontal.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_THT:R_Axial_DIN0411_L9.9mm_D3.6mm_P15.24mm_Horizontal" (layer "F.Cu")
(tedit 5AE5139B) (tstamp 004b7456-c25a-480f-88f6-723c1bcd9939)
(at -132.62 -35)
(descr "Resistor, Axial_DIN0411 series, Axial, Horizontal, pin pitch=15.24mm, 1W, length*diameter=9.9*3.6mm^2")
(tags "Resistor Axial_DIN0411 series Axial Horizontal pin pitch 15.24mm 1W length 9.9mm diameter 3.6mm")
(property "Sheetfile" "Nightly.kicad_sch")
(property "Sheetname" "")
(path "/246a3686-c2bc-4094-953b-3b6dbba552fe")
(attr through_hole)
(fp_text reference "R11" (at 7.62 -2.92) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e02b47af-92a8-4b6e-841f-f88d0fa73eb7)
)
(fp_text value "3K3" (at 7.62 2.92) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 65908b01-f0a0-46e1-84f2-bf49d46af2a7)
)
(fp_text user "${REFERENCE}" (at 7.62 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp cb5eb8e7-f7ba-4f62-8bfe-a6dd2b84605e)
)
(fp_line (start 1.44 0) (end 2.55 0) (layer "F.SilkS") (width 0.12) (tstamp 50d092a1-cb48-4b36-9419-53ddb3f8fa14))
(fp_line (start 2.55 1.92) (end 12.69 1.92) (layer "F.SilkS") (width 0.12) (tstamp 5a5b7060-983c-4989-878e-3126720e998d))
(fp_line (start 13.8 0) (end 12.69 0) (layer "F.SilkS") (width 0.12) (tstamp 79e1811e-908a-4ac6-a9ea-8cf4bbc9a51d))
(fp_line (start 12.69 1.92) (end 12.69 -1.92) (layer "F.SilkS") (width 0.12) (tstamp 92786ddd-53cc-4458-af25-eb5a2b46154e))
(fp_line (start 2.55 -1.92) (end 2.55 1.92) (layer "F.SilkS") (width 0.12) (tstamp ceb65f05-08ce-47e9-8a7e-aa1335099416))
(fp_line (start 12.69 -1.92) (end 2.55 -1.92) (layer "F.SilkS") (width 0.12) (tstamp d1dfde70-d9fc-446f-93d2-31e0ac9baaa9))
(fp_line (start -1.45 -2.05) (end -1.45 2.05) (layer "F.CrtYd") (width 0.05) (tstamp 4d4c722c-847e-4f75-bf0d-16ad704831ef))
(fp_line (start 16.69 2.05) (end 16.69 -2.05) (layer "F.CrtYd") (width 0.05) (tstamp 5c55c653-303a-4aa1-b520-46d1ee447caa))
(fp_line (start 16.69 -2.05) (end -1.45 -2.05) (layer "F.CrtYd") (width 0.05) (tstamp 745a27e0-733b-4d2b-b0f0-d4c1457e893e))
(fp_line (start -1.45 2.05) (end 16.69 2.05) (layer "F.CrtYd") (width 0.05) (tstamp ed92ba08-98ec-48df-9584-41c899a43f78))
(fp_line (start 15.24 0) (end 12.57 0) (layer "F.Fab") (width 0.1) (tstamp 10df6e07-cc84-4b25-a71b-19a35b4b40da))
(fp_line (start 12.57 1.8) (end 12.57 -1.8) (layer "F.Fab") (width 0.1) (tstamp 25c0c83a-69e4-4bb3-a4ba-e35ba5e17f0f))
(fp_line (start 12.57 -1.8) (end 2.67 -1.8) (layer "F.Fab") (width 0.1) (tstamp 42795956-f125-4166-860d-4316fe3791b8))
(fp_line (start 2.67 1.8) (end 12.57 1.8) (layer "F.Fab") (width 0.1) (tstamp 6f52f85c-aac3-4a99-8226-7744ad08fdc3))
(fp_line (start 2.67 -1.8) (end 2.67 1.8) (layer "F.Fab") (width 0.1) (tstamp c7699973-e377-4c8c-8edc-6474ca187ece))
(fp_line (start 0 0) (end 2.67 0) (layer "F.Fab") (width 0.1) (tstamp e1b0380f-01af-4f4c-986f-502b633a3c03))
(pad "1" thru_hole circle (at 0 0) (size 2.4 2.4) (drill 1.2) (layers *.Cu *.Mask)
(net 12 "Net-(D7-Pad2)") (pintype "passive") (tstamp bead2789-cf29-4cdd-ad3a-a7fd6922e223))
(pad "2" thru_hole oval (at 15.24 0) (size 2.4 2.4) (drill 1.2) (layers *.Cu *.Mask)
(net 2 "GND") (pintype "passive") (tstamp d5ad3607-7629-4f44-bfe3-a3b510cd5b14))
(model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0411_L9.9mm_D3.6mm_P15.24mm_Horizontal.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_THT:CP_Radial_D5.0mm_P2.50mm" (layer "F.Cu")
(tedit 5AE50EF0) (tstamp 0cc9bf07-55b9-458f-b8aa-41b2f51fa940)
(at -51 -22 180)
(descr "CP, Radial series, Radial, pin pitch=2.50mm, , diameter=5mm, Electrolytic Capacitor")
(tags "CP Radial series Radial pin pitch 2.50mm diameter 5mm Electrolytic Capacitor")
(property "Sheetfile" "Nightly.kicad_sch")
(property "Sheetname" "")
(path "/b9568926-be5f-4b3e-8e08-1aa2e38aadbc")
(attr through_hole)
(fp_text reference "C3" (at 1.25 -3.75) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 25dcf1b7-43fe-4f66-9cb1-3580284f763b)
)
(fp_text value "100n" (at 1.25 3.75) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d1f5dbe4-d66e-4e26-be2b-62f3bc80c54d)
)
(fp_text user "${REFERENCE}" (at 1.25 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 69b62df2-080c-4fbc-a9ff-a83e6181a480)
)
(fp_line (start 2.331 1.04) (end 2.331 2.348) (layer "F.SilkS") (width 0.12) (tstamp 007d1aa0-0a35-4c79-bc8d-e834bd3664f0))
(fp_line (start 2.851 1.04) (end 2.851 2.035) (layer "F.SilkS") (width 0.12) (tstamp 009110da-fae2-454e-8387-1e8fd70409cb))
(fp_line (start 3.291 1.04) (end 3.291 1.605) (layer "F.SilkS") (width 0.12) (tstamp 05c66f7d-5ec1-4b7f-80d5-ea1eb396392f))
(fp_line (start 1.93 1.04) (end 1.93 2.491) (layer "F.SilkS") (width 0.12) (tstamp 0a7da8e8-4a29-4619-8c2a-45042f49f661))
(fp_line (start 3.011 -1.901) (end 3.011 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 0d439aa8-8969-4698-9c32-7041f6e45f4c))
(fp_line (start 1.65 -2.55) (end 1.65 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 116b375f-957b-4eda-a12b-df384678f533))
(fp_line (start 2.491 -2.268) (end 2.491 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 12d443ad-5d40-4934-b2b7-007530e8bfde))
(fp_line (start 3.771 -0.677) (end 3.771 0.677) (layer "F.SilkS") (width 0.12) (tstamp 13f293f5-71fa-4ce7-bfc1-43137bddb382))
(fp_line (start 3.371 -1.5) (end 3.371 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 145b7d46-7bd4-4ee4-8136-50beb81c7f77))
(fp_line (start 2.251 1.04) (end 2.251 2.382) (layer "F.SilkS") (width 0.12) (tstamp 14c24f6d-c2bf-4b01-9d4b-7f0755e08445))
(fp_line (start 1.29 -2.58) (end 1.29 2.58) (layer "F.SilkS") (width 0.12) (tstamp 16b71e23-859c-4e16-8af1-5d30a5c2b726))
(fp_line (start 2.931 -1.971) (end 2.931 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 189734b9-8485-4c30-8cf0-796856677229))
(fp_line (start 1.971 -2.48) (end 1.971 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 198a2a45-a86c-4371-8a75-c6e4c84fad3d))
(fp_line (start 2.771 1.04) (end 2.771 2.095) (layer "F.SilkS") (width 0.12) (tstamp 1b03311f-6d16-4213-808a-96597816d097))
(fp_line (start 2.731 1.04) (end 2.731 2.122) (layer "F.SilkS") (width 0.12) (tstamp 1b2c37f1-2f41-4eef-9163-74d93552bfe4))
(fp_line (start 1.89 1.04) (end 1.89 2.501) (layer "F.SilkS") (width 0.12) (tstamp 1b642110-eaa8-451d-b449-e92e71e75978))
(fp_line (start 2.651 1.04) (end 2.651 2.175) (layer "F.SilkS") (width 0.12) (tstamp 1b80aaa4-9cfe-448e-8ff1-d2c69f706b2e))
(fp_line (start 1.49 -2.569) (end 1.49 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 1bd13fbe-d376-42a1-8a94-f12442f4121a))
(fp_line (start 1.61 1.04) (end 1.61 2.556) (layer "F.SilkS") (width 0.12) (tstamp 20fac508-78eb-4aa5-add1-1566151feb66))
(fp_line (start 3.491 1.04) (end 3.491 1.319) (layer "F.SilkS") (width 0.12) (tstamp 2335745d-4b86-4498-9fad-6d2729137fe3))
(fp_line (start 1.77 1.04) (end 1.77 2.528) (layer "F.SilkS") (width 0.12) (tstamp 268c6477-051a-4631-8f4a-c86c47bf5102))
(fp_line (start 2.291 1.04) (end 2.291 2.365) (layer "F.SilkS") (width 0.12) (tstamp 293bc8e1-4ff1-450d-8ef0-4276b77002bf))
(fp_line (start 1.85 1.04) (end 1.85 2.511) (layer "F.SilkS") (width 0.12) (tstamp 2ad27911-6b4b-41d3-af19-3a88d479912c))
(fp_line (start 1.971 1.04) (end 1.971 2.48) (layer "F.SilkS") (width 0.12) (tstamp 2b626917-a177-4b61-81a1-fd2a69eb9f9a))
(fp_line (start 3.371 1.04) (end 3.371 1.5) (layer "F.SilkS") (width 0.12) (tstamp 2c3fea3e-cdf1-4761-ab1e-fc29ca86c948))
(fp_line (start 2.171 1.04) (end 2.171 2.414) (layer "F.SilkS") (width 0.12) (tstamp 2f274d35-c819-4fa4-bf08-0f05441a1514))
(fp_line (start 2.691 -2.149) (end 2.691 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 31f4dc6c-dde9-45e8-b29d-489d35e0f1d0))
(fp_line (start 2.091 1.04) (end 2.091 2.442) (layer "F.SilkS") (width 0.12) (tstamp 35a1a735-588f-4c50-9b46-cb8744ae8f02))
(fp_line (start 3.731 -0.805) (end 3.731 0.805) (layer "F.SilkS") (width 0.12) (tstamp 38cad123-e6f8-46ac-bb65-7bf207c8a5a7))
(fp_line (start 1.69 -2.543) (end 1.69 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 39a58874-d2bf-449b-9f58-07b2f1a46d16))
(fp_line (start 3.291 -1.605) (end 3.291 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 3e2d784c-b1ea-4086-bef2-82018cbe1d69))
(fp_line (start 1.57 1.04) (end 1.57 2.561) (layer "F.SilkS") (width 0.12) (tstamp 3e85f78b-004a-4a21-9691-8920952aaa64))
(fp_line (start 2.211 1.04) (end 2.211 2.398) (layer "F.SilkS") (width 0.12) (tstamp 3eb6166e-d2a4-4778-a9e3-fd9ea19f972e))
(fp_line (start 2.251 -2.382) (end 2.251 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 442f453a-9b44-44ab-a898-82f45629c72d))
(fp_line (start 3.331 -1.554) (end 3.331 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 468fcc7f-55f8-4783-b36e-f80ec4401b15))
(fp_line (start 1.49 1.04) (end 1.49 2.569) (layer "F.SilkS") (width 0.12) (tstamp 491de0e1-cd41-47a4-a79b-f86c4b58fa87))
(fp_line (start 2.891 -2.004) (end 2.891 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 4b4dab82-e313-4c7a-b63b-b5f6b48d648b))
(fp_line (start 3.211 -1.699) (end 3.211 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 4ce0e23d-dbb3-4d2d-b549-50bee3d446b9))
(fp_line (start 2.211 -2.398) (end 2.211 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 51e64652-1e71-4dd7-be6f-f96020dbcaac))
(fp_line (start 2.811 -2.065) (end 2.811 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 54c2b029-df21-4268-9a74-8433670031c7))
(fp_line (start 3.331 1.04) (end 3.331 1.554) (layer "F.SilkS") (width 0.12) (tstamp 5bc20856-921d-4ca5-8e51-26fc99168376))
(fp_line (start 3.051 -1.864) (end 3.051 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 5d19829e-e95d-4ae6-bbd1-c9f884742daf))
(fp_line (start 2.731 -2.122) (end 2.731 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 5e3106c4-aefe-4ef5-8aa8-6f8a9c16fe7d))
(fp_line (start 2.851 -2.035) (end 2.851 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 5fb34c2f-8685-4006-a370-36a5c54e8539))
(fp_line (start 3.531 -1.251) (end 3.531 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 638185a1-f9cc-47fc-9abd-4b70c0817d94))
(fp_line (start 2.051 1.04) (end 2.051 2.455) (layer "F.SilkS") (width 0.12) (tstamp 638749f1-b1e7-4781-9f0f-dba065a717aa))
(fp_line (start 2.051 -2.455) (end 2.051 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 6647797e-9035-4291-9495-e7c7119a3fd1))
(fp_line (start 3.011 1.04) (end 3.011 1.901) (layer "F.SilkS") (width 0.12) (tstamp 67c7a478-1f53-477a-9997-e375f47aa773))
(fp_line (start 2.691 1.04) (end 2.691 2.149) (layer "F.SilkS") (width 0.12) (tstamp 680ed401-4444-41a7-a749-88310d3efeaa))
(fp_line (start 1.89 -2.501) (end 1.89 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 6a8a1901-a3c7-470d-99d9-02146451972b))
(fp_line (start 2.571 -2.224) (end 2.571 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 6db64f46-9e2d-4604-b932-a6f7a66a0d14))
(fp_line (start 3.131 1.04) (end 3.131 1.785) (layer "F.SilkS") (width 0.12) (tstamp 6dda73be-73a3-4bdf-aea3-f2d520a51491))
(fp_line (start 1.81 1.04) (end 1.81 2.52) (layer "F.SilkS") (width 0.12) (tstamp 751eb404-33b7-4b8f-8aa0-576b234652fb))
(fp_line (start 3.851 -0.284) (end 3.851 0.284) (layer "F.SilkS") (width 0.12) (tstamp 756b369e-c079-4259-88cc-888037ab7efa))
(fp_line (start 2.171 -2.414) (end 2.171 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 77482be5-b12a-41cb-b345-89c6c297fbe1))
(fp_line (start 3.171 1.04) (end 3.171 1.743) (layer "F.SilkS") (width 0.12) (tstamp 77576d54-df18-461f-833a-af44e90f9ec8))
(fp_line (start 1.61 -2.556) (end 1.61 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 778130e2-5dcf-4ba4-bd77-4acc3a461105))
(fp_line (start -1.554775 -1.475) (end -1.054775 -1.475) (layer "F.SilkS") (width 0.12) (tstamp 78620eb8-ad4c-482d-b1a5-6c31619b2879))
(fp_line (start 2.491 1.04) (end 2.491 2.268) (layer "F.SilkS") (width 0.12) (tstamp 78fa7842-f3c6-48db-8c77-7797633506e5))
(fp_line (start 3.251 -1.653) (end 3.251 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 7b7fe22f-5db7-4fb0-a6e2-91b9a8e5f484))
(fp_line (start 3.171 -1.743) (end 3.171 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 7bfe75c7-ef59-483f-8531-f86433a553f4))
(fp_line (start 2.611 -2.2) (end 2.611 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 7c7cfeb1-8cd1-4c5f-8e65-42b386d94011))
(fp_line (start 3.811 -0.518) (end 3.811 0.518) (layer "F.SilkS") (width 0.12) (tstamp 7d1347db-292a-4095-85d4-76da0d3f5524))
(fp_line (start 1.53 1.04) (end 1.53 2.565) (layer "F.SilkS") (width 0.12) (tstamp 7d7305a7-c7da-4881-b215-37c7f2ad171a))
(fp_line (start 1.69 1.04) (end 1.69 2.543) (layer "F.SilkS") (width 0.12) (tstamp 7daf5828-f3c9-4b7d-a7a2-cf463fb6219f))
(fp_line (start 3.611 -1.098) (end 3.611 1.098) (layer "F.SilkS") (width 0.12) (tstamp 7e4a5f4a-ba57-4793-9c6e-04e153b677a9))
(fp_line (start 2.811 1.04) (end 2.811 2.065) (layer "F.SilkS") (width 0.12) (tstamp 7eaae2d7-b4ad-4554-8c8a-2037170131bd))
(fp_line (start 2.451 -2.29) (end 2.451 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 825e7db8-0294-426e-853c-3be31e57f559))
(fp_line (start 3.091 -1.826) (end 3.091 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 834d0192-2f8f-45da-a664-ea874d4070f9))
(fp_line (start 1.81 -2.52) (end 1.81 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 8519174e-f406-4836-8f33-e219a5351591))
(fp_line (start 3.571 -1.178) (end 3.571 1.178) (layer "F.SilkS") (width 0.12) (tstamp 88c5e61d-a3df-45b2-8bd8-f2c4869aaa32))
(fp_line (start 2.131 1.04) (end 2.131 2.428) (layer "F.SilkS") (width 0.12) (tstamp 8bdd2fb5-8fc3-46f1-ade7-9687b983a86b))
(fp_line (start 2.571 1.04) (end 2.571 2.224) (layer "F.SilkS") (width 0.12) (tstamp 8c5a6fce-194d-4416-8856-cb66ff818319))
(fp_line (start 2.931 1.04) (end 2.931 1.971) (layer "F.SilkS") (width 0.12) (tstamp 917603e2-441d-4888-a037-0b830871fafd))
(fp_line (start 1.73 1.04) (end 1.73 2.536) (layer "F.SilkS") (width 0.12) (tstamp 937939a7-3d48-498a-98b7-bb48d04ada01))
(fp_line (start 1.41 -2.576) (end 1.41 2.576) (layer "F.SilkS") (width 0.12) (tstamp 94d07718-2fcc-40a0-ad0e-c4bb67bc804a))
(fp_line (start 3.451 1.04) (end 3.451 1.383) (layer "F.SilkS") (width 0.12) (tstamp 9c3dbdfa-1d03-4398-9be7-f28a12c9bf19))
(fp_line (start 1.85 -2.511) (end 1.85 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 9d3292e9-89ed-435a-b615-fc52a41b2a3d))
(fp_line (start 2.371 1.04) (end 2.371 2.329) (layer "F.SilkS") (width 0.12) (tstamp 9e5493fd-e148-46c4-ab73-9e150e0f216c))
(fp_line (start 1.25 -2.58) (end 1.25 2.58) (layer "F.SilkS") (width 0.12) (tstamp 9fdbccc2-2f8e-4736-8eda-6be5762e5cd4))
(fp_line (start 3.131 -1.785) (end 3.131 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 9feb2246-afac-4ea1-a19b-0b21b94e2662))
(fp_line (start 2.411 1.04) (end 2.411 2.31) (layer "F.SilkS") (width 0.12) (tstamp a1916e9e-4224-4c5d-a9c6-82b80a4bae89))
(fp_line (start 1.45 -2.573) (end 1.45 2.573) (layer "F.SilkS") (width 0.12) (tstamp a6e79250-4ea1-4a1f-b168-c1d347acb43a))
(fp_line (start 3.411 1.04) (end 3.411 1.443) (layer "F.SilkS") (width 0.12) (tstamp a8aaba27-4342-41ce-bbda-d0444467961f))
(fp_line (start 2.891 1.04) (end 2.891 2.004) (layer "F.SilkS") (width 0.12) (tstamp a8b74637-32ba-4af1-a789-5bc40c758bab))
(fp_line (start 2.371 -2.329) (end 2.371 -1.04) (layer "F.SilkS") (width 0.12) (tstamp a9d66172-b21f-445f-bff6-1303cec8590d))
(fp_line (start 2.651 -2.175) (end 2.651 -1.04) (layer "F.SilkS") (width 0.12) (tstamp ae81fe48-d57e-4488-a23e-f57c11561913))
(fp_line (start 3.451 -1.383) (end 3.451 -1.04) (layer "F.SilkS") (width 0.12) (tstamp b06d0f18-c7c1-4973-8806-d4fa87df5412))
(fp_line (start 3.091 1.04) (end 3.091 1.826) (layer "F.SilkS") (width 0.12) (tstamp b3dfbe76-e5a2-48e9-bf61-46c24ad01a97))
(fp_line (start 3.491 -1.319) (end 3.491 -1.04) (layer "F.SilkS") (width 0.12) (tstamp b4ddef27-9e8b-4c9f-ba6b-bbd22b45d51a))
(fp_line (start 3.531 1.04) (end 3.531 1.251) (layer "F.SilkS") (width 0.12) (tstamp b4e13e2a-b1f5-417e-8d80-b3e4cb5e5e55))
(fp_line (start 1.65 1.04) (end 1.65 2.55) (layer "F.SilkS") (width 0.12) (tstamp bdf9dfdb-3e3e-46cc-8bb8-4372561c164b))
(fp_line (start 1.77 -2.528) (end 1.77 -1.04) (layer "F.SilkS") (width 0.12) (tstamp be52ce9f-4498-483f-a791-994a787b7224))
(fp_line (start 2.011 1.04) (end 2.011 2.468) (layer "F.SilkS") (width 0.12) (tstamp be6377f8-a401-401c-9bdf-6f9152f2a7bd))
(fp_line (start 1.93 -2.491) (end 1.93 -1.04) (layer "F.SilkS") (width 0.12) (tstamp bf38fd98-a723-4065-8c4e-fb6cd31212e5))
(fp_line (start 2.131 -2.428) (end 2.131 -1.04) (layer "F.SilkS") (width 0.12) (tstamp c35e417c-496e-4303-b5c4-321c3cede22a))
(fp_line (start 1.37 -2.578) (end 1.37 2.578) (layer "F.SilkS") (width 0.12) (tstamp c36f7147-bc6f-4cbe-8b56-617ae1aaead3))
(fp_line (start 2.531 1.04) (end 2.531 2.247) (layer "F.SilkS") (width 0.12) (tstamp c4587bb7-c73a-4ad0-bcd4-d7dc9697e09b))
(fp_line (start 1.57 -2.561) (end 1.57 -1.04) (layer "F.SilkS") (width 0.12) (tstamp c4eb404f-f3d2-4506-bf24-56396736d56f))
(fp_line (start -1.304775 -1.725) (end -1.304775 -1.225) (layer "F.SilkS") (width 0.12) (tstamp c530039a-9616-48cc-81ab-7c9b301e469d))
(fp_line (start 1.53 -2.565) (end 1.53 -1.04) (layer "F.SilkS") (width 0.12) (tstamp c5d34e60-e5d5-4bd8-a53c-3ee26cb5d342))
(fp_line (start 2.971 -1.937) (end 2.971 -1.04) (layer "F.SilkS") (width 0.12) (tstamp c760136f-382d-4dce-baed-596591861912))
(fp_line (start 2.971 1.04) (end 2.971 1.937) (layer "F.SilkS") (width 0.12) (tstamp c908cdd7-5bf2-4e04-ae66-bd89b22bab8d))
(fp_line (start 3.211 1.04) (end 3.211 1.699) (layer "F.SilkS") (width 0.12) (tstamp d16f4efb-8280-42d4-b6f7-9241e542014e))
(fp_line (start 3.411 -1.443) (end 3.411 -1.04) (layer "F.SilkS") (width 0.12) (tstamp d2fb2423-7bf4-4222-994d-25a9683eab67))
(fp_line (start 1.33 -2.579) (end 1.33 2.579) (layer "F.SilkS") (width 0.12) (tstamp d875da09-775c-45a3-be03-ee257d013433))
(fp_line (start 2.091 -2.442) (end 2.091 -1.04) (layer "F.SilkS") (width 0.12) (tstamp d9452562-ce7e-4680-9c6e-6998b86cb475))
(fp_line (start 2.611 1.04) (end 2.611 2.2) (layer "F.SilkS") (width 0.12) (tstamp df70582b-c4f2-479d-8c60-1cee46d8e0bc))
(fp_line (start 2.451 1.04) (end 2.451 2.29) (layer "F.SilkS") (width 0.12) (tstamp dff5dc14-121e-4820-8bdd-194a2b3cb201))
(fp_line (start 3.651 -1.011) (end 3.651 1.011) (layer "F.SilkS") (width 0.12) (tstamp e702a3ea-106a-406d-9f17-c06eda1e35d1))
(fp_line (start 2.531 -2.247) (end 2.531 -1.04) (layer "F.SilkS") (width 0.12) (tstamp e9f702de-b437-4ae2-a03e-b707e9309898))
(fp_line (start 3.251 1.04) (end 3.251 1.653) (layer "F.SilkS") (width 0.12) (tstamp ec53b93c-c93c-4a00-b315-00a9db4c857c))
(fp_line (start 2.411 -2.31) (end 2.411 -1.04) (layer "F.SilkS") (width 0.12) (tstamp eed9d712-571a-4fa2-b617-7f564bf5e0ac))
(fp_line (start 3.691 -0.915) (end 3.691 0.915) (layer "F.SilkS") (width 0.12) (tstamp f10b6dc0-f39f-4ec0-980e-83a59fc7dc9c))
(fp_line (start 2.771 -2.095) (end 2.771 -1.04) (layer "F.SilkS") (width 0.12) (tstamp f1d34821-cc17-42fc-b481-1c7f738497e3))
(fp_line (start 3.051 1.04) (end 3.051 1.864) (layer "F.SilkS") (width 0.12) (tstamp f2471ff2-4a7f-4d16-9dbe-788438e7c5fb))
(fp_line (start 2.331 -2.348) (end 2.331 -1.04) (layer "F.SilkS") (width 0.12) (tstamp f3df0678-96d4-4652-9001-a89868c1f45e))
(fp_line (start 1.73 -2.536) (end 1.73 -1.04) (layer "F.SilkS") (width 0.12) (tstamp f4f8401f-00e2-4058-8b4d-acf3075d7f77))
(fp_line (start 2.011 -2.468) (end 2.011 -1.04) (layer "F.SilkS") (width 0.12) (tstamp fbef883a-9c30-4b66-add6-8cab5f0ab881))
(fp_line (start 2.291 -2.365) (end 2.291 -1.04) (layer "F.SilkS") (width 0.12) (tstamp fcdae4f4-bcbc-432a-b7d5-ee4bdd3d104f))
(fp_circle (center 1.25 0) (end 3.87 0) (layer "F.SilkS") (width 0.12) (fill none) (tstamp 88effe7d-dade-4834-8c1a-104d0976182d))
(fp_circle (center 1.25 0) (end 4 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp ef58db98-6c88-473d-9622-1b8b6864b4df))
(fp_line (start -0.883605 -1.0875) (end -0.383605 -1.0875) (layer "F.Fab") (width 0.1) (tstamp 0f122926-6ab0-4321-bb42-3042bba502d6))
(fp_line (start -0.633605 -1.3375) (end -0.633605 -0.8375) (layer "F.Fab") (width 0.1) (tstamp 26a83821-4bc7-4e41-803f-5e8d19182c3e))
(fp_circle (center 1.25 0) (end 3.75 0) (layer "F.Fab") (width 0.1) (fill none) (tstamp a3a95987-dbc7-46c3-9b74-39d0bc0f6070))
(pad "1" thru_hole rect (at 0 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 2 "GND") (pintype "passive") (tstamp 95ef63d7-a7a2-4718-a404-714eb6412ee9))
(pad "2" thru_hole circle (at 2.5 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 4 "/5V_N") (pintype "passive") (tstamp d1e5ef30-0c74-4f13-89aa-ab10a4b051eb))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_THT.3dshapes/CP_Radial_D5.0mm_P2.50mm.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "LED_THT:LED_D3.0mm" (layer "F.Cu")
(tedit 587A3A7B) (tstamp 0f0f7bb5-ade7-4a81-82b4-43be6a8ad05c)
(at -43 -52 180)
(descr "LED, diameter 3.0mm, 2 pins")
(tags "LED diameter 3.0mm 2 pins")
(property "Sheetfile" "Nightly.kicad_sch")
(property "Sheetname" "")
(path "/bfe2b104-fdb3-4d9d-b9fb-7b9a6805c468")
(attr through_hole)
(fp_text reference "D14" (at 1.27 -2.96) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp fb0bf2a0-d317-42f7-b022-b5e05481f6be)
)
(fp_text value "3mmY" (at 1.27 2.96) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2ee28fa9-d785-45a1-9a1b-1be02ad8cd0b)
)
(fp_line (start -0.29 1.08) (end -0.29 1.236) (layer "F.SilkS") (width 0.12) (tstamp 56d2bc5d-fd72-4542-ab0f-053a5fd60efa))
(fp_line (start -0.29 -1.236) (end -0.29 -1.08) (layer "F.SilkS") (width 0.12) (tstamp c512fed3-9770-476b-b048-e781b4f3cd72))
(fp_arc (start -0.29 -1.235516) (mid 1.366487 -1.987659) (end 2.942335 -1.078608) (layer "F.SilkS") (width 0.12) (tstamp 08ec951f-e7eb-41cf-9589-697107a98e88))
(fp_arc (start 0.229039 -1.08) (mid 1.270117 -1.5) (end 2.31113 -1.079837) (layer "F.SilkS") (width 0.12) (tstamp 09bbea88-8bd7-48ec-baae-1b4a9a11a40e))
(fp_arc (start 2.31113 1.079837) (mid 1.270117 1.5) (end 0.229039 1.08) (layer "F.SilkS") (width 0.12) (tstamp 0fb27e11-fde6-4a25-adbb-e9684771b369))
(fp_arc (start 2.942335 1.078608) (mid 1.366487 1.987659) (end -0.29 1.235516) (layer "F.SilkS") (width 0.12) (tstamp 41c18011-40db-4384-9ba4-c0158d0d9d6a))
(fp_line (start 3.7 -2.25) (end -1.15 -2.25) (layer "F.CrtYd") (width 0.05) (tstamp 022502e0-e724-4b75-bc35-3c5984dbeb76))
(fp_line (start 3.7 2.25) (end 3.7 -2.25) (layer "F.CrtYd") (width 0.05) (tstamp 2eea20e6-112c-411a-b615-885ae773135a))
(fp_line (start -1.15 2.25) (end 3.7 2.25) (layer "F.CrtYd") (width 0.05) (tstamp 49fec31e-3712-4229-8142-b191d90a97d0))
(fp_line (start -1.15 -2.25) (end -1.15 2.25) (layer "F.CrtYd") (width 0.05) (tstamp d655bb0a-cbf9-4908-ad60-7024ff468fbd))
(fp_line (start -0.23 -1.16619) (end -0.23 1.16619) (layer "F.Fab") (width 0.1) (tstamp 9f969b13-1795-4747-8326-93bdc304ed56))
(fp_arc (start -0.23 -1.16619) (mid 3.17 0.000452) (end -0.230555 1.165476) (layer "F.Fab") (width 0.1) (tstamp b9d4de74-d246-495d-8b63-12ab2133d6d6))
(fp_circle (center 1.27 0) (end 2.77 0) (layer "F.Fab") (width 0.1) (fill none) (tstamp 66ca01b3-51ff-4294-9b77-4492e98f6aec))
(pad "1" thru_hole rect (at 0 0 180) (size 1.8 1.8) (drill 0.9) (layers *.Cu *.Mask)
(net 18 "Net-(D13-Pad2)") (pinfunction "K") (pintype "passive") (tstamp 5e6153e6-2c19-46de-9a8e-b310a2a07861))
(pad "2" thru_hole circle (at 2.54 0 180) (size 1.8 1.8) (drill 0.9) (layers *.Cu *.Mask)
(net 17 "Net-(D13-Pad1)") (pinfunction "A") (pintype "passive") (tstamp 4346fe55-f906-453a-b81a-1c013104a598))
(model "${KICAD6_3DMODEL_DIR}/LED_THT.3dshapes/LED_D3.0mm.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "LED_THT:LED_D3.0mm" (layer "F.Cu")
(tedit 587A3A7B) (tstamp 1317ff66-8ecf-46c9-9612-8d2eae03c537)
(at -128.54 -28)
(descr "LED, diameter 3.0mm, 2 pins")
(tags "LED diameter 3.0mm 2 pins")
(property "Sheetfile" "Nightly.kicad_sch")
(property "Sheetname" "")
(path "/7a4339a4-5840-4d15-91ea-6075d7ed1c50")
(attr through_hole)
(fp_text reference "D7" (at 1.27 -2.96) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d1c19c11-0a13-4237-b6b4-fb2ef1db7c6d)
)
(fp_text value "3mmR" (at 1.27 2.96) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 29cbb0bc-f66b-4d11-80e7-5bb270e42496)
)
(fp_line (start -0.29 1.08) (end -0.29 1.236) (layer "F.SilkS") (width 0.12) (tstamp 63caf46e-0228-40de-b819-c6bd29dd1711))
(fp_line (start -0.29 -1.236) (end -0.29 -1.08) (layer "F.SilkS") (width 0.12) (tstamp 8aff0f38-92a8-45ec-b106-b185e93ca3fd))
(fp_arc (start -0.29 -1.235516) (mid 1.366487 -1.987659) (end 2.942335 -1.078608) (layer "F.SilkS") (width 0.12) (tstamp 0ba17a9b-d889-426c-b4fe-048bed6b6be8))
(fp_arc (start 2.942335 1.078608) (mid 1.366487 1.987659) (end -0.29 1.235516) (layer "F.SilkS") (width 0.12) (tstamp 94a10cae-6ef2-4b64-9d98-fb22aa3306cc))
(fp_arc (start 0.229039 -1.08) (mid 1.270117 -1.5) (end 2.31113 -1.079837) (layer "F.SilkS") (width 0.12) (tstamp a7fc0812-140f-4d96-9cd8-ead8c1c610b1))
(fp_arc (start 2.31113 1.079837) (mid 1.270117 1.5) (end 0.229039 1.08) (layer "F.SilkS") (width 0.12) (tstamp f33ec0db-ef0f-4576-8054-2833161a8f30))
(fp_line (start 3.7 -2.25) (end -1.15 -2.25) (layer "F.CrtYd") (width 0.05) (tstamp 7233cb6b-d8fd-4fcd-9b4f-8b0ed19b1b12))
(fp_line (start 3.7 2.25) (end 3.7 -2.25) (layer "F.CrtYd") (width 0.05) (tstamp 761c8e29-382a-475c-a37a-7201cc9cd0f5))
(fp_line (start -1.15 -2.25) (end -1.15 2.25) (layer "F.CrtYd") (width 0.05) (tstamp df83f395-2d18-47e2-a370-952ca41c2b3a))
(fp_line (start -1.15 2.25) (end 3.7 2.25) (layer "F.CrtYd") (width 0.05) (tstamp e50c80c5-80c4-46a3-8c1e-c9c3a71a0934))
(fp_line (start -0.23 -1.16619) (end -0.23 1.16619) (layer "F.Fab") (width 0.1) (tstamp 653a86ba-a1ae-4175-9d4c-c788087956d0))
(fp_arc (start -0.23 -1.16619) (mid 3.17 0.000452) (end -0.230555 1.165476) (layer "F.Fab") (width 0.1) (tstamp 3ed2c840-383d-4cbd-bc3b-c4ea4c97b333))
(fp_circle (center 1.27 0) (end 2.77 0) (layer "F.Fab") (width 0.1) (fill none) (tstamp 6a0919c2-460c-4229-b872-14e318e1ba8b))
(pad "1" thru_hole rect (at 0 0) (size 1.8 1.8) (drill 0.9) (layers *.Cu *.Mask)
(net 11 "Net-(D7-Pad1)") (pinfunction "K") (pintype "passive") (tstamp ef4533db-6ea4-4b68-b436-8e9575be570d))
(pad "2" thru_hole circle (at 2.54 0) (size 1.8 1.8) (drill 0.9) (layers *.Cu *.Mask)
(net 12 "Net-(D7-Pad2)") (pinfunction "A") (pintype "passive") (tstamp f5dba25f-5f9b-4770-84f9-c038fb119360))
(model "${KICAD6_3DMODEL_DIR}/LED_THT.3dshapes/LED_D3.0mm.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_THT:R_Axial_DIN0411_L9.9mm_D3.6mm_P15.24mm_Horizontal" (layer "F.Cu")
(tedit 5AE5139B) (tstamp 15ea3484-2685-47cb-9e01-ec01c6d477b8)
(at -123.62 -68.5)
(descr "Resistor, Axial_DIN0411 series, Axial, Horizontal, pin pitch=15.24mm, 1W, length*diameter=9.9*3.6mm^2")
(tags "Resistor Axial_DIN0411 series Axial Horizontal pin pitch 15.24mm 1W length 9.9mm diameter 3.6mm")
(property "Sheetfile" "Nightly.kicad_sch")
(property "Sheetname" "")
(path "/74ad0a8f-f943-4cc0-ac62-37913612d402")
(attr through_hole)
(fp_text reference "R5" (at 7.62 -2.92) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 87110cd9-2ac8-40e0-9e87-2e8196cde92a)
)
(fp_text value "10K" (at 7.62 2.92) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp da710602-5c6f-4ba5-b461-48eb0116bbbe)
)
(fp_text user "${REFERENCE}" (at 7.62 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ca2c6135-06b9-49ec-b90b-71e52fd66fd1)
)
(fp_line (start 12.69 1.92) (end 12.69 -1.92) (layer "F.SilkS") (width 0.12) (tstamp 7d86ba37-b98f-40a5-b35f-96db8417b185))
(fp_line (start 12.69 -1.92) (end 2.55 -1.92) (layer "F.SilkS") (width 0.12) (tstamp 86a34ff8-9697-4394-b32e-9c903027c8af))
(fp_line (start 2.55 -1.92) (end 2.55 1.92) (layer "F.SilkS") (width 0.12) (tstamp b03cb553-3709-44f5-9a1e-0bd7ca2daf93))
(fp_line (start 1.44 0) (end 2.55 0) (layer "F.SilkS") (width 0.12) (tstamp b2fcabdc-443d-41f9-9892-34509b22b3c4))
(fp_line (start 13.8 0) (end 12.69 0) (layer "F.SilkS") (width 0.12) (tstamp c6d0e6be-376d-4beb-9794-508920a2265a))
(fp_line (start 2.55 1.92) (end 12.69 1.92) (layer "F.SilkS") (width 0.12) (tstamp fda0167e-248a-4b89-bf7b-490df46aeb7d))
(fp_line (start -1.45 2.05) (end 16.69 2.05) (layer "F.CrtYd") (width 0.05) (tstamp 3a362cc7-5245-4ed2-8f66-3a6d74eaba39))
(fp_line (start 16.69 -2.05) (end -1.45 -2.05) (layer "F.CrtYd") (width 0.05) (tstamp b6a3e709-356a-4a55-ac00-07ba73afac37))
(fp_line (start -1.45 -2.05) (end -1.45 2.05) (layer "F.CrtYd") (width 0.05) (tstamp cac6ef5d-79dc-46ad-ba83-77cb1377c287))
(fp_line (start 16.69 2.05) (end 16.69 -2.05) (layer "F.CrtYd") (width 0.05) (tstamp ee94ab47-8315-46a5-bfc7-60550df5879d))
(fp_line (start 0 0) (end 2.67 0) (layer "F.Fab") (width 0.1) (tstamp 0f6b89db-12ed-4dac-b3ce-819a49798117))
(fp_line (start 2.67 -1.8) (end 2.67 1.8) (layer "F.Fab") (width 0.1) (tstamp 2a507df7-40c5-4523-b0fd-269cea55efb9))
(fp_line (start 15.24 0) (end 12.57 0) (layer "F.Fab") (width 0.1) (tstamp 7d283b62-f314-41a0-b56b-d307f2ebfa85))
(fp_line (start 12.57 -1.8) (end 2.67 -1.8) (layer "F.Fab") (width 0.1) (tstamp 845f389f-ac5c-4af4-aa4f-3b1355707a5f))
(fp_line (start 12.57 1.8) (end 12.57 -1.8) (layer "F.Fab") (width 0.1) (tstamp ba3f68df-a80d-4363-9b28-2b49507e87bd))
(fp_line (start 2.67 1.8) (end 12.57 1.8) (layer "F.Fab") (width 0.1) (tstamp ee4527a8-96f7-423b-b0eb-5c3b1bed75f9))
(pad "1" thru_hole circle (at 0 0) (size 2.4 2.4) (drill 1.2) (layers *.Cu *.Mask)
(net 22 "Net-(R2-Pad2)") (pintype "passive") (tstamp 8aaa3345-c586-4729-9584-3137be876023))
(pad "2" thru_hole oval (at 15.24 0) (size 2.4 2.4) (drill 1.2) (layers *.Cu *.Mask)
(net 24 "/DRV2") (pintype "passive") (tstamp a8333ca2-6919-4fe3-9f28-bacc852923df))
(model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0411_L9.9mm_D3.6mm_P15.24mm_Horizontal.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_THT:R_Axial_DIN0411_L9.9mm_D3.6mm_P15.24mm_Horizontal" (layer "F.Cu")
(tedit 5AE5139B) (tstamp 17cf1c88-8d51-4538-aa76-e35ac22d0ed0)
(at -137 -39.38 90)
(descr "Resistor, Axial_DIN0411 series, Axial, Horizontal, pin pitch=15.24mm, 1W, length*diameter=9.9*3.6mm^2")
(tags "Resistor Axial_DIN0411 series Axial Horizontal pin pitch 15.24mm 1W length 9.9mm diameter 3.6mm")
(property "Sheetfile" "Nightly.kicad_sch")
(property "Sheetname" "")
(path "/ed3b4d1b-0195-4ce0-91eb-603240e19f59")
(attr through_hole)
(fp_text reference "R1" (at 7.62 -2.92 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4223805d-8db1-4df1-b73a-3d99f37f1701)
)
(fp_text value "3K3" (at 7.62 2.92 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 28f921ab-5f55-47f8-b726-02e567145cd5)
)
(fp_text user "${REFERENCE}" (at 7.62 0 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9cdaf74c-bd9d-4293-9612-c30a4bca9a30)
)
(fp_line (start 13.8 0) (end 12.69 0) (layer "F.SilkS") (width 0.12) (tstamp 218a2487-4406-4830-b6ad-8a4182eda4f4))
(fp_line (start 1.44 0) (end 2.55 0) (layer "F.SilkS") (width 0.12) (tstamp 55b28997-b330-40d1-b32a-125cd071668d))
(fp_line (start 2.55 1.92) (end 12.69 1.92) (layer "F.SilkS") (width 0.12) (tstamp 5aa1c642-a9f0-4211-8572-3a7e8453422e))
(fp_line (start 12.69 1.92) (end 12.69 -1.92) (layer "F.SilkS") (width 0.12) (tstamp 6fff55eb-076f-4a2f-86d3-091fcb2366e9))
(fp_line (start 2.55 -1.92) (end 2.55 1.92) (layer "F.SilkS") (width 0.12) (tstamp d97f24b8-3f5c-4536-a071-0786594f3ffe))
(fp_line (start 12.69 -1.92) (end 2.55 -1.92) (layer "F.SilkS") (width 0.12) (tstamp da37a168-b259-4f98-9030-90f2f5ac962a))
(fp_line (start 16.69 2.05) (end 16.69 -2.05) (layer "F.CrtYd") (width 0.05) (tstamp 88e4f832-79d6-4c54-9ce3-4328dcb9d5b5))
(fp_line (start 16.69 -2.05) (end -1.45 -2.05) (layer "F.CrtYd") (width 0.05) (tstamp 899a4caf-0563-4c2a-9bca-5aa28747ef75))
(fp_line (start -1.45 -2.05) (end -1.45 2.05) (layer "F.CrtYd") (width 0.05) (tstamp d27bd75e-eeb9-4d8b-bfdb-bddce4b94b6c))
(fp_line (start -1.45 2.05) (end 16.69 2.05) (layer "F.CrtYd") (width 0.05) (tstamp d40f18db-c543-4c22-a8b0-72b9c9e5ae8b))
(fp_line (start 0 0) (end 2.67 0) (layer "F.Fab") (width 0.1) (tstamp 4263a0e8-33fc-439f-9b56-889a4f5d7b26))
(fp_line (start 12.57 1.8) (end 12.57 -1.8) (layer "F.Fab") (width 0.1) (tstamp 6dc32d24-5ef0-4c0e-ad26-4d147b147b28))
(fp_line (start 2.67 -1.8) (end 2.67 1.8) (layer "F.Fab") (width 0.1) (tstamp 856c0384-2dfc-47d2-a66c-a145c3149f14))
(fp_line (start 12.57 -1.8) (end 2.67 -1.8) (layer "F.Fab") (width 0.1) (tstamp b285d77c-3eef-4763-b6e4-d7759b529dfd))
(fp_line (start 2.67 1.8) (end 12.57 1.8) (layer "F.Fab") (width 0.1) (tstamp b70f4be0-be81-40f1-b237-a16be3740211))
(fp_line (start 15.24 0) (end 12.57 0) (layer "F.Fab") (width 0.1) (tstamp e4d0483b-1c21-4fb6-87dd-47e636746c0e))
(pad "1" thru_hole circle (at 0 0 90) (size 2.4 2.4) (drill 1.2) (layers *.Cu *.Mask)
(net 21 "Net-(R1-Pad1)") (pintype "passive") (tstamp 19d6a411-8997-491d-aace-09fdbc63404d))
(pad "2" thru_hole oval (at 15.24 0 90) (size 2.4 2.4) (drill 1.2) (layers *.Cu *.Mask)
(net 2 "GND") (pintype "passive") (tstamp 60ca4740-3009-4486-93d6-c2502818122b))
(model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0411_L9.9mm_D3.6mm_P15.24mm_Horizontal.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "LED_THT:LED_D3.0mm" (layer "F.Cu")
(tedit 587A3A7B) (tstamp 3457afc5-3e4f-4220-81d1-b079f653a722)
(at -43 -37 180)
(descr "LED, diameter 3.0mm, 2 pins")
(tags "LED diameter 3.0mm 2 pins")
(property "Sheetfile" "Nightly.kicad_sch")
(property "Sheetname" "")
(path "/1c340051-8d5d-4832-bfff-179f25b7fb14")
(attr through_hole)
(fp_text reference "D12" (at 1.27 -2.96) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4ce9470f-5633-41bf-89ac-74a810939893)
)
(fp_text value "3mmY" (at 1.27 2.96) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp aa23bfe3-454b-4a2b-bfe1-101c747eb84e)
)
(fp_line (start -0.29 -1.236) (end -0.29 -1.08) (layer "F.SilkS") (width 0.12) (tstamp 58390862-1833-41dd-9c4e-98073ea0da33))
(fp_line (start -0.29 1.08) (end -0.29 1.236) (layer "F.SilkS") (width 0.12) (tstamp 9208ea78-8dde-4b3d-91e9-5755ab5efd9a))
(fp_arc (start 0.229039 -1.08) (mid 1.270117 -1.5) (end 2.31113 -1.079837) (layer "F.SilkS") (width 0.12) (tstamp 1bf7d0f9-0dcf-4d7c-b58c-318e3dc42bc9))
(fp_arc (start -0.29 -1.235516) (mid 1.366487 -1.987659) (end 2.942335 -1.078608) (layer "F.SilkS") (width 0.12) (tstamp 247ebffd-2cb6-4379-ba6e-21861fea3913))
(fp_arc (start 2.31113 1.079837) (mid 1.270117 1.5) (end 0.229039 1.08) (layer "F.SilkS") (width 0.12) (tstamp 94d24676-7ae3-483c-8bd6-88d31adf00b4))
(fp_arc (start 2.942335 1.078608) (mid 1.366487 1.987659) (end -0.29 1.235516) (layer "F.SilkS") (width 0.12) (tstamp e45aa7d8-0254-4176-afd9-766820762e19))
(fp_line (start -1.15 2.25) (end 3.7 2.25) (layer "F.CrtYd") (width 0.05) (tstamp 83184391-76ed-44f0-8cd0-01f89f157bdb))
(fp_line (start 3.7 2.25) (end 3.7 -2.25) (layer "F.CrtYd") (width 0.05) (tstamp 966ee9ec-860e-45bb-af89-30bda72b2032))
(fp_line (start -1.15 -2.25) (end -1.15 2.25) (layer "F.CrtYd") (width 0.05) (tstamp 96ef76a5-90c3-4767-98ba-2b61887e28d3))
(fp_line (start 3.7 -2.25) (end -1.15 -2.25) (layer "F.CrtYd") (width 0.05) (tstamp db6412d3-e6c3-4bdd-abf4-a8f55d56df31))
(fp_line (start -0.23 -1.16619) (end -0.23 1.16619) (layer "F.Fab") (width 0.1) (tstamp 51cc007a-3378-4ce3-909c-71e94822f8d1))
(fp_arc (start -0.23 -1.16619) (mid 3.17 0.000452) (end -0.230555 1.165476) (layer "F.Fab") (width 0.1) (tstamp 5576cd03-3bad-40c5-9316-1d286895d52a))
(fp_circle (center 1.27 0) (end 2.77 0) (layer "F.Fab") (width 0.1) (fill none) (tstamp 1cacb878-9da4-41fc-aa80-018bc841e19a))
(pad "1" thru_hole rect (at 0 0 180) (size 1.8 1.8) (drill 0.9) (layers *.Cu *.Mask)
(net 16 "Net-(D11-Pad2)") (pinfunction "K") (pintype "passive") (tstamp e86e4fae-9ca7-4857-a93c-bc6a3048f887))
(pad "2" thru_hole circle (at 2.54 0 180) (size 1.8 1.8) (drill 0.9) (layers *.Cu *.Mask)
(net 15 "Net-(D11-Pad1)") (pinfunction "A") (pintype "passive") (tstamp 5e755161-24a5-4650-a6e3-9836bf074412))
(model "${KICAD6_3DMODEL_DIR}/LED_THT.3dshapes/LED_D3.0mm.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "LED_THT:LED_D3.0mm" (layer "F.Cu")
(tedit 587A3A7B) (tstamp 35fb7c56-dc85-43f7-b954-81b8040a8500)
(at -43 -67 180)
(descr "LED, diameter 3.0mm, 2 pins")
(tags "LED diameter 3.0mm 2 pins")
(property "Sheetfile" "Nightly.kicad_sch")
(property "Sheetname" "")
(path "/a07b3036-d8c2-48ad-95ba-09de6b64bfbb")
(attr through_hole)
(fp_text reference "D16" (at 1.27 -2.96) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f6a3288e-9575-42bb-af05-a920d59aded8)
)
(fp_text value "3mmY" (at 1.27 2.96) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ef94502b-f22d-4da7-a17f-4100090b03a1)
)
(fp_line (start -0.29 -1.236) (end -0.29 -1.08) (layer "F.SilkS") (width 0.12) (tstamp 49a65079-57a9-46fc-8711-1d7f2cab8dbf))
(fp_line (start -0.29 1.08) (end -0.29 1.236) (layer "F.SilkS") (width 0.12) (tstamp 87ba184f-bff5-4989-8217-6af375cc3dd8))
(fp_arc (start -0.29 -1.235516) (mid 1.366487 -1.987659) (end 2.942335 -1.078608) (layer "F.SilkS") (width 0.12) (tstamp 58cc7831-f944-4d33-8c61-2fd5bebc61e0))
(fp_arc (start 0.229039 -1.08) (mid 1.270117 -1.5) (end 2.31113 -1.079837) (layer "F.SilkS") (width 0.12) (tstamp 6ae963fb-e34f-4e11-9adf-78839a5b2ef1))
(fp_arc (start 2.942335 1.078608) (mid 1.366487 1.987659) (end -0.29 1.235516) (layer "F.SilkS") (width 0.12) (tstamp d45d1afe-78e6-4045-862c-b274469da903))
(fp_arc (start 2.31113 1.079837) (mid 1.270117 1.5) (end 0.229039 1.08) (layer "F.SilkS") (width 0.12) (tstamp f203116d-f256-4611-a03e-9536bbedaf2f))
(fp_line (start 3.7 -2.25) (end -1.15 -2.25) (layer "F.CrtYd") (width 0.05) (tstamp 165f4d8d-26a9-4cf2-a8d6-9936cd983be4))
(fp_line (start -1.15 -2.25) (end -1.15 2.25) (layer "F.CrtYd") (width 0.05) (tstamp 8e697b96-cf4c-43ef-b321-8c2422b088bf))
(fp_line (start -1.15 2.25) (end 3.7 2.25) (layer "F.CrtYd") (width 0.05) (tstamp 92a23ed4-a5ea-4cea-bc33-0a83191a0d32))
(fp_line (start 3.7 2.25) (end 3.7 -2.25) (layer "F.CrtYd") (width 0.05) (tstamp 9de304ba-fba7-4896-b969-9d87a3522d74))
(fp_line (start -0.23 -1.16619) (end -0.23 1.16619) (layer "F.Fab") (width 0.1) (tstamp 74855e0d-40e4-4940-a544-edae9207b2ea))
(fp_arc (start -0.23 -1.16619) (mid 3.17 0.000452) (end -0.230555 1.165476) (layer "F.Fab") (width 0.1) (tstamp d68dca9b-48b3-498b-9b5f-3b3838250f82))
(fp_circle (center 1.27 0) (end 2.77 0) (layer "F.Fab") (width 0.1) (fill none) (tstamp 59f60168-cced-43c9-aaa5-41a1a8a2f631))
(pad "1" thru_hole rect (at 0 0 180) (size 1.8 1.8) (drill 0.9) (layers *.Cu *.Mask)
(net 20 "Net-(D15-Pad2)") (pinfunction "K") (pintype "passive") (tstamp 73ee7e03-97a8-4121-b568-c25f3934a935))
(pad "2" thru_hole circle (at 2.54 0 180) (size 1.8 1.8) (drill 0.9) (layers *.Cu *.Mask)
(net 19 "Net-(D15-Pad1)") (pinfunction "A") (pintype "passive") (tstamp 291935ec-f8ff-41f0-8717-e68b8af7b8c1))
(model "${KICAD6_3DMODEL_DIR}/LED_THT.3dshapes/LED_D3.0mm.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Package_DIP:DIP-16_W7.62mm_Socket" (layer "F.Cu")
(tedit 5A02E8C5) (tstamp 36696ac6-2db1-4b52-ae3d-9f3c89d2042f)
(at -80.1 -54.875)
(descr "16-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), Socket")
(tags "THT DIP DIL PDIP 2.54mm 7.62mm 300mil Socket")
(property "Sheetfile" "Nightly.kicad_sch")
(property "Sheetname" "")
(path "/531a88fb-ecfe-4b8f-a9d8-725644dfe554")
(attr through_hole)
(fp_text reference "U2" (at 3.81 -2.33) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0f54db53-a272-4955-88fb-d7ab00657bb0)
)
(fp_text value "TL074" (at 3.81 20.11) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 80094b70-85ab-4ff6-934b-60d5ee65023a)
)
(fp_text user "${REFERENCE}" (at 3.81 8.89) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3cd1bda0-18db-417d-b581-a0c50623df68)
)
(fp_line (start 8.95 -1.39) (end -1.33 -1.39) (layer "F.SilkS") (width 0.12) (tstamp 03c52831-5dc5-43c5-a442-8d23643b46fb))
(fp_line (start 2.81 -1.33) (end 1.16 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 29e78086-2175-405e-9ba3-c48766d2f50c))
(fp_line (start -1.33 19.17) (end 8.95 19.17) (layer "F.SilkS") (width 0.12) (tstamp 2d210a96-f81f-42a9-8bf4-1b43c11086f3))
(fp_line (start 1.16 -1.33) (end 1.16 19.11) (layer "F.SilkS") (width 0.12) (tstamp 4c8eb964-bdf4-44de-90e9-e2ab82dd5313))
(fp_line (start 6.46 -1.33) (end 4.81 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 94a873dc-af67-4ef9-8159-1f7c93eeb3d7))
(fp_line (start -1.33 -1.39) (end -1.33 19.17) (layer "F.SilkS") (width 0.12) (tstamp 9bb20359-0f8b-45bc-9d38-6626ed3a939d))
(fp_line (start 6.46 19.11) (end 6.46 -1.33) (layer "F.SilkS") (width 0.12) (tstamp a1823eb2-fb0d-4ed8-8b96-04184ac3a9d5))
(fp_line (start 8.95 19.17) (end 8.95 -1.39) (layer "F.SilkS") (width 0.12) (tstamp aa14c3bd-4acc-4908-9d28-228585a22a9d))
(fp_line (start 1.16 19.11) (end 6.46 19.11) (layer "F.SilkS") (width 0.12) (tstamp d57dcfee-5058-4fc2-a68b-05f9a48f685b))
(fp_arc (start 4.81 -1.33) (mid 3.81 -0.33) (end 2.81 -1.33) (layer "F.SilkS") (width 0.12) (tstamp e857610b-4434-4144-b04e-43c1ebdc5ceb))
(fp_line (start 9.15 -1.6) (end -1.55 -1.6) (layer "F.CrtYd") (width 0.05) (tstamp 666713b0-70f4-42df-8761-f65bc212d03b))
(fp_line (start 9.15 19.4) (end 9.15 -1.6) (layer "F.CrtYd") (width 0.05) (tstamp 6c2e273e-743c-4f1e-a647-4171f8122550))
(fp_line (start -1.55 -1.6) (end -1.55 19.4) (layer "F.CrtYd") (width 0.05) (tstamp 7dc880bc-e7eb-4cce-8d8c-0b65a9dd788e))
(fp_line (start -1.55 19.4) (end 9.15 19.4) (layer "F.CrtYd") (width 0.05) (tstamp 9157f4ae-0244-4ff1-9f73-3cb4cbb5f280))
(fp_line (start 8.89 -1.33) (end -1.27 -1.33) (layer "F.Fab") (width 0.1) (tstamp 1a1ab354-5f85-45f9-938c-9f6c4c8c3ea2))
(fp_line (start -1.27 19.11) (end 8.89 19.11) (layer "F.Fab") (width 0.1) (tstamp 1bf544e3-5940-4576-9291-2464e95c0ee2))
(fp_line (start -1.27 -1.33) (end -1.27 19.11) (layer "F.Fab") (width 0.1) (tstamp 3aaee4c4-dbf7-49a5-a620-9465d8cc3ae7))
(fp_line (start 6.985 -1.27) (end 6.985 19.05) (layer "F.Fab") (width 0.1) (tstamp 42713045-fffd-4b2d-ae1e-7232d705fb12))
(fp_line (start 6.985 19.05) (end 0.635 19.05) (layer "F.Fab") (width 0.1) (tstamp 7aed3a71-054b-4aaa-9c0a-030523c32827))
(fp_line (start 0.635 -0.27) (end 1.635 -1.27) (layer "F.Fab") (width 0.1) (tstamp 922058ca-d09a-45fd-8394-05f3e2c1e03a))
(fp_line (start 1.635 -1.27) (end 6.985 -1.27) (layer "F.Fab") (width 0.1) (tstamp 97fe9c60-586f-4895-8504-4d3729f5f81a))
(fp_line (start 8.89 19.11) (end 8.89 -1.33) (layer "F.Fab") (width 0.1) (tstamp bdc7face-9f7c-4701-80bb-4cc144448db1))
(fp_line (start 0.635 19.05) (end 0.635 -0.27) (layer "F.Fab") (width 0.1) (tstamp c0515cd2-cdaa-467e-8354-0f6eadfa35c9))
(pad "1" thru_hole rect (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 19 "Net-(D15-Pad1)") (pintype "output") (tstamp 716e31c5-485f-40b5-88e3-a75900da9811))
(pad "2" thru_hole oval (at 0 2.54) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 19 "Net-(D15-Pad1)") (pinfunction "-") (pintype "input") (tstamp 127679a9-3981-4934-815e-896a4e3ff56e))
(pad "3" thru_hole oval (at 0 5.08) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 25 "/DRV3") (pinfunction "+") (pintype "input") (tstamp 48ab88d7-7084-4d02-b109-3ad55a30bb11))
(pad "4" thru_hole oval (at 0 7.62) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 3 "/5V_P") (pinfunction "V+") (pintype "power_in") (tstamp f71da641-16e6-4257-80c3-0b9d804fee4f))
(pad "5" thru_hole oval (at 0 10.16) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 25 "/DRV3") (pinfunction "+") (pintype "input") (tstamp fd470e95-4861-44fe-b1e4-6d8a7c66e144))
(pad "6" thru_hole oval (at 0 12.7) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 17 "Net-(D13-Pad1)") (pinfunction "-") (pintype "input") (tstamp 8174b4de-74b1-48db-ab8e-c8432251095b))
(pad "7" thru_hole oval (at 0 15.24) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 17 "Net-(D13-Pad1)") (pintype "output") (tstamp 704d6d51-bb34-4cbf-83d8-841e208048d8))
(pad "8" thru_hole oval (at 0 17.78) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 15 "Net-(D11-Pad1)") (pintype "output") (tstamp 0eaa98f0-9565-4637-ace3-42a5231b07f7))
(pad "9" thru_hole oval (at 7.62 17.78) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 15 "Net-(D11-Pad1)") (pinfunction "-") (pintype "input") (tstamp 181abe7a-f941-42b6-bd46-aaa3131f90fb))
(pad "10" thru_hole oval (at 7.62 15.24) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 25 "/DRV3") (pinfunction "+") (pintype "input") (tstamp ce83728b-bebd-48c2-8734-b6a50d837931))
(pad "11" thru_hole oval (at 7.62 12.7) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 4 "/5V_N") (pinfunction "V-") (pintype "power_in") (tstamp c41b3c8b-634e-435a-b582-96b83bbd4032))
(pad "12" thru_hole oval (at 7.62 10.16) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 25 "/DRV3") (pinfunction "+") (pintype "input") (tstamp 9340c285-5767-42d5-8b6d-63fe2a40ddf3))
(pad "13" thru_hole oval (at 7.62 7.62) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 13 "Net-(D10-Pad2)") (pinfunction "-") (pintype "input") (tstamp 1831fb37-1c5d-42c4-b898-151be6fca9dc))
(pad "14" thru_hole oval (at 7.62 5.08) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 13 "Net-(D10-Pad2)") (pintype "output") (tstamp 0f22151c-f260-4674-b486-4710a2c42a55))
(pad "15" thru_hole oval (at 7.62 2.54) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) (tstamp fe8d9267-7834-48d6-a191-c8724b2ee78d))
(pad "16" thru_hole oval (at 7.62 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) (tstamp 0b21a65d-d20b-411e-920a-75c343ac5136))
(model "${KICAD6_3DMODEL_DIR}/Package_DIP.3dshapes/DIP-16_W7.62mm_Socket.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_THT:R_Axial_DIN0411_L9.9mm_D3.6mm_P15.24mm_Horizontal" (layer "F.Cu")
(tedit 5AE5139B) (tstamp 46491a9d-8b3d-4c74-b09a-70c876f162e5)
(at -60.62 -29)
(descr "Resistor, Axial_DIN0411 series, Axial, Horizontal, pin pitch=15.24mm, 1W, length*diameter=9.9*3.6mm^2")
(tags "Resistor Axial_DIN0411 series Axial Horizontal pin pitch 15.24mm 1W length 9.9mm diameter 3.6mm")
(property "Sheetfile" "Nightly.kicad_sch")
(property "Sheetname" "")
(path "/ef8c9bcd-c8e9-4ca4-a1dc-b04dbbe6fcb5")
(attr through_hole)
(fp_text reference "R9" (at 7.62 -2.92) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3eee2221-7af9-4d6a-ba79-a48c3fd1ac35)
)
(fp_text value "3K9" (at 7.62 2.92) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 44c331f8-33e4-4ba1-bb1e-3071cc175bfd)
)
(fp_text user "${REFERENCE}" (at 7.62 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c6e8924b-3698-49bc-af6d-d7a327eada39)
)
(fp_line (start 12.69 1.92) (end 12.69 -1.92) (layer "F.SilkS") (width 0.12) (tstamp 08fae221-7b6f-4c57-be73-6210c6206091))
(fp_line (start 2.55 1.92) (end 12.69 1.92) (layer "F.SilkS") (width 0.12) (tstamp 3b5147db-69cc-4871-96a7-79c3437a6213))
(fp_line (start 12.69 -1.92) (end 2.55 -1.92) (layer "F.SilkS") (width 0.12) (tstamp 8fa4f87a-9012-4f6f-a6c0-ec1c5f716184))
(fp_line (start 1.44 0) (end 2.55 0) (layer "F.SilkS") (width 0.12) (tstamp 9ad54c14-6dd1-4741-ab11-80a0275cae72))
(fp_line (start 13.8 0) (end 12.69 0) (layer "F.SilkS") (width 0.12) (tstamp b90997e2-4c7f-4479-862f-ab35dfea4f77))
(fp_line (start 2.55 -1.92) (end 2.55 1.92) (layer "F.SilkS") (width 0.12) (tstamp dc2e4d69-ab4d-4864-999d-7aa340dd63c7))
(fp_line (start -1.45 2.05) (end 16.69 2.05) (layer "F.CrtYd") (width 0.05) (tstamp 21a4e5f9-158c-4a1e-a6d3-12c826291e62))
(fp_line (start 16.69 2.05) (end 16.69 -2.05) (layer "F.CrtYd") (width 0.05) (tstamp 646182ef-83d3-48ef-8f13-39bd3cf49786))
(fp_line (start -1.45 -2.05) (end -1.45 2.05) (layer "F.CrtYd") (width 0.05) (tstamp 9e39ed40-271f-40f8-b1c9-20b888c10512))
(fp_line (start 16.69 -2.05) (end -1.45 -2.05) (layer "F.CrtYd") (width 0.05) (tstamp fe0a8ab1-7b25-4d9a-9a3b-f8c5e10b289a))
(fp_line (start 12.57 1.8) (end 12.57 -1.8) (layer "F.Fab") (width 0.1) (tstamp 689e49bf-7f41-4390-9297-8151fb94eb64))
(fp_line (start 2.67 1.8) (end 12.57 1.8) (layer "F.Fab") (width 0.1) (tstamp 6e9aab82-e6c0-4960-99af-e7c5a83d520f))
(fp_line (start 2.67 -1.8) (end 2.67 1.8) (layer "F.Fab") (width 0.1) (tstamp 8f29ec2b-5253-4ae2-bf8f-40e83998f739))
(fp_line (start 15.24 0) (end 12.57 0) (layer "F.Fab") (width 0.1) (tstamp a97391c0-c438-44dc-aec7-4249e6f62568))
(fp_line (start 0 0) (end 2.67 0) (layer "F.Fab") (width 0.1) (tstamp cdf69da0-bf1d-48b6-92e4-7b762bd4454d))
(fp_line (start 12.57 -1.8) (end 2.67 -1.8) (layer "F.Fab") (width 0.1) (tstamp db09a492-3111-4077-8b89-2ff4c8eebad3))
(pad "1" thru_hole circle (at 0 0) (size 2.4 2.4) (drill 1.2) (layers *.Cu *.Mask)
(net 2 "GND") (pintype "passive") (tstamp 3381b763-2886-4e76-a243-cbcc2ec8a032))
(pad "2" thru_hole oval (at 15.24 0) (size 2.4 2.4) (drill 1.2) (layers *.Cu *.Mask)
(net 8 "Net-(D4-Pad2)") (pintype "passive") (tstamp 4fe15866-5386-4410-a27b-4fc15182a4f3))
(model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0411_L9.9mm_D3.6mm_P15.24mm_Horizontal.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "LED_THT:LED_D3.0mm" (layer "F.Cu")
(tedit 587A3A7B) (tstamp 560d05a7-84e4-403a-80d1-f287a4032b8a)
(at -45.54 -74)
(descr "LED, diameter 3.0mm, 2 pins")
(tags "LED diameter 3.0mm 2 pins")
(property "Sheetfile" "Nightly.kicad_sch")
(property "Sheetname" "")
(path "/084dbceb-e1b6-43bb-9936-912b71a51830")
(attr through_hole)
(fp_text reference "D15" (at 1.27 -2.96) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 34ce7009-187e-4541-a14e-708b3a2903d9)
)
(fp_text value "3mmR" (at 1.27 2.96) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 25c663ff-96b6-4263-a06e-d1829409cf73)
)
(fp_line (start -0.29 -1.236) (end -0.29 -1.08) (layer "F.SilkS") (width 0.12) (tstamp 15189cef-9045-423b-b4f6-a763d4e75704))
(fp_line (start -0.29 1.08) (end -0.29 1.236) (layer "F.SilkS") (width 0.12) (tstamp a239fd1d-dfbb-49fd-b565-8c3de9dcf42b))
(fp_arc (start 2.942335 1.078608) (mid 1.366487 1.987659) (end -0.29 1.235516) (layer "F.SilkS") (width 0.12) (tstamp 06665bf8-cef1-4e75-8d5b-1537b3c1b090))
(fp_arc (start 2.31113 1.079837) (mid 1.270117 1.5) (end 0.229039 1.08) (layer "F.SilkS") (width 0.12) (tstamp 9fdca5c2-1fbd-4774-a9c3-8795a40c206d))
(fp_arc (start -0.29 -1.235516) (mid 1.366487 -1.987659) (end 2.942335 -1.078608) (layer "F.SilkS") (width 0.12) (tstamp a0d52767-051a-423c-a600-928281f27952))
(fp_arc (start 0.229039 -1.08) (mid 1.270117 -1.5) (end 2.31113 -1.079837) (layer "F.SilkS") (width 0.12) (tstamp d32956af-146b-4a09-a053-d9d64b8dd86d))
(fp_line (start 3.7 2.25) (end 3.7 -2.25) (layer "F.CrtYd") (width 0.05) (tstamp 178ae27e-edb9-4ffb-bd13-c0a6dd659606))
(fp_line (start -1.15 -2.25) (end -1.15 2.25) (layer "F.CrtYd") (width 0.05) (tstamp 6ff9bb63-d6fd-4e32-bb60-7ac65509c2e9))
(fp_line (start -1.15 2.25) (end 3.7 2.25) (layer "F.CrtYd") (width 0.05) (tstamp aa8663be-9516-4b07-84d2-4c4d668b8596))
(fp_line (start 3.7 -2.25) (end -1.15 -2.25) (layer "F.CrtYd") (width 0.05) (tstamp dfcef016-1bf5-4158-8a79-72d38a522877))
(fp_line (start -0.23 -1.16619) (end -0.23 1.16619) (layer "F.Fab") (width 0.1) (tstamp 1a22eb2d-f625-4371-a918-ff1b97dc8219))
(fp_arc (start -0.23 -1.16619) (mid 3.17 0.000452) (end -0.230555 1.165476) (layer "F.Fab") (width 0.1) (tstamp f674b8e7-203d-419e-988a-58e0f9ae4fad))
(fp_circle (center 1.27 0) (end 2.77 0) (layer "F.Fab") (width 0.1) (fill none) (tstamp d767f2ff-12ec-4778-96cb-3fdd7a473d60))
(pad "1" thru_hole rect (at 0 0) (size 1.8 1.8) (drill 0.9) (layers *.Cu *.Mask)
(net 19 "Net-(D15-Pad1)") (pinfunction "K") (pintype "passive") (tstamp 2a4111b7-8149-4814-9344-3b8119cd75e4))
(pad "2" thru_hole circle (at 2.54 0) (size 1.8 1.8) (drill 0.9) (layers *.Cu *.Mask)
(net 20 "Net-(D15-Pad2)") (pinfunction "A") (pintype "passive") (tstamp a686ed7c-c2d1-4d29-9d54-727faf9fd6bf))
(model "${KICAD6_3DMODEL_DIR}/LED_THT.3dshapes/LED_D3.0mm.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Package_DIP:DIP-8_W7.62mm_Socket" (layer "F.Cu")
(tedit 5A02E8C5) (tstamp 5a889284-4c9f-49be-8f02-e43e18550914)
(at -124.1 -52.8)
(descr "8-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), Socket")
(tags "THT DIP DIL PDIP 2.54mm 7.62mm 300mil Socket")
(property "Sheetfile" "Nightly.kicad_sch")
(property "Sheetname" "")
(path "/c85ace76-c1ae-478f-9c4b-eef923a2984d")
(attr through_hole)
(fp_text reference "U1" (at 3.81 -2.33) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 18b7e157-ae67-48ad-bd7c-9fef6fe45b22)
)
(fp_text value "LF356" (at 3.81 9.95) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0f31f11f-c374-4640-b9a4-07bbdba8d354)
)
(fp_text user "${REFERENCE}" (at 3.81 3.81) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 37f31dec-63fc-4634-a141-5dc5d2b60fe4)
)
(fp_line (start 6.46 8.95) (end 6.46 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 009a4fb4-fcc0-4623-ae5d-c1bae3219583))
(fp_line (start 2.81 -1.33) (end 1.16 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 2dc54bac-8640-4dd7-b8ed-3c7acb01a8ea))
(fp_line (start 1.16 8.95) (end 6.46 8.95) (layer "F.SilkS") (width 0.12) (tstamp 609b9e1b-4e3b-42b7-ac76-a62ec4d0e7c7))
(fp_line (start 1.16 -1.33) (end 1.16 8.95) (layer "F.SilkS") (width 0.12) (tstamp 70fb572d-d5ec-41e7-9482-63d4578b4f47))
(fp_line (start -1.33 9.01) (end 8.95 9.01) (layer "F.SilkS") (width 0.12) (tstamp 7afa54c4-2181-41d3-81f7-39efc497ecae))
(fp_line (start 8.95 -1.39) (end -1.33 -1.39) (layer "F.SilkS") (width 0.12) (tstamp 91c1eb0a-67ae-4ef0-95ce-d060a03a7313))
(fp_line (start 6.46 -1.33) (end 4.81 -1.33) (layer "F.SilkS") (width 0.12) (tstamp cf386a39-fc62-49dd-8ec5-e044f6bd67ce))
(fp_line (start 8.95 9.01) (end 8.95 -1.39) (layer "F.SilkS") (width 0.12) (tstamp e54e5e19-1deb-49a9-8629-617db8e434c0))
(fp_line (start -1.33 -1.39) (end -1.33 9.01) (layer "F.SilkS") (width 0.12) (tstamp eae0ab9f-65b2-44d3-aba7-873c3227fba7))
(fp_arc (start 4.81 -1.33) (mid 3.81 -0.33) (end 2.81 -1.33) (layer "F.SilkS") (width 0.12) (tstamp b7867831-ef82-4f33-a926-59e5c1c09b91))
(fp_line (start -1.55 9.2) (end 9.15 9.2) (layer "F.CrtYd") (width 0.05) (tstamp 25e5aa8e-2696-44a3-8d3c-c2c53f2923cf))
(fp_line (start 9.15 -1.6) (end -1.55 -1.6) (layer "F.CrtYd") (width 0.05) (tstamp 6bf05d19-ba3e-4ba6-8a6f-4e0bc45ea3b2))
(fp_line (start 9.15 9.2) (end 9.15 -1.6) (layer "F.CrtYd") (width 0.05) (tstamp a24ddb4f-c217-42ca-b6cb-d12da84fb2b9))
(fp_line (start -1.55 -1.6) (end -1.55 9.2) (layer "F.CrtYd") (width 0.05) (tstamp a6ccc556-da88-4006-ae1a-cc35733efef3))
(fp_line (start 6.985 -1.27) (end 6.985 8.89) (layer "F.Fab") (width 0.1) (tstamp 065b9982-55f2-4822-977e-07e8a06e7b35))
(fp_line (start 1.635 -1.27) (end 6.985 -1.27) (layer "F.Fab") (width 0.1) (tstamp 5fc9acb6-6dbb-4598-825b-4b9e7c4c67c4))
(fp_line (start 8.89 8.95) (end 8.89 -1.33) (layer "F.Fab") (width 0.1) (tstamp 6d1d60ff-408a-47a7-892f-c5cf9ef6ca75))
(fp_line (start 8.89 -1.33) (end -1.27 -1.33) (layer "F.Fab") (width 0.1) (tstamp 970e0f64-111f-41e3-9f5a-fb0d0f6fa101))
(fp_line (start 0.635 -0.27) (end 1.635 -1.27) (layer "F.Fab") (width 0.1) (tstamp a53767ed-bb28-4f90-abe0-e0ea734812a4))
(fp_line (start 0.635 8.89) (end 0.635 -0.27) (layer "F.Fab") (width 0.1) (tstamp b6135480-ace6-42b2-9c47-856ef57cded1))
(fp_line (start -1.27 8.95) (end 8.89 8.95) (layer "F.Fab") (width 0.1) (tstamp dc2801a1-d539-4721-b31f-fe196b9f13df))
(fp_line (start -1.27 -1.33) (end -1.27 8.95) (layer "F.Fab") (width 0.1) (tstamp e4aa537c-eb9d-4dbb-ac87-fae46af42391))
(fp_line (start 6.985 8.89) (end 0.635 8.89) (layer "F.Fab") (width 0.1) (tstamp f9403623-c00c-4b71-bc5c-d763ff009386))
(pad "1" thru_hole rect (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 26 "unconnected-(U1-Pad1)") (pinfunction "NULL") (pintype "input+no_connect") (tstamp 9cbf35b8-f4d3-42a3-bb16-04ffd03fd8fd))
(pad "2" thru_hole oval (at 0 2.54) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 1 "Net-(C1-Pad1)") (pinfunction "-") (pintype "input") (tstamp 8bc2c25a-a1f1-4ce8-b96a-a4f8f4c35079))
(pad "3" thru_hole oval (at 0 5.08) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 21 "Net-(R1-Pad1)") (pinfunction "+") (pintype "input") (tstamp b1ddb058-f7b2-429c-9489-f4e2242ad7e5))
(pad "4" thru_hole oval (at 0 7.62) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 4 "/5V_N") (pinfunction "V-") (pintype "power_in") (tstamp eee16674-2d21-45b6-ab5e-d669125df26c))
(pad "5" thru_hole oval (at 7.62 7.62) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 27 "unconnected-(U1-Pad5)") (pinfunction "NULL") (pintype "input+no_connect") (tstamp f449bd37-cc90-4487-aee6-2a20b8d2843a))
(pad "6" thru_hole oval (at 7.62 5.08) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 22 "Net-(R2-Pad2)") (pintype "output") (tstamp c106154f-d948-43e5-abfa-e1b96055d91b))
(pad "7" thru_hole oval (at 7.62 2.54) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 3 "/5V_P") (pinfunction "V+") (pintype "power_in") (tstamp c24d6ac8-802d-4df3-a210-9cb1f693e865))
(pad "8" thru_hole oval (at 7.62 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 28 "unconnected-(U1-Pad8)") (pinfunction "NC") (pintype "no_connect") (tstamp 88668202-3f0b-4d07-84d4-dcd790f57272))
(model "${KICAD6_3DMODEL_DIR}/Package_DIP.3dshapes/DIP-8_W7.62mm_Socket.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_THT:R_Axial_DIN0411_L9.9mm_D3.6mm_P15.24mm_Horizontal" (layer "F.Cu")
(tedit 5AE5139B) (tstamp 60d26b83-9c3a-4edb-93ef-ab3d9d05e8cb)
(at -137 -59.38 90)
(descr "Resistor, Axial_DIN0411 series, Axial, Horizontal, pin pitch=15.24mm, 1W, length*diameter=9.9*3.6mm^2")
(tags "Resistor Axial_DIN0411 series Axial Horizontal pin pitch 15.24mm 1W length 9.9mm diameter 3.6mm")
(property "Sheetfile" "Nightly.kicad_sch")
(property "Sheetname" "")
(path "/12240ca0-53a0-42ba-b7be-10fdecef1d8f")
(attr through_hole)
(fp_text reference "R3" (at 7.62 -2.92 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c78d97f4-1d1b-46c3-bcbb-8424944a8978)
)
(fp_text value "100K" (at 7.62 2.92 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8e5a3783-142f-42f6-a215-d0f81a05c5c0)
)
(fp_text user "${REFERENCE}" (at 7.62 0 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6476e233-d260-45fe-84d2-9ade7d0003a0)
)
(fp_line (start 12.69 -1.92) (end 2.55 -1.92) (layer "F.SilkS") (width 0.12) (tstamp 8dcf40e6-09a5-42e4-8b46-f4738540468d))
(fp_line (start 2.55 -1.92) (end 2.55 1.92) (layer "F.SilkS") (width 0.12) (tstamp 90207e9d-650a-4c45-b7d5-e506cc85537d))
(fp_line (start 13.8 0) (end 12.69 0) (layer "F.SilkS") (width 0.12) (tstamp a29e1299-22c5-4fd2-9a37-e405785962a9))
(fp_line (start 12.69 1.92) (end 12.69 -1.92) (layer "F.SilkS") (width 0.12) (tstamp a8cdda0e-7b06-4b92-8078-341b4e32614a))
(fp_line (start 1.44 0) (end 2.55 0) (layer "F.SilkS") (width 0.12) (tstamp d6cc98ff-7d68-4734-afa1-c7dd225e08d3))
(fp_line (start 2.55 1.92) (end 12.69 1.92) (layer "F.SilkS") (width 0.12) (tstamp efd79052-e146-4d61-9e0a-ba764a5a966b))
(fp_line (start -1.45 -2.05) (end -1.45 2.05) (layer "F.CrtYd") (width 0.05) (tstamp 2792ed93-89db-4e51-99ff-281323e776eb))
(fp_line (start 16.69 -2.05) (end -1.45 -2.05) (layer "F.CrtYd") (width 0.05) (tstamp 4102ae0e-3d75-40cd-957b-0b4db5d3f5ee))
(fp_line (start -1.45 2.05) (end 16.69 2.05) (layer "F.CrtYd") (width 0.05) (tstamp 84315919-677c-4909-a747-2c92c96d5870))
(fp_line (start 16.69 2.05) (end 16.69 -2.05) (layer "F.CrtYd") (width 0.05) (tstamp cd8c6c53-febf-40c1-af77-5373add0fde7))
(fp_line (start 12.57 1.8) (end 12.57 -1.8) (layer "F.Fab") (width 0.1) (tstamp 04868f85-bc69-4fa9-8e62-d78ffe5ae58e))
(fp_line (start 12.57 -1.8) (end 2.67 -1.8) (layer "F.Fab") (width 0.1) (tstamp 335263d3-7e35-4a9c-83c2-cd71d45f0688))
(fp_line (start 0 0) (end 2.67 0) (layer "F.Fab") (width 0.1) (tstamp 33b48673-c959-4510-b6fa-fd3f7bdb00fd))
(fp_line (start 2.67 1.8) (end 12.57 1.8) (layer "F.Fab") (width 0.1) (tstamp 9a88d63d-f7e5-416d-9807-a8e942aef287))
(fp_line (start 2.67 -1.8) (end 2.67 1.8) (layer "F.Fab") (width 0.1) (tstamp a17368fb-646b-4ffd-9057-0994609f8a46))
(fp_line (start 15.24 0) (end 12.57 0) (layer "F.Fab") (width 0.1) (tstamp ad2d033c-4040-4813-b5da-82cf827f9d86))
(pad "1" thru_hole circle (at 0 0 90) (size 2.4 2.4) (drill 1.2) (layers *.Cu *.Mask)
(net 1 "Net-(C1-Pad1)") (pintype "passive") (tstamp bc408f2c-2338-4a2e-9d30-e90fd4d4f487))
(pad "2" thru_hole oval (at 15.24 0 90) (size 2.4 2.4) (drill 1.2) (layers *.Cu *.Mask)
(net 22 "Net-(R2-Pad2)") (pintype "passive") (tstamp fdd41a68-206a-4076-b64a-8b7633d428d6))
(model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0411_L9.9mm_D3.6mm_P15.24mm_Horizontal.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_THT:R_Axial_DIN0411_L9.9mm_D3.6mm_P15.24mm_Horizontal" (layer "F.Cu")
(tedit 5AE5139B) (tstamp 64256223-cf3b-4a78-97d3-f1dca769968f)
(at -50 -74 180)
(descr "Resistor, Axial_DIN0411 series, Axial, Horizontal, pin pitch=15.24mm, 1W, length*diameter=9.9*3.6mm^2")
(tags "Resistor Axial_DIN0411 series Axial Horizontal pin pitch 15.24mm 1W length 9.9mm diameter 3.6mm")
(property "Sheetfile" "Nightly.kicad_sch")
(property "Sheetname" "")
(path "/f5c7b8a5-d4be-45ba-9e01-7922fddfc91e")
(attr through_hole)
(fp_text reference "R15" (at 7.62 -2.92) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 636332c5-387a-4243-bc33-7882b1adfdac)
)
(fp_text value "3K3" (at 7.62 2.92) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp bf8bfbb4-4b7a-430e-865f-8acab9f8c04d)
)
(fp_text user "${REFERENCE}" (at 7.62 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a0affae9-b1e8-4941-9e7e-2ad29ff3f86b)
)
(fp_line (start 2.55 1.92) (end 12.69 1.92) (layer "F.SilkS") (width 0.12) (tstamp 33ef82c8-b659-42b6-9429-5436a00e7b54))
(fp_line (start 12.69 -1.92) (end 2.55 -1.92) (layer "F.SilkS") (width 0.12) (tstamp 755d3d18-6013-47c4-9133-c783ae2db259))
(fp_line (start 1.44 0) (end 2.55 0) (layer "F.SilkS") (width 0.12) (tstamp 77f65cef-2bce-414e-8b99-31f9cd0b59b0))
(fp_line (start 2.55 -1.92) (end 2.55 1.92) (layer "F.SilkS") (width 0.12) (tstamp aee35d5f-0638-4cb1-b58c-265232f425a0))
(fp_line (start 13.8 0) (end 12.69 0) (layer "F.SilkS") (width 0.12) (tstamp c837798c-83c8-4e02-b288-fa03714cab74))
(fp_line (start 12.69 1.92) (end 12.69 -1.92) (layer "F.SilkS") (width 0.12) (tstamp ffe6d5f3-f9a5-48a9-88db-d2d7822b944f))
(fp_line (start -1.45 -2.05) (end -1.45 2.05) (layer "F.CrtYd") (width 0.05) (tstamp 469553b1-52fa-4564-9359-73b74ba8f58f))
(fp_line (start 16.69 2.05) (end 16.69 -2.05) (layer "F.CrtYd") (width 0.05) (tstamp 8672a05d-b750-4ddd-a92d-4c58fddcdd4e))
(fp_line (start 16.69 -2.05) (end -1.45 -2.05) (layer "F.CrtYd") (width 0.05) (tstamp b64fe3cc-3a1f-41b6-9ac9-fa971c4a06a6))
(fp_line (start -1.45 2.05) (end 16.69 2.05) (layer "F.CrtYd") (width 0.05) (tstamp bfff8af5-be9c-44df-80bd-23ee2cf9c437))
(fp_line (start 12.57 -1.8) (end 2.67 -1.8) (layer "F.Fab") (width 0.1) (tstamp 18a9dea8-caa6-40a3-962a-7699d9146e17))
(fp_line (start 12.57 1.8) (end 12.57 -1.8) (layer "F.Fab") (width 0.1) (tstamp 2276e018-ceb6-4356-b3fe-3b8fe418011b))
(fp_line (start 15.24 0) (end 12.57 0) (layer "F.Fab") (width 0.1) (tstamp 73fd78b9-9aa5-40d0-adab-1e5886c90dd7))
(fp_line (start 2.67 1.8) (end 12.57 1.8) (layer "F.Fab") (width 0.1) (tstamp 90f1070b-d0d3-4d94-9527-f4c1c7006642))
(fp_line (start 0 0) (end 2.67 0) (layer "F.Fab") (width 0.1) (tstamp a95b6208-cd25-486f-8a35-f7d7b1426174))
(fp_line (start 2.67 -1.8) (end 2.67 1.8) (layer "F.Fab") (width 0.1) (tstamp e8531c3a-ab79-4096-b3fb-b5b6ae94c3f7))
(pad "1" thru_hole circle (at 0 0 180) (size 2.4 2.4) (drill 1.2) (layers *.Cu *.Mask)
(net 20 "Net-(D15-Pad2)") (pintype "passive") (tstamp b034f82f-3ce9-4423-89ad-7ecf03d348d0))
(pad "2" thru_hole oval (at 15.24 0 180) (size 2.4 2.4) (drill 1.2) (layers *.Cu *.Mask)
(net 2 "GND") (pintype "passive") (tstamp 22cb26b9-d501-4786-ab70-b7ac2868619c))
(model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0411_L9.9mm_D3.6mm_P15.24mm_Horizontal.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_THT:R_Axial_DIN0411_L9.9mm_D3.6mm_P15.24mm_Horizontal" (layer "F.Cu")
(tedit 5AE5139B) (tstamp 692d87e9-6b70-46cc-9c78-b75193a484cc)
(at -86.62 -29)
(descr "Resistor, Axial_DIN0411 series, Axial, Horizontal, pin pitch=15.24mm, 1W, length*diameter=9.9*3.6mm^2")
(tags "Resistor Axial_DIN0411 series Axial Horizontal pin pitch 15.24mm 1W length 9.9mm diameter 3.6mm")
(property "Sheetfile" "Nightly.kicad_sch")
(property "Sheetname" "")
(path "/f52ad663-1ff1-4925-a103-720e5c4838ea")
(attr through_hole)
(fp_text reference "R8" (at 7.62 -2.92) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 965bc598-5f52-4615-847f-179635cd5cde)
)
(fp_text value "3K9" (at 7.62 2.92) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 833beff7-0439-4b25-8f23-ed949f699ed1)
)
(fp_text user "${REFERENCE}" (at 7.62 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2f8dfa45-14b0-4de4-b3b0-e7b73da81a0a)
)
(fp_line (start 2.55 -1.92) (end 2.55 1.92) (layer "F.SilkS") (width 0.12) (tstamp 24fbbd33-4896-414c-ba79-167809dd0e90))
(fp_line (start 1.44 0) (end 2.55 0) (layer "F.SilkS") (width 0.12) (tstamp 2be498d5-e7b2-4098-b853-d60412f65c3b))
(fp_line (start 13.8 0) (end 12.69 0) (layer "F.SilkS") (width 0.12) (tstamp 84282cc7-416d-48c2-ae9f-c0149b35065e))
(fp_line (start 2.55 1.92) (end 12.69 1.92) (layer "F.SilkS") (width 0.12) (tstamp a281de60-7af0-498c-be0b-24572e88b490))
(fp_line (start 12.69 1.92) (end 12.69 -1.92) (layer "F.SilkS") (width 0.12) (tstamp c2f8c49f-d49f-49e2-940a-a7b9765ffdf0))
(fp_line (start 12.69 -1.92) (end 2.55 -1.92) (layer "F.SilkS") (width 0.12) (tstamp eb79b938-dc23-4503-beb0-3634b653c9e4))
(fp_line (start -1.45 2.05) (end 16.69 2.05) (layer "F.CrtYd") (width 0.05) (tstamp 1b8d5810-67b5-41f5-a4e9-e6c2cc9fec50))
(fp_line (start -1.45 -2.05) (end -1.45 2.05) (layer "F.CrtYd") (width 0.05) (tstamp 504b138d-cda6-48ea-a44b-2c0d0cf874fc))
(fp_line (start 16.69 2.05) (end 16.69 -2.05) (layer "F.CrtYd") (width 0.05) (tstamp c9dc1467-f8a9-424e-ab40-9eace7cb7fbb))
(fp_line (start 16.69 -2.05) (end -1.45 -2.05) (layer "F.CrtYd") (width 0.05) (tstamp d90db84e-7df3-4d1b-b263-27f7c3991121))