-
Notifications
You must be signed in to change notification settings - Fork 1
/
MetaRobotR0.kicad_pcb
4994 lines (4908 loc) · 308 KB
/
MetaRobotR0.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 3) (host pcbnew "(2013-07-07 BZR 4022)-stable")
(general
(links 150)
(no_connects 0)
(area 96.076487 67.000001 211.428001 188.372044)
(thickness 1.6)
(drawings 122)
(tracks 838)
(zones 0)
(modules 77)
(nets 45)
)
(page A3)
(title_block
(title "Arduino Uno R3 Compatible")
(rev 0.01)
(company "Numato Systems")
)
(layers
(15 F.Cu signal)
(0 B.Cu signal)
(16 B.Adhes user)
(17 F.Adhes user)
(18 B.Paste user)
(19 F.Paste user)
(20 B.SilkS user)
(21 F.SilkS user)
(22 B.Mask user)
(23 F.Mask user)
(24 Dwgs.User user)
(25 Cmts.User user)
(26 Eco1.User user)
(27 Eco2.User user hide)
(28 Edge.Cuts user)
)
(setup
(last_trace_width 0.254)
(user_trace_width 0.254)
(user_trace_width 0.3048)
(user_trace_width 0.3556)
(user_trace_width 0.4064)
(user_trace_width 0.508)
(user_trace_width 1.016)
(user_trace_width 1.524)
(trace_clearance 0.254)
(zone_clearance 0.508)
(zone_45_only no)
(trace_min 0.254)
(segment_width 0.2)
(edge_width 0.1)
(via_size 0.889)
(via_drill 0.635)
(via_min_size 0.889)
(via_min_drill 0.508)
(user_via 1.4224 0.6096)
(uvia_size 0.508)
(uvia_drill 0.127)
(uvias_allowed no)
(uvia_min_size 0.508)
(uvia_min_drill 0.127)
(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 4.064 4.064)
(pad_drill 3.048)
(pad_to_mask_clearance 0)
(aux_axis_origin 0 0)
(visible_elements 7FFFFFFF)
(pcbplotparams
(layerselection 2097152)
(usegerberextensions true)
(excludeedgelayer true)
(linewidth 0.150000)
(plotframeref false)
(viasonmask false)
(mode 1)
(useauxorigin false)
(hpglpennumber 1)
(hpglpenspeed 20)
(hpglpendiameter 15)
(hpglpenoverlay 2)
(psnegative false)
(psa4output false)
(plotreference true)
(plotvalue true)
(plotothertext true)
(plotinvisibletext false)
(padsonsilk false)
(subtractmaskfromsilk false)
(outputformat 1)
(mirror false)
(drillshape 0)
(scaleselection 1)
(outputdirectory Gerbers/))
)
(net 0 "")
(net 1 +3.3V)
(net 2 +5V)
(net 3 +BATT)
(net 4 /AREF)
(net 5 /OSC1)
(net 6 /OSC2)
(net 7 /PB0)
(net 8 /PB1)
(net 9 /PB2)
(net 10 /PB3)
(net 11 /PB4)
(net 12 /PB5)
(net 13 /PC0)
(net 14 /PC1)
(net 15 /PC2)
(net 16 /PC3)
(net 17 /PC4)
(net 18 /PC5)
(net 19 /PD0)
(net 20 /PD1)
(net 21 /PD2)
(net 22 /PD3)
(net 23 /PD4)
(net 24 /PD5)
(net 25 /PD6)
(net 26 /PD7)
(net 27 /~RST)
(net 28 GND)
(net 29 N-0000012)
(net 30 N-0000013)
(net 31 N-0000014)
(net 32 N-0000015)
(net 33 N-0000016)
(net 34 N-0000017)
(net 35 N-0000019)
(net 36 N-0000020)
(net 37 N-0000021)
(net 38 N-0000022)
(net 39 N-0000024)
(net 40 N-0000025)
(net 41 N-0000026)
(net 42 N-0000027)
(net 43 N-0000028)
(net 44 N-0000030)
(net_class Default "Esta é a classe de net default."
(clearance 0.254)
(trace_width 0.254)
(via_dia 0.889)
(via_drill 0.635)
(uvia_dia 0.508)
(uvia_drill 0.127)
(add_net "")
(add_net +3.3V)
(add_net +5V)
(add_net +BATT)
(add_net /AREF)
(add_net /OSC1)
(add_net /OSC2)
(add_net /PB0)
(add_net /PB1)
(add_net /PB2)
(add_net /PB3)
(add_net /PB4)
(add_net /PB5)
(add_net /PC0)
(add_net /PC1)
(add_net /PC2)
(add_net /PC3)
(add_net /PC4)
(add_net /PC5)
(add_net /PD0)
(add_net /PD1)
(add_net /PD2)
(add_net /PD3)
(add_net /PD4)
(add_net /PD5)
(add_net /PD6)
(add_net /PD7)
(add_net /~RST)
(add_net GND)
(add_net N-0000012)
(add_net N-0000013)
(add_net N-0000014)
(add_net N-0000015)
(add_net N-0000016)
(add_net N-0000017)
(add_net N-0000019)
(add_net N-0000020)
(add_net N-0000021)
(add_net N-0000022)
(add_net N-0000024)
(add_net N-0000025)
(add_net N-0000026)
(add_net N-0000027)
(add_net N-0000028)
(add_net N-0000030)
)
(module 1pin (layer F.Cu) (tedit 5696585A) (tstamp 4F0929D8)
(at 152.75052 138.3157 90)
(descr "module 1 pin (ou trou mecanique de percage)")
(tags DEV)
(path 1pin)
(fp_text reference V4 (at -0.1778 -0.16002 90) (layer F.SilkS) hide
(effects (font (size 1.016 1.016) (thickness 0.254)))
)
(fp_text value "" (at 0 2.794 90) (layer F.SilkS) hide
(effects (font (size 1.016 1.016) (thickness 0.254)))
)
(fp_circle (center 0.00254 0.00254) (end 1.53924 0.81026) (layer F.SilkS) (width 0.381))
(pad 1 thru_hole circle (at 0 0 90) (size 2.54 2.54) (drill 2.54)
(layers *.Cu *.Mask F.SilkS)
)
)
(module 1pin locked (layer F.Cu) (tedit 56965854) (tstamp 4F092933)
(at 180.74132 138.3919 90)
(descr "module 1 pin (ou trou mecanique de percage)")
(tags DEV)
(path 1pin)
(fp_text reference V5 (at -0.1016 -0.21082 90) (layer F.SilkS) hide
(effects (font (size 1.016 1.016) (thickness 0.254)))
)
(fp_text value "" (at 0 2.794 90) (layer F.SilkS) hide
(effects (font (size 1.016 1.016) (thickness 0.254)))
)
(fp_circle (center 0.00254 0.00254) (end 1.39192 1.04648) (layer F.SilkS) (width 0.381))
(pad 1 thru_hole circle (at 0 0 90) (size 2.54 2.54) (drill 2.54)
(layers *.Cu *.Mask F.SilkS)
)
)
(module 1pin (layer F.Cu) (tedit 56C0CA9B) (tstamp 56C0CA22)
(at 146.558 148.082)
(descr "module 1 pin (ou trou mecanique de percage)")
(tags DEV)
(path 1pin)
(fp_text reference 1PIN (at 0 -0.762) (layer F.SilkS) hide
(effects (font (size 1.016 1.016) (thickness 0.254)))
)
(fp_text value P*** (at 0 0.762) (layer F.SilkS) hide
(effects (font (size 1.016 1.016) (thickness 0.254)))
)
(fp_circle (center 0 0) (end 0 -2.286) (layer F.SilkS) (width 0.381))
(pad 1 thru_hole circle (at 0 0) (size 4.064 4.064) (drill 3.048)
(layers *.Cu *.Mask F.SilkS)
)
)
(module 1pin (layer F.Cu) (tedit 56C0CA91) (tstamp 56C0CA56)
(at 176.53 148.082)
(descr "module 1 pin (ou trou mecanique de percage)")
(tags DEV)
(path 1pin)
(fp_text reference 1PIN (at 0 -0.762) (layer F.SilkS) hide
(effects (font (size 1.016 1.016) (thickness 0.254)))
)
(fp_text value P*** (at 0 0.762) (layer F.SilkS) hide
(effects (font (size 1.016 1.016) (thickness 0.254)))
)
(fp_circle (center 0 0) (end 0 -2.286) (layer F.SilkS) (width 0.381))
(pad 1 thru_hole circle (at 0 0) (size 4.064 4.064) (drill 3.048)
(layers *.Cu *.Mask F.SilkS)
)
)
(module 1pin (layer F.Cu) (tedit 56C0CA84) (tstamp 56C0CA62)
(at 176.53 171.196)
(descr "module 1 pin (ou trou mecanique de percage)")
(tags DEV)
(path 1pin)
(fp_text reference 1PIN (at 0 -0.762) (layer F.SilkS) hide
(effects (font (size 1.016 1.016) (thickness 0.254)))
)
(fp_text value P*** (at 0 1.016) (layer F.SilkS) hide
(effects (font (size 1.016 1.016) (thickness 0.254)))
)
(fp_circle (center 0 0) (end 0 -2.286) (layer F.SilkS) (width 0.381))
(pad 1 thru_hole circle (at 0 0) (size 4.064 4.064) (drill 3.048)
(layers *.Cu *.Mask F.SilkS)
)
)
(module 1pin (layer F.Cu) (tedit 56C0CA79) (tstamp 56C0CA6D)
(at 146.558 171.196)
(descr "module 1 pin (ou trou mecanique de percage)")
(tags DEV)
(path 1pin)
(fp_text reference 1PIN (at 0 -0.508) (layer F.SilkS) hide
(effects (font (size 1.016 1.016) (thickness 0.254)))
)
(fp_text value P*** (at 0 0.762) (layer F.SilkS) hide
(effects (font (size 1.016 1.016) (thickness 0.254)))
)
(fp_circle (center 0 0) (end 0 -2.286) (layer F.SilkS) (width 0.381))
(pad 1 thru_hole circle (at 0 0) (size 4.064 4.064) (drill 3.048)
(layers *.Cu *.Mask F.SilkS)
)
)
(module 1pin (layer F.Cu) (tedit 56C0CBB9) (tstamp 56C0CB7A)
(at 136.3345 133.0325 180)
(descr "module 1 pin (ou trou mecanique de percage)")
(tags DEV)
(path 1pin)
(fp_text reference 1PIN (at 0 -0.762 180) (layer F.SilkS) hide
(effects (font (size 1.016 1.016) (thickness 0.254)))
)
(fp_text value P*** (at 0 1.016 180) (layer F.SilkS) hide
(effects (font (size 1.016 1.016) (thickness 0.254)))
)
(fp_circle (center 0 0) (end 0 -2.286) (layer F.SilkS) (width 0.381))
(pad 1 thru_hole circle (at 0 0 180) (size 4.064 4.064) (drill 3.048)
(layers *.Cu *.Mask F.SilkS)
)
)
(module 1pin (layer F.Cu) (tedit 56C0CBCE) (tstamp 56C0CB85)
(at 136.3345 111.9505 180)
(descr "module 1 pin (ou trou mecanique de percage)")
(tags DEV)
(path 1pin)
(fp_text reference 1PIN (at 0 -0.762 180) (layer F.SilkS) hide
(effects (font (size 1.016 1.016) (thickness 0.254)))
)
(fp_text value P*** (at 0 0.762 180) (layer F.SilkS) hide
(effects (font (size 1.016 1.016) (thickness 0.254)))
)
(fp_circle (center 0 0) (end 0 -2.286) (layer F.SilkS) (width 0.381))
(pad 1 thru_hole circle (at 0 0 180) (size 4.064 4.064) (drill 3.048)
(layers *.Cu *.Mask F.SilkS)
)
)
(module 1pin (layer F.Cu) (tedit 56C0CBC7) (tstamp 56C0CB90)
(at 186.8805 111.9505 180)
(descr "module 1 pin (ou trou mecanique de percage)")
(tags DEV)
(path 1pin)
(fp_text reference 1PIN (at 0 -0.762 180) (layer F.SilkS) hide
(effects (font (size 1.016 1.016) (thickness 0.254)))
)
(fp_text value P*** (at 0 1.016 180) (layer F.SilkS) hide
(effects (font (size 1.016 1.016) (thickness 0.254)))
)
(fp_circle (center 0 0) (end 0 -2.286) (layer F.SilkS) (width 0.381))
(pad 1 thru_hole circle (at 0 0 180) (size 4.064 4.064) (drill 3.048)
(layers *.Cu *.Mask F.SilkS)
)
)
(module 1pin (layer F.Cu) (tedit 56C0CBC0) (tstamp 56C0CB9B)
(at 186.8805 133.0325 180)
(descr "module 1 pin (ou trou mecanique de percage)")
(tags DEV)
(path 1pin)
(fp_text reference 1PIN (at 0 -0.762 180) (layer F.SilkS) hide
(effects (font (size 1.016 1.016) (thickness 0.254)))
)
(fp_text value P*** (at 0 0.762 180) (layer F.SilkS) hide
(effects (font (size 1.016 1.016) (thickness 0.254)))
)
(fp_circle (center 0 0) (end 0 -2.286) (layer F.SilkS) (width 0.381))
(pad 1 thru_hole circle (at 0 0 180) (size 4.064 4.064) (drill 3.048)
(layers *.Cu *.Mask F.SilkS)
)
)
(module SW_PUSH_SMALL (layer F.Cu) (tedit 56DED31F) (tstamp 56D0EBBD)
(at 144.78 130.81 90)
(path /56718743)
(fp_text reference SW2 (at 0 -0.127 180) (layer F.SilkS)
(effects (font (size 1.016 1.016) (thickness 0.2032)))
)
(fp_text value "SW Mini 180o" (at 0 1.016 90) (layer F.SilkS) hide
(effects (font (size 1.016 1.016) (thickness 0.2032)))
)
(fp_circle (center 0 0) (end 0 -2.54) (layer F.SilkS) (width 0.127))
(fp_line (start -3.81 -3.81) (end 3.81 -3.81) (layer F.SilkS) (width 0.127))
(fp_line (start 3.81 -3.81) (end 3.81 3.81) (layer F.SilkS) (width 0.127))
(fp_line (start 3.81 3.81) (end -3.81 3.81) (layer F.SilkS) (width 0.127))
(fp_line (start -3.81 -3.81) (end -3.81 3.81) (layer F.SilkS) (width 0.127))
(pad 1 thru_hole circle (at 3.81 -2.54 90) (size 1.397 1.397) (drill 0.9906)
(layers *.Cu *.Mask F.SilkS)
(net 27 /~RST)
)
(pad 2 thru_hole circle (at 3.81 2.54 90) (size 1.397 1.397) (drill 0.9906)
(layers *.Cu *.Mask F.SilkS)
(net 28 GND)
)
(pad 1 thru_hole circle (at -3.81 -2.54 90) (size 1.397 1.397) (drill 0.9906)
(layers *.Cu *.Mask F.SilkS)
(net 27 /~RST)
)
(pad 2 thru_hole circle (at -3.81 2.54 90) (size 1.397 1.397) (drill 0.9906)
(layers *.Cu *.Mask F.SilkS)
(net 28 GND)
)
(model D:/!Works_MC/!Works/KiCad_Projetos/3D/switch/pcb_push.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 90))
)
)
(module SW_PUSH_SMALL (layer F.Cu) (tedit 56DED318) (tstamp 56D0EBCA)
(at 124.46 170.18 90)
(path /5672D677)
(fp_text reference SW1 (at 0 -0.127 180) (layer F.SilkS)
(effects (font (size 1.016 1.016) (thickness 0.2032)))
)
(fp_text value "SW Mini 180o" (at 0 1.016 90) (layer F.SilkS) hide
(effects (font (size 1.016 1.016) (thickness 0.2032)))
)
(fp_circle (center 0 0) (end 0 -2.54) (layer F.SilkS) (width 0.127))
(fp_line (start -3.81 -3.81) (end 3.81 -3.81) (layer F.SilkS) (width 0.127))
(fp_line (start 3.81 -3.81) (end 3.81 3.81) (layer F.SilkS) (width 0.127))
(fp_line (start 3.81 3.81) (end -3.81 3.81) (layer F.SilkS) (width 0.127))
(fp_line (start -3.81 -3.81) (end -3.81 3.81) (layer F.SilkS) (width 0.127))
(pad 1 thru_hole circle (at 3.81 -2.54 90) (size 1.397 1.397) (drill 0.9906)
(layers *.Cu *.Mask F.SilkS)
(net 29 N-0000012)
)
(pad 2 thru_hole circle (at 3.81 2.54 90) (size 1.397 1.397) (drill 0.9906)
(layers *.Cu *.Mask F.SilkS)
(net 21 /PD2)
)
(pad 1 thru_hole circle (at -3.81 -2.54 90) (size 1.397 1.397) (drill 0.9906)
(layers *.Cu *.Mask F.SilkS)
(net 29 N-0000012)
)
(pad 2 thru_hole circle (at -3.81 2.54 90) (size 1.397 1.397) (drill 0.9906)
(layers *.Cu *.Mask F.SilkS)
(net 21 /PD2)
)
(model D:/!Works_MC/!Works/KiCad_Projetos/3D/switch/pcb_push.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 90))
)
)
(module SOT223 (layer B.Cu) (tedit 56DC80B6) (tstamp 56D0EBDA)
(at 176.53 162.56 270)
(descr "module CMS SOT223 4 pins")
(tags "CMS SOT")
(path /567187DE)
(attr smd)
(fp_text reference CI1 (at 2.032 -0.127 360) (layer B.SilkS)
(effects (font (size 1.016 1.016) (thickness 0.2032)) (justify mirror))
)
(fp_text value "NCP1117 3V3 NU" (at 0 -0.762 270) (layer B.SilkS)
(effects (font (size 1.016 1.016) (thickness 0.2032)) (justify mirror))
)
(fp_line (start -3.556 -1.524) (end -3.556 -4.572) (layer B.SilkS) (width 0.2032))
(fp_line (start -3.556 -4.572) (end 3.556 -4.572) (layer B.SilkS) (width 0.2032))
(fp_line (start 3.556 -4.572) (end 3.556 -1.524) (layer B.SilkS) (width 0.2032))
(fp_line (start -3.556 1.524) (end -3.556 2.286) (layer B.SilkS) (width 0.2032))
(fp_line (start -3.556 2.286) (end -2.032 4.572) (layer B.SilkS) (width 0.2032))
(fp_line (start -2.032 4.572) (end 2.032 4.572) (layer B.SilkS) (width 0.2032))
(fp_line (start 2.032 4.572) (end 3.556 2.286) (layer B.SilkS) (width 0.2032))
(fp_line (start 3.556 2.286) (end 3.556 1.524) (layer B.SilkS) (width 0.2032))
(pad 2 smd rect (at 0 3.302 270) (size 3.6576 2.032)
(layers B.Cu B.Paste B.Mask)
(net 1 +3.3V)
)
(pad 2 smd rect (at 0 -3.302 270) (size 1.016 2.032)
(layers B.Cu B.Paste B.Mask)
(net 1 +3.3V)
)
(pad 3 smd rect (at 2.286 -3.302 270) (size 1.016 2.032)
(layers B.Cu B.Paste B.Mask)
(net 2 +5V)
)
(pad 1 smd rect (at -2.286 -3.302 270) (size 1.016 2.032)
(layers B.Cu B.Paste B.Mask)
(net 28 GND)
)
(model smd/SOT223.wrl
(at (xyz 0 0 0))
(scale (xyz 0.4 0.4 0.4))
(rotate (xyz 0 0 0))
)
)
(module RESCR12 (layer F.Cu) (tedit 5633ADE9) (tstamp 56D0EBE8)
(at 167.005 97.155 90)
(descr CR12)
(tags "CR12 RESCR12")
(path /5672C099)
(autoplace_cost180 10)
(fp_text reference R10 (at -1.27 0 90) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.14986)))
)
(fp_text value 4K7 (at -0.762 0.127 90) (layer F.SilkS) hide
(effects (font (size 1.397 1.27) (thickness 0.2032)))
)
(fp_line (start 0.762 1.016) (end -3.302 1.016) (layer F.SilkS) (width 0.3048))
(fp_line (start -3.302 -1.016) (end 0.762 -1.016) (layer F.SilkS) (width 0.3048))
(fp_line (start -3.81 0) (end -3.302 0) (layer F.SilkS) (width 0.3048))
(fp_line (start 1.27 0) (end 0.762 0) (layer F.SilkS) (width 0.3048))
(fp_line (start 0.762 0) (end 0.762 -1.016) (layer F.SilkS) (width 0.3048))
(fp_line (start -3.302 -1.016) (end -3.302 1.016) (layer F.SilkS) (width 0.3048))
(fp_line (start 0.762 1.016) (end 0.762 0) (layer F.SilkS) (width 0.3048))
(fp_line (start -3.302 -0.508) (end -2.794 -1.016) (layer F.SilkS) (width 0.3048))
(pad 1 thru_hole circle (at -3.81 0 90) (size 1.651 1.651) (drill 0.8128)
(layers *.Cu *.Mask F.SilkS)
(net 42 N-0000027)
)
(pad 2 thru_hole circle (at 1.27 0 90) (size 1.651 1.651) (drill 0.8128)
(layers *.Cu *.Mask F.SilkS)
(net 37 N-0000021)
)
(model discret/resistor.wrl
(at (xyz -0.05 0 0))
(scale (xyz 0.2 0.3 0.3))
(rotate (xyz 0 0 0))
)
)
(module RESCR12 (layer F.Cu) (tedit 5633ADE9) (tstamp 56D0EBF6)
(at 176.53 97.155 90)
(descr CR12)
(tags "CR12 RESCR12")
(path /5672C0C3)
(autoplace_cost180 10)
(fp_text reference R15 (at -1.27 0 90) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.14986)))
)
(fp_text value 47 (at -0.762 0.127 90) (layer F.SilkS) hide
(effects (font (size 1.397 1.27) (thickness 0.2032)))
)
(fp_line (start 0.762 1.016) (end -3.302 1.016) (layer F.SilkS) (width 0.3048))
(fp_line (start -3.302 -1.016) (end 0.762 -1.016) (layer F.SilkS) (width 0.3048))
(fp_line (start -3.81 0) (end -3.302 0) (layer F.SilkS) (width 0.3048))
(fp_line (start 1.27 0) (end 0.762 0) (layer F.SilkS) (width 0.3048))
(fp_line (start 0.762 0) (end 0.762 -1.016) (layer F.SilkS) (width 0.3048))
(fp_line (start -3.302 -1.016) (end -3.302 1.016) (layer F.SilkS) (width 0.3048))
(fp_line (start 0.762 1.016) (end 0.762 0) (layer F.SilkS) (width 0.3048))
(fp_line (start -3.302 -0.508) (end -2.794 -1.016) (layer F.SilkS) (width 0.3048))
(pad 1 thru_hole circle (at -3.81 0 90) (size 1.651 1.651) (drill 0.8128)
(layers *.Cu *.Mask F.SilkS)
(net 42 N-0000027)
)
(pad 2 thru_hole circle (at 1.27 0 90) (size 1.651 1.651) (drill 0.8128)
(layers *.Cu *.Mask F.SilkS)
(net 38 N-0000022)
)
(model discret/resistor.wrl
(at (xyz -0.05 0 0))
(scale (xyz 0.2 0.3 0.3))
(rotate (xyz 0 0 0))
)
)
(module RESCR12 (layer F.Cu) (tedit 5633ADE9) (tstamp 56D0EC04)
(at 126.365 182.88 270)
(descr CR12)
(tags "CR12 RESCR12")
(path /5671A496)
(autoplace_cost180 10)
(fp_text reference R4 (at -1.27 0 270) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.14986)))
)
(fp_text value 1K5 (at -0.762 0.127 270) (layer F.SilkS) hide
(effects (font (size 1.397 1.27) (thickness 0.2032)))
)
(fp_line (start 0.762 1.016) (end -3.302 1.016) (layer F.SilkS) (width 0.3048))
(fp_line (start -3.302 -1.016) (end 0.762 -1.016) (layer F.SilkS) (width 0.3048))
(fp_line (start -3.81 0) (end -3.302 0) (layer F.SilkS) (width 0.3048))
(fp_line (start 1.27 0) (end 0.762 0) (layer F.SilkS) (width 0.3048))
(fp_line (start 0.762 0) (end 0.762 -1.016) (layer F.SilkS) (width 0.3048))
(fp_line (start -3.302 -1.016) (end -3.302 1.016) (layer F.SilkS) (width 0.3048))
(fp_line (start 0.762 1.016) (end 0.762 0) (layer F.SilkS) (width 0.3048))
(fp_line (start -3.302 -0.508) (end -2.794 -1.016) (layer F.SilkS) (width 0.3048))
(pad 1 thru_hole circle (at -3.81 0 270) (size 1.651 1.651) (drill 0.8128)
(layers *.Cu *.Mask F.SilkS)
(net 44 N-0000030)
)
(pad 2 thru_hole circle (at 1.27 0 270) (size 1.651 1.651) (drill 0.8128)
(layers *.Cu *.Mask F.SilkS)
(net 12 /PB5)
)
(model discret/resistor.wrl
(at (xyz -0.05 0 0))
(scale (xyz 0.2 0.3 0.3))
(rotate (xyz 0 0 0))
)
)
(module RESCR12 (layer F.Cu) (tedit 5633ADE9) (tstamp 56D0EC12)
(at 179.705 97.155 90)
(descr CR12)
(tags "CR12 RESCR12")
(path /5672C0C9)
(autoplace_cost180 10)
(fp_text reference R16 (at -1.27 0 90) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.14986)))
)
(fp_text value 4K7 (at -0.762 0.127 90) (layer F.SilkS) hide
(effects (font (size 1.397 1.27) (thickness 0.2032)))
)
(fp_line (start 0.762 1.016) (end -3.302 1.016) (layer F.SilkS) (width 0.3048))
(fp_line (start -3.302 -1.016) (end 0.762 -1.016) (layer F.SilkS) (width 0.3048))
(fp_line (start -3.81 0) (end -3.302 0) (layer F.SilkS) (width 0.3048))
(fp_line (start 1.27 0) (end 0.762 0) (layer F.SilkS) (width 0.3048))
(fp_line (start 0.762 0) (end 0.762 -1.016) (layer F.SilkS) (width 0.3048))
(fp_line (start -3.302 -1.016) (end -3.302 1.016) (layer F.SilkS) (width 0.3048))
(fp_line (start 0.762 1.016) (end 0.762 0) (layer F.SilkS) (width 0.3048))
(fp_line (start -3.302 -0.508) (end -2.794 -1.016) (layer F.SilkS) (width 0.3048))
(pad 1 thru_hole circle (at -3.81 0 90) (size 1.651 1.651) (drill 0.8128)
(layers *.Cu *.Mask F.SilkS)
(net 42 N-0000027)
)
(pad 2 thru_hole circle (at 1.27 0 90) (size 1.651 1.651) (drill 0.8128)
(layers *.Cu *.Mask F.SilkS)
(net 32 N-0000015)
)
(model discret/resistor.wrl
(at (xyz -0.05 0 0))
(scale (xyz 0.2 0.3 0.3))
(rotate (xyz 0 0 0))
)
)
(module RESCR12 (layer F.Cu) (tedit 5633ADE9) (tstamp 56D0EC20)
(at 144.78 97.155 90)
(descr CR12)
(tags "CR12 RESCR12")
(path /5672C0F3)
(autoplace_cost180 10)
(fp_text reference R17 (at -1.27 0 90) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.14986)))
)
(fp_text value 47 (at -0.762 0.127 90) (layer F.SilkS) hide
(effects (font (size 1.397 1.27) (thickness 0.2032)))
)
(fp_line (start 0.762 1.016) (end -3.302 1.016) (layer F.SilkS) (width 0.3048))
(fp_line (start -3.302 -1.016) (end 0.762 -1.016) (layer F.SilkS) (width 0.3048))
(fp_line (start -3.81 0) (end -3.302 0) (layer F.SilkS) (width 0.3048))
(fp_line (start 1.27 0) (end 0.762 0) (layer F.SilkS) (width 0.3048))
(fp_line (start 0.762 0) (end 0.762 -1.016) (layer F.SilkS) (width 0.3048))
(fp_line (start -3.302 -1.016) (end -3.302 1.016) (layer F.SilkS) (width 0.3048))
(fp_line (start 0.762 1.016) (end 0.762 0) (layer F.SilkS) (width 0.3048))
(fp_line (start -3.302 -0.508) (end -2.794 -1.016) (layer F.SilkS) (width 0.3048))
(pad 1 thru_hole circle (at -3.81 0 90) (size 1.651 1.651) (drill 0.8128)
(layers *.Cu *.Mask F.SilkS)
(net 42 N-0000027)
)
(pad 2 thru_hole circle (at 1.27 0 90) (size 1.651 1.651) (drill 0.8128)
(layers *.Cu *.Mask F.SilkS)
(net 33 N-0000016)
)
(model discret/resistor.wrl
(at (xyz -0.05 0 0))
(scale (xyz 0.2 0.3 0.3))
(rotate (xyz 0 0 0))
)
)
(module RESCR12 (layer F.Cu) (tedit 5633ADE9) (tstamp 56D0EC2E)
(at 153.67 156.21)
(descr CR12)
(tags "CR12 RESCR12")
(path /567193A3)
(autoplace_cost180 10)
(fp_text reference R8 (at -1.27 0) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.14986)))
)
(fp_text value "10 K" (at -0.762 0.127) (layer F.SilkS) hide
(effects (font (size 1.397 1.27) (thickness 0.2032)))
)
(fp_line (start 0.762 1.016) (end -3.302 1.016) (layer F.SilkS) (width 0.3048))
(fp_line (start -3.302 -1.016) (end 0.762 -1.016) (layer F.SilkS) (width 0.3048))
(fp_line (start -3.81 0) (end -3.302 0) (layer F.SilkS) (width 0.3048))
(fp_line (start 1.27 0) (end 0.762 0) (layer F.SilkS) (width 0.3048))
(fp_line (start 0.762 0) (end 0.762 -1.016) (layer F.SilkS) (width 0.3048))
(fp_line (start -3.302 -1.016) (end -3.302 1.016) (layer F.SilkS) (width 0.3048))
(fp_line (start 0.762 1.016) (end 0.762 0) (layer F.SilkS) (width 0.3048))
(fp_line (start -3.302 -0.508) (end -2.794 -1.016) (layer F.SilkS) (width 0.3048))
(pad 1 thru_hole circle (at -3.81 0) (size 1.651 1.651) (drill 0.8128)
(layers *.Cu *.Mask F.SilkS)
(net 28 GND)
)
(pad 2 thru_hole circle (at 1.27 0) (size 1.651 1.651) (drill 0.8128)
(layers *.Cu *.Mask F.SilkS)
(net 26 /PD7)
)
(model discret/resistor.wrl
(at (xyz -0.05 0 0))
(scale (xyz 0.2 0.3 0.3))
(rotate (xyz 0 0 0))
)
)
(module RESCR12 (layer F.Cu) (tedit 5633ADE9) (tstamp 56D0EC3C)
(at 154.305 97.155 90)
(descr CR12)
(tags "CR12 RESCR12")
(path /5672BA69)
(autoplace_cost180 10)
(fp_text reference R7 (at -1.27 0 90) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.14986)))
)
(fp_text value 4K7 (at -0.762 0.127 90) (layer F.SilkS) hide
(effects (font (size 1.397 1.27) (thickness 0.2032)))
)
(fp_line (start 0.762 1.016) (end -3.302 1.016) (layer F.SilkS) (width 0.3048))
(fp_line (start -3.302 -1.016) (end 0.762 -1.016) (layer F.SilkS) (width 0.3048))
(fp_line (start -3.81 0) (end -3.302 0) (layer F.SilkS) (width 0.3048))
(fp_line (start 1.27 0) (end 0.762 0) (layer F.SilkS) (width 0.3048))
(fp_line (start 0.762 0) (end 0.762 -1.016) (layer F.SilkS) (width 0.3048))
(fp_line (start -3.302 -1.016) (end -3.302 1.016) (layer F.SilkS) (width 0.3048))
(fp_line (start 0.762 1.016) (end 0.762 0) (layer F.SilkS) (width 0.3048))
(fp_line (start -3.302 -0.508) (end -2.794 -1.016) (layer F.SilkS) (width 0.3048))
(pad 1 thru_hole circle (at -3.81 0 90) (size 1.651 1.651) (drill 0.8128)
(layers *.Cu *.Mask F.SilkS)
(net 42 N-0000027)
)
(pad 2 thru_hole circle (at 1.27 0 90) (size 1.651 1.651) (drill 0.8128)
(layers *.Cu *.Mask F.SilkS)
(net 35 N-0000019)
)
(model discret/resistor.wrl
(at (xyz -0.05 0 0))
(scale (xyz 0.2 0.3 0.3))
(rotate (xyz 0 0 0))
)
)
(module RESCR12 (layer F.Cu) (tedit 5633ADE9) (tstamp 56D0EC4A)
(at 156.845 182.88 270)
(descr CR12)
(tags "CR12 RESCR12")
(path /56718E89)
(autoplace_cost180 10)
(fp_text reference R14 (at -1.27 0 270) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.14986)))
)
(fp_text value 1K5 (at -0.762 0.127 270) (layer F.SilkS) hide
(effects (font (size 1.397 1.27) (thickness 0.2032)))
)
(fp_line (start 0.762 1.016) (end -3.302 1.016) (layer F.SilkS) (width 0.3048))
(fp_line (start -3.302 -1.016) (end 0.762 -1.016) (layer F.SilkS) (width 0.3048))
(fp_line (start -3.81 0) (end -3.302 0) (layer F.SilkS) (width 0.3048))
(fp_line (start 1.27 0) (end 0.762 0) (layer F.SilkS) (width 0.3048))
(fp_line (start 0.762 0) (end 0.762 -1.016) (layer F.SilkS) (width 0.3048))
(fp_line (start -3.302 -1.016) (end -3.302 1.016) (layer F.SilkS) (width 0.3048))
(fp_line (start 0.762 1.016) (end 0.762 0) (layer F.SilkS) (width 0.3048))
(fp_line (start -3.302 -0.508) (end -2.794 -1.016) (layer F.SilkS) (width 0.3048))
(pad 1 thru_hole circle (at -3.81 0 270) (size 1.651 1.651) (drill 0.8128)
(layers *.Cu *.Mask F.SilkS)
(net 41 N-0000026)
)
(pad 2 thru_hole circle (at 1.27 0 270) (size 1.651 1.651) (drill 0.8128)
(layers *.Cu *.Mask F.SilkS)
(net 40 N-0000025)
)
(model discret/resistor.wrl
(at (xyz -0.05 0 0))
(scale (xyz 0.2 0.3 0.3))
(rotate (xyz 0 0 0))
)
)
(module RESCR12 (layer F.Cu) (tedit 5633ADE9) (tstamp 56D0EC58)
(at 153.67 151.13)
(descr CR12)
(tags "CR12 RESCR12")
(path /567189FC)
(autoplace_cost180 10)
(fp_text reference R13 (at -1.27 0) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.14986)))
)
(fp_text value "1 M" (at -0.762 0.127) (layer F.SilkS) hide
(effects (font (size 1.397 1.27) (thickness 0.2032)))
)
(fp_line (start 0.762 1.016) (end -3.302 1.016) (layer F.SilkS) (width 0.3048))
(fp_line (start -3.302 -1.016) (end 0.762 -1.016) (layer F.SilkS) (width 0.3048))
(fp_line (start -3.81 0) (end -3.302 0) (layer F.SilkS) (width 0.3048))
(fp_line (start 1.27 0) (end 0.762 0) (layer F.SilkS) (width 0.3048))
(fp_line (start 0.762 0) (end 0.762 -1.016) (layer F.SilkS) (width 0.3048))
(fp_line (start -3.302 -1.016) (end -3.302 1.016) (layer F.SilkS) (width 0.3048))
(fp_line (start 0.762 1.016) (end 0.762 0) (layer F.SilkS) (width 0.3048))
(fp_line (start -3.302 -0.508) (end -2.794 -1.016) (layer F.SilkS) (width 0.3048))
(pad 1 thru_hole circle (at -3.81 0) (size 1.651 1.651) (drill 0.8128)
(layers *.Cu *.Mask F.SilkS)
(net 28 GND)
)
(pad 2 thru_hole circle (at 1.27 0) (size 1.651 1.651) (drill 0.8128)
(layers *.Cu *.Mask F.SilkS)
(net 39 N-0000024)
)
(model discret/resistor.wrl
(at (xyz -0.05 0 0))
(scale (xyz 0.2 0.3 0.3))
(rotate (xyz 0 0 0))
)
)
(module RESCR12 (layer F.Cu) (tedit 5633ADE9) (tstamp 56D0EC66)
(at 142.875 180.34 90)
(descr CR12)
(tags "CR12 RESCR12")
(path /5671899F)
(autoplace_cost180 10)
(fp_text reference D2 (at -1.27 0 90) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.14986)))
)
(fp_text value 3V6 (at -0.762 0.127 90) (layer F.SilkS) hide
(effects (font (size 1.397 1.27) (thickness 0.2032)))
)
(fp_line (start 0.762 1.016) (end -3.302 1.016) (layer F.SilkS) (width 0.3048))
(fp_line (start -3.302 -1.016) (end 0.762 -1.016) (layer F.SilkS) (width 0.3048))
(fp_line (start -3.81 0) (end -3.302 0) (layer F.SilkS) (width 0.3048))
(fp_line (start 1.27 0) (end 0.762 0) (layer F.SilkS) (width 0.3048))
(fp_line (start 0.762 0) (end 0.762 -1.016) (layer F.SilkS) (width 0.3048))
(fp_line (start -3.302 -1.016) (end -3.302 1.016) (layer F.SilkS) (width 0.3048))
(fp_line (start 0.762 1.016) (end 0.762 0) (layer F.SilkS) (width 0.3048))
(fp_line (start -3.302 -0.508) (end -2.794 -1.016) (layer F.SilkS) (width 0.3048))
(pad 1 thru_hole circle (at -3.81 0 90) (size 1.651 1.651) (drill 0.8128)
(layers *.Cu *.Mask F.SilkS)
(net 28 GND)
)
(pad 2 thru_hole circle (at 1.27 0 90) (size 1.651 1.651) (drill 0.8128)
(layers *.Cu *.Mask F.SilkS)
(net 40 N-0000025)
)
(model discret/resistor.wrl
(at (xyz -0.05 0 0))
(scale (xyz 0.2 0.3 0.3))
(rotate (xyz 0 0 0))
)
)
(module RESCR12 (layer F.Cu) (tedit 56D0ED5E) (tstamp 56D0EC74)
(at 170.18 97.155 90)
(descr CR12)
(tags "CR12 RESCR12")
(path /5672C093)
(autoplace_cost180 10)
(fp_text reference R9 (at -1.828001 -0.106601 90) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.14986)))
)
(fp_text value 47 (at -0.762 0.127 90) (layer F.SilkS) hide
(effects (font (size 1.397 1.27) (thickness 0.2032)))
)
(fp_line (start 0.762 1.016) (end -3.302 1.016) (layer F.SilkS) (width 0.3048))
(fp_line (start -3.302 -1.016) (end 0.762 -1.016) (layer F.SilkS) (width 0.3048))
(fp_line (start -3.81 0) (end -3.302 0) (layer F.SilkS) (width 0.3048))
(fp_line (start 1.27 0) (end 0.762 0) (layer F.SilkS) (width 0.3048))
(fp_line (start 0.762 0) (end 0.762 -1.016) (layer F.SilkS) (width 0.3048))
(fp_line (start -3.302 -1.016) (end -3.302 1.016) (layer F.SilkS) (width 0.3048))
(fp_line (start 0.762 1.016) (end 0.762 0) (layer F.SilkS) (width 0.3048))
(fp_line (start -3.302 -0.508) (end -2.794 -1.016) (layer F.SilkS) (width 0.3048))
(pad 1 thru_hole circle (at -3.81 0 90) (size 1.651 1.651) (drill 0.8128)
(layers *.Cu *.Mask F.SilkS)
(net 42 N-0000027)
)
(pad 2 thru_hole circle (at 1.27 0 90) (size 1.651 1.651) (drill 0.8128)
(layers *.Cu *.Mask F.SilkS)
(net 36 N-0000020)
)
(model discret/resistor.wrl
(at (xyz -0.05 0 0))
(scale (xyz 0.2 0.3 0.3))
(rotate (xyz 0 0 0))
)
)
(module RESCR12 (layer F.Cu) (tedit 5633ADE9) (tstamp 56D0EC82)
(at 140.335 180.34 90)
(descr CR12)
(tags "CR12 RESCR12")
(path /56718992)
(autoplace_cost180 10)
(fp_text reference D1 (at -1.27 0 90) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.14986)))
)
(fp_text value 3V6 (at -0.762 0.127 90) (layer F.SilkS) hide
(effects (font (size 1.397 1.27) (thickness 0.2032)))
)
(fp_line (start 0.762 1.016) (end -3.302 1.016) (layer F.SilkS) (width 0.3048))
(fp_line (start -3.302 -1.016) (end 0.762 -1.016) (layer F.SilkS) (width 0.3048))
(fp_line (start -3.81 0) (end -3.302 0) (layer F.SilkS) (width 0.3048))
(fp_line (start 1.27 0) (end 0.762 0) (layer F.SilkS) (width 0.3048))
(fp_line (start 0.762 0) (end 0.762 -1.016) (layer F.SilkS) (width 0.3048))
(fp_line (start -3.302 -1.016) (end -3.302 1.016) (layer F.SilkS) (width 0.3048))
(fp_line (start 0.762 1.016) (end 0.762 0) (layer F.SilkS) (width 0.3048))
(fp_line (start -3.302 -0.508) (end -2.794 -1.016) (layer F.SilkS) (width 0.3048))
(pad 1 thru_hole circle (at -3.81 0 90) (size 1.651 1.651) (drill 0.8128)
(layers *.Cu *.Mask F.SilkS)
(net 28 GND)
)
(pad 2 thru_hole circle (at 1.27 0 90) (size 1.651 1.651) (drill 0.8128)
(layers *.Cu *.Mask F.SilkS)
(net 39 N-0000024)
)
(model discret/resistor.wrl
(at (xyz -0.05 0 0))
(scale (xyz 0.2 0.3 0.3))
(rotate (xyz 0 0 0))
)
)
(module RESCR12 (layer F.Cu) (tedit 5633ADE9) (tstamp 56D0EC90)
(at 153.67 158.75)
(descr CR12)
(tags "CR12 RESCR12")
(path /56718976)
(autoplace_cost180 10)
(fp_text reference R12 (at -1.27 0) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.14986)))
)
(fp_text value 68 (at -0.762 0.127) (layer F.SilkS) hide
(effects (font (size 1.397 1.27) (thickness 0.2032)))
)
(fp_line (start 0.762 1.016) (end -3.302 1.016) (layer F.SilkS) (width 0.3048))
(fp_line (start -3.302 -1.016) (end 0.762 -1.016) (layer F.SilkS) (width 0.3048))
(fp_line (start -3.81 0) (end -3.302 0) (layer F.SilkS) (width 0.3048))
(fp_line (start 1.27 0) (end 0.762 0) (layer F.SilkS) (width 0.3048))
(fp_line (start 0.762 0) (end 0.762 -1.016) (layer F.SilkS) (width 0.3048))
(fp_line (start -3.302 -1.016) (end -3.302 1.016) (layer F.SilkS) (width 0.3048))
(fp_line (start 0.762 1.016) (end 0.762 0) (layer F.SilkS) (width 0.3048))
(fp_line (start -3.302 -0.508) (end -2.794 -1.016) (layer F.SilkS) (width 0.3048))
(pad 1 thru_hole circle (at -3.81 0) (size 1.651 1.651) (drill 0.8128)
(layers *.Cu *.Mask F.SilkS)
(net 40 N-0000025)
)
(pad 2 thru_hole circle (at 1.27 0) (size 1.651 1.651) (drill 0.8128)
(layers *.Cu *.Mask F.SilkS)
(net 23 /PD4)
)
(model discret/resistor.wrl
(at (xyz -0.05 0 0))
(scale (xyz 0.2 0.3 0.3))
(rotate (xyz 0 0 0))
)
)
(module RESCR12 (layer F.Cu) (tedit 5633ADE9) (tstamp 56D0EC9E)
(at 153.67 153.67)
(descr CR12)
(tags "CR12 RESCR12")
(path /5671895A)
(autoplace_cost180 10)
(fp_text reference R11 (at -1.27 0) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.14986)))
)
(fp_text value 68 (at -0.762 0.127) (layer F.SilkS) hide
(effects (font (size 1.397 1.27) (thickness 0.2032)))
)
(fp_line (start 0.762 1.016) (end -3.302 1.016) (layer F.SilkS) (width 0.3048))
(fp_line (start -3.302 -1.016) (end 0.762 -1.016) (layer F.SilkS) (width 0.3048))
(fp_line (start -3.81 0) (end -3.302 0) (layer F.SilkS) (width 0.3048))
(fp_line (start 1.27 0) (end 0.762 0) (layer F.SilkS) (width 0.3048))
(fp_line (start 0.762 0) (end 0.762 -1.016) (layer F.SilkS) (width 0.3048))
(fp_line (start -3.302 -1.016) (end -3.302 1.016) (layer F.SilkS) (width 0.3048))
(fp_line (start 0.762 1.016) (end 0.762 0) (layer F.SilkS) (width 0.3048))
(fp_line (start -3.302 -0.508) (end -2.794 -1.016) (layer F.SilkS) (width 0.3048))
(pad 1 thru_hole circle (at -3.81 0) (size 1.651 1.651) (drill 0.8128)
(layers *.Cu *.Mask F.SilkS)
(net 39 N-0000024)
)
(pad 2 thru_hole circle (at 1.27 0) (size 1.651 1.651) (drill 0.8128)
(layers *.Cu *.Mask F.SilkS)
(net 21 /PD2)
)
(model discret/resistor.wrl
(at (xyz -0.05 0 0))
(scale (xyz 0.2 0.3 0.3))
(rotate (xyz 0 0 0))
)
)
(module RESCR12 (layer F.Cu) (tedit 5633ADE9) (tstamp 56D0ECAC)
(at 151.13 97.155 90)
(descr CR12)
(tags "CR12 RESCR12")
(path /5672BA57)
(autoplace_cost180 10)
(fp_text reference R6 (at -1.27 0 90) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.14986)))
)
(fp_text value 47 (at -0.762 0.127 90) (layer F.SilkS) hide
(effects (font (size 1.397 1.27) (thickness 0.2032)))
)
(fp_line (start 0.762 1.016) (end -3.302 1.016) (layer F.SilkS) (width 0.3048))
(fp_line (start -3.302 -1.016) (end 0.762 -1.016) (layer F.SilkS) (width 0.3048))
(fp_line (start -3.81 0) (end -3.302 0) (layer F.SilkS) (width 0.3048))
(fp_line (start 1.27 0) (end 0.762 0) (layer F.SilkS) (width 0.3048))
(fp_line (start 0.762 0) (end 0.762 -1.016) (layer F.SilkS) (width 0.3048))
(fp_line (start -3.302 -1.016) (end -3.302 1.016) (layer F.SilkS) (width 0.3048))
(fp_line (start 0.762 1.016) (end 0.762 0) (layer F.SilkS) (width 0.3048))
(fp_line (start -3.302 -0.508) (end -2.794 -1.016) (layer F.SilkS) (width 0.3048))
(pad 1 thru_hole circle (at -3.81 0 90) (size 1.651 1.651) (drill 0.8128)