forked from rusefi/rusefi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
vrs_io_1.kicad_pcb
1660 lines (1613 loc) · 92.2 KB
/
vrs_io_1.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)
(general
(links 0)
(no_connects 0)
(area 174.080714 108.839 241.082288 140.119101)
(thickness 1.6)
(drawings 41)
(tracks 120)
(zones 0)
(modules 38)
(nets 22)
)
(page A)
(title_block
(title "VR board")
(date 2018-12-15)
(rev R0.2)
(company "rusEFI by DAECU")
)
(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)
(39 F.Mask user)
(40 Dwgs.User user)
(41 Cmts.User user)
(42 Eco1.User user)
(43 Eco2.User user)
(44 Edge.Cuts user)
)
(setup
(last_trace_width 0.254)
(user_trace_width 0.5)
(user_trace_width 1.27)
(trace_clearance 0.1778)
(zone_clearance 0.508)
(zone_45_only no)
(trace_min 0.254)
(segment_width 0.254)
(edge_width 0.254)
(via_size 0.889)
(via_drill 0.635)
(via_min_size 0.889)
(via_min_drill 0.508)
(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.4318)
(pcb_text_size 1.524 2.032)
(mod_edge_width 0.09906)
(mod_text_size 1.524 1.524)
(mod_text_width 0.254)
(pad_size 0.35052 0.70104)
(pad_drill 0.6)
(pad_to_mask_clearance 0.254)
(aux_axis_origin 0 0)
(visible_elements 7FFFF77F)
(pcbplotparams
(layerselection 0x010f0_80000001)
(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 false)
(plotinvisibletext false)
(padsonsilk false)
(subtractmaskfromsilk false)
(outputformat 1)
(mirror false)
(drillshape 0)
(scaleselection 1)
(outputdirectory gerber))
)
(net 0 "")
(net 1 /5V)
(net 2 /CAM+)
(net 3 /CAM-)
(net 4 /CRK2+)
(net 5 /CRK2-)
(net 6 GND)
(net 7 "Net-(C101-Pad1)")
(net 8 "Net-(C101-Pad2)")
(net 9 "Net-(C102-Pad1)")
(net 10 "Net-(C102-Pad2)")
(net 11 "Net-(R102-Pad2)")
(net 12 "Net-(R103-Pad2)")
(net 13 "Net-(R104-Pad2)")
(net 14 "Net-(R106-Pad2)")
(net 15 "Net-(R137-Pad2)")
(net 16 "Net-(R141-Pad2)")
(net 17 /Cout2)
(net 18 /Cout1)
(net 19 "Net-(DCO1-Pad1)")
(net 20 "Net-(DCO2-Pad1)")
(net 21 "Net-(DPWR1-Pad1)")
(net_class Default "Это класс цепей по умолчанию."
(clearance 0.1778)
(trace_width 0.254)
(via_dia 0.889)
(via_drill 0.635)
(uvia_dia 0.508)
(uvia_drill 0.127)
(add_net /5V)
(add_net /CAM+)
(add_net /CAM-)
(add_net /CRK2+)
(add_net /CRK2-)
(add_net /Cout1)
(add_net /Cout2)
(add_net GND)
(add_net "Net-(C101-Pad1)")
(add_net "Net-(C101-Pad2)")
(add_net "Net-(C102-Pad1)")
(add_net "Net-(C102-Pad2)")
(add_net "Net-(DCO1-Pad1)")
(add_net "Net-(DCO2-Pad1)")
(add_net "Net-(DPWR1-Pad1)")
(add_net "Net-(R102-Pad2)")
(add_net "Net-(R103-Pad2)")
(add_net "Net-(R104-Pad2)")
(add_net "Net-(R106-Pad2)")
(add_net "Net-(R137-Pad2)")
(add_net "Net-(R141-Pad2)")
)
(module LED_0805 (layer F.Cu) (tedit 5C152311) (tstamp 56D4E3F9)
(at 217.17 125.095 90)
(descr "LED 0805 smd package")
(tags "LED 0805 SMD")
(path /55237975)
(attr smd)
(fp_text reference DCO1 (at 0 1.27 90) (layer F.SilkS)
(effects (font (size 0.508 0.508) (thickness 0.10922)))
)
(fp_text value LED-red (at 0 1.75 90) (layer F.Fab) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -1.6 0.75) (end 1.1 0.75) (layer F.SilkS) (width 0.15))
(fp_line (start -1.6 -0.75) (end 1.1 -0.75) (layer F.SilkS) (width 0.15))
(fp_line (start -0.1 0.15) (end -0.1 -0.1) (layer F.SilkS) (width 0.15))
(fp_line (start -0.1 -0.1) (end -0.25 0.05) (layer F.SilkS) (width 0.15))
(fp_line (start -0.35 -0.35) (end -0.35 0.35) (layer F.SilkS) (width 0.15))
(fp_line (start 0 0) (end 0.35 0) (layer F.SilkS) (width 0.15))
(fp_line (start -0.35 0) (end 0 -0.35) (layer F.SilkS) (width 0.15))
(fp_line (start 0 -0.35) (end 0 0.35) (layer F.SilkS) (width 0.15))
(fp_line (start 0 0.35) (end -0.35 0) (layer F.SilkS) (width 0.15))
(fp_line (start 1.9 -0.95) (end 1.9 0.95) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.9 0.95) (end -1.9 0.95) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.9 0.95) (end -1.9 -0.95) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.9 -0.95) (end 1.9 -0.95) (layer F.CrtYd) (width 0.05))
(pad 2 smd rect (at 1.04902 0 270) (size 1.19888 1.19888) (layers F.Cu F.Paste F.Mask)
(net 1 /5V))
(pad 1 smd rect (at -1.04902 0 270) (size 1.19888 1.19888) (layers F.Cu F.Paste F.Mask)
(net 19 "Net-(DCO1-Pad1)"))
(model LEDs.3dshapes/LED_0805.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module LED_0805 (layer F.Cu) (tedit 5C1632A3) (tstamp 5C14D4E9)
(at 208.915 128.651 90)
(descr "LED 0805 smd package")
(tags "LED 0805 SMD")
(path /5C14D6AC)
(attr smd)
(fp_text reference DPWR1 (at 0 -1.27 90) (layer F.SilkS)
(effects (font (size 0.508 0.508) (thickness 0.10922)))
)
(fp_text value LED-red (at 0 1.75 90) (layer F.Fab) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -1.6 0.75) (end 1.1 0.75) (layer F.SilkS) (width 0.15))
(fp_line (start -1.6 -0.75) (end 1.1 -0.75) (layer F.SilkS) (width 0.15))
(fp_line (start -0.1 0.15) (end -0.1 -0.1) (layer F.SilkS) (width 0.15))
(fp_line (start -0.1 -0.1) (end -0.25 0.05) (layer F.SilkS) (width 0.15))
(fp_line (start -0.35 -0.35) (end -0.35 0.35) (layer F.SilkS) (width 0.15))
(fp_line (start 0 0) (end 0.35 0) (layer F.SilkS) (width 0.15))
(fp_line (start -0.35 0) (end 0 -0.35) (layer F.SilkS) (width 0.15))
(fp_line (start 0 -0.35) (end 0 0.35) (layer F.SilkS) (width 0.15))
(fp_line (start 0 0.35) (end -0.35 0) (layer F.SilkS) (width 0.15))
(fp_line (start 1.9 -0.95) (end 1.9 0.95) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.9 0.95) (end -1.9 0.95) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.9 0.95) (end -1.9 -0.95) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.9 -0.95) (end 1.9 -0.95) (layer F.CrtYd) (width 0.05))
(pad 2 smd rect (at 1.04902 0 270) (size 1.19888 1.19888) (layers F.Cu F.Paste F.Mask)
(net 1 /5V))
(pad 1 smd rect (at -1.04902 0 270) (size 1.19888 1.19888) (layers F.Cu F.Paste F.Mask)
(net 21 "Net-(DPWR1-Pad1)"))
(model LEDs.3dshapes/LED_0805.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module SM0805 placed (layer F.Cu) (tedit 5C14D305) (tstamp 5C14D4CC)
(at 212.09 129.54 180)
(path /5C14D89B)
(attr smd)
(fp_text reference R101 (at 0 0 270) (layer F.SilkS)
(effects (font (size 0.50038 0.50038) (thickness 0.10922)))
)
(fp_text value 10k (at 0 0.381 180) (layer F.SilkS) hide
(effects (font (size 0.50038 0.50038) (thickness 0.10922)))
)
(fp_circle (center -1.651 0.762) (end -1.651 0.635) (layer F.SilkS) (width 0.09906))
(fp_line (start -0.508 0.762) (end -1.524 0.762) (layer F.SilkS) (width 0.09906))
(fp_line (start -1.524 0.762) (end -1.524 -0.762) (layer F.SilkS) (width 0.09906))
(fp_line (start -1.524 -0.762) (end -0.508 -0.762) (layer F.SilkS) (width 0.09906))
(fp_line (start 0.508 -0.762) (end 1.524 -0.762) (layer F.SilkS) (width 0.09906))
(fp_line (start 1.524 -0.762) (end 1.524 0.762) (layer F.SilkS) (width 0.09906))
(fp_line (start 1.524 0.762) (end 0.508 0.762) (layer F.SilkS) (width 0.09906))
(pad 1 smd rect (at -0.9525 0 180) (size 0.889 1.397) (layers F.Cu F.Paste F.Mask)
(net 6 GND))
(pad 2 smd rect (at 0.9525 0 180) (size 0.889 1.397) (layers F.Cu F.Paste F.Mask)
(net 21 "Net-(DPWR1-Pad1)"))
(model smd/chip_cms.wrl
(at (xyz 0 0 0))
(scale (xyz 0.1 0.1 0.1))
(rotate (xyz 0 0 0))
)
)
(module SM0805 placed (layer F.Cu) (tedit 56D4E61B) (tstamp 528A14D4)
(at 203.2 125.73 90)
(path /4AD9C851)
(attr smd)
(fp_text reference C101 (at 0 0 180) (layer F.SilkS)
(effects (font (size 0.50038 0.50038) (thickness 0.10922)))
)
(fp_text value 1000pF (at 0 0.381 90) (layer F.SilkS) hide
(effects (font (size 0.50038 0.50038) (thickness 0.10922)))
)
(fp_circle (center -1.651 0.762) (end -1.651 0.635) (layer F.SilkS) (width 0.09906))
(fp_line (start -0.508 0.762) (end -1.524 0.762) (layer F.SilkS) (width 0.09906))
(fp_line (start -1.524 0.762) (end -1.524 -0.762) (layer F.SilkS) (width 0.09906))
(fp_line (start -1.524 -0.762) (end -0.508 -0.762) (layer F.SilkS) (width 0.09906))
(fp_line (start 0.508 -0.762) (end 1.524 -0.762) (layer F.SilkS) (width 0.09906))
(fp_line (start 1.524 -0.762) (end 1.524 0.762) (layer F.SilkS) (width 0.09906))
(fp_line (start 1.524 0.762) (end 0.508 0.762) (layer F.SilkS) (width 0.09906))
(pad 1 smd rect (at -0.9525 0 90) (size 0.889 1.397) (layers F.Cu F.Paste F.Mask)
(net 7 "Net-(C101-Pad1)"))
(pad 2 smd rect (at 0.9525 0 90) (size 0.889 1.397) (layers F.Cu F.Paste F.Mask)
(net 8 "Net-(C101-Pad2)"))
(model smd/chip_cms.wrl
(at (xyz 0 0 0))
(scale (xyz 0.1 0.1 0.1))
(rotate (xyz 0 0 0))
)
)
(module SM0805 placed (layer F.Cu) (tedit 56D4E61F) (tstamp 528A14E1)
(at 203.2 120.65 90)
(path /4AD9CD25)
(attr smd)
(fp_text reference C102 (at 0 0 180) (layer F.SilkS)
(effects (font (size 0.50038 0.50038) (thickness 0.10922)))
)
(fp_text value 1000pF (at 0 0.381 90) (layer F.SilkS) hide
(effects (font (size 0.50038 0.50038) (thickness 0.10922)))
)
(fp_circle (center -1.651 0.762) (end -1.651 0.635) (layer F.SilkS) (width 0.09906))
(fp_line (start -0.508 0.762) (end -1.524 0.762) (layer F.SilkS) (width 0.09906))
(fp_line (start -1.524 0.762) (end -1.524 -0.762) (layer F.SilkS) (width 0.09906))
(fp_line (start -1.524 -0.762) (end -0.508 -0.762) (layer F.SilkS) (width 0.09906))
(fp_line (start 0.508 -0.762) (end 1.524 -0.762) (layer F.SilkS) (width 0.09906))
(fp_line (start 1.524 -0.762) (end 1.524 0.762) (layer F.SilkS) (width 0.09906))
(fp_line (start 1.524 0.762) (end 0.508 0.762) (layer F.SilkS) (width 0.09906))
(pad 1 smd rect (at -0.9525 0 90) (size 0.889 1.397) (layers F.Cu F.Paste F.Mask)
(net 9 "Net-(C102-Pad1)"))
(pad 2 smd rect (at 0.9525 0 90) (size 0.889 1.397) (layers F.Cu F.Paste F.Mask)
(net 10 "Net-(C102-Pad2)"))
(model smd/chip_cms.wrl
(at (xyz 0 0 0))
(scale (xyz 0.1 0.1 0.1))
(rotate (xyz 0 0 0))
)
)
(module SM0805 placed (layer F.Cu) (tedit 56D4E60A) (tstamp 528A14FA)
(at 211.455 119.38)
(path /50D6291F)
(attr smd)
(fp_text reference C104 (at 0 0 90) (layer F.SilkS)
(effects (font (size 0.50038 0.50038) (thickness 0.10922)))
)
(fp_text value 0.1uF (at 0 0.381) (layer F.SilkS) hide
(effects (font (size 0.50038 0.50038) (thickness 0.10922)))
)
(fp_circle (center -1.651 0.762) (end -1.651 0.635) (layer F.SilkS) (width 0.09906))
(fp_line (start -0.508 0.762) (end -1.524 0.762) (layer F.SilkS) (width 0.09906))
(fp_line (start -1.524 0.762) (end -1.524 -0.762) (layer F.SilkS) (width 0.09906))
(fp_line (start -1.524 -0.762) (end -0.508 -0.762) (layer F.SilkS) (width 0.09906))
(fp_line (start 0.508 -0.762) (end 1.524 -0.762) (layer F.SilkS) (width 0.09906))
(fp_line (start 1.524 -0.762) (end 1.524 0.762) (layer F.SilkS) (width 0.09906))
(fp_line (start 1.524 0.762) (end 0.508 0.762) (layer F.SilkS) (width 0.09906))
(pad 1 smd rect (at -0.9525 0) (size 0.889 1.397) (layers F.Cu F.Paste F.Mask)
(net 1 /5V))
(pad 2 smd rect (at 0.9525 0) (size 0.889 1.397) (layers F.Cu F.Paste F.Mask)
(net 6 GND))
(model smd/chip_cms.wrl
(at (xyz 0 0 0))
(scale (xyz 0.1 0.1 0.1))
(rotate (xyz 0 0 0))
)
)
(module SM0805 placed (layer F.Cu) (tedit 56D4E511) (tstamp 529E9947)
(at 196.215 124.46)
(path /4E39E3A9)
(attr smd)
(fp_text reference R102 (at 0 0 90) (layer F.SilkS)
(effects (font (size 0.50038 0.50038) (thickness 0.10922)))
)
(fp_text value 5k (at 0 0.381) (layer F.SilkS) hide
(effects (font (size 0.50038 0.50038) (thickness 0.10922)))
)
(fp_circle (center -1.651 0.762) (end -1.651 0.635) (layer F.SilkS) (width 0.09906))
(fp_line (start -0.508 0.762) (end -1.524 0.762) (layer F.SilkS) (width 0.09906))
(fp_line (start -1.524 0.762) (end -1.524 -0.762) (layer F.SilkS) (width 0.09906))
(fp_line (start -1.524 -0.762) (end -0.508 -0.762) (layer F.SilkS) (width 0.09906))
(fp_line (start 0.508 -0.762) (end 1.524 -0.762) (layer F.SilkS) (width 0.09906))
(fp_line (start 1.524 -0.762) (end 1.524 0.762) (layer F.SilkS) (width 0.09906))
(fp_line (start 1.524 0.762) (end 0.508 0.762) (layer F.SilkS) (width 0.09906))
(pad 1 smd rect (at -0.9525 0) (size 0.889 1.397) (layers F.Cu F.Paste F.Mask)
(net 5 /CRK2-))
(pad 2 smd rect (at 0.9525 0) (size 0.889 1.397) (layers F.Cu F.Paste F.Mask)
(net 11 "Net-(R102-Pad2)"))
(model smd/chip_cms.wrl
(at (xyz 0 0 0))
(scale (xyz 0.1 0.1 0.1))
(rotate (xyz 0 0 0))
)
)
(module SM0805 placed (layer F.Cu) (tedit 56D4E539) (tstamp 528A15A8)
(at 196.215 127)
(path /4E39E3A5)
(attr smd)
(fp_text reference R103 (at 0 0 90) (layer F.SilkS)
(effects (font (size 0.50038 0.50038) (thickness 0.10922)))
)
(fp_text value 5k (at 0 0.381) (layer F.SilkS) hide
(effects (font (size 0.50038 0.50038) (thickness 0.10922)))
)
(fp_circle (center -1.651 0.762) (end -1.651 0.635) (layer F.SilkS) (width 0.09906))
(fp_line (start -0.508 0.762) (end -1.524 0.762) (layer F.SilkS) (width 0.09906))
(fp_line (start -1.524 0.762) (end -1.524 -0.762) (layer F.SilkS) (width 0.09906))
(fp_line (start -1.524 -0.762) (end -0.508 -0.762) (layer F.SilkS) (width 0.09906))
(fp_line (start 0.508 -0.762) (end 1.524 -0.762) (layer F.SilkS) (width 0.09906))
(fp_line (start 1.524 -0.762) (end 1.524 0.762) (layer F.SilkS) (width 0.09906))
(fp_line (start 1.524 0.762) (end 0.508 0.762) (layer F.SilkS) (width 0.09906))
(pad 1 smd rect (at -0.9525 0) (size 0.889 1.397) (layers F.Cu F.Paste F.Mask)
(net 4 /CRK2+))
(pad 2 smd rect (at 0.9525 0) (size 0.889 1.397) (layers F.Cu F.Paste F.Mask)
(net 12 "Net-(R103-Pad2)"))
(model smd/chip_cms.wrl
(at (xyz 0 0 0))
(scale (xyz 0.1 0.1 0.1))
(rotate (xyz 0 0 0))
)
)
(module SM0805 placed (layer F.Cu) (tedit 56D4E55C) (tstamp 528A15B5)
(at 196.215 119.38)
(path /4E39E39B)
(attr smd)
(fp_text reference R104 (at 0 0 90) (layer F.SilkS)
(effects (font (size 0.50038 0.50038) (thickness 0.10922)))
)
(fp_text value 5k (at 0 0.381) (layer F.SilkS) hide
(effects (font (size 0.50038 0.50038) (thickness 0.10922)))
)
(fp_circle (center -1.651 0.762) (end -1.651 0.635) (layer F.SilkS) (width 0.09906))
(fp_line (start -0.508 0.762) (end -1.524 0.762) (layer F.SilkS) (width 0.09906))
(fp_line (start -1.524 0.762) (end -1.524 -0.762) (layer F.SilkS) (width 0.09906))
(fp_line (start -1.524 -0.762) (end -0.508 -0.762) (layer F.SilkS) (width 0.09906))
(fp_line (start 0.508 -0.762) (end 1.524 -0.762) (layer F.SilkS) (width 0.09906))
(fp_line (start 1.524 -0.762) (end 1.524 0.762) (layer F.SilkS) (width 0.09906))
(fp_line (start 1.524 0.762) (end 0.508 0.762) (layer F.SilkS) (width 0.09906))
(pad 1 smd rect (at -0.9525 0) (size 0.889 1.397) (layers F.Cu F.Paste F.Mask)
(net 2 /CAM+))
(pad 2 smd rect (at 0.9525 0) (size 0.889 1.397) (layers F.Cu F.Paste F.Mask)
(net 13 "Net-(R104-Pad2)"))
(model smd/chip_cms.wrl
(at (xyz 0 0 0))
(scale (xyz 0.1 0.1 0.1))
(rotate (xyz 0 0 0))
)
)
(module SM0805 (layer F.Cu) (tedit 56D4E74E) (tstamp 528A15CF)
(at 196.215 121.92)
(path /4E39E39D)
(attr smd)
(fp_text reference R106 (at 0 0 90) (layer F.SilkS)
(effects (font (size 0.50038 0.50038) (thickness 0.10922)))
)
(fp_text value 5k (at 0 0.381) (layer F.SilkS) hide
(effects (font (size 0.50038 0.50038) (thickness 0.10922)))
)
(fp_circle (center -1.651 0.762) (end -1.651 0.635) (layer F.SilkS) (width 0.09906))
(fp_line (start -0.508 0.762) (end -1.524 0.762) (layer F.SilkS) (width 0.09906))
(fp_line (start -1.524 0.762) (end -1.524 -0.762) (layer F.SilkS) (width 0.09906))
(fp_line (start -1.524 -0.762) (end -0.508 -0.762) (layer F.SilkS) (width 0.09906))
(fp_line (start 0.508 -0.762) (end 1.524 -0.762) (layer F.SilkS) (width 0.09906))
(fp_line (start 1.524 -0.762) (end 1.524 0.762) (layer F.SilkS) (width 0.09906))
(fp_line (start 1.524 0.762) (end 0.508 0.762) (layer F.SilkS) (width 0.09906))
(pad 1 smd rect (at -0.9525 0) (size 0.889 1.397) (layers F.Cu F.Paste F.Mask)
(net 3 /CAM-))
(pad 2 smd rect (at 0.9525 0) (size 0.889 1.397) (layers F.Cu F.Paste F.Mask)
(net 14 "Net-(R106-Pad2)"))
(model smd/chip_cms.wrl
(at (xyz 0 0 0))
(scale (xyz 0.1 0.1 0.1))
(rotate (xyz 0 0 0))
)
)
(module SM0805 placed (layer F.Cu) (tedit 56D4E519) (tstamp 528A15DC)
(at 200.025 124.46)
(path /4E39E3AD)
(attr smd)
(fp_text reference R107 (at 0 0 90) (layer F.SilkS)
(effects (font (size 0.50038 0.50038) (thickness 0.10922)))
)
(fp_text value 5k (at 0 0.381) (layer F.SilkS) hide
(effects (font (size 0.50038 0.50038) (thickness 0.10922)))
)
(fp_circle (center -1.651 0.762) (end -1.651 0.635) (layer F.SilkS) (width 0.09906))
(fp_line (start -0.508 0.762) (end -1.524 0.762) (layer F.SilkS) (width 0.09906))
(fp_line (start -1.524 0.762) (end -1.524 -0.762) (layer F.SilkS) (width 0.09906))
(fp_line (start -1.524 -0.762) (end -0.508 -0.762) (layer F.SilkS) (width 0.09906))
(fp_line (start 0.508 -0.762) (end 1.524 -0.762) (layer F.SilkS) (width 0.09906))
(fp_line (start 1.524 -0.762) (end 1.524 0.762) (layer F.SilkS) (width 0.09906))
(fp_line (start 1.524 0.762) (end 0.508 0.762) (layer F.SilkS) (width 0.09906))
(pad 1 smd rect (at -0.9525 0) (size 0.889 1.397) (layers F.Cu F.Paste F.Mask)
(net 11 "Net-(R102-Pad2)"))
(pad 2 smd rect (at 0.9525 0) (size 0.889 1.397) (layers F.Cu F.Paste F.Mask)
(net 8 "Net-(C101-Pad2)"))
(model smd/chip_cms.wrl
(at (xyz 0 0 0))
(scale (xyz 0.1 0.1 0.1))
(rotate (xyz 0 0 0))
)
)
(module SM0805 placed (layer F.Cu) (tedit 56D4E554) (tstamp 528A15E9)
(at 200.025 127)
(path /4E39E3A0)
(attr smd)
(fp_text reference R108 (at 0 0 90) (layer F.SilkS)
(effects (font (size 0.50038 0.50038) (thickness 0.10922)))
)
(fp_text value 5k (at 0 0.381) (layer F.SilkS) hide
(effects (font (size 0.50038 0.50038) (thickness 0.10922)))
)
(fp_circle (center -1.651 0.762) (end -1.651 0.635) (layer F.SilkS) (width 0.09906))
(fp_line (start -0.508 0.762) (end -1.524 0.762) (layer F.SilkS) (width 0.09906))
(fp_line (start -1.524 0.762) (end -1.524 -0.762) (layer F.SilkS) (width 0.09906))
(fp_line (start -1.524 -0.762) (end -0.508 -0.762) (layer F.SilkS) (width 0.09906))
(fp_line (start 0.508 -0.762) (end 1.524 -0.762) (layer F.SilkS) (width 0.09906))
(fp_line (start 1.524 -0.762) (end 1.524 0.762) (layer F.SilkS) (width 0.09906))
(fp_line (start 1.524 0.762) (end 0.508 0.762) (layer F.SilkS) (width 0.09906))
(pad 1 smd rect (at -0.9525 0) (size 0.889 1.397) (layers F.Cu F.Paste F.Mask)
(net 12 "Net-(R103-Pad2)"))
(pad 2 smd rect (at 0.9525 0) (size 0.889 1.397) (layers F.Cu F.Paste F.Mask)
(net 7 "Net-(C101-Pad1)"))
(model smd/chip_cms.wrl
(at (xyz 0 0 0))
(scale (xyz 0.1 0.1 0.1))
(rotate (xyz 0 0 0))
)
)
(module SM0805 placed (layer F.Cu) (tedit 56D4E756) (tstamp 528A15F6)
(at 200.025 119.38)
(path /4E39E396)
(attr smd)
(fp_text reference R109 (at 0 0 90) (layer F.SilkS)
(effects (font (size 0.50038 0.50038) (thickness 0.10922)))
)
(fp_text value 5k (at 0 0.381) (layer F.SilkS) hide
(effects (font (size 0.50038 0.50038) (thickness 0.10922)))
)
(fp_circle (center -1.651 0.762) (end -1.651 0.635) (layer F.SilkS) (width 0.09906))
(fp_line (start -0.508 0.762) (end -1.524 0.762) (layer F.SilkS) (width 0.09906))
(fp_line (start -1.524 0.762) (end -1.524 -0.762) (layer F.SilkS) (width 0.09906))
(fp_line (start -1.524 -0.762) (end -0.508 -0.762) (layer F.SilkS) (width 0.09906))
(fp_line (start 0.508 -0.762) (end 1.524 -0.762) (layer F.SilkS) (width 0.09906))
(fp_line (start 1.524 -0.762) (end 1.524 0.762) (layer F.SilkS) (width 0.09906))
(fp_line (start 1.524 0.762) (end 0.508 0.762) (layer F.SilkS) (width 0.09906))
(pad 1 smd rect (at -0.9525 0) (size 0.889 1.397) (layers F.Cu F.Paste F.Mask)
(net 13 "Net-(R104-Pad2)"))
(pad 2 smd rect (at 0.9525 0) (size 0.889 1.397) (layers F.Cu F.Paste F.Mask)
(net 10 "Net-(C102-Pad2)"))
(model smd/chip_cms.wrl
(at (xyz 0 0 0))
(scale (xyz 0.1 0.1 0.1))
(rotate (xyz 0 0 0))
)
)
(module SM0805 placed (layer F.Cu) (tedit 56D4E74C) (tstamp 528A1603)
(at 200.025 121.92)
(path /4E39E393)
(attr smd)
(fp_text reference R110 (at 0 0 90) (layer F.SilkS)
(effects (font (size 0.50038 0.50038) (thickness 0.10922)))
)
(fp_text value 5k (at 0 0.381) (layer F.SilkS) hide
(effects (font (size 0.50038 0.50038) (thickness 0.10922)))
)
(fp_circle (center -1.651 0.762) (end -1.651 0.635) (layer F.SilkS) (width 0.09906))
(fp_line (start -0.508 0.762) (end -1.524 0.762) (layer F.SilkS) (width 0.09906))
(fp_line (start -1.524 0.762) (end -1.524 -0.762) (layer F.SilkS) (width 0.09906))
(fp_line (start -1.524 -0.762) (end -0.508 -0.762) (layer F.SilkS) (width 0.09906))
(fp_line (start 0.508 -0.762) (end 1.524 -0.762) (layer F.SilkS) (width 0.09906))
(fp_line (start 1.524 -0.762) (end 1.524 0.762) (layer F.SilkS) (width 0.09906))
(fp_line (start 1.524 0.762) (end 0.508 0.762) (layer F.SilkS) (width 0.09906))
(pad 1 smd rect (at -0.9525 0) (size 0.889 1.397) (layers F.Cu F.Paste F.Mask)
(net 14 "Net-(R106-Pad2)"))
(pad 2 smd rect (at 0.9525 0) (size 0.889 1.397) (layers F.Cu F.Paste F.Mask)
(net 9 "Net-(C102-Pad1)"))
(model smd/chip_cms.wrl
(at (xyz 0 0 0))
(scale (xyz 0.1 0.1 0.1))
(rotate (xyz 0 0 0))
)
)
(module SM0805 placed (layer F.Cu) (tedit 56D4E615) (tstamp 529E99E5)
(at 205.105 125.73 90)
(path /4E39E390)
(attr smd)
(fp_text reference R111 (at 0 0 180) (layer F.SilkS)
(effects (font (size 0.50038 0.50038) (thickness 0.10922)))
)
(fp_text value 5k (at 0 0.381 90) (layer F.SilkS) hide
(effects (font (size 0.50038 0.50038) (thickness 0.10922)))
)
(fp_circle (center -1.651 0.762) (end -1.651 0.635) (layer F.SilkS) (width 0.09906))
(fp_line (start -0.508 0.762) (end -1.524 0.762) (layer F.SilkS) (width 0.09906))
(fp_line (start -1.524 0.762) (end -1.524 -0.762) (layer F.SilkS) (width 0.09906))
(fp_line (start -1.524 -0.762) (end -0.508 -0.762) (layer F.SilkS) (width 0.09906))
(fp_line (start 0.508 -0.762) (end 1.524 -0.762) (layer F.SilkS) (width 0.09906))
(fp_line (start 1.524 -0.762) (end 1.524 0.762) (layer F.SilkS) (width 0.09906))
(fp_line (start 1.524 0.762) (end 0.508 0.762) (layer F.SilkS) (width 0.09906))
(pad 1 smd rect (at -0.9525 0 90) (size 0.889 1.397) (layers F.Cu F.Paste F.Mask)
(net 7 "Net-(C101-Pad1)"))
(pad 2 smd rect (at 0.9525 0 90) (size 0.889 1.397) (layers F.Cu F.Paste F.Mask)
(net 8 "Net-(C101-Pad2)"))
(model smd/chip_cms.wrl
(at (xyz 0 0 0))
(scale (xyz 0.1 0.1 0.1))
(rotate (xyz 0 0 0))
)
)
(module SM0805 placed (layer F.Cu) (tedit 56D4E624) (tstamp 528A161D)
(at 205.105 120.65 90)
(path /4E39E38D)
(attr smd)
(fp_text reference R112 (at 0 0 180) (layer F.SilkS)
(effects (font (size 0.50038 0.50038) (thickness 0.10922)))
)
(fp_text value 5k (at 0 0.381 90) (layer F.SilkS) hide
(effects (font (size 0.50038 0.50038) (thickness 0.10922)))
)
(fp_circle (center -1.651 0.762) (end -1.651 0.635) (layer F.SilkS) (width 0.09906))
(fp_line (start -0.508 0.762) (end -1.524 0.762) (layer F.SilkS) (width 0.09906))
(fp_line (start -1.524 0.762) (end -1.524 -0.762) (layer F.SilkS) (width 0.09906))
(fp_line (start -1.524 -0.762) (end -0.508 -0.762) (layer F.SilkS) (width 0.09906))
(fp_line (start 0.508 -0.762) (end 1.524 -0.762) (layer F.SilkS) (width 0.09906))
(fp_line (start 1.524 -0.762) (end 1.524 0.762) (layer F.SilkS) (width 0.09906))
(fp_line (start 1.524 0.762) (end 0.508 0.762) (layer F.SilkS) (width 0.09906))
(pad 1 smd rect (at -0.9525 0 90) (size 0.889 1.397) (layers F.Cu F.Paste F.Mask)
(net 9 "Net-(C102-Pad1)"))
(pad 2 smd rect (at 0.9525 0 90) (size 0.889 1.397) (layers F.Cu F.Paste F.Mask)
(net 10 "Net-(C102-Pad2)"))
(model smd/chip_cms.wrl
(at (xyz 0 0 0))
(scale (xyz 0.1 0.1 0.1))
(rotate (xyz 0 0 0))
)
)
(module SM0805 placed (layer F.Cu) (tedit 56D4E70D) (tstamp 52E1E98D)
(at 215.265 125.095 90)
(path /4AD9C75B)
(attr smd)
(fp_text reference R113 (at 0 0 180) (layer F.SilkS)
(effects (font (size 0.50038 0.50038) (thickness 0.10922)))
)
(fp_text value 10k (at 0 0.381 90) (layer F.SilkS) hide
(effects (font (size 0.50038 0.50038) (thickness 0.10922)))
)
(fp_circle (center -1.651 0.762) (end -1.651 0.635) (layer F.SilkS) (width 0.09906))
(fp_line (start -0.508 0.762) (end -1.524 0.762) (layer F.SilkS) (width 0.09906))
(fp_line (start -1.524 0.762) (end -1.524 -0.762) (layer F.SilkS) (width 0.09906))
(fp_line (start -1.524 -0.762) (end -0.508 -0.762) (layer F.SilkS) (width 0.09906))
(fp_line (start 0.508 -0.762) (end 1.524 -0.762) (layer F.SilkS) (width 0.09906))
(fp_line (start 1.524 -0.762) (end 1.524 0.762) (layer F.SilkS) (width 0.09906))
(fp_line (start 1.524 0.762) (end 0.508 0.762) (layer F.SilkS) (width 0.09906))
(pad 1 smd rect (at -0.9525 0 90) (size 0.889 1.397) (layers F.Cu F.Paste F.Mask)
(net 19 "Net-(DCO1-Pad1)"))
(pad 2 smd rect (at 0.9525 0 90) (size 0.889 1.397) (layers F.Cu F.Paste F.Mask)
(net 18 /Cout1))
(model smd/chip_cms.wrl
(at (xyz 0 0 0))
(scale (xyz 0.1 0.1 0.1))
(rotate (xyz 0 0 0))
)
)
(module SM0805 placed (layer F.Cu) (tedit 56D4E710) (tstamp 528A1637)
(at 215.265 121.285 90)
(path /5101D08D)
(attr smd)
(fp_text reference R114 (at 0 0 180) (layer F.SilkS)
(effects (font (size 0.50038 0.50038) (thickness 0.10922)))
)
(fp_text value 10k (at 0 0.381 90) (layer F.SilkS) hide
(effects (font (size 0.50038 0.50038) (thickness 0.10922)))
)
(fp_circle (center -1.651 0.762) (end -1.651 0.635) (layer F.SilkS) (width 0.09906))
(fp_line (start -0.508 0.762) (end -1.524 0.762) (layer F.SilkS) (width 0.09906))
(fp_line (start -1.524 0.762) (end -1.524 -0.762) (layer F.SilkS) (width 0.09906))
(fp_line (start -1.524 -0.762) (end -0.508 -0.762) (layer F.SilkS) (width 0.09906))
(fp_line (start 0.508 -0.762) (end 1.524 -0.762) (layer F.SilkS) (width 0.09906))
(fp_line (start 1.524 -0.762) (end 1.524 0.762) (layer F.SilkS) (width 0.09906))
(fp_line (start 1.524 0.762) (end 0.508 0.762) (layer F.SilkS) (width 0.09906))
(pad 1 smd rect (at -0.9525 0 90) (size 0.889 1.397) (layers F.Cu F.Paste F.Mask)
(net 17 /Cout2))
(pad 2 smd rect (at 0.9525 0 90) (size 0.889 1.397) (layers F.Cu F.Paste F.Mask)
(net 20 "Net-(DCO2-Pad1)"))
(model smd/chip_cms.wrl
(at (xyz 0 0 0))
(scale (xyz 0.1 0.1 0.1))
(rotate (xyz 0 0 0))
)
)
(module maxim-10-QSOP16 placed (layer F.Cu) (tedit 529E9A8F) (tstamp 529C9412)
(at 210.185 123.19 90)
(descr "SMALL OUTLINE PACKAGE")
(tags "SMALL OUTLINE PACKAGE")
(path /4BF90B79)
(attr smd)
(fp_text reference U101 (at 0.254 0.381 90) (layer F.SilkS)
(effects (font (size 1.27 1.27) (thickness 0.0889)))
)
(fp_text value MAX9926/9927 (at -3.45186 -0.97028 180) (layer F.SilkS) hide
(effects (font (size 1.27 1.27) (thickness 0.0889)))
)
(fp_line (start -2.37236 3.0988) (end -2.0701 3.0988) (layer F.SilkS) (width 0.06604))
(fp_line (start -2.0701 3.0988) (end -2.0701 1.79832) (layer F.SilkS) (width 0.06604))
(fp_line (start -2.37236 1.79832) (end -2.0701 1.79832) (layer F.SilkS) (width 0.06604))
(fp_line (start -2.37236 3.0988) (end -2.37236 1.79832) (layer F.SilkS) (width 0.06604))
(fp_line (start -1.73736 3.0988) (end -1.4351 3.0988) (layer F.SilkS) (width 0.06604))
(fp_line (start -1.4351 3.0988) (end -1.4351 1.79832) (layer F.SilkS) (width 0.06604))
(fp_line (start -1.73736 1.79832) (end -1.4351 1.79832) (layer F.SilkS) (width 0.06604))
(fp_line (start -1.73736 3.0988) (end -1.73736 1.79832) (layer F.SilkS) (width 0.06604))
(fp_line (start -1.10236 3.0988) (end -0.8001 3.0988) (layer F.SilkS) (width 0.06604))
(fp_line (start -0.8001 3.0988) (end -0.8001 1.79832) (layer F.SilkS) (width 0.06604))
(fp_line (start -1.10236 1.79832) (end -0.8001 1.79832) (layer F.SilkS) (width 0.06604))
(fp_line (start -1.10236 3.0988) (end -1.10236 1.79832) (layer F.SilkS) (width 0.06604))
(fp_line (start -0.46736 3.0988) (end -0.1651 3.0988) (layer F.SilkS) (width 0.06604))
(fp_line (start -0.1651 3.0988) (end -0.1651 1.79832) (layer F.SilkS) (width 0.06604))
(fp_line (start -0.46736 1.79832) (end -0.1651 1.79832) (layer F.SilkS) (width 0.06604))
(fp_line (start -0.46736 3.0988) (end -0.46736 1.79832) (layer F.SilkS) (width 0.06604))
(fp_line (start 0.1651 3.0988) (end 0.46736 3.0988) (layer F.SilkS) (width 0.06604))
(fp_line (start 0.46736 3.0988) (end 0.46736 1.79832) (layer F.SilkS) (width 0.06604))
(fp_line (start 0.1651 1.79832) (end 0.46736 1.79832) (layer F.SilkS) (width 0.06604))
(fp_line (start 0.1651 3.0988) (end 0.1651 1.79832) (layer F.SilkS) (width 0.06604))
(fp_line (start 0.8001 3.0988) (end 1.10236 3.0988) (layer F.SilkS) (width 0.06604))
(fp_line (start 1.10236 3.0988) (end 1.10236 1.79832) (layer F.SilkS) (width 0.06604))
(fp_line (start 0.8001 1.79832) (end 1.10236 1.79832) (layer F.SilkS) (width 0.06604))
(fp_line (start 0.8001 3.0988) (end 0.8001 1.79832) (layer F.SilkS) (width 0.06604))
(fp_line (start 1.4351 3.0988) (end 1.73736 3.0988) (layer F.SilkS) (width 0.06604))
(fp_line (start 1.73736 3.0988) (end 1.73736 1.79832) (layer F.SilkS) (width 0.06604))
(fp_line (start 1.4351 1.79832) (end 1.73736 1.79832) (layer F.SilkS) (width 0.06604))
(fp_line (start 1.4351 3.0988) (end 1.4351 1.79832) (layer F.SilkS) (width 0.06604))
(fp_line (start 2.0701 3.0988) (end 2.37236 3.0988) (layer F.SilkS) (width 0.06604))
(fp_line (start 2.37236 3.0988) (end 2.37236 1.79832) (layer F.SilkS) (width 0.06604))
(fp_line (start 2.0701 1.79832) (end 2.37236 1.79832) (layer F.SilkS) (width 0.06604))
(fp_line (start 2.0701 3.0988) (end 2.0701 1.79832) (layer F.SilkS) (width 0.06604))
(fp_line (start 2.0701 -1.79832) (end 2.37236 -1.79832) (layer F.SilkS) (width 0.06604))
(fp_line (start 2.37236 -1.79832) (end 2.37236 -3.0988) (layer F.SilkS) (width 0.06604))
(fp_line (start 2.0701 -3.0988) (end 2.37236 -3.0988) (layer F.SilkS) (width 0.06604))
(fp_line (start 2.0701 -1.79832) (end 2.0701 -3.0988) (layer F.SilkS) (width 0.06604))
(fp_line (start 1.4351 -1.79832) (end 1.73736 -1.79832) (layer F.SilkS) (width 0.06604))
(fp_line (start 1.73736 -1.79832) (end 1.73736 -3.0988) (layer F.SilkS) (width 0.06604))
(fp_line (start 1.4351 -3.0988) (end 1.73736 -3.0988) (layer F.SilkS) (width 0.06604))
(fp_line (start 1.4351 -1.79832) (end 1.4351 -3.0988) (layer F.SilkS) (width 0.06604))
(fp_line (start 0.8001 -1.79832) (end 1.10236 -1.79832) (layer F.SilkS) (width 0.06604))
(fp_line (start 1.10236 -1.79832) (end 1.10236 -3.0988) (layer F.SilkS) (width 0.06604))
(fp_line (start 0.8001 -3.0988) (end 1.10236 -3.0988) (layer F.SilkS) (width 0.06604))
(fp_line (start 0.8001 -1.79832) (end 0.8001 -3.0988) (layer F.SilkS) (width 0.06604))
(fp_line (start 0.1651 -1.79832) (end 0.46736 -1.79832) (layer F.SilkS) (width 0.06604))
(fp_line (start 0.46736 -1.79832) (end 0.46736 -3.0988) (layer F.SilkS) (width 0.06604))
(fp_line (start 0.1651 -3.0988) (end 0.46736 -3.0988) (layer F.SilkS) (width 0.06604))
(fp_line (start 0.1651 -1.79832) (end 0.1651 -3.0988) (layer F.SilkS) (width 0.06604))
(fp_line (start -0.46736 -1.79832) (end -0.1651 -1.79832) (layer F.SilkS) (width 0.06604))
(fp_line (start -0.1651 -1.79832) (end -0.1651 -3.0988) (layer F.SilkS) (width 0.06604))
(fp_line (start -0.46736 -3.0988) (end -0.1651 -3.0988) (layer F.SilkS) (width 0.06604))
(fp_line (start -0.46736 -1.79832) (end -0.46736 -3.0988) (layer F.SilkS) (width 0.06604))
(fp_line (start -1.10236 -1.79832) (end -0.8001 -1.79832) (layer F.SilkS) (width 0.06604))
(fp_line (start -0.8001 -1.79832) (end -0.8001 -3.0988) (layer F.SilkS) (width 0.06604))
(fp_line (start -1.10236 -3.0988) (end -0.8001 -3.0988) (layer F.SilkS) (width 0.06604))
(fp_line (start -1.10236 -1.79832) (end -1.10236 -3.0988) (layer F.SilkS) (width 0.06604))
(fp_line (start -1.73736 -1.79832) (end -1.4351 -1.79832) (layer F.SilkS) (width 0.06604))
(fp_line (start -1.4351 -1.79832) (end -1.4351 -3.0988) (layer F.SilkS) (width 0.06604))
(fp_line (start -1.73736 -3.0988) (end -1.4351 -3.0988) (layer F.SilkS) (width 0.06604))
(fp_line (start -1.73736 -1.79832) (end -1.73736 -3.0988) (layer F.SilkS) (width 0.06604))
(fp_line (start -2.37236 -1.79832) (end -2.0701 -1.79832) (layer F.SilkS) (width 0.06604))
(fp_line (start -2.0701 -1.79832) (end -2.0701 -3.0988) (layer F.SilkS) (width 0.06604))
(fp_line (start -2.37236 -3.0988) (end -2.0701 -3.0988) (layer F.SilkS) (width 0.06604))
(fp_line (start -2.37236 -1.79832) (end -2.37236 -3.0988) (layer F.SilkS) (width 0.06604))
(fp_line (start -2.46888 1.84912) (end -2.46888 -1.84912) (layer F.SilkS) (width 0.2032))
(fp_line (start 2.46888 -1.84912) (end 2.46888 1.84912) (layer F.SilkS) (width 0.2032))
(fp_line (start -2.46888 1.84912) (end 2.46888 1.84912) (layer F.SilkS) (width 0.2032))
(fp_line (start 2.46888 -1.84912) (end -2.46888 -1.84912) (layer F.SilkS) (width 0.2032))
(fp_circle (center -1.64846 1.04902) (end -1.79832 1.19888) (layer F.SilkS) (width 0.00254))
(pad 1 smd rect (at -2.2225 2.68986 90) (size 0.44958 1.4986) (layers F.Cu F.Paste F.Mask)
(net 6 GND))
(pad 2 smd rect (at -1.5875 2.68986 90) (size 0.44958 1.4986) (layers F.Cu F.Paste F.Mask))
(pad 3 smd rect (at -0.9525 2.68986 90) (size 0.44958 1.4986) (layers F.Cu F.Paste F.Mask)
(net 6 GND))
(pad 4 smd rect (at -0.3175 2.68986 90) (size 0.44958 1.4986) (layers F.Cu F.Paste F.Mask)
(net 18 /Cout1))
(pad 5 smd rect (at 0.3175 2.68986 90) (size 0.44958 1.4986) (layers F.Cu F.Paste F.Mask)
(net 17 /Cout2))
(pad 6 smd rect (at 0.9525 2.68986 90) (size 0.44958 1.4986) (layers F.Cu F.Paste F.Mask)
(net 6 GND))
(pad 7 smd rect (at 1.5875 2.68986 90) (size 0.44958 1.4986) (layers F.Cu F.Paste F.Mask))
(pad 8 smd rect (at 2.2225 2.68986 90) (size 0.44958 1.4986) (layers F.Cu F.Paste F.Mask)
(net 6 GND))
(pad 9 smd rect (at 2.2225 -2.68986 90) (size 0.44958 1.4986) (layers F.Cu F.Paste F.Mask)
(net 10 "Net-(C102-Pad2)"))
(pad 10 smd rect (at 1.5875 -2.68986 90) (size 0.44958 1.4986) (layers F.Cu F.Paste F.Mask)
(net 9 "Net-(C102-Pad1)"))
(pad 11 smd rect (at 0.9525 -2.68986 90) (size 0.44958 1.4986) (layers F.Cu F.Paste F.Mask)
(net 6 GND))
(pad 12 smd rect (at 0.3175 -2.68986 90) (size 0.44958 1.4986) (layers F.Cu F.Paste F.Mask)
(net 6 GND))
(pad 13 smd rect (at -0.3175 -2.68986 90) (size 0.44958 1.4986) (layers F.Cu F.Paste F.Mask)
(net 6 GND))
(pad 14 smd rect (at -0.9525 -2.68986 90) (size 0.44958 1.4986) (layers F.Cu F.Paste F.Mask)
(net 1 /5V))
(pad 15 smd rect (at -1.5875 -2.68986 90) (size 0.44958 1.4986) (layers F.Cu F.Paste F.Mask)
(net 8 "Net-(C101-Pad2)"))
(pad 16 smd rect (at -2.2225 -2.68986 90) (size 0.44958 1.4986) (layers F.Cu F.Paste F.Mask)
(net 7 "Net-(C101-Pad1)"))
(model smd/smd_dil/ssop-16.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module SM0805 (layer F.Cu) (tedit 56D4E60F) (tstamp 528A14ED)
(at 212.09 127 180)
(path /4AD9CB8E)
(attr smd)
(fp_text reference C103 (at 0 0 270) (layer F.SilkS)
(effects (font (size 0.50038 0.50038) (thickness 0.10922)))
)
(fp_text value 10uF (at 0 0.381 180) (layer F.SilkS) hide
(effects (font (size 0.50038 0.50038) (thickness 0.10922)))
)
(fp_circle (center -1.651 0.762) (end -1.651 0.635) (layer F.SilkS) (width 0.09906))
(fp_line (start -0.508 0.762) (end -1.524 0.762) (layer F.SilkS) (width 0.09906))
(fp_line (start -1.524 0.762) (end -1.524 -0.762) (layer F.SilkS) (width 0.09906))
(fp_line (start -1.524 -0.762) (end -0.508 -0.762) (layer F.SilkS) (width 0.09906))
(fp_line (start 0.508 -0.762) (end 1.524 -0.762) (layer F.SilkS) (width 0.09906))
(fp_line (start 1.524 -0.762) (end 1.524 0.762) (layer F.SilkS) (width 0.09906))
(fp_line (start 1.524 0.762) (end 0.508 0.762) (layer F.SilkS) (width 0.09906))
(pad 1 smd rect (at -0.9525 0 180) (size 0.889 1.397) (layers F.Cu F.Paste F.Mask)
(net 6 GND))
(pad 2 smd rect (at 0.9525 0 180) (size 0.889 1.397) (layers F.Cu F.Paste F.Mask)
(net 1 /5V))
(model smd/chip_cms.wrl
(at (xyz 0 0 0))
(scale (xyz 0.1 0.1 0.1))
(rotate (xyz 0 0 0))
)
)
(module SM0805 placed (layer B.Cu) (tedit 56D4E0BE) (tstamp 56D4E299)
(at 200.025 124.46 180)
(path /4E39E3AF)
(attr smd)
(fp_text reference R137 (at 0 0 450) (layer B.SilkS)
(effects (font (size 0.50038 0.50038) (thickness 0.10922)) (justify mirror))
)
(fp_text value 1K (at 0 0 450) (layer B.SilkS) hide
(effects (font (size 0.50038 0.50038) (thickness 0.10922)) (justify mirror))
)
(fp_circle (center -1.651 -0.762) (end -1.651 -0.635) (layer B.SilkS) (width 0.09906))
(fp_line (start -0.508 -0.762) (end -1.524 -0.762) (layer B.SilkS) (width 0.09906))
(fp_line (start -1.524 -0.762) (end -1.524 0.762) (layer B.SilkS) (width 0.09906))
(fp_line (start -1.524 0.762) (end -0.508 0.762) (layer B.SilkS) (width 0.09906))
(fp_line (start 0.508 0.762) (end 1.524 0.762) (layer B.SilkS) (width 0.09906))
(fp_line (start 1.524 0.762) (end 1.524 -0.762) (layer B.SilkS) (width 0.09906))
(fp_line (start 1.524 -0.762) (end 0.508 -0.762) (layer B.SilkS) (width 0.09906))
(pad 1 smd rect (at -0.9525 0 180) (size 0.889 1.397) (layers B.Cu B.Paste B.Mask)
(net 1 /5V))
(pad 2 smd rect (at 0.9525 0 180) (size 0.889 1.397) (layers B.Cu B.Paste B.Mask)
(net 15 "Net-(R137-Pad2)"))
(model smd/chip_cms.wrl
(at (xyz 0 0 0))
(scale (xyz 0.1 0.1 0.1))
(rotate (xyz 0 0 0))
)
)
(module SM0805 placed (layer B.Cu) (tedit 56D4E0BE) (tstamp 56D4E2A6)
(at 200.025 121.92 180)
(path /4E39E399)
(attr smd)
(fp_text reference R141 (at 0 0 450) (layer B.SilkS)
(effects (font (size 0.50038 0.50038) (thickness 0.10922)) (justify mirror))
)
(fp_text value 1K (at 0 0 450) (layer B.SilkS) hide
(effects (font (size 0.50038 0.50038) (thickness 0.10922)) (justify mirror))
)
(fp_circle (center -1.651 -0.762) (end -1.651 -0.635) (layer B.SilkS) (width 0.09906))
(fp_line (start -0.508 -0.762) (end -1.524 -0.762) (layer B.SilkS) (width 0.09906))
(fp_line (start -1.524 -0.762) (end -1.524 0.762) (layer B.SilkS) (width 0.09906))
(fp_line (start -1.524 0.762) (end -0.508 0.762) (layer B.SilkS) (width 0.09906))
(fp_line (start 0.508 0.762) (end 1.524 0.762) (layer B.SilkS) (width 0.09906))
(fp_line (start 1.524 0.762) (end 1.524 -0.762) (layer B.SilkS) (width 0.09906))
(fp_line (start 1.524 -0.762) (end 0.508 -0.762) (layer B.SilkS) (width 0.09906))
(pad 1 smd rect (at -0.9525 0 180) (size 0.889 1.397) (layers B.Cu B.Paste B.Mask)
(net 1 /5V))
(pad 2 smd rect (at 0.9525 0 180) (size 0.889 1.397) (layers B.Cu B.Paste B.Mask)
(net 16 "Net-(R141-Pad2)"))
(model smd/chip_cms.wrl
(at (xyz 0 0 0))
(scale (xyz 0.1 0.1 0.1))
(rotate (xyz 0 0 0))
)
)
(module SM0805 placed (layer B.Cu) (tedit 56D4E0BE) (tstamp 56D4E2B3)
(at 200.025 126.365 180)
(path /53FD4D54)
(attr smd)
(fp_text reference R801 (at 0 0 450) (layer B.SilkS)
(effects (font (size 0.50038 0.50038) (thickness 0.10922)) (justify mirror))
)
(fp_text value pdwn (at 0 0 450) (layer B.SilkS) hide
(effects (font (size 0.50038 0.50038) (thickness 0.10922)) (justify mirror))
)
(fp_circle (center -1.651 -0.762) (end -1.651 -0.635) (layer B.SilkS) (width 0.09906))
(fp_line (start -0.508 -0.762) (end -1.524 -0.762) (layer B.SilkS) (width 0.09906))
(fp_line (start -1.524 -0.762) (end -1.524 0.762) (layer B.SilkS) (width 0.09906))
(fp_line (start -1.524 0.762) (end -0.508 0.762) (layer B.SilkS) (width 0.09906))
(fp_line (start 0.508 0.762) (end 1.524 0.762) (layer B.SilkS) (width 0.09906))
(fp_line (start 1.524 0.762) (end 1.524 -0.762) (layer B.SilkS) (width 0.09906))
(fp_line (start 1.524 -0.762) (end 0.508 -0.762) (layer B.SilkS) (width 0.09906))
(pad 1 smd rect (at -0.9525 0 180) (size 0.889 1.397) (layers B.Cu B.Paste B.Mask)
(net 6 GND))
(pad 2 smd rect (at 0.9525 0 180) (size 0.889 1.397) (layers B.Cu B.Paste B.Mask)
(net 15 "Net-(R137-Pad2)"))
(model smd/chip_cms.wrl
(at (xyz 0 0 0))
(scale (xyz 0.1 0.1 0.1))
(rotate (xyz 0 0 0))
)
)
(module SM0805 placed (layer B.Cu) (tedit 56D4E0BE) (tstamp 56D4E2C0)
(at 200.025 120.015 180)
(path /53FD4DD7)
(attr smd)
(fp_text reference R802 (at 0 0 450) (layer B.SilkS)
(effects (font (size 0.50038 0.50038) (thickness 0.10922)) (justify mirror))
)
(fp_text value pdwn (at 0 0 450) (layer B.SilkS) hide
(effects (font (size 0.50038 0.50038) (thickness 0.10922)) (justify mirror))
)
(fp_circle (center -1.651 -0.762) (end -1.651 -0.635) (layer B.SilkS) (width 0.09906))
(fp_line (start -0.508 -0.762) (end -1.524 -0.762) (layer B.SilkS) (width 0.09906))
(fp_line (start -1.524 -0.762) (end -1.524 0.762) (layer B.SilkS) (width 0.09906))
(fp_line (start -1.524 0.762) (end -0.508 0.762) (layer B.SilkS) (width 0.09906))
(fp_line (start 0.508 0.762) (end 1.524 0.762) (layer B.SilkS) (width 0.09906))
(fp_line (start 1.524 0.762) (end 1.524 -0.762) (layer B.SilkS) (width 0.09906))
(fp_line (start 1.524 -0.762) (end 0.508 -0.762) (layer B.SilkS) (width 0.09906))
(pad 1 smd rect (at -0.9525 0 180) (size 0.889 1.397) (layers B.Cu B.Paste B.Mask)
(net 6 GND))
(pad 2 smd rect (at 0.9525 0 180) (size 0.889 1.397) (layers B.Cu B.Paste B.Mask)
(net 16 "Net-(R141-Pad2)"))
(model smd/chip_cms.wrl
(at (xyz 0 0 0))
(scale (xyz 0.1 0.1 0.1))
(rotate (xyz 0 0 0))
)
)
(module LED_0805 (layer F.Cu) (tedit 5C15231D) (tstamp 56D4E40C)
(at 217.17 121.285 270)
(descr "LED 0805 smd package")
(tags "LED 0805 SMD")
(path /5523B6C7)
(attr smd)
(fp_text reference DCO2 (at 0 -1.27 270) (layer F.SilkS)
(effects (font (size 0.508 0.508) (thickness 0.10922)))
)
(fp_text value LED-red (at 0 1.75 270) (layer F.Fab) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -1.6 0.75) (end 1.1 0.75) (layer F.SilkS) (width 0.15))
(fp_line (start -1.6 -0.75) (end 1.1 -0.75) (layer F.SilkS) (width 0.15))
(fp_line (start -0.1 0.15) (end -0.1 -0.1) (layer F.SilkS) (width 0.15))
(fp_line (start -0.1 -0.1) (end -0.25 0.05) (layer F.SilkS) (width 0.15))
(fp_line (start -0.35 -0.35) (end -0.35 0.35) (layer F.SilkS) (width 0.15))
(fp_line (start 0 0) (end 0.35 0) (layer F.SilkS) (width 0.15))
(fp_line (start -0.35 0) (end 0 -0.35) (layer F.SilkS) (width 0.15))
(fp_line (start 0 -0.35) (end 0 0.35) (layer F.SilkS) (width 0.15))
(fp_line (start 0 0.35) (end -0.35 0) (layer F.SilkS) (width 0.15))
(fp_line (start 1.9 -0.95) (end 1.9 0.95) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.9 0.95) (end -1.9 0.95) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.9 0.95) (end -1.9 -0.95) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.9 -0.95) (end 1.9 -0.95) (layer F.CrtYd) (width 0.05))
(pad 2 smd rect (at 1.04902 0 90) (size 1.19888 1.19888) (layers F.Cu F.Paste F.Mask)
(net 1 /5V))
(pad 1 smd rect (at -1.04902 0 90) (size 1.19888 1.19888) (layers F.Cu F.Paste F.Mask)
(net 20 "Net-(DCO2-Pad1)"))
(model LEDs.3dshapes/LED_0805.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module SM0805 placed (layer B.Cu) (tedit 56D4E0BE) (tstamp 56D4E560)
(at 196.215 124.46)
(path /50CE3DD7)
(attr smd)
(fp_text reference W1002 (at 0 0 270) (layer B.SilkS)
(effects (font (size 0.50038 0.50038) (thickness 0.10922)) (justify mirror))
)
(fp_text value JMP (at 0 0 270) (layer B.SilkS) hide
(effects (font (size 0.50038 0.50038) (thickness 0.10922)) (justify mirror))
)
(fp_circle (center -1.651 -0.762) (end -1.651 -0.635) (layer B.SilkS) (width 0.09906))
(fp_line (start -0.508 -0.762) (end -1.524 -0.762) (layer B.SilkS) (width 0.09906))
(fp_line (start -1.524 -0.762) (end -1.524 0.762) (layer B.SilkS) (width 0.09906))
(fp_line (start -1.524 0.762) (end -0.508 0.762) (layer B.SilkS) (width 0.09906))
(fp_line (start 0.508 0.762) (end 1.524 0.762) (layer B.SilkS) (width 0.09906))
(fp_line (start 1.524 0.762) (end 1.524 -0.762) (layer B.SilkS) (width 0.09906))
(fp_line (start 1.524 -0.762) (end 0.508 -0.762) (layer B.SilkS) (width 0.09906))
(pad 1 smd rect (at -0.9525 0) (size 0.889 1.397) (layers B.Cu B.Paste B.Mask)
(net 5 /CRK2-))
(pad 2 smd rect (at 0.9525 0) (size 0.889 1.397) (layers B.Cu B.Paste B.Mask)
(net 15 "Net-(R137-Pad2)"))
(model smd/chip_cms.wrl
(at (xyz 0 0 0))
(scale (xyz 0.1 0.1 0.1))
(rotate (xyz 0 0 0))
)
)
(module SM0805 placed (layer B.Cu) (tedit 56D4E0BE) (tstamp 56D4E56D)
(at 196.215 121.92)
(path /50CE3E18)
(attr smd)
(fp_text reference W1003 (at 0 0 270) (layer B.SilkS)
(effects (font (size 0.50038 0.50038) (thickness 0.10922)) (justify mirror))
)
(fp_text value JMP (at 0 0 270) (layer B.SilkS) hide
(effects (font (size 0.50038 0.50038) (thickness 0.10922)) (justify mirror))