-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRevB.kicad_pcb
1032 lines (1014 loc) · 64 KB
/
RevB.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 22)
(tracks 114)
(zones 0)
(modules 10)
(nets 13)
)
(page A4)
(layers
(0 F.Cu signal hide)
(31 B.Cu signal hide)
(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 2.5 2.5)
(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 "Net-(R3-Pad2)")
(net 5 Earth)
(net 6 "Net-(J2-Pad1)")
(net 7 "Net-(J2-Pad2)")
(net 8 ALERT1)
(net 9 "Net-(J3-Pad2)")
(net 10 "Net-(J3-Pad3)")
(net 11 /ALERT2)
(net 12 "Net-(J4-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 /ALERT2)
(add_net ALERT1)
(add_net Earth)
(add_net "Net-(J2-Pad1)")
(add_net "Net-(J2-Pad2)")
(add_net "Net-(J3-Pad2)")
(add_net "Net-(J3-Pad3)")
(add_net "Net-(J4-Pad2)")
(add_net "Net-(R3-Pad2)")
(add_net SCL)
(add_net SDA)
(add_net VDD)
)
(module Connector_PinHeader_1.00mm:PinHeader_1x03_P1.00mm_Vertical (layer F.Cu) (tedit 59FED738) (tstamp 5BC932CF)
(at 191.135 80.645 270)
(descr "Through hole straight pin header, 1x03, 1.00mm pitch, single row")
(tags "Through hole pin header THT 1x03 1.00mm single row")
(path /5BC65029)
(fp_text reference J3 (at 0 -1.56 270) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value Conn_01x03 (at 0 3.56 270) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -0.3175 -0.5) (end 0.635 -0.5) (layer F.Fab) (width 0.1))
(fp_line (start 0.635 -0.5) (end 0.635 2.5) (layer F.Fab) (width 0.1))
(fp_line (start 0.635 2.5) (end -0.635 2.5) (layer F.Fab) (width 0.1))
(fp_line (start -0.635 2.5) (end -0.635 -0.1825) (layer F.Fab) (width 0.1))
(fp_line (start -0.635 -0.1825) (end -0.3175 -0.5) (layer F.Fab) (width 0.1))
(fp_line (start -0.695 2.56) (end -0.394493 2.56) (layer F.SilkS) (width 0.12))
(fp_line (start 0.394493 2.56) (end 0.695 2.56) (layer F.SilkS) (width 0.12))
(fp_line (start -0.695 0.685) (end -0.695 2.56) (layer F.SilkS) (width 0.12))
(fp_line (start 0.695 0.685) (end 0.695 2.56) (layer F.SilkS) (width 0.12))
(fp_line (start -0.695 0.685) (end -0.608276 0.685) (layer F.SilkS) (width 0.12))
(fp_line (start 0.608276 0.685) (end 0.695 0.685) (layer F.SilkS) (width 0.12))
(fp_line (start -0.695 0) (end -0.695 -0.685) (layer F.SilkS) (width 0.12))
(fp_line (start -0.695 -0.685) (end 0 -0.685) (layer F.SilkS) (width 0.12))
(fp_line (start -1.15 -1) (end -1.15 3) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.15 3) (end 1.15 3) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.15 3) (end 1.15 -1) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.15 -1) (end -1.15 -1) (layer F.CrtYd) (width 0.05))
(fp_text user %R (at 0 1) (layer F.Fab)
(effects (font (size 0.76 0.76) (thickness 0.114)))
)
(pad 1 thru_hole rect (at 0 0 270) (size 0.85 0.85) (drill 0.5) (layers *.Cu *.Mask)
(net 11 /ALERT2))
(pad 2 thru_hole oval (at 0 1 270) (size 0.85 0.85) (drill 0.5) (layers *.Cu *.Mask)
(net 9 "Net-(J3-Pad2)"))
(pad 3 thru_hole oval (at 0 2 270) (size 0.85 0.85) (drill 0.5) (layers *.Cu *.Mask)
(net 10 "Net-(J3-Pad3)"))
(model ${KISYS3DMOD}/Connector_PinHeader_1.00mm.3dshapes/PinHeader_1x03_P1.00mm_Vertical.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Connector_PinHeader_2.54mm:PinHeader_1x05_P2.54mm_Horizontal (layer F.Cu) (tedit 59FED5CB) (tstamp 5BC93276)
(at 201.93 91.44 180)
(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 4.385 -2.27 180) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value Conn_01x05 (at 4.385 12.43 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 11.43) (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 1.5 11.43) (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 1.44 -1.33) (end 1.44 11.49) (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 4.1 11.49) (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.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 11.95) (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 10.55 11.95) (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 5.08 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)
(net 5 Earth))
(pad 2 thru_hole oval (at 0 2.54 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 12 "Net-(J4-Pad2)"))
(pad 3 thru_hole oval (at 0 5.08 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 3 SCL))
(pad 4 thru_hole oval (at 0 7.62 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 2 SDA))
(pad 5 thru_hole oval (at 0 10.16 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 1 VDD))
(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 -4.38 -2.77) (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_line (start -10.03 -1.27) (end -2.49 -1.27) (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 -1.52 -0.3) (end -1.52 11.43) (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 -10.03 11.43) (end -10.03 -1.27) (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 -1.52 0.3) (end 0 0.3) (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 0 2.24) (end -1.52 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.84) (end 0 2.24) (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 -1.52 5.38) (end 0 5.38) (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 0 7.32) (end -1.52 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.92) (end 0 7.32) (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 -1.52 10.46) (end 0 10.46) (layer F.Fab) (width 0.1))
(fp_line (start 0 10.46) (end 0 9.86) (layer F.Fab) (width 0.1))
(fp_line (start -10.09 -1.21) (end -1.46 -1.21) (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 -0.97381) (end -1.46 -0.97381) (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.73762) (end -1.46 -0.73762) (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.50143) (end -1.46 -0.50143) (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.26524) (end -1.46 -0.26524) (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.02905) (end -1.46 -0.02905) (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.20714) (end -1.46 0.20714) (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.44333) (end -1.46 0.44333) (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.67952) (end -1.46 0.67952) (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.91571) (end -1.46 0.91571) (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 1.1519) (end -1.46 1.1519) (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 -1.46 2.18) (end -1.05 2.18) (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 4.72) (end -1.05 4.72) (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 7.26) (end -1.05 7.26) (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 9.8) (end -1.05 9.8) (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 -10.09 1.27) (end -1.46 1.27) (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 6.35) (end -1.46 6.35) (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 -1.33) (end -1.46 -1.33) (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 11.49) (end -1.46 11.49) (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 1.11 -1.33) (end 1.11 0) (layer F.SilkS) (width 0.12))
(fp_line (start 0 -1.33) (end 1.11 -1.33) (layer F.SilkS) (width 0.12))
(fp_line (start 1.75 -1.75) (end -10.55 -1.75) (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 -10.55 11.95) (end 1.75 11.95) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.75 11.95) (end 1.75 -1.75) (layer F.CrtYd) (width 0.05))
(fp_text user %R (at -5.775 5.08 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 5 Earth))
(pad 2 thru_hole oval (at 0 2.54) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 8 ALERT1))
(pad 3 thru_hole oval (at 0 5.08) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 3 SCL))
(pad 4 thru_hole oval (at 0 7.62) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 2 SDA))
(pad 5 thru_hole oval (at 0 10.16) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 1 VDD))
(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 Package_DFN_QFN:QFN-20-1EP_5x5mm_P0.65mm_EP3.35x3.35mm (layer F.Cu) (tedit 5B4E6D2C) (tstamp 5BC931FF)
(at 194.945 83.82 90)
(descr "QFN, 20 Pin (http://ww1.microchip.com/downloads/en/PackagingSpec/00000049BQ.pdf (Page 276)), generated with kicad-footprint-generator ipc_dfn_qfn_generator.py")
(tags "QFN DFN_QFN")
(path /5BBF06EE)
(attr smd)
(fp_text reference U1 (at 0 -3.8 90) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value MCP9600 (at 0 3.8 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 1.71 -2.61) (end 2.61 -2.61) (layer F.SilkS) (width 0.12))
(fp_line (start 2.61 -2.61) (end 2.61 -1.71) (layer F.SilkS) (width 0.12))
(fp_line (start -1.71 2.61) (end -2.61 2.61) (layer F.SilkS) (width 0.12))
(fp_line (start -2.61 2.61) (end -2.61 1.71) (layer F.SilkS) (width 0.12))
(fp_line (start 1.71 2.61) (end 2.61 2.61) (layer F.SilkS) (width 0.12))
(fp_line (start 2.61 2.61) (end 2.61 1.71) (layer F.SilkS) (width 0.12))
(fp_line (start -1.71 -2.61) (end -2.61 -2.61) (layer F.SilkS) (width 0.12))
(fp_line (start -1.5 -2.5) (end 2.5 -2.5) (layer F.Fab) (width 0.1))
(fp_line (start 2.5 -2.5) (end 2.5 2.5) (layer F.Fab) (width 0.1))
(fp_line (start 2.5 2.5) (end -2.5 2.5) (layer F.Fab) (width 0.1))
(fp_line (start -2.5 2.5) (end -2.5 -1.5) (layer F.Fab) (width 0.1))
(fp_line (start -2.5 -1.5) (end -1.5 -2.5) (layer F.Fab) (width 0.1))
(fp_line (start -3.1 -3.1) (end -3.1 3.1) (layer F.CrtYd) (width 0.05))
(fp_line (start -3.1 3.1) (end 3.1 3.1) (layer F.CrtYd) (width 0.05))
(fp_line (start 3.1 3.1) (end 3.1 -3.1) (layer F.CrtYd) (width 0.05))
(fp_line (start 3.1 -3.1) (end -3.1 -3.1) (layer F.CrtYd) (width 0.05))
(fp_text user %R (at 0 0 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad 21 smd roundrect (at 0 0 90) (size 3.35 3.35) (layers F.Cu F.Mask) (roundrect_rratio 0.074627))
(pad "" smd roundrect (at -0.84 -0.84 90) (size 1.35 1.35) (layers F.Paste) (roundrect_rratio 0.185185))
(pad "" smd roundrect (at -0.84 0.84 90) (size 1.35 1.35) (layers F.Paste) (roundrect_rratio 0.185185))
(pad "" smd roundrect (at 0.84 -0.84 90) (size 1.35 1.35) (layers F.Paste) (roundrect_rratio 0.185185))
(pad "" smd roundrect (at 0.84 0.84 90) (size 1.35 1.35) (layers F.Paste) (roundrect_rratio 0.185185))
(pad 1 smd roundrect (at -2.475 -1.3 90) (size 0.75 0.3) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)
(net 5 Earth))
(pad 2 smd roundrect (at -2.475 -0.65 90) (size 0.75 0.3) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)
(net 6 "Net-(J2-Pad1)"))
(pad 3 smd roundrect (at -2.475 0 90) (size 0.75 0.3) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)
(net 5 Earth))
(pad 4 smd roundrect (at -2.475 0.65 90) (size 0.75 0.3) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)
(net 7 "Net-(J2-Pad2)"))
(pad 5 smd roundrect (at -2.475 1.3 90) (size 0.75 0.3) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)
(net 5 Earth))
(pad 6 smd roundrect (at -1.3 2.475 90) (size 0.3 0.75) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)
(net 5 Earth))
(pad 7 smd roundrect (at -0.65 2.475 90) (size 0.3 0.75) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)
(net 5 Earth))
(pad 8 smd roundrect (at 0 2.475 90) (size 0.3 0.75) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)
(net 1 VDD))
(pad 9 smd roundrect (at 0.65 2.475 90) (size 0.3 0.75) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)
(net 5 Earth))
(pad 10 smd roundrect (at 1.3 2.475 90) (size 0.3 0.75) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)
(net 5 Earth))
(pad 11 smd roundrect (at 2.475 1.3 90) (size 0.75 0.3) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)
(net 8 ALERT1))
(pad 12 smd roundrect (at 2.475 0.65 90) (size 0.75 0.3) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)
(net 11 /ALERT2))
(pad 13 smd roundrect (at 2.475 0 90) (size 0.75 0.3) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)
(net 5 Earth))
(pad 14 smd roundrect (at 2.475 -0.65 90) (size 0.75 0.3) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)
(net 9 "Net-(J3-Pad2)"))
(pad 15 smd roundrect (at 2.475 -1.3 90) (size 0.75 0.3) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)
(net 10 "Net-(J3-Pad3)"))
(pad 16 smd roundrect (at 1.3 -2.475 90) (size 0.3 0.75) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)
(net 4 "Net-(R3-Pad2)"))
(pad 17 smd roundrect (at 0.65 -2.475 90) (size 0.3 0.75) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)
(net 5 Earth))
(pad 18 smd roundrect (at 0 -2.475 90) (size 0.3 0.75) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)
(net 5 Earth))
(pad 19 smd roundrect (at -0.65 -2.475 90) (size 0.3 0.75) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)
(net 3 SCL))
(pad 20 smd roundrect (at -1.3 -2.475 90) (size 0.3 0.75) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)
(net 2 SDA))
(model ${KISYS3DMOD}/Package_DFN_QFN.3dshapes/QFN-20-1EP_5x5mm_P0.65mm_EP3.35x3.35mm.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 199.39 81.5825 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 10uF (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 5 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 5B36C52B) (tstamp 5BCB1123)
(at 189.23 85.09 270)
(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 /5BBF9637)
(attr smd)
(fp_text reference R4 (at -2.54 0) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 10k (at 0 1.65 270) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text user %R (at 0 0 270) (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 270) (size 0.975 1.4) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)
(net 5 Earth))
(pad 1 smd roundrect (at -0.9375 0 270) (size 0.975 1.4) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.25)
(net 4 "Net-(R3-Pad2)"))
(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 5B36C52B) (tstamp 5BCB1112)
(at 186.69 85.09 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 /5BBF956A)
(attr smd)
(fp_text reference R3 (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)
(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 "Net-(R3-Pad2)"))
(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 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))
)
)
(module TerminalBlock_Phoenix:TerminalBlock_Phoenix_PT-1,5-2-3.5-H_1x02_P3.50mm_Horizontal (layer F.Cu) (tedit 5B294F3F) (tstamp 5BCE6FCC)
(at 193.675 90.17)
(descr "Terminal Block Phoenix PT-1,5-2-3.5-H, 2 pins, pitch 3.5mm, size 7x7.6mm^2, drill diamater 1.2mm, pad diameter 2.4mm, see , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix")
(tags "THT Terminal Block Phoenix PT-1,5-2-3.5-H pitch 3.5mm size 7x7.6mm^2 drill 1.2mm pad 2.4mm")
(path /5BBF3D5C)
(fp_text reference J2 (at 5.207 -3.937) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value Screw_Terminal_01x02 (at 1.75 5.56) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_arc (start 0 0) (end 0 1.68) (angle -32) (layer F.SilkS) (width 0.12))
(fp_arc (start 0 0) (end 1.425 0.891) (angle -64) (layer F.SilkS) (width 0.12))
(fp_arc (start 0 0) (end 0.866 -1.44) (angle -63) (layer F.SilkS) (width 0.12))
(fp_arc (start 0 0) (end -1.44 -0.866) (angle -63) (layer F.SilkS) (width 0.12))
(fp_arc (start 0 0) (end -0.866 1.44) (angle -32) (layer F.SilkS) (width 0.12))
(fp_circle (center 0 0) (end 1.5 0) (layer F.Fab) (width 0.1))
(fp_circle (center 3.5 0) (end 5 0) (layer F.Fab) (width 0.1))
(fp_circle (center 3.5 0) (end 5.18 0) (layer F.SilkS) (width 0.12))
(fp_line (start -1.75 -3.1) (end 5.25 -3.1) (layer F.Fab) (width 0.1))
(fp_line (start 5.25 -3.1) (end 5.25 4.5) (layer F.Fab) (width 0.1))
(fp_line (start 5.25 4.5) (end -1.35 4.5) (layer F.Fab) (width 0.1))
(fp_line (start -1.35 4.5) (end -1.75 4.1) (layer F.Fab) (width 0.1))
(fp_line (start -1.75 4.1) (end -1.75 -3.1) (layer F.Fab) (width 0.1))
(fp_line (start -1.75 4.1) (end 5.25 4.1) (layer F.Fab) (width 0.1))
(fp_line (start -1.81 4.1) (end 5.31 4.1) (layer F.SilkS) (width 0.12))
(fp_line (start -1.75 3) (end 5.25 3) (layer F.Fab) (width 0.1))
(fp_line (start -1.81 3) (end 5.31 3) (layer F.SilkS) (width 0.12))
(fp_line (start -1.81 -3.16) (end 5.31 -3.16) (layer F.SilkS) (width 0.12))
(fp_line (start -1.81 4.56) (end 5.31 4.56) (layer F.SilkS) (width 0.12))
(fp_line (start -1.81 -3.16) (end -1.81 4.56) (layer F.SilkS) (width 0.12))
(fp_line (start 5.31 -3.16) (end 5.31 4.56) (layer F.SilkS) (width 0.12))
(fp_line (start 1.138 -0.955) (end -0.955 1.138) (layer F.Fab) (width 0.1))
(fp_line (start 0.955 -1.138) (end -1.138 0.955) (layer F.Fab) (width 0.1))
(fp_line (start 4.638 -0.955) (end 2.546 1.138) (layer F.Fab) (width 0.1))
(fp_line (start 4.455 -1.138) (end 2.363 0.955) (layer F.Fab) (width 0.1))
(fp_line (start 4.775 -1.069) (end 4.646 -0.941) (layer F.SilkS) (width 0.12))
(fp_line (start 2.525 1.181) (end 2.431 1.274) (layer F.SilkS) (width 0.12))
(fp_line (start 4.57 -1.275) (end 4.476 -1.181) (layer F.SilkS) (width 0.12))
(fp_line (start 2.355 0.941) (end 2.226 1.069) (layer F.SilkS) (width 0.12))
(fp_line (start -2.05 4.16) (end -2.05 4.8) (layer F.SilkS) (width 0.12))
(fp_line (start -2.05 4.8) (end -1.65 4.8) (layer F.SilkS) (width 0.12))
(fp_line (start -2.25 -3.6) (end -2.25 5) (layer F.CrtYd) (width 0.05))
(fp_line (start -2.25 5) (end 5.75 5) (layer F.CrtYd) (width 0.05))
(fp_line (start 5.75 5) (end 5.75 -3.6) (layer F.CrtYd) (width 0.05))
(fp_line (start 5.75 -3.6) (end -2.25 -3.6) (layer F.CrtYd) (width 0.05))
(fp_text user %R (at 1.75 2.4) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad 1 thru_hole rect (at 0 0) (size 2.4 2.4) (drill 1.2) (layers *.Cu *.Mask)
(net 6 "Net-(J2-Pad1)"))
(pad 2 thru_hole circle (at 3.5 0) (size 2.4 2.4) (drill 1.2) (layers *.Cu *.Mask)
(net 7 "Net-(J2-Pad2)"))
(model ${KISYS3DMOD}/TerminalBlock_Phoenix.3dshapes/TerminalBlock_Phoenix_PT-1,5-2-3.5-H_1x02_P3.50mm_Horizontal.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(gr_text VINTLABS.COM (at 180.467 86.36 270) (layer B.SilkS)
(effects (font (size 1 1) (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 + (at 191.008 90.678) (layer F.Mask)
(effects (font (size 1.5 1.5) (thickness 0.3)))
)
(gr_text - (at 199.898 90.678) (layer F.Mask)
(effects (font (size 1.5 1.5) (thickness 0.3)))
)
(gr_text "I²C-Type-K Interface\nRev A 20181011\n\n" (at 205.74 78.994 90) (layer B.SilkS)
(effects (font (size 0.9 0.9) (thickness 0.1)) (justify left mirror))
)
(gr_poly (pts (xy 193.421 82.169) (xy 196.596 82.169) (xy 196.596 85.471) (xy 193.421 85.471)) (layer B.Mask) (width 0.15))
(gr_poly (pts (xy 193.421 82.169) (xy 196.596 82.169) (xy 196.596 85.471) (xy 193.421 85.471)) (layer F.Mask) (width 0.15))
(gr_text 1 (at 193.04 86.36) (layer F.SilkS)
(effects (font (size 0.9 0.8) (thickness 0.1)))
)
(gr_text GND (at 183.007 79.375) (layer F.SilkS)
(effects (font (size 0.9 0.8) (thickness 0.1)))
)
(gr_text ALT (at 184.785 83.82 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 "I²C Addr" (at 191.135 85.09 90) (layer F.SilkS)
(effects (font (size 0.8 0.8) (thickness 0.1)))
)
(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))
(via (at 189.865 92.71) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 1))
(via (at 188.595 92.71) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 1))
(via (at 200.025 91.44) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 1))
(via (at 200.025 90.17) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 1))
(segment (start 198.09 83.82) (end 199.39 82.52) (width 0.25) (layer F.Cu) (net 1))
(segment (start 197.42 83.82) (end 198.09 83.82) (width 0.25) (layer F.Cu) (net 1))
(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))
(segment (start 186.69 89.2325) (end 187.6275 90.17) (width 0.25) (layer F.Cu) (net 2))
(segment (start 187.6275 90.17) (end 190.5 90.17) (width 0.25) (layer F.Cu) (net 2))
(segment (start 203.835 90.805) (end 201.93 88.9) (width 0.25) (layer F.Cu) (net 2))
(segment (start 192.945001 92.615001) (end 190.5 90.17) (width 0.25) (layer F.Cu) (net 2))
(segment (start 203.040001 92.615001) (end 192.945001 92.615001) (width 0.25) (layer F.Cu) (net 2))
(segment (start 203.835 91.820002) (end 203.040001 92.615001) (width 0.25) (layer F.Cu) (net 2))
(segment (start 203.835 90.805) (end 203.835 91.820002) (width 0.25) (layer F.Cu) (net 2))
(segment (start 192.47 85.37) (end 192.47 85.12) (width 0.25) (layer F.Cu) (net 2))
(segment (start 191.225001 86.364999) (end 192.24929 85.34071) (width 0.25) (layer F.Cu) (net 2))
(segment (start 191.225001 89.444999) (end 191.225001 86.364999) (width 0.25) (layer F.Cu) (net 2))
(segment (start 192.24929 85.34071) (end 192.47 85.12) (width 0.25) (layer F.Cu) (net 2))
(segment (start 190.5 90.17) (end 191.225001 89.444999) (width 0.25) (layer F.Cu) (net 2))
(via (at 190.5 88.265) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 3))
(segment (start 187.6275 87.63) (end 188.673763 88.676263) (width 0.25) (layer F.Cu) (net 3))
(segment (start 182.88 86.36) (end 184.15 87.63) (width 0.25) (layer F.Cu) (net 3))
(segment (start 188.673763 88.676263) (end 189.23 89.2325) (width 0.25) (layer F.Cu) (net 3))
(segment (start 184.15 87.63) (end 187.6275 87.63) (width 0.25) (layer F.Cu) (net 3))
(segment (start 201.93 86.36) (end 204.47 88.9) (width 0.25) (layer F.Cu) (net 3))
(segment (start 203.226401 93.065011) (end 192.125011 93.065011) (width 0.25) (layer F.Cu) (net 3))
(segment (start 204.285009 92.006403) (end 203.226401 93.065011) (width 0.25) (layer F.Cu) (net 3))
(segment (start 204.47 88.9) (end 204.285009 89.084991) (width 0.25) (layer F.Cu) (net 3))
(segment (start 204.285009 89.084991) (end 204.285009 92.006403) (width 0.25) (layer F.Cu) (net 3))
(via (at 191.135 92.075) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 3))
(segment (start 189.23 89.2325) (end 189.786237 88.676263) (width 0.25) (layer F.Cu) (net 3))
(segment (start 189.5325 89.2325) (end 190.5 88.265) (width 0.25) (layer F.Cu) (net 3))
(segment (start 189.23 89.2325) (end 189.5325 89.2325) (width 0.25) (layer F.Cu) (net 3))
(segment (start 191.995 84.47) (end 192.47 84.47) (width 0.25) (layer F.Cu) (net 3))
(segment (start 190.5 85.965) (end 191.995 84.47) (width 0.25) (layer F.Cu) (net 3))
(segment (start 190.5 88.265) (end 190.5 85.965) (width 0.25) (layer F.Cu) (net 3))
(segment (start 190.5 88.265) (end 190.5 90.805) (width 0.25) (layer B.Cu) (net 3))
(segment (start 190.5 90.805) (end 191.135 91.44) (width 0.25) (layer B.Cu) (net 3))
(segment (start 191.135 91.44) (end 191.135 92.075) (width 0.25) (layer B.Cu) (net 3))
(segment (start 191.135 92.075) (end 192.125011 93.065011) (width 0.25) (layer F.Cu) (net 3))
(segment (start 186.69 84.1525) (end 189.23 84.1525) (width 0.25) (layer F.Cu) (net 4))
(segment (start 190.8625 82.52) (end 189.23 84.1525) (width 0.25) (layer F.Cu) (net 4))
(segment (start 192.47 82.52) (end 190.8625 82.52) (width 0.25) (layer F.Cu) (net 4))
(via (at 194.31 83.185) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 0))
(via (at 194.31 84.455) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 0))
(via (at 195.58 84.455) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 0))
(via (at 195.58 83.185) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 0))
(via (at 197.485 86.36) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 5))
(via (at 194.945 87.63) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 5))
(via (at 198.12 80.645) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 5))
(via (at 194.945 80.01) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 5))
(segment (start 194.945 81.345) (end 194.945 80.735001) (width 0.25) (layer F.Cu) (net 5))
(segment (start 194.945 80.735001) (end 194.945 80.01) (width 0.25) (layer F.Cu) (net 5))
(segment (start 199.39 80.645) (end 198.12 80.645) (width 0.25) (layer F.Cu) (net 5))
(segment (start 198.12 81.82) (end 197.42 82.52) (width 0.25) (layer F.Cu) (net 5))
(segment (start 198.12 80.645) (end 198.12 81.82) (width 0.25) (layer F.Cu) (net 5))
(segment (start 197.42 82.52) (end 197.42 83.17) (width 0.25) (layer F.Cu) (net 5))
(segment (start 197.42 84.47) (end 197.42 85.12) (width 0.25) (layer F.Cu) (net 5))
(segment (start 197.42 85.12) (end 196.215 86.325) (width 0.25) (layer F.Cu) (net 5))
(segment (start 196.215 86.325) (end 196.245 86.295) (width 0.25) (layer F.Cu) (net 5))
(segment (start 201.295 80.645) (end 201.93 81.28) (width 0.25) (layer F.Cu) (net 5))
(segment (start 199.39 80.645) (end 201.295 80.645) (width 0.25) (layer F.Cu) (net 5))
(via (at 193.04 86.36) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 5))
(via (at 189.23 86.995) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 5))
(segment (start 189.23 86.995) (end 189.23 86.0275) (width 0.25) (layer F.Cu) (net 5))
(segment (start 193.58 86.36) (end 193.645 86.295) (width 0.25) (layer F.Cu) (net 5))
(segment (start 193.04 86.36) (end 193.58 86.36) (width 0.25) (layer F.Cu) (net 5))
(segment (start 189.6125 86.0275) (end 189.23 86.0275) (width 0.25) (layer F.Cu) (net 5))
(segment (start 192.47 83.17) (end 189.6125 86.0275) (width 0.25) (layer F.Cu) (net 5))
(segment (start 192.47 83.82) (end 192.47 83.17) (width 0.25) (layer F.Cu) (net 5))
(segment (start 194.945 86.295) (end 194.945 87.63) (width 0.25) (layer F.Cu) (net 5))
(segment (start 197.42 86.295) (end 197.485 86.36) (width 0.25) (layer F.Cu) (net 5))
(segment (start 196.245 86.295) (end 197.42 86.295) (width 0.25) (layer F.Cu) (net 5))
(segment (start 193.675 88.72) (end 193.675 90.17) (width 0.25) (layer F.Cu) (net 6))
(segment (start 193.675 87.39) (end 193.675 88.72) (width 0.25) (layer F.Cu) (net 6))
(segment (start 194.295 86.77) (end 193.675 87.39) (width 0.25) (layer F.Cu) (net 6))
(segment (start 194.295 86.295) (end 194.295 86.77) (width 0.25) (layer F.Cu) (net 6))
(segment (start 195.975001 87.586999) (end 195.975001 88.970001) (width 0.25) (layer F.Cu) (net 7))
(segment (start 195.595 87.206998) (end 195.975001 87.586999) (width 0.25) (layer F.Cu) (net 7))
(segment (start 195.975001 88.970001) (end 197.175 90.17) (width 0.25) (layer F.Cu) (net 7))
(segment (start 195.595 86.295) (end 195.595 87.206998) (width 0.25) (layer F.Cu) (net 7))
(via (at 196.85 80.01) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 8))
(segment (start 196.245 80.615) (end 196.85 80.01) (width 0.25) (layer F.Cu) (net 8))
(segment (start 196.245 81.345) (end 196.245 80.615) (width 0.25) (layer F.Cu) (net 8))
(segment (start 196.85 80.01) (end 196.124999 79.284999) (width 0.25) (layer B.Cu) (net 8))
(segment (start 196.124999 79.284999) (end 185.510001 79.284999) (width 0.25) (layer B.Cu) (net 8))
(segment (start 183.729999 82.970001) (end 182.88 83.82) (width 0.25) (layer B.Cu) (net 8))
(segment (start 184.055001 82.644999) (end 183.729999 82.970001) (width 0.25) (layer B.Cu) (net 8))
(segment (start 184.055001 80.739999) (end 184.055001 82.644999) (width 0.25) (layer B.Cu) (net 8))
(segment (start 185.510001 79.284999) (end 184.055001 80.739999) (width 0.25) (layer B.Cu) (net 8))
(via (at 193.675 80.01) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 9))
(segment (start 187.96 80.61104) (end 188.108961 80.760001) (width 0.25) (layer F.Cu) (net 9))
(segment (start 194.295 81.345) (end 194.295 80.63) (width 0.25) (layer F.Cu) (net 9))
(segment (start 194.295 80.63) (end 193.675 80.01) (width 0.25) (layer F.Cu) (net 9))
(segment (start 189.444999 81.494999) (end 188.595 80.645) (width 0.25) (layer B.Cu) (net 9))
(segment (start 189.770001 81.820001) (end 189.444999 81.494999) (width 0.25) (layer B.Cu) (net 9))
(segment (start 192.430684 81.820001) (end 189.770001 81.820001) (width 0.25) (layer B.Cu) (net 9))
(segment (start 193.675 80.575685) (end 192.430684 81.820001) (width 0.25) (layer B.Cu) (net 9))
(segment (start 193.675 80.01) (end 193.675 80.575685) (width 0.25) (layer B.Cu) (net 9))
(segment (start 193.645 81.25) (end 193.645 81.345) (width 0.25) (layer F.Cu) (net 10))
(segment (start 193.60501 81.21001) (end 193.645 81.25) (width 0.25) (layer F.Cu) (net 10))
(segment (start 186.904999 81.494999) (end 186.055 80.645) (width 0.25) (layer F.Cu) (net 10))
(segment (start 187.325 81.915) (end 186.904999 81.494999) (width 0.25) (layer F.Cu) (net 10))
(segment (start 193.075 81.915) (end 187.325 81.915) (width 0.25) (layer F.Cu) (net 10))
(segment (start 193.645 81.345) (end 193.075 81.915) (width 0.25) (layer F.Cu) (net 10))
(segment (start 190.5 80.01) (end 190.5 80.645) (width 0.25) (layer B.Cu) (net 9))
(segment (start 195.595 81.345) (end 195.595 80.433002) (width 0.25) (layer F.Cu) (net 11))
(segment (start 195.595 80.433002) (end 195.670001 80.358001) (width 0.25) (layer F.Cu) (net 11))
(segment (start 195.670001 79.465001) (end 195.489999 79.284999) (width 0.25) (layer F.Cu) (net 11))
(segment (start 195.670001 80.358001) (end 195.670001 79.465001) (width 0.25) (layer F.Cu) (net 11))
(segment (start 195.489999 79.284999) (end 191.225001 79.284999) (width 0.25) (layer F.Cu) (net 11))
(segment (start 191.135 79.375) (end 191.135 80.645) (width 0.25) (layer F.Cu) (net 11))
(segment (start 191.225001 79.284999) (end 191.135 79.375) (width 0.25) (layer F.Cu) (net 11))
(zone (net 1) (net_name VDD) (layer B.Cu) (tstamp 5BD1A3A6) (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 187.96 92.075) (xy 198.755 92.075) (xy 198.755 89.535) (xy 198.755 88.9) (xy 201.295 88.9)
(xy 201.295 93.345) (xy 187.96 93.345)
)
)
(filled_polygon
(pts
(xy 200.531161 89.479418) (xy 200.859375 89.970625) (xy 200.881033 89.985096) (xy 200.720302 90.051673) (xy 200.541673 90.230301)
(xy 200.445 90.46369) (xy 200.445 91.15425) (xy 200.60375 91.313) (xy 201.168 91.313) (xy 201.168 91.567)
(xy 200.60375 91.567) (xy 200.445 91.72575) (xy 200.445 92.41631) (xy 200.541673 92.649699) (xy 200.720302 92.828327)
(xy 200.953691 92.925) (xy 201.168 92.925) (xy 201.168 93.218) (xy 188.087 93.218) (xy 188.087 92.202)
(xy 190.1 92.202) (xy 190.1 92.280874) (xy 190.257569 92.66128) (xy 190.54872 92.952431) (xy 190.929126 93.11)
(xy 191.340874 93.11) (xy 191.72128 92.952431) (xy 192.012431 92.66128) (xy 192.17 92.280874) (xy 192.17 92.202)
(xy 198.755 92.202) (xy 198.803601 92.192333) (xy 198.844803 92.164803) (xy 198.872333 92.123601) (xy 198.882 92.075)
(xy 198.882 90.844024) (xy 199.01 90.535004) (xy 199.01 89.804996) (xy 198.882 89.495976) (xy 198.882 89.027)
(xy 200.44117 89.027)
)
)
)
(zone (net 5) (net_name Earth) (layer B.Cu) (tstamp 5BD1A3A3) (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 179.07 78.74) (xy 207.01 78.74) (xy 207.01 88.265) (xy 198.12 88.265) (xy 198.12 91.44)
(xy 187.325 91.44) (xy 187.325 93.98) (xy 179.07 93.98)
)
)
(filled_polygon
(pts
(xy 183.675638 80.044561) (xy 183.236892 79.838514) (xy 183.007 79.959181) (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.559845 81.407) (xy 181.438524 81.63689) (xy 181.608355 82.046924) (xy 181.998642 82.475183) (xy 182.128478 82.536157)
(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 181.827619 89.982816) (xy 181.782235 89.991843) (xy 181.572191 90.132191)
(xy 181.431843 90.342235) (xy 181.38256 90.59) (xy 181.38256 92.29) (xy 181.431843 92.537765) (xy 181.572191 92.747809)
(xy 181.782235 92.888157) (xy 182.03 92.93744) (xy 183.73 92.93744) (xy 183.977765 92.888157) (xy 184.187809 92.747809)
(xy 184.328157 92.537765) (xy 184.37744 92.29) (xy 184.37744 90.59) (xy 184.328157 90.342235) (xy 184.187809 90.132191)
(xy 183.977765 89.991843) (xy 183.932381 89.982816) (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.278839 86.939418)
(xy 184.394092 86.36) (xy 184.278839 85.780582) (xy 183.950625 85.289375) (xy 183.652239 85.09) (xy 183.950625 84.890625)
(xy 184.278839 84.399418) (xy 184.394092 83.82) (xy 184.321209 83.453592) (xy 184.539471 83.23533) (xy 184.60293 83.192928)
(xy 184.770905 82.941536) (xy 184.815001 82.719851) (xy 184.815001 82.719847) (xy 184.829889 82.645) (xy 184.815001 82.570153)
(xy 184.815001 81.462139) (xy 184.984375 81.715625) (xy 185.475582 82.043839) (xy 185.908744 82.13) (xy 186.201256 82.13)
(xy 186.634418 82.043839) (xy 187.125625 81.715625) (xy 187.325 81.417239) (xy 187.524375 81.715625) (xy 188.015582 82.043839)
(xy 188.448744 82.13) (xy 188.741256 82.13) (xy 188.961408 82.086209) (xy 189.17967 82.304471) (xy 189.222072 82.36793)
(xy 189.473464 82.535905) (xy 189.695149 82.580001) (xy 189.695153 82.580001) (xy 189.77 82.594889) (xy 189.844847 82.580001)
(xy 192.355837 82.580001) (xy 192.430684 82.594889) (xy 192.505531 82.580001) (xy 192.505536 82.580001) (xy 192.727221 82.535905)
(xy 192.978613 82.36793) (xy 193.021015 82.304471) (xy 194.159473 81.166014) (xy 194.222929 81.123614) (xy 194.390904 80.872222)
(xy 194.419314 80.729397) (xy 194.552431 80.59628) (xy 194.71 80.215874) (xy 194.71 80.044999) (xy 195.810198 80.044999)
(xy 195.815 80.049801) (xy 195.815 80.215874) (xy 195.972569 80.59628) (xy 196.26372 80.887431) (xy 196.644126 81.045)
(xy 197.055874 81.045) (xy 197.350143 80.92311) (xy 200.488524 80.92311) (xy 200.609845 81.153) (xy 201.803 81.153)
(xy 201.803 79.959181) (xy 202.057 79.959181) (xy 202.057 81.153) (xy 203.250155 81.153) (xy 203.371476 80.92311)
(xy 203.201645 80.513076) (xy 202.811358 80.084817) (xy 202.286892 79.838514) (xy 202.057 79.959181) (xy 201.803 79.959181)
(xy 201.573108 79.838514) (xy 201.048642 80.084817) (xy 200.658355 80.513076) (xy 200.488524 80.92311) (xy 197.350143 80.92311)
(xy 197.43628 80.887431) (xy 197.727431 80.59628) (xy 197.885 80.215874) (xy 197.885 79.804126) (xy 197.738317 79.45)
(xy 206.3 79.45) (xy 206.300001 88.138) (xy 203.206842 88.138) (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.681522 82.536157) (xy 202.811358 82.475183) (xy 203.201645 82.046924) (xy 203.371476 81.63689)
(xy 203.250155 81.407) (xy 202.057 81.407) (xy 202.057 81.427) (xy 201.803 81.427) (xy 201.803 81.407)
(xy 200.609845 81.407) (xy 200.488524 81.63689) (xy 200.658355 82.046924) (xy 201.048642 82.475183) (xy 201.178478 82.536157)
(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.653158 88.138) (xy 198.12 88.138)
(xy 198.071399 88.147667) (xy 198.030197 88.175197) (xy 198.002667 88.216399) (xy 197.993 88.265) (xy 197.993 88.522637)
(xy 197.540004 88.335) (xy 196.809996 88.335) (xy 196.135556 88.614362) (xy 195.619362 89.130556) (xy 195.52244 89.364547)
(xy 195.52244 88.97) (xy 195.473157 88.722235) (xy 195.332809 88.512191) (xy 195.122765 88.371843) (xy 194.875 88.32256)
(xy 192.475 88.32256) (xy 192.227235 88.371843) (xy 192.017191 88.512191) (xy 191.876843 88.722235) (xy 191.82756 88.97)
(xy 191.82756 91.108526) (xy 191.682929 90.892071) (xy 191.619473 90.849671) (xy 191.26 90.490199) (xy 191.26 88.968711)
(xy 191.377431 88.85128) (xy 191.535 88.470874) (xy 191.535 88.059126) (xy 191.377431 87.67872) (xy 191.08628 87.387569)
(xy 190.705874 87.23) (xy 190.294126 87.23) (xy 189.91372 87.387569) (xy 189.622569 87.67872) (xy 189.465 88.059126)
(xy 189.465 88.470874) (xy 189.622569 88.85128) (xy 189.74 88.968711) (xy 189.740001 90.730148) (xy 189.725112 90.805)
(xy 189.740001 90.879852) (xy 189.773335 91.047431) (xy 189.784097 91.101537) (xy 189.848264 91.197569) (xy 189.925392 91.313)
(xy 187.325 91.313) (xy 187.276399 91.322667) (xy 187.235197 91.350197) (xy 187.207667 91.391399) (xy 187.198 91.44)
(xy 187.198 93.27) (xy 179.78 93.27) (xy 179.78 80.92311) (xy 181.438524 80.92311) (xy 181.559845 81.153)
(xy 182.753 81.153) (xy 182.753 79.959181) (xy 182.523108 79.838514) (xy 181.998642 80.084817) (xy 181.608355 80.513076)
(xy 181.438524 80.92311) (xy 179.78 80.92311) (xy 179.78 79.45) (xy 184.270198 79.45)
)
)
)
(zone (net 5) (net_name Earth) (layer F.Cu) (tstamp 5BD1A3A0) (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 193.675 82.55) (xy 196.215 82.55) (xy 196.215 85.09) (xy 193.675 85.09)
)
)
(filled_polygon
(pts
(xy 196.088 84.963) (xy 193.802 84.963) (xy 193.802 82.677) (xy 196.088 82.677)
)
)
)
(zone (net 1) (net_name VDD) (layer F.Cu) (tstamp 5BD1A39D) (hatch edge 0.508)
(connect_pads yes (clearance 0.508))
(min_thickness 0.254)
(fill yes (arc_segments 16) (thermal_gap 0.508) (thermal_bridge_width 0.508))
(polygon
(pts
(xy 179.07 78.74) (xy 189.23 78.74) (xy 189.23 91.44) (xy 198.755 91.44) (xy 198.755 79.375)
(xy 206.375 79.375) (xy 206.375 93.98) (xy 179.07 93.98)
)
)
(filled_polygon
(pts
(xy 184.984375 79.574375) (xy 184.656161 80.065582) (xy 184.540908 80.645) (xy 184.656161 81.224418) (xy 184.984375 81.715625)
(xy 185.475582 82.043839) (xy 185.908744 82.13) (xy 186.201256 82.13) (xy 186.421408 82.086209) (xy 186.734669 82.39947)
(xy 186.777071 82.462929) (xy 187.028463 82.630904) (xy 187.250148 82.675) (xy 187.250152 82.675) (xy 187.324999 82.689888)
(xy 187.399846 82.675) (xy 189.103 82.675) (xy 189.103 83.01756) (xy 188.77375 83.01756) (xy 188.432706 83.085398)
(xy 188.143584 83.278584) (xy 188.067467 83.3925) (xy 187.852533 83.3925) (xy 187.776416 83.278584) (xy 187.487294 83.085398)
(xy 187.14625 83.01756) (xy 186.23375 83.01756) (xy 185.892706 83.085398) (xy 185.603584 83.278584) (xy 185.410398 83.567706)
(xy 185.34256 83.90875) (xy 185.34256 84.39625) (xy 185.410398 84.737294) (xy 185.603584 85.026416) (xy 185.892706 85.219602)
(xy 186.23375 85.28744) (xy 187.14625 85.28744) (xy 187.487294 85.219602) (xy 187.776416 85.026416) (xy 187.852533 84.9125)
(xy 188.067467 84.9125) (xy 188.143584 85.026416) (xy 188.238744 85.09) (xy 188.143584 85.153584) (xy 187.950398 85.442706)
(xy 187.88256 85.78375) (xy 187.88256 86.27125) (xy 187.950398 86.612294) (xy 188.143584 86.901416) (xy 188.195 86.935771)
(xy 188.195 87.111361) (xy 188.175429 87.082071) (xy 187.924037 86.914096) (xy 187.702352 86.87) (xy 187.702347 86.87)
(xy 187.6275 86.855112) (xy 187.552653 86.87) (xy 184.464802 86.87) (xy 184.321209 86.726408) (xy 184.394092 86.36)
(xy 184.278839 85.780582) (xy 183.950625 85.289375) (xy 183.652239 85.09) (xy 183.950625 84.890625) (xy 184.278839 84.399418)
(xy 184.394092 83.82) (xy 184.278839 83.240582) (xy 183.950625 82.749375) (xy 183.652239 82.55) (xy 183.950625 82.350625)