-
Notifications
You must be signed in to change notification settings - Fork 1
/
rgb2comp_smd.kicad_pcb
8727 lines (8682 loc) · 389 KB
/
rgb2comp_smd.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 "RGB to Component")
(rev "1.0")
(company "Shalx")
)
(layers
(0 "F.Cu" signal)
(31 "B.Cu" signal)
(32 "B.Adhes" user "B.Adhesive")
(33 "F.Adhes" user "F.Adhesive")
(34 "B.Paste" user)
(35 "F.Paste" user)
(36 "B.SilkS" user "B.Silkscreen")
(37 "F.SilkS" user "F.Silkscreen")
(38 "B.Mask" user)
(39 "F.Mask" user)
(40 "Dwgs.User" user "User.Drawings")
(41 "Cmts.User" user "User.Comments")
(42 "Eco1.User" user "User.Eco1")
(43 "Eco2.User" user "User.Eco2")
(44 "Edge.Cuts" user)
(45 "Margin" user)
(46 "B.CrtYd" user "B.Courtyard")
(47 "F.CrtYd" user "F.Courtyard")
(48 "B.Fab" user)
(49 "F.Fab" user)
(50 "User.1" user)
(51 "User.2" user)
(52 "User.3" user)
(53 "User.4" user)
(54 "User.5" user)
(55 "User.6" user)
(56 "User.7" user)
(57 "User.8" user)
(58 "User.9" user)
)
(setup
(stackup
(layer "F.SilkS" (type "Top Silk Screen"))
(layer "F.Paste" (type "Top Solder Paste"))
(layer "F.Mask" (type "Top Solder Mask") (thickness 0.01))
(layer "F.Cu" (type "copper") (thickness 0.035))
(layer "dielectric 1" (type "core") (thickness 1.51) (material "FR4") (epsilon_r 4.5) (loss_tangent 0.02))
(layer "B.Cu" (type "copper") (thickness 0.035))
(layer "B.Mask" (type "Bottom Solder Mask") (thickness 0.01))
(layer "B.Paste" (type "Bottom Solder Paste"))
(layer "B.SilkS" (type "Bottom Silk Screen"))
(copper_finish "None")
(dielectric_constraints no)
)
(pad_to_mask_clearance 0)
(pcbplotparams
(layerselection 0x00010fc_ffffffff)
(plot_on_all_layers_selection 0x0000000_00000000)
(disableapertmacros false)
(usegerberextensions false)
(usegerberattributes true)
(usegerberadvancedattributes true)
(creategerberjobfile true)
(dashed_line_dash_ratio 12.000000)
(dashed_line_gap_ratio 3.000000)
(svgprecision 6)
(plotframeref false)
(viasonmask false)
(mode 1)
(useauxorigin true)
(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 "/Sync")
(net 2 "/R")
(net 3 "/G")
(net 4 "/B")
(net 5 "GND")
(net 6 "+5V")
(net 7 "Net-(U1-VIDEO)")
(net 8 "Net-(V1-R)")
(net 9 "Net-(V1-G)")
(net 10 "Net-(V1-B)")
(net 11 "/Laudio")
(net 12 "/Raudio")
(net 13 "/Composite")
(net 14 "/Y")
(net 15 "/R-Y")
(net 16 "/B-Y")
(net 17 "Net-(U1-INT)")
(net 18 "Net-(V1-VIDEO_IN)")
(net 19 "Net-(D1-CH1_IN)")
(net 20 "/B-Y Raw")
(net 21 "/R-Y Raw")
(net 22 "/B-Y Amp")
(net 23 "/R-Y Amp")
(net 24 "/Y Amp")
(net 25 "Net-(C6-Pad1)")
(net 26 "/Y+S")
(net 27 "Net-(C10-Pad1)")
(net 28 "/Y Raw")
(net 29 "Net-(D1-CH2_IN)")
(net 30 "Net-(D1-CH3_IN)")
(net 31 "Net-(V1-B-Y_in)")
(net 32 "Net-(V1-R-Y_in)")
(net 33 "Net-(V1-Y_in)")
(net 34 "unconnected-(D1-CH4_IN-Pad4)")
(net 35 "unconnected-(D1-NC-Pad7)")
(net 36 "unconnected-(D1-NC-Pad8)")
(net 37 "unconnected-(D1-CH4_OUT-Pad11)")
(net 38 "Net-(U1-CSYNC)")
(net 39 "Net-(V1-Y)")
(net 40 "unconnected-(U1-FRAME-Pad3)")
(net 41 "unconnected-(U1-BURST-Pad5)")
(net 42 "unconnected-(U1-O{slash}E-Pad7)")
(net 43 "unconnected-(R2-Pad3)")
(net 44 "unconnected-(R3-Pad3)")
(net 45 "unconnected-(R4-Pad3)")
(footprint "Connector_PinHeader_2.54mm:PinHeader_2x06_P2.54mm_Vertical" (layer "F.Cu")
(tstamp 00d77cf8-cd0a-4933-8706-42eb395d0b8f)
(at 165 77.66 -90)
(descr "Through hole straight pin header, 2x06, 2.54mm pitch, double rows")
(tags "Through hole pin header THT 2x06 2.54mm double row")
(property "Sheetfile" "rgb2comp_smd.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Generic connector, double row, 02x06, odd/even pin numbering scheme (row 1 odd numbers, row 2 even numbers), script generated (kicad-library-utils/schlib/autogen/connector/)")
(property "ki_keywords" "connector")
(path "/b9a9ed2e-555b-447e-8da1-46238b144215")
(attr through_hole)
(fp_text reference "J2" (at 1.27 -2.33 -270) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1ca380fe-9238-4612-b7fd-0721479b8822)
)
(fp_text value "OUTPUT" (at -0.635 -2.54 -270) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 944eeed6-a04d-4b8b-9e48-7ccab2300a59)
)
(fp_text user "${REFERENCE}" (at 1.27 6.35) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 058217db-50b0-4aa1-8ad7-33097305b47c)
)
(fp_line (start -1.33 -1.33) (end 0 -1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8caef5ba-bf77-4668-90c6-4f432c221063))
(fp_line (start -1.33 0) (end -1.33 -1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 53951c41-e5e8-40ae-931c-fca006278f3e))
(fp_line (start -1.33 1.27) (end -1.33 14.03)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d8dc0327-071e-47e2-b6b4-e87c46e88d1e))
(fp_line (start -1.33 1.27) (end 1.27 1.27)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 511d02f1-ac85-4685-aaf9-ab81410aaa43))
(fp_line (start -1.33 14.03) (end 3.87 14.03)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp dce79a73-c781-4c8e-a2d0-877c7a083e8b))
(fp_line (start 1.27 -1.33) (end 3.87 -1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8e5eef38-e9f9-466c-8a41-b4e5798544f1))
(fp_line (start 1.27 1.27) (end 1.27 -1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 01ea4c47-16c7-4ce7-9224-609923341b57))
(fp_line (start 3.87 -1.33) (end 3.87 14.03)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 61452d76-f290-48b5-b516-623190b65497))
(fp_line (start -1.8 -1.8) (end -1.8 14.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 9f9e3cea-0320-4c8a-b0b0-aa93f70a47ef))
(fp_line (start -1.8 14.5) (end 4.35 14.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ceb4bf9a-0816-43b4-83a7-e583f2d178de))
(fp_line (start 4.35 -1.8) (end -1.8 -1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 1c7a1af0-6c7f-4fc5-95f1-900ab388032d))
(fp_line (start 4.35 14.5) (end 4.35 -1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 2f152ca9-2893-4278-a8ff-93df0e94efcb))
(fp_line (start -1.27 0) (end 0 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 5e4a2106-df61-4cdd-86ef-b7acf130d726))
(fp_line (start -1.27 13.97) (end -1.27 0)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f917da95-476f-42c5-9d91-2653090d884c))
(fp_line (start 0 -1.27) (end 3.81 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 748cc338-6692-4fe7-a079-39d71fdd1c7e))
(fp_line (start 3.81 -1.27) (end 3.81 13.97)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp acd1419c-6b01-4294-8f8f-ef23c39bd0c5))
(fp_line (start 3.81 13.97) (end -1.27 13.97)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9332219b-503a-4dba-b8bf-2aeb905965c8))
(pad "1" thru_hole rect (at 0 0 270) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 5 "GND") (pinfunction "Pin_1") (pintype "passive") (tstamp 2661f1fa-bb23-481f-a8b8-69d8c267eb8e))
(pad "2" thru_hole oval (at 2.54 0 270) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 15 "/R-Y") (pinfunction "Pin_2") (pintype "passive") (tstamp 09c69468-cb17-430c-a388-8a257bd8249c))
(pad "3" thru_hole oval (at 0 2.54 270) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 5 "GND") (pinfunction "Pin_3") (pintype "passive") (tstamp 9baf1a1e-4139-40c7-90f6-8c6fd70382dc))
(pad "4" thru_hole oval (at 2.54 2.54 270) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 14 "/Y") (pinfunction "Pin_4") (pintype "passive") (tstamp 30b3a6fc-2393-46a5-87c6-2bbff8a0fb6b))
(pad "5" thru_hole oval (at 0 5.08 270) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 5 "GND") (pinfunction "Pin_5") (pintype "passive") (tstamp 00b7f25d-9d76-4d0e-bbcf-92d01adac31a))
(pad "6" thru_hole oval (at 2.54 5.08 270) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 16 "/B-Y") (pinfunction "Pin_6") (pintype "passive") (tstamp 79954e67-3933-4731-9dd0-0bffe62822e1))
(pad "7" thru_hole oval (at 0 7.62 270) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 5 "GND") (pinfunction "Pin_7") (pintype "passive") (tstamp 24d746d7-20c5-484b-b5fb-d1d764bbccda))
(pad "8" thru_hole oval (at 2.54 7.62 270) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 12 "/Raudio") (pinfunction "Pin_8") (pintype "passive") (tstamp 981f4051-3dc7-44ef-9af9-cb0f121f3a74))
(pad "9" thru_hole oval (at 0 10.16 270) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 5 "GND") (pinfunction "Pin_9") (pintype "passive") (tstamp a57dfc5d-ea5b-4b59-9cf3-4b7b220e26f2))
(pad "10" thru_hole oval (at 2.54 10.16 270) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 11 "/Laudio") (pinfunction "Pin_10") (pintype "passive") (tstamp e6198637-136c-437e-8e2e-b38518f06125))
(pad "11" thru_hole oval (at 0 12.7 270) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 5 "GND") (pinfunction "Pin_11") (pintype "passive") (tstamp bc5848e9-0397-4d54-9bea-7855425ee9a7))
(pad "12" thru_hole oval (at 2.54 12.7 270) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 13 "/Composite") (pinfunction "Pin_12") (pintype "passive") (tstamp a447be27-7210-4cb8-a941-429c9fc4748d))
(model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_2x06_P2.54mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Package_SO:SO-8_3.9x4.9mm_P1.27mm" (layer "F.Cu")
(tstamp 077c7713-5f8a-46ad-9e1e-0a158b076dfa)
(at 140.435 81.375 -90)
(descr "SO, 8 Pin (https://www.nxp.com/docs/en/data-sheet/PCF8523.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py")
(tags "SO SO")
(property "Sheetfile" "rgb2comp_smd.kicad_sch")
(property "Sheetname" "")
(path "/aad595b9-c6ad-442e-b934-6c7ef27bf2eb")
(attr smd)
(fp_text reference "U1" (at 0 0 -90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 41298725-e411-46a8-b45e-299231fb8338)
)
(fp_text value "LM1881" (at 0 3.4 -90) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 541ec923-ecd5-49ab-aa55-a229372a8097)
)
(fp_text user "${REFERENCE}" (at 0 0 -90) (layer "F.Fab") hide
(effects (font (size 0.98 0.98) (thickness 0.15)))
(tstamp 922b07a1-0fed-4fcf-bacd-53d4e0d3310c)
)
(fp_line (start 0 -2.56) (end -3.45 -2.56)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ca95e9c7-7c0f-4bd4-98d6-a9e7184c852b))
(fp_line (start 0 -2.56) (end 1.95 -2.56)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 874906b9-556e-4ea6-9c44-8e7e262edb12))
(fp_line (start 0 2.56) (end -1.95 2.56)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f3f4fbe3-c564-4a8b-9913-8e0818935109))
(fp_line (start 0 2.56) (end 1.95 2.56)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e9a651df-927d-4cf9-89ba-46821d4c6af5))
(fp_line (start -3.7 -2.7) (end -3.7 2.7)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 0150ee3d-1e30-43d0-bc2f-5669793231f1))
(fp_line (start -3.7 2.7) (end 3.7 2.7)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp f1f9cda5-7958-4333-a6ac-22a253d2a79f))
(fp_line (start 3.7 -2.7) (end -3.7 -2.7)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp f25e0ece-10b2-4fd3-a3a4-bbb61bb65b1f))
(fp_line (start 3.7 2.7) (end 3.7 -2.7)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e135bd5e-8708-4bf2-9cc4-fbe9fb470023))
(fp_line (start -1.95 -1.475) (end -0.975 -2.45)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2b58b5dc-44e8-4cf1-ba64-cbb15ae9869d))
(fp_line (start -1.95 2.45) (end -1.95 -1.475)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 1e9021de-c125-4a4f-9124-dd16d7982cb9))
(fp_line (start -0.975 -2.45) (end 1.95 -2.45)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 05467abf-750b-42b0-a50b-0f1a16162525))
(fp_line (start 1.95 -2.45) (end 1.95 2.45)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 98669d71-33c3-4fe7-bed2-38dd7388e525))
(fp_line (start 1.95 2.45) (end -1.95 2.45)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f17e92a9-30e0-4fe6-98ab-9a1294b0b35d))
(pad "1" smd roundrect (at -2.575 -1.905 270) (size 1.75 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 38 "Net-(U1-CSYNC)") (pinfunction "CSYNC") (pintype "output") (tstamp 8bc3ce5c-f855-4b59-a362-883bd6535b66))
(pad "2" smd roundrect (at -2.575 -0.635 270) (size 1.75 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 7 "Net-(U1-VIDEO)") (pinfunction "VIDEO") (pintype "input") (tstamp ee1e902b-331b-4e33-a72b-0c84dadb1075))
(pad "3" smd roundrect (at -2.575 0.635 270) (size 1.75 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 40 "unconnected-(U1-FRAME-Pad3)") (pinfunction "FRAME") (pintype "output+no_connect") (tstamp d2ab31ef-588f-4380-bc04-42acd0b83c1c))
(pad "4" smd roundrect (at -2.575 1.905 270) (size 1.75 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 5 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 97d9a6fe-e447-4f96-bd0d-77c49a7c1418))
(pad "5" smd roundrect (at 2.575 1.905 270) (size 1.75 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 41 "unconnected-(U1-BURST-Pad5)") (pinfunction "BURST") (pintype "output+no_connect") (tstamp 81e24713-fcd0-4062-b31f-f8b92f1c17f7))
(pad "6" smd roundrect (at 2.575 0.635 270) (size 1.75 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 17 "Net-(U1-INT)") (pinfunction "INT") (pintype "input") (tstamp dbc64fa5-43a8-4a3f-9537-eb115f7d58f3))
(pad "7" smd roundrect (at 2.575 -0.635 270) (size 1.75 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 42 "unconnected-(U1-O{slash}E-Pad7)") (pinfunction "O/E") (pintype "output+no_connect") (tstamp f1cfd3e8-d646-41e1-ad0c-198ae090cea0))
(pad "8" smd roundrect (at 2.575 -1.905 270) (size 1.75 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 6 "+5V") (pinfunction "VCC") (pintype "power_in") (tstamp 049c8541-d9bf-4c61-9d89-b2a024299ee2))
(model "${KICAD6_3DMODEL_DIR}/Package_SO.3dshapes/SO-8_3.9x4.9mm_P1.27mm.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Library:EVM3ESX50B" (layer "F.Cu")
(tstamp 22a8e1bc-22fb-4e62-add4-2ae0c07ce05c)
(at 133.56 90.1)
(property "Sheetfile" "rgb2comp_smd.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Potentiometer, US symbol")
(property "ki_keywords" "resistor variable")
(path "/db3e5965-684b-49e0-a70b-68e7d0445943")
(attr smd)
(fp_text reference "R3" (at 0 -3.9 unlocked) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3249c14f-39bd-41e5-9f6e-d8e19cb40880)
)
(fp_text value "100" (at 0.1 -2.6 unlocked) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp fd3b105e-9e86-4180-b7c4-d28141e721d9)
)
(fp_text user "${REFERENCE}" (at 3.54 -0.1 unlocked) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4feef3b8-f927-4f60-83d9-df7eed8abf0f)
)
(fp_rect (start -2.5 -1.9) (end 2.5 1.9)
(stroke (width 0.05) (type default)) (fill none) (layer "F.CrtYd") (tstamp d3422fe1-30cb-4f10-801e-b30424b1d822))
(pad "1" smd roundrect (at -1.5 -1) (size 1 1) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 3 "/G") (pinfunction "1") (pintype "passive") (thermal_bridge_angle 45) (tstamp 32704c92-c8c0-4392-9606-d3abad903451))
(pad "2" smd roundrect (at 1.62 0) (size 1.4 1.5) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 5 "GND") (pinfunction "2") (pintype "passive") (thermal_bridge_angle 45) (tstamp 89d2d89c-13c8-4d7c-8081-ed87f1efcf91))
(pad "3" smd roundrect (at -1.5 1) (size 1 1) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 44 "unconnected-(R3-Pad3)") (pinfunction "3") (pintype "passive+no_connect") (thermal_bridge_angle 45) (tstamp 6f5232b6-db2f-4c24-9223-c52a47640a84))
)
(footprint "Library:EVM3ESX50B" (layer "F.Cu")
(tstamp 2d51710a-5034-4125-a1c4-2645789501a1)
(at 133.56 94.1)
(property "Sheetfile" "rgb2comp_smd.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Potentiometer, US symbol")
(property "ki_keywords" "resistor variable")
(path "/cbfcd39b-d1c3-4770-a9a6-17207ec20fa2")
(attr smd)
(fp_text reference "R4" (at 0 -3.9 unlocked) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 350457aa-f115-42cc-97e6-89ca85498109)
)
(fp_text value "100" (at 0.1 -2.6 unlocked) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4199f6f2-6e13-4d57-9eea-325edeb68eed)
)
(fp_text user "${REFERENCE}" (at 3.54 -0.1 unlocked) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c3462607-adfd-45dc-8669-c0202c68c120)
)
(fp_rect (start -2.5 -1.9) (end 2.5 1.9)
(stroke (width 0.05) (type default)) (fill none) (layer "F.CrtYd") (tstamp 3ed81488-42d7-49fb-898c-9b885a8aede7))
(pad "1" smd roundrect (at -1.5 -1) (size 1 1) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 4 "/B") (pinfunction "1") (pintype "passive") (thermal_bridge_angle 45) (tstamp 1d89cb10-e474-4d8e-a367-ff94cb88fbba))
(pad "2" smd roundrect (at 1.62 0) (size 1.4 1.5) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 5 "GND") (pinfunction "2") (pintype "passive") (thermal_bridge_angle 45) (tstamp 1471ed0c-62de-446b-b9c0-f7027ea61082))
(pad "3" smd roundrect (at -1.5 1) (size 1 1) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 45 "unconnected-(R4-Pad3)") (pinfunction "3") (pintype "passive+no_connect") (thermal_bridge_angle 45) (tstamp 14666f0c-3e70-46e1-97ec-7a19fc8ae13f))
)
(footprint "Capacitor_SMD:CP_Elec_4x5.4" (layer "F.Cu")
(tstamp 4805cbab-da73-4d3e-afa3-21868e76e954)
(at 127.3 99.2)
(descr "SMD capacitor, aluminum electrolytic, Panasonic A5 / Nichicon, 4.0x5.4mm")
(tags "capacitor electrolytic")
(property "Sheetfile" "rgb2comp_smd.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Polarized capacitor, small US symbol")
(property "ki_keywords" "cap capacitor")
(path "/127b039b-a84f-4ac9-a20c-ff80613bf510")
(attr smd)
(fp_text reference "C8" (at 3.6 1.9) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp cd8dd7e6-97e0-4768-84ff-6f81469dfc88)
)
(fp_text value "10u" (at 5.7 0.3) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 93ed4727-f1f4-49c8-84d0-e6222568c96b)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.12)))
(tstamp 9a0d9c77-3af4-42dc-85a5-875a020aa1ed)
)
(fp_line (start -3 -1.56) (end -2.5 -1.56)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3d717625-531e-4843-acc9-8da80f31ebbf))
(fp_line (start -2.75 -1.81) (end -2.75 -1.31)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp abec448d-f9a4-4486-875c-58a30d695f00))
(fp_line (start -2.26 -1.195563) (end -2.26 -1.06)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b12d0688-6077-4e48-afcf-b3c1c23a2eb6))
(fp_line (start -2.26 -1.195563) (end -1.195563 -2.26)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 44e4cc3b-745a-46ee-ab09-3f96efdd9a8c))
(fp_line (start -2.26 1.195563) (end -2.26 1.06)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b1163abe-f6b8-4557-82f1-708c368857ef))
(fp_line (start -2.26 1.195563) (end -1.195563 2.26)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f2a6ee72-67f5-453e-b488-b5a38a770e71))
(fp_line (start -1.195563 -2.26) (end 2.26 -2.26)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 93ba3d91-e08b-4883-b7ba-e146b0838fe6))
(fp_line (start -1.195563 2.26) (end 2.26 2.26)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 584bb458-82c5-424a-a3b7-6f6cd2081f48))
(fp_line (start 2.26 -2.26) (end 2.26 -1.06)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b98b7c7d-734f-489a-926f-d32045f67833))
(fp_line (start 2.26 2.26) (end 2.26 1.06)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4c5ff6c8-6235-4961-8a41-81be9e850a18))
(fp_line (start -3.35 -1.05) (end -3.35 1.05)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 0822e024-7ad4-462d-a0ec-f68b4bdc6108))
(fp_line (start -3.35 1.05) (end -2.4 1.05)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ebfbe445-101b-44be-8cd3-271b86fb89e2))
(fp_line (start -2.4 -1.25) (end -2.4 -1.05)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 09c4c6a9-0685-44d4-b700-ea64cd3027f7))
(fp_line (start -2.4 -1.25) (end -1.25 -2.4)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp fedcc841-5a56-4bdc-90da-37b1f3d6692b))
(fp_line (start -2.4 -1.05) (end -3.35 -1.05)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 93667f6f-90e2-4c31-8c1e-404b4dc236c9))
(fp_line (start -2.4 1.05) (end -2.4 1.25)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp cc6d1f1e-8351-4d1c-918c-b24de7acabcb))
(fp_line (start -2.4 1.25) (end -1.25 2.4)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 12dbd80c-3521-4c9d-91b7-30beb8f41102))
(fp_line (start -1.25 -2.4) (end 2.4 -2.4)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 7180c15a-a6c6-4375-b5b7-387314b111d3))
(fp_line (start -1.25 2.4) (end 2.4 2.4)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 7d34c2bb-06ec-4c83-bfb1-a8d7ac602955))
(fp_line (start 2.4 -2.4) (end 2.4 -1.05)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d7a4970b-c1aa-47f7-b6de-c9e449d8df48))
(fp_line (start 2.4 -1.05) (end 3.35 -1.05)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp f526e1f4-40e3-40c9-9e6e-e437866b3a3e))
(fp_line (start 2.4 1.05) (end 2.4 2.4)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e3935edd-2deb-4001-9cb8-f803cdff4094))
(fp_line (start 3.35 -1.05) (end 3.35 1.05)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 789e92d5-0e1d-49ee-a598-fd07cb74e634))
(fp_line (start 3.35 1.05) (end 2.4 1.05)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp cb99bc9f-5297-4626-bdcc-c26cacb502f5))
(fp_line (start -2.15 -1.15) (end -2.15 1.15)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8235eab8-026b-47df-b1c7-94d3b7826dd6))
(fp_line (start -2.15 -1.15) (end -1.15 -2.15)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 85e11e2c-77d2-4f35-ac90-f52e0f0ae1fe))
(fp_line (start -2.15 1.15) (end -1.15 2.15)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 49bd4131-0fab-4566-b3bc-3ff412c47061))
(fp_line (start -1.574773 -1) (end -1.174773 -1)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 90015942-0d0b-41c2-86b1-4125f0f63e2c))
(fp_line (start -1.374773 -1.2) (end -1.374773 -0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c54ca218-e6c5-4eab-96d7-f7879d4170ee))
(fp_line (start -1.15 -2.15) (end 2.15 -2.15)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 065ddcc7-120d-4ecf-8047-ff22802ac7b7))
(fp_line (start -1.15 2.15) (end 2.15 2.15)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 1f5df7a3-131e-4aef-b358-c31ad36d6c9e))
(fp_line (start 2.15 -2.15) (end 2.15 2.15)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp fb90a779-5ba2-4102-aa70-7e9276f178dd))
(fp_circle (center 0 0) (end 2 0)
(stroke (width 0.1) (type solid)) (fill none) (layer "F.Fab") (tstamp a07bc7fc-2c90-45e9-9d90-591e8f288ebe))
(pad "1" smd roundrect (at -1.8 0) (size 2.6 1.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.15625)
(net 6 "+5V") (pintype "passive") (tstamp 96c73920-8e52-4763-9d44-b84f156cd0ce))
(pad "2" smd roundrect (at 1.8 0) (size 2.6 1.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.15625)
(net 5 "GND") (pintype "passive") (tstamp efcc710c-47b8-48ce-ac65-bce8a8fb8af9))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/CP_Elec_4x5.4.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0805_2012Metric_Pad1.20x1.40mm_HandSolder" (layer "F.Cu")
(tstamp 5778953d-c3f1-4eab-88e0-47485d04ab27)
(at 144.4 79.6 -90)
(descr "Resistor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor handsolder")
(property "Sheetfile" "rgb2comp_smd.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor, small US symbol")
(property "ki_keywords" "r resistor")
(path "/d4908c22-097a-4bb9-b27e-32d2754ea2f7")
(attr smd)
(fp_text reference "R6" (at 0 -1.8 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 268e7a2a-8c01-41b9-93a9-71d9396def6f)
)
(fp_text value "330" (at 0 1.65 90) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 86f385b0-38ff-4ae6-a1f9-7760d6dcefb0)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp df47d2f1-a5f8-4616-9c9b-11378dc27919)
)
(fp_line (start -0.227064 -0.735) (end 0.227064 -0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f815c60c-4dc6-4ea9-ad65-17d27b2bc1f9))
(fp_line (start -0.227064 0.735) (end 0.227064 0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 516a0b74-d5a0-43ed-8c63-a68a620c4143))
(fp_line (start -1.85 -0.95) (end 1.85 -0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a1a803d6-2c2a-4397-a6fc-e33ba847a722))
(fp_line (start -1.85 0.95) (end -1.85 -0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a667846b-bcaf-4347-ab7d-98986c110c1a))
(fp_line (start 1.85 -0.95) (end 1.85 0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c6347d72-cb82-4176-8608-07034c0f1fd7))
(fp_line (start 1.85 0.95) (end -1.85 0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 7cbd675c-f875-464b-94bd-28813bddef54))
(fp_line (start -1 -0.625) (end 1 -0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 37a1cd2d-b111-4754-8dd0-b9852828bce4))
(fp_line (start -1 0.625) (end -1 -0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ffd902ff-d5ef-483d-855e-50e16f43aa63))
(fp_line (start 1 -0.625) (end 1 0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 070a7bb6-b085-40f4-b0bf-5315796cb43b))
(fp_line (start 1 0.625) (end -1 0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8b0debe5-a0cb-4f2d-9c19-277e2077cddf))
(pad "1" smd roundrect (at -1 0 270) (size 1.2 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.208333)
(net 38 "Net-(U1-CSYNC)") (pintype "passive") (tstamp fa704591-aebc-486e-97c7-8b4bcb7fe2c9))
(pad "2" smd roundrect (at 1 0 270) (size 1.2 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.208333)
(net 26 "/Y+S") (pintype "passive") (tstamp 40940132-236b-447c-a01a-c8ef93a5de5d))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0805_2012Metric_Pad1.20x1.40mm_HandSolder" (layer "F.Cu")
(tstamp 57dd273f-1fd0-4cbb-97f3-2661fe243fa6)
(at 159.6 106.1)
(descr "Resistor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor handsolder")
(property "Sheetfile" "rgb2comp_smd.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor, small US symbol")
(property "ki_keywords" "r resistor")
(path "/81171076-5cef-428b-b138-f020f6418360")
(attr smd)
(fp_text reference "R10" (at 3.6 0.3) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b86cfd87-1716-4c4e-958b-82dd63bdbe1d)
)
(fp_text value "1K" (at 0 1.65) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp bccc22fb-db11-4a60-8f1a-f626cf7acb56)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp a415719c-c14a-45f5-b0e7-fd1dd691c015)
)
(fp_line (start -0.227064 -0.735) (end 0.227064 -0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 977c17fb-629b-41be-9d99-ae67befd9271))
(fp_line (start -0.227064 0.735) (end 0.227064 0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ff362885-551c-4afd-b476-6da1777dc2c0))
(fp_line (start -1.85 -0.95) (end 1.85 -0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d92a7394-1279-4a7f-9bf4-9947bd6ee756))
(fp_line (start -1.85 0.95) (end -1.85 -0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 99221556-2fe6-42dd-be3e-59d5a2ea476f))
(fp_line (start 1.85 -0.95) (end 1.85 0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a8c3d16d-7b3d-4336-a029-2efd2e8b56e2))
(fp_line (start 1.85 0.95) (end -1.85 0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp f5559563-0357-42dc-85f9-c7078b06e990))
(fp_line (start -1 -0.625) (end 1 -0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 95b247a7-8ff4-43b5-ab7f-30863e713062))
(fp_line (start -1 0.625) (end -1 -0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c7a22e7f-4999-4956-97ba-2c1aa5095836))
(fp_line (start 1 -0.625) (end 1 0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a970d656-17f6-46ef-a096-4a2e0c939e4e))
(fp_line (start 1 0.625) (end -1 0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 88dfa799-2aa0-4827-a840-888f4b5a7481))
(pad "1" smd roundrect (at -1 0) (size 1.2 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.208333)
(net 28 "/Y Raw") (pintype "passive") (tstamp 7c58e79f-c11f-468d-854f-12fde7dc9249))
(pad "2" smd roundrect (at 1 0) (size 1.2 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.208333)
(net 5 "GND") (pintype "passive") (tstamp e4b9dc58-ab74-46e8-a38f-713bcd5c060a))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Library:EVM3ESX50B" (layer "F.Cu")
(tstamp 6174394f-bb9b-4752-bb81-4ff9404b9295)
(at 133.56 86.1)
(property "Sheetfile" "rgb2comp_smd.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Potentiometer, US symbol")
(property "ki_keywords" "resistor variable")
(path "/a2645bad-3087-4864-812a-9add064874d1")
(attr smd)
(fp_text reference "R2" (at 0 -3.9 unlocked) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b2c4e5c5-a2fc-4ae9-80d5-92833097fe51)
)
(fp_text value "100" (at 0.1 -2.6 unlocked) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 23ef6385-bd85-4787-9bad-bed4aa352dbd)
)
(fp_text user "${REFERENCE}" (at 3.64 0.1 unlocked) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3fe3ad99-1464-4e00-b8f1-7047a00c5a53)
)
(fp_rect (start -2.5 -1.9) (end 2.5 1.9)
(stroke (width 0.05) (type default)) (fill none) (layer "F.CrtYd") (tstamp d97a333a-1adc-406b-a13c-8a79338df8cb))
(pad "1" smd roundrect (at -1.5 -1) (size 1 1) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "/R") (pinfunction "1") (pintype "passive") (thermal_bridge_angle 45) (tstamp 3050b473-4de0-4455-8982-bbccc39b3b14))
(pad "2" smd roundrect (at 1.62 0) (size 1.4 1.5) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 5 "GND") (pinfunction "2") (pintype "passive") (thermal_bridge_angle 45) (tstamp d41cc6c7-e7b9-42a4-9208-1e12ccf0dc9e))
(pad "3" smd roundrect (at -1.5 1) (size 1 1) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 43 "unconnected-(R2-Pad3)") (pinfunction "3") (pintype "passive+no_connect") (thermal_bridge_angle 45) (tstamp aa1428b0-f2c9-4b1d-9e16-d1cdc60d288e))
)
(footprint "Library:ZIP-24" (layer "F.Cu")
(tstamp 6293c001-52ad-462f-ace4-2eb85739e029)
(at 141.25 104.6 180)
(property "Sheetfile" "rgb2comp_smd.kicad_sch")
(property "Sheetname" "")
(path "/b6f0523d-4492-4e8c-ba68-a34fe4836a89")
(fp_text reference "V1" (at 0 -3.52) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9262c69d-37c0-4a39-8883-20a73d205a8f)
)
(fp_text value "BA7230LS-WinchesterSymbols" (at 0 3.52) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0cac995c-ad04-4c13-85a6-879386b03d92)
)
(fp_line (start -11.9735 -2.52) (end 11.9735 -2.52)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b1072f11-261c-4356-9958-0be2c2400502))
(fp_line (start -11.9735 1.52) (end -11.9735 -2.52)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3ef588f1-1ab9-4446-9985-4cd372976150))
(fp_line (start -10.9735 2.52) (end -11.9735 1.52)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 83fa5667-fa65-4690-a41f-10df2c257cfe))
(fp_line (start 11.9735 -2.52) (end 11.9735 2.52)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 82f6a615-f03c-42aa-a11c-06e378bab5fa))
(fp_line (start 11.9735 2.52) (end -10.9735 2.52)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 211fdfa8-4eeb-47d9-b422-3802e06b4995))
(fp_line (start -11.55 -2.6) (end 11.55 -2.6)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp fe818800-70bb-49fe-8f79-39161b4675c7))
(fp_line (start -11.55 2.6) (end -11.55 -2.6)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ab2913a0-4522-44cf-bc7c-532314b5d395))
(fp_line (start 11.55 -2.6) (end 11.55 2.6)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 633e4dca-ae52-4a29-adda-2995f0056d47))
(fp_line (start 11.55 2.6) (end -11.55 2.6)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 7db0c7cc-100e-42e8-8bd5-a9cdb0a91680))
(pad "1" thru_hole oval (at -10.2235 1.27 180) (size 1.5 1.5) (drill 0.8) (layers "*.Cu" "*.Mask") (tstamp f284e0c2-e7b4-4294-ac32-53f70536c85d))
(pad "2" thru_hole oval (at -9.3345 -1.27 180) (size 1.5 1.5) (drill 0.8) (layers "*.Cu" "*.Mask") (tstamp e2741bbd-4614-47de-8380-b9e71490240f))
(pad "3" thru_hole oval (at -8.4455 1.27 180) (size 1.5 1.5) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 33 "Net-(V1-Y_in)") (pinfunction "Y_in") (pintype "input") (tstamp 30e234c2-6d75-4e51-a2a3-948bd6bacebf))
(pad "4" thru_hole oval (at -7.5565 -1.27 180) (size 1.5 1.5) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 31 "Net-(V1-B-Y_in)") (pinfunction "B-Y_in") (pintype "input") (tstamp ad37c206-7fee-462b-93f7-25054fbf04c2))
(pad "5" thru_hole oval (at -6.6675 1.27 180) (size 1.5 1.5) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 32 "Net-(V1-R-Y_in)") (pinfunction "R-Y_in") (pintype "input") (tstamp 9ce2c194-c86b-4829-a9b5-4e838f94e5f0))
(pad "6" thru_hole oval (at -5.7785 -1.27 180) (size 1.5 1.5) (drill 0.8) (layers "*.Cu" "*.Mask") (tstamp 351a6b49-8ebe-46fc-80c6-7f98bcff0944))
(pad "7" thru_hole oval (at -4.8895 1.27 180) (size 1.5 1.5) (drill 0.8) (layers "*.Cu" "*.Mask") (tstamp 31015cb2-9c8a-43ce-aecf-df613bf27782))
(pad "8" thru_hole oval (at -4.0005 -1.27 180) (size 1.5 1.5) (drill 0.8) (layers "*.Cu" "*.Mask") (tstamp 7181e91f-e43d-41e9-83fa-3efbd767b568))
(pad "9" thru_hole oval (at -3.1115 1.27 180) (size 1.5 1.5) (drill 0.8) (layers "*.Cu" "*.Mask") (tstamp 193f1973-8388-4267-9f28-da85af3e3cc0))
(pad "10" thru_hole oval (at -2.2225 -1.27 180) (size 1.5 1.5) (drill 0.8) (layers "*.Cu" "*.Mask") (tstamp ac1ba875-0434-4d67-ab31-28f8eb2f9ba6))
(pad "11" thru_hole oval (at -1.3335 1.27 180) (size 1.5 1.5) (drill 0.8) (layers "*.Cu" "*.Mask") (tstamp 89ab2912-a90a-4ba9-89b9-61f39b50ff38))
(pad "12" thru_hole oval (at -0.4445 -1.27 180) (size 1.5 1.5) (drill 0.8) (layers "*.Cu" "*.Mask") (tstamp 3ff596ce-f389-4912-ad8e-a5a04236b793))
(pad "13" thru_hole oval (at 0.4445 1.27 180) (size 1.5 1.5) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 8 "Net-(V1-R)") (pinfunction "R") (pintype "input") (tstamp 4e1361d9-e8b5-4561-a1d4-cce545f50697))
(pad "14" thru_hole oval (at 1.3335 -1.27 180) (size 1.5 1.5) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 9 "Net-(V1-G)") (pinfunction "G") (pintype "input") (tstamp 3ad4bd85-e6b0-498f-844b-3474b9c77674))
(pad "15" thru_hole oval (at 2.2225 1.27 180) (size 1.5 1.5) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 10 "Net-(V1-B)") (pinfunction "B") (pintype "input") (tstamp 53c25a18-d1e8-4a32-9ede-b2cc37e565c9))
(pad "16" thru_hole oval (at 3.1115 -1.27 180) (size 1.5 1.5) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 39 "Net-(V1-Y)") (pinfunction "Y") (pintype "input") (tstamp 735874d1-6440-4bd7-b159-cdb259dea62f))
(pad "17" thru_hole oval (at 4.0005 1.27 180) (size 1.5 1.5) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 20 "/B-Y Raw") (pinfunction "B-Y") (pintype "input") (tstamp f60a8cd8-1ea7-47c2-a49d-b7a50567aaf8))
(pad "18" thru_hole oval (at 4.8895 -1.27 180) (size 1.5 1.5) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 21 "/R-Y Raw") (pinfunction "R-Y") (pintype "input") (tstamp 463de827-3fdc-469f-8096-1e77f98b5667))
(pad "19" thru_hole oval (at 5.7785 1.27 180) (size 1.5 1.5) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 5 "GND") (pinfunction "GND") (pintype "input") (tstamp b08157eb-3f7b-48db-bc55-f91a1e475f00))
(pad "20" thru_hole oval (at 6.6675 -1.27 180) (size 1.5 1.5) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 18 "Net-(V1-VIDEO_IN)") (pinfunction "VIDEO_IN") (pintype "input") (tstamp 5c9855ac-6578-496d-9fc5-af1e9db2e4e1))
(pad "21" thru_hole oval (at 7.5565 1.27 180) (size 1.5 1.5) (drill 0.8) (layers "*.Cu" "*.Mask") (tstamp d381e1af-3b1b-4e9b-a68c-300a1a4ff59e))
(pad "22" thru_hole oval (at 8.4455 -1.27 180) (size 1.5 1.5) (drill 0.8) (layers "*.Cu" "*.Mask") (tstamp ee4a09a5-bd7a-4daf-81ac-85e6a56e42ba))
(pad "23" thru_hole oval (at 9.3345 1.27 180) (size 1.5 1.5) (drill 0.8) (layers "*.Cu" "*.Mask") (tstamp 4082e36e-5295-4603-8f4c-6aec18086843))
(pad "24" thru_hole oval (at 10.2235 -1.27 180) (size 1.5 1.5) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 6 "+5V") (pinfunction "Vcc") (pintype "input") (tstamp e74c3e7d-6211-4b1b-b642-bc0c31f14908))
)
(footprint "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder" (layer "F.Cu")
(tstamp 71ef74a9-43c0-4819-8356-bc44bdf09d12)
(at 129.2 80.5 90)
(descr "Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf, https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator")
(tags "capacitor handsolder")
(property "Sheetfile" "rgb2comp_smd.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Unpolarized capacitor, small symbol")
(property "ki_keywords" "capacitor cap")
(path "/3b1e5992-bce2-4b1f-8e4c-41b77f29a20f")
(attr smd)
(fp_text reference "C1" (at 0.6 -1.8 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp be35f14e-1ca5-41b4-9557-92e75d2df406)
)
(fp_text value ".1u" (at 0 1.68 90) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1a2d27ed-e01b-4bff-8186-c27d5568fefa)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp a5d9a77b-2e7e-4680-b30b-306ecd0ba934)
)
(fp_line (start -0.261252 -0.735) (end 0.261252 -0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp dbf43227-f879-43c4-a7c6-c578932fc378))
(fp_line (start -0.261252 0.735) (end 0.261252 0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9f010cab-0d54-4f83-b883-6e5069cdc555))
(fp_line (start -1.88 -0.98) (end 1.88 -0.98)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e67ce94f-d5e4-40e3-9f3d-f54951b04df0))
(fp_line (start -1.88 0.98) (end -1.88 -0.98)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp cfb0701a-cd06-4d24-b707-f405a8e758bf))
(fp_line (start 1.88 -0.98) (end 1.88 0.98)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 0f9b505b-aad4-4865-8176-9bcb1c8301c3))
(fp_line (start 1.88 0.98) (end -1.88 0.98)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 52eb7f84-3714-447e-8a15-c3d729babccd))
(fp_line (start -1 -0.625) (end 1 -0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 948e19d2-e6e3-4bcb-b4aa-7a0154b0ffd4))
(fp_line (start -1 0.625) (end -1 -0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a869ed33-9137-4b07-aa2d-dede8c9a00e3))
(fp_line (start 1 -0.625) (end 1 0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp fff70857-3f5b-4eac-a07a-e5f0a6a6d055))
(fp_line (start 1 0.625) (end -1 0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 35bbe3ae-5aa7-4c8c-a92f-2f3fe1e7792d))
(pad "1" smd roundrect (at -1.0375 0 90) (size 1.175 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.212766)
(net 1 "/Sync") (pintype "passive") (tstamp 7e6d0467-5f9a-43f0-950d-bc0bbb4486f7))
(pad "2" smd roundrect (at 1.0375 0 90) (size 1.175 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.212766)
(net 7 "Net-(U1-VIDEO)") (pintype "passive") (tstamp 08665716-fb0c-41f6-b14e-c60dee1477c4))
(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_0805_2012Metric_Pad1.18x1.45mm_HandSolder" (layer "F.Cu")
(tstamp 7323df84-7b22-4dd8-9fe7-7683d4a463b2)
(at 149 100.9)
(descr "Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf, https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator")
(tags "capacitor handsolder")
(property "Sheetfile" "rgb2comp_smd.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Unpolarized capacitor, small symbol")
(property "ki_keywords" "capacitor cap")
(path "/7cc07f5a-95ba-4e40-859d-1667e0cd431c")
(attr smd)
(fp_text reference "C17" (at 0 -1.8) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 47206ead-efff-4abf-87a4-a04a0a54d5af)
)
(fp_text value "1u" (at 0 1.68) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 439162f6-183e-4790-960f-fb4792d8a303)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp f471e1f2-1c83-4747-88e5-212a33b0258d)
)
(fp_line (start -0.261252 -0.735) (end 0.261252 -0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b258d9d4-c31b-46b6-a205-8317881a02eb))
(fp_line (start -0.261252 0.735) (end 0.261252 0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f922aa4a-afc1-4514-b8c3-960aed30e310))
(fp_line (start -1.88 -0.98) (end 1.88 -0.98)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 0b1e477c-7233-4f67-bbe5-f92e57163a76))
(fp_line (start -1.88 0.98) (end -1.88 -0.98)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 58368b26-5fb1-4eef-8df6-512939f714ae))
(fp_line (start 1.88 -0.98) (end 1.88 0.98)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 8af8f434-12f1-48b5-a8de-94b894154839))
(fp_line (start 1.88 0.98) (end -1.88 0.98)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e7ede225-4395-4d95-a654-a3deac46d804))
(fp_line (start -1 -0.625) (end 1 -0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2580668b-5206-484e-8353-7918e0a4b7be))
(fp_line (start -1 0.625) (end -1 -0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b0b0cdb4-d110-4772-ba59-0bd75095953e))
(fp_line (start 1 -0.625) (end 1 0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 616105e9-f61d-47cf-b57e-4bf12b89f51b))
(fp_line (start 1 0.625) (end -1 0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp fea08627-60cb-4d15-a949-b9a1d799bab0))
(pad "1" smd roundrect (at -1.0375 0) (size 1.175 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.212766)
(net 33 "Net-(V1-Y_in)") (pintype "passive") (tstamp b6f0ec1d-3de7-485a-9c05-392c57699447))
(pad "2" smd roundrect (at 1.0375 0) (size 1.175 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.212766)
(net 5 "GND") (pintype "passive") (tstamp 674223e5-8add-41e1-9dce-22abd99ae2ca))
(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_0805_2012Metric_Pad1.18x1.45mm_HandSolder" (layer "F.Cu")
(tstamp 7dc1ce1b-568c-4602-a1cf-8ad58eddd87c)
(at 125.9 103.6 90)
(descr "Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf, https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator")
(tags "capacitor handsolder")
(property "Sheetfile" "rgb2comp_smd.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Unpolarized capacitor, small symbol")
(property "ki_keywords" "capacitor cap")
(path "/e4014319-daa6-45ae-9249-a3d14aa36b39")
(attr smd)
(fp_text reference "C7" (at 0 2 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 70e3a1d8-1a73-49ea-a528-54d55d2e3416)
)
(fp_text value ".047u" (at 0.9 -9.6 90) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 563daed8-ce53-410c-b67d-be56cd44c094)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp c038c6d5-78e3-459a-8289-caee54f51b25)
)
(fp_line (start -0.261252 -0.735) (end 0.261252 -0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9083121e-9205-454b-aa96-9336dea3ac9d))
(fp_line (start -0.261252 0.735) (end 0.261252 0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 33ddff60-1111-4998-b7fe-de19a9c945d6))
(fp_line (start -1.88 -0.98) (end 1.88 -0.98)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 6f615341-7496-4697-a23b-4b7bb7b7ba03))
(fp_line (start -1.88 0.98) (end -1.88 -0.98)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 534354ef-1f81-4df8-b6a3-957751df629f))
(fp_line (start 1.88 -0.98) (end 1.88 0.98)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d8255e56-52f0-43a7-9e4a-fe4f71a2a126))
(fp_line (start 1.88 0.98) (end -1.88 0.98)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c59a602c-1628-4f24-aa3c-5beb645e74d7))
(fp_line (start -1 -0.625) (end 1 -0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8c21398d-76c1-4c75-a302-a6a27db035eb))
(fp_line (start -1 0.625) (end -1 -0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c15cdca6-4cae-4add-8c46-6224aa9c86b2))
(fp_line (start 1 -0.625) (end 1 0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8eb03aad-c254-41ab-8b46-ed6e359b0181))
(fp_line (start 1 0.625) (end -1 0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp aa7c5cf2-51a5-40e3-9745-ce6c1ae5cd91))
(pad "1" smd roundrect (at -1.0375 0 90) (size 1.175 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.212766)
(net 6 "+5V") (pintype "passive") (tstamp 3a195f68-106f-4356-ac16-420adb30317f))
(pad "2" smd roundrect (at 1.0375 0 90) (size 1.175 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.212766)
(net 5 "GND") (pintype "passive") (tstamp ba73a529-f050-416c-9502-bf1c1e0e0c28))
(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:CP_Elec_6.3x5.4" (layer "F.Cu")
(tstamp 85bbb93f-7dbc-498a-8768-fe402ebb914a)
(at 158.7 91.1 90)
(descr "SMD capacitor, aluminum electrolytic, Panasonic C55, 6.3x5.4mm")
(tags "capacitor electrolytic")
(property "Sheetfile" "rgb2comp_smd.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Polarized capacitor, small US symbol")
(property "ki_keywords" "cap capacitor")
(path "/72a6e6e4-8450-4f56-920e-de8188819aa5")
(attr smd)
(fp_text reference "C10" (at 0.2 1.9 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3247e844-d0b7-409f-9fc9-4e25a3760467)
)
(fp_text value "220u" (at 0 4.35 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 45fa78d4-673d-44e8-835a-d2edb773cb32)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d61c24fb-ff7e-4031-92e5-9f4f354422c0)
)
(fp_line (start -4.4375 -1.8475) (end -3.65 -1.8475)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7f53bbf7-0ddc-4b2f-802f-526ff72fdc9f))
(fp_line (start -4.04375 -2.24125) (end -4.04375 -1.45375)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 12820563-a68e-4dbb-afe3-ae092bb3e6fb))
(fp_line (start -3.41 -2.345563) (end -3.41 -1.06)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2007db0f-54cd-4573-88a7-ffea75368aad))
(fp_line (start -3.41 -2.345563) (end -2.345563 -3.41)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 15989fa2-e6c8-44a3-b7f0-68df75418db7))
(fp_line (start -3.41 2.345563) (end -3.41 1.06)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp fdc491b9-656b-45bb-9633-cbf151d80e4a))
(fp_line (start -3.41 2.345563) (end -2.345563 3.41)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 138a86da-3f14-495e-ada6-367abf6d33de))
(fp_line (start -2.345563 -3.41) (end 3.41 -3.41)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f2d40e70-f883-49f4-94fa-ea7f8e6c0a69))
(fp_line (start -2.345563 3.41) (end 3.41 3.41)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 72646a75-d365-41dc-89c0-b6b26aee3bcf))
(fp_line (start 3.41 -3.41) (end 3.41 -1.06)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp cd31942d-4c19-4797-8878-97f62e5ccf01))
(fp_line (start 3.41 3.41) (end 3.41 1.06)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 007da03b-e307-4b15-83e4-534d8b31a056))
(fp_line (start -4.8 -1.05) (end -4.8 1.05)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 947e986d-d9d9-43f3-9e90-9bf416d0b7af))
(fp_line (start -4.8 1.05) (end -3.55 1.05)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp fe989f92-3a0a-470d-bacc-58240c9fb432))
(fp_line (start -3.55 -2.4) (end -3.55 -1.05)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 3a26d7ae-8c46-433a-86aa-e86ffe7621d9))
(fp_line (start -3.55 -2.4) (end -2.4 -3.55)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp f2d218e6-d442-4957-a0ce-dd13fa25ed26))
(fp_line (start -3.55 -1.05) (end -4.8 -1.05)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 56ced5e0-523b-4d3f-bd1c-d874a722362c))
(fp_line (start -3.55 1.05) (end -3.55 2.4)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b40b1310-9fd5-4b31-bd0f-a1ea276263d3))
(fp_line (start -3.55 2.4) (end -2.4 3.55)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 9a561ba3-192f-4f3b-a6fe-0da1fb8eefa1))
(fp_line (start -2.4 -3.55) (end 3.55 -3.55)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a2d30b0b-72df-4c66-b5c8-aa8d4791c89f))
(fp_line (start -2.4 3.55) (end 3.55 3.55)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 2f42ecf9-5239-427d-ad23-a5122797b277))
(fp_line (start 3.55 -3.55) (end 3.55 -1.05)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp fb5fd09c-fa3e-4c1f-a3eb-1f1a42c3fd1a))
(fp_line (start 3.55 -1.05) (end 4.8 -1.05)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 395ccfe6-2b9e-4c5f-b17e-aa364dcd91b1))
(fp_line (start 3.55 1.05) (end 3.55 3.55)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 99c041c2-f317-42be-aed2-03b3c05817ea))
(fp_line (start 4.8 -1.05) (end 4.8 1.05)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 2e14e334-97eb-44b7-b18e-1c0b98194fba))
(fp_line (start 4.8 1.05) (end 3.55 1.05)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e77e2eb2-2729-4349-80ce-520187a13eb2))
(fp_line (start -3.3 -2.3) (end -3.3 2.3)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4c408131-1973-4d58-80dd-ed191c9482b8))
(fp_line (start -3.3 -2.3) (end -2.3 -3.3)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4db5351c-05f9-420f-bae5-fb5a36f73385))
(fp_line (start -3.3 2.3) (end -2.3 3.3)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e841d007-ad64-41b4-bff9-daa04a36cbb1))
(fp_line (start -2.704838 -1.33) (end -2.074838 -1.33)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3e813ccd-8750-41e3-963b-cb475be0601c))
(fp_line (start -2.389838 -1.645) (end -2.389838 -1.015)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2751de74-66c0-4fe1-a1ee-2437c2a84169))
(fp_line (start -2.3 -3.3) (end 3.3 -3.3)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 65708370-a62e-4ca2-a26f-e559815af3cb))
(fp_line (start -2.3 3.3) (end 3.3 3.3)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b8b312c3-f8df-4bd2-ac20-646e37821291))
(fp_line (start 3.3 -3.3) (end 3.3 3.3)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 14a0c107-95a8-487e-a161-80405636737e))
(fp_circle (center 0 0) (end 3.15 0)
(stroke (width 0.1) (type solid)) (fill none) (layer "F.Fab") (tstamp 31641e10-fa52-437f-8886-5278aba6c293))
(pad "1" smd roundrect (at -2.8 0 90) (size 3.5 1.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.15625)
(net 27 "Net-(C10-Pad1)") (pintype "passive") (tstamp b4832f37-1696-47c8-9f52-bb8b5f1e27c7))
(pad "2" smd roundrect (at 2.8 0 90) (size 3.5 1.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.15625)
(net 15 "/R-Y") (pintype "passive") (tstamp 466e6a0c-7f55-4ec1-97e3-e75f33e731b4))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/CP_Elec_6.3x5.4.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Package_SO:TSSOP-14_4.4x5mm_P0.65mm" (layer "F.Cu")
(tstamp 92e04a58-b1f5-410d-b205-6c1842e5100f)
(at 162.65 100.05 180)
(descr "TSSOP, 14 Pin (JEDEC MO-153 Var AB-1 https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py")
(tags "TSSOP SO")
(property "Sheetfile" "rgb2comp_smd.kicad_sch")
(property "Sheetname" "")
(path "/d47dd48e-c027-49d5-99ea-e880052f0581")
(attr smd)
(fp_text reference "D1" (at 0 -3.45) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1db4660e-0fcc-43d1-bbca-828c0f908181)
)
(fp_text value "THS7374" (at -0.138 3.619) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4c8d04fa-add8-4118-8d3e-e5516917da90)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 596e9411-db4e-468d-9896-beacd8c4a722)
)
(fp_line (start 0 -2.61) (end -3.6 -2.61)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 89f4d941-43ea-452c-a136-de3b6624be0f))
(fp_line (start 0 -2.61) (end 2.2 -2.61)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6cf17867-2715-4847-858d-03b6d580e884))
(fp_line (start 0 2.61) (end -2.2 2.61)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c0644680-38e9-40cc-9233-b70f460a6e7b))
(fp_line (start 0 2.61) (end 2.2 2.61)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3efe1f63-13a6-4af9-996a-daf8cfa90933))
(fp_line (start -3.85 -2.75) (end -3.85 2.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 99691ad5-3d9b-4d47-90a6-19ddd1e9f862))
(fp_line (start -3.85 2.75) (end 3.85 2.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 533ab5f2-5ae6-465a-af68-3eff8bdac6a8))
(fp_line (start 3.85 -2.75) (end -3.85 -2.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 97b1b7a1-7ed5-4d55-8cc8-e0fda4ab69f1))
(fp_line (start 3.85 2.75) (end 3.85 -2.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 07859df0-beb1-459f-9ca6-583518ae9f57))
(fp_line (start -2.2 -1.5) (end -1.2 -2.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7029783b-56c4-4250-8774-9331bfdc222d))
(fp_line (start -2.2 2.5) (end -2.2 -1.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 28d621d6-1975-420b-a62d-177ca3ea2548))
(fp_line (start -1.2 -2.5) (end 2.2 -2.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 6addc660-7503-4684-a79a-e9aa738d40d7))
(fp_line (start 2.2 -2.5) (end 2.2 2.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ae0e6335-a094-4eb0-9d64-ecd3ba107b43))
(fp_line (start 2.2 2.5) (end -2.2 2.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 95afafb6-0ed7-4ffb-a45e-8a78bcae5d5d))
(pad "1" smd roundrect (at -2.8625 -1.95 180) (size 1.475 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 19 "Net-(D1-CH1_IN)") (pinfunction "CH1_IN") (pintype "input") (tstamp 7b471e40-907d-4844-a824-1da854dec0c3))
(pad "2" smd roundrect (at -2.8625 -1.3 180) (size 1.475 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 29 "Net-(D1-CH2_IN)") (pinfunction "CH2_IN") (pintype "input") (tstamp 38bc105c-2e31-4264-9e80-d7abb3903307))
(pad "3" smd roundrect (at -2.8625 -0.65 180) (size 1.475 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 30 "Net-(D1-CH3_IN)") (pinfunction "CH3_IN") (pintype "input") (tstamp 682ef574-218c-4f8b-a24a-dc3e4674c779))
(pad "4" smd roundrect (at -2.8625 0 180) (size 1.475 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 34 "unconnected-(D1-CH4_IN-Pad4)") (pinfunction "CH4_IN") (pintype "input+no_connect") (tstamp 6312d9ec-ab41-4409-a8d3-efadacf3b781))
(pad "5" smd roundrect (at -2.8625 0.65 180) (size 1.475 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 5 "GND") (pinfunction "GND") (pintype "input") (tstamp e858e099-d3cc-4814-90e2-f85336274d03))
(pad "6" smd roundrect (at -2.8625 1.3 180) (size 1.475 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 5 "GND") (pinfunction "DISABLE") (pintype "input") (tstamp 65c204a2-71f7-4aad-9708-5f21c6289b6e))
(pad "7" smd roundrect (at -2.8625 1.95 180) (size 1.475 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 35 "unconnected-(D1-NC-Pad7)") (pinfunction "NC") (pintype "input+no_connect") (tstamp 3901aeaa-5bfd-4c87-ae19-235195acc83f))
(pad "8" smd roundrect (at 2.8625 1.95 180) (size 1.475 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 36 "unconnected-(D1-NC-Pad8)") (pinfunction "NC") (pintype "input+no_connect") (tstamp 35325192-7279-4ab5-ae59-bf05b89f607c))
(pad "9" smd roundrect (at 2.8625 1.3 180) (size 1.475 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 6 "+5V") (pinfunction "HD_BYPASS") (pintype "input") (tstamp b8815e59-5df0-4c69-ad29-0656493de4a7))
(pad "10" smd roundrect (at 2.8625 0.65 180) (size 1.475 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)