-
Notifications
You must be signed in to change notification settings - Fork 0
/
EEPROM-Header.kicad_pcb
3800 lines (3714 loc) · 245 KB
/
EEPROM-Header.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 4) (host pcbnew 4.0.2-stable)
(general
(links 167)
(no_connects 0)
(area 125.098804 88.682781 165.477197 128.8396)
(thickness 1.6)
(drawings 29)
(tracks 681)
(zones 0)
(modules 76)
(nets 49)
)
(page USLetter)
(title_block
(title "EEPROM / I2C Expansion Header")
(date 10-Sep-2018)
(rev revB)
(company Synthetos)
)
(layers
(0 F.Cu signal)
(31 B.Cu signal)
(32 B.Adhes user)
(33 F.Adhes user)
(34 B.Paste user)
(35 F.Paste user)
(36 B.SilkS user)
(37 F.SilkS user)
(38 B.Mask user)
(39 F.Mask user)
(40 Dwgs.User user)
(41 Cmts.User user)
(42 Eco1.User user)
(43 Eco2.User user)
(44 Edge.Cuts user)
(45 Margin user)
(46 B.CrtYd user)
(47 F.CrtYd user)
(48 B.Fab user)
(49 F.Fab user)
)
(setup
(last_trace_width 0.25)
(trace_clearance 0.1746)
(zone_clearance 0.254)
(zone_45_only no)
(trace_min 0.2)
(segment_width 0.2)
(edge_width 0.15)
(via_size 0.6)
(via_drill 0.4)
(via_min_size 0.4)
(via_min_drill 0.3)
(uvia_size 0.3)
(uvia_drill 0.1)
(uvias_allowed no)
(uvia_min_size 0.2)
(uvia_min_drill 0.1)
(pcb_text_width 0.3)
(pcb_text_size 1.5 1.5)
(mod_edge_width 0.15)
(mod_text_size 1 1)
(mod_text_width 0.15)
(pad_size 1.524 1.524)
(pad_drill 0.762)
(pad_to_mask_clearance 0.0762)
(solder_mask_min_width 0.0254)
(pad_to_paste_clearance -0.0254)
(aux_axis_origin 127 127)
(visible_elements FFFFFF7F)
(pcbplotparams
(layerselection 0x010fc_80000001)
(usegerberextensions false)
(excludeedgelayer true)
(linewidth 0.025400)
(plotframeref false)
(viasonmask false)
(mode 1)
(useauxorigin false)
(hpglpennumber 1)
(hpglpenspeed 20)
(hpglpendiameter 15)
(hpglpenoverlay 2)
(psnegative false)
(psa4output false)
(plotreference false)
(plotvalue true)
(plotinvisibletext false)
(padsonsilk false)
(subtractmaskfromsilk false)
(outputformat 1)
(mirror false)
(drillshape 0)
(scaleselection 1)
(outputdirectory ProjectOutputs/))
)
(net 0 "")
(net 1 +3V3)
(net 2 GND)
(net 3 I2C_SDA)
(net 4 I2C_SCL)
(net 5 "/EEPROM Header CIrcuit/A0")
(net 6 "/EEPROM Header CIrcuit/A1")
(net 7 "/EEPROM Header CIrcuit/A2")
(net 8 "/EEPROM Header CIrcuit/WP")
(net 9 SPI_CS3)
(net 10 ~RESET)
(net 11 "/EEPROM Header CIrcuit/0.SD0")
(net 12 "/EEPROM Header CIrcuit/0.SC0")
(net 13 "/EEPROM Header CIrcuit/0.SD1")
(net 14 "/EEPROM Header CIrcuit/0.SC1")
(net 15 "/EEPROM Header CIrcuit/0.SD2")
(net 16 "/EEPROM Header CIrcuit/0.SC2")
(net 17 "/EEPROM Header CIrcuit/0.SD3")
(net 18 "/EEPROM Header CIrcuit/0.SC3")
(net 19 "/EEPROM Header CIrcuit/0.SD4")
(net 20 "/EEPROM Header CIrcuit/0.SC4")
(net 21 "/EEPROM Header CIrcuit/0.SD5")
(net 22 "/EEPROM Header CIrcuit/0.SC5")
(net 23 "/EEPROM Header CIrcuit/0.SD6")
(net 24 "/EEPROM Header CIrcuit/0.SC6")
(net 25 "/EEPROM Header CIrcuit/0.SD7")
(net 26 "/EEPROM Header CIrcuit/0.SC7")
(net 27 "/EEPROM Header CIrcuit/1.SD0")
(net 28 "/EEPROM Header CIrcuit/1.SC0")
(net 29 "/EEPROM Header CIrcuit/1.SD1")
(net 30 "/EEPROM Header CIrcuit/1.SC1")
(net 31 "/EEPROM Header CIrcuit/1.SD2")
(net 32 "/EEPROM Header CIrcuit/1.SC2")
(net 33 "/EEPROM Header CIrcuit/1.SD3")
(net 34 "/EEPROM Header CIrcuit/1.SC3")
(net 35 "/EEPROM Header CIrcuit/1.SD4")
(net 36 "/EEPROM Header CIrcuit/1.SC4")
(net 37 "/EEPROM Header CIrcuit/1.SD5")
(net 38 "/EEPROM Header CIrcuit/1.SC5")
(net 39 "/EEPROM Header CIrcuit/1.SD6")
(net 40 "/EEPROM Header CIrcuit/1.SC6")
(net 41 "/EEPROM Header CIrcuit/1.SD7")
(net 42 "/EEPROM Header CIrcuit/1.SC7")
(net 43 "/EEPROM Header CIrcuit/0.A0")
(net 44 "/EEPROM Header CIrcuit/0.A1")
(net 45 "/EEPROM Header CIrcuit/0.A2")
(net 46 "/EEPROM Header CIrcuit/1.A0")
(net 47 "/EEPROM Header CIrcuit/1.A1")
(net 48 "/EEPROM Header CIrcuit/1.A2")
(net_class Default "This is the default net class."
(clearance 0.1746)
(trace_width 0.25)
(via_dia 0.6)
(via_drill 0.4)
(uvia_dia 0.3)
(uvia_drill 0.1)
(add_net +3V3)
(add_net "/EEPROM Header CIrcuit/0.A0")
(add_net "/EEPROM Header CIrcuit/0.A1")
(add_net "/EEPROM Header CIrcuit/0.A2")
(add_net "/EEPROM Header CIrcuit/0.SC0")
(add_net "/EEPROM Header CIrcuit/0.SC1")
(add_net "/EEPROM Header CIrcuit/0.SC2")
(add_net "/EEPROM Header CIrcuit/0.SC3")
(add_net "/EEPROM Header CIrcuit/0.SC4")
(add_net "/EEPROM Header CIrcuit/0.SC5")
(add_net "/EEPROM Header CIrcuit/0.SC6")
(add_net "/EEPROM Header CIrcuit/0.SC7")
(add_net "/EEPROM Header CIrcuit/0.SD0")
(add_net "/EEPROM Header CIrcuit/0.SD1")
(add_net "/EEPROM Header CIrcuit/0.SD2")
(add_net "/EEPROM Header CIrcuit/0.SD3")
(add_net "/EEPROM Header CIrcuit/0.SD4")
(add_net "/EEPROM Header CIrcuit/0.SD5")
(add_net "/EEPROM Header CIrcuit/0.SD6")
(add_net "/EEPROM Header CIrcuit/0.SD7")
(add_net "/EEPROM Header CIrcuit/1.A0")
(add_net "/EEPROM Header CIrcuit/1.A1")
(add_net "/EEPROM Header CIrcuit/1.A2")
(add_net "/EEPROM Header CIrcuit/1.SC0")
(add_net "/EEPROM Header CIrcuit/1.SC1")
(add_net "/EEPROM Header CIrcuit/1.SC2")
(add_net "/EEPROM Header CIrcuit/1.SC3")
(add_net "/EEPROM Header CIrcuit/1.SC4")
(add_net "/EEPROM Header CIrcuit/1.SC5")
(add_net "/EEPROM Header CIrcuit/1.SC6")
(add_net "/EEPROM Header CIrcuit/1.SC7")
(add_net "/EEPROM Header CIrcuit/1.SD0")
(add_net "/EEPROM Header CIrcuit/1.SD1")
(add_net "/EEPROM Header CIrcuit/1.SD2")
(add_net "/EEPROM Header CIrcuit/1.SD3")
(add_net "/EEPROM Header CIrcuit/1.SD4")
(add_net "/EEPROM Header CIrcuit/1.SD5")
(add_net "/EEPROM Header CIrcuit/1.SD6")
(add_net "/EEPROM Header CIrcuit/1.SD7")
(add_net "/EEPROM Header CIrcuit/A0")
(add_net "/EEPROM Header CIrcuit/A1")
(add_net "/EEPROM Header CIrcuit/A2")
(add_net "/EEPROM Header CIrcuit/WP")
(add_net GND)
(add_net I2C_SCL)
(add_net I2C_SDA)
(add_net SPI_CS3)
(add_net ~RESET)
)
(net_class Sparkfun_Jumper ""
(clearance 0.1746)
(trace_width 0.25)
(via_dia 0.6)
(via_drill 0.4)
(uvia_dia 0.3)
(uvia_drill 0.1)
)
(module _Connector:0.100_2x5_small (layer F.Cu) (tedit 5B3A74CF) (tstamp 5B3A2FCF)
(at 138.43 123.19)
(tags "2x5 0.100 small")
(path /5B3A2134/5B3A21C8)
(fp_text reference P1 (at -4.3942 -2.8448) (layer F.SilkS)
(effects (font (size 0.8 0.8) (thickness 0.1)))
)
(fp_text value CONN_02X05 (at 0.4 4.7) (layer F.Fab) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 8.89 3.556) (end 2.54 3.556) (layer F.SilkS) (width 0.15))
(fp_line (start -8.89 3.556) (end -8.89 -3.556) (layer F.SilkS) (width 0.15))
(fp_line (start 8.89 3.556) (end 8.89 -3.556) (layer F.SilkS) (width 0.15))
(fp_line (start -2.54 3.556) (end -8.89 3.556) (layer F.SilkS) (width 0.15))
(fp_line (start -8.89 -3.556) (end 8.89 -3.556) (layer F.SilkS) (width 0.15))
(fp_line (start 3.79 3.556) (end -2.56 3.556) (layer F.SilkS) (width 0.15))
(fp_line (start -6.604 1.27) (end -7.874 0.508) (layer F.SilkS) (width 0.15))
(fp_line (start -7.874 0.508) (end -7.874 2.032) (layer F.SilkS) (width 0.15))
(fp_line (start -7.874 2.032) (end -6.604 1.27) (layer F.SilkS) (width 0.15))
(pad 1 thru_hole rect (at -5.08 1.27) (size 1.45 1.45) (drill 0.9) (layers *.Cu *.Mask F.SilkS)
(net 2 GND))
(pad 2 thru_hole circle (at -5.08 -1.27) (size 1.45 1.45) (drill 0.9) (layers *.Cu *.Mask F.SilkS)
(net 9 SPI_CS3))
(pad 3 thru_hole circle (at -2.54 1.27) (size 1.45 1.45) (drill 0.9) (layers *.Cu *.Mask F.SilkS)
(net 3 I2C_SDA))
(pad 4 thru_hole circle (at -2.54 -1.27) (size 1.45 1.45) (drill 0.9) (layers *.Cu *.Mask F.SilkS)
(net 4 I2C_SCL))
(pad 5 thru_hole circle (at 0 1.27) (size 1.45 1.45) (drill 0.9) (layers *.Cu *.Mask F.SilkS)
(net 1 +3V3))
(pad 6 thru_hole circle (at 0 -1.27) (size 1.445 1.445) (drill 0.9) (layers *.Cu *.Mask F.SilkS))
(pad 7 thru_hole circle (at 2.54 1.27) (size 1.45 1.45) (drill 0.9) (layers *.Cu *.Mask F.SilkS))
(pad 8 thru_hole circle (at 2.54 -1.27) (size 1.45 1.45) (drill 0.9) (layers *.Cu *.Mask F.SilkS))
(pad 9 thru_hole circle (at 5.08 1.27) (size 1.45 1.45) (drill 0.9) (layers *.Cu *.Mask F.SilkS))
(pad 10 thru_hole circle (at 5.08 -1.27) (size 1.45 1.45) (drill 0.9) (layers *.Cu *.Mask F.SilkS))
(model Connect.3dshapes/he10-10d.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module _Connector:Test_Point_SMD_0.040_Top (layer F.Cu) (tedit 57FB5FB9) (tstamp 5B3A3002)
(at 150.6982 124.8664)
(descr "Mesurement Point, Round, SMD Pad, DM 1.5mm,")
(tags "Mesurement Point Round SMD Pad 1.5mm")
(path /5B3A2134/5B3A4926)
(attr virtual)
(fp_text reference TT5 (at 2.286 0.254) (layer Dwgs.User) hide
(effects (font (size 0.635 0.635) (thickness 0.1016)))
)
(fp_text value WP (at 0 1.1176) (layer F.SilkS)
(effects (font (size 0.635 0.635) (thickness 0.1016)))
)
(fp_circle (center 0 0) (end 0.7112 0) (layer F.CrtYd) (width 0.05))
(pad 1 smd circle (at 0 0) (size 1.016 1.016) (layers F.Cu F.Mask)
(net 8 "/EEPROM Header CIrcuit/WP"))
)
(module Housings_SSOP:TSSOP-8_4.4x3mm_Pitch0.65mm (layer F.Cu) (tedit 5B3A4D1F) (tstamp 5B3A3036)
(at 151.8666 121.6406 180)
(descr "8-Lead Plastic Thin Shrink Small Outline (ST)-4.4 mm Body [TSSOP] (see Microchip Packaging Specification 00000049BS.pdf)")
(tags "SSOP 0.65")
(path /5B3A2134/5B3A39D3)
(attr smd)
(fp_text reference U3 (at 0.0381 -0.1524 180) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 24C512 (at 0 -0.762 180) (layer F.Fab)
(effects (font (size 0.5 0.5) (thickness 0.05)))
)
(fp_line (start -1.2 -1.5) (end 2.2 -1.5) (layer F.Fab) (width 0.15))
(fp_line (start 2.2 -1.5) (end 2.2 1.5) (layer F.Fab) (width 0.15))
(fp_line (start 2.2 1.5) (end -2.2 1.5) (layer F.Fab) (width 0.15))
(fp_line (start -2.2 1.5) (end -2.2 -0.5) (layer F.Fab) (width 0.15))
(fp_line (start -2.2 -0.5) (end -1.2 -1.5) (layer F.Fab) (width 0.15))
(fp_line (start -3.95 -1.8) (end -3.95 1.8) (layer F.CrtYd) (width 0.05))
(fp_line (start 3.95 -1.8) (end 3.95 1.8) (layer F.CrtYd) (width 0.05))
(fp_line (start -3.95 -1.8) (end 3.95 -1.8) (layer F.CrtYd) (width 0.05))
(fp_line (start -3.95 1.8) (end 3.95 1.8) (layer F.CrtYd) (width 0.05))
(fp_line (start -2.325 -1.625) (end -2.325 -1.525) (layer F.SilkS) (width 0.15))
(fp_line (start 2.325 -1.625) (end 2.325 -1.425) (layer F.SilkS) (width 0.15))
(fp_line (start 2.325 1.625) (end 2.325 1.425) (layer F.SilkS) (width 0.15))
(fp_line (start -2.325 1.625) (end -2.325 1.425) (layer F.SilkS) (width 0.15))
(fp_line (start -2.325 -1.625) (end 2.325 -1.625) (layer F.SilkS) (width 0.15))
(fp_line (start -2.325 1.625) (end 2.325 1.625) (layer F.SilkS) (width 0.15))
(fp_line (start -2.325 -1.525) (end -3.675 -1.525) (layer F.SilkS) (width 0.15))
(fp_text user %R (at 0 0 180) (layer F.Fab)
(effects (font (size 0.7 0.7) (thickness 0.15)))
)
(pad 1 smd rect (at -2.95 -0.975 180) (size 1.45 0.45) (layers F.Cu F.Paste F.Mask)
(net 5 "/EEPROM Header CIrcuit/A0"))
(pad 2 smd rect (at -2.95 -0.325 180) (size 1.45 0.45) (layers F.Cu F.Paste F.Mask)
(net 6 "/EEPROM Header CIrcuit/A1"))
(pad 3 smd rect (at -2.95 0.325 180) (size 1.45 0.45) (layers F.Cu F.Paste F.Mask)
(net 7 "/EEPROM Header CIrcuit/A2"))
(pad 4 smd rect (at -2.95 0.975 180) (size 1.45 0.45) (layers F.Cu F.Paste F.Mask)
(net 2 GND))
(pad 5 smd rect (at 2.95 0.975 180) (size 1.45 0.45) (layers F.Cu F.Paste F.Mask)
(net 3 I2C_SDA))
(pad 6 smd rect (at 2.95 0.325 180) (size 1.45 0.45) (layers F.Cu F.Paste F.Mask)
(net 4 I2C_SCL))
(pad 7 smd rect (at 2.95 -0.325 180) (size 1.45 0.45) (layers F.Cu F.Paste F.Mask)
(net 8 "/EEPROM Header CIrcuit/WP"))
(pad 8 smd rect (at 2.95 -0.975 180) (size 1.45 0.45) (layers F.Cu F.Paste F.Mask)
(net 1 +3V3))
(model ${KISYS3DMOD}/Housings_SSOP.3dshapes/TSSOP-8_4.4x3mm_Pitch0.65mm.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module _Connector:Fiducial_0.040_Top (layer F.Cu) (tedit 57AA2203) (tstamp 5B3A30E8)
(at 151.765 92.71)
(descr "Mesurement Point, Round, SMD Pad, DM 1.5mm,")
(tags "Mesurement Point Round SMD Pad 1.5mm")
(path /5B3A2134/5B3A6568)
(attr virtual)
(fp_text reference FID1 (at 0.1778 -1.524) (layer F.SilkS) hide
(effects (font (size 0.635 0.635) (thickness 0.1016)))
)
(fp_text value Fiducial_Top (at 0 2) (layer F.Fab) hide
(effects (font (size 0.635 0.635) (thickness 0.127)))
)
(fp_circle (center 0 0) (end 1.016 0) (layer F.CrtYd) (width 0.05))
(pad 1 smd circle (at 0 0) (size 1.016 1.016) (layers F.Cu F.Mask)
(solder_mask_margin 0.508) (zone_connect 0) (thermal_width 2.032))
)
(module _Connector:Fiducial_0.040_Top (layer F.Cu) (tedit 57AA2203) (tstamp 5B3A30ED)
(at 128.27 125.73)
(descr "Mesurement Point, Round, SMD Pad, DM 1.5mm,")
(tags "Mesurement Point Round SMD Pad 1.5mm")
(path /5B3A2134/5B3A65C0)
(attr virtual)
(fp_text reference FID2 (at 0.1778 -1.524) (layer F.SilkS) hide
(effects (font (size 0.635 0.635) (thickness 0.1016)))
)
(fp_text value Fiducial_Top (at 0 2) (layer F.Fab) hide
(effects (font (size 0.635 0.635) (thickness 0.127)))
)
(fp_circle (center 0 0) (end 1.016 0) (layer F.CrtYd) (width 0.05))
(pad 1 smd circle (at 0 0) (size 1.016 1.016) (layers F.Cu F.Mask)
(solder_mask_margin 0.508) (zone_connect 0) (thermal_width 2.032))
)
(module _Connector:Fiducial_0.040_Top (layer F.Cu) (tedit 57AA2203) (tstamp 5B3A30F2)
(at 162.306 125.73)
(descr "Mesurement Point, Round, SMD Pad, DM 1.5mm,")
(tags "Mesurement Point Round SMD Pad 1.5mm")
(path /5B3A2134/5B3A6619)
(attr virtual)
(fp_text reference FID3 (at 0.1778 -1.524) (layer F.SilkS) hide
(effects (font (size 0.635 0.635) (thickness 0.1016)))
)
(fp_text value Fiducial_Top (at 0 2) (layer F.Fab) hide
(effects (font (size 0.635 0.635) (thickness 0.127)))
)
(fp_circle (center 0 0) (end 1.016 0) (layer F.CrtYd) (width 0.05))
(pad 1 smd circle (at 0 0) (size 1.016 1.016) (layers F.Cu F.Mask)
(solder_mask_margin 0.508) (zone_connect 0) (thermal_width 2.032))
)
(module Sparkfun-Jumpers:SMT-JUMPER_2_NO_SILK (layer F.Cu) (tedit 5B3A4D5D) (tstamp 5B3A3D43)
(at 158.7246 124.7902 180)
(path /5B3A2134/5B3AC030)
(attr smd)
(fp_text reference JP7 (at -1.7526 0 270) (layer F.SilkS) hide
(effects (font (size 0.6096 0.6096) (thickness 0.127)))
)
(fp_text value A0 (at 1.651 0 270) (layer F.SilkS)
(effects (font (size 0.6096 0.6096) (thickness 0.127)))
)
(fp_line (start 0.8636 1.016) (end -0.8636 1.016) (layer F.SilkS) (width 0.1524))
(fp_line (start 1.1176 0.762) (end 1.1176 -0.762) (layer F.SilkS) (width 0.1524))
(fp_line (start -1.1176 0.762) (end -1.1176 -0.762) (layer F.SilkS) (width 0.1524))
(fp_line (start -0.8636 -1.016) (end 0.8636 -1.016) (layer F.SilkS) (width 0.1524))
(fp_arc (start 0.8636 -0.762) (end 0.8636 -1.016) (angle 90) (layer F.SilkS) (width 0.1524))
(fp_arc (start -0.8636 -0.762) (end -1.1176 -0.762) (angle 90) (layer F.SilkS) (width 0.1524))
(fp_arc (start -0.8636 0.762) (end -0.8636 1.016) (angle 90) (layer F.SilkS) (width 0.1524))
(fp_arc (start 0.8636 0.762) (end 1.1176 0.762) (angle 90) (layer F.SilkS) (width 0.1524))
(pad 1 smd rect (at -0.4064 0 180) (size 0.635 1.27) (layers F.Cu F.Mask)
(net 1 +3V3) (solder_mask_margin 0.1016))
(pad 2 smd rect (at 0.4064 0 180) (size 0.635 1.27) (layers F.Cu F.Mask)
(net 5 "/EEPROM Header CIrcuit/A0") (solder_mask_margin 0.1016))
)
(module Sparkfun-Jumpers:SMT-JUMPER_2_NO_SILK (layer F.Cu) (tedit 5B3A4D5A) (tstamp 5B3A3D49)
(at 158.7246 122.7582 180)
(path /5B3A2134/5B3AC0B7)
(attr smd)
(fp_text reference JP8 (at -1.7526 0 270) (layer F.SilkS) hide
(effects (font (size 0.6096 0.6096) (thickness 0.127)))
)
(fp_text value A1 (at 1.6256 0 270) (layer F.SilkS)
(effects (font (size 0.6096 0.6096) (thickness 0.127)))
)
(fp_line (start 0.8636 1.016) (end -0.8636 1.016) (layer F.SilkS) (width 0.1524))
(fp_line (start 1.1176 0.762) (end 1.1176 -0.762) (layer F.SilkS) (width 0.1524))
(fp_line (start -1.1176 0.762) (end -1.1176 -0.762) (layer F.SilkS) (width 0.1524))
(fp_line (start -0.8636 -1.016) (end 0.8636 -1.016) (layer F.SilkS) (width 0.1524))
(fp_arc (start 0.8636 -0.762) (end 0.8636 -1.016) (angle 90) (layer F.SilkS) (width 0.1524))
(fp_arc (start -0.8636 -0.762) (end -1.1176 -0.762) (angle 90) (layer F.SilkS) (width 0.1524))
(fp_arc (start -0.8636 0.762) (end -0.8636 1.016) (angle 90) (layer F.SilkS) (width 0.1524))
(fp_arc (start 0.8636 0.762) (end 1.1176 0.762) (angle 90) (layer F.SilkS) (width 0.1524))
(pad 1 smd rect (at -0.4064 0 180) (size 0.635 1.27) (layers F.Cu F.Mask)
(net 1 +3V3) (solder_mask_margin 0.1016))
(pad 2 smd rect (at 0.4064 0 180) (size 0.635 1.27) (layers F.Cu F.Mask)
(net 6 "/EEPROM Header CIrcuit/A1") (solder_mask_margin 0.1016))
)
(module Sparkfun-Jumpers:SMT-JUMPER_2_NO_SILK (layer F.Cu) (tedit 5B3A4D58) (tstamp 5B3A3D4F)
(at 158.7246 120.6754 180)
(path /5B3A2134/5B3AC12B)
(attr smd)
(fp_text reference JP9 (at -1.7272 -0.0762 270) (layer F.SilkS) hide
(effects (font (size 0.6096 0.6096) (thickness 0.127)))
)
(fp_text value A2 (at 1.6764 -0.0508 270) (layer F.SilkS)
(effects (font (size 0.6096 0.6096) (thickness 0.127)))
)
(fp_line (start 0.8636 1.016) (end -0.8636 1.016) (layer F.SilkS) (width 0.1524))
(fp_line (start 1.1176 0.762) (end 1.1176 -0.762) (layer F.SilkS) (width 0.1524))
(fp_line (start -1.1176 0.762) (end -1.1176 -0.762) (layer F.SilkS) (width 0.1524))
(fp_line (start -0.8636 -1.016) (end 0.8636 -1.016) (layer F.SilkS) (width 0.1524))
(fp_arc (start 0.8636 -0.762) (end 0.8636 -1.016) (angle 90) (layer F.SilkS) (width 0.1524))
(fp_arc (start -0.8636 -0.762) (end -1.1176 -0.762) (angle 90) (layer F.SilkS) (width 0.1524))
(fp_arc (start -0.8636 0.762) (end -0.8636 1.016) (angle 90) (layer F.SilkS) (width 0.1524))
(fp_arc (start 0.8636 0.762) (end 1.1176 0.762) (angle 90) (layer F.SilkS) (width 0.1524))
(pad 1 smd rect (at -0.4064 0 180) (size 0.635 1.27) (layers F.Cu F.Mask)
(net 1 +3V3) (solder_mask_margin 0.1016))
(pad 2 smd rect (at 0.4064 0 180) (size 0.635 1.27) (layers F.Cu F.Mask)
(net 7 "/EEPROM Header CIrcuit/A2") (solder_mask_margin 0.1016))
)
(module _Connector:0.100_1x3_small (layer F.Cu) (tedit 5B95C2CE) (tstamp 5B958821)
(at 134.747 105.41 90)
(descr "Through hole pin header")
(tags "pin header")
(path /5B3A2134/5B958D7D)
(fp_text reference J1 (at 0 -4.7625 90) (layer F.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 22-27-2031 (at 0 5.56 90) (layer F.Fab) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -1.75 -4.29) (end -1.75 4.31) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.75 -4.29) (end 1.75 4.31) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.75 -4.29) (end 1.75 -4.29) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.75 4.31) (end 1.75 4.31) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.27 -1.27) (end -1.27 3.81) (layer F.SilkS) (width 0.15))
(fp_line (start -1.27 3.81) (end 1.27 3.81) (layer F.SilkS) (width 0.15))
(fp_line (start 1.27 3.81) (end 1.27 -1.27) (layer F.SilkS) (width 0.15))
(fp_line (start 1.55 -4.09) (end 1.55 -2.54) (layer F.SilkS) (width 0.15))
(fp_line (start 1.27 -1.27) (end -1.27 -1.27) (layer F.SilkS) (width 0.15))
(fp_line (start -1.55 -2.54) (end -1.55 -4.09) (layer F.SilkS) (width 0.15))
(fp_line (start -1.55 -4.09) (end 1.55 -4.09) (layer F.SilkS) (width 0.15))
(pad 1 thru_hole rect (at 0 -2.54 90) (size 1.45 1.45) (drill 0.9) (layers *.Cu *.Mask F.SilkS)
(net 11 "/EEPROM Header CIrcuit/0.SD0"))
(pad 2 thru_hole oval (at 0 0 90) (size 1.45 1.45) (drill 0.9) (layers *.Cu *.Mask F.SilkS)
(net 12 "/EEPROM Header CIrcuit/0.SC0"))
(pad 3 thru_hole oval (at 0 2.54 90) (size 1.45 1.45) (drill 0.9) (layers *.Cu *.Mask F.SilkS)
(net 2 GND))
(model Pin_Headers.3dshapes/Pin_Header_Straight_1x03.wrl
(at (xyz 0 -0.1 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 90))
)
)
(module _Connector:0.100_1x3_small (layer F.Cu) (tedit 5B95C2BB) (tstamp 5B958828)
(at 134.747 107.95 90)
(descr "Through hole pin header")
(tags "pin header")
(path /5B3A2134/5B95918B)
(fp_text reference J2 (at 0 -5.44 90) (layer F.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 22-27-2031 (at 0 5.56 90) (layer F.Fab) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -1.75 -4.29) (end -1.75 4.31) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.75 -4.29) (end 1.75 4.31) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.75 -4.29) (end 1.75 -4.29) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.75 4.31) (end 1.75 4.31) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.27 -1.27) (end -1.27 3.81) (layer F.SilkS) (width 0.15))
(fp_line (start -1.27 3.81) (end 1.27 3.81) (layer F.SilkS) (width 0.15))
(fp_line (start 1.27 3.81) (end 1.27 -1.27) (layer F.SilkS) (width 0.15))
(fp_line (start 1.55 -4.09) (end 1.55 -2.54) (layer F.SilkS) (width 0.15))
(fp_line (start 1.27 -1.27) (end -1.27 -1.27) (layer F.SilkS) (width 0.15))
(fp_line (start -1.55 -2.54) (end -1.55 -4.09) (layer F.SilkS) (width 0.15))
(fp_line (start -1.55 -4.09) (end 1.55 -4.09) (layer F.SilkS) (width 0.15))
(pad 1 thru_hole rect (at 0 -2.54 90) (size 1.45 1.45) (drill 0.9) (layers *.Cu *.Mask F.SilkS)
(net 13 "/EEPROM Header CIrcuit/0.SD1"))
(pad 2 thru_hole oval (at 0 0 90) (size 1.45 1.45) (drill 0.9) (layers *.Cu *.Mask F.SilkS)
(net 14 "/EEPROM Header CIrcuit/0.SC1"))
(pad 3 thru_hole oval (at 0 2.54 90) (size 1.45 1.45) (drill 0.9) (layers *.Cu *.Mask F.SilkS)
(net 2 GND))
(model Pin_Headers.3dshapes/Pin_Header_Straight_1x03.wrl
(at (xyz 0 -0.1 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 90))
)
)
(module _Connector:0.100_1x3_small (layer F.Cu) (tedit 5B95C2C0) (tstamp 5B95882F)
(at 134.747 110.49 90)
(descr "Through hole pin header")
(tags "pin header")
(path /5B3A2134/5B959EC2)
(fp_text reference J3 (at 0 -5.44 90) (layer F.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 22-27-2031 (at 0 5.56 90) (layer F.Fab) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -1.75 -4.29) (end -1.75 4.31) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.75 -4.29) (end 1.75 4.31) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.75 -4.29) (end 1.75 -4.29) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.75 4.31) (end 1.75 4.31) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.27 -1.27) (end -1.27 3.81) (layer F.SilkS) (width 0.15))
(fp_line (start -1.27 3.81) (end 1.27 3.81) (layer F.SilkS) (width 0.15))
(fp_line (start 1.27 3.81) (end 1.27 -1.27) (layer F.SilkS) (width 0.15))
(fp_line (start 1.55 -4.09) (end 1.55 -2.54) (layer F.SilkS) (width 0.15))
(fp_line (start 1.27 -1.27) (end -1.27 -1.27) (layer F.SilkS) (width 0.15))
(fp_line (start -1.55 -2.54) (end -1.55 -4.09) (layer F.SilkS) (width 0.15))
(fp_line (start -1.55 -4.09) (end 1.55 -4.09) (layer F.SilkS) (width 0.15))
(pad 1 thru_hole rect (at 0 -2.54 90) (size 1.45 1.45) (drill 0.9) (layers *.Cu *.Mask F.SilkS)
(net 15 "/EEPROM Header CIrcuit/0.SD2"))
(pad 2 thru_hole oval (at 0 0 90) (size 1.45 1.45) (drill 0.9) (layers *.Cu *.Mask F.SilkS)
(net 16 "/EEPROM Header CIrcuit/0.SC2"))
(pad 3 thru_hole oval (at 0 2.54 90) (size 1.45 1.45) (drill 0.9) (layers *.Cu *.Mask F.SilkS)
(net 2 GND))
(model Pin_Headers.3dshapes/Pin_Header_Straight_1x03.wrl
(at (xyz 0 -0.1 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 90))
)
)
(module _Connector:0.100_1x3_small (layer F.Cu) (tedit 5B95C2C4) (tstamp 5B958836)
(at 134.747 113.03 90)
(descr "Through hole pin header")
(tags "pin header")
(path /5B3A2134/5B959F48)
(fp_text reference J4 (at 0 -5.44 90) (layer F.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 22-27-2031 (at 0 5.56 90) (layer F.Fab) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -1.75 -4.29) (end -1.75 4.31) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.75 -4.29) (end 1.75 4.31) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.75 -4.29) (end 1.75 -4.29) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.75 4.31) (end 1.75 4.31) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.27 -1.27) (end -1.27 3.81) (layer F.SilkS) (width 0.15))
(fp_line (start -1.27 3.81) (end 1.27 3.81) (layer F.SilkS) (width 0.15))
(fp_line (start 1.27 3.81) (end 1.27 -1.27) (layer F.SilkS) (width 0.15))
(fp_line (start 1.55 -4.09) (end 1.55 -2.54) (layer F.SilkS) (width 0.15))
(fp_line (start 1.27 -1.27) (end -1.27 -1.27) (layer F.SilkS) (width 0.15))
(fp_line (start -1.55 -2.54) (end -1.55 -4.09) (layer F.SilkS) (width 0.15))
(fp_line (start -1.55 -4.09) (end 1.55 -4.09) (layer F.SilkS) (width 0.15))
(pad 1 thru_hole rect (at 0 -2.54 90) (size 1.45 1.45) (drill 0.9) (layers *.Cu *.Mask F.SilkS)
(net 17 "/EEPROM Header CIrcuit/0.SD3"))
(pad 2 thru_hole oval (at 0 0 90) (size 1.45 1.45) (drill 0.9) (layers *.Cu *.Mask F.SilkS)
(net 18 "/EEPROM Header CIrcuit/0.SC3"))
(pad 3 thru_hole oval (at 0 2.54 90) (size 1.45 1.45) (drill 0.9) (layers *.Cu *.Mask F.SilkS)
(net 2 GND))
(model Pin_Headers.3dshapes/Pin_Header_Straight_1x03.wrl
(at (xyz 0 -0.1 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 90))
)
)
(module _Connector:0.100_1x3_small (layer F.Cu) (tedit 5B95C52F) (tstamp 5B95883D)
(at 156.718 113.03 90)
(descr "Through hole pin header")
(tags "pin header")
(path /5B3A2134/5B959FCF)
(fp_text reference J5 (at 0 -5.44 90) (layer F.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 22-27-2031 (at 0 5.56 90) (layer F.Fab) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -1.75 -4.29) (end -1.75 4.31) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.75 -4.29) (end 1.75 4.31) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.75 -4.29) (end 1.75 -4.29) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.75 4.31) (end 1.75 4.31) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.27 -1.27) (end -1.27 3.81) (layer F.SilkS) (width 0.15))
(fp_line (start -1.27 3.81) (end 1.27 3.81) (layer F.SilkS) (width 0.15))
(fp_line (start 1.27 3.81) (end 1.27 -1.27) (layer F.SilkS) (width 0.15))
(fp_line (start 1.55 -4.09) (end 1.55 -2.54) (layer F.SilkS) (width 0.15))
(fp_line (start 1.27 -1.27) (end -1.27 -1.27) (layer F.SilkS) (width 0.15))
(fp_line (start -1.55 -2.54) (end -1.55 -4.09) (layer F.SilkS) (width 0.15))
(fp_line (start -1.55 -4.09) (end 1.55 -4.09) (layer F.SilkS) (width 0.15))
(pad 1 thru_hole rect (at 0 -2.54 90) (size 1.45 1.45) (drill 0.9) (layers *.Cu *.Mask F.SilkS)
(net 19 "/EEPROM Header CIrcuit/0.SD4"))
(pad 2 thru_hole oval (at 0 0 90) (size 1.45 1.45) (drill 0.9) (layers *.Cu *.Mask F.SilkS)
(net 20 "/EEPROM Header CIrcuit/0.SC4"))
(pad 3 thru_hole oval (at 0 2.54 90) (size 1.45 1.45) (drill 0.9) (layers *.Cu *.Mask F.SilkS)
(net 2 GND))
(model Pin_Headers.3dshapes/Pin_Header_Straight_1x03.wrl
(at (xyz 0 -0.1 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 90))
)
)
(module _Connector:0.100_1x3_small (layer F.Cu) (tedit 5B95C2EA) (tstamp 5B958844)
(at 156.718 110.49 90)
(descr "Through hole pin header")
(tags "pin header")
(path /5B3A2134/5B95A059)
(fp_text reference J6 (at 0 -5.44 90) (layer F.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 22-27-2031 (at 0 5.56 90) (layer F.Fab) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -1.75 -4.29) (end -1.75 4.31) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.75 -4.29) (end 1.75 4.31) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.75 -4.29) (end 1.75 -4.29) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.75 4.31) (end 1.75 4.31) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.27 -1.27) (end -1.27 3.81) (layer F.SilkS) (width 0.15))
(fp_line (start -1.27 3.81) (end 1.27 3.81) (layer F.SilkS) (width 0.15))
(fp_line (start 1.27 3.81) (end 1.27 -1.27) (layer F.SilkS) (width 0.15))
(fp_line (start 1.55 -4.09) (end 1.55 -2.54) (layer F.SilkS) (width 0.15))
(fp_line (start 1.27 -1.27) (end -1.27 -1.27) (layer F.SilkS) (width 0.15))
(fp_line (start -1.55 -2.54) (end -1.55 -4.09) (layer F.SilkS) (width 0.15))
(fp_line (start -1.55 -4.09) (end 1.55 -4.09) (layer F.SilkS) (width 0.15))
(pad 1 thru_hole rect (at 0 -2.54 90) (size 1.45 1.45) (drill 0.9) (layers *.Cu *.Mask F.SilkS)
(net 21 "/EEPROM Header CIrcuit/0.SD5"))
(pad 2 thru_hole oval (at 0 0 90) (size 1.45 1.45) (drill 0.9) (layers *.Cu *.Mask F.SilkS)
(net 22 "/EEPROM Header CIrcuit/0.SC5"))
(pad 3 thru_hole oval (at 0 2.54 90) (size 1.45 1.45) (drill 0.9) (layers *.Cu *.Mask F.SilkS)
(net 2 GND))
(model Pin_Headers.3dshapes/Pin_Header_Straight_1x03.wrl
(at (xyz 0 -0.1 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 90))
)
)
(module _Connector:0.100_1x3_small (layer F.Cu) (tedit 5B95C2E7) (tstamp 5B95884B)
(at 156.718 107.95 90)
(descr "Through hole pin header")
(tags "pin header")
(path /5B3A2134/5B95A0E5)
(fp_text reference J7 (at 0 -5.44 90) (layer F.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 22-27-2031 (at 0 5.56 90) (layer F.Fab) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -1.75 -4.29) (end -1.75 4.31) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.75 -4.29) (end 1.75 4.31) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.75 -4.29) (end 1.75 -4.29) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.75 4.31) (end 1.75 4.31) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.27 -1.27) (end -1.27 3.81) (layer F.SilkS) (width 0.15))
(fp_line (start -1.27 3.81) (end 1.27 3.81) (layer F.SilkS) (width 0.15))
(fp_line (start 1.27 3.81) (end 1.27 -1.27) (layer F.SilkS) (width 0.15))
(fp_line (start 1.55 -4.09) (end 1.55 -2.54) (layer F.SilkS) (width 0.15))
(fp_line (start 1.27 -1.27) (end -1.27 -1.27) (layer F.SilkS) (width 0.15))
(fp_line (start -1.55 -2.54) (end -1.55 -4.09) (layer F.SilkS) (width 0.15))
(fp_line (start -1.55 -4.09) (end 1.55 -4.09) (layer F.SilkS) (width 0.15))
(pad 1 thru_hole rect (at 0 -2.54 90) (size 1.45 1.45) (drill 0.9) (layers *.Cu *.Mask F.SilkS)
(net 23 "/EEPROM Header CIrcuit/0.SD6"))
(pad 2 thru_hole oval (at 0 0 90) (size 1.45 1.45) (drill 0.9) (layers *.Cu *.Mask F.SilkS)
(net 24 "/EEPROM Header CIrcuit/0.SC6"))
(pad 3 thru_hole oval (at 0 2.54 90) (size 1.45 1.45) (drill 0.9) (layers *.Cu *.Mask F.SilkS)
(net 2 GND))
(model Pin_Headers.3dshapes/Pin_Header_Straight_1x03.wrl
(at (xyz 0 -0.1 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 90))
)
)
(module _Connector:0.100_1x3_small (layer F.Cu) (tedit 5B95C2E3) (tstamp 5B958852)
(at 156.718 105.41 90)
(descr "Through hole pin header")
(tags "pin header")
(path /5B3A2134/5B95A176)
(fp_text reference J8 (at 0 -5.44 90) (layer F.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 22-27-2031 (at 0 5.56 90) (layer F.Fab) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -1.75 -4.29) (end -1.75 4.31) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.75 -4.29) (end 1.75 4.31) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.75 -4.29) (end 1.75 -4.29) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.75 4.31) (end 1.75 4.31) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.27 -1.27) (end -1.27 3.81) (layer F.SilkS) (width 0.15))
(fp_line (start -1.27 3.81) (end 1.27 3.81) (layer F.SilkS) (width 0.15))
(fp_line (start 1.27 3.81) (end 1.27 -1.27) (layer F.SilkS) (width 0.15))
(fp_line (start 1.55 -4.09) (end 1.55 -2.54) (layer F.SilkS) (width 0.15))
(fp_line (start 1.27 -1.27) (end -1.27 -1.27) (layer F.SilkS) (width 0.15))
(fp_line (start -1.55 -2.54) (end -1.55 -4.09) (layer F.SilkS) (width 0.15))
(fp_line (start -1.55 -4.09) (end 1.55 -4.09) (layer F.SilkS) (width 0.15))
(pad 1 thru_hole rect (at 0 -2.54 90) (size 1.45 1.45) (drill 0.9) (layers *.Cu *.Mask F.SilkS)
(net 25 "/EEPROM Header CIrcuit/0.SD7"))
(pad 2 thru_hole oval (at 0 0 90) (size 1.45 1.45) (drill 0.9) (layers *.Cu *.Mask F.SilkS)
(net 26 "/EEPROM Header CIrcuit/0.SC7"))
(pad 3 thru_hole oval (at 0 2.54 90) (size 1.45 1.45) (drill 0.9) (layers *.Cu *.Mask F.SilkS)
(net 2 GND))
(model Pin_Headers.3dshapes/Pin_Header_Straight_1x03.wrl
(at (xyz 0 -0.1 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 90))
)
)
(module _Connector:0.100_1x3_small (layer F.Cu) (tedit 5B95C29B) (tstamp 5B958859)
(at 134.747 93.98 90)
(descr "Through hole pin header")
(tags "pin header")
(path /5B3A2134/5B95D1DE)
(fp_text reference J9 (at 0 -5.44 90) (layer F.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 22-27-2031 (at 0 5.56 90) (layer F.Fab) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -1.75 -4.29) (end -1.75 4.31) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.75 -4.29) (end 1.75 4.31) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.75 -4.29) (end 1.75 -4.29) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.75 4.31) (end 1.75 4.31) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.27 -1.27) (end -1.27 3.81) (layer F.SilkS) (width 0.15))
(fp_line (start -1.27 3.81) (end 1.27 3.81) (layer F.SilkS) (width 0.15))
(fp_line (start 1.27 3.81) (end 1.27 -1.27) (layer F.SilkS) (width 0.15))
(fp_line (start 1.55 -4.09) (end 1.55 -2.54) (layer F.SilkS) (width 0.15))
(fp_line (start 1.27 -1.27) (end -1.27 -1.27) (layer F.SilkS) (width 0.15))
(fp_line (start -1.55 -2.54) (end -1.55 -4.09) (layer F.SilkS) (width 0.15))
(fp_line (start -1.55 -4.09) (end 1.55 -4.09) (layer F.SilkS) (width 0.15))
(pad 1 thru_hole rect (at 0 -2.54 90) (size 1.45 1.45) (drill 0.9) (layers *.Cu *.Mask F.SilkS)
(net 27 "/EEPROM Header CIrcuit/1.SD0"))
(pad 2 thru_hole oval (at 0 0 90) (size 1.45 1.45) (drill 0.9) (layers *.Cu *.Mask F.SilkS)
(net 28 "/EEPROM Header CIrcuit/1.SC0"))
(pad 3 thru_hole oval (at 0 2.54 90) (size 1.45 1.45) (drill 0.9) (layers *.Cu *.Mask F.SilkS)
(net 2 GND))
(model Pin_Headers.3dshapes/Pin_Header_Straight_1x03.wrl
(at (xyz 0 -0.1 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 90))
)
)
(module _Connector:0.100_1x3_small (layer F.Cu) (tedit 5B95C2AA) (tstamp 5B958860)
(at 134.747 96.52 90)
(descr "Through hole pin header")
(tags "pin header")
(path /5B3A2134/5B95D1E4)
(fp_text reference J10 (at 0 -5.44 90) (layer F.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 22-27-2031 (at 0 5.56 90) (layer F.Fab) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -1.75 -4.29) (end -1.75 4.31) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.75 -4.29) (end 1.75 4.31) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.75 -4.29) (end 1.75 -4.29) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.75 4.31) (end 1.75 4.31) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.27 -1.27) (end -1.27 3.81) (layer F.SilkS) (width 0.15))
(fp_line (start -1.27 3.81) (end 1.27 3.81) (layer F.SilkS) (width 0.15))
(fp_line (start 1.27 3.81) (end 1.27 -1.27) (layer F.SilkS) (width 0.15))
(fp_line (start 1.55 -4.09) (end 1.55 -2.54) (layer F.SilkS) (width 0.15))
(fp_line (start 1.27 -1.27) (end -1.27 -1.27) (layer F.SilkS) (width 0.15))
(fp_line (start -1.55 -2.54) (end -1.55 -4.09) (layer F.SilkS) (width 0.15))
(fp_line (start -1.55 -4.09) (end 1.55 -4.09) (layer F.SilkS) (width 0.15))
(pad 1 thru_hole rect (at 0 -2.54 90) (size 1.45 1.45) (drill 0.9) (layers *.Cu *.Mask F.SilkS)
(net 29 "/EEPROM Header CIrcuit/1.SD1"))
(pad 2 thru_hole oval (at 0 0 90) (size 1.45 1.45) (drill 0.9) (layers *.Cu *.Mask F.SilkS)
(net 30 "/EEPROM Header CIrcuit/1.SC1"))
(pad 3 thru_hole oval (at 0 2.54 90) (size 1.45 1.45) (drill 0.9) (layers *.Cu *.Mask F.SilkS)
(net 2 GND))
(model Pin_Headers.3dshapes/Pin_Header_Straight_1x03.wrl
(at (xyz 0 -0.1 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 90))
)
)
(module _Connector:0.100_1x3_small (layer F.Cu) (tedit 5B95C2AF) (tstamp 5B958867)
(at 134.747 99.06 90)
(descr "Through hole pin header")
(tags "pin header")
(path /5B3A2134/5B95D23E)
(fp_text reference J11 (at 0 -5.44 90) (layer F.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 22-27-2031 (at 0 5.56 90) (layer F.Fab) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -1.75 -4.29) (end -1.75 4.31) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.75 -4.29) (end 1.75 4.31) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.75 -4.29) (end 1.75 -4.29) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.75 4.31) (end 1.75 4.31) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.27 -1.27) (end -1.27 3.81) (layer F.SilkS) (width 0.15))
(fp_line (start -1.27 3.81) (end 1.27 3.81) (layer F.SilkS) (width 0.15))
(fp_line (start 1.27 3.81) (end 1.27 -1.27) (layer F.SilkS) (width 0.15))
(fp_line (start 1.55 -4.09) (end 1.55 -2.54) (layer F.SilkS) (width 0.15))
(fp_line (start 1.27 -1.27) (end -1.27 -1.27) (layer F.SilkS) (width 0.15))
(fp_line (start -1.55 -2.54) (end -1.55 -4.09) (layer F.SilkS) (width 0.15))
(fp_line (start -1.55 -4.09) (end 1.55 -4.09) (layer F.SilkS) (width 0.15))
(pad 1 thru_hole rect (at 0 -2.54 90) (size 1.45 1.45) (drill 0.9) (layers *.Cu *.Mask F.SilkS)
(net 31 "/EEPROM Header CIrcuit/1.SD2"))
(pad 2 thru_hole oval (at 0 0 90) (size 1.45 1.45) (drill 0.9) (layers *.Cu *.Mask F.SilkS)
(net 32 "/EEPROM Header CIrcuit/1.SC2"))
(pad 3 thru_hole oval (at 0 2.54 90) (size 1.45 1.45) (drill 0.9) (layers *.Cu *.Mask F.SilkS)
(net 2 GND))
(model Pin_Headers.3dshapes/Pin_Header_Straight_1x03.wrl
(at (xyz 0 -0.1 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 90))
)
)
(module _Connector:0.100_1x3_small (layer F.Cu) (tedit 5B95C2B3) (tstamp 5B95886E)
(at 134.747 101.6 90)
(descr "Through hole pin header")
(tags "pin header")
(path /5B3A2134/5B95D244)
(fp_text reference J12 (at 0 -5.44 90) (layer F.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 22-27-2031 (at 0 5.56 90) (layer F.Fab) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -1.75 -4.29) (end -1.75 4.31) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.75 -4.29) (end 1.75 4.31) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.75 -4.29) (end 1.75 -4.29) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.75 4.31) (end 1.75 4.31) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.27 -1.27) (end -1.27 3.81) (layer F.SilkS) (width 0.15))
(fp_line (start -1.27 3.81) (end 1.27 3.81) (layer F.SilkS) (width 0.15))
(fp_line (start 1.27 3.81) (end 1.27 -1.27) (layer F.SilkS) (width 0.15))
(fp_line (start 1.55 -4.09) (end 1.55 -2.54) (layer F.SilkS) (width 0.15))
(fp_line (start 1.27 -1.27) (end -1.27 -1.27) (layer F.SilkS) (width 0.15))
(fp_line (start -1.55 -2.54) (end -1.55 -4.09) (layer F.SilkS) (width 0.15))
(fp_line (start -1.55 -4.09) (end 1.55 -4.09) (layer F.SilkS) (width 0.15))
(pad 1 thru_hole rect (at 0 -2.54 90) (size 1.45 1.45) (drill 0.9) (layers *.Cu *.Mask F.SilkS)
(net 33 "/EEPROM Header CIrcuit/1.SD3"))
(pad 2 thru_hole oval (at 0 0 90) (size 1.45 1.45) (drill 0.9) (layers *.Cu *.Mask F.SilkS)
(net 34 "/EEPROM Header CIrcuit/1.SC3"))
(pad 3 thru_hole oval (at 0 2.54 90) (size 1.45 1.45) (drill 0.9) (layers *.Cu *.Mask F.SilkS)
(net 2 GND))
(model Pin_Headers.3dshapes/Pin_Header_Straight_1x03.wrl
(at (xyz 0 -0.1 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 90))
)
)
(module _Connector:0.100_1x3_small (layer F.Cu) (tedit 5B95C2E0) (tstamp 5B958875)
(at 156.718 101.6 90)
(descr "Through hole pin header")
(tags "pin header")
(path /5B3A2134/5B95D24A)
(fp_text reference J13 (at 0 -5.44 90) (layer F.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 22-27-2031 (at 0 5.56 90) (layer F.Fab) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -1.75 -4.29) (end -1.75 4.31) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.75 -4.29) (end 1.75 4.31) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.75 -4.29) (end 1.75 -4.29) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.75 4.31) (end 1.75 4.31) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.27 -1.27) (end -1.27 3.81) (layer F.SilkS) (width 0.15))
(fp_line (start -1.27 3.81) (end 1.27 3.81) (layer F.SilkS) (width 0.15))
(fp_line (start 1.27 3.81) (end 1.27 -1.27) (layer F.SilkS) (width 0.15))
(fp_line (start 1.55 -4.09) (end 1.55 -2.54) (layer F.SilkS) (width 0.15))
(fp_line (start 1.27 -1.27) (end -1.27 -1.27) (layer F.SilkS) (width 0.15))
(fp_line (start -1.55 -2.54) (end -1.55 -4.09) (layer F.SilkS) (width 0.15))
(fp_line (start -1.55 -4.09) (end 1.55 -4.09) (layer F.SilkS) (width 0.15))
(pad 1 thru_hole rect (at 0 -2.54 90) (size 1.45 1.45) (drill 0.9) (layers *.Cu *.Mask F.SilkS)
(net 35 "/EEPROM Header CIrcuit/1.SD4"))
(pad 2 thru_hole oval (at 0 0 90) (size 1.45 1.45) (drill 0.9) (layers *.Cu *.Mask F.SilkS)
(net 36 "/EEPROM Header CIrcuit/1.SC4"))
(pad 3 thru_hole oval (at 0 2.54 90) (size 1.45 1.45) (drill 0.9) (layers *.Cu *.Mask F.SilkS)
(net 2 GND))
(model Pin_Headers.3dshapes/Pin_Header_Straight_1x03.wrl
(at (xyz 0 -0.1 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 90))
)
)
(module _Connector:0.100_1x3_small (layer F.Cu) (tedit 5B95C2DC) (tstamp 5B95887C)
(at 156.718 99.06 90)
(descr "Through hole pin header")
(tags "pin header")
(path /5B3A2134/5B95D250)
(fp_text reference J14 (at 0 -5.44 90) (layer F.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 22-27-2031 (at 0 5.56 90) (layer F.Fab) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -1.75 -4.29) (end -1.75 4.31) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.75 -4.29) (end 1.75 4.31) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.75 -4.29) (end 1.75 -4.29) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.75 4.31) (end 1.75 4.31) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.27 -1.27) (end -1.27 3.81) (layer F.SilkS) (width 0.15))
(fp_line (start -1.27 3.81) (end 1.27 3.81) (layer F.SilkS) (width 0.15))
(fp_line (start 1.27 3.81) (end 1.27 -1.27) (layer F.SilkS) (width 0.15))
(fp_line (start 1.55 -4.09) (end 1.55 -2.54) (layer F.SilkS) (width 0.15))
(fp_line (start 1.27 -1.27) (end -1.27 -1.27) (layer F.SilkS) (width 0.15))
(fp_line (start -1.55 -2.54) (end -1.55 -4.09) (layer F.SilkS) (width 0.15))
(fp_line (start -1.55 -4.09) (end 1.55 -4.09) (layer F.SilkS) (width 0.15))
(pad 1 thru_hole rect (at 0 -2.54 90) (size 1.45 1.45) (drill 0.9) (layers *.Cu *.Mask F.SilkS)
(net 37 "/EEPROM Header CIrcuit/1.SD5"))
(pad 2 thru_hole oval (at 0 0 90) (size 1.45 1.45) (drill 0.9) (layers *.Cu *.Mask F.SilkS)
(net 38 "/EEPROM Header CIrcuit/1.SC5"))
(pad 3 thru_hole oval (at 0 2.54 90) (size 1.45 1.45) (drill 0.9) (layers *.Cu *.Mask F.SilkS)
(net 2 GND))
(model Pin_Headers.3dshapes/Pin_Header_Straight_1x03.wrl
(at (xyz 0 -0.1 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 90))
)
)
(module _Connector:0.100_1x3_small (layer F.Cu) (tedit 5B95C2D8) (tstamp 5B958883)
(at 156.718 96.52 90)
(descr "Through hole pin header")
(tags "pin header")
(path /5B3A2134/5B95D256)
(fp_text reference J15 (at 0 -5.44 90) (layer F.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 22-27-2031 (at 0 5.56 90) (layer F.Fab) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -1.75 -4.29) (end -1.75 4.31) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.75 -4.29) (end 1.75 4.31) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.75 -4.29) (end 1.75 -4.29) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.75 4.31) (end 1.75 4.31) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.27 -1.27) (end -1.27 3.81) (layer F.SilkS) (width 0.15))
(fp_line (start -1.27 3.81) (end 1.27 3.81) (layer F.SilkS) (width 0.15))
(fp_line (start 1.27 3.81) (end 1.27 -1.27) (layer F.SilkS) (width 0.15))
(fp_line (start 1.55 -4.09) (end 1.55 -2.54) (layer F.SilkS) (width 0.15))
(fp_line (start 1.27 -1.27) (end -1.27 -1.27) (layer F.SilkS) (width 0.15))
(fp_line (start -1.55 -2.54) (end -1.55 -4.09) (layer F.SilkS) (width 0.15))
(fp_line (start -1.55 -4.09) (end 1.55 -4.09) (layer F.SilkS) (width 0.15))
(pad 1 thru_hole rect (at 0 -2.54 90) (size 1.45 1.45) (drill 0.9) (layers *.Cu *.Mask F.SilkS)
(net 39 "/EEPROM Header CIrcuit/1.SD6"))
(pad 2 thru_hole oval (at 0 0 90) (size 1.45 1.45) (drill 0.9) (layers *.Cu *.Mask F.SilkS)
(net 40 "/EEPROM Header CIrcuit/1.SC6"))
(pad 3 thru_hole oval (at 0 2.54 90) (size 1.45 1.45) (drill 0.9) (layers *.Cu *.Mask F.SilkS)
(net 2 GND))
(model Pin_Headers.3dshapes/Pin_Header_Straight_1x03.wrl
(at (xyz 0 -0.1 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 90))
)
)
(module _Connector:0.100_1x3_small (layer F.Cu) (tedit 5B95C2D3) (tstamp 5B95888A)
(at 156.718 93.98 90)
(descr "Through hole pin header")
(tags "pin header")
(path /5B3A2134/5B95D25C)
(fp_text reference J16 (at 0 -5.44 90) (layer F.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 22-27-2031 (at 0 5.56 90) (layer F.Fab) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -1.75 -4.29) (end -1.75 4.31) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.75 -4.29) (end 1.75 4.31) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.75 -4.29) (end 1.75 -4.29) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.75 4.31) (end 1.75 4.31) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.27 -1.27) (end -1.27 3.81) (layer F.SilkS) (width 0.15))
(fp_line (start -1.27 3.81) (end 1.27 3.81) (layer F.SilkS) (width 0.15))
(fp_line (start 1.27 3.81) (end 1.27 -1.27) (layer F.SilkS) (width 0.15))
(fp_line (start 1.55 -4.09) (end 1.55 -2.54) (layer F.SilkS) (width 0.15))
(fp_line (start 1.27 -1.27) (end -1.27 -1.27) (layer F.SilkS) (width 0.15))
(fp_line (start -1.55 -2.54) (end -1.55 -4.09) (layer F.SilkS) (width 0.15))
(fp_line (start -1.55 -4.09) (end 1.55 -4.09) (layer F.SilkS) (width 0.15))
(pad 1 thru_hole rect (at 0 -2.54 90) (size 1.45 1.45) (drill 0.9) (layers *.Cu *.Mask F.SilkS)