-
Notifications
You must be signed in to change notification settings - Fork 0
/
AE-7SEG-BOARD.kicad_pcb
2360 lines (2336 loc) · 126 KB
/
AE-7SEG-BOARD.kicad_pcb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
(kicad_pcb (version 20221018) (generator pcbnew)
(general
(thickness 1.6)
)
(paper "A4")
(title_block
(title "AE-7SEG-BOARD")
)
(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)
(aux_axis_origin 139.6533 120.725)
(grid_origin 139.6533 120.725)
(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 6)
(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 "./Gerber")
)
)
(net 0 "")
(net 1 "VCC")
(net 2 "GND")
(net 3 "Net-(U1-QA)")
(net 4 "Net-(U2-A)")
(net 5 "Net-(U1-QB)")
(net 6 "Net-(U2-B)")
(net 7 "Net-(U1-QC)")
(net 8 "Net-(U2-C)")
(net 9 "Net-(U1-QD)")
(net 10 "Net-(U2-D)")
(net 11 "Net-(U1-QE)")
(net 12 "Net-(U2-E)")
(net 13 "Net-(U1-QF)")
(net 14 "Net-(U2-F)")
(net 15 "Net-(U1-QG)")
(net 16 "Net-(U2-G)")
(net 17 "Net-(U1-QH)")
(net 18 "Net-(U2-DP)")
(net 19 "/SCK")
(net 20 "/SDI")
(net 21 "/SDO")
(net 22 "/MR#")
(net 23 "/LATCH")
(net 24 "/OE")
(footprint "Resistor_SMD:R_0402_1005Metric" (layer "F.Cu")
(tstamp 1b140585-1917-46e0-a03b-0b37bc1a8b30)
(at 141.2083 112.649 -90)
(descr "Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(property "LCSC" "C25091")
(property "Sheetfile" "AE-7SEG-BOARD.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor")
(property "ki_keywords" "R res resistor")
(path "/2f72b7d8-b661-4a62-98ad-75a02dc450c6")
(attr smd)
(fp_text reference "R2" (at 0 -1.17 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp bc0dade0-86d9-45f0-8089-56a1ac4b15fa)
)
(fp_text value "220Ω" (at 0 1.17 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp aa44d933-b861-452b-941e-61a8f6b2c2c9)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.26 0.26) (thickness 0.04)))
(tstamp 8a26de86-dcdb-4f56-915d-8a52eb8a1c9b)
)
(fp_line (start -0.153641 -0.38) (end 0.153641 -0.38)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7c0790a6-6ad5-4a45-9884-ef74efc6d11b))
(fp_line (start -0.153641 0.38) (end 0.153641 0.38)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 948cb163-4d90-4f15-b982-6435bc99b070))
(fp_line (start -0.93 -0.47) (end 0.93 -0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp f64f217b-b866-42fb-927c-233e1a088be3))
(fp_line (start -0.93 0.47) (end -0.93 -0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 0fd53701-0fe0-40fa-a8e3-847185d089ce))
(fp_line (start 0.93 -0.47) (end 0.93 0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 8afdd3a2-1e0d-462d-a135-62188998752b))
(fp_line (start 0.93 0.47) (end -0.93 0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 75b95959-5526-4a25-b851-6f9dcb6fde2e))
(fp_line (start -0.525 -0.27) (end 0.525 -0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 194641f7-a6ae-44cc-808c-e2cfa9549f15))
(fp_line (start -0.525 0.27) (end -0.525 -0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 49a074ba-c305-44fe-8c10-f2fea8ac7bb9))
(fp_line (start 0.525 -0.27) (end 0.525 0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp bd77ec79-46ed-4f5a-9d7b-d40bbc48bdd1))
(fp_line (start 0.525 0.27) (end -0.525 0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d8c14e4e-2aff-4b50-8891-24cba26e88c1))
(pad "1" smd roundrect (at -0.51 0 270) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 5 "Net-(U1-QB)") (pintype "passive") (tstamp 9e4b0eb6-1d08-4bb1-a2b8-fca3d333233b))
(pad "2" smd roundrect (at 0.51 0 270) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 6 "Net-(U2-B)") (pintype "passive") (tstamp e33fb24e-efbd-4bc7-987a-da7910187c05))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0402_1005Metric" (layer "F.Cu")
(tstamp 45af8cdd-5417-42bc-9e5d-a0a8d7f6d714)
(at 148.8283 103.251 -90)
(descr "Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(property "LCSC" "C25744")
(property "Sheetfile" "AE-7SEG-BOARD.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor")
(property "ki_keywords" "R res resistor")
(path "/94c19121-d1ec-44f9-abad-a06b67d030be")
(attr smd)
(fp_text reference "R9" (at 0 -1.17 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 00454de5-f4a0-4fd4-b2f4-c870518ecff0)
)
(fp_text value "10KΩ" (at 0 1.17 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 18e90697-9fc7-44aa-ac89-484cfa66d40c)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.26 0.26) (thickness 0.04)))
(tstamp 2c586917-ffec-4bbb-9ef1-81d43cd135a3)
)
(fp_line (start -0.153641 -0.38) (end 0.153641 -0.38)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp af0b7e4c-f6c1-4dfc-b813-804cb97e9c54))
(fp_line (start -0.153641 0.38) (end 0.153641 0.38)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 34b934fa-7b81-4e3a-831d-b812ea9c2e01))
(fp_line (start -0.93 -0.47) (end 0.93 -0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ebb6a914-f64a-40c0-91cd-f29c60c2dd76))
(fp_line (start -0.93 0.47) (end -0.93 -0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d0db35ac-bfec-456f-b742-4a242a276312))
(fp_line (start 0.93 -0.47) (end 0.93 0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 6eefd404-6df0-40ed-8f6a-5d397948bff3))
(fp_line (start 0.93 0.47) (end -0.93 0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 4aa8f715-f237-4aff-9b15-600267748ecd))
(fp_line (start -0.525 -0.27) (end 0.525 -0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2134747f-fc6e-4443-ab92-bbb79102bd2e))
(fp_line (start -0.525 0.27) (end -0.525 -0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2ec0b8af-47e5-4aa4-8d40-804e86b45118))
(fp_line (start 0.525 -0.27) (end 0.525 0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 182f446d-2c4d-4654-8e76-4fa884988b7a))
(fp_line (start 0.525 0.27) (end -0.525 0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c26006d6-3ee3-4f99-bb2b-23b5c6fe04bc))
(pad "1" smd roundrect (at -0.51 0 270) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "VCC") (pintype "passive") (tstamp 4c9932b8-0e3e-4720-97e7-26d122279006))
(pad "2" smd roundrect (at 0.51 0 270) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 22 "/MR#") (pintype "passive") (tstamp fc5e4ba3-ad3a-404d-a0c6-7254b710daa6))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0402_1005Metric" (layer "F.Cu")
(tstamp 66204cdd-4101-4cd1-a24b-9f10401f6ab5)
(at 147.5583 112.649 -90)
(descr "Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(property "LCSC" "C25091")
(property "Sheetfile" "AE-7SEG-BOARD.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor")
(property "ki_keywords" "R res resistor")
(path "/c68fc470-b17b-430f-a2fa-a208cae52c4d")
(attr smd)
(fp_text reference "R7" (at 0 -1.17 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 40f8eca8-e16a-43cc-b6fe-16b5e1aea88e)
)
(fp_text value "220Ω" (at 0 1.17 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 93bb24de-a912-4b59-ac07-7d3ef6df26de)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.26 0.26) (thickness 0.04)))
(tstamp b3c4b4e0-c75e-43ab-a12a-b93b5177f9eb)
)
(fp_line (start -0.153641 -0.38) (end 0.153641 -0.38)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0d09b339-75f5-4232-8e85-212599851777))
(fp_line (start -0.153641 0.38) (end 0.153641 0.38)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp dacf5e67-6f20-4a4a-959f-3a61a77d5aac))
(fp_line (start -0.93 -0.47) (end 0.93 -0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 3febd7a6-bb9a-437d-84f4-cb66f3e351a1))
(fp_line (start -0.93 0.47) (end -0.93 -0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 034daab3-4298-49d7-8117-f749ef84eb73))
(fp_line (start 0.93 -0.47) (end 0.93 0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 63c1d832-e155-4f36-942e-e77f7460b7a5))
(fp_line (start 0.93 0.47) (end -0.93 0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b28ab3f1-123b-4a55-bb7a-c86a46923327))
(fp_line (start -0.525 -0.27) (end 0.525 -0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7ece2cd4-aaba-456b-8f30-64846f894c16))
(fp_line (start -0.525 0.27) (end -0.525 -0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2ce1618d-6d7b-407a-9621-a8191b2ecead))
(fp_line (start 0.525 -0.27) (end 0.525 0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2e7df459-6633-47ca-83d2-0b8b99d856ce))
(fp_line (start 0.525 0.27) (end -0.525 0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0a4b1b06-2f8d-4538-bbc8-2e6398847819))
(pad "1" smd roundrect (at -0.51 0 270) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 15 "Net-(U1-QG)") (pintype "passive") (tstamp def33bae-5c64-482b-8e4c-eab6cd62aa2b))
(pad "2" smd roundrect (at 0.51 0 270) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 16 "Net-(U2-G)") (pintype "passive") (tstamp 4cd318b3-6690-4c51-951f-59316b2bd793))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0402_1005Metric" (layer "F.Cu")
(tstamp 6874b76c-24f1-43bc-a41d-5e23089a1df9)
(at 143.7483 112.649 -90)
(descr "Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(property "LCSC" "C25091")
(property "Sheetfile" "AE-7SEG-BOARD.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor")
(property "ki_keywords" "R res resistor")
(path "/405fe887-cc5c-4652-8050-9f61d52d58d6")
(attr smd)
(fp_text reference "R4" (at 0 -1.17 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0207b77c-88da-4d8b-8062-ab6974e779ad)
)
(fp_text value "220Ω" (at 0 1.17 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0960097e-56c3-4aff-b2ca-8fe72c807179)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.26 0.26) (thickness 0.04)))
(tstamp e0e20245-0ef7-43bf-ae9a-e31f6e1b619e)
)
(fp_line (start -0.153641 -0.38) (end 0.153641 -0.38)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 030d9e88-69ea-4af5-bc1a-785c63fc7fb4))
(fp_line (start -0.153641 0.38) (end 0.153641 0.38)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c5c4e552-7ddd-4c95-92f7-c11b574ac323))
(fp_line (start -0.93 -0.47) (end 0.93 -0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 663bb59b-ac8b-405b-80f7-667e5007ef8c))
(fp_line (start -0.93 0.47) (end -0.93 -0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 443105be-0107-42a1-ae9b-09670f44388d))
(fp_line (start 0.93 -0.47) (end 0.93 0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e88465b5-85e9-4737-8fa3-0304d94457e6))
(fp_line (start 0.93 0.47) (end -0.93 0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 414aff63-fe46-4ab9-b245-84fff8eacdb8))
(fp_line (start -0.525 -0.27) (end 0.525 -0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e56b72ca-d943-45f2-9d80-07126bdd9965))
(fp_line (start -0.525 0.27) (end -0.525 -0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 1708fd01-04c8-415d-9220-14aa92f443a5))
(fp_line (start 0.525 -0.27) (end 0.525 0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 09511b77-bac8-4212-ab24-f67fed91a407))
(fp_line (start 0.525 0.27) (end -0.525 0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 11ae1c68-1622-421a-b359-66bb60d893b9))
(pad "1" smd roundrect (at -0.51 0 270) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 9 "Net-(U1-QD)") (pintype "passive") (tstamp 05b1d354-4ef0-4ff6-926b-5dda782213d7))
(pad "2" smd roundrect (at 0.51 0 270) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 10 "Net-(U2-D)") (pintype "passive") (tstamp 4c7932c8-9ae8-4a9c-ac00-ebf6e7cc0c2a))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0402_1005Metric" (layer "F.Cu")
(tstamp 702df271-9831-4332-b741-fc048260ee99)
(at 146.2883 112.649 -90)
(descr "Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(property "LCSC" "C25091")
(property "Sheetfile" "AE-7SEG-BOARD.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor")
(property "ki_keywords" "R res resistor")
(path "/282da042-c2dd-4daa-ad50-acfd010cc740")
(attr smd)
(fp_text reference "R6" (at 0 -1.17 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8c6d2679-84ab-4614-bdec-a12aba7fc990)
)
(fp_text value "220Ω" (at 0 1.17 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c4beb75b-98f3-43ed-b349-ebcace69ec50)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.26 0.26) (thickness 0.04)))
(tstamp 82282d0e-0d4c-4b40-90d1-f35b3d0ee8c6)
)
(fp_line (start -0.153641 -0.38) (end 0.153641 -0.38)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 67169e42-bf7f-4873-8f51-7b529142d1a9))
(fp_line (start -0.153641 0.38) (end 0.153641 0.38)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6905b28a-f825-4c17-ac52-ae4eddf9b82c))
(fp_line (start -0.93 -0.47) (end 0.93 -0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 52ba8414-c347-4345-b122-f75dfb67bdf1))
(fp_line (start -0.93 0.47) (end -0.93 -0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 6a43eaba-7070-4813-b995-fb7ed04f54a7))
(fp_line (start 0.93 -0.47) (end 0.93 0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c5519593-edd6-4daa-b44a-fd752c816395))
(fp_line (start 0.93 0.47) (end -0.93 0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 4e752028-37b1-42c4-85ee-b48050276abf))
(fp_line (start -0.525 -0.27) (end 0.525 -0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 5b7b2c1d-cb65-4c9a-8051-2995015d9805))
(fp_line (start -0.525 0.27) (end -0.525 -0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e458469c-9bf1-42c3-b227-1f519a6879e8))
(fp_line (start 0.525 -0.27) (end 0.525 0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 354288f0-c8f7-4722-9b4f-723aec8edee1))
(fp_line (start 0.525 0.27) (end -0.525 0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 19c3f8ed-b9cf-4cb1-bdc1-d5c4391ea8c5))
(pad "1" smd roundrect (at -0.51 0 270) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 13 "Net-(U1-QF)") (pintype "passive") (tstamp dfc8cb25-688f-4791-a155-df82b093eaae))
(pad "2" smd roundrect (at 0.51 0 270) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 14 "Net-(U2-F)") (pintype "passive") (tstamp 521a98c1-c160-42dd-910f-15f76ecd7a0b))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0402_1005Metric.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 900436c2-1cea-4980-bbad-2a87c5adb8be)
(at 145.6533 107.975 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 "JLCPCB Rotation Offset" "-90")
(property "LCSC" "C5947")
(property "Sheetfile" "AE-7SEG-BOARD.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "8-bit serial in/out Shift Register 3-State Outputs")
(property "ki_keywords" "HCMOS SR 3State")
(path "/9249fc6b-3e6e-440d-ba97-00fc713f3477")
(attr smd)
(fp_text reference "U1" (at 0 -5.9 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 207dd55c-61a2-4427-b76a-bf45160dc1f9)
)
(fp_text value "74HC595D, 118" (at 0 5.9 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 32c7f3cb-28e3-4c85-8f74-7c78067e3dd3)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.98 0.98) (thickness 0.15)))
(tstamp 4456283e-b77b-4782-a8a7-e4b4bdc989a3)
)
(fp_line (start 0 -5.06) (end -3.45 -5.06)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 01610f75-111e-452c-96af-71064f82c760))
(fp_line (start 0 -5.06) (end 1.95 -5.06)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 32d87a67-0e98-44bb-af50-2bf790faffa3))
(fp_line (start 0 5.06) (end -1.95 5.06)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 695dab97-ed2f-4242-9c92-6b7d7fdd4e96))
(fp_line (start 0 5.06) (end 1.95 5.06)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 00202081-6e07-4d81-83fe-6b3116e8f4f8))
(fp_line (start -3.7 -5.2) (end -3.7 5.2)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 652090f5-5246-4f69-b0d5-f8844b65f836))
(fp_line (start -3.7 5.2) (end 3.7 5.2)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c52386b9-eae1-40a4-a3e0-586b3187e458))
(fp_line (start 3.7 -5.2) (end -3.7 -5.2)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e829d93c-9905-4791-a5af-f6cdfbcfbaf6))
(fp_line (start 3.7 5.2) (end 3.7 -5.2)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d6268233-3443-4a1c-8b3b-b1daac346b60))
(fp_line (start -1.95 -3.975) (end -0.975 -4.95)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d1fcd849-ebec-4665-b3ab-e6dac8897101))
(fp_line (start -1.95 4.95) (end -1.95 -3.975)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 1a2e5f07-2c6a-4f23-8208-1771e4275793))
(fp_line (start -0.975 -4.95) (end 1.95 -4.95)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 00535d40-54ff-46a4-967a-cf041917f4ea))
(fp_line (start 1.95 -4.95) (end 1.95 4.95)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 14b7b4e3-024e-440a-841d-81bc07b7f492))
(fp_line (start 1.95 4.95) (end -1.95 4.95)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c2c9343f-ccef-4e2d-8dbc-5153bceb7f97))
(pad "1" smd roundrect (at -2.475 -4.445 90) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 5 "Net-(U1-QB)") (pinfunction "QB") (pintype "tri_state") (tstamp 8b9557d3-b1b7-47ee-a26e-d0dc4528406b))
(pad "2" smd roundrect (at -2.475 -3.175 90) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 7 "Net-(U1-QC)") (pinfunction "QC") (pintype "tri_state") (tstamp b2cd6432-1e02-48f0-914a-be5f79ff66f6))
(pad "3" smd roundrect (at -2.475 -1.905 90) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 9 "Net-(U1-QD)") (pinfunction "QD") (pintype "tri_state") (tstamp 38c98d39-a07b-41aa-8047-3defd49f9909))
(pad "4" smd roundrect (at -2.475 -0.635 90) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 11 "Net-(U1-QE)") (pinfunction "QE") (pintype "tri_state") (tstamp 97d00d15-57ee-4324-bb5d-3f0fd635487c))
(pad "5" smd roundrect (at -2.475 0.635 90) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 13 "Net-(U1-QF)") (pinfunction "QF") (pintype "tri_state") (tstamp 628f1c3c-54a5-46f4-b710-0bf07441ffb2))
(pad "6" smd roundrect (at -2.475 1.905 90) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 15 "Net-(U1-QG)") (pinfunction "QG") (pintype "tri_state") (tstamp ef3ab303-699b-4087-a275-4dadf9a551d0))
(pad "7" smd roundrect (at -2.475 3.175 90) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 17 "Net-(U1-QH)") (pinfunction "QH") (pintype "tri_state") (tstamp f685ddc1-c814-4425-ba41-637ca086d715))
(pad "8" smd roundrect (at -2.475 4.445 90) (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 b3db5ece-a728-4b87-a390-f39f5b66c291))
(pad "9" smd roundrect (at 2.475 4.445 90) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 21 "/SDO") (pinfunction "QH'") (pintype "output") (tstamp 6538fac8-b79d-4845-ae17-f79d86f37519))
(pad "10" smd roundrect (at 2.475 3.175 90) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 22 "/MR#") (pinfunction "~{SRCLR}") (pintype "input") (tstamp c285e928-5f2a-4f01-b56f-4174f98f6024))
(pad "11" smd roundrect (at 2.475 1.905 90) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 19 "/SCK") (pinfunction "SRCLK") (pintype "input") (tstamp f43962cf-74c1-41df-a48d-06497c14e05e))
(pad "12" smd roundrect (at 2.475 0.635 90) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 23 "/LATCH") (pinfunction "RCLK") (pintype "input") (tstamp f790ebaf-af2a-467d-80e6-55eed51c690e))
(pad "13" smd roundrect (at 2.475 -0.635 90) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 24 "/OE") (pinfunction "~{OE}") (pintype "input") (tstamp 1ae9c35b-2b2d-4e4f-bbb1-ed19f5029aef))
(pad "14" smd roundrect (at 2.475 -1.905 90) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 20 "/SDI") (pinfunction "SER") (pintype "input") (tstamp d7aaf107-ce68-4a8b-b0ba-c51ec33193ed))
(pad "15" smd roundrect (at 2.475 -3.175 90) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 3 "Net-(U1-QA)") (pinfunction "QA") (pintype "tri_state") (tstamp 2487f63f-f07d-45cb-a507-7bb337ca49ef))
(pad "16" smd roundrect (at 2.475 -4.445 90) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "VCC") (pinfunction "VCC") (pintype "power_in") (tstamp 5fccbdb6-bfc3-4af7-af6c-0856a10894bd))
(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 "Capacitor_SMD:C_0402_1005Metric" (layer "F.Cu")
(tstamp 90c1ca0f-8312-4e13-bb0d-b2508ed1f7c3)
(at 150.0983 103.251 90)
(descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "LCSC" "C1525")
(property "Sheetfile" "AE-7SEG-BOARD.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Unpolarized capacitor")
(property "ki_keywords" "cap capacitor")
(path "/d697d119-5d78-4dea-a3c6-839b231d6c25")
(attr smd)
(fp_text reference "C1" (at 0 -1.16 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c0babe4d-6578-44ae-b5d3-b3670efc5915)
)
(fp_text value "100nF" (at 0 1.16 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e52a2b92-69cf-4f39-905f-db55f8b9ade4)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.25 0.25) (thickness 0.04)))
(tstamp 5de36fec-c9bf-4aa9-ac65-f1879027882e)
)
(fp_line (start -0.107836 -0.36) (end 0.107836 -0.36)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d55263ea-14b8-45a0-a3e4-a62ec276e215))
(fp_line (start -0.107836 0.36) (end 0.107836 0.36)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 963c125c-5828-4620-a0f2-5a41adaa6d3f))
(fp_line (start -0.91 -0.46) (end 0.91 -0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 6f72ecf9-877d-4ea3-94a4-9bcf36220d83))
(fp_line (start -0.91 0.46) (end -0.91 -0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e1eccafa-ff22-4019-b933-6788dc740abf))
(fp_line (start 0.91 -0.46) (end 0.91 0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 3471ddbd-263a-4b48-8f0f-b492646d3dfa))
(fp_line (start 0.91 0.46) (end -0.91 0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 3c32af83-1329-466c-81ca-cef0827a2798))
(fp_line (start -0.5 -0.25) (end 0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4f773854-0fcb-4f04-8d76-c0dce82a052a))
(fp_line (start -0.5 0.25) (end -0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d707b4f5-3329-47dc-9ed2-f59aa722ffba))
(fp_line (start 0.5 -0.25) (end 0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 508c0ce0-a4fa-43c9-badc-6146c385fd2f))
(fp_line (start 0.5 0.25) (end -0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 5fab4adc-1c69-44a0-ad6b-18da66ad1c71))
(pad "1" smd roundrect (at -0.48 0 90) (size 0.56 0.62) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pintype "passive") (tstamp 7b17a428-dd17-45af-996e-fe419a0b8a6c))
(pad "2" smd roundrect (at 0.48 0 90) (size 0.56 0.62) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "VCC") (pintype "passive") (tstamp a52b1b0b-3157-4a97-bc0f-48f6636f5fd4))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0402_1005Metric" (layer "F.Cu")
(tstamp a2b32810-2b01-4f81-b45c-1fc79f98ebf8)
(at 148.8283 112.649 -90)
(descr "Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(property "LCSC" "C25091")
(property "Sheetfile" "AE-7SEG-BOARD.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor")
(property "ki_keywords" "R res resistor")
(path "/c9b197ab-b613-447f-b1eb-3883ee53b833")
(attr smd)
(fp_text reference "R8" (at 0 -1.17 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4c4a2a72-9aab-4b3f-b3a8-d91089ada127)
)
(fp_text value "220Ω" (at 0 1.17 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 08ff4a89-e07b-4079-a904-c9422e41853d)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.26 0.26) (thickness 0.04)))
(tstamp b01a21f9-de06-461d-add1-a473a6331a55)
)
(fp_line (start -0.153641 -0.38) (end 0.153641 -0.38)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1162ec7e-3df7-4571-82cf-a6dd5cc3c0be))
(fp_line (start -0.153641 0.38) (end 0.153641 0.38)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6ee7410d-86c1-4cf0-9b29-8e22a5dec19a))
(fp_line (start -0.93 -0.47) (end 0.93 -0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 41e04403-7709-460b-9d69-ea89fb7f3f5e))
(fp_line (start -0.93 0.47) (end -0.93 -0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp fd0a2093-77a1-46a9-96df-54f276d6cc8a))
(fp_line (start 0.93 -0.47) (end 0.93 0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a700b088-a110-4df5-a76f-796073ae2ee7))
(fp_line (start 0.93 0.47) (end -0.93 0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 52b27b5a-5f58-41d0-946d-b09afeb60544))
(fp_line (start -0.525 -0.27) (end 0.525 -0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 5b56f7f7-def6-4ff3-bbe3-c862fd268cc7))
(fp_line (start -0.525 0.27) (end -0.525 -0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 33d7b880-05e1-4946-a524-a4497f933455))
(fp_line (start 0.525 -0.27) (end 0.525 0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4447723b-507e-428a-91d2-7e63762b7a8a))
(fp_line (start 0.525 0.27) (end -0.525 0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3d31d318-e96d-4e99-9920-3692447b30dc))
(pad "1" smd roundrect (at -0.51 0 270) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 17 "Net-(U1-QH)") (pintype "passive") (tstamp efc35934-fa7b-4c9a-9f28-48b11cb4b649))
(pad "2" smd roundrect (at 0.51 0 270) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 18 "Net-(U2-DP)") (pintype "passive") (tstamp d6267709-709c-4b43-b8a6-4f8a2f7c2c47))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_PinHeader_2.54mm:PinHeader_1x05_P2.54mm_Vertical" (layer "F.Cu")
(tstamp a3721835-3a8c-4c07-9871-27b67d32478d)
(at 150.7333 119.405 -90)
(descr "Through hole straight pin header, 1x05, 2.54mm pitch, single row")
(tags "Through hole pin header THT 1x05 2.54mm single row")
(property "Sheetfile" "AE-7SEG-BOARD.kicad_sch")
(property "Sheetname" "")
(property "exclude_from_bom" "")
(property "ki_description" "Generic connector, single row, 01x05, script generated (kicad-library-utils/schlib/autogen/connector/)")
(property "ki_keywords" "connector")
(path "/d79c7fae-a59e-4194-bdc1-5178c2f790b0")
(attr through_hole exclude_from_pos_files exclude_from_bom)
(fp_text reference "CH2" (at 0 -2.33 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 49ca207c-fbdb-42b3-9428-fa1933aa8908)
)
(fp_text value "Conn_01x05_Male" (at 0 12.49 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0384ef15-e650-4bc8-b096-16bfbbc3a3de)
)
(fp_text user "${REFERENCE}" (at 0 5.08) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d44d794c-72ea-4477-a85e-059460460b0b)
)
(fp_line (start -1.8 -1.8) (end -1.8 11.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 0f95b5a7-cdea-440d-ad24-ab1a56eff3f8))
(fp_line (start -1.8 11.95) (end 1.8 11.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 984edc7e-2d6d-42c5-a4e1-f47c7e5cfbff))
(fp_line (start 1.8 -1.8) (end -1.8 -1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 84075ffe-9745-45ab-b98a-e5635768ab34))
(fp_line (start 1.8 11.95) (end 1.8 -1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 6a169ab0-953d-404d-a780-14b48211950b))
(fp_line (start -1.27 -0.635) (end -0.635 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c21b072a-1789-4844-a77b-a8834e2c527e))
(fp_line (start -1.27 11.43) (end -1.27 -0.635)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 52585ac9-24eb-461a-92f3-7695fe5db927))
(fp_line (start -0.635 -1.27) (end 1.27 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2e9e1455-7b09-4a51-b043-b84f7b235e1a))
(fp_line (start 1.27 -1.27) (end 1.27 11.43)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 201aac4d-d105-428e-b5b8-8296543de9e0))
(fp_line (start 1.27 11.43) (end -1.27 11.43)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 6306aacf-e13b-4e49-bb24-c2424bb87a42))
(pad "1" thru_hole circle (at 0 0 270) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 22 "/MR#") (pinfunction "Pin_1") (pintype "passive") (tstamp dbf9440e-0526-4030-a9a5-6ef640c44fa0))
(pad "2" thru_hole oval (at 0 2.54 270) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 23 "/LATCH") (pinfunction "Pin_2") (pintype "passive") (tstamp b81264ce-4b7c-4df2-bb6c-326d600b06ca))
(pad "3" thru_hole oval (at 0 5.08 270) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 24 "/OE") (pinfunction "Pin_3") (pintype "passive") (tstamp 838d8ffc-3381-4b74-a739-5cb15da90e4c))
(pad "4" thru_hole oval (at 0 7.62 270) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 1 "VCC") (pinfunction "Pin_4") (pintype "passive") (tstamp 64aa8e43-ed19-4fb3-a2bb-7cd398014b50))
(pad "5" thru_hole oval (at 0 10.16 270) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 2 "GND") (pinfunction "Pin_5") (pintype "passive") (tstamp 19428018-d6ad-4078-83bf-049072e9ac64))
(model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x05_P2.54mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0402_1005Metric" (layer "F.Cu")
(tstamp aa77db05-7f19-4123-8f50-1e2bfd721b95)
(at 146.2883 103.251 -90)
(descr "Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(property "LCSC" "C25744")
(property "Sheetfile" "AE-7SEG-BOARD.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor")
(property "ki_keywords" "R res resistor")
(path "/011fd06e-aa51-47ba-950b-32124e5146de")
(attr smd)
(fp_text reference "R10" (at 0 -1.17 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 917d1e44-cdeb-48a5-bcc4-338af6c9f4c1)
)
(fp_text value "10KΩ" (at 0 1.17 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1f40f950-f796-4fb7-971f-718513d26b66)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.26 0.26) (thickness 0.04)))
(tstamp f15ddbb2-6509-4517-adbf-7fd66bf08f47)
)
(fp_line (start -0.153641 -0.38) (end 0.153641 -0.38)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 89436c47-c5b4-429f-9208-79e24fdeb582))
(fp_line (start -0.153641 0.38) (end 0.153641 0.38)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ede712aa-52ec-4f34-b981-49d4f59eba6b))
(fp_line (start -0.93 -0.47) (end 0.93 -0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 5977d5c5-4001-4cda-a0b8-7fd06dd0d9c8))
(fp_line (start -0.93 0.47) (end -0.93 -0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp eae34dce-908b-4650-a03e-9890508f8871))
(fp_line (start 0.93 -0.47) (end 0.93 0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 41ede4a5-ccc4-49cb-8b36-8f0a2653be53))
(fp_line (start 0.93 0.47) (end -0.93 0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 1a69dbfe-4a1c-47fb-af58-ed7f70e9764e))
(fp_line (start -0.525 -0.27) (end 0.525 -0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 71ee17b6-3465-438a-b9ac-a855c8dfe068))
(fp_line (start -0.525 0.27) (end -0.525 -0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b259397c-7dd3-407f-9fa7-b9fff8a11072))
(fp_line (start 0.525 -0.27) (end 0.525 0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 758e3bfb-b40b-4cf4-8fa1-93bed5c4ced7))
(fp_line (start 0.525 0.27) (end -0.525 0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c1ed7f1f-7f9d-4606-8f07-dfbe4e7fb2bd))
(pad "1" smd roundrect (at -0.51 0 270) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pintype "passive") (tstamp cb464c30-10a8-45c4-ac30-b43b10a56c05))
(pad "2" smd roundrect (at 0.51 0 270) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 23 "/LATCH") (pintype "passive") (tstamp 0102848c-113b-488f-8bfd-69d5ce75a91a))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0402_1005Metric" (layer "F.Cu")
(tstamp d354cee2-8a6e-4367-b811-3ad0a51b3f24)
(at 142.4783 112.649 -90)
(descr "Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(property "LCSC" "C25091")
(property "Sheetfile" "AE-7SEG-BOARD.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor")
(property "ki_keywords" "R res resistor")
(path "/c920d7d8-bd5d-4bcd-85e9-9684fa24af53")
(attr smd)
(fp_text reference "R3" (at 0 -1.17 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp dcbddf00-148f-4113-b05d-7960c1a9842f)
)
(fp_text value "220Ω" (at 0 1.17 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 043ca577-b08b-4cc2-9249-91c4dd66b845)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.26 0.26) (thickness 0.04)))
(tstamp e29e6d1c-2271-46c4-8fb3-bac941b69caa)
)
(fp_line (start -0.153641 -0.38) (end 0.153641 -0.38)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp af4bab33-fa69-4d8a-b666-c533934f43c0))
(fp_line (start -0.153641 0.38) (end 0.153641 0.38)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d7123982-8e43-468e-bd5f-0e29ebeda433))
(fp_line (start -0.93 -0.47) (end 0.93 -0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 94d09e6d-b9b6-4ee3-b577-296e0ea20e1a))
(fp_line (start -0.93 0.47) (end -0.93 -0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c8a60512-f4ff-4adb-aaed-7e6a5e439570))
(fp_line (start 0.93 -0.47) (end 0.93 0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 291d748c-a0fd-4e2c-a47f-ab33c577afc3))
(fp_line (start 0.93 0.47) (end -0.93 0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 712549ea-e21d-466a-a948-b58868cd6dd8))
(fp_line (start -0.525 -0.27) (end 0.525 -0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b4a1df4f-5150-4675-b474-0be5644770bc))
(fp_line (start -0.525 0.27) (end -0.525 -0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp fe49547f-953d-48ee-8398-f97f67f3d060))
(fp_line (start 0.525 -0.27) (end 0.525 0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8a0f456a-8248-4111-9276-4ae3800a2edc))
(fp_line (start 0.525 0.27) (end -0.525 0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 1d74aa00-8685-4e70-9110-c56ec4729f0b))
(pad "1" smd roundrect (at -0.51 0 270) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 7 "Net-(U1-QC)") (pintype "passive") (tstamp 1ba3acad-25d3-4853-af97-6ca0c0e03ed3))
(pad "2" smd roundrect (at 0.51 0 270) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 8 "Net-(U2-C)") (pintype "passive") (tstamp 474c5104-bc9a-455c-92ff-1f7c5406d73f))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0402_1005Metric" (layer "F.Cu")
(tstamp dab748ca-a1b7-4c7f-9844-203eb426880f)
(at 145.0183 103.251 -90)
(descr "Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(property "LCSC" "C25744")
(property "Sheetfile" "AE-7SEG-BOARD.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor")
(property "ki_keywords" "R res resistor")
(path "/a68fbaec-aa90-486f-bc85-22b0cc98b58d")
(attr smd)
(fp_text reference "R11" (at 0 -1.17 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9425c3e5-31cf-466a-90a1-fa738480d522)
)
(fp_text value "10KΩ" (at 0 1.17 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6d19a574-7944-4a63-950f-ec82ea407c13)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.26 0.26) (thickness 0.04)))
(tstamp a247485a-e94f-4c1e-9a20-314e22b2d4bc)
)
(fp_line (start -0.153641 -0.38) (end 0.153641 -0.38)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp db425f1b-cd16-4a4d-975a-70a318a542fc))
(fp_line (start -0.153641 0.38) (end 0.153641 0.38)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7ff32f77-832e-405a-aef1-326f6f2549ac))
(fp_line (start -0.93 -0.47) (end 0.93 -0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d7fa4c03-239b-47aa-9f8c-a799a6a974e6))
(fp_line (start -0.93 0.47) (end -0.93 -0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 62b05400-1880-4805-be5a-54c733751625))
(fp_line (start 0.93 -0.47) (end 0.93 0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ae8fd303-2f07-43cd-b127-42d08384d3cb))
(fp_line (start 0.93 0.47) (end -0.93 0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 741ba3e8-b8a4-4c6f-b133-275df7fcbedc))
(fp_line (start -0.525 -0.27) (end 0.525 -0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 1ea390d0-4995-4e96-be7f-41fc69126775))
(fp_line (start -0.525 0.27) (end -0.525 -0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 98d65d30-db29-4d8c-9941-0c7e3cd3e82d))
(fp_line (start 0.525 -0.27) (end 0.525 0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e0e4132f-987a-40d4-b8c2-cdaa44984114))
(fp_line (start 0.525 0.27) (end -0.525 0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp baea1d02-6fda-4392-9d52-b2b1cba3f847))
(pad "1" smd roundrect (at -0.51 0 270) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pintype "passive") (tstamp c866b46b-130f-40e9-9a8c-576e30ca2289))
(pad "2" smd roundrect (at 0.51 0 270) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 24 "/OE") (pintype "passive") (tstamp 6aca4eda-6b07-473e-ab2f-b05f7ed75bff))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_PinHeader_2.54mm:PinHeader_1x05_P2.54mm_Vertical" (layer "F.Cu")
(tstamp e633d5a2-111d-485f-bbd7-c563e3f38c13)
(at 150.7333 96.545 -90)
(descr "Through hole straight pin header, 1x05, 2.54mm pitch, single row")
(tags "Through hole pin header THT 1x05 2.54mm single row")
(property "Sheetfile" "AE-7SEG-BOARD.kicad_sch")
(property "Sheetname" "")
(property "exclude_from_bom" "")
(property "ki_description" "Generic connector, single row, 01x05, script generated (kicad-library-utils/schlib/autogen/connector/)")
(property "ki_keywords" "connector")
(path "/1cf3af5d-a224-4beb-9217-889dd6a2c447")
(attr through_hole exclude_from_pos_files exclude_from_bom)
(fp_text reference "CH1" (at 0 -2.33 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 321739d8-9034-4072-83cd-cfe264b6eeed)
)
(fp_text value "Conn_01x05_Male" (at 0 12.49 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d191e8dc-e95e-4fa5-abc4-d4ad4883540a)
)
(fp_text user "${REFERENCE}" (at 0 5.08) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c019003f-4234-4d02-9413-2a418d7e721c)
)
(fp_line (start -1.8 -1.8) (end -1.8 11.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 3047bc06-bd4b-41ca-9337-52b42671f1c7))
(fp_line (start -1.8 11.95) (end 1.8 11.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b9945219-609d-437e-950a-c1ba3425faf2))
(fp_line (start 1.8 -1.8) (end -1.8 -1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 9d0e40e4-79db-437d-98d6-8c096c39f7ae))
(fp_line (start 1.8 11.95) (end 1.8 -1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp f29f482d-1663-4068-ad3b-1641c44a6f7d))
(fp_line (start -1.27 -0.635) (end -0.635 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 35e502d2-cdbb-4774-be97-c1d23d9ca0fd))
(fp_line (start -1.27 11.43) (end -1.27 -0.635)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 1271f3c1-d19c-458d-ab31-4d8ca17be3a8))
(fp_line (start -0.635 -1.27) (end 1.27 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7261e7bd-aa2e-4539-830f-b5d4f4c658da))
(fp_line (start 1.27 -1.27) (end 1.27 11.43)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 1c4958d3-ea8e-471b-8b2a-f76090168e08))
(fp_line (start 1.27 11.43) (end -1.27 11.43)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ceb2c97e-3eb8-431a-815b-6f5982c04e76))
(pad "1" thru_hole circle (at 0 0 270) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 1 "VCC") (pinfunction "Pin_1") (pintype "passive") (tstamp bea3fd93-fde9-4dac-b835-6e40bfa233bf))
(pad "2" thru_hole oval (at 0 2.54 270) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 2 "GND") (pinfunction "Pin_2") (pintype "passive") (tstamp 33c227d5-39e9-4d00-b7ee-58bebf153ec0))
(pad "3" thru_hole oval (at 0 5.08 270) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 19 "/SCK") (pinfunction "Pin_3") (pintype "passive") (tstamp 985ebd6e-0dfb-4a65-8219-06dab379abd1))
(pad "4" thru_hole oval (at 0 7.62 270) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 20 "/SDI") (pinfunction "Pin_4") (pintype "passive") (tstamp 1360ecca-dcea-49c7-9cae-74df5e2269f5))
(pad "5" thru_hole oval (at 0 10.16 270) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 21 "/SDO") (pinfunction "Pin_5") (pintype "passive") (tstamp 29751e0c-7767-4b9e-8a38-e846c587d19b))
(model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x05_P2.54mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0402_1005Metric" (layer "F.Cu")
(tstamp f36cc58b-bc0b-42bc-b859-c5c5b8281982)
(at 145.0183 112.649 -90)
(descr "Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(property "LCSC" "C25091")
(property "Sheetfile" "AE-7SEG-BOARD.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor")
(property "ki_keywords" "R res resistor")
(path "/1ad41561-35d7-4639-95cb-73731641c61f")
(attr smd)
(fp_text reference "R5" (at 0 -1.17 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2e71e0f1-7b36-458d-b55e-f31fc446fd75)
)
(fp_text value "220Ω" (at 0 1.17 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 03a483d0-e8a1-4e28-8ffa-1ecabae85760)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.26 0.26) (thickness 0.04)))
(tstamp 2eed341e-5abb-4d9d-96d9-6cc87fa9f0dd)
)
(fp_line (start -0.153641 -0.38) (end 0.153641 -0.38)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp cded4a9f-c320-4d61-a080-deb01fc3319d))
(fp_line (start -0.153641 0.38) (end 0.153641 0.38)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b2ecedda-2ac8-4eb0-ad41-dd2e25256bbd))
(fp_line (start -0.93 -0.47) (end 0.93 -0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp cfd29f3d-63b8-4dd9-9af9-445a9e9146c1))
(fp_line (start -0.93 0.47) (end -0.93 -0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp f9e71f51-483f-411e-b276-efe04568c6ce))
(fp_line (start 0.93 -0.47) (end 0.93 0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 92caadce-43fe-469f-b736-25f47546d829))
(fp_line (start 0.93 0.47) (end -0.93 0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 053105eb-dc0b-4394-b2d0-d94558de1000))
(fp_line (start -0.525 -0.27) (end 0.525 -0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 550aa9c8-ac62-476e-8d98-a82cc5354cb8))
(fp_line (start -0.525 0.27) (end -0.525 -0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a3d16fc0-4fe6-4cc5-8673-55e590f4ec35))
(fp_line (start 0.525 -0.27) (end 0.525 0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp df8d0814-6940-4fbe-9eb8-3aa77370cea0))
(fp_line (start 0.525 0.27) (end -0.525 0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp cc9437c2-feb3-4e61-af01-cb041bff86e6))
(pad "1" smd roundrect (at -0.51 0 270) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 11 "Net-(U1-QE)") (pintype "passive") (tstamp ed953a08-92e4-4cc3-bc68-f7f818fd914a))
(pad "2" smd roundrect (at 0.51 0 270) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 12 "Net-(U2-E)") (pintype "passive") (tstamp 3f86d62c-5d7d-46ad-9378-d068df08f0e5))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0402_1005Metric" (layer "F.Cu")
(tstamp fa983aed-fcb9-47aa-b966-cfe6335493d8)
(at 142.4783 103.251 90)
(descr "Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(property "LCSC" "C25091")
(property "Sheetfile" "AE-7SEG-BOARD.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor")
(property "ki_keywords" "R res resistor")
(path "/1d7fbd2b-58e1-44d5-b08a-2a8e110b969a")
(attr smd)
(fp_text reference "R1" (at 0 -1.17 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp fa7202f4-e2b0-47ef-847f-1720c45875b4)
)
(fp_text value "220Ω" (at 0 1.17 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0865514c-58a2-4a3d-a305-d5a653c664e3)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.26 0.26) (thickness 0.04)))
(tstamp 327402f6-62bc-4bb6-819f-5d80a9aea570)
)
(fp_line (start -0.153641 -0.38) (end 0.153641 -0.38)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 57f880dc-a695-486f-8904-6f9c563cba2b))
(fp_line (start -0.153641 0.38) (end 0.153641 0.38)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2acde189-a9e7-44cd-8c86-269b739d2bcc))
(fp_line (start -0.93 -0.47) (end 0.93 -0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b3bf936c-a0f2-4af7-a4f6-738f02e18dcc))
(fp_line (start -0.93 0.47) (end -0.93 -0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ba727b96-a80e-49a5-86f1-5111fec7a6ca))
(fp_line (start 0.93 -0.47) (end 0.93 0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 47c8af05-c8a1-4c4f-bc1a-e1dd0a3697c6))
(fp_line (start 0.93 0.47) (end -0.93 0.47)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b7d9a89d-b388-442d-b097-56b52f54c822))
(fp_line (start -0.525 -0.27) (end 0.525 -0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b0c49980-211f-47d9-9608-bf4960eb7bca))
(fp_line (start -0.525 0.27) (end -0.525 -0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 949784e8-b219-452b-a76b-b487bf92a708))
(fp_line (start 0.525 -0.27) (end 0.525 0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a21b4957-f256-48b5-83f4-13320187a420))
(fp_line (start 0.525 0.27) (end -0.525 0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0bd8ca80-5ddd-4811-831c-60d828c3f9f1))
(pad "1" smd roundrect (at -0.51 0 90) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 3 "Net-(U1-QA)") (pintype "passive") (tstamp 9d3db19b-d064-4af7-ab7e-e5f36a0ec2ca))
(pad "2" smd roundrect (at 0.51 0 90) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 4 "Net-(U2-A)") (pintype "passive") (tstamp 58f08b6b-ab8a-4f49-ac68-6cae968807df))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Display_7Segment:D1X8K" (layer "B.Cu")
(tstamp 901f208e-9fe8-4152-ac75-650cbcaad897)
(at 150.7333 115.595 90)
(descr "https://ia800903.us.archive.org/24/items/CTKD1x8K/Cromatek%20D168K.pdf")
(tags "Single digit 7 segment ultra bright red")
(property "Sheetfile" "AE-7SEG-BOARD.kicad_sch")
(property "Sheetname" "")
(property "exclude_from_bom" "")
(property "ki_description" "One digit 7 segment ultra bright blue LED, low current, common cathode")
(property "ki_keywords" "display LED 7-segment")
(path "/3165eb52-11a0-4818-9f3c-c2ba880cefbc")
(attr through_hole exclude_from_pos_files exclude_from_bom)
(fp_text reference "U2" (at 0.03 2.48 270) (layer "B.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 6e3e9a8f-7597-4401-b132-f1e59b3477c2)
)
(fp_text value "7-SEGMENT-LED" (at -0.02 -12.49 270) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 05b8a258-849b-46f2-ae5e-131a028cb69e)
)
(fp_text user "${REFERENCE}" (at 7.73 -2.64 270) (layer "B.Fab")
(effects (font (size 0.35 0.35) (thickness 0.0525)) (justify mirror))
(tstamp c751d67b-d793-41ab-b2e1-3c8f8fa3a672)