-
Notifications
You must be signed in to change notification settings - Fork 0
/
supercar.kicad_pcb
11192 lines (11144 loc) · 533 KB
/
supercar.kicad_pcb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
(kicad_pcb (version 20221018) (generator pcbnew)
(general
(thickness 1.6)
)
(paper "A4")
(layers
(0 "F.Cu" signal)
(31 "B.Cu" signal)
(32 "B.Adhes" user "B.Adhesive")
(33 "F.Adhes" user "F.Adhesive")
(34 "B.Paste" user)
(35 "F.Paste" user)
(36 "B.SilkS" user "B.Silkscreen")
(37 "F.SilkS" user "F.Silkscreen")
(38 "B.Mask" user)
(39 "F.Mask" user)
(40 "Dwgs.User" user "User.Drawings")
(41 "Cmts.User" user "User.Comments")
(42 "Eco1.User" user "User.Eco1")
(43 "Eco2.User" user "User.Eco2")
(44 "Edge.Cuts" user)
(45 "Margin" user)
(46 "B.CrtYd" user "B.Courtyard")
(47 "F.CrtYd" user "F.Courtyard")
(48 "B.Fab" user)
(49 "F.Fab" user)
(50 "User.1" user)
(51 "User.2" user)
(52 "User.3" user)
(53 "User.4" user)
(54 "User.5" user)
(55 "User.6" user)
(56 "User.7" user)
(57 "User.8" user)
(58 "User.9" user)
)
(setup
(pad_to_mask_clearance 0)
(pcbplotparams
(layerselection 0x00010fc_ffffffff)
(plot_on_all_layers_selection 0x0000000_00000000)
(disableapertmacros false)
(usegerberextensions false)
(usegerberattributes true)
(usegerberadvancedattributes true)
(creategerberjobfile true)
(dashed_line_dash_ratio 12.000000)
(dashed_line_gap_ratio 3.000000)
(svgprecision 4)
(plotframeref false)
(viasonmask false)
(mode 1)
(useauxorigin false)
(hpglpennumber 1)
(hpglpenspeed 20)
(hpglpendiameter 15.000000)
(dxfpolygonmode true)
(dxfimperialunits true)
(dxfusepcbnewfont true)
(psnegative false)
(psa4output false)
(plotreference true)
(plotvalue true)
(plotinvisibletext false)
(sketchpadsonfab false)
(subtractmaskfromsilk false)
(outputformat 1)
(mirror false)
(drillshape 0)
(scaleselection 1)
(outputdirectory "gerbers/")
)
)
(net 0 "")
(net 1 "Net-(BT1-+)")
(net 2 "GND")
(net 3 "Net-(U6-CV)")
(net 4 "Net-(U6-THR)")
(net 5 "+3V3")
(net 6 "/LAST_BIT")
(net 7 "Net-(D1-A)")
(net 8 "Net-(D2-K)")
(net 9 "Net-(D3-K)")
(net 10 "Net-(D4-K)")
(net 11 "Net-(D5-K)")
(net 12 "Net-(D6-K)")
(net 13 "Net-(D7-K)")
(net 14 "Net-(D8-K)")
(net 15 "Net-(D9-K)")
(net 16 "Net-(D10-K)")
(net 17 "Net-(D11-K)")
(net 18 "Net-(D12-K)")
(net 19 "Net-(D13-K)")
(net 20 "Net-(D14-K)")
(net 21 "Net-(D15-K)")
(net 22 "/FIRST_BIT")
(net 23 "Net-(R17-Pad2)")
(net 24 "Net-(U6-DIS)")
(net 25 "unconnected-(RV1-Pad3)")
(net 26 "Net-(U1-S2)")
(net 27 "/~{RST}")
(net 28 "Net-(U1-A2)")
(net 29 "Net-(U1-S1)")
(net 30 "Net-(U1-A1)")
(net 31 "unconnected-(U1-C4-Pad9)")
(net 32 "Net-(U1-S4)")
(net 33 "Net-(U1-A4)")
(net 34 "Net-(U1-S3)")
(net 35 "Net-(U1-A3)")
(net 36 "/CLK")
(net 37 "unconnected-(U2-Q7-Pad12)")
(net 38 "unconnected-(U2-Q6-Pad13)")
(net 39 "unconnected-(U2-Q5-Pad14)")
(net 40 "unconnected-(U2-Q4-Pad15)")
(net 41 "Net-(U4-Cp)")
(net 42 "unconnected-(U4-Q7-Pad12)")
(net 43 "unconnected-(U4-Q6-Pad13)")
(net 44 "unconnected-(U4-Q5-Pad14)")
(net 45 "unconnected-(U4-Q4-Pad15)")
(net 46 "Net-(U5-Pad10)")
(net 47 "Net-(U5-Pad13)")
(net 48 "/RST")
(net 49 "Net-(RN1-R4.2)")
(net 50 "Net-(RN1-R3.2)")
(net 51 "Net-(RN1-R2.2)")
(net 52 "Net-(RN1-R1.2)")
(net 53 "unconnected-(SW1-C-Pad3)")
(footprint "LED_SMD:LED_1206_3216Metric_Pad1.42x1.75mm_HandSolder" (layer "F.Cu")
(tstamp 01df3965-8af1-4142-8c63-9c2f6662f6d6)
(at 113.8122 47.778 90)
(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" "supercar.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Light emitting diode")
(property "ki_keywords" "LED diode")
(path "/fe10e655-012d-4b2f-ad7c-d395066b60c6")
(attr smd)
(fp_text reference "D10" (at 0 -1.82 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 50f2a5d6-acf6-4b53-9cf0-42a1355e7e7c)
)
(fp_text value "LED" (at 0 1.82 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e3d8461b-74fa-48ac-8c7c-d2b0932971ff)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.12)))
(tstamp a39740b3-70f6-41c3-822e-944449873584)
)
(fp_line (start -2.46 -1.135) (end -2.46 1.135)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2ab867a4-d027-4420-be81-e969b86a87a4))
(fp_line (start -2.46 1.135) (end 1.6 1.135)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a538db37-d23c-4c50-aad2-a4b2c0eb28f3))
(fp_line (start 1.6 -1.135) (end -2.46 -1.135)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2e17d949-c42f-4c71-b5db-914955611556))
(fp_line (start -2.45 -1.12) (end 2.45 -1.12)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 228d711f-a091-4155-b836-93699bce19b0))
(fp_line (start -2.45 1.12) (end -2.45 -1.12)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 580db6ff-71cd-4b32-9c17-98f705c848e2))
(fp_line (start 2.45 -1.12) (end 2.45 1.12)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 53607929-a579-46f9-81dc-7844db642e36))
(fp_line (start 2.45 1.12) (end -2.45 1.12)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ac0ff323-159d-417e-b9a5-3c60fb2e0735))
(fp_line (start -1.6 -0.4) (end -1.6 0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 730dc5f8-2664-4301-98eb-0007c8e11485))
(fp_line (start -1.6 0.8) (end 1.6 0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b56a8d82-1baa-4e6d-bd56-0d95afcae7b6))
(fp_line (start -1.2 -0.8) (end -1.6 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e90188ef-d8e4-40af-b3be-22e0f48a18e0))
(fp_line (start 1.6 -0.8) (end -1.2 -0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 961b732f-1a91-4d78-bed8-0ed2c55027c4))
(fp_line (start 1.6 0.8) (end 1.6 -0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9fac0043-2f98-459d-b90c-a02aa9cfd531))
(pad "1" smd roundrect (at -1.4875 0 90) (size 1.425 1.75) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1754392982)
(net 16 "Net-(D10-K)") (pinfunction "K") (pintype "passive") (tstamp 003f138a-f734-4b34-845c-b4e3ef776253))
(pad "2" smd roundrect (at 1.4875 0 90) (size 1.425 1.75) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1754392982)
(net 7 "Net-(D1-A)") (pinfunction "A") (pintype "passive") (tstamp 27cc0e3c-9653-492a-b6d0-9019361ebb5e))
(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 "LED_SMD:LED_1206_3216Metric_Pad1.42x1.75mm_HandSolder" (layer "F.Cu")
(tstamp 04c9bc76-a29e-44df-8629-752bc3c78e3b)
(at 91.3621 47.778 90)
(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" "supercar.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Light emitting diode")
(property "ki_keywords" "LED diode")
(path "/5d1bbe6d-f024-4dd8-b7fb-7c2f6a5426df")
(attr smd)
(fp_text reference "D4" (at 0 -1.82 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7c3acd08-e03c-475b-ab42-f3099c17dc72)
)
(fp_text value "LED" (at 0 1.82 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp bef73422-d528-40f5-b4a2-2d056c25732e)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.12)))
(tstamp e7dc9b01-9689-4aca-934e-ab8ec96e5e9a)
)
(fp_line (start -2.46 -1.135) (end -2.46 1.135)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f05a5a6a-1851-419d-b780-3815ccb516cc))
(fp_line (start -2.46 1.135) (end 1.6 1.135)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8a71718e-86ef-4144-928a-fd75ca930082))
(fp_line (start 1.6 -1.135) (end -2.46 -1.135)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 48b3af09-e194-4499-aed7-0f9d64690057))
(fp_line (start -2.45 -1.12) (end 2.45 -1.12)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e7e818c2-84aa-4bdd-8e2d-6a7c8b6b061c))
(fp_line (start -2.45 1.12) (end -2.45 -1.12)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 79d9b2de-485e-47b2-b956-0e349619ded8))
(fp_line (start 2.45 -1.12) (end 2.45 1.12)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 9a6781c6-0c6d-4343-b786-b528d8fe062d))
(fp_line (start 2.45 1.12) (end -2.45 1.12)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 2deeb697-75e9-46bd-a806-ed3574a941e2))
(fp_line (start -1.6 -0.4) (end -1.6 0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ee0479a0-3852-47c6-90c8-2d80b12c2f75))
(fp_line (start -1.6 0.8) (end 1.6 0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 6d12c9da-7eff-4b6f-831b-4fea689e6d1f))
(fp_line (start -1.2 -0.8) (end -1.6 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 950ab6b9-1999-47ee-867c-c6dfc1bc1ba6))
(fp_line (start 1.6 -0.8) (end -1.2 -0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b4e35e9d-14a9-4230-bea4-1b20d0227fc1))
(fp_line (start 1.6 0.8) (end 1.6 -0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d2d80c91-6b79-432b-9312-5b2b26d313f5))
(pad "1" smd roundrect (at -1.4875 0 90) (size 1.425 1.75) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1754392982)
(net 10 "Net-(D4-K)") (pinfunction "K") (pintype "passive") (tstamp 8a0c6bff-6f92-4101-b119-bbe9ca7e5db5))
(pad "2" smd roundrect (at 1.4875 0 90) (size 1.425 1.75) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1754392982)
(net 7 "Net-(D1-A)") (pinfunction "A") (pintype "passive") (tstamp ca9cec09-420b-45dd-9cfd-746d688cb17e))
(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 "Package_SO:SOIC-20W_7.5x12.8mm_P1.27mm" (layer "F.Cu")
(tstamp 0a1ac1de-397e-45c7-a7bc-8e3dd0fd4784)
(at 101.722 57.785 -90)
(descr "SOIC, 20 Pin (JEDEC MS-013AC, https://www.analog.com/media/en/package-pcb-resources/package/233848rw_20.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py")
(tags "SOIC SO")
(property "Sheetfile" "supercar.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "8-bit Register, 3-state outputs")
(property "ki_keywords" "TTL REG DFF DFF8 3State")
(path "/b32d7162-7323-4408-8428-aecea1c5cb97")
(attr smd)
(fp_text reference "U2" (at -4.699 -7.752 -180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4e2823a9-3e4a-4a6b-b57b-946203ac6081)
)
(fp_text value "74HC574" (at 0 0) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp abe3c56b-65d7-4a76-b9d6-ac52963842bd)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b5d2971b-47c5-4120-b81f-9bca5b620a3c)
)
(fp_line (start -3.86 -6.51) (end -3.86 -6.275)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 457a971c-07ef-4edf-9864-41b42bc12b1e))
(fp_line (start -3.86 -6.275) (end -5.675 -6.275)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8ddcb4da-ebaa-4be1-a162-0dc4e4c46acb))
(fp_line (start -3.86 6.51) (end -3.86 6.275)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7373e030-62ce-4223-ad0b-aef02fadddd0))
(fp_line (start 0 -6.51) (end -3.86 -6.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 463e1ec1-020a-4761-bbca-ac70694aa3d9))
(fp_line (start 0 -6.51) (end 3.86 -6.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 29025219-7193-45df-a806-3a3b382a6ee5))
(fp_line (start 0 6.51) (end -3.86 6.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9ca82cef-631d-4602-8527-a93fe2b633d5))
(fp_line (start 0 6.51) (end 3.86 6.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 50ceaff3-b713-4f23-96ce-87055eb86ca7))
(fp_line (start 3.86 -6.51) (end 3.86 -6.275)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c2cd2cf2-56ab-42b3-94e9-21a28075dce8))
(fp_line (start 3.86 6.51) (end 3.86 6.275)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a8d64726-9de5-483b-8d79-81c2416ddd36))
(fp_line (start -5.93 -6.65) (end -5.93 6.65)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e0731937-c56e-45b8-89aa-d6b75fcf06cd))
(fp_line (start -5.93 6.65) (end 5.93 6.65)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp fdffdb56-2a32-4c39-ac31-74cbb6a987b2))
(fp_line (start 5.93 -6.65) (end -5.93 -6.65)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 024bc0ae-8064-42a1-aa90-2fde9d6ca041))
(fp_line (start 5.93 6.65) (end 5.93 -6.65)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 2d5cf517-ba37-4727-94c8-ca7f88b8a7c9))
(fp_line (start -3.75 -5.4) (end -2.75 -6.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 203ede41-8d94-4d7e-bc47-a14a3784f864))
(fp_line (start -3.75 6.4) (end -3.75 -5.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 09c6d005-c1db-4d83-96ed-a5a588c63a2a))
(fp_line (start -2.75 -6.4) (end 3.75 -6.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f5b9f277-84b4-40d1-b432-3cebe32c5ec9))
(fp_line (start 3.75 -6.4) (end 3.75 6.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 91372a6b-6d3f-4045-8320-3c5c46e7fbde))
(fp_line (start 3.75 6.4) (end -3.75 6.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp feaef296-36b3-43ba-b300-df69da19b1af))
(pad "1" smd roundrect (at -4.65 -5.715 270) (size 2.05 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pinfunction "OE") (pintype "input") (tstamp 28888e11-4b6e-4363-b539-33b2950835da))
(pad "2" smd roundrect (at -4.65 -4.445 270) (size 2.05 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 29 "Net-(U1-S1)") (pinfunction "D0") (pintype "input") (tstamp 8e518bc6-6b5f-4ba1-8838-04b0adafc592))
(pad "3" smd roundrect (at -4.65 -3.175 270) (size 2.05 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 26 "Net-(U1-S2)") (pinfunction "D1") (pintype "input") (tstamp 3496d379-94d3-4b7f-8cc1-ef372ee02424))
(pad "4" smd roundrect (at -4.65 -1.905 270) (size 2.05 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 34 "Net-(U1-S3)") (pinfunction "D2") (pintype "input") (tstamp fa683eb0-5202-4f6e-8a51-3a2ab67d0c89))
(pad "5" smd roundrect (at -4.65 -0.635 270) (size 2.05 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 32 "Net-(U1-S4)") (pinfunction "D3") (pintype "input") (tstamp 2ad6269a-c48a-4382-8c4f-9dfaf874bf44))
(pad "6" smd roundrect (at -4.65 0.635 270) (size 2.05 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pinfunction "D4") (pintype "input") (tstamp 998e3fc8-23b0-46e3-95df-cd5b8b7a6341))
(pad "7" smd roundrect (at -4.65 1.905 270) (size 2.05 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pinfunction "D5") (pintype "input") (tstamp 89d6214f-6121-4b93-a4e3-e5d734b1845a))
(pad "8" smd roundrect (at -4.65 3.175 270) (size 2.05 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pinfunction "D6") (pintype "input") (tstamp c59d6e68-b780-45e8-bd47-59558214b6e2))
(pad "9" smd roundrect (at -4.65 4.445 270) (size 2.05 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pinfunction "D7") (pintype "input") (tstamp 653a0b3d-222d-4520-97ec-65e17c34f90c))
(pad "10" smd roundrect (at -4.65 5.715 270) (size 2.05 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 5b8c8e9f-68ed-4875-8abb-eb849f01b797))
(pad "11" smd roundrect (at 4.65 5.715 270) (size 2.05 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 36 "/CLK") (pinfunction "Cp") (pintype "input") (tstamp 6a28f727-a00f-45ca-b0e6-8267c5908e51))
(pad "12" smd roundrect (at 4.65 4.445 270) (size 2.05 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 37 "unconnected-(U2-Q7-Pad12)") (pinfunction "Q7") (pintype "tri_state+no_connect") (tstamp d7bd7229-945f-419b-bf38-349f33a0b770))
(pad "13" smd roundrect (at 4.65 3.175 270) (size 2.05 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 38 "unconnected-(U2-Q6-Pad13)") (pinfunction "Q6") (pintype "tri_state+no_connect") (tstamp 60efcdd3-f285-4294-a972-328d170eb859))
(pad "14" smd roundrect (at 4.65 1.905 270) (size 2.05 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 39 "unconnected-(U2-Q5-Pad14)") (pinfunction "Q5") (pintype "tri_state+no_connect") (tstamp 7cfaf3a9-c979-404a-a748-4f0d52915365))
(pad "15" smd roundrect (at 4.65 0.635 270) (size 2.05 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 40 "unconnected-(U2-Q4-Pad15)") (pinfunction "Q4") (pintype "tri_state+no_connect") (tstamp 851bf972-7a19-4385-a98a-16da8ba2113e))
(pad "16" smd roundrect (at 4.65 -0.635 270) (size 2.05 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 33 "Net-(U1-A4)") (pinfunction "Q3") (pintype "tri_state") (tstamp 095b4df4-c10a-47e6-bda8-e76c7c9bde1d))
(pad "17" smd roundrect (at 4.65 -1.905 270) (size 2.05 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 35 "Net-(U1-A3)") (pinfunction "Q2") (pintype "tri_state") (tstamp 172940b5-cee9-437b-9ad8-3d2bb5a32132))
(pad "18" smd roundrect (at 4.65 -3.175 270) (size 2.05 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 28 "Net-(U1-A2)") (pinfunction "Q1") (pintype "tri_state") (tstamp 66b78e4b-68f1-4b90-9448-455b6b90546e))
(pad "19" smd roundrect (at 4.65 -4.445 270) (size 2.05 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 30 "Net-(U1-A1)") (pinfunction "Q0") (pintype "tri_state") (tstamp d04dd128-2fca-4d44-b4ec-faf05e0a4636))
(pad "20" smd roundrect (at 4.65 -5.715 270) (size 2.05 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 5 "+3V3") (pinfunction "VCC") (pintype "power_in") (tstamp 05fc75ae-7e6f-4777-b947-158a809fb151))
(model "${KICAD6_3DMODEL_DIR}/Package_SO.3dshapes/SOIC-20W_7.5x12.8mm_P1.27mm.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 12bb66d4-1ee2-4ec5-a7f3-bf9d7d41ea42)
(at 80.137 47.778 90)
(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" "supercar.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Light emitting diode")
(property "ki_keywords" "LED diode")
(path "/53af4af4-df72-4437-857f-a376689ccbab")
(attr smd)
(fp_text reference "D1" (at -3.53 -0.127 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 867ecbff-5f0a-4bf0-ac87-58646c900e01)
)
(fp_text value "LED" (at 0 1.82 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 312a5b65-8559-4d9a-9dae-f0a62e91b4a9)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.12)))
(tstamp 6c485b79-485d-4bc3-8b49-1e4d3b8cce40)
)
(fp_line (start -2.46 -1.135) (end -2.46 1.135)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b86c2d0d-b670-462f-aca8-1618304e4aa5))
(fp_line (start -2.46 1.135) (end 1.6 1.135)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 85619f02-5e52-4d0a-bf89-fbecd3f6a535))
(fp_line (start 1.6 -1.135) (end -2.46 -1.135)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 99db29cc-cc61-4375-ac36-53d1c892c313))
(fp_line (start -2.45 -1.12) (end 2.45 -1.12)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp df4cd123-1796-4fbe-ad3e-da34eb20135c))
(fp_line (start -2.45 1.12) (end -2.45 -1.12)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 7687fc8c-fea2-4c5a-a1a8-535ae65c6f70))
(fp_line (start 2.45 -1.12) (end 2.45 1.12)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 33a276f8-6b81-4128-8d8a-05fa530e7d69))
(fp_line (start 2.45 1.12) (end -2.45 1.12)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 9aabd6d6-3855-4e15-a258-c5921be99dea))
(fp_line (start -1.6 -0.4) (end -1.6 0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a5726233-4da2-485c-99be-5b386dcbf108))
(fp_line (start -1.6 0.8) (end 1.6 0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e03f6bd9-6e03-4e9f-984f-b89c7a97c081))
(fp_line (start -1.2 -0.8) (end -1.6 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 90348a2e-176a-4321-9262-fbe53aa1ff4b))
(fp_line (start 1.6 -0.8) (end -1.2 -0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 04b34afa-884d-4b44-83ba-0a5173aca85b))
(fp_line (start 1.6 0.8) (end 1.6 -0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2156937c-af71-4738-bb6b-d25f62bdd23f))
(pad "1" smd roundrect (at -1.4875 0 90) (size 1.425 1.75) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1754392982)
(net 6 "/LAST_BIT") (pinfunction "K") (pintype "passive") (tstamp cfa59184-b741-4db1-ac1d-635bf92f84eb))
(pad "2" smd roundrect (at 1.4875 0 90) (size 1.425 1.75) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1754392982)
(net 7 "Net-(D1-A)") (pinfunction "A") (pintype "passive") (tstamp 07e13103-7706-4b7d-b254-4f47d1ad1e0c))
(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 "Capacitor_SMD:C_1206_3216Metric_Pad1.33x1.80mm_HandSolder" (layer "F.Cu")
(tstamp 1acc3b85-3ac2-4eac-ad5b-38b5a317db2f)
(at 92.075 81.915 -90)
(descr "Capacitor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "capacitor handsolder")
(property "Sheetfile" "supercar.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Unpolarized capacitor, small symbol")
(property "ki_keywords" "capacitor cap")
(path "/68f612fe-c7c1-48e4-bf6a-fdb3141f0a15")
(attr smd)
(fp_text reference "C2" (at 3.5175 0 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 147afdbe-f4b8-4260-8d96-747ae9075e99)
)
(fp_text value "10uF" (at -3.175 0.635) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 091e0f9d-146a-4f65-af12-7de5c2f88794)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.12)))
(tstamp 30ccc0b4-c957-45d4-8e3f-7997c42a3178)
)
(fp_line (start -0.711252 -0.91) (end 0.711252 -0.91)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 879083dc-6e2b-465c-8219-c5b96355acee))
(fp_line (start -0.711252 0.91) (end 0.711252 0.91)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c09b9ebe-78e6-4192-8fcc-839dcd25a6a9))
(fp_line (start -2.48 -1.15) (end 2.48 -1.15)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 761cc8f3-682c-4dd6-8d9d-779b395a4cc9))
(fp_line (start -2.48 1.15) (end -2.48 -1.15)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 8ad80c2f-1b43-4195-9ecf-0c4077d9ba51))
(fp_line (start 2.48 -1.15) (end 2.48 1.15)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 907ee3fb-8ee9-4131-99c8-e499b527647c))
(fp_line (start 2.48 1.15) (end -2.48 1.15)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 3d83f5a2-97a7-448f-9f99-23004c4e11a1))
(fp_line (start -1.6 -0.8) (end 1.6 -0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b7676b33-3306-4c34-9c7b-277bfbb9f2ad))
(fp_line (start -1.6 0.8) (end -1.6 -0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 45dadcf5-85ca-418a-834a-c23362050395))
(fp_line (start 1.6 -0.8) (end 1.6 0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 1c149797-f9b7-4189-9a80-f77491d0fec8))
(fp_line (start 1.6 0.8) (end -1.6 0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp cd9d24fa-ef13-4650-995a-7c720878200b))
(pad "1" smd roundrect (at -1.5625 0 270) (size 1.325 1.8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1886792453)
(net 2 "GND") (pintype "passive") (tstamp aa6013b7-8573-49a9-8494-415203d92fb9))
(pad "2" smd roundrect (at 1.5625 0 270) (size 1.325 1.8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1886792453)
(net 4 "Net-(U6-THR)") (pintype "passive") (tstamp 20f8f8a6-c23b-4452-af2d-88807cf808a4))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_1206_3216Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Package_SO:SOIC-16_3.9x9.9mm_P1.27mm" (layer "F.Cu")
(tstamp 1d89a3f6-0f7d-4097-9035-829cb8c3d990)
(at 86.36 55.61 -90)
(descr "SOIC, 16 Pin (JEDEC MS-012AC, https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/soic_narrow-r/r_16.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py")
(tags "SOIC SO")
(property "Sheetfile" "supercar.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "4-bit full Adder")
(property "ki_keywords" "TTL ADD Arith ALU")
(path "/284c4608-4aca-482d-8d5a-2dc644ac2ff5")
(attr smd)
(fp_text reference "U1" (at -3.54 -6.604 -180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ffd0ca2c-2b84-44d2-b98b-c40a1b473ee6)
)
(fp_text value "74HC283" (at 0 0) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f0d5bdc8-a370-4ab1-bc63-6749fc791d08)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.98 0.98) (thickness 0.15)))
(tstamp b0813326-39e8-48af-bdf2-96ec88b536eb)
)
(fp_line (start 0 -5.06) (end -3.45 -5.06)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c6d7490b-3ae7-4d97-8428-2b6004659d1d))
(fp_line (start 0 -5.06) (end 1.95 -5.06)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 068b784e-9e2d-4de0-a2ee-ef98333d1d21))
(fp_line (start 0 5.06) (end -1.95 5.06)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 99b88258-a270-4614-805f-97f885c18b88))
(fp_line (start 0 5.06) (end 1.95 5.06)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 850d8447-5a76-4225-a507-4b9d20e38c3d))
(fp_line (start -3.7 -5.2) (end -3.7 5.2)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 03a84d83-2531-48f8-b232-a8a48b0dd091))
(fp_line (start -3.7 5.2) (end 3.7 5.2)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b5b621ea-5bae-4b6d-bba4-e9e6cdf3ebe3))
(fp_line (start 3.7 -5.2) (end -3.7 -5.2)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 6d5802f1-7287-441d-b2fa-8e5252d6bcd3))
(fp_line (start 3.7 5.2) (end 3.7 -5.2)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp bc010187-09f8-4b14-84b6-881f40c0f480))
(fp_line (start -1.95 -3.975) (end -0.975 -4.95)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0ecf7267-8379-4f3e-b6a3-ac64e5fd4522))
(fp_line (start -1.95 4.95) (end -1.95 -3.975)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp acf33c81-7711-464e-a6d9-04819acad7c2))
(fp_line (start -0.975 -4.95) (end 1.95 -4.95)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 5a3488f0-b785-4815-8f46-f99ccbe702f1))
(fp_line (start 1.95 -4.95) (end 1.95 4.95)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 83c062ce-c3f7-49fe-a5e8-5db4249065d6))
(fp_line (start 1.95 4.95) (end -1.95 4.95)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f49ec114-2abc-4cf5-81ed-04eafefae31d))
(pad "1" smd roundrect (at -2.475 -4.445 270) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 26 "Net-(U1-S2)") (pinfunction "S2") (pintype "output") (tstamp c1876800-1c36-46a9-adac-d6b805a4a3a1))
(pad "2" smd roundrect (at -2.475 -3.175 270) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 50 "Net-(RN1-R3.2)") (pinfunction "B2") (pintype "input") (tstamp 3250c4dd-b959-4f5b-9a13-aa2feba38edc))
(pad "3" smd roundrect (at -2.475 -1.905 270) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 28 "Net-(U1-A2)") (pinfunction "A2") (pintype "input") (tstamp c6d78240-576c-4c5d-8fe3-b8dfdc74f688))
(pad "4" smd roundrect (at -2.475 -0.635 270) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 29 "Net-(U1-S1)") (pinfunction "S1") (pintype "output") (tstamp 207887c7-f7cf-49ff-9ba2-c1eebf7a0b01))
(pad "5" smd roundrect (at -2.475 0.635 270) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 30 "Net-(U1-A1)") (pinfunction "A1") (pintype "input") (tstamp 04a6095a-c5aa-4322-b9f6-e47c59046345))
(pad "6" smd roundrect (at -2.475 1.905 270) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 49 "Net-(RN1-R4.2)") (pinfunction "B1") (pintype "input") (tstamp ce282565-91d2-41a4-98d3-05675ef313f9))
(pad "7" smd roundrect (at -2.475 3.175 270) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pinfunction "C0") (pintype "input") (tstamp 327c9986-c16f-41b0-a642-c4392d409d00))
(pad "8" smd roundrect (at -2.475 4.445 270) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 3117bf0e-3ba5-4d10-88af-1079fd559f62))
(pad "9" smd roundrect (at 2.475 4.445 270) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 31 "unconnected-(U1-C4-Pad9)") (pinfunction "C4") (pintype "output+no_connect") (tstamp edc4cdf8-e6e7-4bf8-b775-1622b5e58a41))
(pad "10" smd roundrect (at 2.475 3.175 270) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 32 "Net-(U1-S4)") (pinfunction "S4") (pintype "output") (tstamp 0bf7e516-cba3-42bc-8704-97aad9ea045d))
(pad "11" smd roundrect (at 2.475 1.905 270) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 52 "Net-(RN1-R1.2)") (pinfunction "B4") (pintype "input") (tstamp 74b3360d-1614-4e7d-8343-4d6a7d52e7c9))
(pad "12" smd roundrect (at 2.475 0.635 270) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 33 "Net-(U1-A4)") (pinfunction "A4") (pintype "input") (tstamp 48db2fa3-e3aa-4963-ad15-1f058ef73ac4))
(pad "13" smd roundrect (at 2.475 -0.635 270) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 34 "Net-(U1-S3)") (pinfunction "S3") (pintype "output") (tstamp c073478a-0b42-492c-831b-dfe22a98cbf1))
(pad "14" smd roundrect (at 2.475 -1.905 270) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 35 "Net-(U1-A3)") (pinfunction "A3") (pintype "input") (tstamp f1310e46-4205-4d73-8d3a-2d5ce6f73eaa))
(pad "15" smd roundrect (at 2.475 -3.175 270) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 51 "Net-(RN1-R2.2)") (pinfunction "B3") (pintype "input") (tstamp 472f1af9-3125-4c14-a230-3e05ee37b1a1))
(pad "16" smd roundrect (at 2.475 -4.445 270) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 5 "+3V3") (pinfunction "VCC") (pintype "power_in") (tstamp fee71ffe-345e-4a35-8c55-2afe67d728be))
(model "${KICAD6_3DMODEL_DIR}/Package_SO.3dshapes/SOIC-16_3.9x9.9mm_P1.27mm.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Potentiometer_SMD:Potentiometer_Bourns_3314G_Vertical" (layer "F.Cu")
(tstamp 1f9799fa-a5a3-40c0-aa1d-45873674179e)
(at 82.67 83.395)
(descr "Potentiometer, vertical, top-adjust, Bourns 3314G, http://www.bourns.com/docs/Product-Datasheets/3314.pdf")
(tags "Potentiometer vertical Bourns 3314G")
(property "Sheetfile" "supercar.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Potentiometer")
(property "ki_keywords" "resistor variable")
(path "/ada0729f-20ac-46e3-b090-b7e8dcaf642c")
(attr smd)
(fp_text reference "RV1" (at 0 -4.65) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0c6224ac-a8ee-4bc1-9d71-d1d86b61074e)
)
(fp_text value "47K" (at 0 0.065) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8a64fac7-2206-4661-b89c-4621a0cdae70)
)
(fp_text user "${REFERENCE}" (at 0 -1.7) (layer "F.Fab")
(effects (font (size 0.63 0.63) (thickness 0.15)))
(tstamp af4ce7c3-c06d-4dff-88d0-66038c82c845)
)
(fp_line (start -2.37 -2.37) (end -2.37 2.37)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 176525de-0127-490e-8bb6-104b0d57fd89))
(fp_line (start -2.37 -2.37) (end -2.06 -2.37)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b44f5f55-6dd1-4a1f-bce7-5c79413c05f0))
(fp_line (start -2.37 2.37) (end -1.26 2.37)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b68cbb89-7d5a-4406-ac3d-3a6c28216eb0))
(fp_line (start -0.24 -2.37) (end 0.24 -2.37)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 21090336-88f5-49d4-917b-5f6e9ed806da))
(fp_line (start 1.26 2.37) (end 2.37 2.37)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 022c7870-f563-4247-b78a-c507dda951ae))
(fp_line (start 2.06 -2.37) (end 2.37 -2.37)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c0c365fe-94d8-4cf2-a08e-395eaf4bd6b9))
(fp_line (start 2.37 -2.37) (end 2.37 2.37)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1daeddd8-4ecb-48cd-88b7-6d448f35b453))
(fp_line (start -2.5 -3.65) (end -2.5 3.65)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 9f64b623-741f-4364-8e42-ce0831f46084))
(fp_line (start -2.5 3.65) (end 2.5 3.65)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ecaf039c-a29d-4d6a-9d7f-88ebeafc97e0))
(fp_line (start 2.5 -3.65) (end -2.5 -3.65)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b86795b2-fc79-45a0-8820-7ab3d5359b13))
(fp_line (start 2.5 3.65) (end 2.5 -3.65)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp fba6cf12-d08f-468d-b77b-d02baf6f936a))
(fp_line (start -2.25 -2.25) (end -2.25 2.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 423ea9c2-e137-4ce7-876c-f76f9cee9adf))
(fp_line (start -2.25 2.25) (end 2.25 2.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9e80cb14-02d2-4aed-bd72-a4130c616c4c))
(fp_line (start 0 1) (end 0 -1)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d5e4bd61-3d70-4858-8f5f-8fcad0e8ce3f))
(fp_line (start 2.25 -2.25) (end -2.25 -2.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b782ba3f-f66e-4bf3-a969-fe650ae6627d))
(fp_line (start 2.25 2.25) (end 2.25 -2.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0fb132b3-e621-44ee-a1e6-a6383ec67e5e))
(fp_circle (center 0 0) (end 1 0)
(stroke (width 0.1) (type solid)) (fill none) (layer "F.Fab") (tstamp f75f0772-df4f-4ae0-9482-2d128eb28c4b))
(pad "1" smd roundrect (at -1.15 -2.75) (size 1.3 1.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1923076923)
(net 23 "Net-(R17-Pad2)") (pinfunction "1") (pintype "passive") (tstamp d4b98a30-9ccc-452b-a415-f5daff3e32d0))
(pad "2" smd roundrect (at 0 2.75) (size 2 1.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1923076923)
(net 24 "Net-(U6-DIS)") (pinfunction "2") (pintype "passive") (tstamp 50e0e6c5-f9fd-4442-a7b1-01cd5b107458))
(pad "3" smd roundrect (at 1.15 -2.75) (size 1.3 1.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1923076923)
(net 25 "unconnected-(RV1-Pad3)") (pinfunction "3") (pintype "passive+no_connect") (tstamp 53c10350-8d9a-400a-b2bd-f300afca7177))
(model "${KICAD7_3DMODEL_DIR}/Potentiometer_SMD.3dshapes/Potentiometer_Bourns_3314G_Vertical.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 2048322f-1c7c-4e73-928e-6e2f8e76e297)
(at 125.0372 47.778 90)
(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" "supercar.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Light emitting diode")
(property "ki_keywords" "LED diode")
(path "/0e2356f0-e7a7-4311-aaf5-7265917279ba")
(attr smd)
(fp_text reference "D13" (at 0 -1.82 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 410e35f3-4ae6-4221-8e60-042890a2c426)
)
(fp_text value "LED" (at 0 1.82 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 34e102dd-b25a-4506-abe2-d773262d5f77)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.12)))
(tstamp 09457843-49ee-4490-a93f-0907785228e9)
)
(fp_line (start -2.46 -1.135) (end -2.46 1.135)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9a435dcd-83c1-458b-a5fb-9932ca852194))
(fp_line (start -2.46 1.135) (end 1.6 1.135)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 81b8a6e0-48ba-4adf-b74c-a62f0e6213a4))
(fp_line (start 1.6 -1.135) (end -2.46 -1.135)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5cb42411-b755-4702-ba14-b7a148e850ae))
(fp_line (start -2.45 -1.12) (end 2.45 -1.12)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 5b85af4b-b7f7-4ee8-80ed-bf2529e6fd8b))
(fp_line (start -2.45 1.12) (end -2.45 -1.12)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 48ff436f-77df-4586-b551-ed7dd41ebc0d))
(fp_line (start 2.45 -1.12) (end 2.45 1.12)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 263cfed4-b14f-449d-9a3f-8bc2564b717c))
(fp_line (start 2.45 1.12) (end -2.45 1.12)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 42020a68-61e0-4422-a48c-c789f67f3941))
(fp_line (start -1.6 -0.4) (end -1.6 0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7b21cd94-0c00-40e8-a6a1-ef4eba01db8f))
(fp_line (start -1.6 0.8) (end 1.6 0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f56b622c-d581-49d6-819f-6a5840d1053d))
(fp_line (start -1.2 -0.8) (end -1.6 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2f9647ec-f8e4-4cf5-9ec0-a8eaac31bc91))
(fp_line (start 1.6 -0.8) (end -1.2 -0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 95ba9011-3357-4dce-867e-196c50fa2614))
(fp_line (start 1.6 0.8) (end 1.6 -0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4687fa81-72ee-4e0f-b532-bd3a8e720454))
(pad "1" smd roundrect (at -1.4875 0 90) (size 1.425 1.75) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1754392982)
(net 19 "Net-(D13-K)") (pinfunction "K") (pintype "passive") (tstamp 754d847b-5b39-4c90-8ea2-a30ce456b044))
(pad "2" smd roundrect (at 1.4875 0 90) (size 1.425 1.75) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1754392982)
(net 7 "Net-(D1-A)") (pinfunction "A") (pintype "passive") (tstamp 34cf3bfe-f021-410a-8510-b7a23981e6d5))
(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 "LED_SMD:LED_1206_3216Metric_Pad1.42x1.75mm_HandSolder" (layer "F.Cu")
(tstamp 24732984-5d54-45a6-98db-d3d8dbe38a81)
(at 132.5206 47.778 90)
(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" "supercar.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Light emitting diode")
(property "ki_keywords" "LED diode")
(path "/2d68f2c3-7af0-499d-bf9a-9178fd526283")
(attr smd)
(fp_text reference "D15" (at 0 -1.82 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp dc18cc25-1e9a-4560-ba62-50e6e8cd78ad)
)
(fp_text value "LED" (at 0 1.82 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 87a63398-faf5-4358-8edb-b78853db31dd)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.12)))
(tstamp 8fa95e01-b604-4696-b0dd-457e54b49eb4)
)
(fp_line (start -2.46 -1.135) (end -2.46 1.135)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2adf7d6f-d342-4255-9c09-6c2ce042ad49))
(fp_line (start -2.46 1.135) (end 1.6 1.135)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f29954bd-f35c-4c82-bc5c-b80b646eb302))
(fp_line (start 1.6 -1.135) (end -2.46 -1.135)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2c899c51-1d25-4ce1-8253-ad60f9f8f4fd))
(fp_line (start -2.45 -1.12) (end 2.45 -1.12)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 0d715dde-1a5e-414d-b928-7f4db177e907))
(fp_line (start -2.45 1.12) (end -2.45 -1.12)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 842752d6-119c-45f6-b0ff-2cf1f80d23ae))
(fp_line (start 2.45 -1.12) (end 2.45 1.12)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 3141ee61-d770-4a85-93a5-cddb45b003fc))
(fp_line (start 2.45 1.12) (end -2.45 1.12)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c08fe6f3-ff1a-4b9a-983f-df043a76742a))
(fp_line (start -1.6 -0.4) (end -1.6 0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 334d9ce7-18be-49fe-954b-0ba9977a78a5))
(fp_line (start -1.6 0.8) (end 1.6 0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a1536632-360d-4842-a210-613dab8aeb66))
(fp_line (start -1.2 -0.8) (end -1.6 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp eeab3436-23be-43c7-a89d-54a3ca1128d1))
(fp_line (start 1.6 -0.8) (end -1.2 -0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d0dabc13-078a-450e-99cc-b2a92c7c94d0))
(fp_line (start 1.6 0.8) (end 1.6 -0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ea960776-e10f-489b-a2f9-95c50bccf7aa))
(pad "1" smd roundrect (at -1.4875 0 90) (size 1.425 1.75) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1754392982)
(net 21 "Net-(D15-K)") (pinfunction "K") (pintype "passive") (tstamp 14129bbd-1e15-45fa-88b3-696a8f55bd33))
(pad "2" smd roundrect (at 1.4875 0 90) (size 1.425 1.75) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1754392982)
(net 7 "Net-(D1-A)") (pinfunction "A") (pintype "passive") (tstamp 25ba613b-3949-4652-8544-f998004eb3ac))
(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 "LED_SMD:LED_1206_3216Metric_Pad1.42x1.75mm_HandSolder" (layer "F.Cu")
(tstamp 24ba9de0-5e61-4281-9d4a-a84ae03c8764)
(at 117.5539 47.778 90)
(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" "supercar.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Light emitting diode")
(property "ki_keywords" "LED diode")
(path "/e7e44263-c572-471b-87be-d0b20b2c788d")
(attr smd)
(fp_text reference "D11" (at 0 -1.82 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1be7de97-3c48-4244-806e-ea5ae7ef7b4c)
)
(fp_text value "LED" (at 0 1.82 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3014c046-0aa4-4010-a919-d662f910a391)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.12)))
(tstamp cc523558-1b7a-41a8-a53e-e96cf74b55bf)
)
(fp_line (start -2.46 -1.135) (end -2.46 1.135)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp bf5eaf99-9574-482c-89c4-213078be60d6))
(fp_line (start -2.46 1.135) (end 1.6 1.135)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b45db06f-9856-4935-b527-8a411cb6e8fc))
(fp_line (start 1.6 -1.135) (end -2.46 -1.135)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ef1e410b-f38e-4c3e-ad82-6193389c5d03))
(fp_line (start -2.45 -1.12) (end 2.45 -1.12)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 3626514f-4059-4f12-870f-9d90aaef3ac1))
(fp_line (start -2.45 1.12) (end -2.45 -1.12)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp db110b0e-fd62-4460-8dff-cccd5cf9f097))
(fp_line (start 2.45 -1.12) (end 2.45 1.12)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a3bbaa4e-44c3-425e-9198-d85a2a83689f))
(fp_line (start 2.45 1.12) (end -2.45 1.12)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp aaca0535-99a7-4db7-81e7-64cb92252398))
(fp_line (start -1.6 -0.4) (end -1.6 0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3adcab3b-9a81-4336-be51-d25e593df84e))
(fp_line (start -1.6 0.8) (end 1.6 0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 98e6c386-fc05-48c4-9007-ab7d8da50720))
(fp_line (start -1.2 -0.8) (end -1.6 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c04ec024-73d2-4775-b618-5dd7bf6991eb))
(fp_line (start 1.6 -0.8) (end -1.2 -0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 1534df0c-2e5c-4fd0-bb01-e37e446397e6))
(fp_line (start 1.6 0.8) (end 1.6 -0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 64fefc42-a1ed-49d1-99b7-34e1187b65a6))
(pad "1" smd roundrect (at -1.4875 0 90) (size 1.425 1.75) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1754392982)
(net 17 "Net-(D11-K)") (pinfunction "K") (pintype "passive") (tstamp 015c3209-7e64-465f-9e77-3822175a445c))
(pad "2" smd roundrect (at 1.4875 0 90) (size 1.425 1.75) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1754392982)
(net 7 "Net-(D1-A)") (pinfunction "A") (pintype "passive") (tstamp d2dbb8e5-0afa-45e8-9ef7-8f1465f08278))
(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 "Battery:BatteryHolder_Keystone_1060_1x2032" (layer "F.Cu")
(tstamp 279d516b-17fa-4de4-8c10-80d12743ae16)
(at 124.46 79.375 180)
(descr "http://www.keyelco.com/product-pdf.cfm?p=726")
(tags "CR2032 BR2032 BatteryHolder Battery")
(property "Sheetfile" "supercar.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Single-cell battery")
(property "ki_keywords" "battery cell")
(path "/867f4fbe-9209-4bd7-bd62-b9eba61b997e")
(attr smd)
(fp_text reference "BT1" (at -14.125 -5.3) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b32e0943-ff73-4ef3-8e02-87e7fc7d2ee8)
)
(fp_text value "CR2032" (at 14.605 -5.715) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7c01449b-5c40-45b5-a80e-9c282b053453)
)
(fp_text user "${REFERENCE}" (at 0 -0.127) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ba10ec28-a4d4-4079-b739-ccd8d0e9682d)
)
(fp_line (start -14.55 -3.85) (end -14.55 -2.3)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 24aaa82c-7e98-4147-bc98-e9291be9f12c))
(fp_line (start -14.55 3.85) (end -14.55 2.3)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 623ca241-f04e-4ace-9dc4-90de76794b1c))
(fp_line (start -13 5) (end -13 7)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ed7c1936-e199-4492-baf3-ae9be63f6635))
(fp_line (start -12 6) (end -14 6)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0daabcaf-1700-4162-bfce-7a8418ccfa4e))
(fp_line (start -11.35 -8.35) (end -11.35 -3.85)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c0de605b-772f-4c4b-9f16-e95a610e0289))
(fp_line (start -11.35 -8.35) (end 11.35 -8.35)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 29d69c50-cad2-4865-af1f-8e8e79f6b28e))
(fp_line (start -11.35 -3.85) (end -14.55 -3.85)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2321644e-4015-44b5-b29b-812ce0cb3805))
(fp_line (start -11.35 3.85) (end -14.55 3.85)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 17ca658c-131d-4e65-bc47-84143cb7b9d2))
(fp_line (start -11.35 6.55) (end -11.35 3.85)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4624caf2-cdcd-4f8f-98cb-4b81df80c066))
(fp_line (start -9.55 8.35) (end -11.35 6.55)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0ab7469c-e597-4e5a-af4e-561943e5592b))
(fp_line (start 11.35 -8.35) (end 11.35 -3.85)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c6756da0-1779-48a0-8740-e93748c616d3))
(fp_line (start 11.35 -3.85) (end 14.55 -3.85)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f4a0f7bf-ba98-42d0-903b-b23402bddcac))
(fp_line (start 11.35 3.85) (end 14.55 3.85)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 30688fd3-d71d-4817-b6f6-5707fb314259))
(fp_line (start 11.35 8.35) (end -9.55 8.35)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9c9a604c-af7b-4cfd-9e0a-f45bd23bea29))
(fp_line (start 11.35 8.35) (end 11.35 3.85)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp cb20c4d8-7690-4cb7-ade5-47c52559bbbd))
(fp_line (start 14.55 -3.85) (end 14.55 -2.3)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0de76686-da17-41ce-85ff-6d6b3506703a))
(fp_line (start 14.55 3.85) (end 14.55 2.3)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e5ccabc4-e93a-4904-9c65-a4a40514cf22))
(fp_circle (center 0 0) (end -10.2 0)
(stroke (width 0.3) (type solid)) (fill none) (layer "Dwgs.User") (tstamp e98aa64e-3859-4979-bfe2-66d13e1ab0c1))
(fp_line (start -16.45 2.3) (end -16.45 -2.3)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp af1f542a-abcb-44f3-bbbb-53ced431c8be))
(fp_line (start -14.7 -4) (end -11.5 -4)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 060f41b9-e045-41e4-b21d-51dfd9566d07))
(fp_line (start -14.7 -2.3) (end -16.45 -2.3)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 6c23de02-fd28-4cd9-b63c-d6e0aee75a1f))
(fp_line (start -14.7 -2.3) (end -14.7 -4)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 72976978-5752-45fa-9d6a-0c61793b057e))
(fp_line (start -14.7 2.3) (end -16.45 2.3)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a55efa64-eb31-4653-bf32-cea1b4974fcf))
(fp_line (start -14.7 4) (end -14.7 2.3)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 163735a5-bf4d-402d-9826-d6bc575585e1))
(fp_line (start -14.7 4) (end -11.5 4)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 63f21428-8fbb-4420-a163-5e8b3f4c663b))
(fp_line (start -11.5 -8.5) (end -6.5 -8.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 54c4c924-3779-46bf-b580-ac9207cf7663))
(fp_line (start -11.5 -4) (end -11.5 -8.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 28168cb9-2ef2-4b4b-8c6b-1e284706af14))
(fp_line (start -11.5 4) (end -11.5 8.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 7a358e8f-c685-48b9-9b75-cecc18d33ef7))
(fp_line (start -6.5 8.5) (end -11.5 8.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 9bc59b9e-4032-4750-a9fd-66ff7cd1c9c9))
(fp_line (start 11.5 -8.5) (end 6.5 -8.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 94ce8e8f-4048-4147-bb5e-d0c412282a9e))
(fp_line (start 11.5 -8.5) (end 11.5 -4)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 722b3a5e-4167-440b-9e69-c11ca1cd766d))
(fp_line (start 11.5 -4) (end 14.7 -4)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a193f7b6-6d68-4d0f-98e1-606cf25a96d1))
(fp_line (start 11.5 4) (end 11.5 8.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 91f6102c-e537-4c8e-9417-467e04dcae9b))
(fp_line (start 11.5 8.5) (end 6.5 8.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 82ee90c5-c924-48df-ae05-0042d9cc4f0e))
(fp_line (start 14.7 -4) (end 14.7 -2.3)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 184b367a-8a7e-47b0-bf7d-c4327f4c1c3c))
(fp_line (start 14.7 -2.3) (end 16.45 -2.3)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp fb42b0d8-66be-4ed5-9a95-6da725068c88))
(fp_line (start 14.7 2.3) (end 14.7 4)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e9ad315e-299f-4ea8-9781-9d9813b0ffb7))
(fp_line (start 14.7 4) (end 11.5 4)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 83a5aaed-2b9d-4cfe-98ed-455c0838130d))
(fp_line (start 16.45 -2.3) (end 16.45 2.3)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ae2e1ce7-ddba-41f0-98bd-240cfb56ebd4))
(fp_line (start 16.45 2.3) (end 14.7 2.3)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp f382ccb9-b79e-40a9-af24-baaf9750c4de))
(fp_arc (start -6.499999 -8.5) (mid 0 -10.700467) (end 6.5 -8.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 83089069-0755-49cf-a279-e565d381ee5d))
(fp_arc (start 6.499999 8.5) (mid 0 10.700467) (end -6.5 8.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d4a4ea70-7c17-44d2-859b-27768d0856c6))
(fp_line (start -14.2 -3.5) (end -11 -3.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f168b651-9f8c-4a97-bce7-bdf8b2b71345))
(fp_line (start -14.2 3.5) (end -14.2 -3.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 07b521f0-737e-4dda-8661-8f70235a60ca))
(fp_line (start -11 -8) (end -11 -3.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c3e0a1e9-7b23-4c71-bac8-bcdbeab161fd))
(fp_line (start -11 3.5) (end -14.2 3.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d8a9df84-9d48-40c8-a189-1a19b9a2a11f))
(fp_line (start -11 6.4) (end -11 3.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8f5429fe-afd3-41ab-b195-813eb94ca925))
(fp_line (start -9.4 8) (end -11 6.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a3579b3d-7174-4b1e-b4eb-09379b667ca0))
(fp_line (start 11 -8) (end -11 -8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 1cb44535-3074-471e-9a41-20764796162a))
(fp_line (start 11 -8) (end 11 -3.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b648cb5b-90ef-439e-a19b-92369ca5dcde))
(fp_line (start 11 3.5) (end 14.2 3.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 20a70c6c-5e18-425f-ba8a-da1a4e9b1a29))
(fp_line (start 11 8) (end -9.4 8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2b52130f-8e3a-4f17-b4a5-1d9c0bd74e08))
(fp_line (start 11 8) (end 11 3.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 156aaca2-c4f8-4044-b4c0-2784b1c6c44b))
(fp_line (start 14.2 -3.5) (end 11 -3.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 5b958057-7d18-4957-90b6-90644417ea5b))
(fp_line (start 14.2 3.5) (end 14.2 -3.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 18d8f7c1-19b0-40c0-9269-38b6fffd9fe1))
(pad "1" smd rect (at -14.65 0) (size 2.6 3.6) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "Net-(BT1-+)") (pinfunction "+") (pintype "passive") (tstamp bc399fc0-60f6-462b-83c4-a81914cfcbce))
(pad "2" smd rect (at 14.65 0) (size 2.6 3.6) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (pinfunction "-") (pintype "passive") (tstamp 68b2e946-c196-464e-ab53-e0969afb8176))
(model "${KICAD6_3DMODEL_DIR}/Battery.3dshapes/BatteryHolder_Keystone_1060_1x2032.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 29ab7e37-4aa2-452e-b2d9-8586e44387d8)
(at 106.3288 47.778 90)
(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" "supercar.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Light emitting diode")
(property "ki_keywords" "LED diode")
(path "/d0fd8f93-5c88-4b0c-bc3e-e1718ead5f9d")
(attr smd)
(fp_text reference "D8" (at 0 -1.82 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 02d90c29-bccb-4ab7-9f3b-c0c6d6794745)
)
(fp_text value "LED" (at 0 1.82 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 841cfcc8-d190-4d9f-b968-2b0180e4364a)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.12)))
(tstamp 13dbf7ec-3947-4667-9dd9-8c9e0a5a919b)
)
(fp_line (start -2.46 -1.135) (end -2.46 1.135)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp bb2c526d-0c71-4b4c-b19b-fdfa3d54127a))
(fp_line (start -2.46 1.135) (end 1.6 1.135)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d65f6d3f-aac0-462a-970b-0154b4c6ef37))
(fp_line (start 1.6 -1.135) (end -2.46 -1.135)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5a563a85-1d9d-4858-b42b-c5b940c30d49))
(fp_line (start -2.45 -1.12) (end 2.45 -1.12)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 47557786-52eb-4e24-b731-5e8f88a5206a))
(fp_line (start -2.45 1.12) (end -2.45 -1.12)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 47bd9715-6a48-43d1-916a-08af413eee15))
(fp_line (start 2.45 -1.12) (end 2.45 1.12)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ef3b51e4-02b5-4e2e-9d5f-dbf4bb77b79e))
(fp_line (start 2.45 1.12) (end -2.45 1.12)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 0fccf72e-ab7e-4f56-b0a0-f65d062fbf56))
(fp_line (start -1.6 -0.4) (end -1.6 0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ee2062e6-2441-4e73-8215-2a72e1f06653))
(fp_line (start -1.6 0.8) (end 1.6 0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 51fcd31f-b4fc-483c-b6b5-f1925b88d871))
(fp_line (start -1.2 -0.8) (end -1.6 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 964c3f31-f639-4c4b-af95-a85f24589bc0))
(fp_line (start 1.6 -0.8) (end -1.2 -0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e10717a5-2b2a-4b5c-9b7e-c9b106f41c73))
(fp_line (start 1.6 0.8) (end 1.6 -0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 74ca3d40-ed02-40bb-8442-2a741b062334))
(pad "1" smd roundrect (at -1.4875 0 90) (size 1.425 1.75) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1754392982)
(net 14 "Net-(D8-K)") (pinfunction "K") (pintype "passive") (tstamp 77d885e6-5ba5-48e2-9d13-a1047ef16000))
(pad "2" smd roundrect (at 1.4875 0 90) (size 1.425 1.75) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1754392982)
(net 7 "Net-(D1-A)") (pinfunction "A") (pintype "passive") (tstamp f7055668-8f58-45d9-8ef1-3c257e6494f8))
(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))
)
)