-
Notifications
You must be signed in to change notification settings - Fork 0
/
SensorStation_Accessory_Sound.kicad_pcb
1118 lines (1095 loc) · 72 KB
/
SensorStation_Accessory_Sound.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-g963ef8bb5)")
(general
(thickness 1.6)
(drawings 9)
(tracks 129)
(zones 0)
(modules 15)
(nets 15)
)
(page A4)
(layers
(0 F.Cu signal)
(31 B.Cu signal)
(32 B.Adhes user)
(33 F.Adhes user)
(34 B.Paste user)
(35 F.Paste user)
(36 B.SilkS user)
(37 F.SilkS user)
(38 B.Mask user)
(39 F.Mask user)
(40 Dwgs.User user)
(41 Cmts.User user)
(42 Eco1.User user)
(43 Eco2.User user)
(44 Edge.Cuts user)
(45 Margin user)
(46 B.CrtYd user)
(47 F.CrtYd user)
(48 B.Fab user)
(49 F.Fab user)
)
(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.8)
(via_drill 0.4)
(via_min_size 0.4)
(via_min_drill 0.3)
(uvia_size 0.3)
(uvia_drill 0.1)
(uvias_allowed no)
(uvia_min_size 0.2)
(uvia_min_drill 0.1)
(pcb_text_width 0.3)
(pcb_text_size 1.5 1.5)
(mod_edge_width 0.15)
(mod_text_size 1 1)
(mod_text_width 0.15)
(pad_size 1 1)
(pad_drill 0)
(pad_to_mask_clearance 0.051)
(solder_mask_min_width 0.25)
(aux_axis_origin 0 0)
(visible_elements FFFFFF7F)
(pcbplotparams
(layerselection 0x010fc_ffffffff)
(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 false)
(outputformat 1)
(mirror false)
(drillshape 1)
(scaleselection 1)
(outputdirectory ""))
)
(net 0 "")
(net 1 +3V3)
(net 2 GND)
(net 3 "Net-(C2-Pad2)")
(net 4 "Net-(C2-Pad1)")
(net 5 "Net-(C3-Pad1)")
(net 6 CS)
(net 7 "Net-(C4-Pad2)")
(net 8 SCL)
(net 9 SDA)
(net 10 "Net-(L1-Pad1)")
(net 11 "Net-(L1-Pad2)")
(net 12 "Net-(LS1-Pad2)")
(net 13 "Net-(R1-Pad2)")
(net 14 "Net-(R2-Pad2)")
(net_class Default "This is the default net class."
(clearance 0.2)
(trace_width 0.25)
(via_dia 0.8)
(via_drill 0.4)
(uvia_dia 0.3)
(uvia_drill 0.1)
(add_net +3V3)
(add_net CS)
(add_net GND)
(add_net "Net-(C2-Pad1)")
(add_net "Net-(C2-Pad2)")
(add_net "Net-(C3-Pad1)")
(add_net "Net-(C4-Pad2)")
(add_net "Net-(L1-Pad1)")
(add_net "Net-(L1-Pad2)")
(add_net "Net-(LS1-Pad2)")
(add_net "Net-(R1-Pad2)")
(add_net "Net-(R2-Pad2)")
(add_net SCL)
(add_net SDA)
)
(module Connector_PinHeader_2.54mm:PinHeader_1x06_P2.54mm_Horizontal (layer F.Cu) (tedit 59FED5CB) (tstamp 5D3D75E3)
(at 125.6792 72.9996 180)
(descr "Through hole angled pin header, 1x06, 2.54mm pitch, 6mm pin length, single row")
(tags "Through hole angled pin header THT 1x06 2.54mm single row")
(path /5D04D3EA)
(fp_text reference J1 (at 6.5532 -6.7056 180) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value "SensorStation Accessory Plug" (at -0.4064 16.6624 180) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 2.135 -1.27) (end 4.04 -1.27) (layer F.Fab) (width 0.1))
(fp_line (start 4.04 -1.27) (end 4.04 13.97) (layer F.Fab) (width 0.1))
(fp_line (start 4.04 13.97) (end 1.5 13.97) (layer F.Fab) (width 0.1))
(fp_line (start 1.5 13.97) (end 1.5 -0.635) (layer F.Fab) (width 0.1))
(fp_line (start 1.5 -0.635) (end 2.135 -1.27) (layer F.Fab) (width 0.1))
(fp_line (start -0.32 -0.32) (end 1.5 -0.32) (layer F.Fab) (width 0.1))
(fp_line (start -0.32 -0.32) (end -0.32 0.32) (layer F.Fab) (width 0.1))
(fp_line (start -0.32 0.32) (end 1.5 0.32) (layer F.Fab) (width 0.1))
(fp_line (start 4.04 -0.32) (end 10.04 -0.32) (layer F.Fab) (width 0.1))
(fp_line (start 10.04 -0.32) (end 10.04 0.32) (layer F.Fab) (width 0.1))
(fp_line (start 4.04 0.32) (end 10.04 0.32) (layer F.Fab) (width 0.1))
(fp_line (start -0.32 2.22) (end 1.5 2.22) (layer F.Fab) (width 0.1))
(fp_line (start -0.32 2.22) (end -0.32 2.86) (layer F.Fab) (width 0.1))
(fp_line (start -0.32 2.86) (end 1.5 2.86) (layer F.Fab) (width 0.1))
(fp_line (start 4.04 2.22) (end 10.04 2.22) (layer F.Fab) (width 0.1))
(fp_line (start 10.04 2.22) (end 10.04 2.86) (layer F.Fab) (width 0.1))
(fp_line (start 4.04 2.86) (end 10.04 2.86) (layer F.Fab) (width 0.1))
(fp_line (start -0.32 4.76) (end 1.5 4.76) (layer F.Fab) (width 0.1))
(fp_line (start -0.32 4.76) (end -0.32 5.4) (layer F.Fab) (width 0.1))
(fp_line (start -0.32 5.4) (end 1.5 5.4) (layer F.Fab) (width 0.1))
(fp_line (start 4.04 4.76) (end 10.04 4.76) (layer F.Fab) (width 0.1))
(fp_line (start 10.04 4.76) (end 10.04 5.4) (layer F.Fab) (width 0.1))
(fp_line (start 4.04 5.4) (end 10.04 5.4) (layer F.Fab) (width 0.1))
(fp_line (start -0.32 7.3) (end 1.5 7.3) (layer F.Fab) (width 0.1))
(fp_line (start -0.32 7.3) (end -0.32 7.94) (layer F.Fab) (width 0.1))
(fp_line (start -0.32 7.94) (end 1.5 7.94) (layer F.Fab) (width 0.1))
(fp_line (start 4.04 7.3) (end 10.04 7.3) (layer F.Fab) (width 0.1))
(fp_line (start 10.04 7.3) (end 10.04 7.94) (layer F.Fab) (width 0.1))
(fp_line (start 4.04 7.94) (end 10.04 7.94) (layer F.Fab) (width 0.1))
(fp_line (start -0.32 9.84) (end 1.5 9.84) (layer F.Fab) (width 0.1))
(fp_line (start -0.32 9.84) (end -0.32 10.48) (layer F.Fab) (width 0.1))
(fp_line (start -0.32 10.48) (end 1.5 10.48) (layer F.Fab) (width 0.1))
(fp_line (start 4.04 9.84) (end 10.04 9.84) (layer F.Fab) (width 0.1))
(fp_line (start 10.04 9.84) (end 10.04 10.48) (layer F.Fab) (width 0.1))
(fp_line (start 4.04 10.48) (end 10.04 10.48) (layer F.Fab) (width 0.1))
(fp_line (start -0.32 12.38) (end 1.5 12.38) (layer F.Fab) (width 0.1))
(fp_line (start -0.32 12.38) (end -0.32 13.02) (layer F.Fab) (width 0.1))
(fp_line (start -0.32 13.02) (end 1.5 13.02) (layer F.Fab) (width 0.1))
(fp_line (start 4.04 12.38) (end 10.04 12.38) (layer F.Fab) (width 0.1))
(fp_line (start 10.04 12.38) (end 10.04 13.02) (layer F.Fab) (width 0.1))
(fp_line (start 4.04 13.02) (end 10.04 13.02) (layer F.Fab) (width 0.1))
(fp_line (start 1.44 -1.33) (end 1.44 14.03) (layer F.SilkS) (width 0.12))
(fp_line (start 1.44 14.03) (end 4.1 14.03) (layer F.SilkS) (width 0.12))
(fp_line (start 4.1 14.03) (end 4.1 -1.33) (layer F.SilkS) (width 0.12))
(fp_line (start 4.1 -1.33) (end 1.44 -1.33) (layer F.SilkS) (width 0.12))
(fp_line (start 4.1 -0.38) (end 10.1 -0.38) (layer F.SilkS) (width 0.12))
(fp_line (start 10.1 -0.38) (end 10.1 0.38) (layer F.SilkS) (width 0.12))
(fp_line (start 10.1 0.38) (end 4.1 0.38) (layer F.SilkS) (width 0.12))
(fp_line (start 4.1 -0.32) (end 10.1 -0.32) (layer F.SilkS) (width 0.12))
(fp_line (start 4.1 -0.2) (end 10.1 -0.2) (layer F.SilkS) (width 0.12))
(fp_line (start 4.1 -0.08) (end 10.1 -0.08) (layer F.SilkS) (width 0.12))
(fp_line (start 4.1 0.04) (end 10.1 0.04) (layer F.SilkS) (width 0.12))
(fp_line (start 4.1 0.16) (end 10.1 0.16) (layer F.SilkS) (width 0.12))
(fp_line (start 4.1 0.28) (end 10.1 0.28) (layer F.SilkS) (width 0.12))
(fp_line (start 1.11 -0.38) (end 1.44 -0.38) (layer F.SilkS) (width 0.12))
(fp_line (start 1.11 0.38) (end 1.44 0.38) (layer F.SilkS) (width 0.12))
(fp_line (start 1.44 1.27) (end 4.1 1.27) (layer F.SilkS) (width 0.12))
(fp_line (start 4.1 2.16) (end 10.1 2.16) (layer F.SilkS) (width 0.12))
(fp_line (start 10.1 2.16) (end 10.1 2.92) (layer F.SilkS) (width 0.12))
(fp_line (start 10.1 2.92) (end 4.1 2.92) (layer F.SilkS) (width 0.12))
(fp_line (start 1.042929 2.16) (end 1.44 2.16) (layer F.SilkS) (width 0.12))
(fp_line (start 1.042929 2.92) (end 1.44 2.92) (layer F.SilkS) (width 0.12))
(fp_line (start 1.44 3.81) (end 4.1 3.81) (layer F.SilkS) (width 0.12))
(fp_line (start 4.1 4.7) (end 10.1 4.7) (layer F.SilkS) (width 0.12))
(fp_line (start 10.1 4.7) (end 10.1 5.46) (layer F.SilkS) (width 0.12))
(fp_line (start 10.1 5.46) (end 4.1 5.46) (layer F.SilkS) (width 0.12))
(fp_line (start 1.042929 4.7) (end 1.44 4.7) (layer F.SilkS) (width 0.12))
(fp_line (start 1.042929 5.46) (end 1.44 5.46) (layer F.SilkS) (width 0.12))
(fp_line (start 1.44 6.35) (end 4.1 6.35) (layer F.SilkS) (width 0.12))
(fp_line (start 4.1 7.24) (end 10.1 7.24) (layer F.SilkS) (width 0.12))
(fp_line (start 10.1 7.24) (end 10.1 8) (layer F.SilkS) (width 0.12))
(fp_line (start 10.1 8) (end 4.1 8) (layer F.SilkS) (width 0.12))
(fp_line (start 1.042929 7.24) (end 1.44 7.24) (layer F.SilkS) (width 0.12))
(fp_line (start 1.042929 8) (end 1.44 8) (layer F.SilkS) (width 0.12))
(fp_line (start 1.44 8.89) (end 4.1 8.89) (layer F.SilkS) (width 0.12))
(fp_line (start 4.1 9.78) (end 10.1 9.78) (layer F.SilkS) (width 0.12))
(fp_line (start 10.1 9.78) (end 10.1 10.54) (layer F.SilkS) (width 0.12))
(fp_line (start 10.1 10.54) (end 4.1 10.54) (layer F.SilkS) (width 0.12))
(fp_line (start 1.042929 9.78) (end 1.44 9.78) (layer F.SilkS) (width 0.12))
(fp_line (start 1.042929 10.54) (end 1.44 10.54) (layer F.SilkS) (width 0.12))
(fp_line (start 1.44 11.43) (end 4.1 11.43) (layer F.SilkS) (width 0.12))
(fp_line (start 4.1 12.32) (end 10.1 12.32) (layer F.SilkS) (width 0.12))
(fp_line (start 10.1 12.32) (end 10.1 13.08) (layer F.SilkS) (width 0.12))
(fp_line (start 10.1 13.08) (end 4.1 13.08) (layer F.SilkS) (width 0.12))
(fp_line (start 1.042929 12.32) (end 1.44 12.32) (layer F.SilkS) (width 0.12))
(fp_line (start 1.042929 13.08) (end 1.44 13.08) (layer F.SilkS) (width 0.12))
(fp_line (start -1.27 0) (end -1.27 -1.27) (layer F.SilkS) (width 0.12))
(fp_line (start -1.27 -1.27) (end 0 -1.27) (layer F.SilkS) (width 0.12))
(fp_line (start -1.8 -1.8) (end -1.8 14.5) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.8 14.5) (end 10.55 14.5) (layer F.CrtYd) (width 0.05))
(fp_line (start 10.55 14.5) (end 10.55 -1.8) (layer F.CrtYd) (width 0.05))
(fp_line (start 10.55 -1.8) (end -1.8 -1.8) (layer F.CrtYd) (width 0.05))
(fp_text user %R (at 2.77 6.35 270) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad 1 thru_hole rect (at 0 0 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask))
(pad 2 thru_hole oval (at 0 2.54 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 1 +3V3))
(pad 3 thru_hole oval (at 0 5.08 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 2 GND))
(pad 4 thru_hole oval (at 0 7.62 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 8 SCL))
(pad 5 thru_hole oval (at 0 10.16 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 9 SDA))
(pad 6 thru_hole oval (at 0 12.7 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 6 CS))
(model ${KISYS3DMOD}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x06_P2.54mm_Horizontal.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Capacitors_SMD:C_1206_3216Metric (layer F.Cu) (tedit 5B301BBE) (tstamp 5D3D83AA)
(at 129.7432 71.882 270)
(descr "Capacitor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags capacitor)
(path /5D3BFAD1)
(attr smd)
(fp_text reference C1 (at 0 -1.82 270) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 2.2u (at 0 1.82 270) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -1.6 0.8) (end -1.6 -0.8) (layer F.Fab) (width 0.1))
(fp_line (start -1.6 -0.8) (end 1.6 -0.8) (layer F.Fab) (width 0.1))
(fp_line (start 1.6 -0.8) (end 1.6 0.8) (layer F.Fab) (width 0.1))
(fp_line (start 1.6 0.8) (end -1.6 0.8) (layer F.Fab) (width 0.1))
(fp_line (start -0.602064 -0.91) (end 0.602064 -0.91) (layer F.SilkS) (width 0.12))
(fp_line (start -0.602064 0.91) (end 0.602064 0.91) (layer F.SilkS) (width 0.12))
(fp_line (start -2.28 1.12) (end -2.28 -1.12) (layer F.CrtYd) (width 0.05))
(fp_line (start -2.28 -1.12) (end 2.28 -1.12) (layer F.CrtYd) (width 0.05))
(fp_line (start 2.28 -1.12) (end 2.28 1.12) (layer F.CrtYd) (width 0.05))
(fp_line (start 2.28 1.12) (end -2.28 1.12) (layer F.CrtYd) (width 0.05))
(fp_text user %R (at 0 0 270) (layer F.Fab)
(effects (font (size 0.8 0.8) (thickness 0.12)))
)
(pad 1 smd roundrect (at -1.4 0 270) (size 1.25 1.75) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.2)
(net 1 +3V3))
(pad 2 smd roundrect (at 1.4 0 270) (size 1.25 1.75) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.2)
(net 2 GND))
(model ${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_1206_3216Metric.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Capacitors_SMD:C_1206_3216Metric (layer F.Cu) (tedit 5B301BBE) (tstamp 5D3D7E6E)
(at 143.256 61.9984 90)
(descr "Capacitor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags capacitor)
(path /5D3BF7C3)
(attr smd)
(fp_text reference C2 (at 1.5464 3.0988 180) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 2.2u (at 0 1.82 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text user %R (at 0 0 90) (layer F.Fab)
(effects (font (size 0.8 0.8) (thickness 0.12)))
)
(fp_line (start 2.28 1.12) (end -2.28 1.12) (layer F.CrtYd) (width 0.05))
(fp_line (start 2.28 -1.12) (end 2.28 1.12) (layer F.CrtYd) (width 0.05))
(fp_line (start -2.28 -1.12) (end 2.28 -1.12) (layer F.CrtYd) (width 0.05))
(fp_line (start -2.28 1.12) (end -2.28 -1.12) (layer F.CrtYd) (width 0.05))
(fp_line (start -0.602064 0.91) (end 0.602064 0.91) (layer F.SilkS) (width 0.12))
(fp_line (start -0.602064 -0.91) (end 0.602064 -0.91) (layer F.SilkS) (width 0.12))
(fp_line (start 1.6 0.8) (end -1.6 0.8) (layer F.Fab) (width 0.1))
(fp_line (start 1.6 -0.8) (end 1.6 0.8) (layer F.Fab) (width 0.1))
(fp_line (start -1.6 -0.8) (end 1.6 -0.8) (layer F.Fab) (width 0.1))
(fp_line (start -1.6 0.8) (end -1.6 -0.8) (layer F.Fab) (width 0.1))
(pad 2 smd roundrect (at 1.4 0 90) (size 1.25 1.75) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.2)
(net 3 "Net-(C2-Pad2)"))
(pad 1 smd roundrect (at -1.4 0 90) (size 1.25 1.75) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.2)
(net 4 "Net-(C2-Pad1)"))
(model ${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_1206_3216Metric.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Capacitors_SMD:C_1206_3216Metric (layer F.Cu) (tedit 5B301BBE) (tstamp 5D3D7E7F)
(at 139.3952 62.0268 90)
(descr "Capacitor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags capacitor)
(path /5D3C3016)
(attr smd)
(fp_text reference C3 (at 0.0508 -1.8288 90) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 2.2u (at 0 1.82 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text user %R (at 0 0 90) (layer F.Fab)
(effects (font (size 0.8 0.8) (thickness 0.12)))
)
(fp_line (start 2.28 1.12) (end -2.28 1.12) (layer F.CrtYd) (width 0.05))
(fp_line (start 2.28 -1.12) (end 2.28 1.12) (layer F.CrtYd) (width 0.05))
(fp_line (start -2.28 -1.12) (end 2.28 -1.12) (layer F.CrtYd) (width 0.05))
(fp_line (start -2.28 1.12) (end -2.28 -1.12) (layer F.CrtYd) (width 0.05))
(fp_line (start -0.602064 0.91) (end 0.602064 0.91) (layer F.SilkS) (width 0.12))
(fp_line (start -0.602064 -0.91) (end 0.602064 -0.91) (layer F.SilkS) (width 0.12))
(fp_line (start 1.6 0.8) (end -1.6 0.8) (layer F.Fab) (width 0.1))
(fp_line (start 1.6 -0.8) (end 1.6 0.8) (layer F.Fab) (width 0.1))
(fp_line (start -1.6 -0.8) (end 1.6 -0.8) (layer F.Fab) (width 0.1))
(fp_line (start -1.6 0.8) (end -1.6 -0.8) (layer F.Fab) (width 0.1))
(pad 2 smd roundrect (at 1.4 0 90) (size 1.25 1.75) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.2)
(net 2 GND))
(pad 1 smd roundrect (at -1.4 0 90) (size 1.25 1.75) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.2)
(net 5 "Net-(C3-Pad1)"))
(model ${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_1206_3216Metric.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Capacitors_SMD:C_1206_3216Metric (layer F.Cu) (tedit 5B301BBE) (tstamp 5D3D7E90)
(at 129.7432 61.976 270)
(descr "Capacitor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags capacitor)
(path /5D3B880F)
(attr smd)
(fp_text reference C4 (at -0.0508 -1.7272 270) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 1u (at 0 1.82 270) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -1.6 0.8) (end -1.6 -0.8) (layer F.Fab) (width 0.1))
(fp_line (start -1.6 -0.8) (end 1.6 -0.8) (layer F.Fab) (width 0.1))
(fp_line (start 1.6 -0.8) (end 1.6 0.8) (layer F.Fab) (width 0.1))
(fp_line (start 1.6 0.8) (end -1.6 0.8) (layer F.Fab) (width 0.1))
(fp_line (start -0.602064 -0.91) (end 0.602064 -0.91) (layer F.SilkS) (width 0.12))
(fp_line (start -0.602064 0.91) (end 0.602064 0.91) (layer F.SilkS) (width 0.12))
(fp_line (start -2.28 1.12) (end -2.28 -1.12) (layer F.CrtYd) (width 0.05))
(fp_line (start -2.28 -1.12) (end 2.28 -1.12) (layer F.CrtYd) (width 0.05))
(fp_line (start 2.28 -1.12) (end 2.28 1.12) (layer F.CrtYd) (width 0.05))
(fp_line (start 2.28 1.12) (end -2.28 1.12) (layer F.CrtYd) (width 0.05))
(fp_text user %R (at 0 0 270) (layer F.Fab)
(effects (font (size 0.8 0.8) (thickness 0.12)))
)
(pad 1 smd roundrect (at -1.4 0 270) (size 1.25 1.75) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.2)
(net 6 CS))
(pad 2 smd roundrect (at 1.4 0 270) (size 1.25 1.75) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.2)
(net 7 "Net-(C4-Pad2)"))
(model ${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_1206_3216Metric.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Inductor_SMD:L_1206_3216Metric (layer F.Cu) (tedit 5B301BBE) (tstamp 5D3D7EA1)
(at 142.878 69.596)
(descr "Inductor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags inductor)
(path /5D3B960E)
(attr smd)
(fp_text reference L1 (at 3.426 -0.1016) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 100uH (at 0 1.82) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -1.6 0.8) (end -1.6 -0.8) (layer F.Fab) (width 0.1))
(fp_line (start -1.6 -0.8) (end 1.6 -0.8) (layer F.Fab) (width 0.1))
(fp_line (start 1.6 -0.8) (end 1.6 0.8) (layer F.Fab) (width 0.1))
(fp_line (start 1.6 0.8) (end -1.6 0.8) (layer F.Fab) (width 0.1))
(fp_line (start -0.602064 -0.91) (end 0.602064 -0.91) (layer F.SilkS) (width 0.12))
(fp_line (start -0.602064 0.91) (end 0.602064 0.91) (layer F.SilkS) (width 0.12))
(fp_line (start -2.28 1.12) (end -2.28 -1.12) (layer F.CrtYd) (width 0.05))
(fp_line (start -2.28 -1.12) (end 2.28 -1.12) (layer F.CrtYd) (width 0.05))
(fp_line (start 2.28 -1.12) (end 2.28 1.12) (layer F.CrtYd) (width 0.05))
(fp_line (start 2.28 1.12) (end -2.28 1.12) (layer F.CrtYd) (width 0.05))
(fp_text user %R (at 0 0) (layer F.Fab)
(effects (font (size 0.8 0.8) (thickness 0.12)))
)
(pad 1 smd roundrect (at -1.4 0) (size 1.25 1.75) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.2)
(net 10 "Net-(L1-Pad1)"))
(pad 2 smd roundrect (at 1.4 0) (size 1.25 1.75) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.2)
(net 11 "Net-(L1-Pad2)"))
(model ${KISYS3DMOD}/Inductor_SMD.3dshapes/L_1206_3216Metric.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Buzzers_Beepers:Buzzer_12x9.5RM7.6 (layer F.Cu) (tedit 5D38C4BB) (tstamp 5D3D7EAA)
(at 158.8516 66.69024 90)
(descr "Generic Buzzer, D12mm height 9.5mm with RM7.6mm")
(tags buzzer)
(path /5D3B99AC)
(fp_text reference SPKR (at 0.34544 -2.794 90) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value Speaker (at -1.00076 8.001 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_circle (center 0 0) (end 1.00076 0) (layer F.SilkS) (width 0.15))
(fp_text user + (at -3.81 -2.54 90) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_circle (center 0 0) (end 6.20014 0) (layer F.SilkS) (width 0.15))
(pad 1 thru_hole circle (at -3.79984 0 90) (size 2 2) (drill 1.00076) (layers *.Cu *.Mask F.SilkS)
(net 11 "Net-(L1-Pad2)"))
(pad 2 thru_hole circle (at 3.79984 0 90) (size 2 2) (drill 1.00076) (layers *.Cu *.Mask F.SilkS)
(net 12 "Net-(LS1-Pad2)"))
(model Buzzers_Beepers.3dshapes/Buzzer_12x9.5RM7.6.wrl
(at (xyz 0 0 0))
(scale (xyz 4 4 4))
(rotate (xyz 0 0 0))
)
)
(module Resistors_SMD:R_1206_3216Metric (layer F.Cu) (tedit 5B301BBD) (tstamp 5D3D7EBB)
(at 129.7432 66.9544 270)
(descr "Resistor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags resistor)
(path /5D3B8E4D)
(attr smd)
(fp_text reference R1 (at 0 1.778 270) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 10K (at 0 1.82 270) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -1.6 0.8) (end -1.6 -0.8) (layer F.Fab) (width 0.1))
(fp_line (start -1.6 -0.8) (end 1.6 -0.8) (layer F.Fab) (width 0.1))
(fp_line (start 1.6 -0.8) (end 1.6 0.8) (layer F.Fab) (width 0.1))
(fp_line (start 1.6 0.8) (end -1.6 0.8) (layer F.Fab) (width 0.1))
(fp_line (start -0.602064 -0.91) (end 0.602064 -0.91) (layer F.SilkS) (width 0.12))
(fp_line (start -0.602064 0.91) (end 0.602064 0.91) (layer F.SilkS) (width 0.12))
(fp_line (start -2.28 1.12) (end -2.28 -1.12) (layer F.CrtYd) (width 0.05))
(fp_line (start -2.28 -1.12) (end 2.28 -1.12) (layer F.CrtYd) (width 0.05))
(fp_line (start 2.28 -1.12) (end 2.28 1.12) (layer F.CrtYd) (width 0.05))
(fp_line (start 2.28 1.12) (end -2.28 1.12) (layer F.CrtYd) (width 0.05))
(fp_text user %R (at 0 0 270) (layer F.Fab)
(effects (font (size 0.8 0.8) (thickness 0.12)))
)
(pad 1 smd roundrect (at -1.4 0 270) (size 1.25 1.75) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.2)
(net 7 "Net-(C4-Pad2)"))
(pad 2 smd roundrect (at 1.4 0 270) (size 1.25 1.75) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.2)
(net 13 "Net-(R1-Pad2)"))
(model ${KISYS3DMOD}/Resistor_SMD.3dshapes/R_1206_3216Metric.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Resistors_SMD:R_1206_3216Metric (layer F.Cu) (tedit 5B301BBD) (tstamp 5D3D7ECC)
(at 134.3884 61.6712 180)
(descr "Resistor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags resistor)
(path /5D3BAA18)
(attr smd)
(fp_text reference R2 (at -0.5364 -1.9304 180) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 10K (at 0 1.82 180) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -1.6 0.8) (end -1.6 -0.8) (layer F.Fab) (width 0.1))
(fp_line (start -1.6 -0.8) (end 1.6 -0.8) (layer F.Fab) (width 0.1))
(fp_line (start 1.6 -0.8) (end 1.6 0.8) (layer F.Fab) (width 0.1))
(fp_line (start 1.6 0.8) (end -1.6 0.8) (layer F.Fab) (width 0.1))
(fp_line (start -0.602064 -0.91) (end 0.602064 -0.91) (layer F.SilkS) (width 0.12))
(fp_line (start -0.602064 0.91) (end 0.602064 0.91) (layer F.SilkS) (width 0.12))
(fp_line (start -2.28 1.12) (end -2.28 -1.12) (layer F.CrtYd) (width 0.05))
(fp_line (start -2.28 -1.12) (end 2.28 -1.12) (layer F.CrtYd) (width 0.05))
(fp_line (start 2.28 -1.12) (end 2.28 1.12) (layer F.CrtYd) (width 0.05))
(fp_line (start 2.28 1.12) (end -2.28 1.12) (layer F.CrtYd) (width 0.05))
(fp_text user %R (at 0 0 180) (layer F.Fab)
(effects (font (size 0.8 0.8) (thickness 0.12)))
)
(pad 1 smd roundrect (at -1.4 0 180) (size 1.25 1.75) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.2)
(net 12 "Net-(LS1-Pad2)"))
(pad 2 smd roundrect (at 1.4 0 180) (size 1.25 1.75) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.2)
(net 14 "Net-(R2-Pad2)"))
(model ${KISYS3DMOD}/Resistor_SMD.3dshapes/R_1206_3216Metric.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Resistors_SMD:R_1206_3216Metric (layer F.Cu) (tedit 5B301BBD) (tstamp 5D3D7EDD)
(at 135.9692 72.4408)
(descr "Resistor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags resistor)
(path /5D3BB645)
(attr smd)
(fp_text reference R3 (at 0 -1.82) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 10K (at 0 1.82) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text user %R (at 0 0) (layer F.Fab)
(effects (font (size 0.8 0.8) (thickness 0.12)))
)
(fp_line (start 2.28 1.12) (end -2.28 1.12) (layer F.CrtYd) (width 0.05))
(fp_line (start 2.28 -1.12) (end 2.28 1.12) (layer F.CrtYd) (width 0.05))
(fp_line (start -2.28 -1.12) (end 2.28 -1.12) (layer F.CrtYd) (width 0.05))
(fp_line (start -2.28 1.12) (end -2.28 -1.12) (layer F.CrtYd) (width 0.05))
(fp_line (start -0.602064 0.91) (end 0.602064 0.91) (layer F.SilkS) (width 0.12))
(fp_line (start -0.602064 -0.91) (end 0.602064 -0.91) (layer F.SilkS) (width 0.12))
(fp_line (start 1.6 0.8) (end -1.6 0.8) (layer F.Fab) (width 0.1))
(fp_line (start 1.6 -0.8) (end 1.6 0.8) (layer F.Fab) (width 0.1))
(fp_line (start -1.6 -0.8) (end 1.6 -0.8) (layer F.Fab) (width 0.1))
(fp_line (start -1.6 0.8) (end -1.6 -0.8) (layer F.Fab) (width 0.1))
(pad 2 smd roundrect (at 1.4 0) (size 1.25 1.75) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.2)
(net 14 "Net-(R2-Pad2)"))
(pad 1 smd roundrect (at -1.4 0) (size 1.25 1.75) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.2)
(net 10 "Net-(L1-Pad1)"))
(model ${KISYS3DMOD}/Resistor_SMD.3dshapes/R_1206_3216Metric.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Resistors_SMD:R_1206_3216Metric (layer F.Cu) (tedit 5B301BBD) (tstamp 5D3D7EEE)
(at 142.9512 66.4972 180)
(descr "Resistor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags resistor)
(path /5D3BCAE4)
(attr smd)
(fp_text reference R4 (at -3.4544 0.0508 180) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 10K (at 0 1.82 180) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -1.6 0.8) (end -1.6 -0.8) (layer F.Fab) (width 0.1))
(fp_line (start -1.6 -0.8) (end 1.6 -0.8) (layer F.Fab) (width 0.1))
(fp_line (start 1.6 -0.8) (end 1.6 0.8) (layer F.Fab) (width 0.1))
(fp_line (start 1.6 0.8) (end -1.6 0.8) (layer F.Fab) (width 0.1))
(fp_line (start -0.602064 -0.91) (end 0.602064 -0.91) (layer F.SilkS) (width 0.12))
(fp_line (start -0.602064 0.91) (end 0.602064 0.91) (layer F.SilkS) (width 0.12))
(fp_line (start -2.28 1.12) (end -2.28 -1.12) (layer F.CrtYd) (width 0.05))
(fp_line (start -2.28 -1.12) (end 2.28 -1.12) (layer F.CrtYd) (width 0.05))
(fp_line (start 2.28 -1.12) (end 2.28 1.12) (layer F.CrtYd) (width 0.05))
(fp_line (start 2.28 1.12) (end -2.28 1.12) (layer F.CrtYd) (width 0.05))
(fp_text user %R (at 0 0 180) (layer F.Fab)
(effects (font (size 0.8 0.8) (thickness 0.12)))
)
(pad 1 smd roundrect (at -1.4 0 180) (size 1.25 1.75) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.2)
(net 10 "Net-(L1-Pad1)"))
(pad 2 smd roundrect (at 1.4 0 180) (size 1.25 1.75) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.2)
(net 13 "Net-(R1-Pad2)"))
(model ${KISYS3DMOD}/Resistor_SMD.3dshapes/R_1206_3216Metric.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Resistors_SMD:R_1206_3216Metric (layer F.Cu) (tedit 5B301BBD) (tstamp 5D3D7EFF)
(at 142.9228 73.152 180)
(descr "Resistor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags resistor)
(path /5D3B93BA)
(attr smd)
(fp_text reference R5 (at -3.6352 -0.1016 180) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 10 (at 0 1.82 180) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text user %R (at 0 0 180) (layer F.Fab)
(effects (font (size 0.8 0.8) (thickness 0.12)))
)
(fp_line (start 2.28 1.12) (end -2.28 1.12) (layer F.CrtYd) (width 0.05))
(fp_line (start 2.28 -1.12) (end 2.28 1.12) (layer F.CrtYd) (width 0.05))
(fp_line (start -2.28 -1.12) (end 2.28 -1.12) (layer F.CrtYd) (width 0.05))
(fp_line (start -2.28 1.12) (end -2.28 -1.12) (layer F.CrtYd) (width 0.05))
(fp_line (start -0.602064 0.91) (end 0.602064 0.91) (layer F.SilkS) (width 0.12))
(fp_line (start -0.602064 -0.91) (end 0.602064 -0.91) (layer F.SilkS) (width 0.12))
(fp_line (start 1.6 0.8) (end -1.6 0.8) (layer F.Fab) (width 0.1))
(fp_line (start 1.6 -0.8) (end 1.6 0.8) (layer F.Fab) (width 0.1))
(fp_line (start -1.6 -0.8) (end 1.6 -0.8) (layer F.Fab) (width 0.1))
(fp_line (start -1.6 0.8) (end -1.6 -0.8) (layer F.Fab) (width 0.1))
(pad 2 smd roundrect (at 1.4 0 180) (size 1.25 1.75) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.2)
(net 10 "Net-(L1-Pad1)"))
(pad 1 smd roundrect (at -1.4 0 180) (size 1.25 1.75) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.2)
(net 11 "Net-(L1-Pad2)"))
(model ${KISYS3DMOD}/Resistor_SMD.3dshapes/R_1206_3216Metric.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Measurement_Points:Test_Point_Keystone_5019_Minature (layer F.Cu) (tedit 5D38C2F7) (tstamp 5D3D7F1C)
(at 174.3456 57.2008)
(descr "SMT Test Point- Micro Miniature 5019, http://www.keyelco.com/product-pdf.cfm?p=1357")
(tags "Test Point")
(path /5D3CB964)
(attr virtual)
(fp_text reference TP1 (at 0 -2.25) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value TestPoint (at 0 2.25) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 0 0.5) (end 0 1) (layer F.Fab) (width 0.15))
(fp_line (start 0 -1) (end 0 -0.5) (layer F.Fab) (width 0.15))
(fp_line (start -1.9 -0.5) (end 1.9 -0.5) (layer F.Fab) (width 0.15))
(fp_line (start 1.9 0.5) (end -1.9 0.5) (layer F.Fab) (width 0.15))
(fp_line (start 1.25 -1) (end -1.25 -1) (layer F.Fab) (width 0.15))
(fp_line (start -1.25 -1) (end -1.25 -0.5) (layer F.Fab) (width 0.15))
(fp_line (start -1.25 -0.5) (end -1.75 -0.5) (layer F.Fab) (width 0.15))
(fp_line (start -1.9 -0.5) (end -1.9 0.5) (layer F.Fab) (width 0.15))
(fp_line (start -1.75 0.5) (end -1.25 0.5) (layer F.Fab) (width 0.15))
(fp_line (start -1.25 0.5) (end -1.25 1) (layer F.Fab) (width 0.15))
(fp_line (start -1.25 1) (end 1.25 1) (layer F.Fab) (width 0.15))
(fp_line (start 1.25 1) (end 1.25 0.5) (layer F.Fab) (width 0.15))
(fp_line (start 1.25 0.5) (end 1.75 0.5) (layer F.Fab) (width 0.15))
(fp_line (start 1.9 0.5) (end 1.9 -0.5) (layer F.Fab) (width 0.15))
(fp_line (start 1.75 -0.5) (end 1.25 -0.5) (layer F.Fab) (width 0.15))
(fp_line (start 1.25 -0.5) (end 1.25 -1) (layer F.Fab) (width 0.15))
(fp_line (start -2.35 -1.45) (end 2.35 -1.45) (layer F.CrtYd) (width 0.05))
(fp_line (start 2.35 -1.45) (end 2.35 1.45) (layer F.CrtYd) (width 0.05))
(fp_line (start 2.35 1.45) (end -2.35 1.45) (layer F.CrtYd) (width 0.05))
(fp_line (start -2.35 1.45) (end -2.35 -1.45) (layer F.CrtYd) (width 0.05))
(fp_line (start -2.1 -1.2) (end 2.1 -1.2) (layer F.SilkS) (width 0.15))
(fp_line (start 2.1 -1.2) (end 2.1 1.2) (layer F.SilkS) (width 0.15))
(fp_line (start 2.1 1.2) (end -2.1 1.2) (layer F.SilkS) (width 0.15))
(fp_line (start -2.1 1.2) (end -2.1 -1.2) (layer F.SilkS) (width 0.15))
(pad 1 smd circle (at -46.8376 7.7724) (size 1 1) (layers F.Cu F.Paste F.Mask)
(net 8 SCL))
)
(module Measurement_Points:Test_Point_Keystone_5019_Minature (layer F.Cu) (tedit 5D38C309) (tstamp 5D3D7F39)
(at 179.423001 59.031401)
(descr "SMT Test Point- Micro Miniature 5019, http://www.keyelco.com/product-pdf.cfm?p=1357")
(tags "Test Point")
(path /5D3CBAB1)
(attr virtual)
(fp_text reference TP2 (at 0 -2.25) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value TestPoint (at 0 2.25) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -2.1 1.2) (end -2.1 -1.2) (layer F.SilkS) (width 0.15))
(fp_line (start 2.1 1.2) (end -2.1 1.2) (layer F.SilkS) (width 0.15))
(fp_line (start 2.1 -1.2) (end 2.1 1.2) (layer F.SilkS) (width 0.15))
(fp_line (start -2.1 -1.2) (end 2.1 -1.2) (layer F.SilkS) (width 0.15))
(fp_line (start -2.35 1.45) (end -2.35 -1.45) (layer F.CrtYd) (width 0.05))
(fp_line (start 2.35 1.45) (end -2.35 1.45) (layer F.CrtYd) (width 0.05))
(fp_line (start 2.35 -1.45) (end 2.35 1.45) (layer F.CrtYd) (width 0.05))
(fp_line (start -2.35 -1.45) (end 2.35 -1.45) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.25 -0.5) (end 1.25 -1) (layer F.Fab) (width 0.15))
(fp_line (start 1.75 -0.5) (end 1.25 -0.5) (layer F.Fab) (width 0.15))
(fp_line (start 1.9 0.5) (end 1.9 -0.5) (layer F.Fab) (width 0.15))
(fp_line (start 1.25 0.5) (end 1.75 0.5) (layer F.Fab) (width 0.15))
(fp_line (start 1.25 1) (end 1.25 0.5) (layer F.Fab) (width 0.15))
(fp_line (start -1.25 1) (end 1.25 1) (layer F.Fab) (width 0.15))
(fp_line (start -1.25 0.5) (end -1.25 1) (layer F.Fab) (width 0.15))
(fp_line (start -1.75 0.5) (end -1.25 0.5) (layer F.Fab) (width 0.15))
(fp_line (start -1.9 -0.5) (end -1.9 0.5) (layer F.Fab) (width 0.15))
(fp_line (start -1.25 -0.5) (end -1.75 -0.5) (layer F.Fab) (width 0.15))
(fp_line (start -1.25 -1) (end -1.25 -0.5) (layer F.Fab) (width 0.15))
(fp_line (start 1.25 -1) (end -1.25 -1) (layer F.Fab) (width 0.15))
(fp_line (start 1.9 0.5) (end -1.9 0.5) (layer F.Fab) (width 0.15))
(fp_line (start -1.9 -0.5) (end 1.9 -0.5) (layer F.Fab) (width 0.15))
(fp_line (start 0 -1) (end 0 -0.5) (layer F.Fab) (width 0.15))
(fp_line (start 0 0.5) (end 0 1) (layer F.Fab) (width 0.15))
(pad 1 smd circle (at -52.118201 2.639799) (size 1 1) (layers F.Cu F.Paste F.Mask)
(net 9 SDA))
)
(module pcb_footprints:TSSOP14 (layer F.Cu) (tedit 5A0C1136) (tstamp 5D3D7F53)
(at 135.69188 67.5132 90)
(path /5D3B86E4)
(fp_text reference U1 (at 0 0.50038 90) (layer F.Fab)
(effects (font (size 0.29972 0.29972) (thickness 0.07493)))
)
(fp_text value MAX4410 (at 0 0 90) (layer F.Fab)
(effects (font (size 0.29972 0.29972) (thickness 0.07493)))
)
(fp_line (start -2.54762 -2.2479) (end -2.17424 -2.2479) (layer F.Fab) (width 0.14986))
(fp_line (start 2.17424 -2.2479) (end 2.54762 -2.2479) (layer F.Fab) (width 0.14986))
(fp_line (start 2.54762 -2.2479) (end 2.54762 2.2479) (layer F.Fab) (width 0.14986))
(fp_line (start -2.54762 2.2479) (end -2.17424 2.2479) (layer F.Fab) (width 0.14986))
(fp_line (start 2.17424 2.2479) (end 2.54762 2.2479) (layer F.Fab) (width 0.14986))
(fp_line (start -2.54762 -2.2479) (end -2.54762 2.2479) (layer F.Fab) (width 0.14986))
(fp_line (start -2.54762 1.79832) (end -2.09804 1.79832) (layer F.Fab) (width 0.14986))
(fp_line (start -2.09804 1.79832) (end -2.09804 1.94818) (layer F.Fab) (width 0.14986))
(pad 1 smd rect (at -1.94818 2.79908 270) (size 0.29972 1.5494) (layers F.Cu F.Paste F.Mask)
(net 1 +3V3))
(pad 2 smd rect (at -1.29794 2.79908 270) (size 0.29972 1.5494) (layers F.Cu F.Paste F.Mask)
(net 1 +3V3))
(pad 3 smd rect (at -0.6477 2.79908 270) (size 0.29972 1.5494) (layers F.Cu F.Paste F.Mask)
(net 4 "Net-(C2-Pad1)"))
(pad 4 smd rect (at 0 2.79908 270) (size 0.29972 1.5494) (layers F.Cu F.Paste F.Mask)
(net 2 GND))
(pad 5 smd rect (at 0.6477 2.79908 270) (size 0.29972 1.5494) (layers F.Cu F.Paste F.Mask)
(net 3 "Net-(C2-Pad2)"))
(pad 6 smd rect (at 1.29794 2.79908 270) (size 0.29972 1.5494) (layers F.Cu F.Paste F.Mask)
(net 5 "Net-(C3-Pad1)"))
(pad 7 smd rect (at 1.94818 2.79908 270) (size 0.29972 1.5494) (layers F.Cu F.Paste F.Mask)
(net 5 "Net-(C3-Pad1)"))
(pad 8 smd rect (at 1.94818 -2.79908 90) (size 0.29972 1.5494) (layers F.Cu F.Paste F.Mask)
(net 12 "Net-(LS1-Pad2)"))
(pad 9 smd rect (at 1.29794 -2.79908 90) (size 0.29972 1.5494) (layers F.Cu F.Paste F.Mask)
(net 1 +3V3))
(pad 10 smd rect (at 0.6477 -2.79908 90) (size 0.29972 1.5494) (layers F.Cu F.Paste F.Mask)
(net 14 "Net-(R2-Pad2)"))
(pad 11 smd rect (at 0 -2.79908 90) (size 0.29972 1.5494) (layers F.Cu F.Paste F.Mask)
(net 10 "Net-(L1-Pad1)"))
(pad 12 smd rect (at -0.6477 -2.79908 90) (size 0.29972 1.5494) (layers F.Cu F.Paste F.Mask)
(net 1 +3V3))
(pad 13 smd rect (at -1.29794 -2.79908 90) (size 0.29972 1.5494) (layers F.Cu F.Paste F.Mask)
(net 13 "Net-(R1-Pad2)"))
(pad 14 smd rect (at -1.94818 -2.79908 90) (size 0.29972 1.5494) (layers F.Cu F.Paste F.Mask)
(net 2 GND))
(model Housing_SSOP/TSSOP-14.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 90 180 180))
)
)
(gr_circle (center 158.7824 66.6496) (end 166.2824 66.6496) (layer F.SilkS) (width 0.2))
(gr_text Right (at 146.6088 66.5988) (layer B.SilkS)
(effects (font (size 4 4) (thickness 1)) (justify mirror))
)
(gr_text Left (at 148.4884 65.9892 90) (layer F.SilkS)
(effects (font (size 1.5 1.5) (thickness 0.3)))
)
(gr_text "Length can be any amount. Width is restricted\ndue to screw holes and other components.\nWidth can be extended 5mm on each side without\nissues." (at 121.412 81.7372) (layer Eco1.User)
(effects (font (size 1.5 1.5) (thickness 0.3)) (justify left))
)
(gr_text "Female 0.1\"/2.54 mm header" (at 111.8616 66.5988 90) (layer Eco1.User)
(effects (font (size 1.5 1.5) (thickness 0.3)))
)
(gr_line (start 121.5644 58.5216) (end 121.5644 74.8284) (layer Edge.Cuts) (width 0.15))
(gr_line (start 161.9504 58.5216) (end 161.9504 74.8284) (layer Edge.Cuts) (width 0.15))
(gr_line (start 121.5644 74.8284) (end 161.9504 74.8284) (layer Edge.Cuts) (width 0.15) (tstamp 5D3D7855))
(gr_line (start 121.5644 58.5216) (end 161.9504 58.5216) (layer Edge.Cuts) (width 0.15))
(segment (start 129.7208 70.4596) (end 129.7432 70.482) (width 0.25) (layer F.Cu) (net 1))
(segment (start 125.6792 70.4596) (end 129.7208 70.4596) (width 0.25) (layer F.Cu) (net 1))
(segment (start 128.54319 69.28199) (end 128.54319 67.18921) (width 0.25) (layer F.Cu) (net 1))
(segment (start 129.7432 70.482) (end 128.54319 69.28199) (width 0.25) (layer F.Cu) (net 1))
(segment (start 128.54319 67.18921) (end 128.7272 67.0052) (width 0.25) (layer F.Cu) (net 1))
(segment (start 131.8681 66.21526) (end 132.8928 66.21526) (width 0.25) (layer F.Cu) (net 1))
(segment (start 131.07816 67.0052) (end 131.8681 66.21526) (width 0.25) (layer F.Cu) (net 1))
(segment (start 128.7272 67.0052) (end 131.07816 67.0052) (width 0.25) (layer F.Cu) (net 1))
(segment (start 131.07816 67.37096) (end 131.07816 67.0052) (width 0.25) (layer F.Cu) (net 1))
(segment (start 131.8681 68.1609) (end 131.07816 67.37096) (width 0.25) (layer F.Cu) (net 1))
(segment (start 132.8928 68.1609) (end 131.8681 68.1609) (width 0.25) (layer F.Cu) (net 1))
(segment (start 138.49096 68.81114) (end 138.49096 69.46138) (width 0.25) (layer F.Cu) (net 1))
(segment (start 133.992501 71.204309) (end 133.4008 71.79601) (width 0.25) (layer F.Cu) (net 1))
(segment (start 133.992501 68.235901) (end 133.992501 71.204309) (width 0.25) (layer F.Cu) (net 1))
(segment (start 133.9175 68.1609) (end 133.992501 68.235901) (width 0.25) (layer F.Cu) (net 1))
(segment (start 132.8928 68.1609) (end 133.9175 68.1609) (width 0.25) (layer F.Cu) (net 1))
(segment (start 138.49096 73.13223) (end 138.49096 69.86124) (width 0.25) (layer F.Cu) (net 1))
(segment (start 137.98238 73.64081) (end 138.49096 73.13223) (width 0.25) (layer F.Cu) (net 1))
(segment (start 138.49096 69.86124) (end 138.49096 69.46138) (width 0.25) (layer F.Cu) (net 1))
(segment (start 133.95602 73.64081) (end 137.98238 73.64081) (width 0.25) (layer F.Cu) (net 1))
(segment (start 133.4008 73.08559) (end 133.95602 73.64081) (width 0.25) (layer F.Cu) (net 1))
(segment (start 132.23931 71.17771) (end 133.4008 72.3392) (width 0.25) (layer F.Cu) (net 1))
(segment (start 130.43891 71.17771) (end 132.23931 71.17771) (width 0.25) (layer F.Cu) (net 1))
(segment (start 133.4008 72.3392) (end 133.4008 73.08559) (width 0.25) (layer F.Cu) (net 1))
(segment (start 129.7432 70.482) (end 130.43891 71.17771) (width 0.25) (layer F.Cu) (net 1))
(segment (start 133.4008 71.79601) (end 133.4008 72.3392) (width 0.25) (layer F.Cu) (net 1))
(via (at 131.4196 73.3044) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 2))
(segment (start 131.3972 73.282) (end 131.4196 73.3044) (width 0.25) (layer F.Cu) (net 2))
(segment (start 129.7432 73.282) (end 131.3972 73.282) (width 0.25) (layer F.Cu) (net 2))
(via (at 138.3792 59.3344) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 2))
(segment (start 139.3952 60.3504) (end 138.3792 59.3344) (width 0.25) (layer F.Cu) (net 2))
(segment (start 139.3952 60.6268) (end 139.3952 60.3504) (width 0.25) (layer F.Cu) (net 2))
(via (at 132.8928 70.1548) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 2))
(segment (start 132.8928 69.46138) (end 132.8928 70.1548) (width 0.25) (layer F.Cu) (net 2))
(via (at 137.3124 67.4624) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 2))
(segment (start 137.3632 67.5132) (end 137.3124 67.4624) (width 0.25) (layer F.Cu) (net 2))
(segment (start 138.49096 67.5132) (end 137.3632 67.5132) (width 0.25) (layer F.Cu) (net 2))
(segment (start 139.350282 66.8655) (end 140.15118 66.064602) (width 0.25) (layer F.Cu) (net 3))
(segment (start 140.15118 66.064602) (end 140.15118 65.18242) (width 0.25) (layer F.Cu) (net 3))
(segment (start 138.49096 66.8655) (end 139.350282 66.8655) (width 0.25) (layer F.Cu) (net 3))
(segment (start 140.15118 65.18242) (end 141.8844 63.4492) (width 0.25) (layer F.Cu) (net 3))
(segment (start 141.8844 61.97) (end 143.256 60.5984) (width 0.25) (layer F.Cu) (net 3))
(segment (start 141.8844 63.4492) (end 141.8844 61.97) (width 0.25) (layer F.Cu) (net 3))
(segment (start 139.590661 68.085899) (end 139.590661 67.673339) (width 0.25) (layer F.Cu) (net 4))
(segment (start 139.51566 68.1609) (end 139.590661 68.085899) (width 0.25) (layer F.Cu) (net 4))
(segment (start 138.49096 68.1609) (end 139.51566 68.1609) (width 0.25) (layer F.Cu) (net 4))
(segment (start 139.590661 67.673339) (end 140.60119 66.66281) (width 0.25) (layer F.Cu) (net 4))
(segment (start 140.60119 65.63402) (end 140.60119 66.66281) (width 0.25) (layer F.Cu) (net 4))
(segment (start 142.1411 64.09411) (end 140.60119 65.63402) (width 0.25) (layer F.Cu) (net 4))
(segment (start 142.56029 64.09411) (end 142.1411 64.09411) (width 0.25) (layer F.Cu) (net 4))
(segment (start 143.256 63.3984) (end 142.56029 64.09411) (width 0.25) (layer F.Cu) (net 4))
(segment (start 139.51566 64.78124) (end 139.51566 65.16516) (width 0.25) (layer F.Cu) (net 5))
(segment (start 139.51566 65.16516) (end 139.1158 65.56502) (width 0.25) (layer F.Cu) (net 5))
(segment (start 139.3952 64.66078) (end 139.51566 64.78124) (width 0.25) (layer F.Cu) (net 5))
(segment (start 139.1158 65.56502) (end 138.49096 65.56502) (width 0.25) (layer F.Cu) (net 5))
(segment (start 139.3952 63.4268) (end 139.3952 64.66078) (width 0.25) (layer F.Cu) (net 5))
(segment (start 138.49096 65.56502) (end 138.49096 66.21526) (width 0.25) (layer F.Cu) (net 5))
(segment (start 125.9556 60.576) (end 125.6792 60.2996) (width 0.25) (layer F.Cu) (net 6))
(segment (start 129.7432 60.576) (end 125.9556 60.576) (width 0.25) (layer F.Cu) (net 6))
(segment (start 129.7432 65.5544) (end 129.7432 63.376) (width 0.25) (layer F.Cu) (net 7))
(segment (start 126.0856 64.9732) (end 125.6792 65.3796) (width 0.25) (layer F.Cu) (net 8))
(segment (start 127.508 64.9732) (end 126.0856 64.9732) (width 0.25) (layer F.Cu) (net 8))
(segment (start 126.8476 61.6712) (end 125.6792 62.8396) (width 0.25) (layer F.Cu) (net 9))
(segment (start 127.3048 61.6712) (end 126.8476 61.6712) (width 0.25) (layer F.Cu) (net 9))
(segment (start 134.5692 71.4658) (end 134.8232 71.2118) (width 0.25) (layer F.Cu) (net 10))
(segment (start 134.5692 72.4408) (end 134.5692 71.4658) (width 0.25) (layer F.Cu) (net 10))
(segment (start 134.8232 71.2118) (end 134.8232 68.2752) (width 0.25) (layer F.Cu) (net 10))
(segment (start 134.0612 67.5132) (end 132.8928 67.5132) (width 0.25) (layer F.Cu) (net 10))
(segment (start 134.8232 68.2752) (end 134.0612 67.5132) (width 0.25) (layer F.Cu) (net 10))
(segment (start 135.7884 72.4408) (end 135.8392 72.4916) (width 0.25) (layer F.Cu) (net 10))
(via (at 135.8392 72.4916) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 10))
(segment (start 134.5692 72.4408) (end 135.7884 72.4408) (width 0.25) (layer F.Cu) (net 10))
(via (at 139.3444 72.4408) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 10))
(segment (start 139.2936 72.4916) (end 139.3444 72.4408) (width 0.25) (layer B.Cu) (net 10))
(segment (start 135.8392 72.4916) (end 139.2936 72.4916) (width 0.25) (layer B.Cu) (net 10))
(segment (start 140.8116 72.4408) (end 141.5228 73.152) (width 0.25) (layer F.Cu) (net 10))
(segment (start 139.3444 72.4408) (end 140.8116 72.4408) (width 0.25) (layer F.Cu) (net 10))
(segment (start 142.17371 70.29171) (end 141.478 69.596) (width 0.25) (layer F.Cu) (net 10))
(segment (start 142.21851 70.33651) (end 142.17371 70.29171) (width 0.25) (layer F.Cu) (net 10))
(segment (start 142.21851 72.45629) (end 142.21851 70.33651) (width 0.25) (layer F.Cu) (net 10))
(segment (start 141.5228 73.152) (end 142.21851 72.45629) (width 0.25) (layer F.Cu) (net 10))
(segment (start 144.3512 66.7228) (end 144.3512 66.4972) (width 0.25) (layer F.Cu) (net 10))
(segment (start 141.478 69.596) (end 144.3512 66.7228) (width 0.25) (layer F.Cu) (net 10))
(segment (start 144.278 73.1072) (end 144.3228 73.152) (width 0.25) (layer F.Cu) (net 11))
(segment (start 144.278 69.596) (end 144.278 73.1072) (width 0.25) (layer F.Cu) (net 11))
(segment (start 157.95752 69.596) (end 158.8516 70.49008) (width 0.25) (layer F.Cu) (net 11))
(segment (start 144.278 69.596) (end 157.95752 69.596) (width 0.25) (layer F.Cu) (net 11))
(segment (start 132.8928 65.16516) (end 134.45636 63.6016) (width 0.25) (layer F.Cu) (net 12))
(segment (start 132.8928 65.56502) (end 132.8928 65.16516) (width 0.25) (layer F.Cu) (net 12))
(segment (start 134.45636 63.00324) (end 135.7884 61.6712) (width 0.25) (layer F.Cu) (net 12))
(segment (start 134.45636 63.6016) (end 134.45636 63.00324) (width 0.25) (layer F.Cu) (net 12))
(segment (start 140.5128 61.6712) (end 141.0208 62.1792) (width 0.25) (layer F.Cu) (net 12))
(via (at 141.0208 62.1792) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 12))
(segment (start 135.7884 61.6712) (end 140.5128 61.6712) (width 0.25) (layer F.Cu) (net 12))
(via (at 145.034 62.1792) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 12))
(segment (start 141.0208 62.1792) (end 145.034 62.1792) (width 0.25) (layer B.Cu) (net 12))
(segment (start 158.1404 62.1792) (end 158.8516 62.8904) (width 0.25) (layer F.Cu) (net 12))
(segment (start 145.034 62.1792) (end 158.1404 62.1792) (width 0.25) (layer F.Cu) (net 12))
(segment (start 131.8681 68.81114) (end 132.8928 68.81114) (width 0.25) (layer F.Cu) (net 13))
(segment (start 130.7182 68.3544) (end 131.17494 68.81114) (width 0.25) (layer F.Cu) (net 13))
(segment (start 129.7432 68.3544) (end 130.7182 68.3544) (width 0.25) (layer F.Cu) (net 13))
(via (at 131.8768 70.45271) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 13))
(segment (start 131.8768 70.17879) (end 131.8768 70.45271) (width 0.25) (layer F.Cu) (net 13))
(segment (start 131.5212 68.81114) (end 131.5212 69.82319) (width 0.25) (layer F.Cu) (net 13))
(segment (start 131.5212 69.82319) (end 131.8768 70.17879) (width 0.25) (layer F.Cu) (net 13))
(segment (start 131.17494 68.81114) (end 131.5212 68.81114) (width 0.25) (layer F.Cu) (net 13))
(segment (start 131.5212 68.81114) (end 131.8681 68.81114) (width 0.25) (layer F.Cu) (net 13))
(via (at 139.2936 70.866) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 13))
(segment (start 139.2428 70.9168) (end 139.2936 70.866) (width 0.25) (layer B.Cu) (net 13))
(segment (start 132.34089 70.9168) (end 139.2428 70.9168) (width 0.25) (layer B.Cu) (net 13))
(segment (start 131.8768 70.45271) (end 132.34089 70.9168) (width 0.25) (layer B.Cu) (net 13))
(segment (start 140.85549 67.19291) (end 141.5512 66.4972) (width 0.25) (layer F.Cu) (net 13))
(segment (start 140.3604 67.688) (end 140.85549 67.19291) (width 0.25) (layer F.Cu) (net 13))
(segment (start 140.3604 69.7992) (end 140.3604 67.688) (width 0.25) (layer F.Cu) (net 13))
(segment (start 139.2936 70.866) (end 140.3604 69.7992) (width 0.25) (layer F.Cu) (net 13))
(via (at 132.5372 64.1096) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 14))
(segment (start 132.9884 63.6584) (end 132.5372 64.1096) (width 0.25) (layer F.Cu) (net 14))
(segment (start 132.9884 61.6712) (end 132.9884 63.6584) (width 0.25) (layer F.Cu) (net 14))
(via (at 134.5184 64.9224) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 14))
(segment (start 133.7056 64.1096) (end 134.5184 64.9224) (width 0.25) (layer B.Cu) (net 14))
(segment (start 132.5372 64.1096) (end 133.7056 64.1096) (width 0.25) (layer B.Cu) (net 14))
(segment (start 133.9175 66.8655) (end 132.8928 66.8655) (width 0.25) (layer F.Cu) (net 14))
(segment (start 134.5184 66.2646) (end 133.9175 66.8655) (width 0.25) (layer F.Cu) (net 14))
(segment (start 134.5184 64.9224) (end 134.5184 66.2646) (width 0.25) (layer F.Cu) (net 14))
(segment (start 137.3692 72.4408) (end 137.3692 71.4308) (width 0.25) (layer F.Cu) (net 14))
(segment (start 137.3692 71.4308) (end 135.5344 69.596) (width 0.25) (layer F.Cu) (net 14))
(segment (start 134.04991 66.8655) (end 133.9175 66.8655) (width 0.25) (layer F.Cu) (net 14))
(segment (start 135.5344 68.34999) (end 134.04991 66.8655) (width 0.25) (layer F.Cu) (net 14))
(segment (start 135.5344 69.596) (end 135.5344 68.34999) (width 0.25) (layer F.Cu) (net 14))
(zone (net 2) (net_name GND) (layer F.Cu) (tstamp 5D3D8D9F) (hatch edge 0.508)
(connect_pads (clearance 0.508))
(min_thickness 0.254)
(fill yes (arc_segments 16) (thermal_gap 0.508) (thermal_bridge_width 0.508))
(polygon
(pts
(xy 118.4402 55.0926) (xy 165.608 55.5752) (xy 165.608 77.0128) (xy 118.999 76.581)
)
)
(filled_polygon
(pts
(xy 128.483614 71.491586) (xy 128.774765 71.686126) (xy 129.1182 71.75444) (xy 129.934085 71.75444) (xy 130.142373 71.893614)
(xy 130.364058 71.93771) (xy 130.364062 71.93771) (xy 130.43891 71.952598) (xy 130.513758 71.93771) (xy 131.924509 71.93771)
(xy 132.6408 72.654002) (xy 132.6408 73.010743) (xy 132.625912 73.08559) (xy 132.6408 73.160437) (xy 132.6408 73.160442)
(xy 132.672187 73.318231) (xy 132.684897 73.382127) (xy 132.716062 73.428768) (xy 132.852872 73.633519) (xy 132.916328 73.675919)
(xy 133.358808 74.1184) (xy 131.217954 74.1184) (xy 131.2532 74.033309) (xy 131.2532 73.56775) (xy 131.09445 73.409)
(xy 129.8702 73.409) (xy 129.8702 73.429) (xy 129.6162 73.429) (xy 129.6162 73.409) (xy 128.39195 73.409)
(xy 128.2332 73.56775) (xy 128.2332 74.033309) (xy 128.268446 74.1184) (xy 127.113302 74.1184) (xy 127.127357 74.097365)
(xy 127.17664 73.8496) (xy 127.17664 72.530691) (xy 128.2332 72.530691) (xy 128.2332 72.99625) (xy 128.39195 73.155)
(xy 129.6162 73.155) (xy 129.6162 72.18075) (xy 129.8702 72.18075) (xy 129.8702 73.155) (xy 131.09445 73.155)
(xy 131.2532 72.99625) (xy 131.2532 72.530691) (xy 131.156527 72.297302) (xy 130.977899 72.118673) (xy 130.74451 72.022)
(xy 130.02895 72.022) (xy 129.8702 72.18075) (xy 129.6162 72.18075) (xy 129.45745 72.022) (xy 128.74189 72.022)
(xy 128.508501 72.118673) (xy 128.329873 72.297302) (xy 128.2332 72.530691) (xy 127.17664 72.530691) (xy 127.17664 72.1496)
(xy 127.127357 71.901835) (xy 126.987009 71.691791) (xy 126.776965 71.551443) (xy 126.731581 71.542416) (xy 126.749825 71.530225)
(xy 126.957378 71.2196) (xy 128.30188 71.2196)
)
)
(filled_polygon
(pts
(xy 161.240401 74.1184) (xy 145.527331 74.1184) (xy 145.59524 73.777) (xy 145.59524 72.527) (xy 145.526926 72.183565)
(xy 145.332386 71.892414) (xy 145.041235 71.697874) (xy 145.038 71.697231) (xy 145.038 71.022353) (xy 145.287586 70.855586)
(xy 145.482126 70.564435) (xy 145.523587 70.356) (xy 157.2166 70.356) (xy 157.2166 70.815302) (xy 157.465514 71.416233)
(xy 157.925447 71.876166) (xy 158.526378 72.12508) (xy 159.176822 72.12508) (xy 159.777753 71.876166) (xy 160.237686 71.416233)
(xy 160.4866 70.815302) (xy 160.4866 70.164858) (xy 160.237686 69.563927) (xy 159.777753 69.103994) (xy 159.176822 68.85508)
(xy 158.526378 68.85508) (xy 158.335158 68.934286) (xy 158.254057 68.880096) (xy 158.032372 68.836) (xy 158.032367 68.836)
(xy 157.95752 68.821112) (xy 157.882673 68.836) (xy 145.523587 68.836) (xy 145.482126 68.627565) (xy 145.287586 68.336414)
(xy 144.996435 68.141874) (xy 144.653 68.07356) (xy 144.075242 68.07356) (xy 144.129162 68.01964) (xy 144.7262 68.01964)
(xy 145.069635 67.951326) (xy 145.360786 67.756786) (xy 145.555326 67.465635) (xy 145.62364 67.1222) (xy 145.62364 65.8722)
(xy 145.555326 65.528765) (xy 145.360786 65.237614) (xy 145.069635 65.043074) (xy 144.7262 64.97476) (xy 143.9762 64.97476)
(xy 143.632765 65.043074) (xy 143.341614 65.237614) (xy 143.147074 65.528765) (xy 143.07876 65.8722) (xy 143.07876 66.920438)
(xy 142.810391 67.188807) (xy 142.82364 67.1222) (xy 142.82364 65.8722) (xy 142.755326 65.528765) (xy 142.560786 65.237614)
(xy 142.269635 65.043074) (xy 142.267385 65.042626) (xy 142.455902 64.85411) (xy 142.485443 64.85411) (xy 142.56029 64.868998)
(xy 142.635137 64.85411) (xy 142.635142 64.85411) (xy 142.856827 64.810014) (xy 143.065115 64.67084) (xy 143.881 64.67084)
(xy 144.224435 64.602526) (xy 144.515586 64.407986) (xy 144.710126 64.116835) (xy 144.77844 63.7734) (xy 144.77844 63.193619)
(xy 144.828126 63.2142) (xy 145.239874 63.2142) (xy 145.62028 63.056631) (xy 145.737711 62.9392) (xy 157.2166 62.9392)
(xy 157.2166 63.215622) (xy 157.465514 63.816553) (xy 157.925447 64.276486) (xy 158.526378 64.5254) (xy 159.176822 64.5254)
(xy 159.777753 64.276486) (xy 160.237686 63.816553) (xy 160.4866 63.215622) (xy 160.4866 62.565178) (xy 160.237686 61.964247)
(xy 159.777753 61.504314) (xy 159.176822 61.2554) (xy 158.526378 61.2554) (xy 158.158285 61.407869) (xy 158.1404 61.404312)
(xy 158.065553 61.4192) (xy 145.737711 61.4192) (xy 145.62028 61.301769) (xy 145.239874 61.1442) (xy 144.828126 61.1442)
(xy 144.736954 61.181965) (xy 144.77844 60.9734) (xy 144.77844 60.2234) (xy 144.710126 59.879965) (xy 144.515586 59.588814)
(xy 144.224435 59.394274) (xy 143.881 59.32596) (xy 142.631 59.32596) (xy 142.287565 59.394274) (xy 141.996414 59.588814)
(xy 141.801874 59.879965) (xy 141.73356 60.2234) (xy 141.73356 60.9734) (xy 141.745612 61.033987) (xy 141.515686 61.263913)
(xy 141.226674 61.1442) (xy 141.074713 61.1442) (xy 141.060729 61.123271) (xy 140.9052 61.01935) (xy 140.9052 60.91255)
(xy 140.74645 60.7538) (xy 139.5222 60.7538) (xy 139.5222 60.7738) (xy 139.2682 60.7738) (xy 139.2682 60.7538)
(xy 138.04395 60.7538) (xy 137.88655 60.9112) (xy 137.033987 60.9112) (xy 136.992526 60.702765) (xy 136.797986 60.411614)
(xy 136.506835 60.217074) (xy 136.1634 60.14876) (xy 135.4134 60.14876) (xy 135.069965 60.217074) (xy 134.778814 60.411614)
(xy 134.584274 60.702765) (xy 134.51596 61.0462) (xy 134.51596 61.868839) (xy 134.26084 62.123959) (xy 134.26084 61.0462)
(xy 134.192526 60.702765) (xy 133.997986 60.411614) (xy 133.706835 60.217074) (xy 133.3634 60.14876) (xy 132.6134 60.14876)
(xy 132.269965 60.217074) (xy 131.978814 60.411614) (xy 131.784274 60.702765) (xy 131.71596 61.0462) (xy 131.71596 62.2962)
(xy 131.784274 62.639635) (xy 131.978814 62.930786) (xy 132.228401 63.097554) (xy 132.228401 63.117233) (xy 131.95092 63.232169)
(xy 131.659769 63.52332) (xy 131.5022 63.903726) (xy 131.5022 64.315474) (xy 131.659769 64.69588) (xy 131.816718 64.852829)
(xy 131.660291 64.957351) (xy 131.519943 65.167395) (xy 131.47066 65.41516) (xy 131.47066 65.566777) (xy 131.320171 65.667331)
(xy 131.277771 65.730787) (xy 131.26564 65.742918) (xy 131.26564 65.1794) (xy 131.197326 64.835965) (xy 131.002786 64.544814)
(xy 130.883635 64.4652) (xy 131.002786 64.385586) (xy 131.197326 64.094435) (xy 131.26564 63.751) (xy 131.26564 63.001)
(xy 131.197326 62.657565) (xy 131.002786 62.366414) (xy 130.711635 62.171874) (xy 130.3682 62.10356) (xy 129.1182 62.10356)
(xy 128.774765 62.171874) (xy 128.483614 62.366414) (xy 128.289074 62.657565) (xy 128.22076 63.001) (xy 128.22076 63.751)
(xy 128.289074 64.094435) (xy 128.399232 64.259299) (xy 128.150926 64.010993) (xy 127.733766 63.8382) (xy 127.282234 63.8382)
(xy 126.865074 64.010993) (xy 126.662867 64.2132) (xy 126.606488 64.2132) (xy 126.451439 64.1096) (xy 126.749825 63.910225)
(xy 127.078039 63.419018) (xy 127.193292 62.8396) (xy 127.186648 62.8062) (xy 127.530566 62.8062) (xy 127.947726 62.633407)
(xy 128.267007 62.314126) (xy 128.4398 61.896966) (xy 128.4398 61.520013) (xy 128.483614 61.585586) (xy 128.774765 61.780126)
(xy 129.1182 61.84844) (xy 130.3682 61.84844) (xy 130.711635 61.780126) (xy 131.002786 61.585586) (xy 131.197326 61.294435)
(xy 131.26564 60.951) (xy 131.26564 60.201) (xy 131.200892 59.875491) (xy 137.8852 59.875491) (xy 137.8852 60.34105)
(xy 138.04395 60.4998) (xy 139.2682 60.4998) (xy 139.2682 59.52555) (xy 139.5222 59.52555) (xy 139.5222 60.4998)
(xy 140.74645 60.4998) (xy 140.9052 60.34105) (xy 140.9052 59.875491) (xy 140.808527 59.642102) (xy 140.629899 59.463473)
(xy 140.39651 59.3668) (xy 139.68095 59.3668) (xy 139.5222 59.52555) (xy 139.2682 59.52555) (xy 139.10945 59.3668)
(xy 138.39389 59.3668) (xy 138.160501 59.463473) (xy 137.981873 59.642102) (xy 137.8852 59.875491) (xy 131.200892 59.875491)
(xy 131.197326 59.857565) (xy 131.002786 59.566414) (xy 130.711635 59.371874) (xy 130.3682 59.30356) (xy 129.1182 59.30356)
(xy 128.774765 59.371874) (xy 128.483614 59.566414) (xy 128.316847 59.816) (xy 127.097098 59.816) (xy 127.078039 59.720182)