-
Notifications
You must be signed in to change notification settings - Fork 0
/
tm1637_display.kicad_pcb
1358 lines (1337 loc) · 109 KB
/
tm1637_display.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 true)
(usegerberattributes false)
(usegerberadvancedattributes false)
(creategerberjobfile false)
(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 false)
(plotinvisibletext false)
(sketchpadsonfab false)
(subtractmaskfromsilk true)
(outputformat 1)
(mirror false)
(drillshape 0)
(scaleselection 1)
(outputdirectory "gerbers/")
)
)
(net 0 "")
(net 1 "unconnected-(U1-GRID6-Pad10)")
(net 2 "unconnected-(U1-GRID5-Pad11)")
(net 3 "unconnected-(U1-K1-Pad19)")
(net 4 "unconnected-(U1-K2-Pad20)")
(net 5 "GND")
(net 6 "CLK")
(net 7 "DIO_1")
(net 8 "VCC")
(net 9 "DIO_2")
(net 10 "Net-(LED1-E)")
(net 11 "Net-(LED1-D)")
(net 12 "Net-(LED1-DP)")
(net 13 "Net-(LED1-C)")
(net 14 "unconnected-(U2-GRID6-Pad10)")
(net 15 "unconnected-(U2-GRID5-Pad11)")
(net 16 "Net-(LED1-G)")
(net 17 "Net-(LED1-DIG4)")
(net 18 "Net-(LED1-B)")
(net 19 "Net-(LED1-DIG3)")
(net 20 "Net-(LED1-DIG2)")
(net 21 "Net-(LED1-F)")
(net 22 "Net-(LED1-A)")
(net 23 "unconnected-(U2-K1-Pad19)")
(net 24 "unconnected-(U2-K2-Pad20)")
(net 25 "Net-(LED1-DIG1)")
(net 26 "Net-(LED2-E)")
(net 27 "Net-(LED2-D)")
(net 28 "Net-(LED2-DP)")
(net 29 "Net-(LED2-C)")
(net 30 "Net-(LED2-G)")
(net 31 "Net-(LED2-DIG4)")
(net 32 "Net-(LED2-B)")
(net 33 "Net-(LED2-DIG3)")
(net 34 "Net-(LED2-DIG2)")
(net 35 "Net-(LED2-F)")
(net 36 "Net-(LED2-A)")
(net 37 "Net-(LED2-DIG1)")
(footprint "Package_SO:SOP-20_7.5x12.8mm_P1.27mm" (layer "F.Cu")
(tstamp 10197b93-dddf-40ea-8d5b-415e96d952ad)
(at 134.9 77.47)
(descr "SOP, 20 Pin (https://www.holtek.com/documents/10179/116723/sop20-300.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py")
(tags "SOP SO")
(property "MANUFACTURER" "Titan Micro Electronics")
(property "MAXIMUM_PACKAGE_HEIGHT" "4.31 mm")
(property "PARTREV" "v2.5")
(property "STANDARD" "IPC 7351B")
(property "Sheetfile" "tm1637_display.kicad_sch")
(property "Sheetname" "")
(path "/0ca88d3d-8d31-4770-a806-6afd6e3bceb9")
(attr smd)
(fp_text reference "U2" (at 1.6 -5.72) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5f807a27-ef6d-4ebd-965c-463425f4d74b)
)
(fp_text value "TM1637" (at 0 7.35) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp fe9412fe-fd5c-47ad-8e71-230db2f51575)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3b9f1d68-fbfa-491a-8234-88a4358f8855)
)
(fp_line (start -3.86 -6.51) (end -3.86 -6.275)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c6f9eb7a-a79d-413e-a283-f117a4043043))
(fp_line (start -3.86 -6.275) (end -5.55 -6.275)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b9266b09-6c46-45b7-9394-b9ffa7b734b2))
(fp_line (start -3.86 6.51) (end -3.86 6.275)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp eed81c06-1e26-4415-a1ff-955115ec9b39))
(fp_line (start 0 -6.51) (end -3.86 -6.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7eacd3a2-1a3e-4827-b4eb-25df4a237e1e))
(fp_line (start 0 -6.51) (end 3.86 -6.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b4b06e78-e733-4758-b4eb-2c407bfd44aa))
(fp_line (start 0 6.51) (end -3.86 6.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5867b661-ab56-4f1f-ac2e-ca8cb56151e3))
(fp_line (start 0 6.51) (end 3.86 6.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7e2bf1a9-2f78-4519-a3ce-f9c8c498bc64))
(fp_line (start 3.86 -6.51) (end 3.86 -6.275)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ff9cea22-817a-43a3-b3ff-72bb13e4d376))
(fp_line (start 3.86 6.51) (end 3.86 6.275)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 814a2257-9e84-41fe-8452-2354cb7a2a67))
(fp_line (start -5.8 -6.65) (end -5.8 6.65)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 741b394f-3115-4765-baf2-dfba57346a3a))
(fp_line (start -5.8 6.65) (end 5.8 6.65)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 37faaec4-5145-4ea2-93a5-1b8d39889e3d))
(fp_line (start 5.8 -6.65) (end -5.8 -6.65)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 66ddcce6-0a75-444f-ab25-9a1684e7eb31))
(fp_line (start 5.8 6.65) (end 5.8 -6.65)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e500f8b1-909d-44c9-aeb8-4596489d8cc7))
(fp_line (start -3.75 -5.4) (end -2.75 -6.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a6c860c1-477c-4db5-ac9a-ace9470c742a))
(fp_line (start -3.75 6.4) (end -3.75 -5.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b1614573-7cd0-4037-ace1-a1eb8740ed53))
(fp_line (start -2.75 -6.4) (end 3.75 -6.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2cf6bdcd-8a0b-4735-ac6a-f86e39d7ad0e))
(fp_line (start 3.75 -6.4) (end 3.75 6.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2f698291-60ac-4765-bf98-db7d05213ae2))
(fp_line (start 3.75 6.4) (end -3.75 6.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 025c5bf6-1d86-41fe-be71-7e1718f6eeb2))
(pad "1" smd roundrect (at -4.6 -5.715) (size 1.9 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 5 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 2e2e8a0c-5c45-47c1-aef0-73e81df6a266))
(pad "2" smd roundrect (at -4.6 -4.445) (size 1.9 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 22 "Net-(LED1-A)") (pinfunction "SEG1/KS1") (pintype "output") (tstamp 73bed4ba-fb4e-4cad-b493-698f1ac547c2))
(pad "3" smd roundrect (at -4.6 -3.175) (size 1.9 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 18 "Net-(LED1-B)") (pinfunction "SEG2/KS2") (pintype "output") (tstamp acb3ee71-7090-4ab1-b9dc-78bfe367fc4e))
(pad "4" smd roundrect (at -4.6 -1.905) (size 1.9 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 13 "Net-(LED1-C)") (pinfunction "SEG3/KS3") (pintype "output") (tstamp cc4a1547-44ee-4de2-b014-23bf0f356bc0))
(pad "5" smd roundrect (at -4.6 -0.635) (size 1.9 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 11 "Net-(LED1-D)") (pinfunction "SEG4/KS4") (pintype "output") (tstamp e488b06b-3ec9-48b6-bfe6-9b76c8dd5298))
(pad "6" smd roundrect (at -4.6 0.635) (size 1.9 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 10 "Net-(LED1-E)") (pinfunction "SEG5/KS5") (pintype "output") (tstamp 8349da30-208c-4d3e-8bbd-9dad2fa259d9))
(pad "7" smd roundrect (at -4.6 1.905) (size 1.9 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 21 "Net-(LED1-F)") (pinfunction "SEG6/KS6") (pintype "output") (tstamp 79a7fd94-7389-4595-ac91-4bf58ec620db))
(pad "8" smd roundrect (at -4.6 3.175) (size 1.9 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 16 "Net-(LED1-G)") (pinfunction "SEG7/KS7") (pintype "output") (tstamp 63561a77-414c-487e-b06b-8670edad0c7d))
(pad "9" smd roundrect (at -4.6 4.445) (size 1.9 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 12 "Net-(LED1-DP)") (pinfunction "SEG8/KS8") (pintype "output") (tstamp 696dcf59-309e-4e72-acfe-63cc8b173bd9))
(pad "10" smd roundrect (at -4.6 5.715) (size 1.9 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 14 "unconnected-(U2-GRID6-Pad10)") (pinfunction "GRID6") (pintype "output") (tstamp 9d5fcab7-deba-4a58-8901-750fccc63fd2))
(pad "11" smd roundrect (at 4.6 5.715) (size 1.9 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 15 "unconnected-(U2-GRID5-Pad11)") (pinfunction "GRID5") (pintype "output") (tstamp 6f85e30e-5701-494f-bc81-d0737eb4ba17))
(pad "12" smd roundrect (at 4.6 4.445) (size 1.9 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 17 "Net-(LED1-DIG4)") (pinfunction "GRID4") (pintype "output") (tstamp 5ad1ba68-81c4-4a38-ad5e-c575d6cf09b2))
(pad "13" smd roundrect (at 4.6 3.175) (size 1.9 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 19 "Net-(LED1-DIG3)") (pinfunction "GRID3") (pintype "output") (tstamp 9ee7406c-fbe0-46f9-8a90-75b853cd4a84))
(pad "14" smd roundrect (at 4.6 1.905) (size 1.9 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 20 "Net-(LED1-DIG2)") (pinfunction "GRID2") (pintype "output") (tstamp 2e6243ef-1cb3-4cc3-b635-3e698d384cda))
(pad "15" smd roundrect (at 4.6 0.635) (size 1.9 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 25 "Net-(LED1-DIG1)") (pinfunction "GRID1") (pintype "output") (tstamp 0dd52193-32f7-41fc-b594-ec8592f9c441))
(pad "16" smd roundrect (at 4.6 -0.635) (size 1.9 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 8 "VCC") (pinfunction "VDD") (pintype "power_in") (tstamp 3c9f8178-ab75-40b4-aa7a-d6026318694f))
(pad "17" smd roundrect (at 4.6 -1.905) (size 1.9 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 7 "DIO_1") (pinfunction "DIO") (pintype "bidirectional") (tstamp 9e3f2eea-f549-4f0f-b2c9-75d4a5e25729))
(pad "18" smd roundrect (at 4.6 -3.175) (size 1.9 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 6 "CLK") (pinfunction "CLK") (pintype "input") (tstamp e1b3ad6a-2afe-4582-a319-8d810642fa79))
(pad "19" smd roundrect (at 4.6 -4.445) (size 1.9 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 23 "unconnected-(U2-K1-Pad19)") (pinfunction "K1") (pintype "input") (tstamp 420908a4-9b17-4f57-bfea-9d74934717a5))
(pad "20" smd roundrect (at 4.6 -5.715) (size 1.9 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 24 "unconnected-(U2-K2-Pad20)") (pinfunction "K2") (pintype "input") (tstamp 61ac5885-645d-422a-891c-0e586a3711a2))
(model "${KICAD6_3DMODEL_DIR}/Package_SO.3dshapes/SOP-20_7.5x12.8mm_P1.27mm.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0603_1608Metric" (layer "F.Cu")
(tstamp 15775d4c-9f88-42dc-b081-01c10b065eb4)
(at 131.5 86.725 -90)
(descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "Sheetfile" "tm1637_display.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Unpolarized capacitor")
(property "ki_keywords" "cap capacitor")
(path "/a2b1959f-c4d1-4e74-a6ad-27ac00f70940")
(attr smd)
(fp_text reference "C2" (at 0 -1.43 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7e1feb5b-2189-4ef8-91ee-5c2420d48a00)
)
(fp_text value "100p" (at 0 1.43 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a74af0ce-afd4-460c-ad59-c6977ea95051)
)
(fp_text user "${REFERENCE}" (at -0.025 0.1 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp ce16299f-d549-461a-90b4-7b968a7d6c31)
)
(fp_line (start -0.14058 -0.51) (end 0.14058 -0.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b4dd38c8-b34e-48d4-b34e-dc456b1c3b09))
(fp_line (start -0.14058 0.51) (end 0.14058 0.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ad077d22-4489-43e5-875f-23b3ad6bf971))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 66c3305c-9aab-4f8b-81e7-702efd8ac1ee))
(fp_line (start -1.48 0.73) (end -1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp bee7ce75-f872-430e-acb4-29bec7e1de51))
(fp_line (start 1.48 -0.73) (end 1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 1b19ead1-19b4-41d3-b30f-2d2bcbb2de54))
(fp_line (start 1.48 0.73) (end -1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 03a2d87f-e665-4846-b061-50e1fa949039))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b790a80f-f4c2-4455-a921-7e9feed83436))
(fp_line (start -0.8 0.4) (end -0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b52e6260-2f31-4b8a-8d38-f61e9c5b1127))
(fp_line (start 0.8 -0.4) (end 0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 1a5a011c-0865-4fc2-8e41-60a568b7d560))
(fp_line (start 0.8 0.4) (end -0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 78a6d346-9137-46d0-98fb-2dee8e7b38b5))
(pad "1" smd roundrect (at -0.775 0 270) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 7 "DIO_1") (pintype "passive") (tstamp b88d2275-a666-4ea9-a799-e53cd688e88a))
(pad "2" smd roundrect (at 0.775 0 270) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 5 "GND") (pintype "passive") (tstamp a51ae533-09f8-4ee7-aa84-9ebdfb2a791c))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu")
(tstamp 175ecffc-ecfc-462c-8eb3-97eb3d286e0b)
(at 129 86.725 90)
(descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(property "Sheetfile" "tm1637_display.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor")
(property "ki_keywords" "R res resistor")
(path "/f3f81dbb-565b-4023-833c-0bb20555c3c9")
(attr smd)
(fp_text reference "R2" (at 0 -1.43 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp abd0e7db-4454-4c78-979c-208889ab37ba)
)
(fp_text value "10k" (at 0 1.43 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp fa65494a-e3b0-4b07-bbe9-efe8d63475fa)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp f1276cd0-47ec-42d3-ac1f-7f70b8897051)
)
(fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a1c214b7-53b1-4cc1-84fe-f05fdaf47b83))
(fp_line (start -0.237258 0.5225) (end 0.237258 0.5225)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp af89755e-b5e7-4089-921b-3fc7f93e0ac5))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a7932834-a60a-45cc-a4bd-4882bd7b1a33))
(fp_line (start -1.48 0.73) (end -1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e15377f4-0d7c-4a12-a088-8e3e73598f96))
(fp_line (start 1.48 -0.73) (end 1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 9d6cf0e1-8110-40d5-ac8a-d11dc00a0a15))
(fp_line (start 1.48 0.73) (end -1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 76ebf17b-52ec-4a8c-8080-586f30e3ac0b))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 166f9d96-4c49-4862-a4fa-477e9e2a3faf))
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2c161fdd-1449-47d9-9570-3db3ada595ad))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f61ca100-3382-4885-9ed2-74e27b03405b))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 22ea3a56-d00e-454a-87d5-92174bdb2824))
(pad "1" smd roundrect (at -0.825 0 90) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 8 "VCC") (pintype "passive") (tstamp 57ded214-b6d4-4117-bbe3-c9de03e5d763))
(pad "2" smd roundrect (at 0.825 0 90) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 7 "DIO_1") (pintype "passive") (tstamp 57148419-7295-4285-b52a-2717205a36c5))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0603_1608Metric" (layer "F.Cu")
(tstamp 31064379-1e6f-4281-98cb-7b8134f743e1)
(at 108.5 88.5 -90)
(descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "Sheetfile" "tm1637_display.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Unpolarized capacitor")
(property "ki_keywords" "cap capacitor")
(path "/6bf9fbe8-7c17-4ea4-badf-ee6429c21cc3")
(attr smd)
(fp_text reference "C8" (at 0 -1.43 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 93335fe8-564a-462c-971c-2eefee1235c4)
)
(fp_text value "100p" (at 0 1.43 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 02559fee-135a-4078-82de-2eccb8bcd923)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 64d197b9-6a5b-454d-945d-b39f1115e5ea)
)
(fp_line (start -0.14058 -0.51) (end 0.14058 -0.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 48db16bf-4249-4c32-af54-03558be0b675))
(fp_line (start -0.14058 0.51) (end 0.14058 0.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 44ee1544-5af5-4381-a709-99749e713ea3))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a3a8b6c3-cfc6-4edc-aa0c-a6813614ed92))
(fp_line (start -1.48 0.73) (end -1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 0d4531de-cad3-49a1-b83c-051ec96ccc04))
(fp_line (start 1.48 -0.73) (end 1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 86b0126b-3a3b-445a-9a44-84e4c7e120b3))
(fp_line (start 1.48 0.73) (end -1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b4225a33-8eef-4180-858f-16efe832b951))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 94b933d6-bec1-4881-8223-3183e592e1a2))
(fp_line (start -0.8 0.4) (end -0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 18fbc58d-b314-4292-bf2c-cb4340374281))
(fp_line (start 0.8 -0.4) (end 0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d7a567e6-fdba-4900-9772-66ff08235da7))
(fp_line (start 0.8 0.4) (end -0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e1378f71-4cab-404d-849c-0474ebdc17e5))
(pad "1" smd roundrect (at -0.775 0 270) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 9 "DIO_2") (pintype "passive") (tstamp c0a28571-3f13-487e-84fb-aace12cea85d))
(pad "2" smd roundrect (at 0.775 0 270) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 5 "GND") (pintype "passive") (tstamp c17750f4-e37f-4ae4-af22-e0d5ab096050))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0805_2012Metric" (layer "F.Cu")
(tstamp 3cfedbf5-4684-4443-81fe-0e87c448aead)
(at 136.75 87 90)
(descr "Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf, https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator")
(tags "capacitor")
(property "Sheetfile" "tm1637_display.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Unpolarized capacitor")
(property "ki_keywords" "cap capacitor")
(path "/c71a9a04-ffdf-472f-8f9a-f4e71211ef74")
(attr smd)
(fp_text reference "C3" (at 0 -1.68 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 84be219f-5241-46f4-9380-5a3d94de8093)
)
(fp_text value "1uF" (at 0 1.68 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7605754b-73f4-41e4-ba68-d587a2497efc)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp ec1905ec-9704-4bce-bc4a-0ef48e983fda)
)
(fp_line (start -0.261252 -0.735) (end 0.261252 -0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4fde3d53-9a57-447a-b245-2deaeb9fa0de))
(fp_line (start -0.261252 0.735) (end 0.261252 0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7067007a-377a-4efe-9522-4bbed4f946a5))
(fp_line (start -1.7 -0.98) (end 1.7 -0.98)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 2e78ce6c-dad4-4f7c-9069-47b84e0fea2e))
(fp_line (start -1.7 0.98) (end -1.7 -0.98)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 710b6092-d7bc-4002-afc1-aa3c03abc02b))
(fp_line (start 1.7 -0.98) (end 1.7 0.98)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 43236431-8aa9-42e6-80db-d983beee402d))
(fp_line (start 1.7 0.98) (end -1.7 0.98)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 2742fa98-f02f-4abe-b8c4-621b28babc43))
(fp_line (start -1 -0.625) (end 1 -0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c40303bd-df16-4f51-a98b-91183ece79ef))
(fp_line (start -1 0.625) (end -1 -0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b59884d3-3ff5-46b8-92a2-76f29bdb9af1))
(fp_line (start 1 -0.625) (end 1 0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp fc91980e-0188-4bf6-aca2-f8eb5e763654))
(fp_line (start 1 0.625) (end -1 0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 825201e9-6f09-4535-840b-a544deb05899))
(pad "1" smd roundrect (at -0.95 0 90) (size 1 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 5 "GND") (pintype "passive") (tstamp b1f5c790-58f7-478c-ace1-db822c5084f5))
(pad "2" smd roundrect (at 0.95 0 90) (size 1 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 8 "VCC") (pintype "passive") (tstamp c87419a1-6233-4bcb-b7c2-e2b77c86b5a7))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0603_1608Metric" (layer "F.Cu")
(tstamp 608b47bd-96f4-4b98-ab06-b6f0f877544e)
(at 134 86.75 90)
(descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "Sheetfile" "tm1637_display.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Unpolarized capacitor")
(property "ki_keywords" "cap capacitor")
(path "/3c1eae83-078a-4e3d-b0d0-ea45b4b3196b")
(attr smd)
(fp_text reference "C4" (at 0 -1.43 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 03ab0bed-8225-4844-be5a-ef08ae254633)
)
(fp_text value "0,1uF" (at 0 1.43 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp abf5c0f7-daf6-4def-89e4-fffe1870550f)
)
(fp_text user "${REFERENCE}" (at 0 0.4 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 1e181b10-cf8b-47fa-9381-ffb9c17ca938)
)
(fp_line (start -0.14058 -0.51) (end 0.14058 -0.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp bdbba3ce-7a3b-4de1-b918-9902ad5d7478))
(fp_line (start -0.14058 0.51) (end 0.14058 0.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7fcfe6a8-c1e9-4e6d-aabc-712dc0b40c3f))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 33d47e8f-b922-4f0a-ba9b-2674ef54776d))
(fp_line (start -1.48 0.73) (end -1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e0b48bfb-86fd-4849-b3cc-ff5e923997a5))
(fp_line (start 1.48 -0.73) (end 1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 039b1718-8e75-4db3-9b2a-dcfa6d4ba9a3))
(fp_line (start 1.48 0.73) (end -1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp f6a76916-e66a-4463-8635-78393447e3c7))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 97d93d5e-124e-4402-a34c-21ef412f58fd))
(fp_line (start -0.8 0.4) (end -0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 5227add8-1569-456e-a1fc-63333141530a))
(fp_line (start 0.8 -0.4) (end 0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp fa138fe4-97c9-4b5a-b1f3-b32e304ef2b8))
(fp_line (start 0.8 0.4) (end -0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp aafce774-57ed-4d06-9522-136ae1b27a1f))
(pad "1" smd roundrect (at -0.775 0 90) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 5 "GND") (pintype "passive") (tstamp edf22d59-9683-4d4d-99c6-7720dae1477e))
(pad "2" smd roundrect (at 0.775 0 90) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 8 "VCC") (pintype "passive") (tstamp 01cbc4c3-f0ce-41df-8796-b9f63e03df70))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Package_SO:SOP-20_7.5x12.8mm_P1.27mm" (layer "F.Cu")
(tstamp 614d3ec5-b326-4cb8-821c-7d6501fba479)
(at 106.045 77.47)
(descr "SOP, 20 Pin (https://www.holtek.com/documents/10179/116723/sop20-300.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py")
(tags "SOP SO")
(property "MANUFACTURER" "Titan Micro Electronics")
(property "MAXIMUM_PACKAGE_HEIGHT" "4.31 mm")
(property "PARTREV" "v2.5")
(property "STANDARD" "IPC 7351B")
(property "Sheetfile" "tm1637_display.kicad_sch")
(property "Sheetname" "")
(path "/66f32899-a892-451a-8d13-fd9e5ed0081a")
(attr smd)
(fp_text reference "U1" (at -0.045 -5.47) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f61a4bfb-72ee-4e64-be8d-80f046200769)
)
(fp_text value "TM1637" (at 0 7.35) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f405782e-9330-42bd-babd-ab5cf6a2ea72)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e303800b-788b-4005-8c01-8c555e91fa75)
)
(fp_line (start -3.86 -6.51) (end -3.86 -6.275)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5dc3f844-dd79-4ee1-a1a6-32eddbac8c2b))
(fp_line (start -3.86 -6.275) (end -5.55 -6.275)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e8a3fb44-8e1c-4d7b-8e48-fce0fe393e9a))
(fp_line (start -3.86 6.51) (end -3.86 6.275)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a6e715e3-425d-4511-9699-fb371367e9f0))
(fp_line (start 0 -6.51) (end -3.86 -6.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 544907ec-302b-404a-9dda-adc6c29a8502))
(fp_line (start 0 -6.51) (end 3.86 -6.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 86edf1ce-927a-4843-9520-23add814952d))
(fp_line (start 0 6.51) (end -3.86 6.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0af8b23a-8dd2-4d68-888e-30f6a206f956))
(fp_line (start 0 6.51) (end 3.86 6.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8047b1b5-c08f-4725-a1f7-35a57b315703))
(fp_line (start 3.86 -6.51) (end 3.86 -6.275)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6d1db1ca-3a98-42d0-8edd-5fc4472bb94c))
(fp_line (start 3.86 6.51) (end 3.86 6.275)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6d4cc4b3-00e0-4e88-9754-9477c886758a))
(fp_line (start -5.8 -6.65) (end -5.8 6.65)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 95b890f4-15f8-4872-91d3-185c902aab4b))
(fp_line (start -5.8 6.65) (end 5.8 6.65)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp bc00d367-8b24-4a0c-b486-858f8b387db9))
(fp_line (start 5.8 -6.65) (end -5.8 -6.65)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 057fd56b-77d4-4f8c-baec-15c0d1ec771f))
(fp_line (start 5.8 6.65) (end 5.8 -6.65)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp dfafb1b7-48b7-41f6-9b70-227d9e78867a))
(fp_line (start -3.75 -5.4) (end -2.75 -6.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 892827a4-695b-4e3b-af86-66e5f032f8f4))
(fp_line (start -3.75 6.4) (end -3.75 -5.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8792d718-8031-47f2-aaca-8aa5e49fedb1))
(fp_line (start -2.75 -6.4) (end 3.75 -6.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b39d4bbc-4684-4453-9565-9f5b7208714d))
(fp_line (start 3.75 -6.4) (end 3.75 6.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 286ae51f-fa5d-47b7-aba9-a6f1cab92833))
(fp_line (start 3.75 6.4) (end -3.75 6.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9c75d714-a48f-4fe9-8a81-a40becbfc920))
(pad "1" smd roundrect (at -4.6 -5.715) (size 1.9 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 5 "GND") (pinfunction "GND") (pintype "power_in") (tstamp cab820f0-8227-4762-beb4-8b2e18239fe6))
(pad "2" smd roundrect (at -4.6 -4.445) (size 1.9 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 36 "Net-(LED2-A)") (pinfunction "SEG1/KS1") (pintype "output") (tstamp 7b0de89d-f93a-4f0c-8c5e-e7243b16d8e6))
(pad "3" smd roundrect (at -4.6 -3.175) (size 1.9 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 32 "Net-(LED2-B)") (pinfunction "SEG2/KS2") (pintype "output") (tstamp 8ac11f6d-89e6-4c4d-8979-d8accee632e7))
(pad "4" smd roundrect (at -4.6 -1.905) (size 1.9 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 29 "Net-(LED2-C)") (pinfunction "SEG3/KS3") (pintype "output") (tstamp 7b3478fc-1831-47bc-a009-fa2b5a8b0329))
(pad "5" smd roundrect (at -4.6 -0.635) (size 1.9 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 27 "Net-(LED2-D)") (pinfunction "SEG4/KS4") (pintype "output") (tstamp f956f529-56a0-4381-8d8e-91d1c7fd0e50))
(pad "6" smd roundrect (at -4.6 0.635) (size 1.9 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 26 "Net-(LED2-E)") (pinfunction "SEG5/KS5") (pintype "output") (tstamp 44c95949-a196-4cfe-9d9a-74c15a2b9209))
(pad "7" smd roundrect (at -4.6 1.905) (size 1.9 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 35 "Net-(LED2-F)") (pinfunction "SEG6/KS6") (pintype "output") (tstamp b95b5b78-d232-47b5-b84c-41c72da24173))
(pad "8" smd roundrect (at -4.6 3.175) (size 1.9 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 30 "Net-(LED2-G)") (pinfunction "SEG7/KS7") (pintype "output") (tstamp 612e5630-7795-4e5a-9e9c-f1db10ec48ed))
(pad "9" smd roundrect (at -4.6 4.445) (size 1.9 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 28 "Net-(LED2-DP)") (pinfunction "SEG8/KS8") (pintype "output") (tstamp d27f04ac-46d8-44aa-9648-f3fcf4f00785))
(pad "10" smd roundrect (at -4.6 5.715) (size 1.9 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "unconnected-(U1-GRID6-Pad10)") (pinfunction "GRID6") (pintype "output") (tstamp e59def4d-ead8-4081-9045-cd4396691f48))
(pad "11" smd roundrect (at 4.6 5.715) (size 1.9 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "unconnected-(U1-GRID5-Pad11)") (pinfunction "GRID5") (pintype "output") (tstamp 27ea38ac-5943-4020-9a99-f9c47ce6c415))
(pad "12" smd roundrect (at 4.6 4.445) (size 1.9 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 31 "Net-(LED2-DIG4)") (pinfunction "GRID4") (pintype "output") (tstamp 4a329b96-482f-4d64-853e-248ffa6cf9dc))
(pad "13" smd roundrect (at 4.6 3.175) (size 1.9 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 33 "Net-(LED2-DIG3)") (pinfunction "GRID3") (pintype "output") (tstamp 9e6de557-43a8-4cb1-a7fc-dbd7d6e8c190))
(pad "14" smd roundrect (at 4.6 1.905) (size 1.9 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 34 "Net-(LED2-DIG2)") (pinfunction "GRID2") (pintype "output") (tstamp 454ed88f-b9f3-4f8d-9f32-d6e9f5e9d1f5))
(pad "15" smd roundrect (at 4.6 0.635) (size 1.9 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 37 "Net-(LED2-DIG1)") (pinfunction "GRID1") (pintype "output") (tstamp f0319c60-ad45-4f81-a9fa-90ad6e1b8348))
(pad "16" smd roundrect (at 4.6 -0.635) (size 1.9 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 8 "VCC") (pinfunction "VDD") (pintype "power_in") (tstamp 0d9b01c4-192c-4f7e-8181-00f78ebf02a7))
(pad "17" smd roundrect (at 4.6 -1.905) (size 1.9 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 9 "DIO_2") (pinfunction "DIO") (pintype "bidirectional") (tstamp 5100ba0e-9161-4eb6-ba78-afdf46eb28a6))
(pad "18" smd roundrect (at 4.6 -3.175) (size 1.9 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 6 "CLK") (pinfunction "CLK") (pintype "input") (tstamp 95c3dc4f-2f19-42c7-8d9c-b3bef5ed1ab4))
(pad "19" smd roundrect (at 4.6 -4.445) (size 1.9 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 3 "unconnected-(U1-K1-Pad19)") (pinfunction "K1") (pintype "input") (tstamp f1881b8c-b9b2-4ef6-8605-16afe5e18291))
(pad "20" smd roundrect (at 4.6 -5.715) (size 1.9 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 4 "unconnected-(U1-K2-Pad20)") (pinfunction "K2") (pintype "input") (tstamp 493cc899-09cd-4a69-a79c-9ca8ce544dc6))
(model "${KICAD6_3DMODEL_DIR}/Package_SO.3dshapes/SOP-20_7.5x12.8mm_P1.27mm.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0805_2012Metric" (layer "F.Cu")
(tstamp 7ee5e6a1-265c-4ec3-b19a-0d17e6a2c468)
(at 139.25 87 90)
(descr "Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf, https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator")
(tags "capacitor")
(property "Sheetfile" "tm1637_display.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Unpolarized capacitor")
(property "ki_keywords" "cap capacitor")
(path "/895adb37-37d2-4741-a43e-b9af9a8c375c")
(attr smd)
(fp_text reference "C5" (at 0 -1.68 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ede4cf49-443e-4d9e-b45a-50b0957c136b)
)
(fp_text value "1uF" (at 0 1.68 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2ce5bbf8-5f90-4573-bfb1-314ca25db71a)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp ba740308-baef-4528-a9f2-607e0a5bd152)
)
(fp_line (start -0.261252 -0.735) (end 0.261252 -0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 81d31f90-a281-40ba-adfa-5455a2bd5d83))
(fp_line (start -0.261252 0.735) (end 0.261252 0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f2bdf0bb-6ee1-428c-9e5b-02742711e8ec))
(fp_line (start -1.7 -0.98) (end 1.7 -0.98)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 277dfef3-709d-4026-842e-ae44d521f716))
(fp_line (start -1.7 0.98) (end -1.7 -0.98)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d89cd3b4-ddeb-4ef2-a1b9-fff1fd23b301))
(fp_line (start 1.7 -0.98) (end 1.7 0.98)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp f3dffa03-6cad-4cf3-9f3a-818a6bb6174d))
(fp_line (start 1.7 0.98) (end -1.7 0.98)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp de31af6c-a81f-4595-bfb6-f25ac5370905))
(fp_line (start -1 -0.625) (end 1 -0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4bff47eb-f0e5-423f-a95c-7e15f410d28c))
(fp_line (start -1 0.625) (end -1 -0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 5d78d656-0d08-472a-9df7-dbf2fd88f66a))
(fp_line (start 1 -0.625) (end 1 0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b686cb9a-7a99-4b76-af50-0b618f7c174a))
(fp_line (start 1 0.625) (end -1 0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4360f678-0713-446e-b56e-6c505ec76ce8))
(pad "1" smd roundrect (at -0.95 0 90) (size 1 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 5 "GND") (pintype "passive") (tstamp e863bc27-fa65-4330-a546-bd460ef5f8a6))
(pad "2" smd roundrect (at 0.95 0 90) (size 1 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 8 "VCC") (pintype "passive") (tstamp e72b8f3f-d807-4089-ac65-239f8aa9c960))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu")
(tstamp a6389bee-e937-4b75-8b08-92e50ef17380)
(at 104.5 88.5 90)
(descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(property "Sheetfile" "tm1637_display.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor")
(property "ki_keywords" "R res resistor")
(path "/75c875c6-83e7-459d-a3d7-77523d394336")
(attr smd)
(fp_text reference "R1" (at 0 -1.43 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e332bcbc-da8b-4b2a-9d72-d22f8edd4c89)
)
(fp_text value "10k" (at 0 1.43 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 744262c4-98bd-4bf1-9a90-01750a2a45db)
)
(fp_text user "${REFERENCE}" (at 0 -0.4125 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 844a57c7-471c-415e-9d47-642f823ed73d)
)
(fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f223596f-73eb-47bc-a18e-a13a06b511b6))
(fp_line (start -0.237258 0.5225) (end 0.237258 0.5225)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b111382f-80c7-425d-9d58-cdb01c76c1a8))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 7d3c1adf-2976-4f02-ac64-0dfd163ad6fb))
(fp_line (start -1.48 0.73) (end -1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 5980324c-ca5f-4bac-82f1-aa58d91b5b98))
(fp_line (start 1.48 -0.73) (end 1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c608bc2c-cd7e-4eb6-b56b-b4e8cc5c7a05))
(fp_line (start 1.48 0.73) (end -1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ddb40658-726c-4924-9c2d-3afc12746381))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp cf2f31d8-7e41-4e84-a837-c9f5d3bbd6a2))
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e73575c0-45be-4114-98ac-152d419ee4e7))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e0bb6218-051c-4de5-bdcb-b2e9f682f4a8))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 82c782ab-df52-4352-bcc1-075932992972))
(pad "1" smd roundrect (at -0.825 0 90) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 8 "VCC") (pintype "passive") (tstamp ccc32292-b94a-4c50-aa04-b6e228448024))
(pad "2" smd roundrect (at 0.825 0 90) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 6 "CLK") (pintype "passive") (tstamp 1260108f-e0dd-4d3a-b543-984e38f0bb76))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0603_1608Metric" (layer "F.Cu")
(tstamp ba73178b-273f-4432-a4cc-99ab3764d9a0)
(at 102.5 88.525 90)
(descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "Sheetfile" "tm1637_display.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Unpolarized capacitor")
(property "ki_keywords" "cap capacitor")
(path "/6e9fb816-2d40-4728-a24c-46a6261ecdc0")
(attr smd)
(fp_text reference "C1" (at -1.975 0 180) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7910a74e-7203-4825-b0d1-56fbbd95df85)
)
(fp_text value "100p" (at 0 1.43 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d4c803d2-3e67-4bac-a4ef-cb0447e5725c)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 8906da02-43d5-4d29-9550-b757b3bcaa2b)
)
(fp_line (start -0.14058 -0.51) (end 0.14058 -0.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5140e770-bf8c-4c32-83fb-a204fdad4c96))
(fp_line (start -0.14058 0.51) (end 0.14058 0.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ef127ab4-1190-40c7-b499-b18d654ac80e))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c2ee8d93-b73a-41eb-b0cc-27b25d6132aa))
(fp_line (start -1.48 0.73) (end -1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 18c41c9a-eb1d-48c2-951a-78febff3c22f))
(fp_line (start 1.48 -0.73) (end 1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 3eb99ca8-2b45-4749-8bc8-f10a20ce0e34))
(fp_line (start 1.48 0.73) (end -1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp f657a006-b39a-450f-bb3c-467de8598ec6))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e7816b11-830e-4a36-ab5f-2802d265b899))
(fp_line (start -0.8 0.4) (end -0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 524fc875-ff9c-4bb4-96bc-2a69ea4d29cc))
(fp_line (start 0.8 -0.4) (end 0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 6423a59c-c805-40ce-83fd-ef496b5280d6))
(fp_line (start 0.8 0.4) (end -0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 731d67ea-9b38-4aaa-a721-55b512111e45))
(pad "1" smd roundrect (at -0.775 0 90) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 5 "GND") (pintype "passive") (tstamp 56121771-4290-426b-be60-c897fd8cc787))
(pad "2" smd roundrect (at 0.775 0 90) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 6 "CLK") (pintype "passive") (tstamp 58eca6c5-1e19-4946-b3fc-b59ea21c4db0))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_PinHeader_2.54mm:PinHeader_1x05_P2.54mm_Horizontal" (layer "F.Cu")
(tstamp baa883eb-f1b3-4cab-b2c9-903db5462b64)
(at 125 85.5 -90)
(descr "Through hole angled pin header, 1x05, 2.54mm pitch, 6mm pin length, single row")
(tags "Through hole angled pin header THT 1x05 2.54mm single row")
(property "Sheetfile" "tm1637_display.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Generic connector, single row, 01x05, script generated")
(property "ki_keywords" "connector")
(path "/fa396af7-69c4-4083-a9ba-2f392df91e40")
(attr through_hole)
(fp_text reference "J1" (at 4.385 -2.27 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5523ce57-164e-454b-9ee0-9e3f1c8e9692)
)
(fp_text value "Conn_01x05_Pin" (at 4.385 12.43 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1dae2658-8679-4b56-b765-630b62390f43)
)
(fp_line (start -0.32 -0.32) (end -0.32 0.32)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9d4ec000-a555-44bf-87c1-0d2dcba76c43))
(fp_line (start -0.32 2.22) (end -0.32 2.86)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 5e61e643-0fad-4021-a09d-8b039df797b3))
(fp_line (start -0.32 4.76) (end -0.32 5.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8713fce9-d039-4564-a40a-a4b804fd0a8c))
(fp_line (start -0.32 7.3) (end -0.32 7.94)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 245bb3f2-584e-400b-ab6d-e51ae237527e))
(fp_line (start -0.32 9.84) (end -0.32 10.48)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 98d4f340-211e-456e-acdc-30a72a0b63f0))
(pad "1" thru_hole rect (at 0 0 270) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 8 "VCC") (pinfunction "Pin_1") (pintype "passive") (tstamp 9ee91313-eda8-4895-bbb4-1cbd9d43aebc))
(pad "2" thru_hole oval (at 0 2.54 270) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 5 "GND") (pinfunction "Pin_2") (pintype "passive") (tstamp 23b7ef9e-8546-4d8e-9e7e-fa07863b6e04))
(pad "3" thru_hole oval (at 0 5.08 270) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 6 "CLK") (pinfunction "Pin_3") (pintype "passive") (tstamp 5bc98828-d715-4e57-a180-40a61c4a68d7))
(pad "4" thru_hole oval (at 0 7.62 270) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 7 "DIO_1") (pinfunction "Pin_4") (pintype "passive") (tstamp 401ddc70-df6f-477a-a53e-a81a337c53e9))
(pad "5" thru_hole oval (at 0 10.16 270) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 9 "DIO_2") (pinfunction "Pin_5") (pintype "passive") (tstamp b290b052-801a-427a-9e9b-df3afe7db083))
(model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x05_P2.54mm_Horizontal.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu")
(tstamp bc8e2757-9caa-467c-b841-c2959c15e970)
(at 106.5 88.5 90)
(descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(property "Sheetfile" "tm1637_display.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor")
(property "ki_keywords" "R res resistor")
(path "/5a54da3a-f282-4ab5-b8aa-1a2b27049529")
(attr smd)
(fp_text reference "R4" (at 0 -1.43 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 61f2e28b-d950-4dc8-b850-2ea2838cf377)
)
(fp_text value "10k" (at 0 1.43 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3a8d36e6-a1f6-4b08-9566-9343a1b0d90d)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 639ff2ba-d686-4441-b50f-6ddefd09af4a)
)
(fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7467ccc7-4bea-4fe1-a2c8-8791e4eb4af1))
(fp_line (start -0.237258 0.5225) (end 0.237258 0.5225)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 496dcfb7-0e84-48f5-9759-a51dae643e07))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 790ee1d8-db5b-469a-9067-c9a812ece2bd))
(fp_line (start -1.48 0.73) (end -1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d42c8d1c-64bd-4423-94fa-628998eba1cd))
(fp_line (start 1.48 -0.73) (end 1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ef076ca4-86f8-4171-8753-e6fb784d1b54))
(fp_line (start 1.48 0.73) (end -1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 076871fe-ec86-4448-85fd-03d09b20f835))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a47f5039-512e-48a6-ba3a-dc029140148e))
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b2b7cc40-8747-457b-9c3d-b1c3146fb081))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b5d0e517-7678-40f3-81b2-77428c9f140a))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 70922095-db23-42c9-bdc3-7fef5c3cc524))
(pad "1" smd roundrect (at -0.825 0 90) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 8 "VCC") (pintype "passive") (tstamp c19dccc3-9176-44ec-b49c-8e5fc44a06ef))
(pad "2" smd roundrect (at 0.825 0 90) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 9 "DIO_2") (pintype "passive") (tstamp 37751543-b3ad-460c-b956-e9dc4fe17459))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "7segment_2841BS:2841BS" (layer "B.Cu")
(tstamp 65d39b7a-3602-4ff7-8bff-52ad68ed34cf)
(at 126.5 89.62 180)
(property "Sheetfile" "tm1637_display.kicad_sch")
(property "Sheetname" "")
(path "/30703b6c-9038-4095-9ed6-c6ede9855859")
(attr through_hole)
(fp_text reference "LED2" (at 2.54 5.08 unlocked) (layer "B.SilkS") hide
(effects (font (size 1 1) (thickness 0.1)) (justify mirror))
(tstamp b8abdbb3-f3f4-4a04-a74f-437b158c1ccb)
)
(fp_text value "2841BS" (at 10.16 5.08 unlocked) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 87716cdf-2004-48a3-8294-ce0280051f17)
)
(fp_text user "${REFERENCE}" (at 5.08 2.54 unlocked) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 837b0573-4a5c-4124-b0d5-6dc54ec42849)
)
(fp_line (start -11 -1.3) (end 5 -1.3)
(stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 84c45ec2-d58d-47be-9262-31ff4cc73a67))
(fp_line (start -11 8.9) (end -11 -1.3)
(stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 06b00131-beb8-42df-aff9-bf57c8e761c8))
(fp_line (start 5 -1.3) (end 21.1 -1.3)
(stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 234ea550-f501-48ce-9173-dc9051c0845b))
(fp_line (start 21.1 -1.3) (end 21.1 8.9)
(stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp baa83f89-7bb7-41e9-9f1c-ef09fd7a850f))
(fp_line (start 21.1 8.9) (end -11 8.9)
(stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 6416872c-51b7-4170-bba6-913e99120be0))
(pad "1" thru_hole circle (at 0 0 180) (size 1.2 1.2) (drill 0.6) (layers "*.Cu" "*.Mask")
(net 26 "Net-(LED2-E)") (pinfunction "E") (pintype "bidirectional") (tstamp b76ccc06-f59b-4f52-bcd9-06f2d4edffc8))
(pad "2" thru_hole circle (at 2.54 0 180) (size 1.2 1.2) (drill 0.6) (layers "*.Cu" "*.Mask")
(net 27 "Net-(LED2-D)") (pinfunction "D") (pintype "bidirectional") (tstamp 5b77aa60-57e0-4e83-a740-5dc3358e3f78))
(pad "3" thru_hole circle (at 5.08 0 180) (size 1.2 1.2) (drill 0.6) (layers "*.Cu" "*.Mask")
(net 28 "Net-(LED2-DP)") (pinfunction "DP") (pintype "bidirectional") (tstamp 529b49e6-0a01-4fc4-a307-fd8c32e2a972))
(pad "4" thru_hole circle (at 7.62 0 180) (size 1.2 1.2) (drill 0.6) (layers "*.Cu" "*.Mask")
(net 29 "Net-(LED2-C)") (pinfunction "C") (pintype "power_out") (tstamp c1860366-480b-4da8-ae67-50577d39c97d))
(pad "5" thru_hole circle (at 10.16 0 180) (size 1.2 1.2) (drill 0.6) (layers "*.Cu" "*.Mask")
(net 30 "Net-(LED2-G)") (pinfunction "G") (pintype "bidirectional") (tstamp 37f485b7-ea38-4d69-955f-6654cfc9b167))
(pad "6" thru_hole circle (at 12.7 0 180) (size 1.2 1.2) (drill 0.6) (layers "*.Cu" "*.Mask")
(net 31 "Net-(LED2-DIG4)") (pinfunction "DIG4") (pintype "power_in") (tstamp 8e2ca5c4-f4b2-4498-a88c-476e15a40a0b))
(pad "7" thru_hole circle (at 12.7 7.62 180) (size 1.2 1.2) (drill 0.6) (layers "*.Cu" "*.Mask")
(net 32 "Net-(LED2-B)") (pinfunction "B") (pintype "power_out") (tstamp b6d3873c-1f81-4070-a1aa-0f16669c4fb7))
(pad "8" thru_hole circle (at 10.16 7.62 180) (size 1.2 1.2) (drill 0.6) (layers "*.Cu" "*.Mask")
(net 33 "Net-(LED2-DIG3)") (pinfunction "DIG3") (pintype "power_in") (tstamp 3b698f02-a365-42fe-a95d-90ccfc57fb2b))
(pad "9" thru_hole circle (at 7.62 7.62 180) (size 1.2 1.2) (drill 0.6) (layers "*.Cu" "*.Mask")
(net 34 "Net-(LED2-DIG2)") (pinfunction "DIG2") (pintype "power_in") (tstamp a16c96dc-7ab7-45c2-9b45-c04f829a6aba))
(pad "10" thru_hole circle (at 5.08 7.62 180) (size 1.2 1.2) (drill 0.6) (layers "*.Cu" "*.Mask")
(net 35 "Net-(LED2-F)") (pinfunction "F") (pintype "bidirectional") (tstamp bbfb4de8-dfe6-4be5-b6d2-e8aa207edac7))
(pad "11" thru_hole circle (at 2.54 7.62 180) (size 1.2 1.2) (drill 0.6) (layers "*.Cu" "*.Mask")
(net 36 "Net-(LED2-A)") (pinfunction "A") (pintype "power_out") (tstamp edf7f02e-6f10-4349-8d47-4d64f90d3396))
(pad "12" thru_hole circle (at 0 7.62 180) (size 1.2 1.2) (drill 0.6) (layers "*.Cu" "*.Mask")
(net 37 "Net-(LED2-DIG1)") (pinfunction "DIG1") (pintype "power_in") (tstamp adf760a8-afc4-4e53-869c-bd74fa37d1b5))
)
(footprint "7segment_2841BS:2841BS" (layer "B.Cu")
(tstamp 9d9904eb-ed3a-4bbf-8224-891ff62d9038)
(at 126.5 79.12 180)
(property "Sheetfile" "tm1637_display.kicad_sch")
(property "Sheetname" "")
(path "/ad521102-d0ca-4d92-8c58-f8cfddecabf2")
(attr through_hole)
(fp_text reference "LED1" (at 2.64 15.655 unlocked) (layer "B.SilkS") hide
(effects (font (size 1 1) (thickness 0.1)) (justify mirror))
(tstamp ababb714-9058-49bd-9c49-065fb4e91996)
)
(fp_text value "2841BS" (at 10.26 15.655 unlocked) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 22efc68c-bc22-4f07-931f-50997cbea764)
)
(fp_text user "${REFERENCE}" (at 5.38 13.115 unlocked) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp dcead2e0-f8b2-4470-ac6c-4dd4b68b6da2)
)
(fp_line (start -11 -1.3) (end 5 -1.3)
(stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 7faa3ec4-ffea-4403-8aff-b6256e1cac67))
(fp_line (start -11 8.9) (end -11 -1.3)
(stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 1dcc28ff-07a8-41e0-8f10-ddfc606a8b8e))
(fp_line (start 5 -1.3) (end 21.1 -1.3)
(stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 6256fd09-9c1c-4040-b583-7e20037ded11))
(fp_line (start 21.1 -1.3) (end 21.1 8.9)
(stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 995c7f4c-2b80-4b3b-adb3-b5096aab4bf3))
(fp_line (start 21.1 8.9) (end -11 8.9)
(stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 1c17f2dd-a3b3-4c43-8207-2d1d6d2c6324))
(pad "1" thru_hole circle (at 0 0 180) (size 1.2 1.2) (drill 0.6) (layers "*.Cu" "*.Mask")
(net 10 "Net-(LED1-E)") (pinfunction "E") (pintype "bidirectional") (tstamp 5bc572a9-9c85-4bdc-9fcd-835c00a7ab14))
(pad "2" thru_hole circle (at 2.54 0 180) (size 1.2 1.2) (drill 0.6) (layers "*.Cu" "*.Mask")
(net 11 "Net-(LED1-D)") (pinfunction "D") (pintype "bidirectional") (tstamp a97319b3-c868-4d70-9e44-e5727167ca17))
(pad "3" thru_hole circle (at 5.08 0 180) (size 1.2 1.2) (drill 0.6) (layers "*.Cu" "*.Mask")
(net 12 "Net-(LED1-DP)") (pinfunction "DP") (pintype "bidirectional") (tstamp 4ce100e0-ebe3-4726-a97b-8c5ead5db438))
(pad "4" thru_hole circle (at 7.62 0 180) (size 1.2 1.2) (drill 0.6) (layers "*.Cu" "*.Mask")
(net 13 "Net-(LED1-C)") (pinfunction "C") (pintype "power_out") (tstamp 569de562-f62a-410a-8ec3-69778e1d7cb0))
(pad "5" thru_hole circle (at 10.16 0 180) (size 1.2 1.2) (drill 0.6) (layers "*.Cu" "*.Mask")
(net 16 "Net-(LED1-G)") (pinfunction "G") (pintype "bidirectional") (tstamp f93a5f39-3949-47a7-9bef-84818ebab8ca))
(pad "6" thru_hole circle (at 12.7 0 180) (size 1.2 1.2) (drill 0.6) (layers "*.Cu" "*.Mask")
(net 17 "Net-(LED1-DIG4)") (pinfunction "DIG4") (pintype "power_in") (tstamp 37f9911b-c6fa-4aaf-9ce8-08c987cf1e53))
(pad "7" thru_hole circle (at 12.7 7.62 180) (size 1.2 1.2) (drill 0.6) (layers "*.Cu" "*.Mask")
(net 18 "Net-(LED1-B)") (pinfunction "B") (pintype "power_out") (tstamp e382ce62-37d4-4fcf-8991-f9c60900a2b9))
(pad "8" thru_hole circle (at 10.16 7.62 180) (size 1.2 1.2) (drill 0.6) (layers "*.Cu" "*.Mask")
(net 19 "Net-(LED1-DIG3)") (pinfunction "DIG3") (pintype "power_in") (tstamp 660299a1-d1e8-41cf-88a4-e5399f20d427))
(pad "9" thru_hole circle (at 7.62 7.62 180) (size 1.2 1.2) (drill 0.6) (layers "*.Cu" "*.Mask")
(net 20 "Net-(LED1-DIG2)") (pinfunction "DIG2") (pintype "power_in") (tstamp d17a6738-5cc0-464e-a63a-4a1e0d19c8b9))
(pad "10" thru_hole circle (at 5.08 7.62 180) (size 1.2 1.2) (drill 0.6) (layers "*.Cu" "*.Mask")
(net 21 "Net-(LED1-F)") (pinfunction "F") (pintype "bidirectional") (tstamp 0aa8c03a-dfc9-4f67-a7b3-77e2362cadf0))
(pad "11" thru_hole circle (at 2.54 7.62 180) (size 1.2 1.2) (drill 0.6) (layers "*.Cu" "*.Mask")
(net 22 "Net-(LED1-A)") (pinfunction "A") (pintype "power_out") (tstamp f2b8d354-a469-4b1f-a9ea-9af33e63b764))
(pad "12" thru_hole circle (at 0 7.62 180) (size 1.2 1.2) (drill 0.6) (layers "*.Cu" "*.Mask")
(net 25 "Net-(LED1-DIG1)") (pinfunction "DIG1") (pintype "power_in") (tstamp 873d0934-93b1-4064-8acc-0956f4403b9a))
)
(gr_rect (start 100 70) (end 141 91)
(stroke (width 0.1) (type default)) (fill none) (layer "Edge.Cuts") (tstamp c6af58f5-bc06-478c-82b3-18239080fd47))
(gr_text "GND" (at 123.25 89.5 90) (layer "F.SilkS") (tstamp 2a849b4e-9dad-4492-88ae-551aa7a2eed9)
(effects (font (size 1 1) (thickness 0.15)) (justify left bottom))
)
(gr_text "D1" (at 118 88.5 90) (layer "F.SilkS") (tstamp 33772982-8f15-4a2b-941b-a888780d5c66)
(effects (font (size 1 1) (thickness 0.15)) (justify left bottom))
)
(gr_text "CLK" (at 120.5 89.25 90) (layer "F.SilkS") (tstamp 394f7cda-56cc-4f42-a7a3-5f40f07530a0)
(effects (font (size 1 1) (thickness 0.15)) (justify left bottom))
)
(gr_text "VCC" (at 125.75 89.25 90) (layer "F.SilkS") (tstamp 463c1948-2dc3-4112-a819-32439db93fdb)
(effects (font (size 1 1) (thickness 0.15)) (justify left bottom))
)
(gr_text "D2" (at 115.25 88.5 90) (layer "F.SilkS") (tstamp 5e48a74d-abf2-4279-8e44-881a9340f012)
(effects (font (size 1 1) (thickness 0.15)) (justify left bottom))
)
(segment (start 128.755 71.755) (end 128.5 71.5) (width 0.25) (layer "F.Cu") (net 5) (tstamp 0891f446-5d33-430d-bef6-8061e14e79af))
(segment (start 101.445 71.755) (end 103.245 71.755) (width 0.4) (layer "F.Cu") (net 5) (tstamp 13d71109-9f0b-47bd-a3f9-24b899a45f84))
(segment (start 131.5 87.75) (end 131.25 87.5) (width 0.4) (layer "F.Cu") (net 5) (tstamp 2fb89b2f-0436-4e60-bbd1-1b0502868e26))
(segment (start 108.5 89.275) (end 108.275 89.275) (width 0.25) (layer "F.Cu") (net 5) (tstamp 3cbd8771-0394-4281-ac74-5d2897684ab5))
(segment (start 135.7 87.95) (end 135.25 87.5) (width 0.4) (layer "F.Cu") (net 5) (tstamp 43e6cf12-a5c0-46a3-8b99-ad97f986867c))
(segment (start 111.987701 89.512299) (end 110.987701 90.512299) (width 0.7) (layer "F.Cu") (net 5) (tstamp 57263bee-ae1b-4f96-b616-2a94ee317a87))
(segment (start 135.25 87.5) (end 134.025 87.5) (width 0.4) (layer "F.Cu") (net 5) (tstamp 686db334-faa3-4041-b177-e2a9f096e10f))
(segment (start 134.025 87.5) (end 134 87.525) (width 0.25) (layer "F.Cu") (net 5) (tstamp 69fbb5d0-32a7-459e-8c19-cf557ada412c))