-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathcmvs-rgb.kicad_pcb
1490 lines (1446 loc) · 78.4 KB
/
cmvs-rgb.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 4) (host pcbnew 4.0.5+dfsg1-4)
(general
(links 39)
(no_connects 0)
(area 119.431999 52.629999 148.538001 99.135001)
(thickness 1.6)
(drawings 29)
(tracks 129)
(zones 0)
(modules 34)
(nets 24)
)
(page A4)
(layers
(0 F.Cu signal)
(31 B.Cu signal)
(32 B.Adhes user)
(33 F.Adhes user)
(34 B.Paste user)
(35 F.Paste user)
(36 B.SilkS user)
(37 F.SilkS user)
(38 B.Mask user hide)
(39 F.Mask user)
(40 Dwgs.User user)
(41 Cmts.User user)
(42 Eco1.User user)
(43 Eco2.User user)
(44 Edge.Cuts user)
(45 Margin user)
(46 B.CrtYd user)
(47 F.CrtYd user)
(48 B.Fab user hide)
(49 F.Fab user hide)
)
(setup
(last_trace_width 0.25)
(trace_clearance 0.2)
(zone_clearance 0.508)
(zone_45_only yes)
(trace_min 0.2)
(segment_width 0.2)
(edge_width 0.15)
(via_size 0.6)
(via_drill 0.4)
(via_min_size 0.4)
(via_min_drill 0.3)
(uvia_size 0.3)
(uvia_drill 0.1)
(uvias_allowed no)
(uvia_min_size 0.2)
(uvia_min_drill 0.1)
(pcb_text_width 0.3)
(pcb_text_size 1.5 1.5)
(mod_edge_width 0.15)
(mod_text_size 1 1)
(mod_text_width 0.15)
(pad_size 1.5 1.25)
(pad_drill 0)
(pad_to_mask_clearance 0.0508)
(aux_axis_origin 0 0)
(visible_elements FFFFFF7F)
(pcbplotparams
(layerselection 0x00030_80000001)
(usegerberextensions false)
(excludeedgelayer true)
(linewidth 0.100000)
(plotframeref false)
(viasonmask false)
(mode 1)
(useauxorigin false)
(hpglpennumber 1)
(hpglpenspeed 20)
(hpglpendiameter 15)
(hpglpenoverlay 2)
(psnegative false)
(psa4output false)
(plotreference true)
(plotvalue true)
(plotinvisibletext false)
(padsonsilk false)
(subtractmaskfromsilk false)
(outputformat 1)
(mirror false)
(drillshape 1)
(scaleselection 1)
(outputdirectory ""))
)
(net 0 "")
(net 1 +5V)
(net 2 GND)
(net 3 "Net-(C2-Pad1)")
(net 4 SCART_Red)
(net 5 "Net-(C3-Pad1)")
(net 6 SCART_Green)
(net 7 "Net-(C5-Pad1)")
(net 8 SCART_Sync)
(net 9 "Net-(R1-Pad1)")
(net 10 Jamma_Red)
(net 11 "Net-(R2-Pad1)")
(net 12 Jamma_Blue)
(net 13 "Net-(R3-Pad1)")
(net 14 Jamma_Green)
(net 15 "Net-(R4-Pad1)")
(net 16 Jamma_Sync)
(net 17 "Net-(R9-Pad2)")
(net 18 "Net-(R10-Pad2)")
(net 19 "Net-(C4-Pad1)")
(net 20 "Net-(R11-Pad2)")
(net 21 "Net-(R12-Pad2)")
(net 22 SCART_Blue)
(net 23 "Net-(P1-Pad2)")
(net_class Default "This is the default net class."
(clearance 0.2)
(trace_width 0.25)
(via_dia 0.6)
(via_drill 0.4)
(uvia_dia 0.3)
(uvia_drill 0.1)
(add_net Jamma_Blue)
(add_net Jamma_Green)
(add_net Jamma_Red)
(add_net Jamma_Sync)
(add_net "Net-(C2-Pad1)")
(add_net "Net-(C3-Pad1)")
(add_net "Net-(C4-Pad1)")
(add_net "Net-(C5-Pad1)")
(add_net "Net-(P1-Pad2)")
(add_net "Net-(R1-Pad1)")
(add_net "Net-(R10-Pad2)")
(add_net "Net-(R11-Pad2)")
(add_net "Net-(R12-Pad2)")
(add_net "Net-(R2-Pad1)")
(add_net "Net-(R3-Pad1)")
(add_net "Net-(R4-Pad1)")
(add_net "Net-(R9-Pad2)")
(add_net SCART_Blue)
(add_net SCART_Green)
(add_net SCART_Red)
(add_net SCART_Sync)
)
(net_class +5V ""
(clearance 0.2)
(trace_width 0.45)
(via_dia 0.6)
(via_drill 0.4)
(uvia_dia 0.3)
(uvia_drill 0.1)
(add_net +5V)
)
(net_class GND ""
(clearance 0.2)
(trace_width 0.45)
(via_dia 0.6)
(via_drill 0.4)
(uvia_dia 0.3)
(uvia_drill 0.1)
(add_net GND)
)
(module Capacitors_SMD:C_0805_HandSoldering (layer F.Cu) (tedit 5B0D435D) (tstamp 5B0CFEF6)
(at 133.985 78.74)
(descr "Capacitor SMD 0805, hand soldering")
(tags "capacitor 0805")
(path /5AC2B28E)
(attr smd)
(fp_text reference C1 (at 0 -1.397) (layer F.SilkS)
(effects (font (size 0.75 0.75) (thickness 0.1)))
)
(fp_text value 0.1uF (at 0 2.1) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -1 0.625) (end -1 -0.625) (layer F.Fab) (width 0.15))
(fp_line (start 1 0.625) (end -1 0.625) (layer F.Fab) (width 0.15))
(fp_line (start 1 -0.625) (end 1 0.625) (layer F.Fab) (width 0.15))
(fp_line (start -1 -0.625) (end 1 -0.625) (layer F.Fab) (width 0.15))
(fp_line (start -2.3 -1) (end 2.3 -1) (layer F.CrtYd) (width 0.05))
(fp_line (start -2.3 1) (end 2.3 1) (layer F.CrtYd) (width 0.05))
(fp_line (start -2.3 -1) (end -2.3 1) (layer F.CrtYd) (width 0.05))
(fp_line (start 2.3 -1) (end 2.3 1) (layer F.CrtYd) (width 0.05))
(fp_line (start 0.5 -0.85) (end -0.5 -0.85) (layer F.SilkS) (width 0.15))
(fp_line (start -0.5 0.85) (end 0.5 0.85) (layer F.SilkS) (width 0.15))
(pad 1 smd rect (at -1.25 0) (size 1.5 1.25) (layers F.Cu F.Paste F.Mask)
(net 1 +5V))
(pad 2 smd rect (at 1.25 0) (size 1.5 1.25) (layers F.Cu F.Paste F.Mask)
(net 2 GND))
(model Capacitors_SMD.3dshapes/C_0805_HandSoldering.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Capacitors_SMD:c_elec_8x10 (layer F.Cu) (tedit 5B0D219B) (tstamp 5B0CFF12)
(at 124.46 65.405 90)
(descr "SMT capacitor, aluminium electrolytic, 8x10")
(path /5ACE79D6)
(attr smd)
(fp_text reference C2 (at 0 2.54 90) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 220uF (at 0 -5.4483 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text user + (at -2.3114 -0.0762 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 4.0386 4.0386) (end 4.0386 -4.0386) (layer F.Fab) (width 0.15))
(fp_line (start -3.3655 4.0386) (end 4.0386 4.0386) (layer F.Fab) (width 0.15))
(fp_line (start -4.0386 3.3655) (end -3.3655 4.0386) (layer F.Fab) (width 0.15))
(fp_line (start -4.0386 -3.3655) (end -4.0386 3.3655) (layer F.Fab) (width 0.15))
(fp_line (start -3.3655 -4.0386) (end -4.0386 -3.3655) (layer F.Fab) (width 0.15))
(fp_line (start 4.0386 -4.0386) (end -3.3655 -4.0386) (layer F.Fab) (width 0.15))
(fp_arc (start 0 0) (end 3.6322 1.5113) (angle 134.8591484) (layer F.SilkS) (width 0.15))
(fp_arc (start 0 0) (end -3.6322 -1.5113) (angle 134.8460503) (layer F.SilkS) (width 0.15))
(fp_line (start 4.191 4.191) (end 4.191 1.5113) (layer F.SilkS) (width 0.15))
(fp_line (start 4.191 -4.191) (end 4.191 -1.5113) (layer F.SilkS) (width 0.15))
(fp_line (start -4.191 -3.429) (end -4.191 -1.5113) (layer F.SilkS) (width 0.15))
(fp_line (start -4.191 3.429) (end -4.191 1.5113) (layer F.SilkS) (width 0.15))
(fp_text user + (at -4.826 1.778 90) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 5.35 -4.55) (end -5.35 -4.55) (layer F.CrtYd) (width 0.05))
(fp_line (start -5.35 -4.55) (end -5.35 4.55) (layer F.CrtYd) (width 0.05))
(fp_line (start -5.35 4.55) (end 5.35 4.55) (layer F.CrtYd) (width 0.05))
(fp_line (start 5.35 4.55) (end 5.35 -4.55) (layer F.CrtYd) (width 0.05))
(fp_line (start 4.191 4.191) (end -3.429 4.191) (layer F.SilkS) (width 0.15))
(fp_line (start -3.429 4.191) (end -4.191 3.429) (layer F.SilkS) (width 0.15))
(fp_line (start -4.191 -3.429) (end -3.429 -4.191) (layer F.SilkS) (width 0.15))
(fp_line (start -3.429 -4.191) (end 4.191 -4.191) (layer F.SilkS) (width 0.15))
(pad 1 smd rect (at -3.05 0 270) (size 4 2.5) (layers F.Cu F.Paste F.Mask)
(net 3 "Net-(C2-Pad1)"))
(pad 2 smd rect (at 3.05 0 270) (size 4 2.5) (layers F.Cu F.Paste F.Mask)
(net 4 SCART_Red))
(model Capacitors_SMD.3dshapes/c_elec_8x10.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 180))
)
)
(module Capacitors_SMD:c_elec_8x10 (layer F.Cu) (tedit 5B0D21A8) (tstamp 5B0CFF2E)
(at 133.985 65.405 90)
(descr "SMT capacitor, aluminium electrolytic, 8x10")
(path /5ACE7CB7)
(attr smd)
(fp_text reference C3 (at 0 2.667 90) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 220uF (at 0 -5.4483 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text user + (at -2.3114 -0.0762 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 4.0386 4.0386) (end 4.0386 -4.0386) (layer F.Fab) (width 0.15))
(fp_line (start -3.3655 4.0386) (end 4.0386 4.0386) (layer F.Fab) (width 0.15))
(fp_line (start -4.0386 3.3655) (end -3.3655 4.0386) (layer F.Fab) (width 0.15))
(fp_line (start -4.0386 -3.3655) (end -4.0386 3.3655) (layer F.Fab) (width 0.15))
(fp_line (start -3.3655 -4.0386) (end -4.0386 -3.3655) (layer F.Fab) (width 0.15))
(fp_line (start 4.0386 -4.0386) (end -3.3655 -4.0386) (layer F.Fab) (width 0.15))
(fp_arc (start 0 0) (end 3.6322 1.5113) (angle 134.8591484) (layer F.SilkS) (width 0.15))
(fp_arc (start 0 0) (end -3.6322 -1.5113) (angle 134.8460503) (layer F.SilkS) (width 0.15))
(fp_line (start 4.191 4.191) (end 4.191 1.5113) (layer F.SilkS) (width 0.15))
(fp_line (start 4.191 -4.191) (end 4.191 -1.5113) (layer F.SilkS) (width 0.15))
(fp_line (start -4.191 -3.429) (end -4.191 -1.5113) (layer F.SilkS) (width 0.15))
(fp_line (start -4.191 3.429) (end -4.191 1.5113) (layer F.SilkS) (width 0.15))
(fp_text user + (at -4.826 1.778 90) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 5.35 -4.55) (end -5.35 -4.55) (layer F.CrtYd) (width 0.05))
(fp_line (start -5.35 -4.55) (end -5.35 4.55) (layer F.CrtYd) (width 0.05))
(fp_line (start -5.35 4.55) (end 5.35 4.55) (layer F.CrtYd) (width 0.05))
(fp_line (start 5.35 4.55) (end 5.35 -4.55) (layer F.CrtYd) (width 0.05))
(fp_line (start 4.191 4.191) (end -3.429 4.191) (layer F.SilkS) (width 0.15))
(fp_line (start -3.429 4.191) (end -4.191 3.429) (layer F.SilkS) (width 0.15))
(fp_line (start -4.191 -3.429) (end -3.429 -4.191) (layer F.SilkS) (width 0.15))
(fp_line (start -3.429 -4.191) (end 4.191 -4.191) (layer F.SilkS) (width 0.15))
(pad 1 smd rect (at -3.05 0 270) (size 4 2.5) (layers F.Cu F.Paste F.Mask)
(net 5 "Net-(C3-Pad1)"))
(pad 2 smd rect (at 3.05 0 270) (size 4 2.5) (layers F.Cu F.Paste F.Mask)
(net 6 SCART_Green))
(model Capacitors_SMD.3dshapes/c_elec_8x10.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 180))
)
)
(module Capacitors_SMD:c_elec_8x10 (layer F.Cu) (tedit 5B0D21BA) (tstamp 5B0CFF4A)
(at 143.637 65.405 90)
(descr "SMT capacitor, aluminium electrolytic, 8x10")
(path /5ACE7F0B)
(attr smd)
(fp_text reference C4 (at 0 2.667 90) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 220uF (at 0 -5.4483 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text user + (at -2.3114 -0.0762 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 4.0386 4.0386) (end 4.0386 -4.0386) (layer F.Fab) (width 0.15))
(fp_line (start -3.3655 4.0386) (end 4.0386 4.0386) (layer F.Fab) (width 0.15))
(fp_line (start -4.0386 3.3655) (end -3.3655 4.0386) (layer F.Fab) (width 0.15))
(fp_line (start -4.0386 -3.3655) (end -4.0386 3.3655) (layer F.Fab) (width 0.15))
(fp_line (start -3.3655 -4.0386) (end -4.0386 -3.3655) (layer F.Fab) (width 0.15))
(fp_line (start 4.0386 -4.0386) (end -3.3655 -4.0386) (layer F.Fab) (width 0.15))
(fp_arc (start 0 0) (end 3.6322 1.5113) (angle 134.8591484) (layer F.SilkS) (width 0.15))
(fp_arc (start 0 0) (end -3.6322 -1.5113) (angle 134.8460503) (layer F.SilkS) (width 0.15))
(fp_line (start 4.191 4.191) (end 4.191 1.5113) (layer F.SilkS) (width 0.15))
(fp_line (start 4.191 -4.191) (end 4.191 -1.5113) (layer F.SilkS) (width 0.15))
(fp_line (start -4.191 -3.429) (end -4.191 -1.5113) (layer F.SilkS) (width 0.15))
(fp_line (start -4.191 3.429) (end -4.191 1.5113) (layer F.SilkS) (width 0.15))
(fp_text user + (at -4.826 1.778 90) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 5.35 -4.55) (end -5.35 -4.55) (layer F.CrtYd) (width 0.05))
(fp_line (start -5.35 -4.55) (end -5.35 4.55) (layer F.CrtYd) (width 0.05))
(fp_line (start -5.35 4.55) (end 5.35 4.55) (layer F.CrtYd) (width 0.05))
(fp_line (start 5.35 4.55) (end 5.35 -4.55) (layer F.CrtYd) (width 0.05))
(fp_line (start 4.191 4.191) (end -3.429 4.191) (layer F.SilkS) (width 0.15))
(fp_line (start -3.429 4.191) (end -4.191 3.429) (layer F.SilkS) (width 0.15))
(fp_line (start -4.191 -3.429) (end -3.429 -4.191) (layer F.SilkS) (width 0.15))
(fp_line (start -3.429 -4.191) (end 4.191 -4.191) (layer F.SilkS) (width 0.15))
(pad 1 smd rect (at -3.05 0 270) (size 4 2.5) (layers F.Cu F.Paste F.Mask)
(net 19 "Net-(C4-Pad1)"))
(pad 2 smd rect (at 3.05 0 270) (size 4 2.5) (layers F.Cu F.Paste F.Mask)
(net 22 SCART_Blue))
(model Capacitors_SMD.3dshapes/c_elec_8x10.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 180))
)
)
(module Capacitors_SMD:c_elec_8x10 (layer F.Cu) (tedit 5B0D21B2) (tstamp 5B0CFF66)
(at 143.637 76.708 90)
(descr "SMT capacitor, aluminium electrolytic, 8x10")
(path /5ACE7F8C)
(attr smd)
(fp_text reference C5 (at -0.127 2.667 90) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 220uF (at 0 -5.4483 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text user + (at -2.3114 -0.0762 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 4.0386 4.0386) (end 4.0386 -4.0386) (layer F.Fab) (width 0.15))
(fp_line (start -3.3655 4.0386) (end 4.0386 4.0386) (layer F.Fab) (width 0.15))
(fp_line (start -4.0386 3.3655) (end -3.3655 4.0386) (layer F.Fab) (width 0.15))
(fp_line (start -4.0386 -3.3655) (end -4.0386 3.3655) (layer F.Fab) (width 0.15))
(fp_line (start -3.3655 -4.0386) (end -4.0386 -3.3655) (layer F.Fab) (width 0.15))
(fp_line (start 4.0386 -4.0386) (end -3.3655 -4.0386) (layer F.Fab) (width 0.15))
(fp_arc (start 0 0) (end 3.6322 1.5113) (angle 134.8591484) (layer F.SilkS) (width 0.15))
(fp_arc (start 0 0) (end -3.6322 -1.5113) (angle 134.8460503) (layer F.SilkS) (width 0.15))
(fp_line (start 4.191 4.191) (end 4.191 1.5113) (layer F.SilkS) (width 0.15))
(fp_line (start 4.191 -4.191) (end 4.191 -1.5113) (layer F.SilkS) (width 0.15))
(fp_line (start -4.191 -3.429) (end -4.191 -1.5113) (layer F.SilkS) (width 0.15))
(fp_line (start -4.191 3.429) (end -4.191 1.5113) (layer F.SilkS) (width 0.15))
(fp_text user + (at -4.826 1.778 90) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 5.35 -4.55) (end -5.35 -4.55) (layer F.CrtYd) (width 0.05))
(fp_line (start -5.35 -4.55) (end -5.35 4.55) (layer F.CrtYd) (width 0.05))
(fp_line (start -5.35 4.55) (end 5.35 4.55) (layer F.CrtYd) (width 0.05))
(fp_line (start 5.35 4.55) (end 5.35 -4.55) (layer F.CrtYd) (width 0.05))
(fp_line (start 4.191 4.191) (end -3.429 4.191) (layer F.SilkS) (width 0.15))
(fp_line (start -3.429 4.191) (end -4.191 3.429) (layer F.SilkS) (width 0.15))
(fp_line (start -4.191 -3.429) (end -3.429 -4.191) (layer F.SilkS) (width 0.15))
(fp_line (start -3.429 -4.191) (end 4.191 -4.191) (layer F.SilkS) (width 0.15))
(pad 1 smd rect (at -3.05 0 270) (size 4 2.5) (layers F.Cu F.Paste F.Mask)
(net 7 "Net-(C5-Pad1)"))
(pad 2 smd rect (at 3.05 0 270) (size 4 2.5) (layers F.Cu F.Paste F.Mask)
(net 8 SCART_Sync))
(model Capacitors_SMD.3dshapes/c_elec_8x10.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 180))
)
)
(module Solderpads:SOLDER-JUMPER_1-WAY (layer F.Cu) (tedit 5B0D1F09) (tstamp 5B0CFF72)
(at 146.685 89.535 90)
(path /5B0C0BF6)
(fp_text reference P1 (at 0 1.905 90) (layer F.SilkS) hide
(effects (font (size 0.762 0.762) (thickness 0.1524)))
)
(fp_text value CONN_01X02 (at 0 0 90) (layer F.SilkS) hide
(effects (font (size 0.762 0.762) (thickness 0.1524)))
)
(fp_line (start 0.254 1.016) (end 0.254 -1.016) (layer F.SilkS) (width 0.2032))
(fp_line (start -0.254 -1.016) (end -0.254 1.016) (layer F.SilkS) (width 0.2032))
(fp_arc (start 0.254 0) (end 1.27 0) (angle 90) (layer F.SilkS) (width 0.2032))
(fp_arc (start 0.254 0) (end 0.254 -1.016) (angle 90) (layer F.SilkS) (width 0.2032))
(fp_arc (start -0.254 0) (end -1.27 0) (angle 90) (layer F.SilkS) (width 0.2032))
(fp_arc (start -0.254 0) (end -0.254 1.016) (angle 90) (layer F.SilkS) (width 0.2032))
(pad 1 smd rect (at -0.65 0 90) (size 1 1) (layers F.Cu F.Paste F.Mask)
(net 1 +5V))
(pad 2 smd rect (at 0.65 0 90) (size 1 1) (layers F.Cu F.Paste F.Mask)
(net 23 "Net-(P1-Pad2)"))
)
(module Solderpads:SOLDER-JUMPER_1-WAY (layer F.Cu) (tedit 5B0D1EFC) (tstamp 5B0CFF7E)
(at 146.685 86.36 90)
(path /5B0C0C7D)
(fp_text reference P2 (at 0 1.905 90) (layer F.SilkS) hide
(effects (font (size 0.762 0.762) (thickness 0.1524)))
)
(fp_text value CONN_01X02 (at 0 0 90) (layer F.SilkS) hide
(effects (font (size 0.762 0.762) (thickness 0.1524)))
)
(fp_line (start 0.254 1.016) (end 0.254 -1.016) (layer F.SilkS) (width 0.2032))
(fp_line (start -0.254 -1.016) (end -0.254 1.016) (layer F.SilkS) (width 0.2032))
(fp_arc (start 0.254 0) (end 1.27 0) (angle 90) (layer F.SilkS) (width 0.2032))
(fp_arc (start 0.254 0) (end 0.254 -1.016) (angle 90) (layer F.SilkS) (width 0.2032))
(fp_arc (start -0.254 0) (end -1.27 0) (angle 90) (layer F.SilkS) (width 0.2032))
(fp_arc (start -0.254 0) (end -0.254 1.016) (angle 90) (layer F.SilkS) (width 0.2032))
(pad 1 smd rect (at -0.65 0 90) (size 1 1) (layers F.Cu F.Paste F.Mask)
(net 23 "Net-(P1-Pad2)"))
(pad 2 smd rect (at 0.65 0 90) (size 1 1) (layers F.Cu F.Paste F.Mask)
(net 2 GND))
)
(module Resistors_SMD:R_0805_HandSoldering (layer F.Cu) (tedit 5B0D42D7) (tstamp 5B0CFF8E)
(at 122.555 90.805)
(descr "Resistor SMD 0805, hand soldering")
(tags "resistor 0805")
(path /5AC28D24)
(attr smd)
(fp_text reference R1 (at 0 -1.397) (layer F.SilkS)
(effects (font (size 0.75 0.75) (thickness 0.1)))
)
(fp_text value 6k8 (at 0 2.1) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -1 0.625) (end -1 -0.625) (layer F.Fab) (width 0.1))
(fp_line (start 1 0.625) (end -1 0.625) (layer F.Fab) (width 0.1))
(fp_line (start 1 -0.625) (end 1 0.625) (layer F.Fab) (width 0.1))
(fp_line (start -1 -0.625) (end 1 -0.625) (layer F.Fab) (width 0.1))
(fp_line (start -2.4 -1) (end 2.4 -1) (layer F.CrtYd) (width 0.05))
(fp_line (start -2.4 1) (end 2.4 1) (layer F.CrtYd) (width 0.05))
(fp_line (start -2.4 -1) (end -2.4 1) (layer F.CrtYd) (width 0.05))
(fp_line (start 2.4 -1) (end 2.4 1) (layer F.CrtYd) (width 0.05))
(fp_line (start 0.6 0.875) (end -0.6 0.875) (layer F.SilkS) (width 0.15))
(fp_line (start -0.6 -0.875) (end 0.6 -0.875) (layer F.SilkS) (width 0.15))
(pad 1 smd rect (at -1.35 0) (size 1.5 1.3) (layers F.Cu F.Paste F.Mask)
(net 9 "Net-(R1-Pad1)"))
(pad 2 smd rect (at 1.35 0) (size 1.5 1.3) (layers F.Cu F.Paste F.Mask)
(net 10 Jamma_Red))
(model Resistors_SMD.3dshapes/R_0805_HandSoldering.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Resistors_SMD:R_0805_HandSoldering (layer F.Cu) (tedit 5B0D5839) (tstamp 5B0CFF9E)
(at 128.27 90.805)
(descr "Resistor SMD 0805, hand soldering")
(tags "resistor 0805")
(path /5AC28EE1)
(attr smd)
(fp_text reference R2 (at 0 -1.397) (layer F.SilkS)
(effects (font (size 0.75 0.75) (thickness 0.1)))
)
(fp_text value 6k8 (at 0 2.1) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -1 0.625) (end -1 -0.625) (layer F.Fab) (width 0.1))
(fp_line (start 1 0.625) (end -1 0.625) (layer F.Fab) (width 0.1))
(fp_line (start 1 -0.625) (end 1 0.625) (layer F.Fab) (width 0.1))
(fp_line (start -1 -0.625) (end 1 -0.625) (layer F.Fab) (width 0.1))
(fp_line (start -2.4 -1) (end 2.4 -1) (layer F.CrtYd) (width 0.05))
(fp_line (start -2.4 1) (end 2.4 1) (layer F.CrtYd) (width 0.05))
(fp_line (start -2.4 -1) (end -2.4 1) (layer F.CrtYd) (width 0.05))
(fp_line (start 2.4 -1) (end 2.4 1) (layer F.CrtYd) (width 0.05))
(fp_line (start 0.6 0.875) (end -0.6 0.875) (layer F.SilkS) (width 0.15))
(fp_line (start -0.6 -0.875) (end 0.6 -0.875) (layer F.SilkS) (width 0.15))
(pad 1 smd rect (at -1.35 0) (size 1.5 1.3) (layers F.Cu F.Paste F.Mask)
(net 11 "Net-(R2-Pad1)"))
(pad 2 smd rect (at 1.35 0) (size 1.5 1.3) (layers F.Cu F.Paste F.Mask)
(net 14 Jamma_Green))
(model Resistors_SMD.3dshapes/R_0805_HandSoldering.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Resistors_SMD:R_0805_HandSoldering (layer F.Cu) (tedit 5B0D4254) (tstamp 5B0CFFAE)
(at 133.985 90.805)
(descr "Resistor SMD 0805, hand soldering")
(tags "resistor 0805")
(path /5AC28DF2)
(attr smd)
(fp_text reference R3 (at 0 -1.397) (layer F.SilkS)
(effects (font (size 0.75 0.75) (thickness 0.1)))
)
(fp_text value 6k8 (at 0 2.1) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -1 0.625) (end -1 -0.625) (layer F.Fab) (width 0.1))
(fp_line (start 1 0.625) (end -1 0.625) (layer F.Fab) (width 0.1))
(fp_line (start 1 -0.625) (end 1 0.625) (layer F.Fab) (width 0.1))
(fp_line (start -1 -0.625) (end 1 -0.625) (layer F.Fab) (width 0.1))
(fp_line (start -2.4 -1) (end 2.4 -1) (layer F.CrtYd) (width 0.05))
(fp_line (start -2.4 1) (end 2.4 1) (layer F.CrtYd) (width 0.05))
(fp_line (start -2.4 -1) (end -2.4 1) (layer F.CrtYd) (width 0.05))
(fp_line (start 2.4 -1) (end 2.4 1) (layer F.CrtYd) (width 0.05))
(fp_line (start 0.6 0.875) (end -0.6 0.875) (layer F.SilkS) (width 0.15))
(fp_line (start -0.6 -0.875) (end 0.6 -0.875) (layer F.SilkS) (width 0.15))
(pad 1 smd rect (at -1.35 0) (size 1.5 1.3) (layers F.Cu F.Paste F.Mask)
(net 13 "Net-(R3-Pad1)"))
(pad 2 smd rect (at 1.35 0) (size 1.5 1.3) (layers F.Cu F.Paste F.Mask)
(net 12 Jamma_Blue))
(model Resistors_SMD.3dshapes/R_0805_HandSoldering.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Resistors_SMD:R_0805_HandSoldering (layer F.Cu) (tedit 5B0D4266) (tstamp 5B0CFFBE)
(at 139.7 90.805)
(descr "Resistor SMD 0805, hand soldering")
(tags "resistor 0805")
(path /5AC28E54)
(attr smd)
(fp_text reference R4 (at 0 -1.397) (layer F.SilkS)
(effects (font (size 0.75 0.75) (thickness 0.1)))
)
(fp_text value 6k8 (at 0 2.1) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -1 0.625) (end -1 -0.625) (layer F.Fab) (width 0.1))
(fp_line (start 1 0.625) (end -1 0.625) (layer F.Fab) (width 0.1))
(fp_line (start 1 -0.625) (end 1 0.625) (layer F.Fab) (width 0.1))
(fp_line (start -1 -0.625) (end 1 -0.625) (layer F.Fab) (width 0.1))
(fp_line (start -2.4 -1) (end 2.4 -1) (layer F.CrtYd) (width 0.05))
(fp_line (start -2.4 1) (end 2.4 1) (layer F.CrtYd) (width 0.05))
(fp_line (start -2.4 -1) (end -2.4 1) (layer F.CrtYd) (width 0.05))
(fp_line (start 2.4 -1) (end 2.4 1) (layer F.CrtYd) (width 0.05))
(fp_line (start 0.6 0.875) (end -0.6 0.875) (layer F.SilkS) (width 0.15))
(fp_line (start -0.6 -0.875) (end 0.6 -0.875) (layer F.SilkS) (width 0.15))
(pad 1 smd rect (at -1.35 0) (size 1.5 1.3) (layers F.Cu F.Paste F.Mask)
(net 15 "Net-(R4-Pad1)"))
(pad 2 smd rect (at 1.35 0) (size 1.5 1.3) (layers F.Cu F.Paste F.Mask)
(net 16 Jamma_Sync))
(model Resistors_SMD.3dshapes/R_0805_HandSoldering.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Resistors_SMD:R_0805_HandSoldering (layer F.Cu) (tedit 5B0D217E) (tstamp 5B0CFFCE)
(at 139.7 87.63)
(descr "Resistor SMD 0805, hand soldering")
(tags "resistor 0805")
(path /5AC28C00)
(attr smd)
(fp_text reference R5 (at 0 -1.397) (layer F.SilkS)
(effects (font (size 0.75 0.75) (thickness 0.1)))
)
(fp_text value 430 (at 0 2.1) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -1 0.625) (end -1 -0.625) (layer F.Fab) (width 0.1))
(fp_line (start 1 0.625) (end -1 0.625) (layer F.Fab) (width 0.1))
(fp_line (start 1 -0.625) (end 1 0.625) (layer F.Fab) (width 0.1))
(fp_line (start -1 -0.625) (end 1 -0.625) (layer F.Fab) (width 0.1))
(fp_line (start -2.4 -1) (end 2.4 -1) (layer F.CrtYd) (width 0.05))
(fp_line (start -2.4 1) (end 2.4 1) (layer F.CrtYd) (width 0.05))
(fp_line (start -2.4 -1) (end -2.4 1) (layer F.CrtYd) (width 0.05))
(fp_line (start 2.4 -1) (end 2.4 1) (layer F.CrtYd) (width 0.05))
(fp_line (start 0.6 0.875) (end -0.6 0.875) (layer F.SilkS) (width 0.15))
(fp_line (start -0.6 -0.875) (end 0.6 -0.875) (layer F.SilkS) (width 0.15))
(pad 1 smd rect (at -1.35 0) (size 1.5 1.3) (layers F.Cu F.Paste F.Mask)
(net 15 "Net-(R4-Pad1)"))
(pad 2 smd rect (at 1.35 0) (size 1.5 1.3) (layers F.Cu F.Paste F.Mask)
(net 2 GND))
(model Resistors_SMD.3dshapes/R_0805_HandSoldering.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Resistors_SMD:R_0805_HandSoldering (layer F.Cu) (tedit 5B0D4243) (tstamp 5B0CFFDE)
(at 133.985 87.63)
(descr "Resistor SMD 0805, hand soldering")
(tags "resistor 0805")
(path /5AC28B9F)
(attr smd)
(fp_text reference R6 (at 0 -1.397) (layer F.SilkS)
(effects (font (size 0.75 0.75) (thickness 0.1)))
)
(fp_text value 1k4 (at 0 2.1) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -1 0.625) (end -1 -0.625) (layer F.Fab) (width 0.1))
(fp_line (start 1 0.625) (end -1 0.625) (layer F.Fab) (width 0.1))
(fp_line (start 1 -0.625) (end 1 0.625) (layer F.Fab) (width 0.1))
(fp_line (start -1 -0.625) (end 1 -0.625) (layer F.Fab) (width 0.1))
(fp_line (start -2.4 -1) (end 2.4 -1) (layer F.CrtYd) (width 0.05))
(fp_line (start -2.4 1) (end 2.4 1) (layer F.CrtYd) (width 0.05))
(fp_line (start -2.4 -1) (end -2.4 1) (layer F.CrtYd) (width 0.05))
(fp_line (start 2.4 -1) (end 2.4 1) (layer F.CrtYd) (width 0.05))
(fp_line (start 0.6 0.875) (end -0.6 0.875) (layer F.SilkS) (width 0.15))
(fp_line (start -0.6 -0.875) (end 0.6 -0.875) (layer F.SilkS) (width 0.15))
(pad 1 smd rect (at -1.35 0) (size 1.5 1.3) (layers F.Cu F.Paste F.Mask)
(net 13 "Net-(R3-Pad1)"))
(pad 2 smd rect (at 1.35 0) (size 1.5 1.3) (layers F.Cu F.Paste F.Mask)
(net 2 GND))
(model Resistors_SMD.3dshapes/R_0805_HandSoldering.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Resistors_SMD:R_0805_HandSoldering (layer F.Cu) (tedit 5B0D427B) (tstamp 5B0CFFEE)
(at 128.27 87.63)
(descr "Resistor SMD 0805, hand soldering")
(tags "resistor 0805")
(path /5AC2875D)
(attr smd)
(fp_text reference R7 (at 0 -1.397) (layer F.SilkS)
(effects (font (size 0.75 0.75) (thickness 0.1)))
)
(fp_text value 1k4 (at 0 2.1) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -1 0.625) (end -1 -0.625) (layer F.Fab) (width 0.1))
(fp_line (start 1 0.625) (end -1 0.625) (layer F.Fab) (width 0.1))
(fp_line (start 1 -0.625) (end 1 0.625) (layer F.Fab) (width 0.1))
(fp_line (start -1 -0.625) (end 1 -0.625) (layer F.Fab) (width 0.1))
(fp_line (start -2.4 -1) (end 2.4 -1) (layer F.CrtYd) (width 0.05))
(fp_line (start -2.4 1) (end 2.4 1) (layer F.CrtYd) (width 0.05))
(fp_line (start -2.4 -1) (end -2.4 1) (layer F.CrtYd) (width 0.05))
(fp_line (start 2.4 -1) (end 2.4 1) (layer F.CrtYd) (width 0.05))
(fp_line (start 0.6 0.875) (end -0.6 0.875) (layer F.SilkS) (width 0.15))
(fp_line (start -0.6 -0.875) (end 0.6 -0.875) (layer F.SilkS) (width 0.15))
(pad 1 smd rect (at -1.35 0) (size 1.5 1.3) (layers F.Cu F.Paste F.Mask)
(net 11 "Net-(R2-Pad1)"))
(pad 2 smd rect (at 1.35 0) (size 1.5 1.3) (layers F.Cu F.Paste F.Mask)
(net 2 GND))
(model Resistors_SMD.3dshapes/R_0805_HandSoldering.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Resistors_SMD:R_0805_HandSoldering (layer F.Cu) (tedit 5B0D42AF) (tstamp 5B0CFFFE)
(at 122.555 87.63)
(descr "Resistor SMD 0805, hand soldering")
(tags "resistor 0805")
(path /5AC28C8F)
(attr smd)
(fp_text reference R8 (at 0 -1.397) (layer F.SilkS)
(effects (font (size 0.75 0.75) (thickness 0.1)))
)
(fp_text value 1k4 (at 0 2.1) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -1 0.625) (end -1 -0.625) (layer F.Fab) (width 0.1))
(fp_line (start 1 0.625) (end -1 0.625) (layer F.Fab) (width 0.1))
(fp_line (start 1 -0.625) (end 1 0.625) (layer F.Fab) (width 0.1))
(fp_line (start -1 -0.625) (end 1 -0.625) (layer F.Fab) (width 0.1))
(fp_line (start -2.4 -1) (end 2.4 -1) (layer F.CrtYd) (width 0.05))
(fp_line (start -2.4 1) (end 2.4 1) (layer F.CrtYd) (width 0.05))
(fp_line (start -2.4 -1) (end -2.4 1) (layer F.CrtYd) (width 0.05))
(fp_line (start 2.4 -1) (end 2.4 1) (layer F.CrtYd) (width 0.05))
(fp_line (start 0.6 0.875) (end -0.6 0.875) (layer F.SilkS) (width 0.15))
(fp_line (start -0.6 -0.875) (end 0.6 -0.875) (layer F.SilkS) (width 0.15))
(pad 1 smd rect (at -1.35 0) (size 1.5 1.3) (layers F.Cu F.Paste F.Mask)
(net 9 "Net-(R1-Pad1)"))
(pad 2 smd rect (at 1.35 0) (size 1.5 1.3) (layers F.Cu F.Paste F.Mask)
(net 2 GND))
(model Resistors_SMD.3dshapes/R_0805_HandSoldering.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Resistors_SMD:R_0805_HandSoldering (layer F.Cu) (tedit 5B0D21DA) (tstamp 5B0D000E)
(at 122.555 72.39 180)
(descr "Resistor SMD 0805, hand soldering")
(tags "resistor 0805")
(path /5AC29C32)
(attr smd)
(fp_text reference R9 (at 0 1.397 180) (layer F.SilkS)
(effects (font (size 0.75 0.75) (thickness 0.1)))
)
(fp_text value 75R (at 0 2.1 180) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -1 0.625) (end -1 -0.625) (layer F.Fab) (width 0.1))
(fp_line (start 1 0.625) (end -1 0.625) (layer F.Fab) (width 0.1))
(fp_line (start 1 -0.625) (end 1 0.625) (layer F.Fab) (width 0.1))
(fp_line (start -1 -0.625) (end 1 -0.625) (layer F.Fab) (width 0.1))
(fp_line (start -2.4 -1) (end 2.4 -1) (layer F.CrtYd) (width 0.05))
(fp_line (start -2.4 1) (end 2.4 1) (layer F.CrtYd) (width 0.05))
(fp_line (start -2.4 -1) (end -2.4 1) (layer F.CrtYd) (width 0.05))
(fp_line (start 2.4 -1) (end 2.4 1) (layer F.CrtYd) (width 0.05))
(fp_line (start 0.6 0.875) (end -0.6 0.875) (layer F.SilkS) (width 0.15))
(fp_line (start -0.6 -0.875) (end 0.6 -0.875) (layer F.SilkS) (width 0.15))
(pad 1 smd rect (at -1.35 0 180) (size 1.5 1.3) (layers F.Cu F.Paste F.Mask)
(net 3 "Net-(C2-Pad1)"))
(pad 2 smd rect (at 1.35 0 180) (size 1.5 1.3) (layers F.Cu F.Paste F.Mask)
(net 17 "Net-(R9-Pad2)"))
(model Resistors_SMD.3dshapes/R_0805_HandSoldering.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Resistors_SMD:R_0805_HandSoldering (layer F.Cu) (tedit 5B0D2161) (tstamp 5B0D001E)
(at 128.27 72.39 180)
(descr "Resistor SMD 0805, hand soldering")
(tags "resistor 0805")
(path /5AC29D2E)
(attr smd)
(fp_text reference R10 (at -0.127 1.397 180) (layer F.SilkS)
(effects (font (size 0.75 0.75) (thickness 0.1)))
)
(fp_text value 75R (at 0 2.1 180) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -1 0.625) (end -1 -0.625) (layer F.Fab) (width 0.1))
(fp_line (start 1 0.625) (end -1 0.625) (layer F.Fab) (width 0.1))
(fp_line (start 1 -0.625) (end 1 0.625) (layer F.Fab) (width 0.1))
(fp_line (start -1 -0.625) (end 1 -0.625) (layer F.Fab) (width 0.1))
(fp_line (start -2.4 -1) (end 2.4 -1) (layer F.CrtYd) (width 0.05))
(fp_line (start -2.4 1) (end 2.4 1) (layer F.CrtYd) (width 0.05))
(fp_line (start -2.4 -1) (end -2.4 1) (layer F.CrtYd) (width 0.05))
(fp_line (start 2.4 -1) (end 2.4 1) (layer F.CrtYd) (width 0.05))
(fp_line (start 0.6 0.875) (end -0.6 0.875) (layer F.SilkS) (width 0.15))
(fp_line (start -0.6 -0.875) (end 0.6 -0.875) (layer F.SilkS) (width 0.15))
(pad 1 smd rect (at -1.35 0 180) (size 1.5 1.3) (layers F.Cu F.Paste F.Mask)
(net 5 "Net-(C3-Pad1)"))
(pad 2 smd rect (at 1.35 0 180) (size 1.5 1.3) (layers F.Cu F.Paste F.Mask)
(net 18 "Net-(R10-Pad2)"))
(model Resistors_SMD.3dshapes/R_0805_HandSoldering.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Resistors_SMD:R_0805_HandSoldering (layer F.Cu) (tedit 5B0D4322) (tstamp 5B0D002E)
(at 134.112 72.39 180)
(descr "Resistor SMD 0805, hand soldering")
(tags "resistor 0805")
(path /5AC29DDE)
(attr smd)
(fp_text reference R11 (at 0 1.397 180) (layer F.SilkS)
(effects (font (size 0.75 0.75) (thickness 0.1)))
)
(fp_text value 75R (at 0 2.1 180) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -1 0.625) (end -1 -0.625) (layer F.Fab) (width 0.1))
(fp_line (start 1 0.625) (end -1 0.625) (layer F.Fab) (width 0.1))
(fp_line (start 1 -0.625) (end 1 0.625) (layer F.Fab) (width 0.1))
(fp_line (start -1 -0.625) (end 1 -0.625) (layer F.Fab) (width 0.1))
(fp_line (start -2.4 -1) (end 2.4 -1) (layer F.CrtYd) (width 0.05))
(fp_line (start -2.4 1) (end 2.4 1) (layer F.CrtYd) (width 0.05))
(fp_line (start -2.4 -1) (end -2.4 1) (layer F.CrtYd) (width 0.05))
(fp_line (start 2.4 -1) (end 2.4 1) (layer F.CrtYd) (width 0.05))
(fp_line (start 0.6 0.875) (end -0.6 0.875) (layer F.SilkS) (width 0.15))
(fp_line (start -0.6 -0.875) (end 0.6 -0.875) (layer F.SilkS) (width 0.15))
(pad 1 smd rect (at -1.35 0 180) (size 1.5 1.3) (layers F.Cu F.Paste F.Mask)
(net 19 "Net-(C4-Pad1)"))
(pad 2 smd rect (at 1.35 0 180) (size 1.5 1.3) (layers F.Cu F.Paste F.Mask)
(net 20 "Net-(R11-Pad2)"))
(model Resistors_SMD.3dshapes/R_0805_HandSoldering.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Resistors_SMD:R_0805_HandSoldering (layer F.Cu) (tedit 5B0D434A) (tstamp 5B0D003E)
(at 134.112 75.438 180)
(descr "Resistor SMD 0805, hand soldering")
(tags "resistor 0805")
(path /5AC29E31)
(attr smd)
(fp_text reference R12 (at 0 1.397 180) (layer F.SilkS)
(effects (font (size 0.75 0.75) (thickness 0.1)))
)
(fp_text value 75R (at 0 2.1 180) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -1 0.625) (end -1 -0.625) (layer F.Fab) (width 0.1))
(fp_line (start 1 0.625) (end -1 0.625) (layer F.Fab) (width 0.1))
(fp_line (start 1 -0.625) (end 1 0.625) (layer F.Fab) (width 0.1))
(fp_line (start -1 -0.625) (end 1 -0.625) (layer F.Fab) (width 0.1))
(fp_line (start -2.4 -1) (end 2.4 -1) (layer F.CrtYd) (width 0.05))
(fp_line (start -2.4 1) (end 2.4 1) (layer F.CrtYd) (width 0.05))
(fp_line (start -2.4 -1) (end -2.4 1) (layer F.CrtYd) (width 0.05))
(fp_line (start 2.4 -1) (end 2.4 1) (layer F.CrtYd) (width 0.05))
(fp_line (start 0.6 0.875) (end -0.6 0.875) (layer F.SilkS) (width 0.15))
(fp_line (start -0.6 -0.875) (end 0.6 -0.875) (layer F.SilkS) (width 0.15))
(pad 1 smd rect (at -1.35 0 180) (size 1.5 1.3) (layers F.Cu F.Paste F.Mask)
(net 7 "Net-(C5-Pad1)"))
(pad 2 smd rect (at 1.35 0 180) (size 1.5 1.3) (layers F.Cu F.Paste F.Mask)
(net 21 "Net-(R12-Pad2)"))
(model Resistors_SMD.3dshapes/R_0805_HandSoldering.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Housings_SSOP:SSOP-14_5.3x6.2mm_Pitch0.65mm (layer F.Cu) (tedit 5B0D4335) (tstamp 5B0D0060)
(at 125.095 80.01 90)
(descr "SSOP14: plastic shrink small outline package; 14 leads; body width 5.3 mm; (see NXP SSOP-TSSOP-VSO-REFLOW.pdf and sot337-1_po.pdf)")
(tags "SSOP 0.65")
(path /5AC2AAC7)
(attr smd)
(fp_text reference U1 (at 0 -4.2 90) (layer F.SilkS)
(effects (font (size 0.75 0.75) (thickness 0.1)))
)
(fp_text value THS7374 (at 0 4.2 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -1.65 -3.1) (end 2.65 -3.1) (layer F.Fab) (width 0.15))
(fp_line (start 2.65 -3.1) (end 2.65 3.1) (layer F.Fab) (width 0.15))
(fp_line (start 2.65 3.1) (end -2.65 3.1) (layer F.Fab) (width 0.15))
(fp_line (start -2.65 3.1) (end -2.65 -2.1) (layer F.Fab) (width 0.15))
(fp_line (start -2.65 -2.1) (end -1.65 -3.1) (layer F.Fab) (width 0.15))
(fp_line (start -4.3 -3.45) (end -4.3 3.45) (layer F.CrtYd) (width 0.05))
(fp_line (start 4.3 -3.45) (end 4.3 3.45) (layer F.CrtYd) (width 0.05))
(fp_line (start -4.3 -3.45) (end 4.3 -3.45) (layer F.CrtYd) (width 0.05))
(fp_line (start -4.3 3.45) (end 4.3 3.45) (layer F.CrtYd) (width 0.05))
(fp_line (start -2.775 -3.275) (end -2.775 -2.475) (layer F.SilkS) (width 0.15))
(fp_line (start 2.775 -3.275) (end 2.775 -2.375) (layer F.SilkS) (width 0.15))
(fp_line (start 2.775 3.275) (end 2.775 2.375) (layer F.SilkS) (width 0.15))
(fp_line (start -2.775 3.275) (end -2.775 2.375) (layer F.SilkS) (width 0.15))
(fp_line (start -2.775 -3.275) (end 2.775 -3.275) (layer F.SilkS) (width 0.15))
(fp_line (start -2.775 3.275) (end 2.775 3.275) (layer F.SilkS) (width 0.15))
(fp_line (start -2.775 -2.475) (end -4.05 -2.475) (layer F.SilkS) (width 0.15))
(pad 1 smd rect (at -3.45 -1.95 90) (size 1.2 0.4) (layers F.Cu F.Paste F.Mask)
(net 9 "Net-(R1-Pad1)"))
(pad 2 smd rect (at -3.45 -1.3 90) (size 1.2 0.4) (layers F.Cu F.Paste F.Mask)
(net 11 "Net-(R2-Pad1)"))
(pad 3 smd rect (at -3.45 -0.65 90) (size 1.2 0.4) (layers F.Cu F.Paste F.Mask)
(net 13 "Net-(R3-Pad1)"))
(pad 4 smd rect (at -3.45 0 90) (size 1.2 0.4) (layers F.Cu F.Paste F.Mask)
(net 15 "Net-(R4-Pad1)"))
(pad 5 smd rect (at -3.45 0.65 90) (size 1.2 0.4) (layers F.Cu F.Paste F.Mask)
(net 2 GND))
(pad 6 smd rect (at -3.45 1.3 90) (size 1.2 0.4) (layers F.Cu F.Paste F.Mask)
(net 2 GND))
(pad 7 smd rect (at -3.45 1.95 90) (size 1.2 0.4) (layers F.Cu F.Paste F.Mask))
(pad 8 smd rect (at 3.45 1.95 90) (size 1.2 0.4) (layers F.Cu F.Paste F.Mask))
(pad 9 smd rect (at 3.45 1.3 90) (size 1.2 0.4) (layers F.Cu F.Paste F.Mask)
(net 23 "Net-(P1-Pad2)"))
(pad 10 smd rect (at 3.45 0.65 90) (size 1.2 0.4) (layers F.Cu F.Paste F.Mask)
(net 1 +5V))
(pad 11 smd rect (at 3.45 0 90) (size 1.2 0.4) (layers F.Cu F.Paste F.Mask)
(net 21 "Net-(R12-Pad2)"))
(pad 12 smd rect (at 3.45 -0.65 90) (size 1.2 0.4) (layers F.Cu F.Paste F.Mask)
(net 20 "Net-(R11-Pad2)"))
(pad 13 smd rect (at 3.45 -1.3 90) (size 1.2 0.4) (layers F.Cu F.Paste F.Mask)
(net 18 "Net-(R10-Pad2)"))
(pad 14 smd rect (at 3.45 -1.95 90) (size 1.2 0.4) (layers F.Cu F.Paste F.Mask)
(net 17 "Net-(R9-Pad2)"))
(model Housings_SSOP.3dshapes/SSOP-14_5.3x6.2mm_Pitch0.65mm.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Solderpads:SolderWirePad_single_SMD_3x5mm (layer F.Cu) (tedit 5B051DC6) (tstamp 5B0D0069)
(at 121.285 96.52)
(descr "Wire Pad, Square, SMD Pad, 2mm x 3mm,")
(tags "MesurementPoint Square SMDPad 5mmx10mm ")
(path /5ACF0B55)
(attr smd)
(fp_text reference W1 (at 0 -1.5) (layer F.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value Jamma_Red (at 0 3.5) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 1.726 -2.694) (end -1.726 -2.694) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.726 2.694) (end 1.726 -2.694) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.726 2.694) (end 1.726 2.694) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.726 -2.694) (end -1.726 2.694) (layer F.CrtYd) (width 0.05))
(pad 1 smd rect (at 0 0) (size 3 5) (layers F.Cu F.Paste F.Mask)
(net 10 Jamma_Red))
)
(module Solderpads:SolderWirePad_single_SMD_3x5mm (layer F.Cu) (tedit 5B051DC6) (tstamp 5B0D0072)
(at 131.445 96.52)
(descr "Wire Pad, Square, SMD Pad, 2mm x 3mm,")
(tags "MesurementPoint Square SMDPad 5mmx10mm ")
(path /5ACF17C6)
(attr smd)
(fp_text reference W2 (at 0 -1.5) (layer F.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value Jamma_Blue (at 0 3.5) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 1.726 -2.694) (end -1.726 -2.694) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.726 2.694) (end 1.726 -2.694) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.726 2.694) (end 1.726 2.694) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.726 -2.694) (end -1.726 2.694) (layer F.CrtYd) (width 0.05))
(pad 1 smd rect (at 0 0) (size 3 5) (layers F.Cu F.Paste F.Mask)
(net 12 Jamma_Blue))
)
(module Solderpads:SolderWirePad_single_SMD_3x5mm (layer F.Cu) (tedit 5B051DC6) (tstamp 5B0D007B)
(at 126.365 96.52)
(descr "Wire Pad, Square, SMD Pad, 2mm x 3mm,")
(tags "MesurementPoint Square SMDPad 5mmx10mm ")
(path /5ACF16F3)
(attr smd)
(fp_text reference W3 (at 0 -1.5) (layer F.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value Jamma_Green (at 0 3.5) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 1.726 -2.694) (end -1.726 -2.694) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.726 2.694) (end 1.726 -2.694) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.726 2.694) (end 1.726 2.694) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.726 -2.694) (end -1.726 2.694) (layer F.CrtYd) (width 0.05))
(pad 1 smd rect (at 0 0) (size 3 5) (layers F.Cu F.Paste F.Mask)
(net 14 Jamma_Green))
)
(module Solderpads:SolderWirePad_single_SMD_3x5mm (layer F.Cu) (tedit 5B051DC6) (tstamp 5B0D0084)
(at 136.525 96.52)
(descr "Wire Pad, Square, SMD Pad, 2mm x 3mm,")
(tags "MesurementPoint Square SMDPad 5mmx10mm ")
(path /5ACF105A)
(attr smd)
(fp_text reference W4 (at 0 -1.5) (layer F.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value "Jamma Sync" (at 0 3.5) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 1.726 -2.694) (end -1.726 -2.694) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.726 2.694) (end 1.726 -2.694) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.726 2.694) (end 1.726 2.694) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.726 -2.694) (end -1.726 2.694) (layer F.CrtYd) (width 0.05))
(pad 1 smd rect (at 0 0) (size 3 5) (layers F.Cu F.Paste F.Mask)
(net 16 Jamma_Sync))
)
(module Solderpads:SolderWirePad_single_SMD_3x5mm (layer F.Cu) (tedit 5B051DC6) (tstamp 5B0D008D)
(at 121.285 55.245)
(descr "Wire Pad, Square, SMD Pad, 2mm x 3mm,")
(tags "MesurementPoint Square SMDPad 5mmx10mm ")
(path /5ACF25E2)
(attr smd)
(fp_text reference W5 (at 0 -1.5) (layer F.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value SCART_Red (at 0 3.5) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 1.726 -2.694) (end -1.726 -2.694) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.726 2.694) (end 1.726 -2.694) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.726 2.694) (end 1.726 2.694) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.726 -2.694) (end -1.726 2.694) (layer F.CrtYd) (width 0.05))
(pad 1 smd rect (at 0 0) (size 3 5) (layers F.Cu F.Paste F.Mask)
(net 4 SCART_Red))
)
(module Solderpads:SolderWirePad_single_SMD_3x5mm (layer F.Cu) (tedit 5B051DC6) (tstamp 5B0D0096)
(at 126.365 55.245)
(descr "Wire Pad, Square, SMD Pad, 2mm x 3mm,")
(tags "MesurementPoint Square SMDPad 5mmx10mm ")
(path /5ACF29EA)
(attr smd)
(fp_text reference W6 (at 0 -1.5) (layer F.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)))
)