-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBarometer-Pi-Module.kicad_pcb
1111 lines (1090 loc) · 74 KB
/
Barometer-Pi-Module.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.0)
(general
(thickness 1.6)
(drawings 19)
(tracks 138)
(zones 0)
(modules 13)
(nets 14)
)
(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)
(user_trace_width 0.5)
(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 3.35 3.35)
(pad_drill 0)
(pad_to_mask_clearance 0.2)
(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 0)
(scaleselection 1)
(outputdirectory "gerber/"))
)
(net 0 "")
(net 1 VDD)
(net 2 SDA)
(net 3 SCL)
(net 4 Earth)
(net 5 "Net-(J4-Pad2)")
(net 6 SPI_MISO)
(net 7 SPI_SCK)
(net 8 SPI_MOSI)
(net 9 SPI_CS)
(net 10 SPI_VCC)
(net 11 CSB)
(net 12 PS)
(net 13 "Net-(J1-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 CSB)
(add_net Earth)
(add_net "Net-(J1-Pad2)")
(add_net "Net-(J4-Pad2)")
(add_net PS)
(add_net SCL)
(add_net SDA)
(add_net SPI_CS)
(add_net SPI_MISO)
(add_net SPI_MOSI)
(add_net SPI_SCK)
(add_net SPI_VCC)
(add_net VDD)
)
(module Connector_PinHeader_2.54mm:PinHeader_2x03_P2.54mm_Vertical (layer F.Cu) (tedit 59FED5CC) (tstamp 5BFD093B)
(at 195.58 81.026)
(descr "Through hole straight pin header, 2x03, 2.54mm pitch, double rows")
(tags "Through hole pin header THT 2x03 2.54mm double row")
(path /5BE8A142)
(fp_text reference J2 (at -2.794 -1.27) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value Conn_02x03_Odd_Even (at 1.27 7.41) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 0 -1.27) (end 3.81 -1.27) (layer F.Fab) (width 0.1))
(fp_line (start 3.81 -1.27) (end 3.81 6.35) (layer F.Fab) (width 0.1))
(fp_line (start 3.81 6.35) (end -1.27 6.35) (layer F.Fab) (width 0.1))
(fp_line (start -1.27 6.35) (end -1.27 0) (layer F.Fab) (width 0.1))
(fp_line (start -1.27 0) (end 0 -1.27) (layer F.Fab) (width 0.1))
(fp_line (start -1.33 6.41) (end 3.87 6.41) (layer F.SilkS) (width 0.12))
(fp_line (start -1.33 1.27) (end -1.33 6.41) (layer F.SilkS) (width 0.12))
(fp_line (start 3.87 -1.33) (end 3.87 6.41) (layer F.SilkS) (width 0.12))
(fp_line (start -1.33 1.27) (end 1.27 1.27) (layer F.SilkS) (width 0.12))
(fp_line (start 1.27 1.27) (end 1.27 -1.33) (layer F.SilkS) (width 0.12))
(fp_line (start 1.27 -1.33) (end 3.87 -1.33) (layer F.SilkS) (width 0.12))
(fp_line (start -1.33 0) (end -1.33 -1.33) (layer F.SilkS) (width 0.12))
(fp_line (start -1.33 -1.33) (end 0 -1.33) (layer F.SilkS) (width 0.12))
(fp_line (start -1.8 -1.8) (end -1.8 6.85) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.8 6.85) (end 4.35 6.85) (layer F.CrtYd) (width 0.05))
(fp_line (start 4.35 6.85) (end 4.35 -1.8) (layer F.CrtYd) (width 0.05))
(fp_line (start 4.35 -1.8) (end -1.8 -1.8) (layer F.CrtYd) (width 0.05))
(fp_text user %R (at 1.27 2.54 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad 1 thru_hole rect (at 0 0) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 6 SPI_MISO))
(pad 2 thru_hole oval (at 2.54 0) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 10 SPI_VCC))
(pad 3 thru_hole oval (at 0 2.54) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 7 SPI_SCK))
(pad 4 thru_hole oval (at 2.54 2.54) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 8 SPI_MOSI))
(pad 5 thru_hole oval (at 0 5.08) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 9 SPI_CS))
(pad 6 thru_hole oval (at 2.54 5.08) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 4 Earth))
(model ${KISYS3DMOD}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_2x03_P2.54mm_Vertical.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Jumper:SolderJumper-2_P1.3mm_Bridged_Pad1.0x1.5mm (layer F.Cu) (tedit 5BE8857E) (tstamp 5BFD00AE)
(at 191.008 83.566 270)
(descr "SMD Solder Jumper, 1x1.5mm Pads, 0.3mm gap, bridged with 1 copper strip")
(tags "solder jumper open")
(path /5BE8E140)
(attr virtual)
(fp_text reference JP2 (at -3.048 0 270) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value Jumper_2_Bridged (at 0 1.9 270) (layer F.Fab) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -1.4 1) (end -1.4 -1) (layer F.SilkS) (width 0.12))
(fp_line (start 1.4 1) (end -1.4 1) (layer F.SilkS) (width 0.12))
(fp_line (start 1.4 -1) (end 1.4 1) (layer F.SilkS) (width 0.12))
(fp_line (start -1.4 -1) (end 1.4 -1) (layer F.SilkS) (width 0.12))
(fp_line (start -1.65 -1.25) (end 1.65 -1.25) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.65 -1.25) (end -1.65 1.25) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.65 1.25) (end 1.65 -1.25) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.65 1.25) (end -1.65 1.25) (layer F.CrtYd) (width 0.05))
(pad 1 smd custom (at -0.65 0 270) (size 1 1.5) (layers F.Cu F.Mask)
(net 1 VDD)
(options (clearance outline) (anchor rect))
(primitives
(gr_poly (pts
(xy 0.4 -0.3) (xy 0.9 -0.3) (xy 0.9 0.3) (xy 0.4 0.3)) (width 0))
))
(pad 2 smd rect (at 0.65 0 270) (size 1 1.5) (layers F.Cu F.Mask)
(net 12 PS))
)
(module Jumper:SolderJumper-2_P1.3mm_Open_Pad1.0x1.5mm (layer B.Cu) (tedit 5BE88585) (tstamp 5BFD00A0)
(at 190.5 84.836 90)
(descr "SMD Solder Jumper, 1x1.5mm Pads, 0.3mm gap, open")
(tags "solder jumper open")
(path /5BE8A29A)
(attr virtual)
(fp_text reference JP6 (at 0 1.8 90) (layer B.SilkS)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text value SolderJumper_2_Open (at 0 -1.9 90) (layer B.Fab) hide
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_line (start 1.65 -1.25) (end -1.65 -1.25) (layer B.CrtYd) (width 0.05))
(fp_line (start 1.65 -1.25) (end 1.65 1.25) (layer B.CrtYd) (width 0.05))
(fp_line (start -1.65 1.25) (end -1.65 -1.25) (layer B.CrtYd) (width 0.05))
(fp_line (start -1.65 1.25) (end 1.65 1.25) (layer B.CrtYd) (width 0.05))
(fp_line (start -1.4 1) (end 1.4 1) (layer B.SilkS) (width 0.12))
(fp_line (start 1.4 1) (end 1.4 -1) (layer B.SilkS) (width 0.12))
(fp_line (start 1.4 -1) (end -1.4 -1) (layer B.SilkS) (width 0.12))
(fp_line (start -1.4 -1) (end -1.4 1) (layer B.SilkS) (width 0.12))
(pad 1 smd rect (at -0.65 0 90) (size 1 1.5) (layers B.Cu B.Mask)
(net 11 CSB))
(pad 2 smd rect (at 0.65 0 90) (size 1 1.5) (layers B.Cu B.Mask)
(net 9 SPI_CS))
)
(module Jumper:SolderJumper-2_P1.3mm_Open_Pad1.0x1.5mm (layer B.Cu) (tedit 5BE88595) (tstamp 5BFD0092)
(at 186.69 84.836 90)
(descr "SMD Solder Jumper, 1x1.5mm Pads, 0.3mm gap, open")
(tags "solder jumper open")
(path /5BE96DA5)
(attr virtual)
(fp_text reference JP5 (at 0 1.8 90) (layer B.SilkS)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text value SolderJumper_2_Open (at 0 -1.9 90) (layer B.Fab) hide
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_line (start -1.4 -1) (end -1.4 1) (layer B.SilkS) (width 0.12))
(fp_line (start 1.4 -1) (end -1.4 -1) (layer B.SilkS) (width 0.12))
(fp_line (start 1.4 1) (end 1.4 -1) (layer B.SilkS) (width 0.12))
(fp_line (start -1.4 1) (end 1.4 1) (layer B.SilkS) (width 0.12))
(fp_line (start -1.65 1.25) (end 1.65 1.25) (layer B.CrtYd) (width 0.05))
(fp_line (start -1.65 1.25) (end -1.65 -1.25) (layer B.CrtYd) (width 0.05))
(fp_line (start 1.65 -1.25) (end 1.65 1.25) (layer B.CrtYd) (width 0.05))
(fp_line (start 1.65 -1.25) (end -1.65 -1.25) (layer B.CrtYd) (width 0.05))
(pad 2 smd rect (at 0.65 0 90) (size 1 1.5) (layers B.Cu B.Mask)
(net 2 SDA))
(pad 1 smd rect (at -0.65 0 90) (size 1 1.5) (layers B.Cu B.Mask)
(net 8 SPI_MOSI))
)
(module Jumper:SolderJumper-2_P1.3mm_Open_Pad1.0x1.5mm (layer B.Cu) (tedit 5BE8858B) (tstamp 5BFD0084)
(at 190.5 81.28 90)
(descr "SMD Solder Jumper, 1x1.5mm Pads, 0.3mm gap, open")
(tags "solder jumper open")
(path /5BE8AAEA)
(attr virtual)
(fp_text reference JP4 (at 0 1.8 90) (layer B.SilkS)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text value SolderJumper_2_Open (at 0 -1.9 90) (layer B.Fab) hide
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_line (start 1.65 -1.25) (end -1.65 -1.25) (layer B.CrtYd) (width 0.05))
(fp_line (start 1.65 -1.25) (end 1.65 1.25) (layer B.CrtYd) (width 0.05))
(fp_line (start -1.65 1.25) (end -1.65 -1.25) (layer B.CrtYd) (width 0.05))
(fp_line (start -1.65 1.25) (end 1.65 1.25) (layer B.CrtYd) (width 0.05))
(fp_line (start -1.4 1) (end 1.4 1) (layer B.SilkS) (width 0.12))
(fp_line (start 1.4 1) (end 1.4 -1) (layer B.SilkS) (width 0.12))
(fp_line (start 1.4 -1) (end -1.4 -1) (layer B.SilkS) (width 0.12))
(fp_line (start -1.4 -1) (end -1.4 1) (layer B.SilkS) (width 0.12))
(pad 1 smd rect (at -0.65 0 90) (size 1 1.5) (layers B.Cu B.Mask)
(net 7 SPI_SCK))
(pad 2 smd rect (at 0.65 0 90) (size 1 1.5) (layers B.Cu B.Mask)
(net 3 SCL))
)
(module Jumper:SolderJumper-2_P1.3mm_Open_Pad1.0x1.5mm (layer B.Cu) (tedit 5BE8859B) (tstamp 5BFD0076)
(at 186.69 81.28 90)
(descr "SMD Solder Jumper, 1x1.5mm Pads, 0.3mm gap, open")
(tags "solder jumper open")
(path /5BE8A6C0)
(attr virtual)
(fp_text reference JP3 (at 0 1.8 90) (layer B.SilkS)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text value SolderJumper_2_Open (at 0 -1.9 90) (layer B.Fab) hide
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_line (start -1.4 -1) (end -1.4 1) (layer B.SilkS) (width 0.12))
(fp_line (start 1.4 -1) (end -1.4 -1) (layer B.SilkS) (width 0.12))
(fp_line (start 1.4 1) (end 1.4 -1) (layer B.SilkS) (width 0.12))
(fp_line (start -1.4 1) (end 1.4 1) (layer B.SilkS) (width 0.12))
(fp_line (start -1.65 1.25) (end 1.65 1.25) (layer B.CrtYd) (width 0.05))
(fp_line (start -1.65 1.25) (end -1.65 -1.25) (layer B.CrtYd) (width 0.05))
(fp_line (start 1.65 -1.25) (end 1.65 1.25) (layer B.CrtYd) (width 0.05))
(fp_line (start 1.65 -1.25) (end -1.65 -1.25) (layer B.CrtYd) (width 0.05))
(pad 2 smd rect (at 0.65 0 90) (size 1 1.5) (layers B.Cu B.Mask)
(net 4 Earth))
(pad 1 smd rect (at -0.65 0 90) (size 1 1.5) (layers B.Cu B.Mask)
(net 12 PS))
)
(module Jumper:SolderJumper-2_P1.3mm_Open_Pad1.0x1.5mm (layer F.Cu) (tedit 5BE88590) (tstamp 5BFCFB88)
(at 187.96 83.566 270)
(descr "SMD Solder Jumper, 1x1.5mm Pads, 0.3mm gap, open")
(tags "solder jumper open")
(path /5BE80E1C)
(attr virtual)
(fp_text reference JP1 (at -3.048 0 270) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value SolderJumper_2_Open (at 0 1.9 270) (layer F.Fab) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -1.4 1) (end -1.4 -1) (layer F.SilkS) (width 0.12))
(fp_line (start 1.4 1) (end -1.4 1) (layer F.SilkS) (width 0.12))
(fp_line (start 1.4 -1) (end 1.4 1) (layer F.SilkS) (width 0.12))
(fp_line (start -1.4 -1) (end 1.4 -1) (layer F.SilkS) (width 0.12))
(fp_line (start -1.65 -1.25) (end 1.65 -1.25) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.65 -1.25) (end -1.65 1.25) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.65 1.25) (end 1.65 -1.25) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.65 1.25) (end -1.65 1.25) (layer F.CrtYd) (width 0.05))
(pad 2 smd rect (at 0.65 0 270) (size 1 1.5) (layers F.Cu F.Mask)
(net 11 CSB))
(pad 1 smd rect (at -0.65 0 270) (size 1 1.5) (layers F.Cu F.Mask)
(net 1 VDD))
)
(module MS560702BA03-50:SON125P300X500X100-8N (layer F.Cu) (tedit 5BE76151) (tstamp 5BFCF57D)
(at 193.867296 90.513545 180)
(path /5BE77E22)
(attr smd)
(fp_text reference U1 (at -0.406828 -3.33089 180) (layer F.SilkS) hide
(effects (font (size 0.64067 0.64067) (thickness 0.05)))
)
(fp_text value MS560702BA03-50 (at -0.099145 3.35642 180) (layer Cmts.User)
(effects (font (size 0.640921 0.640921) (thickness 0.05)))
)
(fp_line (start -1.5 -2.5) (end -1.5 2.5) (layer Dwgs.User) (width 0.127))
(fp_line (start -1.5 2.5) (end 1.5 2.5) (layer Dwgs.User) (width 0.127))
(fp_line (start 1.5 2.5) (end 1.5 -2.5) (layer Dwgs.User) (width 0.127))
(fp_line (start 1.5 -2.5) (end -1.5 -2.5) (layer Dwgs.User) (width 0.127))
(fp_line (start -1.5 -2.5) (end 1.5 -2.5) (layer F.SilkS) (width 0.127))
(fp_line (start -1.5 2.5) (end 1.5 2.5) (layer F.SilkS) (width 0.127))
(fp_line (start -2.11 -2.78) (end -2.11 2.78) (layer Eco1.User) (width 0.05))
(fp_line (start -2.11 2.78) (end 2.11 2.78) (layer Eco1.User) (width 0.05))
(fp_line (start 2.11 2.78) (end 2.11 -2.78) (layer Eco1.User) (width 0.05))
(fp_line (start 2.11 -2.78) (end -2.11 -2.78) (layer Eco1.User) (width 0.05))
(fp_circle (center -2.627 -1.873) (end -2.527 -1.873) (layer F.SilkS) (width 0.2))
(fp_poly (pts (xy -1.87813 -1.4375) (xy 1.875 -1.4375) (xy 1.875 -1.06427) (xy -1.87813 -1.06427)) (layer Dwgs.User) (width 0))
(fp_poly (pts (xy -1.87716 -1.4375) (xy 1.875 -1.4375) (xy 1.875 -1.06372) (xy -1.87716 -1.06372)) (layer Dwgs.User) (width 0))
(fp_poly (pts (xy -1.87675 -1.4375) (xy 1.875 -1.4375) (xy 1.875 -1.06349) (xy -1.87675 -1.06349)) (layer Dwgs.User) (width 0))
(fp_poly (pts (xy -1.87674 -0.1875) (xy 1.875 -0.1875) (xy 1.875 0.187674) (xy -1.87674 0.187674)) (layer Dwgs.User) (width 0))
(fp_poly (pts (xy -1.87699 -0.1875) (xy 1.875 -0.1875) (xy 1.875 0.187699) (xy -1.87699 0.187699)) (layer Dwgs.User) (width 0))
(fp_poly (pts (xy -1.87634 -0.1875) (xy 1.875 -0.1875) (xy 1.875 0.187634) (xy -1.87634 0.187634)) (layer Dwgs.User) (width 0))
(fp_poly (pts (xy -1.87527 1.0625) (xy 1.875 1.0625) (xy 1.875 1.43771) (xy -1.87527 1.43771)) (layer Dwgs.User) (width 0))
(fp_poly (pts (xy -1.87678 1.0625) (xy 1.875 1.0625) (xy 1.875 1.43887) (xy -1.87678 1.43887)) (layer Dwgs.User) (width 0))
(fp_poly (pts (xy -1.87664 1.0625) (xy 1.875 1.0625) (xy 1.875 1.43876) (xy -1.87664 1.43876)) (layer Dwgs.User) (width 0))
(fp_poly (pts (xy -0.375447 -1.905) (xy 0.381 -1.905) (xy 0.381 1.93581) (xy -0.375447 1.93581)) (layer Dwgs.User) (width 0))
(fp_poly (pts (xy -0.375625 -1.905) (xy 0.381 -1.905) (xy 0.381 1.93672) (xy -0.375625 1.93672)) (layer Dwgs.User) (width 0))
(fp_poly (pts (xy -0.375148 -1.905) (xy 0.381 -1.905) (xy 0.381 1.93426) (xy -0.375148 1.93426)) (layer Dwgs.User) (width 0))
(fp_circle (center -1.127 -1.873) (end -1.027 -1.873) (layer Dwgs.User) (width 0.2))
(pad 1 smd rect (at -1.2 -1.875 180) (size 1.31 0.53) (layers F.Cu F.Paste F.Mask)
(net 1 VDD))
(pad 8 smd rect (at 1.2 -1.875 180) (size 1.31 0.53) (layers F.Cu F.Paste F.Mask)
(net 3 SCL))
(pad 2 smd rect (at -1.2 -0.625 180) (size 1.31 0.53) (layers F.Cu F.Paste F.Mask)
(net 12 PS))
(pad 3 smd rect (at -1.2 0.625 180) (size 1.31 0.53) (layers F.Cu F.Paste F.Mask)
(net 4 Earth))
(pad 4 smd rect (at -1.2 1.875 180) (size 1.31 0.53) (layers F.Cu F.Paste F.Mask)
(net 11 CSB))
(pad 5 smd rect (at 1.2 1.875 180) (size 1.31 0.53) (layers F.Cu F.Paste F.Mask)
(net 11 CSB))
(pad 6 smd rect (at 1.2 0.625 180) (size 1.31 0.53) (layers F.Cu F.Paste F.Mask)
(net 6 SPI_MISO))
(pad 7 smd rect (at 1.2 -0.625 180) (size 1.31 0.53) (layers F.Cu F.Paste F.Mask)
(net 2 SDA))
)
(module Connector_PinHeader_2.54mm:PinHeader_1x05_P2.54mm_Horizontal (layer F.Cu) (tedit 59FED5CB) (tstamp 5BC93276)
(at 201.93 81.28)
(descr "Through hole angled pin header, 1x05, 2.54mm pitch, 6mm pin length, single row")
(tags "Through hole angled pin header THT 1x05 2.54mm single row")
(path /5BC4960F)
(fp_text reference J4 (at 2.794 0) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value Conn_01x05 (at 4.385 12.43) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text user %R (at 2.77 5.08 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 10.55 -1.8) (end -1.8 -1.8) (layer F.CrtYd) (width 0.05))
(fp_line (start 10.55 11.95) (end 10.55 -1.8) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.8 11.95) (end 10.55 11.95) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.8 -1.8) (end -1.8 11.95) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.27 -1.27) (end 0 -1.27) (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.042929 10.54) (end 1.44 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 10.1 10.54) (end 4.1 10.54) (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 4.1 9.78) (end 10.1 9.78) (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 1.042929 8) (end 1.44 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 10.1 8) (end 4.1 8) (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 4.1 7.24) (end 10.1 7.24) (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 1.042929 5.46) (end 1.44 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 10.1 5.46) (end 4.1 5.46) (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 4.1 4.7) (end 10.1 4.7) (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 1.042929 2.92) (end 1.44 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 10.1 2.92) (end 4.1 2.92) (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 4.1 2.16) (end 10.1 2.16) (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 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 4.1 0.28) (end 10.1 0.28) (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.04) (end 10.1 0.04) (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.2) (end 10.1 -0.2) (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 10.1 0.38) (end 4.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 4.1 -0.38) (end 10.1 -0.38) (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 11.49) (end 4.1 -1.33) (layer F.SilkS) (width 0.12))
(fp_line (start 1.44 11.49) (end 4.1 11.49) (layer F.SilkS) (width 0.12))
(fp_line (start 1.44 -1.33) (end 1.44 11.49) (layer F.SilkS) (width 0.12))
(fp_line (start 4.04 10.48) (end 10.04 10.48) (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 9.84) (end 10.04 9.84) (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 -0.32 9.84) (end -0.32 10.48) (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 4.04 7.94) (end 10.04 7.94) (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.3) (end 10.04 7.3) (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 -0.32 7.3) (end -0.32 7.94) (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 4.04 5.4) (end 10.04 5.4) (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 4.76) (end 10.04 4.76) (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 -0.32 4.76) (end -0.32 5.4) (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 4.04 2.86) (end 10.04 2.86) (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.22) (end 10.04 2.22) (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 -0.32 2.22) (end -0.32 2.86) (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 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 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 1.5 -0.635) (end 2.135 -1.27) (layer F.Fab) (width 0.1))
(fp_line (start 1.5 11.43) (end 1.5 -0.635) (layer F.Fab) (width 0.1))
(fp_line (start 4.04 11.43) (end 1.5 11.43) (layer F.Fab) (width 0.1))
(fp_line (start 4.04 -1.27) (end 4.04 11.43) (layer F.Fab) (width 0.1))
(fp_line (start 2.135 -1.27) (end 4.04 -1.27) (layer F.Fab) (width 0.1))
(pad 5 thru_hole oval (at 0 10.16) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 1 VDD))
(pad 4 thru_hole oval (at 0 7.62) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 2 SDA))
(pad 3 thru_hole oval (at 0 5.08) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 3 SCL))
(pad 2 thru_hole oval (at 0 2.54) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 5 "Net-(J4-Pad2)"))
(pad 1 thru_hole rect (at 0 0) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 4 Earth))
(model ${KISYS3DMOD}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x05_P2.54mm_Horizontal.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Connector_PinSocket_2.54mm:PinSocket_1x05_P2.54mm_Horizontal (layer F.Cu) (tedit 5A19A431) (tstamp 5BC9322C)
(at 182.88 81.28)
(descr "Through hole angled socket strip, 1x05, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated")
(tags "Through hole angled socket strip THT 1x05 2.54mm single row")
(path /5BC0CED6)
(fp_text reference J1 (at -2.286 0) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value Conn_01x05 (at -4.38 12.93) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text user %R (at -5.775 5.08 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 1.75 11.95) (end 1.75 -1.75) (layer F.CrtYd) (width 0.05))
(fp_line (start -10.55 11.95) (end 1.75 11.95) (layer F.CrtYd) (width 0.05))
(fp_line (start -10.55 -1.75) (end -10.55 11.95) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.75 -1.75) (end -10.55 -1.75) (layer F.CrtYd) (width 0.05))
(fp_line (start 0 -1.33) (end 1.11 -1.33) (layer F.SilkS) (width 0.12))
(fp_line (start 1.11 -1.33) (end 1.11 0) (layer F.SilkS) (width 0.12))
(fp_line (start -10.09 -1.33) (end -10.09 11.49) (layer F.SilkS) (width 0.12))
(fp_line (start -10.09 11.49) (end -1.46 11.49) (layer F.SilkS) (width 0.12))
(fp_line (start -1.46 -1.33) (end -1.46 11.49) (layer F.SilkS) (width 0.12))
(fp_line (start -10.09 -1.33) (end -1.46 -1.33) (layer F.SilkS) (width 0.12))
(fp_line (start -10.09 8.89) (end -1.46 8.89) (layer F.SilkS) (width 0.12))
(fp_line (start -10.09 6.35) (end -1.46 6.35) (layer F.SilkS) (width 0.12))
(fp_line (start -10.09 3.81) (end -1.46 3.81) (layer F.SilkS) (width 0.12))
(fp_line (start -10.09 1.27) (end -1.46 1.27) (layer F.SilkS) (width 0.12))
(fp_line (start -1.46 10.52) (end -1.05 10.52) (layer F.SilkS) (width 0.12))
(fp_line (start -1.46 9.8) (end -1.05 9.8) (layer F.SilkS) (width 0.12))
(fp_line (start -1.46 7.98) (end -1.05 7.98) (layer F.SilkS) (width 0.12))
(fp_line (start -1.46 7.26) (end -1.05 7.26) (layer F.SilkS) (width 0.12))
(fp_line (start -1.46 5.44) (end -1.05 5.44) (layer F.SilkS) (width 0.12))
(fp_line (start -1.46 4.72) (end -1.05 4.72) (layer F.SilkS) (width 0.12))
(fp_line (start -1.46 2.9) (end -1.05 2.9) (layer F.SilkS) (width 0.12))
(fp_line (start -1.46 2.18) (end -1.05 2.18) (layer F.SilkS) (width 0.12))
(fp_line (start -1.46 0.36) (end -1.11 0.36) (layer F.SilkS) (width 0.12))
(fp_line (start -1.46 -0.36) (end -1.11 -0.36) (layer F.SilkS) (width 0.12))
(fp_line (start -10.09 1.1519) (end -1.46 1.1519) (layer F.SilkS) (width 0.12))
(fp_line (start -10.09 1.033805) (end -1.46 1.033805) (layer F.SilkS) (width 0.12))
(fp_line (start -10.09 0.91571) (end -1.46 0.91571) (layer F.SilkS) (width 0.12))
(fp_line (start -10.09 0.797615) (end -1.46 0.797615) (layer F.SilkS) (width 0.12))
(fp_line (start -10.09 0.67952) (end -1.46 0.67952) (layer F.SilkS) (width 0.12))
(fp_line (start -10.09 0.561425) (end -1.46 0.561425) (layer F.SilkS) (width 0.12))
(fp_line (start -10.09 0.44333) (end -1.46 0.44333) (layer F.SilkS) (width 0.12))
(fp_line (start -10.09 0.325235) (end -1.46 0.325235) (layer F.SilkS) (width 0.12))
(fp_line (start -10.09 0.20714) (end -1.46 0.20714) (layer F.SilkS) (width 0.12))
(fp_line (start -10.09 0.089045) (end -1.46 0.089045) (layer F.SilkS) (width 0.12))
(fp_line (start -10.09 -0.02905) (end -1.46 -0.02905) (layer F.SilkS) (width 0.12))
(fp_line (start -10.09 -0.147145) (end -1.46 -0.147145) (layer F.SilkS) (width 0.12))
(fp_line (start -10.09 -0.26524) (end -1.46 -0.26524) (layer F.SilkS) (width 0.12))
(fp_line (start -10.09 -0.383335) (end -1.46 -0.383335) (layer F.SilkS) (width 0.12))
(fp_line (start -10.09 -0.50143) (end -1.46 -0.50143) (layer F.SilkS) (width 0.12))
(fp_line (start -10.09 -0.619525) (end -1.46 -0.619525) (layer F.SilkS) (width 0.12))
(fp_line (start -10.09 -0.73762) (end -1.46 -0.73762) (layer F.SilkS) (width 0.12))
(fp_line (start -10.09 -0.855715) (end -1.46 -0.855715) (layer F.SilkS) (width 0.12))
(fp_line (start -10.09 -0.97381) (end -1.46 -0.97381) (layer F.SilkS) (width 0.12))
(fp_line (start -10.09 -1.091905) (end -1.46 -1.091905) (layer F.SilkS) (width 0.12))
(fp_line (start -10.09 -1.21) (end -1.46 -1.21) (layer F.SilkS) (width 0.12))
(fp_line (start 0 10.46) (end 0 9.86) (layer F.Fab) (width 0.1))
(fp_line (start -1.52 10.46) (end 0 10.46) (layer F.Fab) (width 0.1))
(fp_line (start 0 9.86) (end -1.52 9.86) (layer F.Fab) (width 0.1))
(fp_line (start 0 7.92) (end 0 7.32) (layer F.Fab) (width 0.1))
(fp_line (start -1.52 7.92) (end 0 7.92) (layer F.Fab) (width 0.1))
(fp_line (start 0 7.32) (end -1.52 7.32) (layer F.Fab) (width 0.1))
(fp_line (start 0 5.38) (end 0 4.78) (layer F.Fab) (width 0.1))
(fp_line (start -1.52 5.38) (end 0 5.38) (layer F.Fab) (width 0.1))
(fp_line (start 0 4.78) (end -1.52 4.78) (layer F.Fab) (width 0.1))
(fp_line (start 0 2.84) (end 0 2.24) (layer F.Fab) (width 0.1))
(fp_line (start -1.52 2.84) (end 0 2.84) (layer F.Fab) (width 0.1))
(fp_line (start 0 2.24) (end -1.52 2.24) (layer F.Fab) (width 0.1))
(fp_line (start 0 0.3) (end 0 -0.3) (layer F.Fab) (width 0.1))
(fp_line (start -1.52 0.3) (end 0 0.3) (layer F.Fab) (width 0.1))
(fp_line (start 0 -0.3) (end -1.52 -0.3) (layer F.Fab) (width 0.1))
(fp_line (start -10.03 11.43) (end -10.03 -1.27) (layer F.Fab) (width 0.1))
(fp_line (start -1.52 11.43) (end -10.03 11.43) (layer F.Fab) (width 0.1))
(fp_line (start -1.52 -0.3) (end -1.52 11.43) (layer F.Fab) (width 0.1))
(fp_line (start -2.49 -1.27) (end -1.52 -0.3) (layer F.Fab) (width 0.1))
(fp_line (start -10.03 -1.27) (end -2.49 -1.27) (layer F.Fab) (width 0.1))
(pad 5 thru_hole oval (at 0 10.16) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 1 VDD))
(pad 4 thru_hole oval (at 0 7.62) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 2 SDA))
(pad 3 thru_hole oval (at 0 5.08) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 3 SCL))
(pad 2 thru_hole oval (at 0 2.54) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 13 "Net-(J1-Pad2)"))
(pad 1 thru_hole rect (at 0 0) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 4 Earth))
(model ${KISYS3DMOD}/Connector_PinSocket_2.54mm.3dshapes/PinSocket_1x05_P2.54mm_Horizontal.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Capacitor_SMD:C_0805_2012Metric (layer F.Cu) (tedit 5BBFEB2D) (tstamp 5BCB1204)
(at 198.12 90.132545 90)
(descr "Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator")
(tags capacitor)
(path /5BBF23E1)
(attr smd)
(fp_text reference C1 (at -2.54 0 180) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 0.1uF (at 0 1.65 90) (layer F.Fab) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -1 0.6) (end -1 -0.6) (layer F.Fab) (width 0.1))
(fp_line (start -1 -0.6) (end 1 -0.6) (layer F.Fab) (width 0.1))
(fp_line (start 1 -0.6) (end 1 0.6) (layer F.Fab) (width 0.1))
(fp_line (start 1 0.6) (end -1 0.6) (layer F.Fab) (width 0.1))
(fp_line (start -0.258578 -0.71) (end 0.258578 -0.71) (layer F.SilkS) (width 0.12))
(fp_line (start -0.258578 0.71) (end 0.258578 0.71) (layer F.SilkS) (width 0.12))
(fp_line (start -1.68 0.95) (end -1.68 -0.95) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.68 -0.95) (end 1.68 -0.95) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.68 -0.95) (end 1.68 0.95) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.68 0.95) (end -1.68 0.95) (layer F.CrtYd) (width 0.05))
(fp_text user %R (at 0 0 90) (layer F.Fab)
(effects (font (size 0.5 0.5) (thickness 0.08)))
)
(pad 1 smd roundrect (at -0.9375 0 90) (size 0.975 1.4) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)
(net 1 VDD))
(pad 2 smd roundrect (at 0.9375 0 90) (size 0.975 1.4) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)
(net 4 Earth))
(model ${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_0805_2012Metric.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Resistor_SMD:R_0805_2012Metric (layer F.Cu) (tedit 5BBFE981) (tstamp 5BCB1101)
(at 189.23 90.17 90)
(descr "Resistor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator")
(tags resistor)
(path /5BC16F9A)
(attr smd)
(fp_text reference R2 (at 2.54 0 180) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 10k (at 0 1.65 90) (layer F.Fab) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text user %R (at 0 0 90) (layer F.Fab)
(effects (font (size 0.5 0.5) (thickness 0.08)))
)
(fp_line (start 1.68 0.95) (end -1.68 0.95) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.68 -0.95) (end 1.68 0.95) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.68 -0.95) (end 1.68 -0.95) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.68 0.95) (end -1.68 -0.95) (layer F.CrtYd) (width 0.05))
(fp_line (start -0.258578 0.71) (end 0.258578 0.71) (layer F.SilkS) (width 0.12))
(fp_line (start -0.258578 -0.71) (end 0.258578 -0.71) (layer F.SilkS) (width 0.12))
(fp_line (start 1 0.6) (end -1 0.6) (layer F.Fab) (width 0.1))
(fp_line (start 1 -0.6) (end 1 0.6) (layer F.Fab) (width 0.1))
(fp_line (start -1 -0.6) (end 1 -0.6) (layer F.Fab) (width 0.1))
(fp_line (start -1 0.6) (end -1 -0.6) (layer F.Fab) (width 0.1))
(pad 2 smd roundrect (at 0.9375 0 90) (size 0.975 1.4) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)
(net 3 SCL))
(pad 1 smd roundrect (at -0.9375 0 90) (size 0.975 1.4) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)
(net 1 VDD))
(model ${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Resistor_SMD:R_0805_2012Metric (layer F.Cu) (tedit 5BBFE989) (tstamp 5BCB10F0)
(at 186.69 90.17 90)
(descr "Resistor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator")
(tags resistor)
(path /5BC15F6C)
(attr smd)
(fp_text reference R1 (at 2.54 0 180) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 10k (at 0 1.65 90) (layer F.Fab) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -1 0.6) (end -1 -0.6) (layer F.Fab) (width 0.1))
(fp_line (start -1 -0.6) (end 1 -0.6) (layer F.Fab) (width 0.1))
(fp_line (start 1 -0.6) (end 1 0.6) (layer F.Fab) (width 0.1))
(fp_line (start 1 0.6) (end -1 0.6) (layer F.Fab) (width 0.1))
(fp_line (start -0.258578 -0.71) (end 0.258578 -0.71) (layer F.SilkS) (width 0.12))
(fp_line (start -0.258578 0.71) (end 0.258578 0.71) (layer F.SilkS) (width 0.12))
(fp_line (start -1.68 0.95) (end -1.68 -0.95) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.68 -0.95) (end 1.68 -0.95) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.68 -0.95) (end 1.68 0.95) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.68 0.95) (end -1.68 0.95) (layer F.CrtYd) (width 0.05))
(fp_text user %R (at 0 0 90) (layer F.Fab)
(effects (font (size 0.5 0.5) (thickness 0.08)))
)
(pad 1 smd roundrect (at -0.9375 0 90) (size 0.975 1.4) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)
(net 1 VDD))
(pad 2 smd roundrect (at 0.9375 0 90) (size 0.975 1.4) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)
(net 2 SDA))
(model ${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(gr_text "Rev A 20181110" (at 192.8622 93.091) (layer B.SilkS)
(effects (font (size 1.2 1.2) (thickness 0.2)) (justify mirror))
)
(gr_text "BRIDGE JP3-6 AND\nOPEN JP1-2 FOR SPI" (at 192.278 89.408) (layer B.SilkS)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(gr_text VINTLABS.COM (at 180.467 86.36 270) (layer B.SilkS)
(effects (font (size 1.1 1.2) (thickness 0.2)) (justify mirror))
)
(gr_text GND (at 201.93 79.629) (layer F.SilkS) (tstamp 5BD16F0E)
(effects (font (size 0.9 0.8) (thickness 0.1)))
)
(gr_text "SCL\n" (at 200.279 86.36 90) (layer F.SilkS) (tstamp 5BD16F0E)
(effects (font (size 0.9 0.8) (thickness 0.1)))
)
(gr_text SDA (at 200.279 89.027 90) (layer F.SilkS) (tstamp 5BD16F0E)
(effects (font (size 0.9 0.8) (thickness 0.1)))
)
(gr_text 3v3 (at 200.279 91.44 90) (layer F.SilkS) (tstamp 5BD16F0E)
(effects (font (size 0.9 0.8) (thickness 0.1)))
)
(gr_text "I²C Barometer/\nAltimeter\n\n" (at 205.994 86.106 90) (layer B.SilkS)
(effects (font (size 1.1 1.1) (thickness 0.15)) (justify mirror))
)
(gr_poly (pts (xy 195.518296 88.989545) (xy 195.518296 92.164545) (xy 192.216296 92.164545) (xy 192.216296 88.989545)) (layer F.Mask) (width 0.15))
(gr_text GND (at 184.912 81.28 90) (layer F.SilkS)
(effects (font (size 0.9 0.8) (thickness 0.1)))
)
(gr_text SCL (at 184.785 86.36 90) (layer F.SilkS)
(effects (font (size 0.9 0.8) (thickness 0.1)))
)
(gr_text SDA (at 184.785 88.9 90) (layer F.SilkS)
(effects (font (size 0.9 0.8) (thickness 0.1)))
)
(gr_text 3v3 (at 184.785 91.44 90) (layer F.SilkS)
(effects (font (size 0.9 0.8) (thickness 0.1)))
)
(gr_text Addr (at 185.928 83.566 90) (layer F.SilkS)
(effects (font (size 0.9 0.9) (thickness 0.15)))
)
(gr_text "I²C P/U" (at 187.96 92.71) (layer F.SilkS)
(effects (font (size 0.9 0.8) (thickness 0.15)))
)
(gr_line (start 179.07 93.98) (end 179.07 78.74) (layer Edge.Cuts) (width 0.15))
(gr_line (start 207.01 93.98) (end 179.07 93.98) (layer Edge.Cuts) (width 0.15))
(gr_line (start 207.01 78.74) (end 207.01 93.98) (layer Edge.Cuts) (width 0.15))
(gr_line (start 179.07 78.74) (end 207.01 78.74) (layer Edge.Cuts) (width 0.15))
(segment (start 191.008 82.916) (end 187.96 82.916) (width 0.25) (layer F.Cu) (net 1))
(via (at 197.104 92.202) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 1))
(segment (start 196.917455 92.388545) (end 195.067296 92.388545) (width 0.5) (layer F.Cu) (net 1))
(segment (start 197.104 92.202) (end 196.917455 92.388545) (width 0.5) (layer F.Cu) (net 1))
(segment (start 197.104 92.086045) (end 198.12 91.070045) (width 0.5) (layer F.Cu) (net 1))
(segment (start 197.104 92.202) (end 197.104 92.086045) (width 0.5) (layer F.Cu) (net 1))
(segment (start 198.12 91.070045) (end 198.743955 91.070045) (width 0.5) (layer F.Cu) (net 1))
(segment (start 200.66 90.17) (end 201.93 91.44) (width 0.5) (layer B.Cu) (net 1))
(segment (start 199.644 90.17) (end 200.66 90.17) (width 0.5) (layer B.Cu) (net 1))
(segment (start 199.136 90.17) (end 197.104 92.202) (width 0.5) (layer B.Cu) (net 1))
(segment (start 199.644 90.17) (end 199.136 90.17) (width 0.5) (layer B.Cu) (net 1))
(segment (start 192.667296 91.138545) (end 193.057296 91.138545) (width 0.25) (layer F.Cu) (net 2))
(segment (start 201.080001 89.749999) (end 201.93 88.9) (width 0.25) (layer F.Cu) (net 2))
(segment (start 197.851454 92.978546) (end 201.080001 89.749999) (width 0.25) (layer F.Cu) (net 2))
(segment (start 194.152295 92.978546) (end 197.851454 92.978546) (width 0.25) (layer F.Cu) (net 2))
(segment (start 186.3575 88.9) (end 186.69 89.2325) (width 0.25) (layer F.Cu) (net 2))
(segment (start 182.88 88.9) (end 186.3575 88.9) (width 0.25) (layer F.Cu) (net 2))
(via (at 191.262 90.17) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 2))
(via (at 187.96 89.916) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 2))
(segment (start 187.2765 89.2325) (end 187.96 89.916) (width 0.25) (layer F.Cu) (net 2))
(segment (start 186.69 89.2325) (end 187.2765 89.2325) (width 0.25) (layer F.Cu) (net 2))
(segment (start 192.230545 91.138545) (end 192.667296 91.138545) (width 0.25) (layer F.Cu) (net 2))
(segment (start 191.262 90.17) (end 192.230545 91.138545) (width 0.25) (layer F.Cu) (net 2))
(segment (start 191.008 89.916) (end 191.262 90.17) (width 0.25) (layer B.Cu) (net 2))
(segment (start 187.96 89.916) (end 191.008 89.916) (width 0.25) (layer B.Cu) (net 2))
(segment (start 194.087295 92.913546) (end 194.152295 92.978546) (width 0.25) (layer F.Cu) (net 2))
(segment (start 194.087295 92.303542) (end 194.087295 92.913546) (width 0.25) (layer F.Cu) (net 2))
(segment (start 192.922298 91.138545) (end 194.087295 92.303542) (width 0.25) (layer F.Cu) (net 2))
(segment (start 192.667296 91.138545) (end 192.922298 91.138545) (width 0.25) (layer F.Cu) (net 2))
(segment (start 186.94 84.186) (end 186.69 84.186) (width 0.25) (layer B.Cu) (net 2))
(segment (start 187.765001 83.360999) (end 186.94 84.186) (width 0.25) (layer B.Cu) (net 2))
(segment (start 184.186999 86.142999) (end 184.186999 80.735001) (width 0.25) (layer B.Cu) (net 2))
(segment (start 187.765001 79.869999) (end 187.765001 83.360999) (width 0.25) (layer B.Cu) (net 2))
(segment (start 187.96 89.916) (end 184.186999 86.142999) (width 0.25) (layer B.Cu) (net 2))
(segment (start 184.186999 80.735001) (end 185.117001 79.804999) (width 0.25) (layer B.Cu) (net 2))
(segment (start 185.117001 79.804999) (end 187.700001 79.804999) (width 0.25) (layer B.Cu) (net 2))
(segment (start 187.700001 79.804999) (end 187.765001 79.869999) (width 0.25) (layer B.Cu) (net 2))
(segment (start 189.23 89.341249) (end 189.23 89.2325) (width 0.25) (layer F.Cu) (net 3))
(segment (start 192.667296 92.388545) (end 192.277296 92.388545) (width 0.25) (layer F.Cu) (net 3))
(segment (start 201.080001 87.209999) (end 201.93 86.36) (width 0.25) (layer F.Cu) (net 3))
(segment (start 190.5785 87.884) (end 200.406 87.884) (width 0.25) (layer F.Cu) (net 3))
(segment (start 200.406 87.884) (end 201.080001 87.209999) (width 0.25) (layer F.Cu) (net 3))
(segment (start 189.23 89.2325) (end 190.5785 87.884) (width 0.25) (layer F.Cu) (net 3))
(segment (start 192.386045 92.388545) (end 192.667296 92.388545) (width 0.25) (layer F.Cu) (net 3))
(segment (start 189.23 89.2325) (end 192.386045 92.388545) (width 0.25) (layer F.Cu) (net 3))
(segment (start 182.88 86.36) (end 183.729999 87.209999) (width 0.25) (layer F.Cu) (net 3))
(segment (start 183.729999 87.209999) (end 187.207499 87.209999) (width 0.25) (layer F.Cu) (net 3))
(via (at 188.976 80.772) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 3))
(segment (start 189.118 80.63) (end 188.976 80.772) (width 0.25) (layer B.Cu) (net 3))
(segment (start 190.5 80.63) (end 189.118 80.63) (width 0.25) (layer B.Cu) (net 3))
(segment (start 192.083001 84.976001) (end 189.937002 87.122) (width 0.25) (layer F.Cu) (net 3))
(segment (start 188.976 80.772) (end 190.573636 80.772) (width 0.25) (layer F.Cu) (net 3))
(segment (start 192.083001 82.281365) (end 192.083001 84.976001) (width 0.25) (layer F.Cu) (net 3))
(segment (start 190.573636 80.772) (end 192.083001 82.281365) (width 0.25) (layer F.Cu) (net 3))
(segment (start 189.937002 87.122) (end 188.722 87.122) (width 0.25) (layer F.Cu) (net 3))
(segment (start 187.96 87.884) (end 187.96 87.9625) (width 0.25) (layer F.Cu) (net 3))
(segment (start 188.722 87.122) (end 187.96 87.884) (width 0.25) (layer F.Cu) (net 3))
(segment (start 187.207499 87.209999) (end 187.96 87.9625) (width 0.25) (layer F.Cu) (net 3))
(segment (start 187.96 87.9625) (end 189.23 89.2325) (width 0.25) (layer F.Cu) (net 3))
(via (at 199.136 88.646) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 4))
(segment (start 198.669045 88.646) (end 198.12 89.195045) (width 0.25) (layer F.Cu) (net 4))
(segment (start 199.39 88.646) (end 198.669045 88.646) (width 0.25) (layer F.Cu) (net 4))
(via (at 195.834 90.17) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 4))
(segment (start 195.552545 89.888545) (end 195.834 90.17) (width 0.25) (layer F.Cu) (net 4))
(segment (start 195.067296 89.888545) (end 195.552545 89.888545) (width 0.25) (layer F.Cu) (net 4))
(segment (start 183.134 81.534) (end 182.88 81.28) (width 0.25) (layer F.Cu) (net 4))
(segment (start 185.562 80.63) (end 184.912 81.28) (width 0.25) (layer B.Cu) (net 4))
(segment (start 186.69 80.63) (end 185.562 80.63) (width 0.25) (layer B.Cu) (net 4))
(segment (start 184.912 81.28) (end 182.88 81.28) (width 0.25) (layer F.Cu) (net 4))
(via (at 184.912 81.28) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 4))
(segment (start 193.057296 89.888545) (end 192.667296 89.888545) (width 0.25) (layer F.Cu) (net 6))
(segment (start 193.647297 90.478546) (end 193.057296 89.888545) (width 0.25) (layer F.Cu) (net 6))
(segment (start 197.046009 90.389706) (end 197.046009 90.701242) (width 0.25) (layer F.Cu) (net 6))
(segment (start 197.42816 90.007555) (end 197.046009 90.389706) (width 0.25) (layer F.Cu) (net 6))
(segment (start 193.647297 91.223548) (end 193.647297 90.478546) (width 0.25) (layer F.Cu) (net 6))
(segment (start 202.494001 87.535001) (end 201.391409 87.535001) (width 0.25) (layer F.Cu) (net 6))
(segment (start 203.105001 86.924001) (end 202.494001 87.535001) (width 0.25) (layer F.Cu) (net 6))
(segment (start 194.152295 91.728546) (end 193.647297 91.223548) (width 0.25) (layer F.Cu) (net 6))
(segment (start 202.494001 85.184999) (end 203.105001 85.795999) (width 0.25) (layer F.Cu) (net 6))
(segment (start 201.365999 85.184999) (end 202.494001 85.184999) (width 0.25) (layer F.Cu) (net 6))
(segment (start 199.117008 87.43399) (end 201.365999 85.184999) (width 0.25) (layer F.Cu) (net 6))
(segment (start 203.105001 85.795999) (end 203.105001 86.924001) (width 0.25) (layer F.Cu) (net 6))
(segment (start 192.72801 87.43399) (end 199.117008 87.43399) (width 0.25) (layer F.Cu) (net 6))
(segment (start 197.046009 90.701242) (end 196.018705 91.728546) (width 0.25) (layer F.Cu) (net 6))
(segment (start 192.72801 82.77799) (end 192.72801 87.43399) (width 0.25) (layer F.Cu) (net 6))
(segment (start 194.48 81.026) (end 192.72801 82.77799) (width 0.25) (layer F.Cu) (net 6))
(segment (start 196.018705 91.728546) (end 194.152295 91.728546) (width 0.25) (layer F.Cu) (net 6))
(segment (start 195.58 81.026) (end 194.48 81.026) (width 0.25) (layer F.Cu) (net 6))
(segment (start 198.918855 90.007555) (end 197.42816 90.007555) (width 0.25) (layer F.Cu) (net 6))
(segment (start 201.391409 87.535001) (end 198.918855 90.007555) (width 0.25) (layer F.Cu) (net 6))
(segment (start 193.944 81.93) (end 195.58 83.566) (width 0.25) (layer B.Cu) (net 7))
(segment (start 190.5 81.93) (end 193.944 81.93) (width 0.25) (layer B.Cu) (net 7))
(segment (start 197.270001 84.415999) (end 198.12 83.566) (width 0.25) (layer B.Cu) (net 8))
(segment (start 196.944999 84.741001) (end 197.270001 84.415999) (width 0.25) (layer B.Cu) (net 8))
(segment (start 195.015999 84.741001) (end 196.944999 84.741001) (width 0.25) (layer B.Cu) (net 8))
(segment (start 193.635997 83.360999) (end 195.015999 84.741001) (width 0.25) (layer B.Cu) (net 8))
(segment (start 189.489999 83.360999) (end 193.635997 83.360999) (width 0.25) (layer B.Cu) (net 8))
(segment (start 187.364998 85.486) (end 189.489999 83.360999) (width 0.25) (layer B.Cu) (net 8))
(segment (start 186.69 85.486) (end 187.364998 85.486) (width 0.25) (layer B.Cu) (net 8))
(segment (start 193.66 84.186) (end 195.58 86.106) (width 0.25) (layer B.Cu) (net 9))
(segment (start 190.5 84.186) (end 193.66 84.186) (width 0.25) (layer B.Cu) (net 9))
(via (at 188.468 85.852) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 11))
(via (at 191.008 88.646) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 11))
(segment (start 192.667296 88.638545) (end 195.067296 88.638545) (width 0.25) (layer F.Cu) (net 11))
(segment (start 192.659841 88.646) (end 192.667296 88.638545) (width 0.25) (layer F.Cu) (net 11))
(segment (start 191.008 88.646) (end 192.659841 88.646) (width 0.25) (layer F.Cu) (net 11))
(segment (start 191.008 85.994) (end 190.5 85.486) (width 0.25) (layer B.Cu) (net 11))
(segment (start 191.008 88.646) (end 191.008 85.994) (width 0.25) (layer B.Cu) (net 11))
(segment (start 190.134 85.852) (end 190.5 85.486) (width 0.25) (layer B.Cu) (net 11))
(segment (start 188.468 85.852) (end 190.134 85.852) (width 0.25) (layer B.Cu) (net 11))
(segment (start 188.468 85.852) (end 188.468 85.286315) (width 0.25) (layer B.Cu) (net 11))
(segment (start 187.397002 84.216) (end 187.96 84.216) (width 0.25) (layer F.Cu) (net 11))
(segment (start 184.563999 82.078999) (end 185.260001 82.078999) (width 0.25) (layer F.Cu) (net 11))
(segment (start 185.260001 82.078999) (end 187.397002 84.216) (width 0.25) (layer F.Cu) (net 11))
(segment (start 184.186999 82.455999) (end 184.563999 82.078999) (width 0.25) (layer F.Cu) (net 11))
(segment (start 184.186999 83.152001) (end 184.186999 82.455999) (width 0.25) (layer F.Cu) (net 11))
(segment (start 186.886998 85.852) (end 184.186999 83.152001) (width 0.25) (layer F.Cu) (net 11))
(segment (start 188.468 85.852) (end 186.886998 85.852) (width 0.25) (layer F.Cu) (net 11))
(via (at 184.912 82.804) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 12))
(via (at 196.596 88.646) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 12))
(segment (start 196.596 89.211685) (end 196.596 88.646) (width 0.25) (layer F.Cu) (net 12))
(segment (start 195.972296 91.138545) (end 196.596 90.514841) (width 0.25) (layer F.Cu) (net 12))
(segment (start 196.596 90.514841) (end 196.596 89.211685) (width 0.25) (layer F.Cu) (net 12))
(segment (start 195.067296 91.138545) (end 195.972296 91.138545) (width 0.25) (layer F.Cu) (net 12))
(segment (start 186.44 81.93) (end 186.69 81.93) (width 0.25) (layer B.Cu) (net 12))
(segment (start 185.614999 82.755001) (end 186.44 81.93) (width 0.25) (layer B.Cu) (net 12))
(segment (start 188.739999 89.371001) (end 185.614999 86.246001) (width 0.25) (layer B.Cu) (net 12))
(segment (start 195.870999 89.371001) (end 188.739999 89.371001) (width 0.25) (layer B.Cu) (net 12))
(segment (start 185.614999 86.246001) (end 185.614999 82.755001) (width 0.25) (layer B.Cu) (net 12))
(segment (start 196.596 88.646) (end 195.870999 89.371001) (width 0.25) (layer B.Cu) (net 12))
(segment (start 190.008 84.216) (end 191.008 84.216) (width 0.25) (layer F.Cu) (net 12))
(segment (start 189.182999 85.041001) (end 190.008 84.216) (width 0.25) (layer F.Cu) (net 12))
(segment (start 186.949999 85.041001) (end 189.182999 85.041001) (width 0.25) (layer F.Cu) (net 12))
(segment (start 185.311999 83.203999) (end 185.311999 83.403001) (width 0.25) (layer F.Cu) (net 12))
(segment (start 185.311999 83.403001) (end 186.949999 85.041001) (width 0.25) (layer F.Cu) (net 12))
(segment (start 184.912 82.804) (end 185.311999 83.203999) (width 0.25) (layer F.Cu) (net 12))
(segment (start 185.566 82.804) (end 185.614999 82.755001) (width 0.25) (layer B.Cu) (net 12))
(segment (start 184.912 82.804) (end 185.566 82.804) (width 0.25) (layer B.Cu) (net 12))
(zone (net 4) (net_name Earth) (layer B.Cu) (tstamp 5C014320) (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 206.756 93.726) (xy 206.756 78.994) (xy 179.324 78.994) (xy 179.324 93.726)
)
)
(filled_polygon
(pts
(xy 183.994824 79.852375) (xy 183.856309 79.795) (xy 183.16575 79.795) (xy 183.007 79.95375) (xy 183.007 81.153)
(xy 183.027 81.153) (xy 183.027 81.407) (xy 183.007 81.407) (xy 183.007 81.427) (xy 182.753 81.427)
(xy 182.753 81.407) (xy 181.55375 81.407) (xy 181.395 81.56575) (xy 181.395 82.25631) (xy 181.491673 82.489699)
(xy 181.670302 82.668327) (xy 181.831033 82.734904) (xy 181.809375 82.749375) (xy 181.481161 83.240582) (xy 181.365908 83.82)
(xy 181.481161 84.399418) (xy 181.809375 84.890625) (xy 182.107761 85.09) (xy 181.809375 85.289375) (xy 181.481161 85.780582)
(xy 181.365908 86.36) (xy 181.481161 86.939418) (xy 181.809375 87.430625) (xy 182.107761 87.63) (xy 181.809375 87.829375)
(xy 181.481161 88.320582) (xy 181.365908 88.9) (xy 181.481161 89.479418) (xy 181.809375 89.970625) (xy 182.107761 90.17)
(xy 181.809375 90.369375) (xy 181.481161 90.860582) (xy 181.365908 91.44) (xy 181.481161 92.019418) (xy 181.809375 92.510625)
(xy 182.300582 92.838839) (xy 182.733744 92.925) (xy 183.026256 92.925) (xy 183.459418 92.838839) (xy 183.950625 92.510625)
(xy 184.278839 92.019418) (xy 184.283472 91.996126) (xy 196.069 91.996126) (xy 196.069 92.407874) (xy 196.226569 92.78828)
(xy 196.51772 93.079431) (xy 196.898126 93.237) (xy 197.309874 93.237) (xy 197.69028 93.079431) (xy 197.981431 92.78828)
(xy 198.131431 92.426147) (xy 199.502579 91.055) (xy 200.293422 91.055) (xy 200.459462 91.22104) (xy 200.415908 91.44)
(xy 200.531161 92.019418) (xy 200.859375 92.510625) (xy 201.350582 92.838839) (xy 201.783744 92.925) (xy 202.076256 92.925)
(xy 202.509418 92.838839) (xy 203.000625 92.510625) (xy 203.328839 92.019418) (xy 203.444092 91.44) (xy 203.328839 90.860582)
(xy 203.000625 90.369375) (xy 202.702239 90.17) (xy 203.000625 89.970625) (xy 203.328839 89.479418) (xy 203.444092 88.9)
(xy 203.328839 88.320582) (xy 203.000625 87.829375) (xy 202.702239 87.63) (xy 203.000625 87.430625) (xy 203.328839 86.939418)
(xy 203.444092 86.36) (xy 203.328839 85.780582) (xy 203.000625 85.289375) (xy 202.702239 85.09) (xy 203.000625 84.890625)
(xy 203.328839 84.399418) (xy 203.444092 83.82) (xy 203.328839 83.240582) (xy 203.000625 82.749375) (xy 202.978967 82.734904)
(xy 203.139698 82.668327) (xy 203.318327 82.489699) (xy 203.415 82.25631) (xy 203.415 81.56575) (xy 203.25625 81.407)
(xy 202.057 81.407) (xy 202.057 81.427) (xy 201.803 81.427) (xy 201.803 81.407) (xy 200.60375 81.407)
(xy 200.445 81.56575) (xy 200.445 82.25631) (xy 200.541673 82.489699) (xy 200.720302 82.668327) (xy 200.881033 82.734904)
(xy 200.859375 82.749375) (xy 200.531161 83.240582) (xy 200.415908 83.82) (xy 200.531161 84.399418) (xy 200.859375 84.890625)
(xy 201.157761 85.09) (xy 200.859375 85.289375) (xy 200.531161 85.780582) (xy 200.415908 86.36) (xy 200.531161 86.939418)
(xy 200.859375 87.430625) (xy 201.157761 87.63) (xy 200.859375 87.829375) (xy 200.531161 88.320582) (xy 200.415908 88.9)
(xy 200.492489 89.285) (xy 199.223161 89.285) (xy 199.136 89.267663) (xy 199.048839 89.285) (xy 199.048835 89.285)
(xy 198.79069 89.336348) (xy 198.571845 89.482576) (xy 198.571844 89.482577) (xy 198.497951 89.531951) (xy 198.448577 89.605844)
(xy 196.879853 91.174569) (xy 196.51772 91.324569) (xy 196.226569 91.61572) (xy 196.069 91.996126) (xy 184.283472 91.996126)
(xy 184.394092 91.44) (xy 184.278839 90.860582) (xy 183.950625 90.369375) (xy 183.652239 90.17) (xy 183.950625 89.970625)
(xy 184.278839 89.479418) (xy 184.394092 88.9) (xy 184.278839 88.320582) (xy 183.950625 87.829375) (xy 183.652239 87.63)
(xy 183.950625 87.430625) (xy 184.130549 87.16135) (xy 186.925 89.955802) (xy 186.925 90.121874) (xy 187.082569 90.50228)
(xy 187.37372 90.793431) (xy 187.754126 90.951) (xy 188.165874 90.951) (xy 188.54628 90.793431) (xy 188.663711 90.676)
(xy 190.351316 90.676) (xy 190.384569 90.75628) (xy 190.67572 91.047431) (xy 191.056126 91.205) (xy 191.467874 91.205)
(xy 191.84828 91.047431) (xy 192.139431 90.75628) (xy 192.297 90.375874) (xy 192.297 90.131001) (xy 195.796152 90.131001)
(xy 195.870999 90.145889) (xy 195.945846 90.131001) (xy 195.945851 90.131001) (xy 196.167536 90.086905) (xy 196.418928 89.91893)
(xy 196.46133 89.855471) (xy 196.635801 89.681) (xy 196.801874 89.681) (xy 197.18228 89.523431) (xy 197.473431 89.23228)
(xy 197.631 88.851874) (xy 197.631 88.440126) (xy 197.473431 88.05972) (xy 197.18228 87.768569) (xy 196.801874 87.611)
(xy 196.390126 87.611) (xy 196.00972 87.768569) (xy 195.718569 88.05972) (xy 195.561 88.440126) (xy 195.561 88.606199)
(xy 195.556198 88.611001) (xy 192.043 88.611001) (xy 192.043 88.440126) (xy 191.885431 88.05972) (xy 191.768 87.942289)
(xy 191.768 86.353727) (xy 191.848157 86.233765) (xy 191.89744 85.986) (xy 191.89744 84.986) (xy 191.889484 84.946)
(xy 193.345199 84.946) (xy 194.138791 85.739592) (xy 194.065908 86.106) (xy 194.181161 86.685418) (xy 194.509375 87.176625)
(xy 195.000582 87.504839) (xy 195.433744 87.591) (xy 195.726256 87.591) (xy 196.159418 87.504839) (xy 196.650625 87.176625)
(xy 196.851353 86.876214) (xy 197.238642 87.301183) (xy 197.763108 87.547486) (xy 197.993 87.426819) (xy 197.993 86.233)
(xy 198.247 86.233) (xy 198.247 87.426819) (xy 198.476892 87.547486) (xy 199.001358 87.301183) (xy 199.391645 86.872924)
(xy 199.561476 86.46289) (xy 199.440155 86.233) (xy 198.247 86.233) (xy 197.993 86.233) (xy 197.973 86.233)
(xy 197.973 85.979) (xy 197.993 85.979) (xy 197.993 85.959) (xy 198.247 85.959) (xy 198.247 85.979)
(xy 199.440155 85.979) (xy 199.561476 85.74911) (xy 199.391645 85.339076) (xy 199.001358 84.910817) (xy 198.871522 84.849843)
(xy 199.190625 84.636625) (xy 199.518839 84.145418) (xy 199.634092 83.566) (xy 199.518839 82.986582) (xy 199.190625 82.495375)
(xy 198.892239 82.296) (xy 199.190625 82.096625) (xy 199.518839 81.605418) (xy 199.634092 81.026) (xy 199.518839 80.446582)
(xy 199.423362 80.30369) (xy 200.445 80.30369) (xy 200.445 80.99425) (xy 200.60375 81.153) (xy 201.803 81.153)
(xy 201.803 79.95375) (xy 202.057 79.95375) (xy 202.057 81.153) (xy 203.25625 81.153) (xy 203.415 80.99425)
(xy 203.415 80.30369) (xy 203.318327 80.070301) (xy 203.139698 79.891673) (xy 202.906309 79.795) (xy 202.21575 79.795)
(xy 202.057 79.95375) (xy 201.803 79.95375) (xy 201.64425 79.795) (xy 200.953691 79.795) (xy 200.720302 79.891673)
(xy 200.541673 80.070301) (xy 200.445 80.30369) (xy 199.423362 80.30369) (xy 199.190625 79.955375) (xy 198.699418 79.627161)
(xy 198.266256 79.541) (xy 197.973744 79.541) (xy 197.540582 79.627161) (xy 197.049375 79.955375) (xy 197.037184 79.973619)
(xy 197.028157 79.928235) (xy 196.887809 79.718191) (xy 196.677765 79.577843) (xy 196.43 79.52856) (xy 194.73 79.52856)
(xy 194.482235 79.577843) (xy 194.272191 79.718191) (xy 194.131843 79.928235) (xy 194.08256 80.176) (xy 194.08256 81.182672)
(xy 194.018852 81.17) (xy 194.018847 81.17) (xy 193.944 81.155112) (xy 193.869153 81.17) (xy 191.889484 81.17)
(xy 191.89744 81.13) (xy 191.89744 80.13) (xy 191.848157 79.882235) (xy 191.707809 79.672191) (xy 191.497765 79.531843)
(xy 191.25 79.48256) (xy 189.75 79.48256) (xy 189.502235 79.531843) (xy 189.292191 79.672191) (xy 189.23436 79.75874)
(xy 189.181874 79.737) (xy 188.770126 79.737) (xy 188.532973 79.835232) (xy 188.525001 79.795152) (xy 188.525001 79.795147)
(xy 188.480905 79.573462) (xy 188.39841 79.45) (xy 206.3 79.45) (xy 206.300001 93.27) (xy 179.78 93.27)
(xy 179.78 80.30369) (xy 181.395 80.30369) (xy 181.395 80.99425) (xy 181.55375 81.153) (xy 182.753 81.153)
(xy 182.753 79.95375) (xy 182.59425 79.795) (xy 181.903691 79.795) (xy 181.670302 79.891673) (xy 181.491673 80.070301)
(xy 181.395 80.30369) (xy 179.78 80.30369) (xy 179.78 79.45) (xy 184.397197 79.45)
)
)
(filled_polygon
(pts
(xy 185.305 80.757002) (xy 185.463748 80.757002) (xy 185.305 80.91575) (xy 185.305 81.256309) (xy 185.319936 81.292368)
(xy 185.29256 81.43) (xy 185.29256 81.841357) (xy 185.117874 81.769) (xy 184.946999 81.769) (xy 184.946999 81.049803)
(xy 185.305 80.691802)
)
)
(filled_polygon
(pts
(xy 186.837 80.757) (xy 186.817 80.757) (xy 186.817 80.777) (xy 186.563 80.777) (xy 186.563 80.757)
(xy 186.543 80.757) (xy 186.543 80.564999) (xy 186.837 80.564999)
)
)
)
(zone (net 1) (net_name VDD) (layer F.Cu) (tstamp 5C01431D) (hatch edge 0.508)
(connect_pads (clearance 0.508))
(min_thickness 0.254)
(fill yes (arc_segments 32) (thermal_gap 0.508) (thermal_bridge_width 0.508))
(polygon
(pts
(xy 179.324 93.726) (xy 206.756 93.726) (xy 206.756 78.994) (xy 179.324 78.994)
)
)
(filled_polygon
(pts
(xy 206.300001 93.27) (xy 198.634801 93.27) (xy 200.445 91.459801) (xy 200.445 91.567002) (xy 200.609844 91.567002)
(xy 200.488524 91.79689) (xy 200.533175 91.944099) (xy 200.658359 92.20692) (xy 200.832412 92.440269) (xy 201.048645 92.635178)
(xy 201.298748 92.784157) (xy 201.573109 92.881481) (xy 201.803 92.760814) (xy 201.803 91.567) (xy 202.057 91.567)
(xy 202.057 92.760814) (xy 202.286891 92.881481) (xy 202.561252 92.784157) (xy 202.811355 92.635178) (xy 203.027588 92.440269)