-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathHB-UNI-SEN-WEA.kicad_pcb
1953 lines (1920 loc) · 144 KB
/
HB-UNI-SEN-WEA.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 20171130) (host pcbnew "(5.0.1)-3")
(general
(thickness 1.6)
(drawings 23)
(tracks 264)
(zones 0)
(modules 24)
(nets 29)
)
(page A4)
(layers
(0 F.Cu signal)
(31 B.Cu signal)
(32 B.Adhes user hide)
(33 F.Adhes user hide)
(34 B.Paste user hide)
(35 F.Paste user hide)
(36 B.SilkS user)
(37 F.SilkS user)
(38 B.Mask user)
(39 F.Mask user)
(40 Dwgs.User user hide)
(41 Cmts.User user hide)
(42 Eco1.User user hide)
(43 Eco2.User user hide)
(44 Edge.Cuts user)
(45 Margin user hide)
(46 B.CrtYd user hide)
(47 F.CrtYd user hide)
(48 B.Fab user hide)
(49 F.Fab user hide)
)
(setup
(last_trace_width 0.25)
(trace_clearance 0.2)
(zone_clearance 0.508)
(zone_45_only no)
(trace_min 0.2)
(segment_width 0.2)
(edge_width 0.15)
(via_size 0.6)
(via_drill 0.4)
(via_min_size 0.4)
(via_min_drill 0.3)
(uvia_size 0.3)
(uvia_drill 0.1)
(uvias_allowed no)
(uvia_min_size 0.2)
(uvia_min_drill 0.1)
(pcb_text_width 0.3)
(pcb_text_size 1.5 1.5)
(mod_edge_width 0.15)
(mod_text_size 1 1)
(mod_text_width 0.15)
(pad_size 2 2)
(pad_drill 1.1)
(pad_to_mask_clearance 0.2)
(solder_mask_min_width 0.25)
(aux_axis_origin 0 0)
(visible_elements 7FFEFF7F)
(pcbplotparams
(layerselection 0x010f0_80000001)
(usegerberextensions false)
(usegerberattributes false)
(usegerberadvancedattributes false)
(creategerberjobfile false)
(excludeedgelayer true)
(linewidth 0.100000)
(plotframeref false)
(viasonmask false)
(mode 1)
(useauxorigin false)
(hpglpennumber 1)
(hpglpenspeed 20)
(hpglpendiameter 15.000000)
(psnegative false)
(psa4output false)
(plotreference true)
(plotvalue true)
(plotinvisibletext false)
(padsonsilk false)
(subtractmaskfromsilk true)
(outputformat 1)
(mirror false)
(drillshape 0)
(scaleselection 1)
(outputdirectory "Gerber/"))
)
(net 0 "")
(net 1 +3V3)
(net 2 GND)
(net 3 "Net-(U2-Pad6)")
(net 4 "Net-(SW1-Pad1)")
(net 5 /D5)
(net 6 /D6)
(net 7 /SS)
(net 8 /D2)
(net 9 /SCL)
(net 10 /SDA)
(net 11 /A2)
(net 12 /A3)
(net 13 /MOSI)
(net 14 /SCK)
(net 15 /MISO)
(net 16 VCC)
(net 17 "Net-(J8-Pad2)")
(net 18 "Net-(C1-Pad1)")
(net 19 "Net-(Q1-Pad2)")
(net 20 /D9)
(net 21 /D4)
(net 22 "Net-(U1-Pad10)")
(net 23 /D3)
(net 24 /D7)
(net 25 "Net-(U1-Pad27)")
(net 26 "Net-(U1-Pad28)")
(net 27 "Net-(U1-Pad5)")
(net 28 "Net-(U1-Pad6)")
(net_class Default "Dies ist die voreingestellte Netzklasse."
(clearance 0.2)
(trace_width 0.25)
(via_dia 0.6)
(via_drill 0.4)
(uvia_dia 0.3)
(uvia_drill 0.1)
(add_net /A2)
(add_net /A3)
(add_net /D2)
(add_net /D3)
(add_net /D4)
(add_net /D5)
(add_net /D6)
(add_net /D7)
(add_net /D9)
(add_net /MISO)
(add_net /MOSI)
(add_net /SCK)
(add_net /SCL)
(add_net /SDA)
(add_net /SS)
(add_net "Net-(C1-Pad1)")
(add_net "Net-(J8-Pad2)")
(add_net "Net-(Q1-Pad2)")
(add_net "Net-(SW1-Pad1)")
(add_net "Net-(U1-Pad10)")
(add_net "Net-(U1-Pad27)")
(add_net "Net-(U1-Pad28)")
(add_net "Net-(U1-Pad5)")
(add_net "Net-(U1-Pad6)")
(add_net "Net-(U2-Pad6)")
)
(net_class VCC ""
(clearance 0.2)
(trace_width 0.4)
(via_dia 0.6)
(via_drill 0.4)
(uvia_dia 0.3)
(uvia_drill 0.1)
(add_net +3V3)
(add_net GND)
(add_net VCC)
)
(module Resistors_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal (layer F.Cu) (tedit 5B66E8CA) (tstamp 5B60ABE6)
(at 163.195 96.52 180)
(descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=10.16mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
(tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 10.16mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
(path /5B60CA75)
(fp_text reference R1 (at 0.635 -1.905 180) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 10K (at 5.08 2.31 180) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 1.93 -1.25) (end 1.93 1.25) (layer F.Fab) (width 0.1))
(fp_line (start 1.93 1.25) (end 8.23 1.25) (layer F.Fab) (width 0.1))
(fp_line (start 8.23 1.25) (end 8.23 -1.25) (layer F.Fab) (width 0.1))
(fp_line (start 8.23 -1.25) (end 1.93 -1.25) (layer F.Fab) (width 0.1))
(fp_line (start 0 0) (end 1.93 0) (layer F.Fab) (width 0.1))
(fp_line (start 10.16 0) (end 8.23 0) (layer F.Fab) (width 0.1))
(fp_line (start 1.87 -1.31) (end 1.87 1.31) (layer F.SilkS) (width 0.12))
(fp_line (start 1.87 1.31) (end 8.29 1.31) (layer F.SilkS) (width 0.12))
(fp_line (start 8.29 1.31) (end 8.29 -1.31) (layer F.SilkS) (width 0.12))
(fp_line (start 8.29 -1.31) (end 1.87 -1.31) (layer F.SilkS) (width 0.12))
(fp_line (start 0.98 0) (end 1.87 0) (layer F.SilkS) (width 0.12))
(fp_line (start 9.18 0) (end 8.29 0) (layer F.SilkS) (width 0.12))
(fp_line (start -1.05 -1.6) (end -1.05 1.6) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.05 1.6) (end 11.25 1.6) (layer F.CrtYd) (width 0.05))
(fp_line (start 11.25 1.6) (end 11.25 -1.6) (layer F.CrtYd) (width 0.05))
(fp_line (start 11.25 -1.6) (end -1.05 -1.6) (layer F.CrtYd) (width 0.05))
(pad 1 thru_hole circle (at 0 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 19 "Net-(Q1-Pad2)"))
(pad 2 thru_hole oval (at 10.16 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 20 /D9))
(model ${KISYS3DMOD}/Resistors_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal.wrl
(at (xyz 0 0 0))
(scale (xyz 0.393701 0.393701 0.393701))
(rotate (xyz 0 0 0))
)
)
(module Homebrew:ArduinoProMini (layer F.Cu) (tedit 5B621676) (tstamp 5B60AC61)
(at 132.08 124.46)
(path /5AF60EC1)
(fp_text reference U1 (at 3.81 -13.97) (layer F.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value ArduinoProMini (at 16.51 -8.89) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text user GND (at 29.21 -3.175) (layer B.SilkS)
(effects (font (size 0.6 0.6) (thickness 0.15)) (justify mirror))
)
(fp_text user GND (at 29.21 -5.08) (layer B.SilkS)
(effects (font (size 0.6 0.6) (thickness 0.15)) (justify mirror))
)
(fp_text user VCC (at 29.21 -7.62) (layer F.SilkS)
(effects (font (size 0.6 0.6) (thickness 0.15)))
)
(fp_text user RXI (at 29.21 -10.16) (layer F.SilkS)
(effects (font (size 0.6 0.6) (thickness 0.15)))
)
(fp_text user TXD (at 29.21 -12.7) (layer F.SilkS)
(effects (font (size 0.6 0.6) (thickness 0.15)))
)
(fp_text user DTR (at 29.21 -14.605) (layer F.SilkS)
(effects (font (size 0.6 0.6) (thickness 0.15)))
)
(fp_text user GND (at 29.21 -3.175) (layer F.SilkS)
(effects (font (size 0.6 0.6) (thickness 0.15)))
)
(fp_text user GND (at 29.21 -5.08) (layer F.SilkS)
(effects (font (size 0.6 0.6) (thickness 0.15)))
)
(fp_text user VCC (at 29.21 -7.62) (layer B.SilkS)
(effects (font (size 0.6 0.6) (thickness 0.15)) (justify mirror))
)
(fp_text user RXI (at 29.21 -10.16) (layer B.SilkS)
(effects (font (size 0.6 0.6) (thickness 0.15)) (justify mirror))
)
(fp_text user TXD (at 29.21 -12.7) (layer B.SilkS)
(effects (font (size 0.6 0.6) (thickness 0.15)) (justify mirror))
)
(fp_text user DTR (at 29.21 -14.605) (layer B.SilkS)
(effects (font (size 0.6 0.6) (thickness 0.15)) (justify mirror))
)
(fp_circle (center 31.75 -2.54) (end 31.75 -1.905) (layer B.SilkS) (width 0.15))
(fp_circle (center 31.75 -5.08) (end 31.75 -4.445) (layer B.SilkS) (width 0.15))
(fp_circle (center 31.75 -7.62) (end 31.75 -6.985) (layer B.SilkS) (width 0.15))
(fp_circle (center 31.75 -10.16) (end 31.75 -9.525) (layer B.SilkS) (width 0.15))
(fp_circle (center 31.75 -12.7) (end 31.75 -12.065) (layer B.SilkS) (width 0.15))
(fp_circle (center 31.75 -15.24) (end 31.75 -14.605) (layer B.SilkS) (width 0.15))
(fp_circle (center 31.75 -2.54) (end 31.75 -1.905) (layer F.SilkS) (width 0.15))
(fp_circle (center 31.75 -5.08) (end 31.75 -4.445) (layer F.SilkS) (width 0.15))
(fp_circle (center 31.75 -7.62) (end 31.75 -6.985) (layer F.SilkS) (width 0.15))
(fp_circle (center 31.75 -10.16) (end 31.75 -9.525) (layer F.SilkS) (width 0.15))
(fp_circle (center 31.75 -12.7) (end 31.75 -12.065) (layer F.SilkS) (width 0.15))
(fp_circle (center 31.75 -15.24) (end 31.75 -14.605) (layer F.SilkS) (width 0.15))
(fp_line (start 2.54 -11.43) (end 2.54 -6.35) (layer F.SilkS) (width 0.15))
(fp_line (start 2.54 -6.35) (end 5.08 -6.35) (layer F.SilkS) (width 0.15))
(fp_line (start 5.08 -6.35) (end 5.08 -11.43) (layer F.SilkS) (width 0.15))
(fp_line (start 5.08 -11.43) (end 2.54 -11.43) (layer F.SilkS) (width 0.15))
(fp_line (start 15.24 -3.81) (end 20.32 -8.89) (layer F.SilkS) (width 0.15))
(fp_line (start 20.32 -8.89) (end 15.24 -13.97) (layer F.SilkS) (width 0.15))
(fp_line (start 15.24 -13.97) (end 10.16 -8.89) (layer F.SilkS) (width 0.15))
(fp_line (start 10.16 -8.89) (end 15.24 -3.81) (layer F.SilkS) (width 0.15))
(fp_line (start 0 0) (end 33.02 0) (layer F.SilkS) (width 0.15))
(fp_line (start 33.02 0) (end 33.02 -17.78) (layer F.SilkS) (width 0.15))
(fp_line (start 33.02 -17.78) (end 0 -17.78) (layer F.SilkS) (width 0.15))
(fp_line (start 0 -17.78) (end 0 0) (layer F.SilkS) (width 0.15))
(pad "" connect circle (at 10.16 -3.81) (size 1.8 1.8) (layers Eco2.User))
(pad "" connect circle (at 7.62 -3.81) (size 1.8 1.8) (layers Eco2.User))
(pad 27 connect circle (at 1.27 -6.35) (size 1.8 1.8) (layers Eco2.User)
(net 25 "Net-(U1-Pad27)"))
(pad 28 connect circle (at 1.27 -3.81) (size 1.8 1.8) (layers Eco2.User)
(net 26 "Net-(U1-Pad28)"))
(pad 1 thru_hole circle (at 1.27 -1.27) (size 1.8 1.8) (drill 1) (layers *.Cu *.Mask)
(net 7 /SS))
(pad 2 thru_hole circle (at 3.81 -1.27) (size 1.8 1.8) (drill 1) (layers *.Cu *.Mask)
(net 13 /MOSI))
(pad 3 thru_hole circle (at 6.35 -1.27) (size 1.8 1.8) (drill 1) (layers *.Cu *.Mask)
(net 15 /MISO))
(pad 4 thru_hole circle (at 8.89 -1.27) (size 1.8 1.8) (drill 1) (layers *.Cu *.Mask)
(net 14 /SCK))
(pad 5 connect circle (at 11.43 -1.27) (size 1.8 1.8) (layers Eco2.User)
(net 27 "Net-(U1-Pad5)"))
(pad 6 connect circle (at 13.97 -1.27) (size 1.8 1.8) (layers Eco2.User)
(net 28 "Net-(U1-Pad6)"))
(pad 7 thru_hole circle (at 16.51 -1.27) (size 1.8 1.8) (drill 1) (layers *.Cu *.Mask)
(net 11 /A2))
(pad 8 thru_hole circle (at 19.05 -1.27) (size 1.8 1.8) (drill 1) (layers *.Cu *.Mask)
(net 12 /A3))
(pad 9 thru_hole circle (at 21.59 -1.27) (size 1.8 1.8) (drill 1) (layers *.Cu *.Mask)
(net 1 +3V3))
(pad 10 thru_hole circle (at 24.13 -1.27) (size 1.8 1.8) (drill 1) (layers *.Cu *.Mask)
(net 22 "Net-(U1-Pad10)"))
(pad 11 thru_hole circle (at 26.67 -1.27) (size 1.8 1.8) (drill 1) (layers *.Cu *.Mask)
(net 2 GND))
(pad 12 thru_hole circle (at 29.21 -1.27) (size 1.8 1.8) (drill 1) (layers *.Cu *.Mask)
(net 16 VCC))
(pad 13 thru_hole circle (at 29.21 -16.51) (size 1.8 1.8) (drill 1) (layers *.Cu *.Mask))
(pad 14 connect circle (at 26.67 -16.51) (size 1.8 1.8) (layers Eco2.User))
(pad 15 connect circle (at 24.13 -16.51) (size 1.8 1.8) (layers Eco2.User))
(pad 16 thru_hole circle (at 21.59 -16.51) (size 1.8 1.8) (drill 1) (layers *.Cu *.Mask)
(net 2 GND))
(pad 17 thru_hole circle (at 19.05 -16.51) (size 1.8 1.8) (drill 1) (layers *.Cu *.Mask)
(net 8 /D2))
(pad 18 thru_hole circle (at 16.51 -16.51) (size 1.8 1.8) (drill 1) (layers *.Cu *.Mask)
(net 23 /D3))
(pad 19 thru_hole circle (at 13.97 -16.51) (size 1.8 1.8) (drill 1) (layers *.Cu *.Mask)
(net 21 /D4))
(pad 20 thru_hole circle (at 11.43 -16.51) (size 1.8 1.8) (drill 1) (layers *.Cu *.Mask)
(net 5 /D5))
(pad 21 thru_hole circle (at 8.89 -16.51) (size 1.8 1.8) (drill 1) (layers *.Cu *.Mask)
(net 6 /D6))
(pad 22 thru_hole circle (at 6.35 -16.51) (size 1.8 1.8) (drill 1) (layers *.Cu *.Mask)
(net 24 /D7))
(pad 23 thru_hole circle (at 3.81 -16.51) (size 1.8 1.8) (drill 1) (layers *.Cu *.Mask)
(net 4 "Net-(SW1-Pad1)"))
(pad 24 thru_hole circle (at 1.27 -16.51) (size 1.8 1.8) (drill 1) (layers *.Cu *.Mask)
(net 20 /D9))
(pad 25 thru_hole circle (at 17.78 -3.81) (size 1.8 1.8) (drill 1) (layers *.Cu *.Mask)
(net 10 /SDA))
(pad 26 thru_hole circle (at 20.32 -3.81) (size 1.8 1.8) (drill 1) (layers *.Cu *.Mask)
(net 9 /SCL))
)
(module Mounting_Holes:MountingHole_2.2mm_M2 (layer F.Cu) (tedit 5B64B0FA) (tstamp 5B64AEE7)
(at 149.225 110.49)
(descr "Mounting Hole 2.2mm, no annular, M2")
(tags "mounting hole 2.2mm no annular m2")
(attr virtual)
(fp_text reference REF** (at 0 -3.2) (layer F.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value MountingHole_2.2mm_M2 (at 0 3.2) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text user %R (at 0.3 0) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_circle (center 0 0) (end 2.2 0) (layer Cmts.User) (width 0.15))
(fp_circle (center 0 0) (end 2.45 0) (layer F.CrtYd) (width 0.05))
(pad "" np_thru_hole circle (at 0 0) (size 1.5 1.5) (drill 1.5) (layers *.Cu *.Mask))
)
(module Mounting_Holes:MountingHole_2.2mm_M2 (layer F.Cu) (tedit 5B64B104) (tstamp 5B64AE82)
(at 151.765 110.49)
(descr "Mounting Hole 2.2mm, no annular, M2")
(tags "mounting hole 2.2mm no annular m2")
(attr virtual)
(fp_text reference REF** (at 0 -3.2) (layer F.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value MountingHole_2.2mm_M2 (at 0 3.2) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text user %R (at 0.3 0) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_circle (center 0 0) (end 2.2 0) (layer Cmts.User) (width 0.15))
(fp_circle (center 0 0) (end 2.45 0) (layer F.CrtYd) (width 0.05))
(pad "" np_thru_hole circle (at 0 0) (size 1.5 1.5) (drill 1.5) (layers *.Cu *.Mask))
)
(module Mounting_Holes:MountingHole_2.2mm_M2 (layer F.Cu) (tedit 5B64B0DF) (tstamp 5B64AE0B)
(at 127.635 92.71)
(descr "Mounting Hole 2.2mm, no annular, M2")
(tags "mounting hole 2.2mm no annular m2")
(attr virtual)
(fp_text reference REF** (at 0 -3.2) (layer F.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value MountingHole_2.2mm_M2 (at 0 3.2) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text user %R (at 0.3 0) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_circle (center 0 0) (end 2.2 0) (layer Cmts.User) (width 0.15))
(fp_circle (center 0 0) (end 2.45 0) (layer F.CrtYd) (width 0.05))
(pad "" np_thru_hole circle (at 0 0) (size 1.5 1.5) (drill 1.5) (layers *.Cu *.Mask))
)
(module Mounting_Holes:MountingHole_2.2mm_M2 (layer F.Cu) (tedit 5B64B0E4) (tstamp 5B64ADF4)
(at 125.095 92.71)
(descr "Mounting Hole 2.2mm, no annular, M2")
(tags "mounting hole 2.2mm no annular m2")
(attr virtual)
(fp_text reference REF** (at 0 -3.2) (layer F.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value MountingHole_2.2mm_M2 (at 0 3.2) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text user %R (at 0.3 0) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_circle (center 0 0) (end 2.2 0) (layer Cmts.User) (width 0.15))
(fp_circle (center 0 0) (end 2.45 0) (layer F.CrtYd) (width 0.05))
(pad "" np_thru_hole circle (at 0 0) (size 1.5 1.5) (drill 1.5) (layers *.Cu *.Mask))
)
(module Mounting_Holes:MountingHole_2.2mm_M2 (layer F.Cu) (tedit 5B64B0F1) (tstamp 5B64ADE3)
(at 127.635 123.19)
(descr "Mounting Hole 2.2mm, no annular, M2")
(tags "mounting hole 2.2mm no annular m2")
(attr virtual)
(fp_text reference REF** (at 0 -3.2) (layer F.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value MountingHole_2.2mm_M2 (at 0 3.2) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text user %R (at 0.3 0) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_circle (center 0 0) (end 2.2 0) (layer Cmts.User) (width 0.15))
(fp_circle (center 0 0) (end 2.45 0) (layer F.CrtYd) (width 0.05))
(pad "" np_thru_hole circle (at 0 0) (size 1.5 1.5) (drill 1.5) (layers *.Cu *.Mask))
)
(module Mounting_Holes:MountingHole_2.2mm_M2 (layer F.Cu) (tedit 5B64B0EB) (tstamp 5B64ACD2)
(at 125.095 123.19)
(descr "Mounting Hole 2.2mm, no annular, M2")
(tags "mounting hole 2.2mm no annular m2")
(attr virtual)
(fp_text reference REF** (at 0 -3.2) (layer F.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value MountingHole_2.2mm_M2 (at 0 3.2) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text user %R (at 0.3 0) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_circle (center 0 0) (end 2.2 0) (layer Cmts.User) (width 0.15))
(fp_circle (center 0 0) (end 2.45 0) (layer F.CrtYd) (width 0.05))
(pad "" np_thru_hole circle (at 0 0) (size 1.5 1.5) (drill 1.5) (layers *.Cu *.Mask))
)
(module Connectors_Molex:Molex_SPOX-5267_22-03-5045_04x2.54mm_Straight (layer F.Cu) (tedit 5B621A18) (tstamp 5B61E79C)
(at 121.92 128.27)
(descr "Connector Headers with Friction Lock, 22-03-5045, http://www.molex.com/pdm_docs/ps/PS-5264-001-001.pdf")
(tags "connector molex SPOX 5267 22-03-5045")
(path /5B60A8CB)
(fp_text reference J4 (at -1.27 -2.286) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value I2C_3 (at 3.81 2.54) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 8.99 1.8) (end 9.99 0.8) (layer F.SilkS) (width 0.12))
(fp_line (start -2.45 -3.1) (end -2.45 1.8) (layer F.SilkS) (width 0.12))
(fp_line (start -2.45 1.8) (end 8.99 1.8) (layer F.SilkS) (width 0.12))
(fp_line (start 9.99 0.8) (end 9.99 -3.1) (layer F.SilkS) (width 0.12))
(fp_line (start 9.99 -3.1) (end -2.45 -3.1) (layer F.SilkS) (width 0.12))
(fp_line (start -2.5 1.85) (end -2.5 -3.15) (layer F.CrtYd) (width 0.05))
(fp_line (start -2.5 -3.15) (end 10.04 -3.15) (layer F.CrtYd) (width 0.05))
(fp_line (start 10.04 -3.15) (end 10.04 1.85) (layer F.CrtYd) (width 0.05))
(fp_line (start 10.04 1.85) (end -2.5 1.85) (layer F.CrtYd) (width 0.05))
(fp_line (start 9.89 -3) (end -2.35 -3) (layer F.Fab) (width 0.1))
(fp_line (start 9.89 0.7) (end 9.89 -3) (layer F.Fab) (width 0.1))
(fp_line (start 8.89 1.7) (end 9.89 0.7) (layer F.Fab) (width 0.1))
(fp_line (start -2.35 1.7) (end 8.89 1.7) (layer F.Fab) (width 0.1))
(fp_line (start -2.35 -3) (end -2.35 1.7) (layer F.Fab) (width 0.1))
(pad 1 thru_hole rect (at 0 0) (size 2 2) (drill 1.2) (layers *.Cu *.Mask)
(net 1 +3V3))
(pad 2 thru_hole circle (at 2.54 0) (size 2 2) (drill 1.2) (layers *.Cu *.Mask)
(net 2 GND))
(pad 3 thru_hole circle (at 5.08 0) (size 2 2) (drill 1.2) (layers *.Cu *.Mask)
(net 9 /SCL))
(pad 4 thru_hole circle (at 7.62 0) (size 2 2) (drill 1.2) (layers *.Cu *.Mask)
(net 10 /SDA))
(model ${KISYS3DMOD}/Connectors_Molex.3dshapes/Molex_SPOX-5267_22-03-5045_04x2.54mm_Straight.wrl
(offset (xyz 3.809999942779541 0.5999987909889222 2.899994156446457))
(scale (xyz 1 1 1))
(rotate (xyz -90 0 180))
)
)
(module Homebrew:CC1101 (layer F.Cu) (tedit 5B61EAE3) (tstamp 5B60AC7D)
(at 140.97 102.235 180)
(path /5B621728)
(fp_text reference U2 (at 19.431 15.367 180) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value CC1101 (at 15.5 15 180) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 1.5 17) (end 1.5 16.5) (layer F.SilkS) (width 0.15))
(fp_line (start 1.5 0) (end 1.5 0.5) (layer F.SilkS) (width 0.15))
(fp_circle (center 20.5 12) (end 20.5 12.5) (layer F.SilkS) (width 0.15))
(fp_circle (center 20.5 7) (end 20.5 7.5) (layer F.SilkS) (width 0.15))
(fp_circle (center 20.5 9.5) (end 21 9.5) (layer F.SilkS) (width 0.15))
(fp_line (start 1.5 0) (end 21.5 0) (layer F.SilkS) (width 0.15))
(fp_line (start 21.5 0) (end 21.5 17) (layer F.SilkS) (width 0.15))
(fp_line (start 21.5 17) (end 1.5 17) (layer F.SilkS) (width 0.15))
(pad 8 thru_hole circle (at 2.5 15.5 180) (size 1.35 1.35) (drill 0.8) (layers *.Cu *.Mask)
(net 7 /SS))
(pad 8 connect rect (at 1.5 15.5 180) (size 1.8 1.35) (layers F.Cu F.Mask)
(net 7 /SS))
(pad 1 thru_hole circle (at 2.5 1.5 180) (size 1.35 1.35) (drill 0.8) (layers *.Cu *.Mask)
(net 1 +3V3))
(pad 2 thru_hole circle (at 2.5 3.5 180) (size 1.35 1.35) (drill 0.8) (layers *.Cu *.Mask)
(net 2 GND))
(pad 3 thru_hole circle (at 2.5 5.5 180) (size 1.35 1.35) (drill 0.8) (layers *.Cu *.Mask)
(net 13 /MOSI))
(pad 4 thru_hole circle (at 2.5 7.5 180) (size 1.35 1.35) (drill 0.8) (layers *.Cu *.Mask)
(net 14 /SCK))
(pad 5 thru_hole circle (at 2.5 9.5 180) (size 1.35 1.35) (drill 0.8) (layers *.Cu *.Mask)
(net 15 /MISO))
(pad 6 thru_hole circle (at 2.5 11.5 180) (size 1.35 1.35) (drill 0.8) (layers *.Cu *.Mask)
(net 3 "Net-(U2-Pad6)"))
(pad 7 thru_hole circle (at 2.5 13.5 180) (size 1.35 1.35) (drill 0.8) (layers *.Cu *.Mask)
(net 8 /D2))
(pad 1 connect rect (at 1.5 1.5 180) (size 1.8 1.35) (layers F.Cu F.Mask)
(net 1 +3V3))
(pad 2 connect rect (at 1.5 3.5 180) (size 1.8 1.35) (layers F.Cu F.Mask)
(net 2 GND))
(pad 3 connect rect (at 1.5 5.5 180) (size 1.8 1.35) (layers F.Cu F.Mask)
(net 13 /MOSI))
(pad 4 connect rect (at 1.5 7.5 180) (size 1.8 1.35) (layers F.Cu F.Mask)
(net 14 /SCK))
(pad 5 connect rect (at 1.5 9.5 180) (size 1.8 1.35) (layers F.Cu F.Mask)
(net 15 /MISO))
(pad 6 connect rect (at 1.5 11.5 180) (size 1.8 1.35) (layers F.Cu F.Mask)
(net 3 "Net-(U2-Pad6)"))
(pad 7 connect rect (at 1.5 13.5 180) (size 1.8 1.35) (layers F.Cu F.Mask)
(net 8 /D2))
)
(module Connectors_Molex:Molex_SPOX-5267_22-03-5045_04x2.54mm_Straight (layer F.Cu) (tedit 5B621A02) (tstamp 5B61E5E4)
(at 134.62 128.27)
(descr "Connector Headers with Friction Lock, 22-03-5045, http://www.molex.com/pdm_docs/ps/PS-5264-001-001.pdf")
(tags "connector molex SPOX 5267 22-03-5045")
(path /5ABE0DC1)
(fp_text reference J3 (at -1.27 -2.286) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value I2C_2 (at 3.81 2.54) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 8.99 1.8) (end 9.99 0.8) (layer F.SilkS) (width 0.12))
(fp_line (start -2.45 -3.1) (end -2.45 1.8) (layer F.SilkS) (width 0.12))
(fp_line (start -2.45 1.8) (end 8.99 1.8) (layer F.SilkS) (width 0.12))
(fp_line (start 9.99 0.8) (end 9.99 -3.1) (layer F.SilkS) (width 0.12))
(fp_line (start 9.99 -3.1) (end -2.45 -3.1) (layer F.SilkS) (width 0.12))
(fp_line (start -2.5 1.85) (end -2.5 -3.15) (layer F.CrtYd) (width 0.05))
(fp_line (start -2.5 -3.15) (end 10.04 -3.15) (layer F.CrtYd) (width 0.05))
(fp_line (start 10.04 -3.15) (end 10.04 1.85) (layer F.CrtYd) (width 0.05))
(fp_line (start 10.04 1.85) (end -2.5 1.85) (layer F.CrtYd) (width 0.05))
(fp_line (start 9.89 -3) (end -2.35 -3) (layer F.Fab) (width 0.1))
(fp_line (start 9.89 0.7) (end 9.89 -3) (layer F.Fab) (width 0.1))
(fp_line (start 8.89 1.7) (end 9.89 0.7) (layer F.Fab) (width 0.1))
(fp_line (start -2.35 1.7) (end 8.89 1.7) (layer F.Fab) (width 0.1))
(fp_line (start -2.35 -3) (end -2.35 1.7) (layer F.Fab) (width 0.1))
(pad 1 thru_hole rect (at 0 0) (size 2 2) (drill 1.2) (layers *.Cu *.Mask)
(net 1 +3V3))
(pad 2 thru_hole circle (at 2.54 0) (size 2 2) (drill 1.2) (layers *.Cu *.Mask)
(net 2 GND))
(pad 3 thru_hole circle (at 5.08 0) (size 2 2) (drill 1.2) (layers *.Cu *.Mask)
(net 9 /SCL))
(pad 4 thru_hole circle (at 7.62 0) (size 2 2) (drill 1.2) (layers *.Cu *.Mask)
(net 10 /SDA))
(model ${KISYS3DMOD}/Connectors_Molex.3dshapes/Molex_SPOX-5267_22-03-5045_04x2.54mm_Straight.wrl
(offset (xyz 3.809999942779541 0.5999987909889222 2.899994156446457))
(scale (xyz 1 1 1))
(rotate (xyz -90 0 180))
)
)
(module Connectors_Molex:Molex_SPOX-5267_22-03-5075_07x2.54mm_Straight (layer F.Cu) (tedit 5B61EAA5) (tstamp 5B61E463)
(at 144.78 103.505 90)
(descr "Connector Headers with Friction Lock, 22-03-5075, http://www.molex.com/pdm_docs/ps/PS-5264-001-001.pdf")
(tags "connector molex SPOX 5267 22-03-5075")
(path /5B60CD7F)
(fp_text reference J9 (at -1.397 -2.286 90) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value LIGHTNING (at 7.62 2.54 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 16.61 1.8) (end 17.61 0.8) (layer F.SilkS) (width 0.12))
(fp_line (start -2.45 -3.1) (end -2.45 1.8) (layer F.SilkS) (width 0.12))
(fp_line (start -2.45 1.8) (end 16.61 1.8) (layer F.SilkS) (width 0.12))
(fp_line (start 17.61 0.8) (end 17.61 -3.1) (layer F.SilkS) (width 0.12))
(fp_line (start 17.61 -3.1) (end -2.45 -3.1) (layer F.SilkS) (width 0.12))
(fp_line (start -2.5 1.85) (end -2.5 -3.15) (layer F.CrtYd) (width 0.05))
(fp_line (start -2.5 -3.15) (end 17.66 -3.15) (layer F.CrtYd) (width 0.05))
(fp_line (start 17.66 -3.15) (end 17.66 1.85) (layer F.CrtYd) (width 0.05))
(fp_line (start 17.66 1.85) (end -2.5 1.85) (layer F.CrtYd) (width 0.05))
(fp_line (start 17.51 -3) (end -2.35 -3) (layer F.Fab) (width 0.1))
(fp_line (start 17.51 0.7) (end 17.51 -3) (layer F.Fab) (width 0.1))
(fp_line (start 16.51 1.7) (end 17.51 0.7) (layer F.Fab) (width 0.1))
(fp_line (start -2.35 1.7) (end 16.51 1.7) (layer F.Fab) (width 0.1))
(fp_line (start -2.35 -3) (end -2.35 1.7) (layer F.Fab) (width 0.1))
(pad 1 thru_hole rect (at 0 0 90) (size 2 2.6) (drill 1.2) (layers *.Cu *.Mask)
(net 1 +3V3))
(pad 2 thru_hole oval (at 2.54 0 90) (size 2 2.6) (drill 1.2) (layers *.Cu *.Mask)
(net 2 GND))
(pad 3 thru_hole oval (at 5.08 0 90) (size 2 2.6) (drill 1.2) (layers *.Cu *.Mask)
(net 24 /D7))
(pad 4 thru_hole oval (at 7.62 0 90) (size 2 2.6) (drill 1.2) (layers *.Cu *.Mask)
(net 23 /D3))
(pad 5 thru_hole oval (at 10.16 0 90) (size 2 2.6) (drill 1.2) (layers *.Cu *.Mask)
(net 13 /MOSI))
(pad 6 thru_hole oval (at 12.7 0 90) (size 2 2.6) (drill 1.2) (layers *.Cu *.Mask)
(net 14 /SCK))
(pad 7 thru_hole oval (at 15.24 0 90) (size 2 2.6) (drill 1.2) (layers *.Cu *.Mask)
(net 15 /MISO))
(model ${KISYS3DMOD}/Connectors_Molex.3dshapes/Molex_SPOX-5267_22-03-5075_07x2.54mm_Straight.wrl
(offset (xyz 7.619999885559082 0.5999987909889222 2.899994156446457))
(scale (xyz 1 1 1))
(rotate (xyz -90 0 180))
)
)
(module Resistors_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal (layer F.Cu) (tedit 5B66E8CF) (tstamp 5B60ABFC)
(at 153.035 93.345)
(descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=10.16mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
(tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 10.16mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
(path /5B60BADF)
(fp_text reference R2 (at 9.525 -1.905) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 100K (at 5.08 2.31) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 1.93 -1.25) (end 1.93 1.25) (layer F.Fab) (width 0.1))
(fp_line (start 1.93 1.25) (end 8.23 1.25) (layer F.Fab) (width 0.1))
(fp_line (start 8.23 1.25) (end 8.23 -1.25) (layer F.Fab) (width 0.1))
(fp_line (start 8.23 -1.25) (end 1.93 -1.25) (layer F.Fab) (width 0.1))
(fp_line (start 0 0) (end 1.93 0) (layer F.Fab) (width 0.1))
(fp_line (start 10.16 0) (end 8.23 0) (layer F.Fab) (width 0.1))
(fp_line (start 1.87 -1.31) (end 1.87 1.31) (layer F.SilkS) (width 0.12))
(fp_line (start 1.87 1.31) (end 8.29 1.31) (layer F.SilkS) (width 0.12))
(fp_line (start 8.29 1.31) (end 8.29 -1.31) (layer F.SilkS) (width 0.12))
(fp_line (start 8.29 -1.31) (end 1.87 -1.31) (layer F.SilkS) (width 0.12))
(fp_line (start 0.98 0) (end 1.87 0) (layer F.SilkS) (width 0.12))
(fp_line (start 9.18 0) (end 8.29 0) (layer F.SilkS) (width 0.12))
(fp_line (start -1.05 -1.6) (end -1.05 1.6) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.05 1.6) (end 11.25 1.6) (layer F.CrtYd) (width 0.05))
(fp_line (start 11.25 1.6) (end 11.25 -1.6) (layer F.CrtYd) (width 0.05))
(fp_line (start 11.25 -1.6) (end -1.05 -1.6) (layer F.CrtYd) (width 0.05))
(pad 1 thru_hole circle (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 12 /A3))
(pad 2 thru_hole oval (at 10.16 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 21 /D4))
(model ${KISYS3DMOD}/Resistors_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal.wrl
(at (xyz 0 0 0))
(scale (xyz 0.393701 0.393701 0.393701))
(rotate (xyz 0 0 0))
)
)
(module Buttons_Switches_THT:SW_PUSH_6mm_h5mm (layer F.Cu) (tedit 5B676E27) (tstamp 5B60AC1B)
(at 123.825 108.585)
(descr "tactile push button, 6x6mm e.g. PHAP33xx series, height=5mm")
(tags "tact sw push 6mm")
(path /5ABE0E28)
(fp_text reference SW1 (at 3.175 6.985 180) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value CONFIG_BUTTON (at 3.75 6.7) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text user %R (at 3.25 2.25) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 3.25 -0.75) (end 6.25 -0.75) (layer F.Fab) (width 0.1))
(fp_line (start 6.25 -0.75) (end 6.25 5.25) (layer F.Fab) (width 0.1))
(fp_line (start 6.25 5.25) (end 0.25 5.25) (layer F.Fab) (width 0.1))
(fp_line (start 0.25 5.25) (end 0.25 -0.75) (layer F.Fab) (width 0.1))
(fp_line (start 0.25 -0.75) (end 3.25 -0.75) (layer F.Fab) (width 0.1))
(fp_line (start 7.75 6) (end 8 6) (layer F.CrtYd) (width 0.05))
(fp_line (start 8 6) (end 8 5.75) (layer F.CrtYd) (width 0.05))
(fp_line (start 7.75 -1.5) (end 8 -1.5) (layer F.CrtYd) (width 0.05))
(fp_line (start 8 -1.5) (end 8 -1.25) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.5 -1.25) (end -1.5 -1.5) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.5 -1.5) (end -1.25 -1.5) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.5 5.75) (end -1.5 6) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.5 6) (end -1.25 6) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.25 -1.5) (end 7.75 -1.5) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.5 5.75) (end -1.5 -1.25) (layer F.CrtYd) (width 0.05))
(fp_line (start 7.75 6) (end -1.25 6) (layer F.CrtYd) (width 0.05))
(fp_line (start 8 -1.25) (end 8 5.75) (layer F.CrtYd) (width 0.05))
(fp_line (start 1 5.5) (end 5.5 5.5) (layer F.SilkS) (width 0.12))
(fp_line (start -0.25 1.5) (end -0.25 3) (layer F.SilkS) (width 0.12))
(fp_line (start 5.5 -1) (end 1 -1) (layer F.SilkS) (width 0.12))
(fp_line (start 6.75 3) (end 6.75 1.5) (layer F.SilkS) (width 0.12))
(fp_circle (center 3.25 2.25) (end 1.25 2.5) (layer F.Fab) (width 0.1))
(pad 2 thru_hole circle (at 0 4.5 90) (size 2 2) (drill 1.1) (layers *.Cu *.Mask)
(net 2 GND))
(pad "" thru_hole circle (at 0 0 90) (size 2 2) (drill 1.1) (layers *.Cu *.Mask))
(pad 2 thru_hole circle (at 6.5 4.5 90) (size 2 2) (drill 1.1) (layers *.Cu *.Mask)
(net 2 GND))
(pad 1 thru_hole circle (at 6.5 0 90) (size 2 2) (drill 1.1) (layers *.Cu *.Mask)
(net 4 "Net-(SW1-Pad1)"))
(model ${KISYS3DMOD}/Buttons_Switches_THT.3dshapes/SW_PUSH_6mm_h5mm.wrl
(offset (xyz 0.1269999980926514 0 0))
(scale (xyz 0.3937 0.3937 0.3937))
(rotate (xyz 0 0 0))
)
)
(module Capacitors_THT:C_Disc_D3.8mm_W2.6mm_P2.50mm (layer F.Cu) (tedit 5B66E8D5) (tstamp 5B60B010)
(at 161.29 88.265 180)
(descr "C, Disc series, Radial, pin pitch=2.50mm, , diameter*width=3.8*2.6mm^2, Capacitor, http://www.vishay.com/docs/45233/krseries.pdf")
(tags "C Disc series Radial pin pitch 2.50mm diameter 3.8mm width 2.6mm Capacitor")
(path /5B60BBC8)
(fp_text reference C1 (at -1.905 1.27 180) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 1nF (at 1.25 2.61 180) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -0.65 -1.3) (end -0.65 1.3) (layer F.Fab) (width 0.1))
(fp_line (start -0.65 1.3) (end 3.15 1.3) (layer F.Fab) (width 0.1))
(fp_line (start 3.15 1.3) (end 3.15 -1.3) (layer F.Fab) (width 0.1))
(fp_line (start 3.15 -1.3) (end -0.65 -1.3) (layer F.Fab) (width 0.1))
(fp_line (start -0.71 -1.36) (end 3.21 -1.36) (layer F.SilkS) (width 0.12))
(fp_line (start -0.71 1.36) (end 3.21 1.36) (layer F.SilkS) (width 0.12))
(fp_line (start -0.71 -1.36) (end -0.71 -0.75) (layer F.SilkS) (width 0.12))
(fp_line (start -0.71 0.75) (end -0.71 1.36) (layer F.SilkS) (width 0.12))
(fp_line (start 3.21 -1.36) (end 3.21 -0.75) (layer F.SilkS) (width 0.12))
(fp_line (start 3.21 0.75) (end 3.21 1.36) (layer F.SilkS) (width 0.12))
(fp_line (start -1.05 -1.65) (end -1.05 1.65) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.05 1.65) (end 3.55 1.65) (layer F.CrtYd) (width 0.05))
(fp_line (start 3.55 1.65) (end 3.55 -1.65) (layer F.CrtYd) (width 0.05))
(fp_line (start 3.55 -1.65) (end -1.05 -1.65) (layer F.CrtYd) (width 0.05))
(fp_text user %R (at 1.25 0 180) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad 1 thru_hole circle (at 0 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 18 "Net-(C1-Pad1)"))
(pad 2 thru_hole circle (at 2.5 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 12 /A3))
(model ${KISYS3DMOD}/Capacitors_THT.3dshapes/C_Disc_D3.8mm_W2.6mm_P2.50mm.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module TO_SOT_Packages_THT:TO-92_Inline_Narrow_Oval (layer F.Cu) (tedit 5B66E8DD) (tstamp 5B60B03D)
(at 154.305 87.63 270)
(descr "TO-92 leads in-line, narrow, oval pads, drill 0.6mm (see NXP sot054_po.pdf)")
(tags "to-92 sc-43 sc-43a sot54 PA33 transistor")
(path /5B60C3E7)
(fp_text reference Q1 (at -1.27 -2.54) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value MPSA13 (at 1.27 2.79 270) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text user %R (at 1.27 -3.56 270) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -0.53 1.85) (end 3.07 1.85) (layer F.SilkS) (width 0.12))
(fp_line (start -0.5 1.75) (end 3 1.75) (layer F.Fab) (width 0.1))
(fp_line (start -1.46 -2.73) (end 4 -2.73) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.46 -2.73) (end -1.46 2.01) (layer F.CrtYd) (width 0.05))
(fp_line (start 4 2.01) (end 4 -2.73) (layer F.CrtYd) (width 0.05))
(fp_line (start 4 2.01) (end -1.46 2.01) (layer F.CrtYd) (width 0.05))
(fp_arc (start 1.27 0) (end 1.27 -2.48) (angle 135) (layer F.Fab) (width 0.1))
(fp_arc (start 1.27 0) (end 1.27 -2.6) (angle -135) (layer F.SilkS) (width 0.12))
(fp_arc (start 1.27 0) (end 1.27 -2.48) (angle -135) (layer F.Fab) (width 0.1))
(fp_arc (start 1.27 0) (end 1.27 -2.6) (angle 135) (layer F.SilkS) (width 0.12))
(pad 2 thru_hole oval (at 1.27 0 90) (size 0.9 1.5) (drill 0.6) (layers *.Cu *.Mask)
(net 19 "Net-(Q1-Pad2)"))
(pad 3 thru_hole oval (at 2.54 0 90) (size 0.9 1.5) (drill 0.6) (layers *.Cu *.Mask)
(net 17 "Net-(J8-Pad2)"))
(pad 1 thru_hole rect (at 0 0 90) (size 0.9 1.5) (drill 0.6) (layers *.Cu *.Mask)
(net 2 GND))
(model ${KISYS3DMOD}/TO_SOT_Packages_THT.3dshapes/TO-92_Inline_Narrow_Oval.wrl
(offset (xyz 1.269999980926514 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 -90))
)
)
(module Capacitors_THT:CP_Radial_D4.0mm_P1.50mm (layer F.Cu) (tedit 5B61EA6D) (tstamp 5B60CDC8)
(at 128.905 104.775)
(descr "CP, Radial series, Radial, pin pitch=1.50mm, , diameter=4mm, Electrolytic Capacitor")
(tags "CP Radial series Radial pin pitch 1.50mm diameter 4mm Electrolytic Capacitor")
(path /5B60CD03)
(fp_text reference C2 (at 3.81 -1.27) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 10uF (at 0.75 3.31) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_arc (start 0.75 0) (end -1.095996 -0.98) (angle 124.1) (layer F.SilkS) (width 0.12))
(fp_arc (start 0.75 0) (end -1.095996 0.98) (angle -124.1) (layer F.SilkS) (width 0.12))
(fp_arc (start 0.75 0) (end 2.595996 -0.98) (angle 55.9) (layer F.SilkS) (width 0.12))
(fp_circle (center 0.75 0) (end 2.75 0) (layer F.Fab) (width 0.1))
(fp_line (start -1.7 0) (end -0.8 0) (layer F.Fab) (width 0.1))
(fp_line (start -1.25 -0.45) (end -1.25 0.45) (layer F.Fab) (width 0.1))
(fp_line (start 0.75 0.78) (end 0.75 2.05) (layer F.SilkS) (width 0.12))
(fp_line (start 0.75 -2.05) (end 0.75 -0.78) (layer F.SilkS) (width 0.12))
(fp_line (start 0.79 -2.05) (end 0.79 -0.78) (layer F.SilkS) (width 0.12))
(fp_line (start 0.79 0.78) (end 0.79 2.05) (layer F.SilkS) (width 0.12))
(fp_line (start 0.83 -2.049) (end 0.83 -0.78) (layer F.SilkS) (width 0.12))
(fp_line (start 0.83 0.78) (end 0.83 2.049) (layer F.SilkS) (width 0.12))
(fp_line (start 0.87 -2.047) (end 0.87 -0.78) (layer F.SilkS) (width 0.12))
(fp_line (start 0.87 0.78) (end 0.87 2.047) (layer F.SilkS) (width 0.12))
(fp_line (start 0.91 -2.044) (end 0.91 -0.78) (layer F.SilkS) (width 0.12))
(fp_line (start 0.91 0.78) (end 0.91 2.044) (layer F.SilkS) (width 0.12))
(fp_line (start 0.95 -2.041) (end 0.95 -0.78) (layer F.SilkS) (width 0.12))
(fp_line (start 0.95 0.78) (end 0.95 2.041) (layer F.SilkS) (width 0.12))
(fp_line (start 0.99 -2.037) (end 0.99 -0.78) (layer F.SilkS) (width 0.12))
(fp_line (start 0.99 0.78) (end 0.99 2.037) (layer F.SilkS) (width 0.12))
(fp_line (start 1.03 -2.032) (end 1.03 -0.78) (layer F.SilkS) (width 0.12))
(fp_line (start 1.03 0.78) (end 1.03 2.032) (layer F.SilkS) (width 0.12))
(fp_line (start 1.07 -2.026) (end 1.07 -0.78) (layer F.SilkS) (width 0.12))
(fp_line (start 1.07 0.78) (end 1.07 2.026) (layer F.SilkS) (width 0.12))
(fp_line (start 1.11 -2.019) (end 1.11 -0.78) (layer F.SilkS) (width 0.12))
(fp_line (start 1.11 0.78) (end 1.11 2.019) (layer F.SilkS) (width 0.12))
(fp_line (start 1.15 -2.012) (end 1.15 -0.78) (layer F.SilkS) (width 0.12))
(fp_line (start 1.15 0.78) (end 1.15 2.012) (layer F.SilkS) (width 0.12))
(fp_line (start 1.19 -2.004) (end 1.19 -0.78) (layer F.SilkS) (width 0.12))
(fp_line (start 1.19 0.78) (end 1.19 2.004) (layer F.SilkS) (width 0.12))
(fp_line (start 1.23 -1.995) (end 1.23 -0.78) (layer F.SilkS) (width 0.12))
(fp_line (start 1.23 0.78) (end 1.23 1.995) (layer F.SilkS) (width 0.12))
(fp_line (start 1.27 -1.985) (end 1.27 -0.78) (layer F.SilkS) (width 0.12))
(fp_line (start 1.27 0.78) (end 1.27 1.985) (layer F.SilkS) (width 0.12))
(fp_line (start 1.31 -1.974) (end 1.31 -0.78) (layer F.SilkS) (width 0.12))
(fp_line (start 1.31 0.78) (end 1.31 1.974) (layer F.SilkS) (width 0.12))
(fp_line (start 1.35 -1.963) (end 1.35 -0.78) (layer F.SilkS) (width 0.12))
(fp_line (start 1.35 0.78) (end 1.35 1.963) (layer F.SilkS) (width 0.12))
(fp_line (start 1.39 -1.95) (end 1.39 -0.78) (layer F.SilkS) (width 0.12))
(fp_line (start 1.39 0.78) (end 1.39 1.95) (layer F.SilkS) (width 0.12))
(fp_line (start 1.43 -1.937) (end 1.43 -0.78) (layer F.SilkS) (width 0.12))
(fp_line (start 1.43 0.78) (end 1.43 1.937) (layer F.SilkS) (width 0.12))
(fp_line (start 1.471 -1.923) (end 1.471 -0.78) (layer F.SilkS) (width 0.12))
(fp_line (start 1.471 0.78) (end 1.471 1.923) (layer F.SilkS) (width 0.12))
(fp_line (start 1.511 -1.907) (end 1.511 -0.78) (layer F.SilkS) (width 0.12))
(fp_line (start 1.511 0.78) (end 1.511 1.907) (layer F.SilkS) (width 0.12))
(fp_line (start 1.551 -1.891) (end 1.551 -0.78) (layer F.SilkS) (width 0.12))
(fp_line (start 1.551 0.78) (end 1.551 1.891) (layer F.SilkS) (width 0.12))
(fp_line (start 1.591 -1.874) (end 1.591 -0.78) (layer F.SilkS) (width 0.12))
(fp_line (start 1.591 0.78) (end 1.591 1.874) (layer F.SilkS) (width 0.12))
(fp_line (start 1.631 -1.856) (end 1.631 -0.78) (layer F.SilkS) (width 0.12))
(fp_line (start 1.631 0.78) (end 1.631 1.856) (layer F.SilkS) (width 0.12))
(fp_line (start 1.671 -1.837) (end 1.671 -0.78) (layer F.SilkS) (width 0.12))
(fp_line (start 1.671 0.78) (end 1.671 1.837) (layer F.SilkS) (width 0.12))
(fp_line (start 1.711 -1.817) (end 1.711 -0.78) (layer F.SilkS) (width 0.12))
(fp_line (start 1.711 0.78) (end 1.711 1.817) (layer F.SilkS) (width 0.12))
(fp_line (start 1.751 -1.796) (end 1.751 -0.78) (layer F.SilkS) (width 0.12))
(fp_line (start 1.751 0.78) (end 1.751 1.796) (layer F.SilkS) (width 0.12))
(fp_line (start 1.791 -1.773) (end 1.791 -0.78) (layer F.SilkS) (width 0.12))
(fp_line (start 1.791 0.78) (end 1.791 1.773) (layer F.SilkS) (width 0.12))
(fp_line (start 1.831 -1.75) (end 1.831 -0.78) (layer F.SilkS) (width 0.12))
(fp_line (start 1.831 0.78) (end 1.831 1.75) (layer F.SilkS) (width 0.12))
(fp_line (start 1.871 -1.725) (end 1.871 -0.78) (layer F.SilkS) (width 0.12))
(fp_line (start 1.871 0.78) (end 1.871 1.725) (layer F.SilkS) (width 0.12))
(fp_line (start 1.911 -1.699) (end 1.911 -0.78) (layer F.SilkS) (width 0.12))
(fp_line (start 1.911 0.78) (end 1.911 1.699) (layer F.SilkS) (width 0.12))
(fp_line (start 1.951 -1.672) (end 1.951 -0.78) (layer F.SilkS) (width 0.12))
(fp_line (start 1.951 0.78) (end 1.951 1.672) (layer F.SilkS) (width 0.12))
(fp_line (start 1.991 -1.643) (end 1.991 -0.78) (layer F.SilkS) (width 0.12))
(fp_line (start 1.991 0.78) (end 1.991 1.643) (layer F.SilkS) (width 0.12))
(fp_line (start 2.031 -1.613) (end 2.031 -0.78) (layer F.SilkS) (width 0.12))
(fp_line (start 2.031 0.78) (end 2.031 1.613) (layer F.SilkS) (width 0.12))
(fp_line (start 2.071 -1.581) (end 2.071 -0.78) (layer F.SilkS) (width 0.12))
(fp_line (start 2.071 0.78) (end 2.071 1.581) (layer F.SilkS) (width 0.12))
(fp_line (start 2.111 -1.547) (end 2.111 -0.78) (layer F.SilkS) (width 0.12))
(fp_line (start 2.111 0.78) (end 2.111 1.547) (layer F.SilkS) (width 0.12))
(fp_line (start 2.151 -1.512) (end 2.151 -0.78) (layer F.SilkS) (width 0.12))
(fp_line (start 2.151 0.78) (end 2.151 1.512) (layer F.SilkS) (width 0.12))
(fp_line (start 2.191 -1.475) (end 2.191 -0.78) (layer F.SilkS) (width 0.12))
(fp_line (start 2.191 0.78) (end 2.191 1.475) (layer F.SilkS) (width 0.12))
(fp_line (start 2.231 -1.436) (end 2.231 -0.78) (layer F.SilkS) (width 0.12))
(fp_line (start 2.231 0.78) (end 2.231 1.436) (layer F.SilkS) (width 0.12))
(fp_line (start 2.271 -1.395) (end 2.271 -0.78) (layer F.SilkS) (width 0.12))
(fp_line (start 2.271 0.78) (end 2.271 1.395) (layer F.SilkS) (width 0.12))
(fp_line (start 2.311 -1.351) (end 2.311 1.351) (layer F.SilkS) (width 0.12))
(fp_line (start 2.351 -1.305) (end 2.351 1.305) (layer F.SilkS) (width 0.12))
(fp_line (start 2.391 -1.256) (end 2.391 1.256) (layer F.SilkS) (width 0.12))
(fp_line (start 2.431 -1.204) (end 2.431 1.204) (layer F.SilkS) (width 0.12))
(fp_line (start 2.471 -1.148) (end 2.471 1.148) (layer F.SilkS) (width 0.12))
(fp_line (start 2.511 -1.088) (end 2.511 1.088) (layer F.SilkS) (width 0.12))
(fp_line (start 2.551 -1.023) (end 2.551 1.023) (layer F.SilkS) (width 0.12))
(fp_line (start 2.591 -0.952) (end 2.591 0.952) (layer F.SilkS) (width 0.12))
(fp_line (start 2.631 -0.874) (end 2.631 0.874) (layer F.SilkS) (width 0.12))
(fp_line (start 2.671 -0.786) (end 2.671 0.786) (layer F.SilkS) (width 0.12))
(fp_line (start 2.711 -0.686) (end 2.711 0.686) (layer F.SilkS) (width 0.12))
(fp_line (start 2.751 -0.567) (end 2.751 0.567) (layer F.SilkS) (width 0.12))
(fp_line (start 2.791 -0.415) (end 2.791 0.415) (layer F.SilkS) (width 0.12))
(fp_line (start 2.831 -0.165) (end 2.831 0.165) (layer F.SilkS) (width 0.12))
(fp_line (start -1.7 0) (end -0.8 0) (layer F.SilkS) (width 0.12))
(fp_line (start -1.25 -0.45) (end -1.25 0.45) (layer F.SilkS) (width 0.12))
(fp_line (start -1.6 -2.35) (end -1.6 2.35) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.6 2.35) (end 3.1 2.35) (layer F.CrtYd) (width 0.05))
(fp_line (start 3.1 2.35) (end 3.1 -2.35) (layer F.CrtYd) (width 0.05))
(fp_line (start 3.1 -2.35) (end -1.6 -2.35) (layer F.CrtYd) (width 0.05))
(fp_text user %R (at 0.75 0) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad 1 thru_hole rect (at 0 0) (size 1.2 1.2) (drill 0.6) (layers *.Cu *.Mask)
(net 1 +3V3))
(pad 2 thru_hole circle (at 1.5 0) (size 1.2 1.2) (drill 0.6) (layers *.Cu *.Mask)
(net 2 GND))
(model ${KISYS3DMOD}/Capacitors_THT.3dshapes/CP_Radial_D4.0mm_P1.50mm.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Connectors_Molex:Molex_SPOX-5267_22-03-5045_04x2.54mm_Straight (layer F.Cu) (tedit 5B6219E8) (tstamp 5B61E259)
(at 147.32 128.27)
(descr "Connector Headers with Friction Lock, 22-03-5045, http://www.molex.com/pdm_docs/ps/PS-5264-001-001.pdf")
(tags "connector molex SPOX 5267 22-03-5045")
(path /5ABE0D25)
(fp_text reference J2 (at -1.27 -2.286) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value I2C_1 (at 3.81 2.54) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 8.99 1.8) (end 9.99 0.8) (layer F.SilkS) (width 0.12))
(fp_line (start -2.45 -3.1) (end -2.45 1.8) (layer F.SilkS) (width 0.12))
(fp_line (start -2.45 1.8) (end 8.99 1.8) (layer F.SilkS) (width 0.12))
(fp_line (start 9.99 0.8) (end 9.99 -3.1) (layer F.SilkS) (width 0.12))
(fp_line (start 9.99 -3.1) (end -2.45 -3.1) (layer F.SilkS) (width 0.12))
(fp_line (start -2.5 1.85) (end -2.5 -3.15) (layer F.CrtYd) (width 0.05))
(fp_line (start -2.5 -3.15) (end 10.04 -3.15) (layer F.CrtYd) (width 0.05))
(fp_line (start 10.04 -3.15) (end 10.04 1.85) (layer F.CrtYd) (width 0.05))
(fp_line (start 10.04 1.85) (end -2.5 1.85) (layer F.CrtYd) (width 0.05))
(fp_line (start 9.89 -3) (end -2.35 -3) (layer F.Fab) (width 0.1))
(fp_line (start 9.89 0.7) (end 9.89 -3) (layer F.Fab) (width 0.1))
(fp_line (start 8.89 1.7) (end 9.89 0.7) (layer F.Fab) (width 0.1))
(fp_line (start -2.35 1.7) (end 8.89 1.7) (layer F.Fab) (width 0.1))
(fp_line (start -2.35 -3) (end -2.35 1.7) (layer F.Fab) (width 0.1))
(pad 1 thru_hole rect (at 0 0) (size 2 2) (drill 1.2) (layers *.Cu *.Mask)
(net 1 +3V3))
(pad 2 thru_hole circle (at 2.54 0) (size 2 2) (drill 1.2) (layers *.Cu *.Mask)
(net 2 GND))
(pad 3 thru_hole circle (at 5.08 0) (size 2 2) (drill 1.2) (layers *.Cu *.Mask)
(net 9 /SCL))
(pad 4 thru_hole circle (at 7.62 0) (size 2 2) (drill 1.2) (layers *.Cu *.Mask)
(net 10 /SDA))
(model ${KISYS3DMOD}/Connectors_Molex.3dshapes/Molex_SPOX-5267_22-03-5045_04x2.54mm_Straight.wrl
(offset (xyz 3.809999942779541 0.5999987909889222 2.899994156446457))
(scale (xyz 1 1 1))
(rotate (xyz -90 0 180))
)
)
(module Connectors_Molex:Molex_SPOX-5267_22-03-5045_04x2.54mm_Straight (layer F.Cu) (tedit 5B61EAB4) (tstamp 5B61E2EE)
(at 149.86 95.885 90)
(descr "Connector Headers with Friction Lock, 22-03-5045, http://www.molex.com/pdm_docs/ps/PS-5264-001-001.pdf")
(tags "connector molex SPOX 5267 22-03-5045")
(path /5B60B45E)
(fp_text reference J8 (at -1.397 -2.286 90) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value RAIN_SENS (at 3.81 2.54 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 8.99 1.8) (end 9.99 0.8) (layer F.SilkS) (width 0.12))
(fp_line (start -2.45 -3.1) (end -2.45 1.8) (layer F.SilkS) (width 0.12))
(fp_line (start -2.45 1.8) (end 8.99 1.8) (layer F.SilkS) (width 0.12))
(fp_line (start 9.99 0.8) (end 9.99 -3.1) (layer F.SilkS) (width 0.12))
(fp_line (start 9.99 -3.1) (end -2.45 -3.1) (layer F.SilkS) (width 0.12))
(fp_line (start -2.5 1.85) (end -2.5 -3.15) (layer F.CrtYd) (width 0.05))
(fp_line (start -2.5 -3.15) (end 10.04 -3.15) (layer F.CrtYd) (width 0.05))
(fp_line (start 10.04 -3.15) (end 10.04 1.85) (layer F.CrtYd) (width 0.05))
(fp_line (start 10.04 1.85) (end -2.5 1.85) (layer F.CrtYd) (width 0.05))
(fp_line (start 9.89 -3) (end -2.35 -3) (layer F.Fab) (width 0.1))
(fp_line (start 9.89 0.7) (end 9.89 -3) (layer F.Fab) (width 0.1))
(fp_line (start 8.89 1.7) (end 9.89 0.7) (layer F.Fab) (width 0.1))
(fp_line (start -2.35 1.7) (end 8.89 1.7) (layer F.Fab) (width 0.1))
(fp_line (start -2.35 -3) (end -2.35 1.7) (layer F.Fab) (width 0.1))
(pad 1 thru_hole rect (at 0 0 90) (size 2 2.6) (drill 1.2) (layers *.Cu *.Mask)
(net 16 VCC))
(pad 2 thru_hole oval (at 2.54 0 90) (size 2 2.6) (drill 1.2) (layers *.Cu *.Mask)
(net 17 "Net-(J8-Pad2)"))
(pad 3 thru_hole oval (at 5.08 0 90) (size 2 2.6) (drill 1.2) (layers *.Cu *.Mask)
(net 18 "Net-(C1-Pad1)"))
(pad 4 thru_hole oval (at 7.62 0 90) (size 2 2.6) (drill 1.2) (layers *.Cu *.Mask)
(net 2 GND))
(model ${KISYS3DMOD}/Connectors_Molex.3dshapes/Molex_SPOX-5267_22-03-5045_04x2.54mm_Straight.wrl
(offset (xyz 3.809999942779541 0.5999987909889222 2.899994156446457))
(scale (xyz 1 1 1))
(rotate (xyz -90 0 180))
)
)
(module Connectors_Molex:Molex_SPOX-5267_22-03-5025_02x2.54mm_Straight (layer F.Cu) (tedit 5B61EAA8) (tstamp 5B61E5F8)
(at 149.86 103.505 90)
(descr "Connector Headers with Friction Lock, 22-03-5025, http://www.molex.com/pdm_docs/ps/PS-5264-001-001.pdf")
(tags "connector molex SPOX 5267 22-03-5025")