-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathrgb2comp.kicad_pcb
12074 lines (12028 loc) · 507 KB
/
rgb2comp.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 "Net-(U1-Pad2)")
(net 3 "/R")
(net 4 "/G")
(net 5 "/B")
(net 6 "Net-(C5-Pad1)")
(net 7 "GND")
(net 8 "+5V")
(net 9 "unconnected-(D1-Pad4)")
(net 10 "unconnected-(D1-Pad7)")
(net 11 "unconnected-(D1-Pad8)")
(net 12 "unconnected-(D1-Pad11)")
(net 13 "/Laudio")
(net 14 "/Raudio")
(net 15 "/Composite")
(net 16 "/Y")
(net 17 "/R-Y")
(net 18 "/B-Y")
(net 19 "Net-(V1-Pad14)")
(net 20 "unconnected-(U1-Pad3)")
(net 21 "unconnected-(U1-Pad5)")
(net 22 "unconnected-(U1-Pad7)")
(net 23 "Net-(V1-Pad15)")
(net 24 "/B-Y Raw")
(net 25 "/R-Y Raw")
(net 26 "/B-Y Amp")
(net 27 "/R-Y Amp")
(net 28 "/Y Amp")
(net 29 "Net-(C2-Pad1)")
(net 30 "Net-(C6-Pad1)")
(net 31 "/Y+S")
(net 32 "Net-(C10-Pad1)")
(net 33 "Net-(V1-Pad20)")
(net 34 "Net-(V1-Pad4)")
(net 35 "Net-(V1-Pad5)")
(net 36 "Net-(V1-Pad3)")
(net 37 "Net-(C12-Pad2)")
(net 38 "Net-(C13-Pad2)")
(net 39 "Net-(C14-Pad2)")
(net 40 "Net-(U1-Pad1)")
(net 41 "Net-(V1-Pad16)")
(net 42 "/Y Raw")
(footprint "Connector_PinHeader_2.54mm:PinHeader_2x06_P2.54mm_Vertical" (layer "F.Cu")
(tstamp 00d77cf8-cd0a-4933-8706-42eb395d0b8f)
(at 167.005 90.7165 180)
(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.kicad_sch")
(property "Sheetname" "")
(path "/b9a9ed2e-555b-447e-8da1-46238b144215")
(attr through_hole)
(fp_text reference "J2" (at 1.27 -2.33) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a7aad68a-9042-457b-b0ae-dcf97b8c69ae)
)
(fp_text value "OUTPUT" (at -0.635 -2.54) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d7ceb835-2320-4801-ae7f-ee3ca126e193)
)
(fp_line (start -1.33 -1.33) (end 0 -1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2e6b7c60-2fd3-4a16-9924-af37c267a7b7))
(fp_line (start -1.33 0) (end -1.33 -1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 51b83acf-1e37-4764-bdcf-9a51fb122d7d))
(fp_line (start -1.33 1.27) (end -1.33 14.03)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3c3abe44-a5b9-4d95-8dd9-e95db62386bd))
(fp_line (start -1.33 1.27) (end 1.27 1.27)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9fd10425-f5d2-4eb6-98f4-41c1ce3b7678))
(fp_line (start -1.33 14.03) (end 3.87 14.03)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9a019204-043f-4caa-9745-cc0d88483693))
(fp_line (start 1.27 -1.33) (end 3.87 -1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a8d6d3dd-8822-431b-b9d6-1158ad8a33d7))
(fp_line (start 1.27 1.27) (end 1.27 -1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e8bf4a3b-2525-4e4a-8344-5817d39f91e2))
(fp_line (start 3.87 -1.33) (end 3.87 14.03)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f267277f-abc7-45cc-8a23-ff189d53eb2f))
(fp_line (start -1.8 -1.8) (end -1.8 14.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c9cea80e-53c2-467f-805b-0db0dd83cf4e))
(fp_line (start -1.8 14.5) (end 4.35 14.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c5208008-b460-4d3a-91fc-253857c2a215))
(fp_line (start 4.35 -1.8) (end -1.8 -1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp baf45bd7-d485-49c6-9802-98e3b977a155))
(fp_line (start 4.35 14.5) (end 4.35 -1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 7f33dea6-c5c0-4aa9-8178-ac1829dff1b8))
(fp_line (start -1.27 0) (end 0 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0ec9ee1f-43d6-42fe-bec6-669ad004425b))
(fp_line (start -1.27 13.97) (end -1.27 0)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c053a4cf-6c6a-4fab-9309-6dd6085f9f24))
(fp_line (start 0 -1.27) (end 3.81 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d80f94ce-a13a-468e-af07-ac0ea22203a4))
(fp_line (start 3.81 -1.27) (end 3.81 13.97)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e70897ca-5e64-4554-9eba-420ebd2a6e80))
(fp_line (start 3.81 13.97) (end -1.27 13.97)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b1b738ab-553c-4f04-83cb-47c99f5308e7))
(pad "1" thru_hole rect (at 0 0 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 7 "GND") (pinfunction "Pin_1") (pintype "passive") (tstamp 2e493cf3-d1af-472f-a6e2-4f03d94aea6e))
(pad "2" thru_hole oval (at 2.54 0 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 17 "/R-Y") (pinfunction "Pin_2") (pintype "passive") (tstamp c6863db1-44e1-4bb1-a80e-9f366eaad85a))
(pad "3" thru_hole oval (at 0 2.54 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 7 "GND") (pinfunction "Pin_3") (pintype "passive") (tstamp 34d560a2-3e20-4fe9-b6d4-50c4e23e5602))
(pad "4" thru_hole oval (at 2.54 2.54 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 16 "/Y") (pinfunction "Pin_4") (pintype "passive") (tstamp 1c8674a4-9b6d-4ed4-9c90-59d3df250698))
(pad "5" thru_hole oval (at 0 5.08 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 7 "GND") (pinfunction "Pin_5") (pintype "passive") (tstamp fc498d9a-73e1-425d-9080-727e31d52ab4))
(pad "6" thru_hole oval (at 2.54 5.08 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 18 "/B-Y") (pinfunction "Pin_6") (pintype "passive") (tstamp 03a3a4c4-be08-44a5-90df-e9dff04141d1))
(pad "7" thru_hole oval (at 0 7.62 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 7 "GND") (pinfunction "Pin_7") (pintype "passive") (tstamp de176524-2de5-40a9-bfdd-3f90a0a160db))
(pad "8" thru_hole oval (at 2.54 7.62 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 14 "/Raudio") (pinfunction "Pin_8") (pintype "passive") (tstamp 2a2081ba-e73f-4f8a-9d51-c71049ba0a5a))
(pad "9" thru_hole oval (at 0 10.16 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 7 "GND") (pinfunction "Pin_9") (pintype "passive") (tstamp 9183d928-8828-4d91-97de-ffcace350c21))
(pad "10" thru_hole oval (at 2.54 10.16 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 13 "/Laudio") (pinfunction "Pin_10") (pintype "passive") (tstamp 7f9f3a87-b700-499e-aea9-ad2ddef41276))
(pad "11" thru_hole oval (at 0 12.7 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 7 "GND") (pinfunction "Pin_11") (pintype "passive") (tstamp b09357b6-3eb0-474b-a04d-c4351de65769))
(pad "12" thru_hole oval (at 2.54 12.7 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 15 "/Composite") (pinfunction "Pin_12") (pintype "passive") (tstamp 7779b84e-1da3-418c-9427-97f433936b8d))
(model "${KICAD6_3DMODEL_DIR}/Connector_PinSocket_2.54mm.3dshapes/PinSocket_2x06_P2.54mm_Vertical.step"
(offset (xyz 2.5 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 152.4 82.4615 -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.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 6195c440-b79a-4e17-8cda-b57ca8d2fb80)
)
(fp_text value "LM1881" (at 0 3.4 -90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 43f8fd97-cb4b-4395-a7a1-a721e132d8ff)
)
(fp_text user "${REFERENCE}" (at 0 0 -90) (layer "F.Fab") hide
(effects (font (size 0.98 0.98) (thickness 0.15)))
(tstamp 3d51ea1f-ed74-480f-8be5-09c70cd5b95b)
)
(fp_line (start 0 -2.56) (end -3.45 -2.56)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9d8de34c-11a2-4378-98cb-872563b306ab))
(fp_line (start 0 -2.56) (end 1.95 -2.56)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0dc620af-c922-4d50-abbb-a48fc0eddb6b))
(fp_line (start 0 2.56) (end -1.95 2.56)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e8ce4ede-a431-460e-919c-50b28c3b98fd))
(fp_line (start 0 2.56) (end 1.95 2.56)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1cd31147-141a-4208-877f-1fc358e9bf62))
(fp_line (start -3.7 -2.7) (end -3.7 2.7)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp fef20a67-1c9a-4073-9759-cffb704a1c52))
(fp_line (start -3.7 2.7) (end 3.7 2.7)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c26fdfc7-f238-48d6-b37d-72fa4252acdf))
(fp_line (start 3.7 -2.7) (end -3.7 -2.7)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 301cceee-a5f6-45b4-810c-79beae2ebf25))
(fp_line (start 3.7 2.7) (end 3.7 -2.7)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp f8d1100a-f6b7-4033-b9c3-bec96101417a))
(fp_line (start -1.95 -1.475) (end -0.975 -2.45)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ff57b276-d29e-4cb0-8df8-7a524f37b4ac))
(fp_line (start -1.95 2.45) (end -1.95 -1.475)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp bb377b29-0f85-4eca-94ff-d0979cbcdaaa))
(fp_line (start -0.975 -2.45) (end 1.95 -2.45)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4bc4711c-c168-48fc-9659-543e1e480420))
(fp_line (start 1.95 -2.45) (end 1.95 2.45)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 41cd3b12-cf23-48b6-8f61-d9d8d7122984))
(fp_line (start 1.95 2.45) (end -1.95 2.45)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d7592615-45e3-4e7e-bd8d-905770824825))
(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 40 "Net-(U1-Pad1)") (pinfunction "CSYNC") (pintype "output") (tstamp 399d85f6-cd8f-492c-9c61-92929c7b03e3))
(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 2 "Net-(U1-Pad2)") (pinfunction "VIDEO") (pintype "input") (tstamp 30747937-5150-4c2c-83be-808c606c0a60))
(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 20 "unconnected-(U1-Pad3)") (pinfunction "FRAME") (pintype "output+no_connect") (tstamp 8dc35fd7-810d-444a-a35a-3f390563f5af))
(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 7 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 1c374255-cc83-4736-9801-13b57adbe0ef))
(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 21 "unconnected-(U1-Pad5)") (pinfunction "BURST") (pintype "output+no_connect") (tstamp bc223976-3bd4-4c5f-9d8d-ebd79a735135))
(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 6 "Net-(C5-Pad1)") (pinfunction "INT") (pintype "input") (tstamp 1e7925bf-34d5-4616-a67e-03802af9f0a1))
(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 22 "unconnected-(U1-Pad7)") (pinfunction "O/E") (pintype "output+no_connect") (tstamp 0025e940-2087-4379-9002-9f7bb900d7e5))
(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 8 "+5V") (pinfunction "VCC") (pintype "power_in") (tstamp e267114b-8fe4-49d2-af31-c40b10f0c4ed))
(model "${KICAD6_3DMODEL_DIR}/Package_SO.3dshapes/SOIC-8-1EP_3.9x4.9mm_P1.27mm_EP2.35x2.35mm.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P2.54mm_Vertical" (layer "F.Cu")
(tstamp 22a8e1bc-22fb-4e62-add4-2ae0c07ce05c)
(at 133.985 84.13 -90)
(descr "Resistor, Axial_DIN0204 series, Axial, Vertical, pin pitch=2.54mm, 0.167W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
(tags "Resistor Axial_DIN0204 series Axial Vertical pin pitch 2.54mm 0.167W length 3.6mm diameter 1.6mm")
(property "Sheetfile" "rgb2comp.kicad_sch")
(property "Sheetname" "")
(path "/db3e5965-684b-49e0-a70b-68e7d0445943")
(attr through_hole)
(fp_text reference "R3" (at 1.27 -1.92 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e0c33c41-5019-4907-b0e5-156ccd72ab51)
)
(fp_text value "100" (at -1.53 0.285) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c51f9ae2-7b6f-40fd-a09f-6105cf5ea4b9)
)
(fp_text user "${REFERENCE}" (at 1.27 -1.92 90) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 79ff4a1c-5aee-4e8c-b46a-b8caf48537b5)
)
(fp_line (start 0.92 0) (end 1.54 0)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 675eb9bc-7999-489e-b8e7-2d842aa6c599))
(fp_circle (center 0 0) (end 0.92 0)
(stroke (width 0.12) (type solid)) (fill none) (layer "F.SilkS") (tstamp 42073231-1542-4ba6-8365-29ca25454247))
(fp_line (start -1.05 -1.05) (end -1.05 1.05)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 3ee27376-d0af-4a0b-aac7-b1aec1341c2a))
(fp_line (start -1.05 1.05) (end 3.49 1.05)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 91e5241a-510a-4cb5-bf18-1ee602085666))
(fp_line (start 3.49 -1.05) (end -1.05 -1.05)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 591dfd95-7bca-4d51-bfe7-6c1a0fa4c3a8))
(fp_line (start 3.49 1.05) (end 3.49 -1.05)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 885aad9a-53e0-4beb-8d31-b3b7146b789b))
(fp_line (start 0 0) (end 2.54 0)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp bb0e23f2-7b3f-4042-b181-95869bcd7cfe))
(fp_circle (center 0 0) (end 0.8 0)
(stroke (width 0.1) (type solid)) (fill none) (layer "F.Fab") (tstamp 54547553-fc0e-4fa4-870a-484e6527a226))
(pad "1" thru_hole circle (at 0 0 270) (size 1.4 1.4) (drill 0.7) (layers "*.Cu" "*.Mask")
(net 4 "/G") (pintype "passive") (tstamp 4aaefb0e-a404-41aa-a676-2a8eff096686))
(pad "2" thru_hole oval (at 2.54 0 270) (size 1.4 1.4) (drill 0.7) (layers "*.Cu" "*.Mask")
(net 7 "GND") (pintype "passive") (tstamp efe14fe3-12e0-4071-9c75-9d63ca921144))
)
(footprint "Capacitor_THT:C_Disc_D3.0mm_W1.6mm_P2.50mm" (layer "F.Cu")
(tstamp 27c49124-113f-4dc7-88a5-e0b289c1f3b7)
(at 156.35 82.15 -90)
(descr "C, Disc series, Radial, pin pitch=2.50mm, , diameter*width=3.0*1.6mm^2, Capacitor, http://www.vishay.com/docs/45233/krseries.pdf")
(tags "C Disc series Radial pin pitch 2.50mm diameter 3.0mm width 1.6mm Capacitor")
(property "Sheetfile" "rgb2comp.kicad_sch")
(property "Sheetname" "")
(path "/1d4f266f-0b81-4fc5-a6ae-09fe11b237b5")
(attr through_hole)
(fp_text reference "C18" (at -0.1 -1.85 90) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 61d1832e-4f65-461b-b630-c0bdf6d27aeb)
)
(fp_text value ".1u" (at -1.75 0.1 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0a4c2edc-ff75-428b-a0fb-042bb70868a8)
)
(fp_text user "${REFERENCE}" (at 1.25 0 90) (layer "F.Fab")
(effects (font (size 0.6 0.6) (thickness 0.09)))
(tstamp c53c3ba3-5b86-4683-a0e5-b582840bcd68)
)
(fp_line (start 0.621 -0.92) (end 1.879 -0.92)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp be81e8ad-57fe-4fac-9790-00b1d1b7142b))
(fp_line (start 0.621 0.92) (end 1.879 0.92)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 33da0045-f787-4877-acc8-68904e4b59f5))
(fp_line (start -1.05 -1.05) (end -1.05 1.05)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d7a40034-0632-4fdd-894a-917d361a88cc))
(fp_line (start -1.05 1.05) (end 3.55 1.05)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ddae1584-26c6-4631-bae4-eb508f34545c))
(fp_line (start 3.55 -1.05) (end -1.05 -1.05)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d29a1718-72c1-4ef8-bd4c-56d1017b5196))
(fp_line (start 3.55 1.05) (end 3.55 -1.05)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ffd1b791-46dc-477c-948c-25215501918f))
(fp_line (start -0.25 -0.8) (end -0.25 0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 56dc49be-b161-4ce4-9472-c4666a1f6964))
(fp_line (start -0.25 0.8) (end 2.75 0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e13d2651-a7f2-418e-acf8-1bfffdc2e79f))
(fp_line (start 2.75 -0.8) (end -0.25 -0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 26ec1610-9754-4898-9c05-e3a29d508b1e))
(fp_line (start 2.75 0.8) (end 2.75 -0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e07482d2-1f23-47ed-8431-f994b608deb0))
(pad "1" thru_hole circle (at 0 0 270) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 7 "GND") (pintype "passive") (tstamp b4fd1f24-b594-47fc-bad2-07520e964cc0))
(pad "2" thru_hole circle (at 2.5 0 270) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 8 "+5V") (pintype "passive") (tstamp d3743f49-2359-4a36-b3d8-c2b4a44f6f91))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_THT.3dshapes/C_Disc_D3.0mm_W1.6mm_P2.50mm.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P2.54mm_Vertical" (layer "F.Cu")
(tstamp 2bc709a0-58c7-4027-bd09-68d5e2408c67)
(at 130.76 80.5565 180)
(descr "Resistor, Axial_DIN0204 series, Axial, Vertical, pin pitch=2.54mm, 0.167W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
(tags "Resistor Axial_DIN0204 series Axial Vertical pin pitch 2.54mm 0.167W length 3.6mm diameter 1.6mm")
(property "Sheetfile" "rgb2comp.kicad_sch")
(property "Sheetname" "")
(path "/4bcc5002-8702-4393-a6bf-7d6899ced84f")
(attr through_hole)
(fp_text reference "R1" (at 1.27 -1.92) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0966b2ba-1d12-4fbc-8d5f-54d304a96f80)
)
(fp_text value "75" (at 1.27 1.92) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b365de12-a460-4216-bf83-56ed11a58381)
)
(fp_text user "${REFERENCE}" (at 1.27 -1.92) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 33e82635-2c53-4ea5-8805-c1c8a78d9215)
)
(fp_line (start 0.92 0) (end 1.54 0)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 73bcf238-0d2a-4f70-ac80-a36aa7e8c6fc))
(fp_circle (center 0 0) (end 0.92 0)
(stroke (width 0.12) (type solid)) (fill none) (layer "F.SilkS") (tstamp 0f6181e1-6ca2-4cc0-81e8-13f93e9dad3e))
(fp_line (start -1.05 -1.05) (end -1.05 1.05)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp f5901d8e-e6df-41a9-a339-ac9adc0068ff))
(fp_line (start -1.05 1.05) (end 3.49 1.05)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp fa77dc7e-d873-4ae6-8993-9d93d4bfbb94))
(fp_line (start 3.49 -1.05) (end -1.05 -1.05)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 0291c0d4-073e-489f-a071-bab1b5f2ad27))
(fp_line (start 3.49 1.05) (end 3.49 -1.05)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 2aa911cf-d087-4b16-a923-d2a3456865d1))
(fp_line (start 0 0) (end 2.54 0)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 508a078b-d68f-4712-a32a-0e849b7770f0))
(fp_circle (center 0 0) (end 0.8 0)
(stroke (width 0.1) (type solid)) (fill none) (layer "F.Fab") (tstamp 16c757e2-40c3-4efe-a8d2-c31207b3b868))
(pad "1" thru_hole circle (at 0 0 180) (size 1.4 1.4) (drill 0.7) (layers "*.Cu" "*.Mask")
(net 1 "/Sync") (pintype "passive") (tstamp 2fbf76b2-f791-476e-9b79-1bb901b37e2c))
(pad "2" thru_hole oval (at 2.54 0 180) (size 1.4 1.4) (drill 0.7) (layers "*.Cu" "*.Mask")
(net 7 "GND") (pintype "passive") (tstamp a7de2400-9b22-4eb5-b8c0-eb95d150dc89))
(model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0204_L3.6mm_D1.6mm_P2.54mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P2.54mm_Vertical" (layer "F.Cu")
(tstamp 2d109ff6-27c1-4e7c-877b-f84b3f819540)
(at 155.575 96.3815 90)
(descr "Resistor, Axial_DIN0204 series, Axial, Vertical, pin pitch=2.54mm, 0.167W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
(tags "Resistor Axial_DIN0204 series Axial Vertical pin pitch 2.54mm 0.167W length 3.6mm diameter 1.6mm")
(property "Sheetfile" "rgb2comp.kicad_sch")
(property "Sheetname" "")
(path "/ef91fbee-27cb-4fcd-9e50-9f5ffa021909")
(attr through_hole)
(fp_text reference "R13" (at 1.27 -1.92 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 03abfceb-a7f0-409d-afc8-c323618ca5f2)
)
(fp_text value "75" (at 1.27 1.92 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15) italic))
(tstamp 5f4c54fb-f578-4d10-9cbd-de188c9c0774)
)
(fp_text user "${REFERENCE}" (at 1.27 -1.92 90) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4e485d52-2fab-4008-a949-8bef83e93099)
)
(fp_line (start 0.92 0) (end 1.54 0)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5529164e-f493-4441-b1a0-6e5b45e4b19b))
(fp_circle (center 0 0) (end 0.92 0)
(stroke (width 0.12) (type solid)) (fill none) (layer "F.SilkS") (tstamp 327746cb-6d94-43f8-a133-e057ef7e36f8))
(fp_line (start -1.05 -1.05) (end -1.05 1.05)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e4b078d5-159d-4169-993c-1caa78d9988e))
(fp_line (start -1.05 1.05) (end 3.49 1.05)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c3737d0d-f90c-4ae2-a5d2-a77ed9a05091))
(fp_line (start 3.49 -1.05) (end -1.05 -1.05)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 149ae1fa-d7cd-4c81-aebf-5b230c2a31a4))
(fp_line (start 3.49 1.05) (end 3.49 -1.05)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 97d54e82-9136-419a-b8f6-ef889d600fcd))
(fp_line (start 0 0) (end 2.54 0)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7d46dde5-e7a8-4d15-b82a-3490a355b7b5))
(fp_circle (center 0 0) (end 0.8 0)
(stroke (width 0.1) (type solid)) (fill none) (layer "F.Fab") (tstamp 98e76b2d-bc6a-4d46-8d7f-711c1ceef879))
(pad "1" thru_hole circle (at 0 0 90) (size 1.4 1.4) (drill 0.7) (layers "*.Cu" "*.Mask")
(net 27 "/R-Y Amp") (pintype "passive") (tstamp 8a1c9936-e4ff-4ba7-b064-e04b2cf114fc))
(pad "2" thru_hole oval (at 2.54 0 90) (size 1.4 1.4) (drill 0.7) (layers "*.Cu" "*.Mask")
(net 32 "Net-(C10-Pad1)") (pintype "passive") (tstamp b38fd130-972e-474a-89d3-b5e78fea9d26))
(model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0204_L3.6mm_D1.6mm_P2.54mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P2.54mm_Vertical" (layer "F.Cu")
(tstamp 2d51710a-5034-4125-a1c4-2645789501a1)
(at 134 93.48 -90)
(descr "Resistor, Axial_DIN0204 series, Axial, Vertical, pin pitch=2.54mm, 0.167W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
(tags "Resistor Axial_DIN0204 series Axial Vertical pin pitch 2.54mm 0.167W length 3.6mm diameter 1.6mm")
(property "Sheetfile" "rgb2comp.kicad_sch")
(property "Sheetname" "")
(path "/cbfcd39b-d1c3-4770-a9a6-17207ec20fa2")
(attr through_hole)
(fp_text reference "R4" (at 1.27 -1.92 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1e48ff8a-8b6e-4fe2-940c-3bf215431241)
)
(fp_text value "75" (at 4.395 0) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1494668d-bee3-4faf-9878-9f05eec1e289)
)
(fp_text user "${REFERENCE}" (at 1.27 -1.92 90) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4cda62ae-9860-4121-8d82-abde24d453dc)
)
(fp_line (start 0.92 0) (end 1.54 0)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1013d0d2-5e91-475e-ade8-f90233dad708))
(fp_circle (center 0 0) (end 0.92 0)
(stroke (width 0.12) (type solid)) (fill none) (layer "F.SilkS") (tstamp 6d7ded04-f9d9-471b-a41e-1ccc42884dff))
(fp_line (start -1.05 -1.05) (end -1.05 1.05)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 26659c27-20c4-4a51-aa93-addd173d5713))
(fp_line (start -1.05 1.05) (end 3.49 1.05)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 97956631-2df3-4a1e-9c04-8bcf0caf7506))
(fp_line (start 3.49 -1.05) (end -1.05 -1.05)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 23b3f44f-c6cf-40c9-8f38-85fc2224e753))
(fp_line (start 3.49 1.05) (end 3.49 -1.05)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 998a0e29-ff82-427a-9d28-1e38a0f9e185))
(fp_line (start 0 0) (end 2.54 0)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 652ae621-3390-4fa9-bcf6-3f1367f42228))
(fp_circle (center 0 0) (end 0.8 0)
(stroke (width 0.1) (type solid)) (fill none) (layer "F.Fab") (tstamp 3947a170-6731-465a-80e8-f13bc394dd49))
(pad "1" thru_hole circle (at 0 0 270) (size 1.4 1.4) (drill 0.7) (layers "*.Cu" "*.Mask")
(net 5 "/B") (pintype "passive") (tstamp 102d5014-59f5-46af-be53-66f6ab325151))
(pad "2" thru_hole oval (at 2.54 0 270) (size 1.4 1.4) (drill 0.7) (layers "*.Cu" "*.Mask")
(net 7 "GND") (pintype "passive") (tstamp 0b29d71f-93e8-41d7-84db-41fe44445839))
)
(footprint "Capacitor_THT:CP_Radial_D4.0mm_P1.50mm" (layer "F.Cu")
(tstamp 4805cbab-da73-4d3e-afa3-21868e76e954)
(at 126.077401 99.55)
(descr "CP, Radial series, Radial, pin pitch=1.50mm, , diameter=4mm, Electrolytic Capacitor")
(tags "CP Radial series Radial pin pitch 1.50mm diameter 4mm Electrolytic Capacitor")
(property "Sheetfile" "rgb2comp.kicad_sch")
(property "Sheetname" "")
(path "/127b039b-a84f-4ac9-a20c-ff80613bf510")
(attr through_hole)
(fp_text reference "C8" (at 3.81 -0.664) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 63e7d64a-dd0a-49a5-bf6b-92cfc7996559)
)
(fp_text value "10u" (at -2.54 0 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 77203235-dd73-4073-bef4-04ce3de698dd)
)
(fp_text user "${REFERENCE}" (at 0.75 0) (layer "F.Fab") hide
(effects (font (size 0.8 0.8) (thickness 0.12)))
(tstamp 14b1951a-8757-42c6-aead-faea0a7b16bc)
)
(fp_line (start -1.519801 -1.195) (end -1.119801 -1.195)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 01dc6319-86bf-425b-9744-cfccb4e7f154))
(fp_line (start -1.319801 -1.395) (end -1.319801 -0.995)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4e80ea91-49c2-4cdc-b420-d668e5f3e89e))
(fp_line (start 0.75 -2.08) (end 0.75 -0.84)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp bf5b6bc4-c338-40e1-b30f-439d67fce499))
(fp_line (start 0.75 0.84) (end 0.75 2.08)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 105cfdae-5609-474d-8161-66e392c1c025))
(fp_line (start 0.79 -2.08) (end 0.79 -0.84)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp eadb48e2-f8af-4840-bad5-74db59465ae6))
(fp_line (start 0.79 0.84) (end 0.79 2.08)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3fffa435-3149-49d5-a5a3-73ab9c9c1285))
(fp_line (start 0.83 -2.079) (end 0.83 -0.84)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 99ac49b3-d086-4bcd-8d0f-e30e1027680c))
(fp_line (start 0.83 0.84) (end 0.83 2.079)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 21dd0f4e-6e76-4abd-ae50-43b9b1c8c01f))
(fp_line (start 0.87 -2.077) (end 0.87 -0.84)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp beb43c70-ebe7-49ce-b607-645caf6124af))
(fp_line (start 0.87 0.84) (end 0.87 2.077)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 59070336-29a9-4c40-85d1-030013536356))
(fp_line (start 0.91 -2.074) (end 0.91 -0.84)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7989d461-4a6e-4011-8d76-ae3a2e6aa081))
(fp_line (start 0.91 0.84) (end 0.91 2.074)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ba0fe979-a306-4374-8ae4-ec4e498d2ab9))
(fp_line (start 0.95 -2.071) (end 0.95 -0.84)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 129ed4d8-34a3-4e78-bcd1-2c99c3fc8e07))
(fp_line (start 0.95 0.84) (end 0.95 2.071)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp dd6f3a6c-0ba9-47f5-a677-d4a845d76605))
(fp_line (start 0.99 -2.067) (end 0.99 -0.84)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f98ab2c5-7c4b-452b-89ed-319819e927dd))
(fp_line (start 0.99 0.84) (end 0.99 2.067)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a6fc959f-573e-4e96-9a76-059c4a7e1762))
(fp_line (start 1.03 -2.062) (end 1.03 -0.84)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8a87ff12-fd81-4b98-9b9f-367656fdf9df))
(fp_line (start 1.03 0.84) (end 1.03 2.062)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp eae97560-594b-4c5b-9768-a5eaa6f58747))
(fp_line (start 1.07 -2.056) (end 1.07 -0.84)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a074d57a-9b31-457b-a38a-4929f5a0c17a))
(fp_line (start 1.07 0.84) (end 1.07 2.056)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 382b71d7-736d-4240-9fc0-12a80887b748))
(fp_line (start 1.11 -2.05) (end 1.11 -0.84)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a9c7e363-d753-4cc6-a47a-39d34a7d0363))
(fp_line (start 1.11 0.84) (end 1.11 2.05)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 86f7788b-4006-4be8-a7c0-923274e5e137))
(fp_line (start 1.15 -2.042) (end 1.15 -0.84)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e1996908-bfd8-43f9-a7e8-920086c63c3b))
(fp_line (start 1.15 0.84) (end 1.15 2.042)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8e514e1a-763d-4757-95b7-d6a6ea54f924))
(fp_line (start 1.19 -2.034) (end 1.19 -0.84)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ffff8cf8-a1a2-45e2-ab79-335d8d0d951d))
(fp_line (start 1.19 0.84) (end 1.19 2.034)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ee0bd4f7-8798-40b6-bda0-b87887811383))
(fp_line (start 1.23 -2.025) (end 1.23 -0.84)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c2a95318-a782-4706-8f59-967e583d8807))
(fp_line (start 1.23 0.84) (end 1.23 2.025)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 47cccee0-ae42-4147-93c1-cea74f57e4b1))
(fp_line (start 1.27 -2.016) (end 1.27 -0.84)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 57724c24-5137-4609-987e-a5503be684dd))
(fp_line (start 1.27 0.84) (end 1.27 2.016)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b035b9ce-a6e2-4d69-9f13-2f4754b27078))
(fp_line (start 1.31 -2.005) (end 1.31 -0.84)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 45f38361-ae81-4709-9c2c-b4b391ce51eb))
(fp_line (start 1.31 0.84) (end 1.31 2.005)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0560b5a4-604d-4587-9699-ae1ee8d80581))
(fp_line (start 1.35 -1.994) (end 1.35 -0.84)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f27a7133-1fa4-4262-9684-32da9053d2ac))
(fp_line (start 1.35 0.84) (end 1.35 1.994)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 34ecbc44-650a-424c-8a3b-639efc668970))
(fp_line (start 1.39 -1.982) (end 1.39 -0.84)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e12920ae-fef9-414b-86d6-a4a169cc7f6b))
(fp_line (start 1.39 0.84) (end 1.39 1.982)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e67c7a8e-09ca-4789-b50e-30a2258ad038))
(fp_line (start 1.43 -1.968) (end 1.43 -0.84)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 39696e46-ebce-4e00-b361-789dbc8b6f85))
(fp_line (start 1.43 0.84) (end 1.43 1.968)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 335ee584-12a6-4e2e-82f7-cc06a40bf4f6))
(fp_line (start 1.471 -1.954) (end 1.471 -0.84)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 198ba11f-1328-4b59-a943-ce1d4dcbf957))
(fp_line (start 1.471 0.84) (end 1.471 1.954)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0df813df-fc56-4bd2-bf47-57e0cfcdd281))
(fp_line (start 1.511 -1.94) (end 1.511 -0.84)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5ce666f7-9039-48cf-9641-0446a1a5c312))
(fp_line (start 1.511 0.84) (end 1.511 1.94)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1fdb5f11-7567-4222-8aa3-b022f94501a8))
(fp_line (start 1.551 -1.924) (end 1.551 -0.84)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1eb98263-3849-4cec-9bcd-c10d9d065f6f))
(fp_line (start 1.551 0.84) (end 1.551 1.924)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp db224c84-a9ca-4a5d-bad3-da755ed81019))
(fp_line (start 1.591 -1.907) (end 1.591 -0.84)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9a14a68c-79fe-41ac-9ee8-a9b0ae0dd344))
(fp_line (start 1.591 0.84) (end 1.591 1.907)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2e22998d-e356-458b-aeaa-9c22c608ba0e))
(fp_line (start 1.631 -1.889) (end 1.631 -0.84)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2a008f08-c954-4d78-9795-258864a24d81))
(fp_line (start 1.631 0.84) (end 1.631 1.889)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0bf21f8a-d2d4-4f65-b953-19533e9b84ce))
(fp_line (start 1.671 -1.87) (end 1.671 -0.84)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 13cd1b30-6da4-4963-9135-5fd08408749c))
(fp_line (start 1.671 0.84) (end 1.671 1.87)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7ebc5915-100b-480b-878d-e1b2f1001d27))
(fp_line (start 1.711 -1.851) (end 1.711 -0.84)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7b357c15-59e2-4bcc-b126-ed8197e821d3))
(fp_line (start 1.711 0.84) (end 1.711 1.851)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ed2d9ef3-289d-4db0-80dd-a564a7e3ec60))
(fp_line (start 1.751 -1.83) (end 1.751 -0.84)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp fcc5bca1-4b5b-4331-b306-92ecd380236f))
(fp_line (start 1.751 0.84) (end 1.751 1.83)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 38dccf63-f0e9-4685-97b0-557e140faf4b))
(fp_line (start 1.791 -1.808) (end 1.791 -0.84)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 98b322cc-3546-407d-9bb2-76eab78913ce))
(fp_line (start 1.791 0.84) (end 1.791 1.808)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1f832185-a6eb-4126-8145-b5ea807076bd))
(fp_line (start 1.831 -1.785) (end 1.831 -0.84)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0f08e76b-6d36-4ce0-8a10-1fabca09e50f))
(fp_line (start 1.831 0.84) (end 1.831 1.785)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 625fbce4-f112-453d-95ee-066afd94316d))
(fp_line (start 1.871 -1.76) (end 1.871 -0.84)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e1eee408-97c9-4cda-8812-980dd212413f))
(fp_line (start 1.871 0.84) (end 1.871 1.76)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4c512497-ba71-4118-a02f-ccdee8a6b341))
(fp_line (start 1.911 -1.735) (end 1.911 -0.84)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp fb07d168-fc15-4723-99b3-41e5702eaee6))
(fp_line (start 1.911 0.84) (end 1.911 1.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0b3269ba-43bf-436c-af0e-39770a4c3dbd))
(fp_line (start 1.951 -1.708) (end 1.951 -0.84)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a581bc9b-e808-48fc-9552-df3ac6ccb052))
(fp_line (start 1.951 0.84) (end 1.951 1.708)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ff01edfd-c412-43cb-8bd1-a0d6ded93387))
(fp_line (start 1.991 -1.68) (end 1.991 -0.84)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp beaf8003-9fbe-4d60-b86a-afc91bea7098))
(fp_line (start 1.991 0.84) (end 1.991 1.68)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c866d607-b870-4c69-b870-30939fb4b48e))
(fp_line (start 2.031 -1.65) (end 2.031 -0.84)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 523a5060-7a3b-49a1-b85f-101a2f14f80e))
(fp_line (start 2.031 0.84) (end 2.031 1.65)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 92225a58-0367-4390-82a3-cfb54bd4f8f2))
(fp_line (start 2.071 -1.619) (end 2.071 -0.84)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0f100bd2-9a2b-4645-83a4-5a6c2b2c531c))
(fp_line (start 2.071 0.84) (end 2.071 1.619)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 989bd298-172c-44aa-8a86-6eca5af20fce))
(fp_line (start 2.111 -1.587) (end 2.111 -0.84)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 571395b6-b036-46e7-a552-979b8d1591d1))
(fp_line (start 2.111 0.84) (end 2.111 1.587)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a247d9a4-a771-4304-b44e-81360adb7937))
(fp_line (start 2.151 -1.552) (end 2.151 -0.84)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8dc3354a-bc95-4894-a86a-ae78ea69a9f7))
(fp_line (start 2.151 0.84) (end 2.151 1.552)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c544ba58-2d32-4360-80dd-79e7ea831bd4))
(fp_line (start 2.191 -1.516) (end 2.191 -0.84)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a89c5aae-ee6d-4593-aa59-ae975bce145c))
(fp_line (start 2.191 0.84) (end 2.191 1.516)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 18c92550-48df-4573-ac81-131c6a5c9fea))
(fp_line (start 2.231 -1.478) (end 2.231 -0.84)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6597b4ba-b04d-466c-a712-5b79e88fb3e4))
(fp_line (start 2.231 0.84) (end 2.231 1.478)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3588ab73-7150-4760-b814-1df20f7c98e1))
(fp_line (start 2.271 -1.438) (end 2.271 -0.84)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3a869059-522a-43e1-b471-c325fe58eb81))
(fp_line (start 2.271 0.84) (end 2.271 1.438)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e19b217b-07a3-47cf-9adf-082936871169))
(fp_line (start 2.311 -1.396) (end 2.311 -0.84)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 725fa0ba-0908-4afd-bde8-62ebb33d4133))
(fp_line (start 2.311 0.84) (end 2.311 1.396)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3645d87b-12bb-4f0c-95f3-46951f2400c6))
(fp_line (start 2.351 -1.351) (end 2.351 1.351)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 43aa3753-d27f-4d59-ae08-51d492ca562a))
(fp_line (start 2.391 -1.304) (end 2.391 1.304)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 49306fa4-9d90-47d3-b78b-f71a9d2c18ea))
(fp_line (start 2.431 -1.254) (end 2.431 1.254)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 963d22dc-51b1-4f4a-a831-367c5637e0ad))
(fp_line (start 2.471 -1.2) (end 2.471 1.2)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 126d1a3b-e9b7-4c91-b338-7f8c5867bb5d))
(fp_line (start 2.511 -1.142) (end 2.511 1.142)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9f75d85c-94bd-4c07-b70c-29b2ea604d05))
(fp_line (start 2.551 -1.08) (end 2.551 1.08)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 97738551-55fe-4160-afa5-652474e60896))
(fp_line (start 2.591 -1.013) (end 2.591 1.013)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a45d78e5-45f8-4596-9e60-4ea0bbcd131c))
(fp_line (start 2.631 -0.94) (end 2.631 0.94)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a49a8c12-6e3c-46fa-90dd-d9ff04ce28ae))
(fp_line (start 2.671 -0.859) (end 2.671 0.859)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d15fd53b-de28-41f8-b301-cc6dcac7e981))
(fp_line (start 2.711 -0.768) (end 2.711 0.768)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 84a9255b-cefe-431f-941f-a1e5f6b63198))
(fp_line (start 2.751 -0.664) (end 2.751 0.664)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0d26a08e-c17a-44e7-9c6a-1ee887a548e4))
(fp_line (start 2.791 -0.537) (end 2.791 0.537)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d45b33e8-0915-4936-87d9-18bd85b46007))
(fp_line (start 2.831 -0.37) (end 2.831 0.37)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9e3699b5-a55d-4b6e-bd0f-fd8b784d9d2b))
(fp_circle (center 0.75 0) (end 2.87 0)
(stroke (width 0.12) (type solid)) (fill none) (layer "F.SilkS") (tstamp 3a35125d-94a8-490a-a601-73bcb6f3306a))
(fp_circle (center 0.75 0) (end 3 0)
(stroke (width 0.05) (type solid)) (fill none) (layer "F.CrtYd") (tstamp 7ca9b269-de9e-49ed-baa8-cf96aed49eca))
(fp_line (start -0.952554 -0.8675) (end -0.552554 -0.8675)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 64687225-0458-42c6-b23d-d9ce77bfedef))
(fp_line (start -0.752554 -1.0675) (end -0.752554 -0.6675)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b2f965c2-8f69-4b51-832d-e425a6a68c7b))
(fp_circle (center 0.75 0) (end 2.75 0)
(stroke (width 0.1) (type solid)) (fill none) (layer "F.Fab") (tstamp b249c2fd-c4e6-44c9-932c-92ec933519f8))
(pad "1" thru_hole rect (at 0 0) (size 1.2 1.2) (drill 0.6) (layers "*.Cu" "*.Mask")
(net 8 "+5V") (pintype "passive") (tstamp 98ce03d5-2800-4a9a-bee5-2d708b4dd9a8))
(pad "2" thru_hole circle (at 1.5 0) (size 1.2 1.2) (drill 0.6) (layers "*.Cu" "*.Mask")
(net 7 "GND") (pintype "passive") (tstamp 02d0f575-b7ee-4016-9322-2a5e8ac367b5))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_THT.3dshapes/CP_Radial_D4.0mm_P1.50mm.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P2.54mm_Vertical" (layer "F.Cu")
(tstamp 5778953d-c3f1-4eab-88e0-47485d04ab27)
(at 160 83.28 -90)
(descr "Resistor, Axial_DIN0204 series, Axial, Vertical, pin pitch=2.54mm, 0.167W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
(tags "Resistor Axial_DIN0204 series Axial Vertical pin pitch 2.54mm 0.167W length 3.6mm diameter 1.6mm")
(property "Sheetfile" "rgb2comp.kicad_sch")
(property "Sheetname" "")
(path "/d4908c22-097a-4bb9-b27e-32d2754ea2f7")
(attr through_hole)
(fp_text reference "R6" (at 1.27 -1.92 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7d27546a-cbf1-4fc2-b7eb-6acbc9930346)
)
(fp_text value "330" (at -1.78 -0.05) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 97e31080-5351-4008-b87a-3cc11b047d21)
)
(fp_text user "${REFERENCE}" (at 1.27 -1.92 90) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 97e4c3c7-6005-45c5-b781-d03a61047a4f)
)
(fp_line (start 0.92 0) (end 1.54 0)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 187a6289-ae58-4408-8294-db6fc7bf7315))
(fp_circle (center 0 0) (end 0.92 0)
(stroke (width 0.12) (type solid)) (fill none) (layer "F.SilkS") (tstamp 7bec490b-8237-404f-87fe-2c1a32253130))
(fp_line (start -1.05 -1.05) (end -1.05 1.05)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 8e69eee2-f938-424c-ac96-ab9b7d04beef))
(fp_line (start -1.05 1.05) (end 3.49 1.05)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 4f1947a8-d7f5-4577-a001-58c414d21358))
(fp_line (start 3.49 -1.05) (end -1.05 -1.05)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 5964a807-8b2a-49a0-a516-ff07aa20bb1f))
(fp_line (start 3.49 1.05) (end 3.49 -1.05)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp fa6a80fd-4ffe-40aa-911f-eddc7630c522))
(fp_line (start 0 0) (end 2.54 0)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 23fdaf47-9731-4b4c-96fd-0ba5b3317a40))
(fp_circle (center 0 0) (end 0.8 0)
(stroke (width 0.1) (type solid)) (fill none) (layer "F.Fab") (tstamp 42b80548-ffea-4892-8c4a-00325366341c))
(pad "1" thru_hole circle (at 0 0 270) (size 1.4 1.4) (drill 0.7) (layers "*.Cu" "*.Mask")
(net 40 "Net-(U1-Pad1)") (pintype "passive") (tstamp cf58ee43-398c-4734-ad6c-0bc42e3e9675))
(pad "2" thru_hole oval (at 2.54 0 270) (size 1.4 1.4) (drill 0.7) (layers "*.Cu" "*.Mask")
(net 31 "/Y+S") (pintype "passive") (tstamp 3e1dfa04-fc16-4582-82b0-31b022f339dd))
(model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0204_L3.6mm_D1.6mm_P2.54mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P2.54mm_Vertical" (layer "F.Cu")
(tstamp 57dd273f-1fd0-4cbb-97f3-2661fe243fa6)
(at 162.33 106.15)
(descr "Resistor, Axial_DIN0204 series, Axial, Vertical, pin pitch=2.54mm, 0.167W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
(tags "Resistor Axial_DIN0204 series Axial Vertical pin pitch 2.54mm 0.167W length 3.6mm diameter 1.6mm")
(property "Sheetfile" "rgb2comp.kicad_sch")
(property "Sheetname" "")
(path "/81171076-5cef-428b-b138-f020f6418360")
(attr through_hole)
(fp_text reference "R10" (at 1.27 -1.92) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 90f43431-0b91-476b-8c60-756fd9ebcfc3)
)
(fp_text value "1K" (at 1.32 1.65) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4653f357-948b-42bc-8458-ae521f487084)
)
(fp_text user "${REFERENCE}" (at 1.27 -1.92) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3b1c2ec1-57e3-467f-89e1-2e062fa930d5)
)
(fp_line (start 0.92 0) (end 1.54 0)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b41f5117-d045-408d-aeb6-95650f87c5ba))
(fp_circle (center 0 0) (end 0.92 0)
(stroke (width 0.12) (type solid)) (fill none) (layer "F.SilkS") (tstamp cdc218b5-9e83-403d-96cf-ced095d81e24))
(fp_line (start -1.05 -1.05) (end -1.05 1.05)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 1d8d505d-6a70-42b8-afa0-6b37cb63c8e9))
(fp_line (start -1.05 1.05) (end 3.49 1.05)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 8dfc024d-4f6e-4567-b35e-abc910039ccd))
(fp_line (start 3.49 -1.05) (end -1.05 -1.05)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 2ba60838-1145-4862-a775-0ff1a7b54602))
(fp_line (start 3.49 1.05) (end 3.49 -1.05)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a79eb794-6d8c-4e63-bd33-50ce00642279))
(fp_line (start 0 0) (end 2.54 0)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 5d4e32aa-c72c-4a11-b622-21ac90007417))
(fp_circle (center 0 0) (end 0.8 0)
(stroke (width 0.1) (type solid)) (fill none) (layer "F.Fab") (tstamp e0dab09f-26ac-4e3c-b756-c4a00f38aa95))
(pad "1" thru_hole circle (at 0 0) (size 1.4 1.4) (drill 0.7) (layers "*.Cu" "*.Mask")
(net 42 "/Y Raw") (pintype "passive") (tstamp 3d189d09-e00b-4b3b-b31c-992730bf2459))
(pad "2" thru_hole oval (at 2.54 0) (size 1.4 1.4) (drill 0.7) (layers "*.Cu" "*.Mask")
(net 7 "GND") (pintype "passive") (tstamp d0ed6dc4-fcf1-4f15-adfb-294f6b2a6f98))
(model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0204_L3.6mm_D1.6mm_P2.54mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P2.54mm_Vertical" (layer "F.Cu")
(tstamp 59f869ae-06f5-4c9d-8578-20feb4c27298)
(at 167.8 99.33 -90)
(descr "Resistor, Axial_DIN0204 series, Axial, Vertical, pin pitch=2.54mm, 0.167W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
(tags "Resistor Axial_DIN0204 series Axial Vertical pin pitch 2.54mm 0.167W length 3.6mm diameter 1.6mm")
(property "Sheetfile" "rgb2comp.kicad_sch")
(property "Sheetname" "")
(path "/265eb2f6-4321-4bbe-a986-216749b052fb")
(attr through_hole)
(fp_text reference "R7" (at 1.27 -1.92 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 69eea98b-4c55-4c89-9e32-5e9818f13744)
)
(fp_text value "2M2" (at 1.27 -1.7 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15) italic))
(tstamp ef1535ac-3859-47bb-bd96-9748d2bd0b33)
)
(fp_text user "${REFERENCE}" (at 1.27 -1.92 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d83eb78b-5299-4026-8841-1b8e1ca54dcc)
)
(fp_line (start 0.92 0) (end 1.54 0)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9904cd63-e501-4aa0-b7a9-ac600a7b6cfb))
(fp_circle (center 0 0) (end 0.92 0)
(stroke (width 0.12) (type solid)) (fill none) (layer "F.SilkS") (tstamp 67af4036-c55b-46f7-b604-ba23bb1f751f))
(fp_line (start -1.05 -1.05) (end -1.05 1.05)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b1144347-0c2b-49a4-a71b-2cebe68697b2))
(fp_line (start -1.05 1.05) (end 3.49 1.05)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 36676dd1-87ee-4ab4-9daf-d18d64a317e0))
(fp_line (start 3.49 -1.05) (end -1.05 -1.05)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 9809f4b7-fee1-456b-ade7-a2dade6bb402))
(fp_line (start 3.49 1.05) (end 3.49 -1.05)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 7b163238-0694-40f7-bd6f-9b9cd8861755))
(fp_line (start 0 0) (end 2.54 0)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f46be75e-b29a-4edc-bb36-22b70d0d1636))
(fp_circle (center 0 0) (end 0.8 0)
(stroke (width 0.1) (type solid)) (fill none) (layer "F.Fab") (tstamp 121246e4-791a-492f-98c6-ad4b15cfbad4))
(pad "1" thru_hole circle (at 0 0 270) (size 1.4 1.4) (drill 0.7) (layers "*.Cu" "*.Mask")
(net 42 "/Y Raw") (pintype "passive") (tstamp 398b5b2a-e2f8-4080-88e0-d907585bf846))
(pad "2" thru_hole oval (at 2.54 0 270) (size 1.4 1.4) (drill 0.7) (layers "*.Cu" "*.Mask")
(net 38 "Net-(C13-Pad2)") (pintype "passive") (tstamp 0cc2d08c-6a0e-4d16-9f6c-163fee8a9465))
(model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0204_L3.6mm_D1.6mm_P2.54mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_THT:C_Disc_D3.0mm_W1.6mm_P2.50mm" (layer "F.Cu")
(tstamp 5a8f98be-3861-4e9a-bd06-b6217ad585d8)
(at 136.5 86.6 90)
(descr "C, Disc series, Radial, pin pitch=2.50mm, , diameter*width=3.0*1.6mm^2, Capacitor, http://www.vishay.com/docs/45233/krseries.pdf")
(tags "C Disc series Radial pin pitch 2.50mm diameter 3.0mm width 1.6mm Capacitor")
(property "Sheetfile" "rgb2comp.kicad_sch")
(property "Sheetname" "")
(path "/4bf0a20b-c1c1-4b65-8aab-120ae4e13d71")
(attr through_hole)
(fp_text reference "C3" (at 1.25 -2.05 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9f86f3fa-49e9-4de7-9b8f-2e202adceaad)
)
(fp_text value ".1u" (at 1.25 2.05 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0e43d7a2-f089-4bc0-8bdf-1a1f3007df13)
)
(fp_text user "${REFERENCE}" (at 1.25 0 90) (layer "F.Fab")
(effects (font (size 0.6 0.6) (thickness 0.09)))
(tstamp 645b74d5-1cfa-4485-a317-16a338d3bdb2)
)
(fp_line (start 0.621 -0.92) (end 1.879 -0.92)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 13fd97a8-334c-4901-9987-5bcf60f09fd1))
(fp_line (start 0.621 0.92) (end 1.879 0.92)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a7a6a395-0c22-416e-bf30-f7010608a8e0))
(fp_line (start -1.05 -1.05) (end -1.05 1.05)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 6ec2605b-502b-401a-8dfe-526e3a6525ce))
(fp_line (start -1.05 1.05) (end 3.55 1.05)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 4a26214f-6684-4f09-a6b0-18af7002e42e))
(fp_line (start 3.55 -1.05) (end -1.05 -1.05)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 21f5548c-9b6b-4395-ac3c-7e145e981ee3))
(fp_line (start 3.55 1.05) (end 3.55 -1.05)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 9c75a4c2-e190-4a58-9b7c-cafc07da7e05))
(fp_line (start -0.25 -0.8) (end -0.25 0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7a5979c0-1765-4493-bd87-68f5e5fc0e24))
(fp_line (start -0.25 0.8) (end 2.75 0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e99bd61d-65f0-4ff3-9c94-10d9a3e23422))
(fp_line (start 2.75 -0.8) (end -0.25 -0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3f31d0e7-1c9e-4f8e-b1a5-8522e81e6679))
(fp_line (start 2.75 0.8) (end 2.75 -0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ff5130cd-7d38-4f54-9ea2-900355d4aef5))
(pad "1" thru_hole circle (at 0 0 90) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 19 "Net-(V1-Pad14)") (pintype "passive") (tstamp 3dc7f167-c053-4e38-868a-f43376762827))
(pad "2" thru_hole circle (at 2.5 0 90) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 4 "/G") (pintype "passive") (tstamp 4d115611-1237-4aac-b109-75e00c0e9b1c))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_THT.3dshapes/C_Disc_D3.0mm_W1.6mm_P2.50mm.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P2.54mm_Vertical" (layer "F.Cu")
(tstamp 5d4b3e8c-f340-4b6a-a4ff-690bafa1fff9)
(at 164.7 95.55 180)
(descr "Resistor, Axial_DIN0204 series, Axial, Vertical, pin pitch=2.54mm, 0.167W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
(tags "Resistor Axial_DIN0204 series Axial Vertical pin pitch 2.54mm 0.167W length 3.6mm diameter 1.6mm")
(property "Sheetfile" "rgb2comp.kicad_sch")
(property "Sheetname" "")
(path "/8ceeb8d0-8678-4f9c-beca-54e4b8dc0da6")
(attr through_hole)
(fp_text reference "C19" (at 1.27 -1.92) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3a75abaa-8f35-4929-8722-81f0f1974ffa)
)
(fp_text value ".1u" (at 1.55 1.7) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9eaccd8a-f790-4d0f-820a-e459965d2b3d)
)
(fp_text user "${REFERENCE}" (at 1.27 -1.92) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ad82beef-1c71-457d-a67d-76dcf56b2fb8)
)
(fp_line (start 0.92 0) (end 1.54 0)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e1fe2458-0053-47ff-87e3-904693c4eb2f))
(fp_circle (center 0 0) (end 0.92 0)
(stroke (width 0.12) (type solid)) (fill none) (layer "F.SilkS") (tstamp 3151d1dc-56d8-4389-a4ec-dfbdc0459c8e))
(fp_line (start -1.05 -1.05) (end -1.05 1.05)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 27b49eb2-dba2-42d4-bfa1-1df4a7e026a7))
(fp_line (start -1.05 1.05) (end 3.49 1.05)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 636b4567-cb3c-497c-b0cf-36979b5ca118))
(fp_line (start 3.49 -1.05) (end -1.05 -1.05)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp f9b5a915-4b5e-4e4a-ab2d-f2ce1e5b055d))
(fp_line (start 3.49 1.05) (end 3.49 -1.05)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 84ff9883-2ea8-4742-afd8-c310f7eadc97))
(fp_line (start 0 0) (end 2.54 0)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9ae265a0-eba2-4cfc-a781-bc428f10ff94))
(fp_circle (center 0 0) (end 0.8 0)
(stroke (width 0.1) (type solid)) (fill none) (layer "F.Fab") (tstamp 09019019-c1d6-49f2-8988-2125e9bc130c))
(pad "1" thru_hole circle (at 0 0 180) (size 1.4 1.4) (drill 0.7) (layers "*.Cu" "*.Mask")
(net 7 "GND") (pintype "passive") (tstamp d2f82750-68f1-43c8-98df-e81aaafe8250))
(pad "2" thru_hole oval (at 2.54 0 180) (size 1.4 1.4) (drill 0.7) (layers "*.Cu" "*.Mask")
(net 8 "+5V") (pintype "passive") (tstamp 53c4a3e0-4080-4749-9757-85521086c5c8))
(model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0204_L3.6mm_D1.6mm_P2.54mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)