-
Notifications
You must be signed in to change notification settings - Fork 1
/
BatteryTester.kicad_pcb
1257 lines (1225 loc) · 97.2 KB
/
BatteryTester.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 20211014) (generator pcbnew)
(general
(thickness 1.6)
)
(paper "A4")
(title_block
(title "Battery tester")
(date "2016-05-25")
(company "http://www.designer2k2.at")
)
(layers
(0 "F.Cu" signal)
(31 "B.Cu" signal)
(32 "B.Adhes" user "B.Adhesive")
(33 "F.Adhes" user "F.Adhesive")
(34 "B.Paste" user)
(35 "F.Paste" user)
(36 "B.SilkS" user "B.Silkscreen")
(37 "F.SilkS" user "F.Silkscreen")
(38 "B.Mask" user)
(39 "F.Mask" user)
(40 "Dwgs.User" user "User.Drawings")
(41 "Cmts.User" user "User.Comments")
(42 "Eco1.User" user "User.Eco1")
(43 "Eco2.User" user "User.Eco2")
(44 "Edge.Cuts" user)
(45 "Margin" user)
(46 "B.CrtYd" user "B.Courtyard")
(47 "F.CrtYd" user "F.Courtyard")
(48 "B.Fab" user)
(49 "F.Fab" user)
)
(setup
(pad_to_mask_clearance 0)
(aux_axis_origin 148.59 104.14)
(pcbplotparams
(layerselection 0x00010f0_ffffffff)
(disableapertmacros false)
(usegerberextensions true)
(usegerberattributes true)
(usegerberadvancedattributes true)
(creategerberjobfile true)
(svguseinch false)
(svgprecision 6)
(excludeedgelayer true)
(plotframeref false)
(viasonmask false)
(mode 1)
(useauxorigin false)
(hpglpennumber 1)
(hpglpenspeed 20)
(hpglpendiameter 15.000000)
(dxfpolygonmode true)
(dxfimperialunits true)
(dxfusepcbnewfont true)
(psnegative false)
(psa4output false)
(plotreference true)
(plotvalue true)
(plotinvisibletext false)
(sketchpadsonfab false)
(subtractmaskfromsilk false)
(outputformat 1)
(mirror false)
(drillshape 0)
(scaleselection 1)
(outputdirectory "gerber/")
)
)
(net 0 "")
(net 1 "+5V")
(net 2 "GND")
(net 3 "Net-(P1-Pad1)")
(net 4 "Net-(Q1-PadG)")
(net 5 "Net-(Q1-PadD)")
(net 6 "Net-(Q2-PadG)")
(net 7 "Net-(Q2-PadD)")
(net 8 "Net-(Q3-PadG)")
(net 9 "Net-(Q3-PadD)")
(net 10 "Net-(Q4-PadG)")
(net 11 "Net-(Q4-PadD)")
(net 12 "Net-(SHIELD1-PadAD5)")
(net 13 "Net-(SHIELD1-PadAD4)")
(net 14 "Net-(SHIELD1-PadAD3)")
(net 15 "Net-(SHIELD1-PadV_IN)")
(net 16 "Net-(SHIELD1-Pad3V3)")
(net 17 "Net-(SHIELD1-PadRST)")
(net 18 "Net-(SHIELD1-Pad0)")
(net 19 "Net-(SHIELD1-Pad1)")
(net 20 "Net-(SHIELD1-Pad2)")
(net 21 "Net-(SHIELD1-Pad3)")
(net 22 "Net-(SHIELD1-Pad8)")
(net 23 "Net-(SHIELD1-Pad9)")
(net 24 "Net-(SHIELD1-Pad10)")
(net 25 "Net-(SHIELD1-Pad11)")
(net 26 "Net-(SHIELD1-Pad12)")
(net 27 "Net-(SHIELD1-Pad13)")
(net 28 "Net-(SHIELD1-PadGND3)")
(net 29 "Net-(SHIELD1-PadAREF)")
(net 30 "Net-(SHIELD1-PadSDA)")
(net 31 "Net-(SHIELD1-PadSCL)")
(net 32 "Net-(SHIELD1-PadIO_R)")
(net 33 "Net-(SHIELD1-PadNC)")
(net 34 "Net-(SHIELD1-PadSP1)")
(net 35 "Net-(SHIELD1-PadSP2)")
(net 36 "Net-(SHIELD1-PadSP3)")
(net 37 "Net-(SHIELD1-PadSP4)")
(net 38 "Net-(SHIELD1-PadSP5)")
(net 39 "Net-(SHIELD1-PadSP6)")
(net 40 "Net-(D1-Pad1)")
(net 41 "Net-(D3-Pad1)")
(net 42 "Net-(D2-Pad1)")
(net 43 "Net-(P2-Pad2)")
(net 44 "Net-(P2-Pad3)")
(footprint "Diodes_ThroughHole:Diode_DO-41_SOD81_Horizontal_RM10" (layer "F.Cu")
(tedit 574F0F03) (tstamp 00000000-0000-0000-0000-000054d52003)
(at 166.37 96.52 180)
(descr "Diode, DO-41, SOD81, Horizontal, RM 10mm,")
(tags "Diode, DO-41, SOD81, Horizontal, RM 10mm, 1N4007, SB140,")
(path "/00000000-0000-0000-0000-000054d14562")
(attr through_hole)
(fp_text reference "D1" (at 2.54 -2.54 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b14726f4-fcbc-4ed2-a133-1988f334ac7a)
)
(fp_text value "DIODE" (at -1.016 -3.556 180) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp fd884c67-d4d3-4bad-a83b-a6fd89b90c43)
)
(fp_line (start 2.54 -1.27) (end 1.27 1.27) (layer "F.SilkS") (width 0.15) (tstamp 05538223-4bec-45aa-97c3-ae7737794734))
(fp_line (start -2.54 1.27) (end 2.54 1.27) (layer "F.SilkS") (width 0.15) (tstamp 0d21ae12-d29f-46a5-9210-6066ad2f8724))
(fp_line (start 2.032 -1.27) (end 2.032 1.27) (layer "F.SilkS") (width 0.15) (tstamp 0d9cbbd5-48f7-4675-943e-9a0ec1d17a87))
(fp_line (start 2.54 -1.27) (end -2.54 -1.27) (layer "F.SilkS") (width 0.15) (tstamp 1497d822-4a68-459d-82e0-b8af90ec7c3a))
(fp_line (start 2.286 0) (end 3.556 0) (layer "F.SilkS") (width 0.15) (tstamp 1abebe20-5cad-4093-b2ff-9ed196e9d9bc))
(fp_line (start 2.54 1.27) (end 2.54 -1.27) (layer "F.SilkS") (width 0.15) (tstamp 22ae6690-5800-4caa-a0e6-7b8ca1d2ec63))
(fp_line (start -2.54 -1.27) (end -2.54 1.27) (layer "F.SilkS") (width 0.15) (tstamp 3e72baec-f64f-4ec0-aa06-2d13644c307d))
(fp_line (start 1.905 -1.27) (end 1.905 1.27) (layer "F.SilkS") (width 0.15) (tstamp 484e873c-ca9b-4b81-9e15-a307b82faeb9))
(fp_line (start -2.54 0) (end -3.556 0) (layer "F.SilkS") (width 0.15) (tstamp 6b35541b-6a3f-4bcb-8f59-cfd8bf8e6c49))
(fp_line (start 1.27 -1.27) (end 1.27 1.27) (layer "F.SilkS") (width 0.15) (tstamp c733cd69-8492-4fb2-b232-eb09958041aa))
(fp_line (start 1.27 -1.27) (end 2.54 1.27) (layer "F.SilkS") (width 0.15) (tstamp ce625f18-ddea-46ab-b25b-dd0f3de3d485))
(fp_line (start 1.778 -1.27) (end 1.778 1.27) (layer "F.SilkS") (width 0.15) (tstamp db9479c2-6fe6-4b9c-94fd-7df277acaf7d))
(fp_line (start 2.286 -1.27) (end 2.286 1.27) (layer "F.SilkS") (width 0.15) (tstamp e4911bbd-b3c7-49d1-9335-1e100006b3be))
(fp_line (start 1.524 -1.27) (end 1.524 1.27) (layer "F.SilkS") (width 0.15) (tstamp f8e1860e-ae77-4c9c-8737-6180c9e53459))
(pad "1" thru_hole circle locked (at -5.08 0 180) (size 1.99898 1.99898) (drill 1.27) (layers *.Cu *.Mask "F.SilkS")
(net 40 "Net-(D1-Pad1)") (tstamp 9915359a-24c3-4d2b-8eb2-303343ddcc73))
(pad "2" thru_hole rect locked (at 5.08 0 180) (size 1.99898 1.99898) (drill 1.00076) (layers *.Cu *.Mask "F.SilkS")
(net 1 "+5V") (tstamp fc86065c-5bb2-48ed-b032-84866bdd2244))
)
(footprint "Terminal_Blocks:TerminalBlock_WAGO-804_RM5mm_2pol" (layer "F.Cu")
(tedit 574F1D10) (tstamp 00000000-0000-0000-0000-000054d5200b)
(at 154.94 58.42 -90)
(path "/00000000-0000-0000-0000-000054d12a9b")
(attr through_hole)
(fp_text reference "P1" (at -3.81 -6.35 -90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 093e65f6-20b5-4195-8d7d-f1a70d0cb643)
)
(fp_text value "CONN_01X02" (at 0 8 -90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 35a4c896-d235-4a2e-bb29-d53b7a835496)
)
(fp_line (start 8.74904 -8.30072) (end 3.75032 -8.30072) (layer "F.SilkS") (width 0.15) (tstamp 01742d23-39d8-4d92-a870-3faa8649318c))
(fp_line (start 4.1999 -2.19964) (end 8.2004 -2.19964) (layer "F.SilkS") (width 0.15) (tstamp 0f4a58af-7965-4b8b-be09-32e118fa83c3))
(fp_line (start -1.24968 6.70052) (end -1.24968 -8.30072) (layer "F.SilkS") (width 0.15) (tstamp 0ff1e7f5-a02b-409f-a687-5a9115701f44))
(fp_line (start -1.24968 5.19938) (end -0.7493 5.19938) (layer "F.SilkS") (width 0.15) (tstamp 14cf4fce-2c7e-4477-9e0f-51e66b381e30))
(fp_line (start -0.8001 -2.19964) (end -0.8001 -1.6002) (layer "F.SilkS") (width 0.15) (tstamp 15515315-3fe0-4f48-b9b7-ef9234f063e7))
(fp_line (start 8.74904 6.70052) (end 3.75032 6.70052) (layer "F.SilkS") (width 0.15) (tstamp 1f380cf6-dce3-4680-b374-1154620efcdb))
(fp_line (start 3.74904 -8.30072) (end 3.74904 6.70052) (layer "F.SilkS") (width 0.15) (tstamp 2c8ccff8-811f-454d-bf39-10c9d9984a73))
(fp_line (start 3.2004 -2.19964) (end 3.2004 2.19964) (layer "F.SilkS") (width 0.15) (tstamp 2e645b0a-97ef-4070-a2a9-9611d8152a2f))
(fp_line (start 8.2004 -0.39878) (end 6.80086 -0.39878) (layer "F.SilkS") (width 0.15) (tstamp 3f1cab14-e129-4cfc-aab1-27caa301e354))
(fp_line (start 3.75032 5.19938) (end 4.2507 5.19938) (layer "F.SilkS") (width 0.15) (tstamp 4c83fb8d-f84c-465e-a3b1-481b05508ba3))
(fp_line (start 8.2004 2.19964) (end 4.1999 2.19964) (layer "F.SilkS") (width 0.15) (tstamp 4e11af07-302c-4a4c-b503-7d427560006f))
(fp_line (start 8.2004 -2.19964) (end 8.2004 2.19964) (layer "F.SilkS") (width 0.15) (tstamp 58994af4-a303-467c-a9fe-24e551f1b3de))
(fp_line (start -0.8001 -2.19964) (end 3.2004 -2.19964) (layer "F.SilkS") (width 0.15) (tstamp 5c79ac91-77c4-433f-86da-f36317c4a996))
(fp_line (start 3.74904 -8.30072) (end -1.24968 -8.30072) (layer "F.SilkS") (width 0.15) (tstamp 60511429-17f4-4615-9982-8b8351f3886a))
(fp_line (start 3.74904 5.19938) (end 3.2512 5.19938) (layer "F.SilkS") (width 0.15) (tstamp 63daab8b-b943-42cb-b5c6-d671c1ed5f95))
(fp_line (start -2.75 6.7) (end -2.75 -8.3) (layer "F.SilkS") (width 0.15) (tstamp 649576c6-c735-4b58-950d-a96cb6caeaf6))
(fp_line (start 8.74904 -8.30072) (end 8.74904 6.70052) (layer "F.SilkS") (width 0.15) (tstamp 6bb3760c-9ed2-47f2-bb1e-64a223ffbb4e))
(fp_line (start 8.2004 0.39878) (end 6.80086 0.39878) (layer "F.SilkS") (width 0.15) (tstamp 7f5201f3-e84b-4fca-8c28-5883122960ba))
(fp_line (start 3.75 3.8) (end -2.75 3.8) (layer "F.SilkS") (width 0.15) (tstamp 806ad081-13c1-4fc8-9323-6b8f25f6ba4b))
(fp_line (start 4.1999 -2.19964) (end 4.1999 -1.6002) (layer "F.SilkS") (width 0.15) (tstamp 807cd634-ca9c-4ad4-9141-609218bd702d))
(fp_line (start -2.75 -8.3) (end -1.25 -8.3) (layer "F.SilkS") (width 0.15) (tstamp 864e7674-6403-4349-a36f-01c70622025a))
(fp_line (start -0.8001 2.19964) (end -0.8001 1.6002) (layer "F.SilkS") (width 0.15) (tstamp 8a359bb7-ea80-4a70-8ce7-2e72238bd581))
(fp_line (start -1.25 6.7) (end -2.75 6.7) (layer "F.SilkS") (width 0.15) (tstamp 8dab813b-d4e3-4716-83bd-cea7d7be2b2b))
(fp_line (start 3.2004 0.39878) (end 1.80086 0.39878) (layer "F.SilkS") (width 0.15) (tstamp 8fa7c8c0-b6f0-4a79-9475-010e1b2d5063))
(fp_line (start 3.74904 6.70052) (end -1.24968 6.70052) (layer "F.SilkS") (width 0.15) (tstamp a0d9296c-62da-4024-9620-a51d5283d540))
(fp_line (start 8.74904 5.19938) (end 8.2512 5.19938) (layer "F.SilkS") (width 0.15) (tstamp a9bb3cc8-cac4-468b-97cd-7a061b3006a4))
(fp_line (start 3.75 3.8) (end 8.75 3.8) (layer "F.SilkS") (width 0.15) (tstamp acb9726a-3f1c-4082-869e-1e570ed1f1e8))
(fp_line (start 4.1999 2.19964) (end 4.1999 1.6002) (layer "F.SilkS") (width 0.15) (tstamp b4d5537d-158c-4d54-8b79-ae3b8934f923))
(fp_line (start 3.2004 2.19964) (end -0.8001 2.19964) (layer "F.SilkS") (width 0.15) (tstamp e233ecbf-c942-4585-9e43-a1cb32487950))
(fp_line (start 3.2004 -0.39878) (end 1.80086 -0.39878) (layer "F.SilkS") (width 0.15) (tstamp fbd976b7-43b5-4830-9353-96eff2a864c5))
(fp_arc (start 2.40284 4.59994) (mid 2.650392 5.201176) (end 2.4003 5.80136) (layer "F.SilkS") (width 0.15) (tstamp 07c6b959-c577-40ef-a772-494e78b5c811))
(fp_arc (start 5.8509 -4.50088) (mid 5.093801 -5.26898) (end 5.1016 -6.34746) (layer "F.SilkS") (width 0.15) (tstamp 0b5d73d9-687a-4241-86b1-a2cb171a7702))
(fp_arc (start 7.40284 4.59994) (mid 7.650392 5.201176) (end 7.4003 5.80136) (layer "F.SilkS") (width 0.15) (tstamp 0fa9ef82-51fb-4cb5-bcd2-944d5120506d))
(fp_arc (start 0 4.60248) (mid 1.19888 4.105888) (end 2.39776 4.60248) (layer "F.SilkS") (width 0.15) (tstamp 11d303e7-9658-490c-9995-47a3fd261d2d))
(fp_arc (start 7.60096 5.40004) (mid 6.200676 5.981545) (end 4.79934 5.40258) (layer "F.SilkS") (width 0.15) (tstamp 18d60868-6f2d-4e3a-ac1b-d4a53193f811))
(fp_arc (start 5 5.79882) (mid 4.751704 5.19938) (end 5 4.59994) (layer "F.SilkS") (width 0.15) (tstamp 18f4b890-fd90-4e4f-91c0-610fcb842c10))
(fp_arc (start 0 5.79882) (mid -0.248296 5.19938) (end 0 4.59994) (layer "F.SilkS") (width 0.15) (tstamp 277122d5-acc5-403d-bfcc-d054da17dbab))
(fp_arc (start 7.4003 5.79882) (mid 6.200676 6.297208) (end 5 5.80136) (layer "F.SilkS") (width 0.15) (tstamp 479c23a5-e5e1-4cc2-ab31-9dff8dac9e18))
(fp_arc (start 0.8509 -4.50088) (mid 0.093801 -5.26898) (end 0.1016 -6.34746) (layer "F.SilkS") (width 0.15) (tstamp 5aa288d5-475e-4c57-a96d-ab931d78988c))
(fp_arc (start 0.39878 -4.8006) (mid -0.013952 -5.800616) (end 0.40132 -6.79958) (layer "F.SilkS") (width 0.15) (tstamp 5ea867e6-e136-48be-864a-ce1bdf7e1901))
(fp_arc (start 5.39878 -4.8006) (mid 4.986048 -5.800616) (end 5.40132 -6.79958) (layer "F.SilkS") (width 0.15) (tstamp 6a9828e2-717d-443b-a63c-83da135a6d23))
(fp_arc (start 2.4003 5.79882) (mid 1.200676 6.297208) (end 0 5.80136) (layer "F.SilkS") (width 0.15) (tstamp 7df22b34-0ded-4e99-96d9-9d69e162e239))
(fp_arc (start 2.60096 5.40004) (mid 1.200676 5.981545) (end -0.20066 5.40258) (layer "F.SilkS") (width 0.15) (tstamp 94690f59-fea1-4e62-a71d-b4116bbdc0d7))
(fp_arc (start 5.39878 -6.79958) (mid 6.39954 -7.214108) (end 7.4003 -6.79958) (layer "F.SilkS") (width 0.15) (tstamp bc432601-7d2e-4df8-ac38-1bdd28ed6dee))
(fp_arc (start 5 4.60248) (mid 6.19888 4.105888) (end 7.39776 4.60248) (layer "F.SilkS") (width 0.15) (tstamp fd9e0a5d-7807-4b59-9e12-cb80a2b4f5c3))
(fp_arc (start 0.39878 -6.79958) (mid 1.39954 -7.214108) (end 2.4003 -6.79958) (layer "F.SilkS") (width 0.15) (tstamp fe35d2e4-ac20-48c9-8721-3fb139ec4d16))
(pad "1" thru_hole circle locked (at 2.49936 -5.00126 270) (size 3 3) (drill 1.2) (layers *.Cu *.Mask "F.SilkS")
(net 3 "Net-(P1-Pad1)") (tstamp 2a1593df-1c48-41dd-a682-5625e10f2d7e))
(pad "1" thru_hole circle locked (at 0 0 270) (size 3 3) (drill 1.2) (layers *.Cu *.Mask "F.SilkS")
(net 3 "Net-(P1-Pad1)") (tstamp a14cf9f5-6d0f-4480-8e29-f0cd68882e9d))
(pad "2" thru_hole circle locked (at 7.49936 -5.00126 270) (size 3 3) (drill 1.2) (layers *.Cu *.Mask "F.SilkS")
(net 2 "GND") (tstamp 3136ca32-1aa5-43c8-8b0c-b04fc7cbae7f))
(pad "2" thru_hole circle locked (at 5 0 270) (size 3 3) (drill 1.2) (layers *.Cu *.Mask "F.SilkS")
(net 2 "GND") (tstamp e596b3a5-61cd-4a2a-80bc-13aeaf170428))
)
(footprint "Transistors_TO-220:TO-220_FET-GDS_Vertical" (layer "F.Cu")
(tedit 574F0EE4) (tstamp 00000000-0000-0000-0000-000054d52012)
(at 168.91 69.85)
(descr "TO-220, FET-GDS, Vertical,")
(tags "TO-220, FET-GDS, Vertical,")
(path "/00000000-0000-0000-0000-000054d12510")
(attr through_hole)
(fp_text reference "Q1" (at 0 -5.08) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 54ac7006-c7b4-480c-83bd-7d0973bcb900)
)
(fp_text value "MOSFET_N" (at 0 3.81) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 13ca2435-9687-42bb-ac20-809ad59eb5cf)
)
(fp_text user "S" (at 1.397 -1.27) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 395266ca-e91e-46ab-b7e6-e42d923f01e8)
)
(fp_text user "D" (at -1.143 -1.27) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp bb931405-cac0-40dd-9717-39b28b3a4470)
)
(fp_text user "G" (at -3.81 -1.27) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c84596bc-86f9-4bd3-b830-67df251f9118)
)
(fp_line (start -5.334 1.778) (end -5.334 -1.905) (layer "F.SilkS") (width 0.15) (tstamp 019d63ac-0181-4730-9b5a-ca1c17509d28))
(fp_line (start -1.524 -3.048) (end -1.524 -1.905) (layer "F.SilkS") (width 0.15) (tstamp 0f53772c-2983-4756-b74d-5ef0151c3ff5))
(fp_line (start 5.334 -1.905) (end 5.334 1.778) (layer "F.SilkS") (width 0.15) (tstamp 135f7598-eeee-4fcd-b592-93295a51046c))
(fp_line (start 5.334 1.778) (end -5.334 1.778) (layer "F.SilkS") (width 0.15) (tstamp 208cd888-8263-4990-abd7-39523c1fd9ff))
(fp_line (start 5.334 -1.905) (end -5.334 -1.905) (layer "F.SilkS") (width 0.15) (tstamp 3ca7ee26-e3d6-4fd9-b318-8aea3c2285d7))
(fp_line (start 1.524 -3.048) (end 1.524 -1.905) (layer "F.SilkS") (width 0.15) (tstamp 70d7cb44-7957-4da0-8537-917386fb806b))
(fp_line (start 0 -3.048) (end -5.334 -3.048) (layer "F.SilkS") (width 0.15) (tstamp 859fba4d-c421-4bdc-95e0-926b45d378b0))
(fp_line (start 5.334 -3.048) (end 5.334 -1.905) (layer "F.SilkS") (width 0.15) (tstamp 8971b6b2-7eff-46a4-bee2-83e12c5c07ca))
(fp_line (start 0 -3.048) (end 5.334 -3.048) (layer "F.SilkS") (width 0.15) (tstamp a00b95c1-8b64-472d-848d-217c25fa36ef))
(fp_line (start -5.334 -1.905) (end -5.334 -3.048) (layer "F.SilkS") (width 0.15) (tstamp abac8b9a-d1f9-49af-8bf0-d408d9709bd1))
(pad "D" thru_hole oval locked (at 0 0 90) (size 2.49936 1.50114) (drill 1.00076) (layers *.Cu *.Mask "F.SilkS")
(net 5 "Net-(Q1-PadD)") (tstamp e0954ca4-0144-49e2-bbd5-ae432af7707b))
(pad "G" thru_hole oval locked (at -2.54 0 90) (size 2.49936 1.50114) (drill 1.00076) (layers *.Cu *.Mask "F.SilkS")
(net 4 "Net-(Q1-PadG)") (tstamp f4b047d5-3048-4599-a860-df3953526607))
(pad "S" thru_hole oval locked (at 2.54 0 90) (size 2.49936 1.50114) (drill 1.00076) (layers *.Cu *.Mask "F.SilkS")
(net 2 "GND") (tstamp 896d0f4b-bb51-4a43-b0b4-1909a4f4d80c))
(model "Transistors_TO-220/TO-220_FET-GDS_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 0.3937 0.3937 0.3937))
(rotate (xyz 0 0 0))
)
)
(footprint "Transistors_TO-220:TO-220_FET-GDS_Vertical" (layer "F.Cu")
(tedit 574F0D81) (tstamp 00000000-0000-0000-0000-000054d52019)
(at 180.34 69.85)
(descr "TO-220, FET-GDS, Vertical,")
(tags "TO-220, FET-GDS, Vertical,")
(path "/00000000-0000-0000-0000-000054d1253f")
(attr through_hole)
(fp_text reference "Q2" (at 0 -5.08) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 09d79b40-19b3-462e-9556-ba83b96c4253)
)
(fp_text value "MOSFET_N" (at 0 3.81) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 29b930af-f0f0-4eac-8dad-718de637aa66)
)
(fp_text user "S" (at 1.397 -1.27) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 778a574a-08fd-4701-a495-a72032db2615)
)
(fp_text user "D" (at -1.143 -1.27) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 790590d3-e123-42e1-b3d2-66efa4a1af6b)
)
(fp_text user "G" (at -3.81 -1.27) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp fcd63151-fc5b-4cab-a0d0-06d84669ee29)
)
(fp_line (start -1.524 -3.048) (end -1.524 -1.905) (layer "F.SilkS") (width 0.15) (tstamp 4051fb17-2b9c-4345-bc98-4896a135bf5b))
(fp_line (start -5.334 1.778) (end -5.334 -1.905) (layer "F.SilkS") (width 0.15) (tstamp 5fc36f73-4301-4f46-a97a-13fca5e8b767))
(fp_line (start 5.334 -1.905) (end 5.334 1.778) (layer "F.SilkS") (width 0.15) (tstamp 6677275e-9d0a-4756-8c7e-6d0bffbc4bbe))
(fp_line (start 5.334 -1.905) (end -5.334 -1.905) (layer "F.SilkS") (width 0.15) (tstamp 81db850e-9deb-410f-b43a-949eeb9004fa))
(fp_line (start -5.334 -1.905) (end -5.334 -3.048) (layer "F.SilkS") (width 0.15) (tstamp 90c40d47-48b3-4cba-879d-2c723782d7f9))
(fp_line (start 1.524 -3.048) (end 1.524 -1.905) (layer "F.SilkS") (width 0.15) (tstamp adead86e-09ed-4115-99db-c8c6dbfc761e))
(fp_line (start 5.334 1.778) (end -5.334 1.778) (layer "F.SilkS") (width 0.15) (tstamp bd05be85-b96a-405f-a070-857b58b63411))
(fp_line (start 0 -3.048) (end 5.334 -3.048) (layer "F.SilkS") (width 0.15) (tstamp da75c5d6-b139-4b29-ac47-83ffac30115a))
(fp_line (start 0 -3.048) (end -5.334 -3.048) (layer "F.SilkS") (width 0.15) (tstamp deaca560-d592-4212-a797-b0a74441774c))
(fp_line (start 5.334 -3.048) (end 5.334 -1.905) (layer "F.SilkS") (width 0.15) (tstamp fe2732a7-a376-4a01-ba40-ca4609e1832a))
(pad "D" thru_hole oval locked (at 0 0 90) (size 2.49936 1.50114) (drill 1.00076) (layers *.Cu *.Mask "F.SilkS")
(net 7 "Net-(Q2-PadD)") (tstamp f27d006d-41d9-4fe9-83c7-c487e782188e))
(pad "G" thru_hole oval locked (at -2.54 0 90) (size 2.49936 1.50114) (drill 1.00076) (layers *.Cu *.Mask "F.SilkS")
(net 6 "Net-(Q2-PadG)") (tstamp b9518a3d-b31e-4b93-9373-cf9abed5bc5f))
(pad "S" thru_hole oval locked (at 2.54 0 90) (size 2.49936 1.50114) (drill 1.00076) (layers *.Cu *.Mask "F.SilkS")
(net 2 "GND") (tstamp f3cc96dc-195d-4215-999f-c3382145be8f))
(model "Transistors_TO-220/TO-220_FET-GDS_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 0.3937 0.3937 0.3937))
(rotate (xyz 0 0 0))
)
)
(footprint "Transistors_TO-220:TO-220_FET-GDS_Vertical" (layer "F.Cu")
(tedit 54D51FBF) (tstamp 00000000-0000-0000-0000-000054d52020)
(at 191.77 69.85)
(descr "TO-220, FET-GDS, Vertical,")
(tags "TO-220, FET-GDS, Vertical,")
(path "/00000000-0000-0000-0000-000054d1258e")
(attr through_hole)
(fp_text reference "Q3" (at 0 -5.08) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f6456b6b-4f80-4845-9469-46bdbd2762b4)
)
(fp_text value "MOSFET_N" (at 0 3.81) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c660b8f3-c37b-459a-91a6-d696ffb23249)
)
(fp_text user "D" (at -1.143 -1.27) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 124ab649-6ede-4063-a5f4-4e1722138a8f)
)
(fp_text user "S" (at 1.397 -1.27) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 544da528-6cf3-41d4-a002-c9447567da12)
)
(fp_text user "G" (at -3.81 -1.27) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 969bcaaf-bad0-4e8a-b1fc-3e5e48fa44d9)
)
(fp_line (start 5.334 -1.905) (end 5.334 1.778) (layer "F.SilkS") (width 0.15) (tstamp 19f72514-cb5f-4302-b248-0366084cdfb9))
(fp_line (start 5.334 -3.048) (end 5.334 -1.905) (layer "F.SilkS") (width 0.15) (tstamp 20d149cd-f623-4232-92f2-c460df244fa5))
(fp_line (start 1.524 -3.048) (end 1.524 -1.905) (layer "F.SilkS") (width 0.15) (tstamp 4f49a915-4078-4cb8-b47e-b3172318d150))
(fp_line (start 0 -3.048) (end -5.334 -3.048) (layer "F.SilkS") (width 0.15) (tstamp 60efb059-a00a-4492-97b9-2a6948b76762))
(fp_line (start 5.334 -1.905) (end -5.334 -1.905) (layer "F.SilkS") (width 0.15) (tstamp 6eb9c4e1-f887-4e18-94d1-2df3e6aaa5b9))
(fp_line (start -5.334 1.778) (end -5.334 -1.905) (layer "F.SilkS") (width 0.15) (tstamp 83a9f3c8-a61f-4296-97f3-6aa3f05b7c1e))
(fp_line (start -5.334 -1.905) (end -5.334 -3.048) (layer "F.SilkS") (width 0.15) (tstamp 9cb7265a-d78b-40c1-96f2-7b642841e145))
(fp_line (start -1.524 -3.048) (end -1.524 -1.905) (layer "F.SilkS") (width 0.15) (tstamp a10f95a1-79ac-4546-a8c8-9ef40adbed02))
(fp_line (start 0 -3.048) (end 5.334 -3.048) (layer "F.SilkS") (width 0.15) (tstamp c4d843b6-9d93-438f-bddd-abc3e2f620b8))
(fp_line (start 5.334 1.778) (end -5.334 1.778) (layer "F.SilkS") (width 0.15) (tstamp eca21ef4-1040-4ae1-9863-ecdff6f6d532))
(pad "D" thru_hole oval locked (at 0 0 90) (size 2.49936 1.50114) (drill 1.00076) (layers *.Cu *.Mask "F.SilkS")
(net 9 "Net-(Q3-PadD)") (tstamp 8bf8a009-853f-4ef2-bc38-8fcfe3976946))
(pad "G" thru_hole oval locked (at -2.54 0 90) (size 2.49936 1.50114) (drill 1.00076) (layers *.Cu *.Mask "F.SilkS")
(net 8 "Net-(Q3-PadG)") (tstamp cc94a1a8-be4f-476a-be3e-e964bb0f64f9))
(pad "S" thru_hole oval locked (at 2.54 0 90) (size 2.49936 1.50114) (drill 1.00076) (layers *.Cu *.Mask "F.SilkS")
(net 2 "GND") (tstamp 18b847ad-7aef-47d2-a1c3-b19fcbf147d6))
(model "Transistors_TO-220/TO-220_FET-GDS_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 0.3937 0.3937 0.3937))
(rotate (xyz 0 0 0))
)
)
(footprint "Transistors_TO-220:TO-220_FET-GDS_Vertical" (layer "F.Cu")
(tedit 574F0F3C) (tstamp 00000000-0000-0000-0000-000054d52027)
(at 203.2 69.85)
(descr "TO-220, FET-GDS, Vertical,")
(tags "TO-220, FET-GDS, Vertical,")
(path "/00000000-0000-0000-0000-000054d125ed")
(attr through_hole)
(fp_text reference "Q4" (at 0 -5.08) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d0dd7cb7-9f8d-4d94-b757-28f065974a98)
)
(fp_text value "MOSFET_N" (at 0 3.81) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4c3e7769-beb9-4017-9124-b11d91a943bc)
)
(fp_text user "S" (at 1.397 -1.27) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2277dec7-6d4e-4abe-ae03-5cab975b0b49)
)
(fp_text user "G" (at -3.81 -1.27) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ceb9b234-0eaf-49a9-8f32-1ae861dada11)
)
(fp_text user "D" (at -1.143 -1.27) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e512e5ff-9847-468c-8766-fafbc633fa28)
)
(fp_line (start 5.334 -3.048) (end 5.334 -1.905) (layer "F.SilkS") (width 0.15) (tstamp 23fe9205-d6c8-4a74-acfb-f509b359b4cb))
(fp_line (start -1.524 -3.048) (end -1.524 -1.905) (layer "F.SilkS") (width 0.15) (tstamp 28c994c5-310c-44e7-a032-a8c1fe69c216))
(fp_line (start 5.334 -1.905) (end -5.334 -1.905) (layer "F.SilkS") (width 0.15) (tstamp 382c4462-601a-4979-a002-1a9f88673d58))
(fp_line (start 5.334 -1.905) (end 5.334 1.778) (layer "F.SilkS") (width 0.15) (tstamp 5614140f-a87c-44d2-a9ee-c5699299c2ce))
(fp_line (start -5.334 -1.905) (end -5.334 -3.048) (layer "F.SilkS") (width 0.15) (tstamp 6c645689-7fd5-48b8-b4bf-d8368e3127e5))
(fp_line (start 0 -3.048) (end -5.334 -3.048) (layer "F.SilkS") (width 0.15) (tstamp 7c3482e1-f076-4a15-ba09-2a68fdf2c7d2))
(fp_line (start 1.524 -3.048) (end 1.524 -1.905) (layer "F.SilkS") (width 0.15) (tstamp aed468a4-306e-4d95-96a1-158809fd8acb))
(fp_line (start 0 -3.048) (end 5.334 -3.048) (layer "F.SilkS") (width 0.15) (tstamp bfad836a-3b58-4b66-8a64-4d8a188d35f3))
(fp_line (start 5.334 1.778) (end -5.334 1.778) (layer "F.SilkS") (width 0.15) (tstamp ee0ed32b-02a1-4afc-bf94-5a63d220fc9c))
(fp_line (start -5.334 1.778) (end -5.334 -1.905) (layer "F.SilkS") (width 0.15) (tstamp fc9b36da-c599-4d92-a058-10ac7a318861))
(pad "D" thru_hole oval locked (at 0 0 90) (size 2.49936 1.50114) (drill 1.00076) (layers *.Cu *.Mask "F.SilkS")
(net 11 "Net-(Q4-PadD)") (tstamp bd362bae-75b6-4c21-b8e0-a39d00f11611))
(pad "G" thru_hole oval locked (at -2.54 0 90) (size 2.49936 1.50114) (drill 1.00076) (layers *.Cu *.Mask "F.SilkS")
(net 10 "Net-(Q4-PadG)") (tstamp 1d592d0e-3418-470a-a258-da762ddf960a))
(pad "S" thru_hole oval locked (at 2.54 0 90) (size 2.49936 1.50114) (drill 1.00076) (layers *.Cu *.Mask "F.SilkS")
(net 2 "GND") (tstamp 5ad49f6a-2c43-4d07-b1e0-f2e84e7d7340))
(model "Transistors_TO-220/TO-220_FET-GDS_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 0.3937 0.3937 0.3937))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistors_ThroughHole:Resistor_Cement_Vertical_LargePads_KOA-BGR-5N-7N" (layer "F.Cu")
(tedit 574F0ED9) (tstamp 00000000-0000-0000-0000-000054d522d6)
(at 168.91 81.28 90)
(descr "Resistor, Cement, Vertical, LargePads, 5W, 7W, Meggitt, KOA, BSR, BGR, BWR, 5N, 7N,")
(tags "Resistor, Cement, Vertical, 5W, 7W, Meggitt, KOA, BSR, LargePads, BGR, BWR, 5N, 7N,")
(path "/00000000-0000-0000-0000-000054cba8aa")
(attr through_hole)
(fp_text reference "R4" (at 3.81 3.81 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a2db97bc-d62c-499e-95ac-3d7343ac2b34)
)
(fp_text value "3.9" (at 0 2.54 90) (layer "Cmts.User")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 985de3e9-56e4-461d-8b11-8c758001fdb3)
)
(fp_line (start 7.00024 -5.00126) (end -7.00024 -5.00126) (layer "F.SilkS") (width 0.15) (tstamp 1e7b2bc4-5b9b-4eb2-9291-acbfacc16198))
(fp_line (start -5.00126 -5.00126) (end -5.00126 5.00126) (layer "F.SilkS") (width 0.15) (tstamp 7a9b3e6a-fe02-4262-bc24-7515d2c4b65b))
(fp_line (start -7.00024 -5.00126) (end -7.00024 5.00126) (layer "F.SilkS") (width 0.15) (tstamp a7f1e649-c2b7-4a4c-bc40-1bf4846ae52a))
(fp_line (start 7.00024 5.00126) (end 7.00024 -5.00126) (layer "F.SilkS") (width 0.15) (tstamp c48b5883-451b-43f3-881a-88bc6f167176))
(fp_line (start 5.00126 -5.00126) (end 5.00126 5.00126) (layer "F.SilkS") (width 0.15) (tstamp c8235bf3-6fc5-453f-a77f-991da1350832))
(fp_line (start -7.00024 5.00126) (end 7.00024 5.00126) (layer "F.SilkS") (width 0.15) (tstamp d2befa21-51aa-4888-b4ab-6a9f7b44d641))
(pad "1" thru_hole oval locked (at -2.49936 0 90) (size 2.99974 1.99898) (drill 1.19888 (offset -0.50038 0)) (layers *.Cu *.Mask "F.SilkS")
(net 3 "Net-(P1-Pad1)") (tstamp 599d5720-a780-467d-b93a-0836495a6747))
(pad "2" thru_hole oval locked (at 2.49936 0 270) (size 2.99974 1.99898) (drill 1.19888 (offset -0.50038 0)) (layers *.Cu *.Mask "F.SilkS")
(net 5 "Net-(Q1-PadD)") (tstamp 0a0db767-b101-466d-904e-d0465017f7ee))
)
(footprint "Resistors_ThroughHole:Resistor_Cement_Vertical_LargePads_KOA-BGR-5N-7N" (layer "F.Cu")
(tedit 574F0ECE) (tstamp 00000000-0000-0000-0000-000054d522dc)
(at 180.34 81.28 90)
(descr "Resistor, Cement, Vertical, LargePads, 5W, 7W, Meggitt, KOA, BSR, BGR, BWR, 5N, 7N,")
(tags "Resistor, Cement, Vertical, 5W, 7W, Meggitt, KOA, BSR, LargePads, BGR, BWR, 5N, 7N,")
(path "/00000000-0000-0000-0000-000054cba6f9")
(attr through_hole)
(fp_text reference "R6" (at 3.81 3.81 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4581c8bc-f07a-4e1e-b792-70a3acaaeb31)
)
(fp_text value "3.9" (at 0 2.54 90) (layer "Dwgs.User")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 13fd1a5f-0e0a-403b-9146-cde077fafb86)
)
(fp_line (start -7.00024 5.00126) (end 7.00024 5.00126) (layer "F.SilkS") (width 0.15) (tstamp 30e37f20-a71b-4153-8a48-0f999dcee2cc))
(fp_line (start 7.00024 -5.00126) (end -7.00024 -5.00126) (layer "F.SilkS") (width 0.15) (tstamp 3ea1e693-10e4-4b1d-9c47-d388394a31e1))
(fp_line (start -5.00126 -5.00126) (end -5.00126 5.00126) (layer "F.SilkS") (width 0.15) (tstamp 409f97fe-6e67-499e-aeee-1d72ff412a08))
(fp_line (start -7.00024 -5.00126) (end -7.00024 5.00126) (layer "F.SilkS") (width 0.15) (tstamp 66d6ea0f-30a3-4653-b425-7e8b2ebd29c2))
(fp_line (start 7.00024 5.00126) (end 7.00024 -5.00126) (layer "F.SilkS") (width 0.15) (tstamp b8cc0606-be2a-42e1-8baf-5065430cbd41))
(fp_line (start 5.00126 -5.00126) (end 5.00126 5.00126) (layer "F.SilkS") (width 0.15) (tstamp c880dae2-1ee5-4156-a59e-9894ed25576b))
(pad "1" thru_hole oval locked (at -2.49936 0 90) (size 2.99974 1.99898) (drill 1.19888 (offset -0.50038 0)) (layers *.Cu *.Mask "F.SilkS")
(net 3 "Net-(P1-Pad1)") (tstamp e5ca53a6-d9b7-4e36-a9fa-77cc831a65ff))
(pad "2" thru_hole oval locked (at 2.49936 0 270) (size 2.99974 1.99898) (drill 1.19888 (offset -0.50038 0)) (layers *.Cu *.Mask "F.SilkS")
(net 7 "Net-(Q2-PadD)") (tstamp afcc249e-341b-4e22-866f-e0dd37b6b4b5))
)
(footprint "Resistors_ThroughHole:Resistor_Cement_Vertical_LargePads_KOA-BGR-5N-7N" (layer "F.Cu")
(tedit 574F0EC2) (tstamp 00000000-0000-0000-0000-000054d522e2)
(at 191.77 81.28 90)
(descr "Resistor, Cement, Vertical, LargePads, 5W, 7W, Meggitt, KOA, BSR, BGR, BWR, 5N, 7N,")
(tags "Resistor, Cement, Vertical, 5W, 7W, Meggitt, KOA, BSR, LargePads, BGR, BWR, 5N, 7N,")
(path "/00000000-0000-0000-0000-000054cba74a")
(attr through_hole)
(fp_text reference "R8" (at 3.81 3.81 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3c26bb71-05c4-40f7-8c76-86a9b715716e)
)
(fp_text value "3.9" (at 0 2.54 90) (layer "Dwgs.User")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c2644dde-e42e-44c9-b367-192155cdd07b)
)
(fp_line (start -7.00024 5.00126) (end 7.00024 5.00126) (layer "F.SilkS") (width 0.15) (tstamp 208232f7-1c13-4a48-9fa4-1882a8df2af0))
(fp_line (start 5.00126 -5.00126) (end 5.00126 5.00126) (layer "F.SilkS") (width 0.15) (tstamp 36f625fd-19a0-4b8c-9ac2-4061b6f8943c))
(fp_line (start 7.00024 -5.00126) (end -7.00024 -5.00126) (layer "F.SilkS") (width 0.15) (tstamp 59311b31-319c-47ce-bada-40aa170c905d))
(fp_line (start -7.00024 -5.00126) (end -7.00024 5.00126) (layer "F.SilkS") (width 0.15) (tstamp 836f22a9-de98-4e88-b7d2-ed514551b54a))
(fp_line (start -5.00126 -5.00126) (end -5.00126 5.00126) (layer "F.SilkS") (width 0.15) (tstamp 89e52d92-41de-44d5-adbb-df0023da9480))
(fp_line (start 7.00024 5.00126) (end 7.00024 -5.00126) (layer "F.SilkS") (width 0.15) (tstamp 8c3ebd19-ae93-4f49-8bff-94474911409f))
(pad "1" thru_hole oval locked (at -2.49936 0 90) (size 2.99974 1.99898) (drill 1.19888 (offset -0.50038 0)) (layers *.Cu *.Mask "F.SilkS")
(net 3 "Net-(P1-Pad1)") (tstamp 37970189-0189-40f3-bcf8-9d53e9df144f))
(pad "2" thru_hole oval locked (at 2.49936 0 270) (size 2.99974 1.99898) (drill 1.19888 (offset -0.50038 0)) (layers *.Cu *.Mask "F.SilkS")
(net 9 "Net-(Q3-PadD)") (tstamp f3edf743-0495-4967-9fa9-32ff5d910d82))
)
(footprint "Resistors_ThroughHole:Resistor_Cement_Vertical_LargePads_KOA-BGR-5N-7N" (layer "F.Cu")
(tedit 574F0EC7) (tstamp 00000000-0000-0000-0000-000054d522e8)
(at 203.2 81.28 90)
(descr "Resistor, Cement, Vertical, LargePads, 5W, 7W, Meggitt, KOA, BSR, BGR, BWR, 5N, 7N,")
(tags "Resistor, Cement, Vertical, 5W, 7W, Meggitt, KOA, BSR, LargePads, BGR, BWR, 5N, 7N,")
(path "/00000000-0000-0000-0000-000054cba867")
(attr through_hole)
(fp_text reference "R10" (at 2.54 3.81 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6dbc7a55-320a-401d-86c2-7c3890ddd713)
)
(fp_text value "3.9" (at 0 2.54 90) (layer "Cmts.User")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 61dcdd6c-19b3-409a-bfe5-e3cfe6e6fd57)
)
(fp_line (start -7.00024 -5.00126) (end -7.00024 5.00126) (layer "F.SilkS") (width 0.15) (tstamp 2e7f5414-5323-4da0-b8ea-18d031300d08))
(fp_line (start 5.00126 -5.00126) (end 5.00126 5.00126) (layer "F.SilkS") (width 0.15) (tstamp 681e9d82-9497-4ee1-9221-b0410422fb59))
(fp_line (start -5.00126 -5.00126) (end -5.00126 5.00126) (layer "F.SilkS") (width 0.15) (tstamp 7077f605-a035-4899-a04e-e8bc34e65245))
(fp_line (start 7.00024 5.00126) (end 7.00024 -5.00126) (layer "F.SilkS") (width 0.15) (tstamp dfe840ee-0810-4f65-8a37-ff7fda6703d7))
(fp_line (start -7.00024 5.00126) (end 7.00024 5.00126) (layer "F.SilkS") (width 0.15) (tstamp e2db35bd-399a-44e4-9c24-2eae5f747149))
(fp_line (start 7.00024 -5.00126) (end -7.00024 -5.00126) (layer "F.SilkS") (width 0.15) (tstamp e63def4d-8cb0-422b-bddc-e9f563a8d935))
(pad "1" thru_hole oval locked (at -2.49936 0 90) (size 2.99974 1.99898) (drill 1.19888 (offset -0.50038 0)) (layers *.Cu *.Mask "F.SilkS")
(net 3 "Net-(P1-Pad1)") (tstamp f20b2435-81fd-450f-92c0-1d64694f4431))
(pad "2" thru_hole oval locked (at 2.49936 0 270) (size 2.99974 1.99898) (drill 1.19888 (offset -0.50038 0)) (layers *.Cu *.Mask "F.SilkS")
(net 11 "Net-(Q4-PadD)") (tstamp f1895897-2aaa-46cc-b97b-ebf679c66a6b))
)
(footprint "FT:ARDUINO_SHIELD" (layer "F.Cu")
(tedit 574F0D23) (tstamp 00000000-0000-0000-0000-000054d526c9)
(at 148.59 104.14)
(descr "http://www.thingiverse.com/thing:9630")
(path "/00000000-0000-0000-0000-000054cba4bc")
(attr through_hole)
(fp_text reference "SHIELD1" (at 5.715 -57.15) (layer "F.SilkS") hide
(effects (font (size 1.524 1.524) (thickness 0.3048)))
(tstamp 21886a52-ea46-4fd8-bda0-6af7d51761b8)
)
(fp_text value "ARDUINO_SHIELD" (at 10.16 -54.61) (layer "F.SilkS") hide
(effects (font (size 1.524 1.524) (thickness 0.3048)))
(tstamp f695f95e-c2de-4d7f-8fbb-c88c6b92b322)
)
(fp_line (start 66.04 -2.54) (end 66.04 0) (layer "Cmts.User") (width 0.381) (tstamp 1cb56f17-fef1-4aea-adee-3bde87a5b4f9))
(fp_line (start 66.04 -40.64) (end 68.58 -38.1) (layer "Cmts.User") (width 0.381) (tstamp 1e579e41-3799-4c7e-a263-3f1ae7d4dd8f))
(fp_line (start 66.04 0) (end 0 0) (layer "Cmts.User") (width 0.381) (tstamp 27c6321b-6591-45c6-86c4-dc98e1af01e8))
(fp_line (start 68.58 -5.08) (end 66.04 -2.54) (layer "Cmts.User") (width 0.381) (tstamp 4584a8bc-273b-4b27-a060-c2e20f27a090))
(fp_line (start 0 0) (end 0 -53.34) (layer "Cmts.User") (width 0.381) (tstamp 82c2646e-0c01-4dad-ac5a-4153af40d8f0))
(fp_line (start 66.04 -40.64) (end 66.04 -52.07) (layer "Cmts.User") (width 0.381) (tstamp a5679078-d938-430a-8463-224ff2eae797))
(fp_line (start 66.04 -52.07) (end 64.77 -53.34) (layer "Cmts.User") (width 0.381) (tstamp b34c7a5e-38d7-44b4-b78b-11c88a8d559e))
(fp_line (start 68.58 -38.1) (end 68.58 -5.08) (layer "Cmts.User") (width 0.381) (tstamp d3bb028c-fc1e-41b5-80cb-904e4356269a))
(fp_line (start 64.77 -53.34) (end 0 -53.34) (layer "Cmts.User") (width 0.381) (tstamp f20b8fdf-0071-4d4b-867c-2f19b508133d))
(pad "" np_thru_hole circle locked (at 66.04 -7.62 90) (size 3.175 3.175) (drill 3.175) (layers *.Cu *.Mask "F.SilkS") (tstamp 6059e8e9-33cf-45ad-9d71-2c1d1e676a1a))
(pad "" np_thru_hole circle locked (at 15.24 -50.8 90) (size 3.175 3.175) (drill 3.175) (layers *.Cu *.Mask "F.SilkS") (tstamp 7aa96ee0-13a1-496f-a5a8-44fc2197fd42))
(pad "" np_thru_hole circle locked (at 66.04 -35.56 90) (size 3.175 3.175) (drill 3.175) (layers *.Cu *.Mask "F.SilkS") (tstamp 9ff0d29a-498a-410a-a39a-1ce1931bc899))
(pad "" np_thru_hole circle locked (at 13.97 -2.54 90) (size 3.175 3.175) (drill 3.175) (layers *.Cu *.Mask "F.SilkS") (tstamp dddf0c3a-a4b9-4f95-bd72-7eff0f875366))
(pad "0" thru_hole oval locked (at 63.5 -50.8 90) (size 2.54 1.524) (drill 1.016) (layers *.Cu *.Mask "F.SilkS")
(net 18 "Net-(SHIELD1-Pad0)") (tstamp 2fc1f9d4-c90a-4e0f-b02e-389867e7b1f5))
(pad "1" thru_hole oval locked (at 60.96 -50.8 90) (size 2.54 1.524) (drill 1.016) (layers *.Cu *.Mask "F.SilkS")
(net 19 "Net-(SHIELD1-Pad1)") (tstamp 5f576c20-b7d0-4cc1-889d-a5d15a8f0d9e))
(pad "2" thru_hole oval locked (at 58.42 -50.8 90) (size 2.54 1.524) (drill 1.016) (layers *.Cu *.Mask "F.SilkS")
(net 20 "Net-(SHIELD1-Pad2)") (tstamp ed0a87d5-5afa-4c8c-9a11-3fc7c7780989))
(pad "3" thru_hole oval locked (at 55.88 -50.8 90) (size 2.54 1.524) (drill 1.016) (layers *.Cu *.Mask "F.SilkS")
(net 21 "Net-(SHIELD1-Pad3)") (tstamp 6d8e122d-0025-4795-8533-952785b0d1c4))
(pad "3V3" thru_hole oval locked (at 35.56 -2.54 90) (size 2.54 1.524) (drill 1.016) (layers *.Cu *.Mask "F.SilkS")
(net 16 "Net-(SHIELD1-Pad3V3)") (tstamp f53d63cf-f2d1-436b-9234-e81b0f4f402c))
(pad "4" thru_hole oval locked (at 53.34 -50.8 90) (size 2.54 1.524) (drill 1.016) (layers *.Cu *.Mask "F.SilkS")
(net 10 "Net-(Q4-PadG)") (tstamp 945ecf4e-2d48-42d4-b8d9-218467d92170))
(pad "5" thru_hole oval locked (at 50.8 -50.8 90) (size 2.54 1.524) (drill 1.016) (layers *.Cu *.Mask "F.SilkS")
(net 8 "Net-(Q3-PadG)") (tstamp fc424863-dea9-4805-a3c3-2c90ecffdafd))
(pad "5V" thru_hole oval locked (at 38.1 -2.54 90) (size 2.54 1.524) (drill 1.016) (layers *.Cu *.Mask "F.SilkS")
(net 1 "+5V") (tstamp eb0e9e58-b5cc-4f8f-befe-be8549f644f7))
(pad "6" thru_hole oval locked (at 48.26 -50.8 90) (size 2.54 1.524) (drill 1.016) (layers *.Cu *.Mask "F.SilkS")
(net 6 "Net-(Q2-PadG)") (tstamp b4b71a5a-c2ab-417a-9039-83b90029f35a))
(pad "7" thru_hole oval locked (at 45.72 -50.8 90) (size 2.54 1.524) (drill 1.016) (layers *.Cu *.Mask "F.SilkS")
(net 4 "Net-(Q1-PadG)") (tstamp 10510b46-ef29-4bc7-a614-5e62ecd80e79))
(pad "8" thru_hole oval locked (at 41.656 -50.8 90) (size 2.54 1.524) (drill 1.016) (layers *.Cu *.Mask "F.SilkS")
(net 22 "Net-(SHIELD1-Pad8)") (tstamp 0d16b14b-fb76-43b6-937a-da40f7836250))
(pad "9" thru_hole oval locked (at 39.116 -50.8 90) (size 2.54 1.524) (drill 1.016) (layers *.Cu *.Mask "F.SilkS")
(net 23 "Net-(SHIELD1-Pad9)") (tstamp 9c876e58-c9f1-4ab7-a399-73a89edcbd70))
(pad "10" thru_hole oval locked (at 36.576 -50.8 90) (size 2.54 1.524) (drill 1.016) (layers *.Cu *.Mask "F.SilkS")
(net 24 "Net-(SHIELD1-Pad10)") (tstamp 9a5fdf96-cc46-4eee-aafa-d82cbfb25f06))
(pad "11" thru_hole oval locked (at 34.036 -50.8 90) (size 2.54 1.524) (drill 1.016) (layers *.Cu *.Mask "F.SilkS")
(net 25 "Net-(SHIELD1-Pad11)") (tstamp eca709a5-d672-4320-a808-57d56faf9314))
(pad "12" thru_hole oval locked (at 31.496 -50.8 90) (size 2.54 1.524) (drill 1.016) (layers *.Cu *.Mask "F.SilkS")
(net 26 "Net-(SHIELD1-Pad12)") (tstamp e25f160d-8f79-4292-9ac1-68006ff55fed))
(pad "13" thru_hole oval locked (at 28.956 -50.8 90) (size 2.54 1.524) (drill 1.016) (layers *.Cu *.Mask "F.SilkS")
(net 27 "Net-(SHIELD1-Pad13)") (tstamp 63f1f197-8895-42ec-83b9-56164533198a))
(pad "AD0" thru_hole oval locked (at 50.8 -2.54 90) (size 2.54 1.524) (drill 1.016) (layers *.Cu *.Mask "F.SilkS")
(net 40 "Net-(D1-Pad1)") (tstamp 527c6e35-112c-45f0-82b3-62afc553ae43))
(pad "AD1" thru_hole oval locked (at 53.34 -2.54 90) (size 2.54 1.524) (drill 1.016) (layers *.Cu *.Mask "F.SilkS")
(net 41 "Net-(D3-Pad1)") (tstamp b3abf90a-8cdf-4c63-97a6-78ceb7445228))
(pad "AD2" thru_hole oval locked (at 55.88 -2.54 90) (size 2.54 1.524) (drill 1.016) (layers *.Cu *.Mask "F.SilkS")
(net 42 "Net-(D2-Pad1)") (tstamp fc7ba2d6-e635-42e6-9efc-35fa259a4921))
(pad "AD3" thru_hole oval locked (at 58.42 -2.54 90) (size 2.54 1.524) (drill 1.016) (layers *.Cu *.Mask "F.SilkS")
(net 14 "Net-(SHIELD1-PadAD3)") (tstamp e4af0d3b-7848-455f-a889-489dee3f3501))
(pad "AD4" thru_hole oval locked (at 60.96 -2.54 90) (size 2.54 1.524) (drill 1.016) (layers *.Cu *.Mask "F.SilkS")
(net 13 "Net-(SHIELD1-PadAD4)") (tstamp ed87b6cc-2adc-410c-8f5c-6ec1dbe3b26e))
(pad "AD5" thru_hole oval locked (at 63.5 -2.54 90) (size 2.54 1.524) (drill 1.016) (layers *.Cu *.Mask "F.SilkS")
(net 12 "Net-(SHIELD1-PadAD5)") (tstamp 9b38187b-a31e-4097-a596-1af9d9f32718))
(pad "AREF" thru_hole oval locked (at 23.876 -50.8 90) (size 2.54 1.524) (drill 1.016) (layers *.Cu *.Mask "F.SilkS")
(net 29 "Net-(SHIELD1-PadAREF)") (tstamp cffbadbc-c3dc-41d6-a326-a487180c34fc))
(pad "GND1" thru_hole oval locked (at 40.64 -2.54 90) (size 2.54 1.524) (drill 1.016) (layers *.Cu *.Mask "F.SilkS")
(net 2 "GND") (tstamp 3133009e-3194-4b6d-8047-a2733902e101))
(pad "GND2" thru_hole oval locked (at 43.18 -2.54 90) (size 2.54 1.524) (drill 1.016) (layers *.Cu *.Mask "F.SilkS")
(net 2 "GND") (tstamp 5cfe523a-00f0-4b6a-b6f4-234908176b6b))
(pad "GND3" thru_hole oval locked (at 26.416 -50.8 90) (size 2.54 1.524) (drill 1.016) (layers *.Cu *.Mask "F.SilkS")
(net 28 "Net-(SHIELD1-PadGND3)") (tstamp be4089c2-a5d4-4b4c-abf0-9f05fd99a3ea))
(pad "IO_R" thru_hole oval locked (at 30.48 -2.54 90) (size 2.54 1.524) (drill 1.016) (layers *.Cu *.Mask "F.SilkS")
(net 32 "Net-(SHIELD1-PadIO_R)") (tstamp e005cca6-bb76-43f4-89c4-f8d7fd10a8c0))
(pad "NC" thru_hole oval locked (at 27.94 -2.54 90) (size 2.54 1.524) (drill 1.016) (layers *.Cu *.Mask "F.SilkS")
(net 33 "Net-(SHIELD1-PadNC)") (tstamp ac221120-6aa7-478c-84ef-306cd282d9ab))
(pad "RST" thru_hole oval locked (at 33.02 -2.54 90) (size 2.54 1.524) (drill 1.016) (layers *.Cu *.Mask "F.SilkS")
(net 17 "Net-(SHIELD1-PadRST)") (tstamp e4d45f0b-fd56-4a9d-b538-21b382bc9863))
(pad "SCL" thru_hole oval locked (at 18.796 -50.8 90) (size 2.54 1.524) (drill 1.016) (layers *.Cu *.Mask "F.SilkS")
(net 31 "Net-(SHIELD1-PadSCL)") (tstamp 2f5ce72f-532d-4c76-8514-e3b43e8f41ec))
(pad "SDA" thru_hole oval locked (at 21.336 -50.8 90) (size 2.54 1.524) (drill 1.016) (layers *.Cu *.Mask "F.SilkS")
(net 30 "Net-(SHIELD1-PadSDA)") (tstamp 97992876-8814-47af-9d9d-a83b5ee8c5d1))
(pad "SP1" thru_hole circle locked (at 63.5 -30.48 90) (size 1.524 1.524) (drill 1.016) (layers *.Cu *.Mask "F.SilkS")
(net 34 "Net-(SHIELD1-PadSP1)") (tstamp 74380f35-4af6-4b3c-aacf-4f786e4acde1))
(pad "SP2" thru_hole circle locked (at 66.04 -30.48 90) (size 1.524 1.524) (drill 1.016) (layers *.Cu *.Mask "F.SilkS")
(net 35 "Net-(SHIELD1-PadSP2)") (tstamp 67181163-bb69-49e9-b18c-0138ad58d3ed))
(pad "SP3" thru_hole circle locked (at 63.5 -27.94 90) (size 1.524 1.524) (drill 1.016) (layers *.Cu *.Mask "F.SilkS")
(net 36 "Net-(SHIELD1-PadSP3)") (tstamp 641e22f1-e06a-403c-bf64-dba76b227afa))
(pad "SP4" thru_hole circle locked (at 66.04 -27.94 90) (size 1.524 1.524) (drill 1.016) (layers *.Cu *.Mask "F.SilkS")
(net 37 "Net-(SHIELD1-PadSP4)") (tstamp f63600c9-06c8-4231-8a4e-250494ed618f))
(pad "SP5" thru_hole circle locked (at 63.5 -25.4 90) (size 1.524 1.524) (drill 1.016) (layers *.Cu *.Mask "F.SilkS")
(net 38 "Net-(SHIELD1-PadSP5)") (tstamp c4b31697-7012-4d14-87bc-4727c02710ed))
(pad "SP6" thru_hole circle locked (at 66.04 -25.4 90) (size 1.524 1.524) (drill 1.016) (layers *.Cu *.Mask "F.SilkS")
(net 39 "Net-(SHIELD1-PadSP6)") (tstamp e4b53fd7-7e01-467c-885a-d59a2c528525))
(pad "V_IN" thru_hole oval locked (at 45.72 -2.54 90) (size 2.54 1.524) (drill 1.016) (layers *.Cu *.Mask "F.SilkS")
(net 15 "Net-(SHIELD1-PadV_IN)") (tstamp 8a7adde4-6645-40e5-9637-252b7af7b8fd))
)
(footprint "Diodes_ThroughHole:Diode_DO-41_SOD81_Horizontal_RM10" (layer "F.Cu")
(tedit 574F0F0A) (tstamp 00000000-0000-0000-0000-000057456349)
(at 161.29 91.44)
(descr "Diode, DO-41, SOD81, Horizontal, RM 10mm,")
(tags "Diode, DO-41, SOD81, Horizontal, RM 10mm, 1N4007, SB140,")
(path "/00000000-0000-0000-0000-000054d56d29")
(attr through_hole)
(fp_text reference "D2" (at 2.54 2.54) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c88eb579-af26-4dd7-b6bf-711b3e4f4a5b)
)
(fp_text value "DIODE" (at 4.37134 -3.55854) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b3434d7c-91cb-4f9e-9f26-ae4e1ad7c50e)
)
(fp_line (start 2.794 -1.27254) (end 2.794 1.26746) (layer "F.SilkS") (width 0.15) (tstamp 2a913f11-9bac-4603-80f0-99a84d8ca227))
(fp_line (start 7.62 -1.27254) (end 7.62 1.26746) (layer "F.SilkS") (width 0.15) (tstamp 2b03d344-e0e6-4ce4-a90e-0d9824c066bb))
(fp_line (start 2.794 -0.00254) (end 1.524 -0.00254) (layer "F.SilkS") (width 0.15) (tstamp 41e3d7f1-0e65-4341-a7c4-6a5a044fed5e))
(fp_line (start 3.302 -1.27254) (end 3.302 1.26746) (layer "F.SilkS") (width 0.15) (tstamp 54876d52-cfc5-4e14-8428-04b3fe0a2419))
(fp_line (start 3.175 -1.27254) (end 3.175 1.26746) (layer "F.SilkS") (width 0.15) (tstamp 77da7afc-878f-48fd-bc9e-32dd8ec4cbe1))
(fp_line (start 3.81 -1.27254) (end 2.54 1.26746) (layer "F.SilkS") (width 0.15) (tstamp 7edb8ed9-ddfb-480e-b03d-ab7728df4785))
(fp_line (start 3.048 -1.27254) (end 3.048 1.26746) (layer "F.SilkS") (width 0.15) (tstamp 89ff7d2f-028d-49cb-99ed-12344d82b180))
(fp_line (start 2.54 -1.27254) (end 3.81 1.26746) (layer "F.SilkS") (width 0.15) (tstamp ac8fc940-57c4-4c59-9eae-78907647adbd))
(fp_line (start 3.81 -1.27254) (end 3.81 1.26746) (layer "F.SilkS") (width 0.15) (tstamp d910de28-630a-4e46-8f6a-42da008cb5e4))
(fp_line (start 7.62 1.26746) (end 2.54 1.26746) (layer "F.SilkS") (width 0.15) (tstamp e1de6089-5790-41f9-badf-b0f885461998))
(fp_line (start 2.54 -1.27254) (end 7.62 -1.27254) (layer "F.SilkS") (width 0.15) (tstamp e5bb04d2-50f0-4d76-97b0-3c7c4e18c029))
(fp_line (start 3.556 -1.27254) (end 3.556 1.26746) (layer "F.SilkS") (width 0.15) (tstamp e7143474-f5aa-4e9f-a82a-14d64056c385))
(fp_line (start 7.62 -0.00254) (end 8.636 -0.00254) (layer "F.SilkS") (width 0.15) (tstamp f295032d-e2ee-425b-a689-d650cb26a957))
(fp_line (start 2.54 1.26746) (end 2.54 -1.27254) (layer "F.SilkS") (width 0.15) (tstamp faba8f25-24f4-420c-ac25-7f8dbe009f54))
(pad "1" thru_hole rect locked (at 0 -0.00254 180) (size 1.99898 1.99898) (drill 1.00076) (layers *.Cu *.Mask "F.SilkS")
(net 42 "Net-(D2-Pad1)") (tstamp 40c62d58-957c-49e9-b963-e4c2c4f00108))
(pad "2" thru_hole circle locked (at 10.16 -0.00254 180) (size 1.99898 1.99898) (drill 1.27) (layers *.Cu *.Mask "F.SilkS")
(net 1 "+5V") (tstamp 8dfb5c21-6a27-441a-aadf-010aba7d6a8f))
)
(footprint "Diodes_ThroughHole:Diode_DO-41_SOD81_Horizontal_RM10" (layer "F.Cu")
(tedit 574F0F12) (tstamp 00000000-0000-0000-0000-00005745634f)
(at 176.53 91.44)
(descr "Diode, DO-41, SOD81, Horizontal, RM 10mm,")
(tags "Diode, DO-41, SOD81, Horizontal, RM 10mm, 1N4007, SB140,")
(path "/00000000-0000-0000-0000-000054d56cf2")
(attr through_hole)
(fp_text reference "D3" (at 2.54 2.54) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2c91e612-ba42-4f05-80d7-50f06a8d813b)
)
(fp_text value "DIODE" (at 4.37134 -3.55854) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 25f126a0-dcb3-4e70-b7f4-a38f64a78a13)
)
(fp_line (start 3.81 -1.27254) (end 3.81 1.26746) (layer "F.SilkS") (width 0.15) (tstamp 0bdada63-2585-42ed-bd1a-c5e160fba42c))
(fp_line (start 3.175 -1.27254) (end 3.175 1.26746) (layer "F.SilkS") (width 0.15) (tstamp 307d855d-0ac1-4a6e-ac1f-a21d50ca76b9))
(fp_line (start 3.302 -1.27254) (end 3.302 1.26746) (layer "F.SilkS") (width 0.15) (tstamp 52c7b5b6-0896-4dd9-b701-b49742c8ebdc))
(fp_line (start 2.54 -1.27254) (end 7.62 -1.27254) (layer "F.SilkS") (width 0.15) (tstamp 5570c6a6-0c2e-498e-a36b-25c19df1e776))
(fp_line (start 2.54 -1.27254) (end 3.81 1.26746) (layer "F.SilkS") (width 0.15) (tstamp 5a0c15ad-2365-4dfc-ac8a-e44bfaf00edc))
(fp_line (start 7.62 1.26746) (end 2.54 1.26746) (layer "F.SilkS") (width 0.15) (tstamp 80a4d58b-3b6d-457e-b3de-fd51056b4149))
(fp_line (start 3.556 -1.27254) (end 3.556 1.26746) (layer "F.SilkS") (width 0.15) (tstamp 86bfc878-f48a-48a4-b1a4-aceb55be4b74))
(fp_line (start 2.794 -1.27254) (end 2.794 1.26746) (layer "F.SilkS") (width 0.15) (tstamp 8b4521ca-c47a-4168-8e26-1e4c9b85c54f))
(fp_line (start 7.62 -0.00254) (end 8.636 -0.00254) (layer "F.SilkS") (width 0.15) (tstamp 90818aa3-a9de-48ef-9e75-3ec084f2a492))
(fp_line (start 7.62 -1.27254) (end 7.62 1.26746) (layer "F.SilkS") (width 0.15) (tstamp a5c1a5a7-c4aa-4d0c-9682-a43a52fcaca7))
(fp_line (start 3.048 -1.27254) (end 3.048 1.26746) (layer "F.SilkS") (width 0.15) (tstamp b85e6a69-3176-4dab-8ba7-5ebc34c851e8))
(fp_line (start 3.81 -1.27254) (end 2.54 1.26746) (layer "F.SilkS") (width 0.15) (tstamp bc8b3486-77df-4102-be69-97ee57c9c2e5))
(fp_line (start 2.54 1.26746) (end 2.54 -1.27254) (layer "F.SilkS") (width 0.15) (tstamp d31a482f-eec2-48d8-a00a-e601d04e5295))
(fp_line (start 2.794 -0.00254) (end 1.524 -0.00254) (layer "F.SilkS") (width 0.15) (tstamp fc509d31-847f-4f74-bf38-4305891bfff4))
(pad "1" thru_hole rect locked (at 0 -0.00254 180) (size 1.99898 1.99898) (drill 1.00076) (layers *.Cu *.Mask "F.SilkS")
(net 41 "Net-(D3-Pad1)") (tstamp 98dc696f-be33-4215-b3fe-1201cb79b5a4))
(pad "2" thru_hole circle locked (at 10.16 -0.00254 180) (size 1.99898 1.99898) (drill 1.27) (layers *.Cu *.Mask "F.SilkS")
(net 1 "+5V") (tstamp 3d371de9-c0f6-47f1-ae8b-09eeb83caf17))
)
(footprint "Terminal_Blocks:TerminalBlock_Pheonix_MPT-2.54mm_4pol" (layer "F.Cu")
(tedit 574F0F48) (tstamp 00000000-0000-0000-0000-000057456357)
(at 152.4 81.28 90)
(descr "4-way 2.54mm pitch terminal block, Phoenix MPT series")
(path "/00000000-0000-0000-0000-000054d5361a")
(attr through_hole)
(fp_text reference "P2" (at 11.43 0 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 605c90a0-4b62-4d61-9615-59bd8fd11175)
)
(fp_text value "CONN_01X04" (at 3.81 4.50088 90) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d7e6511a-8939-4681-a33f-9685667d686c)
)
(fp_line (start 3.81 2.60096) (end 3.81 3.0988) (layer "F.SilkS") (width 0.15) (tstamp 007ac6d1-d271-4dd0-9a89-d43ffa4fb524))
(fp_line (start -1.28778 3.0988) (end -1.28778 2.60096) (layer "F.SilkS") (width 0.15) (tstamp 311eacc5-4cab-4ad4-a679-2470908b54b4))
(fp_line (start -1.49098 -2.70002) (end 9.11098 -2.70002) (layer "F.SilkS") (width 0.15) (tstamp 42d5645f-dff9-417d-9a71-b8a8ca1d10e3))
(fp_line (start 6.30682 2.60096) (end 6.30682 3.0988) (layer "F.SilkS") (width 0.15) (tstamp 50e83190-47e7-4e79-b9d9-e25941bd57b0))
(fp_line (start -1.4859 -3.0988) (end -1.4859 3.0988) (layer "F.SilkS") (width 0.15) (tstamp 67cdc062-406d-4201-b0c3-ea18944c0d4e))
(fp_line (start 1.31318 3.0988) (end 1.31318 2.60096) (layer "F.SilkS") (width 0.15) (tstamp 6a832c91-901c-4d03-b58e-5c4a83413210))
(fp_line (start 9.10844 3.0988) (end 9.10844 -3.0988) (layer "F.SilkS") (width 0.15) (tstamp 6c0ee576-8fa1-45e1-8549-d210c5bf2da2))
(fp_line (start 9.11098 -3.0988) (end -1.49098 -3.0988) (layer "F.SilkS") (width 0.15) (tstamp 6d4d85a2-53e4-4855-839c-e1d581bfc0ad))
(fp_line (start -1.49098 2.60096) (end 9.11098 2.60096) (layer "F.SilkS") (width 0.15) (tstamp 9ff3d931-ee66-4463-954f-e223daff3af7))
(fp_line (start 9.11098 3.0988) (end -1.49098 3.0988) (layer "F.SilkS") (width 0.15) (tstamp d8de762c-b125-4d46-a5a3-ab816fa83a2f))
(fp_line (start 8.91032 2.60096) (end 8.91032 3.0988) (layer "F.SilkS") (width 0.15) (tstamp e5e1d024-2565-4262-a328-66c719219162))
(fp_line (start -1.778 -3.302) (end 9.398 -3.302) (layer "F.CrtYd") (width 0.05) (tstamp 1daab28a-ec8c-47ef-a3ca-3eb34e22a124))
(fp_line (start 9.398 -3.302) (end 9.398 3.302) (layer "F.CrtYd") (width 0.05) (tstamp 681998e7-b45b-400a-aa2c-91b0e8f04b41))
(fp_line (start 9.398 3.302) (end -1.778 3.302) (layer "F.CrtYd") (width 0.05) (tstamp 6cb765fb-5baf-4887-a5f0-cdbd1636d4d5))
(fp_line (start -1.778 3.302) (end -1.778 -3.302) (layer "F.CrtYd") (width 0.05) (tstamp 9c23bdf8-9832-41f5-9672-78b4ec73805a))
(pad "1" thru_hole rect locked (at 0 0 270) (size 1.99898 1.99898) (drill 1.09728) (layers *.Cu *.Mask "F.SilkS")
(net 3 "Net-(P1-Pad1)") (tstamp c55b8dea-fbac-4349-91e2-dd38e3670111))
(pad "2" thru_hole oval locked (at 2.54 0 270) (size 1.99898 1.99898) (drill 1.09728) (layers *.Cu *.Mask "F.SilkS")
(net 43 "Net-(P2-Pad2)") (tstamp aca9e653-f647-4dc4-8127-740e2c1879c6))
(pad "3" thru_hole oval locked (at 5.08 0 270) (size 1.99898 1.99898) (drill 1.09728) (layers *.Cu *.Mask "F.SilkS")
(net 44 "Net-(P2-Pad3)") (tstamp 2711eb97-3ec7-439b-9e65-985bba7c720b))
(pad "4" thru_hole oval locked (at 7.62 0 270) (size 1.99898 1.99898) (drill 1.09728) (layers *.Cu *.Mask "F.SilkS")
(net 2 "GND") (tstamp 563af5cf-9c82-4595-88c3-0ceff6604102))
(model "Terminal_Blocks.3dshapes/TerminalBlock_Pheonix_MPT-2.54mm_4pol.wrl"
(offset (xyz 3.809999943 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistors_ThroughHole:Resistor_Horizontal_RM10mm" (layer "F.Cu")
(tedit 574F0EFB) (tstamp 00000000-0000-0000-0000-00005745aec6)
(at 153.67 86.36 -90)
(descr "Resistor, Axial, RM 10mm, 1/3W")
(tags "Resistor Axial RM 10mm 1/3W")
(path "/00000000-0000-0000-0000-000054d13a9b")
(attr through_hole)
(fp_text reference "R1" (at 12.7 0 -90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 68b0d83f-f335-4d7a-b9ed-76eeade90226)
)
(fp_text value "10k" (at 5.08 0 -90) (layer "Cmts.User")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8626feb5-b83b-4855-9d55-de68fa4e0146)
)
(fp_line (start 7.62 0) (end 8.89 0) (layer "F.SilkS") (width 0.15) (tstamp 2ae29304-1aa1-4a78-ab6e-6e1163eaeaed))
(fp_line (start 2.54 0) (end 1.27 0) (layer "F.SilkS") (width 0.15) (tstamp 40cac48b-0b9e-48fd-8feb-436920ed902b))
(fp_line (start 2.54 1.27) (end 2.54 -1.27) (layer "F.SilkS") (width 0.15) (tstamp 8238b385-c1f1-47cc-97c6-522b4004b56b))
(fp_line (start 7.62 1.27) (end 2.54 1.27) (layer "F.SilkS") (width 0.15) (tstamp 952505c3-3895-4bf4-89d5-68011bbe1f83))
(fp_line (start 2.54 -1.27) (end 7.62 -1.27) (layer "F.SilkS") (width 0.15) (tstamp 9f8cb05a-c0a3-4594-bb64-8da26bcbd07a))
(fp_line (start 7.62 -1.27) (end 7.62 1.27) (layer "F.SilkS") (width 0.15) (tstamp fd85a038-9fbf-4e21-9106-b1d40b679b2a))
(fp_line (start 11.4 -1.5) (end 11.4 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 31e79a38-d747-49f0-9028-636603135c7f))
(fp_line (start -1.25 1.5) (end -1.25 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 39c24274-971f-4d0b-bc86-4a7ffe632390))
(fp_line (start -1.25 1.5) (end 11.4 1.5) (layer "F.CrtYd") (width 0.05) (tstamp b9f50182-c2a1-46de-9cba-5ffc2e20484c))
(fp_line (start -1.25 -1.5) (end 11.4 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp f3aad142-55a4-46bc-b5b4-3fd3db84fb20))
(pad "1" thru_hole circle locked (at 0 0 270) (size 1.99898 1.99898) (drill 1.00076) (layers *.Cu *.SilkS *.Mask)
(net 3 "Net-(P1-Pad1)") (tstamp 4d848bba-4880-4c1a-ae52-22ccd979542a))
(pad "2" thru_hole circle locked (at 10.16 0 270) (size 1.99898 1.99898) (drill 1.00076) (layers *.Cu *.SilkS *.Mask)
(net 40 "Net-(D1-Pad1)") (tstamp db18f675-8364-4c81-8157-5fc935e6401c))
(model "Resistors_ThroughHole.3dshapes/Resistor_Horizontal_RM10mm.wrl"
(offset (xyz 5.079999924 0 0))
(scale (xyz 0.4 0.4 0.4))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistors_ThroughHole:Resistor_Horizontal_RM10mm" (layer "F.Cu")
(tedit 574F0F17) (tstamp 00000000-0000-0000-0000-00005745aecc)
(at 176.53 96.52)
(descr "Resistor, Axial, RM 10mm, 1/3W")
(tags "Resistor Axial RM 10mm 1/3W")
(path "/00000000-0000-0000-0000-000054d13b2c")
(attr through_hole)
(fp_text reference "R2" (at 12.7 0) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ad71c8d5-6c2f-43f4-88e8-fd1b8056405a)
)
(fp_text value "5k" (at 5.08 0) (layer "Cmts.User")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 11ba378a-6f6c-4954-a699-eccde8f23dd6)
)
(fp_line (start 2.54 1.27) (end 2.54 -1.27) (layer "F.SilkS") (width 0.15) (tstamp 62d0de70-5154-4930-966f-7b85b8ca8177))
(fp_line (start 7.62 1.27) (end 2.54 1.27) (layer "F.SilkS") (width 0.15) (tstamp 7a55335a-85d4-4e92-b12f-ba9f524a4e72))
(fp_line (start 2.54 0) (end 1.27 0) (layer "F.SilkS") (width 0.15) (tstamp 911a742f-369d-4022-a194-f37873058c18))
(fp_line (start 2.54 -1.27) (end 7.62 -1.27) (layer "F.SilkS") (width 0.15) (tstamp 920dca33-5a83-4131-80ce-37a8c80a65a6))
(fp_line (start 7.62 -1.27) (end 7.62 1.27) (layer "F.SilkS") (width 0.15) (tstamp a5ffdf14-df4e-4ed9-91b3-cb639050bc89))
(fp_line (start 7.62 0) (end 8.89 0) (layer "F.SilkS") (width 0.15) (tstamp e559c139-9b19-49e0-b438-f1ebd21e7e96))
(fp_line (start -1.25 1.5) (end -1.25 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 625d53ca-833a-4ff1-9035-ba06e109c146))
(fp_line (start 11.4 -1.5) (end 11.4 1.5) (layer "F.CrtYd") (width 0.05) (tstamp c0d2f8d6-b3d8-4354-a2db-8685bfb68b72))
(fp_line (start -1.25 1.5) (end 11.4 1.5) (layer "F.CrtYd") (width 0.05) (tstamp e2f2ed89-b26a-4d2a-b746-b2f7c17b0a77))
(fp_line (start -1.25 -1.5) (end 11.4 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp fcab6e89-f836-48e5-9763-c37c3aea1bf0))
(pad "1" thru_hole circle locked (at 0 0) (size 1.99898 1.99898) (drill 1.00076) (layers *.Cu *.SilkS *.Mask)
(net 40 "Net-(D1-Pad1)") (tstamp f0aaa637-c32f-48fb-be83-92493dabeb62))
(pad "2" thru_hole circle locked (at 10.16 0) (size 1.99898 1.99898) (drill 1.00076) (layers *.Cu *.SilkS *.Mask)
(net 2 "GND") (tstamp 8c838600-5e5f-417c-a9c4-a8b48eb31f47))
(model "Resistors_ThroughHole.3dshapes/Resistor_Horizontal_RM10mm.wrl"
(offset (xyz 5.079999924 0 0))
(scale (xyz 0.4 0.4 0.4))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistors_ThroughHole:Resistor_Horizontal_RM10mm" (layer "F.Cu")
(tedit 574F0E19) (tstamp 00000000-0000-0000-0000-00005745aed2)
(at 165.1 59.69)
(descr "Resistor, Axial, RM 10mm, 1/3W")
(tags "Resistor Axial RM 10mm 1/3W")
(path "/00000000-0000-0000-0000-000054d12c43")
(attr through_hole)
(fp_text reference "R3" (at 5.32892 -3.50012) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 02ea03c5-7c28-4507-8793-8fef740c1b43)
)
(fp_text value "100k" (at 5.08 0) (layer "Dwgs.User")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8e12a0ec-e6e4-4f53-9c20-8ff24f570729)
)
(fp_line (start 7.62 -1.27) (end 7.62 1.27) (layer "F.SilkS") (width 0.15) (tstamp 1d56c989-a66b-4a7c-9c48-38ea645bd3ee))
(fp_line (start 2.54 0) (end 1.27 0) (layer "F.SilkS") (width 0.15) (tstamp 8da37674-21d6-4800-8f4b-7f56d9641760))
(fp_line (start 2.54 -1.27) (end 7.62 -1.27) (layer "F.SilkS") (width 0.15) (tstamp 8dfdb134-04f6-40ac-9e32-682935e631f1))
(fp_line (start 7.62 0) (end 8.89 0) (layer "F.SilkS") (width 0.15) (tstamp db716a0a-4b04-4701-9fe7-a85479718c18))
(fp_line (start 2.54 1.27) (end 2.54 -1.27) (layer "F.SilkS") (width 0.15) (tstamp eba41575-e1ed-4f05-b738-374932e0a489))
(fp_line (start 7.62 1.27) (end 2.54 1.27) (layer "F.SilkS") (width 0.15) (tstamp f98b6190-9c2d-4aa0-8d1e-9931800352b7))
(fp_line (start -1.25 1.5) (end 11.4 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 0b73edde-2393-45ba-a60e-9338b42342c0))
(fp_line (start -1.25 -1.5) (end 11.4 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 6e4367ac-9ff7-4bce-9b8e-fb8d36f77650))
(fp_line (start -1.25 1.5) (end -1.25 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 8d459930-c560-4f99-914f-b0f3caa2f705))
(fp_line (start 11.4 -1.5) (end 11.4 1.5) (layer "F.CrtYd") (width 0.05) (tstamp a7cd5293-3668-4a26-9e01-a86bcd5a3af1))
(pad "1" thru_hole circle locked (at 0 0) (size 1.99898 1.99898) (drill 1.00076) (layers *.Cu *.SilkS *.Mask)
(net 4 "Net-(Q1-PadG)") (tstamp 519dac9d-d0bc-4251-aa41-27702346f61e))
(pad "2" thru_hole circle locked (at 10.16 0) (size 1.99898 1.99898) (drill 1.00076) (layers *.Cu *.SilkS *.Mask)
(net 2 "GND") (tstamp 1a11de0d-1a01-4845-adef-473f40ebc2f7))
(model "Resistors_ThroughHole.3dshapes/Resistor_Horizontal_RM10mm.wrl"
(offset (xyz 5.079999924 0 0))
(scale (xyz 0.4 0.4 0.4))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistors_ThroughHole:Resistor_Horizontal_RM10mm" (layer "F.Cu")
(tedit 574F0E12) (tstamp 00000000-0000-0000-0000-00005745aed8)
(at 180.34 59.69)
(descr "Resistor, Axial, RM 10mm, 1/3W")
(tags "Resistor Axial RM 10mm 1/3W")
(path "/00000000-0000-0000-0000-000054d12c90")
(attr through_hole)
(fp_text reference "R5" (at 5.32892 -3.50012) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a481c6a9-fa9d-4c04-9472-b3b0c572619a)
)
(fp_text value "100k" (at 5.08 0) (layer "Cmts.User")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e0f1b2a3-278b-4314-b64a-a04a3a663379)
)
(fp_line (start 2.54 -1.27) (end 7.62 -1.27) (layer "F.SilkS") (width 0.15) (tstamp 1898a180-85ee-4114-b679-3745ff7662d0))
(fp_line (start 7.62 1.27) (end 2.54 1.27) (layer "F.SilkS") (width 0.15) (tstamp 25683b43-c7f1-4666-8e5f-3a4941c9165b))
(fp_line (start 2.54 0) (end 1.27 0) (layer "F.SilkS") (width 0.15) (tstamp 328ef6a7-6162-4b36-b176-9ffbe69ad8c3))
(fp_line (start 2.54 1.27) (end 2.54 -1.27) (layer "F.SilkS") (width 0.15) (tstamp 59a16c5b-53dc-44fe-b343-b73392d8b4ff))
(fp_line (start 7.62 0) (end 8.89 0) (layer "F.SilkS") (width 0.15) (tstamp 5d67c9b8-6e31-4ca4-8beb-003638b32e4c))
(fp_line (start 7.62 -1.27) (end 7.62 1.27) (layer "F.SilkS") (width 0.15) (tstamp 8cfd251d-a004-40cd-9b10-33044a5d8726))
(fp_line (start -1.25 -1.5) (end 11.4 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 4ceef9c0-a171-4737-8ac9-c2fb3485b9d5))
(fp_line (start -1.25 1.5) (end -1.25 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp a480b5bc-8878-4b11-9c52-d4cd0bfa26fe))
(fp_line (start -1.25 1.5) (end 11.4 1.5) (layer "F.CrtYd") (width 0.05) (tstamp a61ead4b-b7c9-4565-8fe0-60d4df3c3d4e))
(fp_line (start 11.4 -1.5) (end 11.4 1.5) (layer "F.CrtYd") (width 0.05) (tstamp c6e929d5-e0ce-4f76-a293-478ce8678d35))
(pad "1" thru_hole circle locked (at 0 0) (size 1.99898 1.99898) (drill 1.00076) (layers *.Cu *.SilkS *.Mask)
(net 6 "Net-(Q2-PadG)") (tstamp e98f1de3-f635-4feb-941d-1ef3c0997b46))
(pad "2" thru_hole circle locked (at 10.16 0) (size 1.99898 1.99898) (drill 1.00076) (layers *.Cu *.SilkS *.Mask)
(net 2 "GND") (tstamp d52bf18a-b8ee-438b-89d8-21abe994ba7e))
(model "Resistors_ThroughHole.3dshapes/Resistor_Horizontal_RM10mm.wrl"
(offset (xyz 5.079999924 0 0))
(scale (xyz 0.4 0.4 0.4))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistors_ThroughHole:Resistor_Horizontal_RM10mm" (layer "F.Cu")
(tedit 574F0E09) (tstamp 00000000-0000-0000-0000-00005745aede)
(at 199.39 59.69)
(descr "Resistor, Axial, RM 10mm, 1/3W")
(tags "Resistor Axial RM 10mm 1/3W")
(path "/00000000-0000-0000-0000-000054d12cb1")
(attr through_hole)
(fp_text reference "R7" (at 5.32892 -3.50012) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f3ec15ac-c52a-4878-bc47-d6ad92f6bbcb)
)
(fp_text value "100k" (at 5.08 0) (layer "Cmts.User")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c7852c35-a0be-4c4c-8baf-c0491e464449)
)
(fp_line (start 7.62 1.27) (end 2.54 1.27) (layer "F.SilkS") (width 0.15) (tstamp 1fb13b27-8487-44d1-91ae-55ca4894bca8))
(fp_line (start 2.54 0) (end 1.27 0) (layer "F.SilkS") (width 0.15) (tstamp 22588fc9-1d2f-417d-a45f-489113f3c0b9))
(fp_line (start 7.62 -1.27) (end 7.62 1.27) (layer "F.SilkS") (width 0.15) (tstamp 4dd8d4f6-9fe1-4333-9a96-f6a3883c18ba))
(fp_line (start 7.62 0) (end 8.89 0) (layer "F.SilkS") (width 0.15) (tstamp 6073d6b1-4e52-40f2-9895-0cb0fa2e2118))
(fp_line (start 2.54 -1.27) (end 7.62 -1.27) (layer "F.SilkS") (width 0.15) (tstamp ba1c571f-d9cd-4f78-8e0b-889391dbd51f))
(fp_line (start 2.54 1.27) (end 2.54 -1.27) (layer "F.SilkS") (width 0.15) (tstamp febfd2d1-73a1-4bf5-ac63-af3916b77465))
(fp_line (start -1.25 -1.5) (end 11.4 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 6ec70e6a-2fb3-4857-b803-7487fac33530))
(fp_line (start -1.25 1.5) (end -1.25 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 83e9d81e-3d5e-4c5b-82a9-6762406a0551))
(fp_line (start 11.4 -1.5) (end 11.4 1.5) (layer "F.CrtYd") (width 0.05) (tstamp c344a6a0-7374-4359-b1a5-95c13b24b73f))
(fp_line (start -1.25 1.5) (end 11.4 1.5) (layer "F.CrtYd") (width 0.05) (tstamp cfc73174-98ea-4dd1-9d1b-9c32ed71a30a))
(pad "1" thru_hole circle locked (at 0 0) (size 1.99898 1.99898) (drill 1.00076) (layers *.Cu *.SilkS *.Mask)
(net 8 "Net-(Q3-PadG)") (tstamp 2f0051b5-3828-4715-9b09-e8002ef6d108))
(pad "2" thru_hole circle locked (at 10.16 0) (size 1.99898 1.99898) (drill 1.00076) (layers *.Cu *.SilkS *.Mask)
(net 2 "GND") (tstamp a651852a-2219-44a7-bd60-843c074d9c51))
(model "Resistors_ThroughHole.3dshapes/Resistor_Horizontal_RM10mm.wrl"
(offset (xyz 5.079999924 0 0))
(scale (xyz 0.4 0.4 0.4))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistors_ThroughHole:Resistor_Horizontal_RM10mm" (layer "F.Cu")
(tedit 574F0D7B) (tstamp 00000000-0000-0000-0000-00005745aee4)
(at 199.39 63.5 180)
(descr "Resistor, Axial, RM 10mm, 1/3W")
(tags "Resistor Axial RM 10mm 1/3W")
(path "/00000000-0000-0000-0000-000054d12cda")
(attr through_hole)
(fp_text reference "R9" (at 5.32892 -3.50012 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a9c1e3f9-3d39-4d86-ab7f-b5c056abf843)
)
(fp_text value "100k" (at 5.08 0 180) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4bb5d811-fa48-4d80-b3f9-de4f06a99417)
)
(fp_line (start 7.62 -1.27) (end 7.62 1.27) (layer "F.SilkS") (width 0.15) (tstamp 00ce4a01-bfd8-4bf1-9c37-bc4015dae5af))
(fp_line (start 7.62 0) (end 8.89 0) (layer "F.SilkS") (width 0.15) (tstamp 3b4cce69-d82d-4ba9-9a50-dab535767734))
(fp_line (start 2.54 0) (end 1.27 0) (layer "F.SilkS") (width 0.15) (tstamp 65b1dbcc-c9d9-40a7-8b04-78ef7e22c1a1))
(fp_line (start 2.54 -1.27) (end 7.62 -1.27) (layer "F.SilkS") (width 0.15) (tstamp c2098a87-d241-4a3e-bda8-5653cbfd347a))
(fp_line (start 7.62 1.27) (end 2.54 1.27) (layer "F.SilkS") (width 0.15) (tstamp e2753c4a-117c-40b4-ab0c-1b27f18606be))
(fp_line (start 2.54 1.27) (end 2.54 -1.27) (layer "F.SilkS") (width 0.15) (tstamp e4f6fde3-594c-4eb7-8139-d0d9398b89c8))
(fp_line (start -1.25 1.5) (end 11.4 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 038b0213-4468-4552-a9ab-6302054cf958))
(fp_line (start -1.25 1.5) (end -1.25 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 927a9186-8aee-472a-b50b-0fedd0c213cf))
(fp_line (start -1.25 -1.5) (end 11.4 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 9bc2ec09-d6d7-40e1-bf61-345daaa25a62))
(fp_line (start 11.4 -1.5) (end 11.4 1.5) (layer "F.CrtYd") (width 0.05) (tstamp eb596c55-727b-4730-97e8-678f294e1314))
(pad "1" thru_hole circle locked (at 0 0 180) (size 1.99898 1.99898) (drill 1.00076) (layers *.Cu *.SilkS *.Mask)
(net 10 "Net-(Q4-PadG)") (tstamp 476d2555-89f8-4dc5-badc-6f77a7574d5b))
(pad "2" thru_hole circle locked (at 10.16 0 180) (size 1.99898 1.99898) (drill 1.00076) (layers *.Cu *.SilkS *.Mask)
(net 2 "GND") (tstamp c31c07a9-41ba-4d35-b7f6-6f5e08a47110))
(model "Resistors_ThroughHole.3dshapes/Resistor_Horizontal_RM10mm.wrl"
(offset (xyz 5.079999924 0 0))
(scale (xyz 0.4 0.4 0.4))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistors_ThroughHole:Resistor_Horizontal_RM10mm" (layer "F.Cu")
(tedit 574F0EF0) (tstamp 00000000-0000-0000-0000-00005745aeea)
(at 157.48 81.28 -90)
(descr "Resistor, Axial, RM 10mm, 1/3W")
(tags "Resistor Axial RM 10mm 1/3W")
(path "/00000000-0000-0000-0000-000054d54c2a")
(attr through_hole)
(fp_text reference "R11" (at 12.7 0 -90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0fdf7411-864f-43c1-8171-39bb76d6d272)
)
(fp_text value "10k" (at 5.08 0 -90) (layer "Cmts.User")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 12ef4187-7fc3-413c-a94e-a98263ae5d3c)
)
(fp_line (start 2.54 1.27) (end 2.54 -1.27) (layer "F.SilkS") (width 0.15) (tstamp 1379bc2a-56df-451a-a9dc-9b3324a01f29))
(fp_line (start 2.54 -1.27) (end 7.62 -1.27) (layer "F.SilkS") (width 0.15) (tstamp 54892f72-386a-4fc6-a5a8-50edae5c912a))
(fp_line (start 7.62 -1.27) (end 7.62 1.27) (layer "F.SilkS") (width 0.15) (tstamp aad7922c-93a9-4711-bd34-a32a902d9d9d))
(fp_line (start 7.62 0) (end 8.89 0) (layer "F.SilkS") (width 0.15) (tstamp bb187237-2516-4ce7-bf7d-14bcb42689f5))
(fp_line (start 7.62 1.27) (end 2.54 1.27) (layer "F.SilkS") (width 0.15) (tstamp ded5037c-2c85-4821-9d68-621d8ca48e79))
(fp_line (start 2.54 0) (end 1.27 0) (layer "F.SilkS") (width 0.15) (tstamp f4fb7b8e-a51b-4d69-a888-4eff0f33e55b))
(fp_line (start -1.25 1.5) (end -1.25 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 171b5648-04b9-4d1a-a9a4-d21ed5f4b48a))
(fp_line (start 11.4 -1.5) (end 11.4 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 63ad0adc-fb9f-405f-a067-706f3aa8eee7))
(fp_line (start -1.25 1.5) (end 11.4 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 6617e7b5-4e5a-4381-abf5-de528c4c1ffd))
(fp_line (start -1.25 -1.5) (end 11.4 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp eac1c723-2f55-434a-8c25-60125a59b65d))
(pad "1" thru_hole circle locked (at 0 0 270) (size 1.99898 1.99898) (drill 1.00076) (layers *.Cu *.SilkS *.Mask)
(net 43 "Net-(P2-Pad2)") (tstamp 8dbbcb9a-5104-4256-b04d-c99ba916f14c))
(pad "2" thru_hole circle locked (at 10.16 0 270) (size 1.99898 1.99898) (drill 1.00076) (layers *.Cu *.SilkS *.Mask)
(net 42 "Net-(D2-Pad1)") (tstamp 207af223-73dc-45f7-8273-a656c7cc5f2d))
(model "Resistors_ThroughHole.3dshapes/Resistor_Horizontal_RM10mm.wrl"
(offset (xyz 5.079999924 0 0))
(scale (xyz 0.4 0.4 0.4))
(rotate (xyz 0 0 0))