-
Notifications
You must be signed in to change notification settings - Fork 0
/
EEPROM-Header.net
980 lines (980 loc) · 35.9 KB
/
EEPROM-Header.net
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
(export (version D)
(design
(source /Users/Alden/Projects/proj107_EEPROMheader/gQuintic-EEPROM-Header/EEPROM-Header.sch)
(date "Monday, September 10, 2018 'AMt' 08:59:15 AM")
(tool "Eeschema 4.0.2-stable")
(sheet (number 1) (name /) (tstamps /)
(title_block
(title "EEPROM Expansion Header")
(company Synthetos)
(rev revB)
(date 9-Sep-2018)
(source EEPROM-Header.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 2) (name "/EEPROM Header CIrcuit/") (tstamps /5B3A2134/)
(title_block
(title "EEPROM / I2C Expansion Header")
(company Synthetos)
(rev revB)
(date 9-Sep-2018)
(source EEPROM-Header-ckt.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value "")))))
(components
(comp (ref P1)
(value CONN_02X05)
(footprint _Connector:0.100_2x5_small)
(libsource (lib conn) (part CONN_02X05))
(sheetpath (names "/EEPROM Header CIrcuit/") (tstamps /5B3A2134/))
(tstamp 5B3A21C8))
(comp (ref U3)
(value 24C512)
(footprint Housings_SSOP:TSSOP-8_4.4x3mm_Pitch0.65mm)
(libsource (lib memory) (part 24C512))
(sheetpath (names "/EEPROM Header CIrcuit/") (tstamps /5B3A2134/))
(tstamp 5B3A39D3))
(comp (ref R33)
(value np)
(footprint _Passive:R_0402)
(libsource (lib device) (part R))
(sheetpath (names "/EEPROM Header CIrcuit/") (tstamps /5B3A2134/))
(tstamp 5B3A3F58))
(comp (ref R34)
(value np)
(footprint _Passive:R_0402)
(libsource (lib device) (part R))
(sheetpath (names "/EEPROM Header CIrcuit/") (tstamps /5B3A2134/))
(tstamp 5B3A4158))
(comp (ref TT5)
(value WP)
(footprint _Connector:Test_Point_SMD_0.040_Top)
(libsource (lib _Connector) (part TP_Top))
(sheetpath (names "/EEPROM Header CIrcuit/") (tstamps /5B3A2134/))
(tstamp 5B3A4926))
(comp (ref C3)
(value 0.1uF)
(footprint _Passive:C_0402)
(libsource (lib device) (part C))
(sheetpath (names "/EEPROM Header CIrcuit/") (tstamps /5B3A2134/))
(tstamp 5B3A4B07))
(comp (ref FID1)
(value Fiducial_Top)
(footprint _Connector:Fiducial_0.040_Top)
(libsource (lib _Connector) (part Fiducial_Top))
(sheetpath (names "/EEPROM Header CIrcuit/") (tstamps /5B3A2134/))
(tstamp 5B3A6568))
(comp (ref FID2)
(value Fiducial_Top)
(footprint _Connector:Fiducial_0.040_Top)
(libsource (lib _Connector) (part Fiducial_Top))
(sheetpath (names "/EEPROM Header CIrcuit/") (tstamps /5B3A2134/))
(tstamp 5B3A65C0))
(comp (ref FID3)
(value Fiducial_Top)
(footprint _Connector:Fiducial_0.040_Top)
(libsource (lib _Connector) (part Fiducial_Top))
(sheetpath (names "/EEPROM Header CIrcuit/") (tstamps /5B3A2134/))
(tstamp 5B3A6619))
(comp (ref JP7)
(value A0)
(footprint Sparkfun-Jumpers:SMT-JUMPER_2_NO_SILK)
(fields
(field (name PROD_ID) XXX-00000))
(libsource (lib SparkFun-Jumpers) (part JUMPER-SMT_2_NO))
(sheetpath (names "/EEPROM Header CIrcuit/") (tstamps /5B3A2134/))
(tstamp 5B3AC030))
(comp (ref JP8)
(value A1)
(footprint Sparkfun-Jumpers:SMT-JUMPER_2_NO_SILK)
(fields
(field (name PROD_ID) XXX-00000))
(libsource (lib SparkFun-Jumpers) (part JUMPER-SMT_2_NO))
(sheetpath (names "/EEPROM Header CIrcuit/") (tstamps /5B3A2134/))
(tstamp 5B3AC0B7))
(comp (ref JP9)
(value A2)
(footprint Sparkfun-Jumpers:SMT-JUMPER_2_NO_SILK)
(fields
(field (name PROD_ID) XXX-00000))
(libsource (lib SparkFun-Jumpers) (part JUMPER-SMT_2_NO))
(sheetpath (names "/EEPROM Header CIrcuit/") (tstamps /5B3A2134/))
(tstamp 5B3AC12B))
(comp (ref U1)
(value TCA9548APWR)
(footprint _Active:SOP65P640X110-24N)
(datasheet Unavailable)
(fields
(field (name Field4) None)
(field (name Field5) "TSSOP-24 Texas Instruments")
(field (name Field6) TCA9548APWR)
(field (name Field7) "Low-Voltage 8-Channel I2C Switch With Reset 24-TSSOP -40 to 85")
(field (name Field8) "Texas Instruments"))
(libsource (lib _Active) (part TCA9548APWR))
(sheetpath (names "/EEPROM Header CIrcuit/") (tstamps /5B3A2134/))
(tstamp 5B956C43))
(comp (ref JP10)
(value A0)
(footprint Sparkfun-Jumpers:SMT-JUMPER_2_NO_SILK)
(fields
(field (name PROD_ID) XXX-00000))
(libsource (lib SparkFun-Jumpers) (part JUMPER-SMT_2_NO))
(sheetpath (names "/EEPROM Header CIrcuit/") (tstamps /5B3A2134/))
(tstamp 5B9581E9))
(comp (ref R1)
(value 4.7K)
(footprint _Passive:R_0402)
(libsource (lib device) (part R))
(sheetpath (names "/EEPROM Header CIrcuit/") (tstamps /5B3A2134/))
(tstamp 5B95894A))
(comp (ref R3)
(value 4.7K)
(footprint _Passive:R_0402)
(libsource (lib device) (part R))
(sheetpath (names "/EEPROM Header CIrcuit/") (tstamps /5B3A2134/))
(tstamp 5B958D17))
(comp (ref J1)
(value 22-27-2031)
(footprint _Connector:0.100_1x3_small)
(libsource (lib _Connector) (part 22-27-2031))
(sheetpath (names "/EEPROM Header CIrcuit/") (tstamps /5B3A2134/))
(tstamp 5B958D7D))
(comp (ref J2)
(value 22-27-2031)
(footprint _Connector:0.100_1x3_small)
(libsource (lib _Connector) (part 22-27-2031))
(sheetpath (names "/EEPROM Header CIrcuit/") (tstamps /5B3A2134/))
(tstamp 5B95918B))
(comp (ref R5)
(value 4.7K)
(footprint _Passive:R_0402)
(libsource (lib device) (part R))
(sheetpath (names "/EEPROM Header CIrcuit/") (tstamps /5B3A2134/))
(tstamp 5B9597BA))
(comp (ref R7)
(value 4.7K)
(footprint _Passive:R_0402)
(libsource (lib device) (part R))
(sheetpath (names "/EEPROM Header CIrcuit/") (tstamps /5B3A2134/))
(tstamp 5B959846))
(comp (ref R9)
(value 4.7K)
(footprint _Passive:R_0402)
(libsource (lib device) (part R))
(sheetpath (names "/EEPROM Header CIrcuit/") (tstamps /5B3A2134/))
(tstamp 5B9598AA))
(comp (ref R11)
(value 4.7K)
(footprint _Passive:R_0402)
(libsource (lib device) (part R))
(sheetpath (names "/EEPROM Header CIrcuit/") (tstamps /5B3A2134/))
(tstamp 5B959907))
(comp (ref R13)
(value 4.7K)
(footprint _Passive:R_0402)
(libsource (lib device) (part R))
(sheetpath (names "/EEPROM Header CIrcuit/") (tstamps /5B3A2134/))
(tstamp 5B959968))
(comp (ref R15)
(value 4.7K)
(footprint _Passive:R_0402)
(libsource (lib device) (part R))
(sheetpath (names "/EEPROM Header CIrcuit/") (tstamps /5B3A2134/))
(tstamp 5B9599CB))
(comp (ref R17)
(value 4.7K)
(footprint _Passive:R_0402)
(libsource (lib device) (part R))
(sheetpath (names "/EEPROM Header CIrcuit/") (tstamps /5B3A2134/))
(tstamp 5B959A32))
(comp (ref R19)
(value 4.7K)
(footprint _Passive:R_0402)
(libsource (lib device) (part R))
(sheetpath (names "/EEPROM Header CIrcuit/") (tstamps /5B3A2134/))
(tstamp 5B959A9C))
(comp (ref R21)
(value 4.7K)
(footprint _Passive:R_0402)
(libsource (lib device) (part R))
(sheetpath (names "/EEPROM Header CIrcuit/") (tstamps /5B3A2134/))
(tstamp 5B959B09))
(comp (ref R23)
(value 4.7K)
(footprint _Passive:R_0402)
(libsource (lib device) (part R))
(sheetpath (names "/EEPROM Header CIrcuit/") (tstamps /5B3A2134/))
(tstamp 5B959B7A))
(comp (ref R25)
(value 4.7K)
(footprint _Passive:R_0402)
(libsource (lib device) (part R))
(sheetpath (names "/EEPROM Header CIrcuit/") (tstamps /5B3A2134/))
(tstamp 5B959BED))
(comp (ref R27)
(value 4.7K)
(footprint _Passive:R_0402)
(libsource (lib device) (part R))
(sheetpath (names "/EEPROM Header CIrcuit/") (tstamps /5B3A2134/))
(tstamp 5B959C61))
(comp (ref R29)
(value 4.7K)
(footprint _Passive:R_0402)
(libsource (lib device) (part R))
(sheetpath (names "/EEPROM Header CIrcuit/") (tstamps /5B3A2134/))
(tstamp 5B959CD8))
(comp (ref R31)
(value 4.7K)
(footprint _Passive:R_0402)
(libsource (lib device) (part R))
(sheetpath (names "/EEPROM Header CIrcuit/") (tstamps /5B3A2134/))
(tstamp 5B959D54))
(comp (ref J3)
(value 22-27-2031)
(footprint _Connector:0.100_1x3_small)
(libsource (lib _Connector) (part 22-27-2031))
(sheetpath (names "/EEPROM Header CIrcuit/") (tstamps /5B3A2134/))
(tstamp 5B959EC2))
(comp (ref J4)
(value 22-27-2031)
(footprint _Connector:0.100_1x3_small)
(libsource (lib _Connector) (part 22-27-2031))
(sheetpath (names "/EEPROM Header CIrcuit/") (tstamps /5B3A2134/))
(tstamp 5B959F48))
(comp (ref J5)
(value 22-27-2031)
(footprint _Connector:0.100_1x3_small)
(libsource (lib _Connector) (part 22-27-2031))
(sheetpath (names "/EEPROM Header CIrcuit/") (tstamps /5B3A2134/))
(tstamp 5B959FCF))
(comp (ref J6)
(value 22-27-2031)
(footprint _Connector:0.100_1x3_small)
(libsource (lib _Connector) (part 22-27-2031))
(sheetpath (names "/EEPROM Header CIrcuit/") (tstamps /5B3A2134/))
(tstamp 5B95A059))
(comp (ref J7)
(value 22-27-2031)
(footprint _Connector:0.100_1x3_small)
(libsource (lib _Connector) (part 22-27-2031))
(sheetpath (names "/EEPROM Header CIrcuit/") (tstamps /5B3A2134/))
(tstamp 5B95A0E5))
(comp (ref J8)
(value 22-27-2031)
(footprint _Connector:0.100_1x3_small)
(libsource (lib _Connector) (part 22-27-2031))
(sheetpath (names "/EEPROM Header CIrcuit/") (tstamps /5B3A2134/))
(tstamp 5B95A176))
(comp (ref U2)
(value TCA9548APWR)
(footprint _Active:SOP65P640X110-24N)
(datasheet Unavailable)
(fields
(field (name Field4) None)
(field (name Field5) "TSSOP-24 Texas Instruments")
(field (name Field6) TCA9548APWR)
(field (name Field7) "Low-Voltage 8-Channel I2C Switch With Reset 24-TSSOP -40 to 85")
(field (name Field8) "Texas Instruments"))
(libsource (lib _Active) (part TCA9548APWR))
(sheetpath (names "/EEPROM Header CIrcuit/") (tstamps /5B3A2134/))
(tstamp 5B95D1AE))
(comp (ref R2)
(value 4.7K)
(footprint _Passive:R_0402)
(libsource (lib device) (part R))
(sheetpath (names "/EEPROM Header CIrcuit/") (tstamps /5B3A2134/))
(tstamp 5B95D1D2))
(comp (ref R4)
(value 4.7K)
(footprint _Passive:R_0402)
(libsource (lib device) (part R))
(sheetpath (names "/EEPROM Header CIrcuit/") (tstamps /5B3A2134/))
(tstamp 5B95D1D8))
(comp (ref J9)
(value 22-27-2031)
(footprint _Connector:0.100_1x3_small)
(libsource (lib _Connector) (part 22-27-2031))
(sheetpath (names "/EEPROM Header CIrcuit/") (tstamps /5B3A2134/))
(tstamp 5B95D1DE))
(comp (ref J10)
(value 22-27-2031)
(footprint _Connector:0.100_1x3_small)
(libsource (lib _Connector) (part 22-27-2031))
(sheetpath (names "/EEPROM Header CIrcuit/") (tstamps /5B3A2134/))
(tstamp 5B95D1E4))
(comp (ref R6)
(value 4.7K)
(footprint _Passive:R_0402)
(libsource (lib device) (part R))
(sheetpath (names "/EEPROM Header CIrcuit/") (tstamps /5B3A2134/))
(tstamp 5B95D1EA))
(comp (ref R8)
(value 4.7K)
(footprint _Passive:R_0402)
(libsource (lib device) (part R))
(sheetpath (names "/EEPROM Header CIrcuit/") (tstamps /5B3A2134/))
(tstamp 5B95D1F0))
(comp (ref R10)
(value 4.7K)
(footprint _Passive:R_0402)
(libsource (lib device) (part R))
(sheetpath (names "/EEPROM Header CIrcuit/") (tstamps /5B3A2134/))
(tstamp 5B95D1F6))
(comp (ref R12)
(value 4.7K)
(footprint _Passive:R_0402)
(libsource (lib device) (part R))
(sheetpath (names "/EEPROM Header CIrcuit/") (tstamps /5B3A2134/))
(tstamp 5B95D1FC))
(comp (ref R14)
(value 4.7K)
(footprint _Passive:R_0402)
(libsource (lib device) (part R))
(sheetpath (names "/EEPROM Header CIrcuit/") (tstamps /5B3A2134/))
(tstamp 5B95D202))
(comp (ref R16)
(value 4.7K)
(footprint _Passive:R_0402)
(libsource (lib device) (part R))
(sheetpath (names "/EEPROM Header CIrcuit/") (tstamps /5B3A2134/))
(tstamp 5B95D208))
(comp (ref R18)
(value 4.7K)
(footprint _Passive:R_0402)
(libsource (lib device) (part R))
(sheetpath (names "/EEPROM Header CIrcuit/") (tstamps /5B3A2134/))
(tstamp 5B95D20E))
(comp (ref R20)
(value 4.7K)
(footprint _Passive:R_0402)
(libsource (lib device) (part R))
(sheetpath (names "/EEPROM Header CIrcuit/") (tstamps /5B3A2134/))
(tstamp 5B95D214))
(comp (ref R22)
(value 4.7K)
(footprint _Passive:R_0402)
(libsource (lib device) (part R))
(sheetpath (names "/EEPROM Header CIrcuit/") (tstamps /5B3A2134/))
(tstamp 5B95D21A))
(comp (ref R24)
(value 4.7K)
(footprint _Passive:R_0402)
(libsource (lib device) (part R))
(sheetpath (names "/EEPROM Header CIrcuit/") (tstamps /5B3A2134/))
(tstamp 5B95D220))
(comp (ref R26)
(value 4.7K)
(footprint _Passive:R_0402)
(libsource (lib device) (part R))
(sheetpath (names "/EEPROM Header CIrcuit/") (tstamps /5B3A2134/))
(tstamp 5B95D226))
(comp (ref R28)
(value 4.7K)
(footprint _Passive:R_0402)
(libsource (lib device) (part R))
(sheetpath (names "/EEPROM Header CIrcuit/") (tstamps /5B3A2134/))
(tstamp 5B95D22C))
(comp (ref R30)
(value 4.7K)
(footprint _Passive:R_0402)
(libsource (lib device) (part R))
(sheetpath (names "/EEPROM Header CIrcuit/") (tstamps /5B3A2134/))
(tstamp 5B95D232))
(comp (ref R32)
(value 4.7K)
(footprint _Passive:R_0402)
(libsource (lib device) (part R))
(sheetpath (names "/EEPROM Header CIrcuit/") (tstamps /5B3A2134/))
(tstamp 5B95D238))
(comp (ref J11)
(value 22-27-2031)
(footprint _Connector:0.100_1x3_small)
(libsource (lib _Connector) (part 22-27-2031))
(sheetpath (names "/EEPROM Header CIrcuit/") (tstamps /5B3A2134/))
(tstamp 5B95D23E))
(comp (ref J12)
(value 22-27-2031)
(footprint _Connector:0.100_1x3_small)
(libsource (lib _Connector) (part 22-27-2031))
(sheetpath (names "/EEPROM Header CIrcuit/") (tstamps /5B3A2134/))
(tstamp 5B95D244))
(comp (ref J13)
(value 22-27-2031)
(footprint _Connector:0.100_1x3_small)
(libsource (lib _Connector) (part 22-27-2031))
(sheetpath (names "/EEPROM Header CIrcuit/") (tstamps /5B3A2134/))
(tstamp 5B95D24A))
(comp (ref J14)
(value 22-27-2031)
(footprint _Connector:0.100_1x3_small)
(libsource (lib _Connector) (part 22-27-2031))
(sheetpath (names "/EEPROM Header CIrcuit/") (tstamps /5B3A2134/))
(tstamp 5B95D250))
(comp (ref J15)
(value 22-27-2031)
(footprint _Connector:0.100_1x3_small)
(libsource (lib _Connector) (part 22-27-2031))
(sheetpath (names "/EEPROM Header CIrcuit/") (tstamps /5B3A2134/))
(tstamp 5B95D256))
(comp (ref J16)
(value 22-27-2031)
(footprint _Connector:0.100_1x3_small)
(libsource (lib _Connector) (part 22-27-2031))
(sheetpath (names "/EEPROM Header CIrcuit/") (tstamps /5B3A2134/))
(tstamp 5B95D25C))
(comp (ref JP5)
(value JUMPER-SMT_3_NO)
(footprint Sparkfun-Jumpers:SMT-JUMPER_3_NO_NO-SILK)
(fields
(field (name PROD_ID) XXX-00000))
(libsource (lib SparkFun-Jumpers) (part JUMPER-SMT_3_NO))
(sheetpath (names "/EEPROM Header CIrcuit/") (tstamps /5B3A2134/))
(tstamp 5B964145))
(comp (ref JP4)
(value JUMPER-SMT_3_NO)
(footprint Sparkfun-Jumpers:SMT-JUMPER_3_NO_NO-SILK)
(fields
(field (name PROD_ID) XXX-00000))
(libsource (lib SparkFun-Jumpers) (part JUMPER-SMT_3_NO))
(sheetpath (names "/EEPROM Header CIrcuit/") (tstamps /5B3A2134/))
(tstamp 5B964F3B))
(comp (ref JP6)
(value JUMPER-SMT_3_NO)
(footprint Sparkfun-Jumpers:SMT-JUMPER_3_NO_NO-SILK)
(fields
(field (name PROD_ID) XXX-00000))
(libsource (lib SparkFun-Jumpers) (part JUMPER-SMT_3_NO))
(sheetpath (names "/EEPROM Header CIrcuit/") (tstamps /5B3A2134/))
(tstamp 5B96501C))
(comp (ref JP2)
(value JUMPER-SMT_3_NO)
(footprint Sparkfun-Jumpers:SMT-JUMPER_3_NO_NO-SILK)
(fields
(field (name PROD_ID) XXX-00000))
(libsource (lib SparkFun-Jumpers) (part JUMPER-SMT_3_NO))
(sheetpath (names "/EEPROM Header CIrcuit/") (tstamps /5B3A2134/))
(tstamp 5B965E97))
(comp (ref JP1)
(value JUMPER-SMT_3_NO)
(footprint Sparkfun-Jumpers:SMT-JUMPER_3_NO_NO-SILK)
(fields
(field (name PROD_ID) XXX-00000))
(libsource (lib SparkFun-Jumpers) (part JUMPER-SMT_3_NO))
(sheetpath (names "/EEPROM Header CIrcuit/") (tstamps /5B3A2134/))
(tstamp 5B965E9E))
(comp (ref JP3)
(value JUMPER-SMT_3_NO)
(footprint Sparkfun-Jumpers:SMT-JUMPER_3_NO_NO-SILK)
(fields
(field (name PROD_ID) XXX-00000))
(libsource (lib SparkFun-Jumpers) (part JUMPER-SMT_3_NO))
(sheetpath (names "/EEPROM Header CIrcuit/") (tstamps /5B3A2134/))
(tstamp 5B965EA5))
(comp (ref C1)
(value 0.1uF)
(footprint _Passive:C_0402)
(libsource (lib device) (part C))
(sheetpath (names "/EEPROM Header CIrcuit/") (tstamps /5B3A2134/))
(tstamp 5B96E07D))
(comp (ref C2)
(value 0.1uF)
(footprint _Passive:C_0402)
(libsource (lib device) (part C))
(sheetpath (names "/EEPROM Header CIrcuit/") (tstamps /5B3A2134/))
(tstamp 5B96EF74))
(comp (ref P2)
(value CONN_01X01)
(footprint _Connector:0.100_1x1_small)
(libsource (lib conn) (part CONN_01X01))
(sheetpath (names "/EEPROM Header CIrcuit/") (tstamps /5B3A2134/))
(tstamp 5B96FB79))
(comp (ref TT1)
(value SDA)
(footprint _Connector:Test_Point_SMD_0.040_Top)
(libsource (lib _Connector) (part TP_Top))
(sheetpath (names "/EEPROM Header CIrcuit/") (tstamps /5B3A2134/))
(tstamp 5B970B6F))
(comp (ref TT4)
(value SDA)
(footprint _Connector:Test_Point_SMD_0.040_Top)
(libsource (lib _Connector) (part TP_Top))
(sheetpath (names "/EEPROM Header CIrcuit/") (tstamps /5B3A2134/))
(tstamp 5B970EAD))
(comp (ref TT3)
(value 3.3v)
(footprint _Connector:Test_Point_SMD_0.040_Top)
(libsource (lib _Connector) (part TP_Top))
(sheetpath (names "/EEPROM Header CIrcuit/") (tstamps /5B3A2134/))
(tstamp 5B971ABB))
(comp (ref TT2)
(value GND)
(footprint _Connector:Test_Point_SMD_0.040_Top)
(libsource (lib _Connector) (part TP_Top))
(sheetpath (names "/EEPROM Header CIrcuit/") (tstamps /5B3A2134/))
(tstamp 5B971BAE)))
(libparts
(libpart (lib _Connector) (part 22-27-2031)
(description "Connector 01x03")
(footprints
(fp Pin_Header_Straight_1X03)
(fp Pin_Header_Angled_1X03)
(fp Socket_Strip_Straight_1X03)
(fp Socket_Strip_Angled_1X03))
(fields
(field (name Reference) J)
(field (name Value) 22-27-2031))
(pins
(pin (num 1) (name P1) (type passive))
(pin (num 2) (name P2) (type passive))
(pin (num 3) (name P3) (type passive))))
(libpart (lib memory) (part 24C16)
(aliases
(alias 24C512))
(description "I2C Serial EEPROM")
(fields
(field (name Reference) U)
(field (name Value) 24C16))
(pins
(pin (num 1) (name A0) (type input))
(pin (num 2) (name A1) (type input))
(pin (num 3) (name A2) (type input))
(pin (num 4) (name GND) (type power_in))
(pin (num 5) (name SDA) (type BiDi))
(pin (num 6) (name SCL) (type input))
(pin (num 7) (name WP) (type input))
(pin (num 8) (name VCC) (type power_in))))
(libpart (lib device) (part C)
(description "Unpolarized capacitor")
(footprints
(fp C?)
(fp C_????_*)
(fp C_????)
(fp SMD*_c)
(fp Capacitor*))
(fields
(field (name Reference) C)
(field (name Value) C))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib conn) (part CONN_01X01)
(description "Connector 01x01")
(footprints
(fp Pin_Header_Straight_1X01)
(fp Pin_Header_Angled_1X01)
(fp Socket_Strip_Straight_1X01)
(fp Socket_Strip_Angled_1X01))
(fields
(field (name Reference) P)
(field (name Value) CONN_01X01))
(pins
(pin (num 1) (name P1) (type passive))))
(libpart (lib conn) (part CONN_02X05)
(description "Connector 02x05")
(footprints
(fp Pin_Header_Straight_2X05)
(fp Pin_Header_Angled_2X05)
(fp Socket_Strip_Straight_2X05)
(fp Socket_Strip_Angled_2X05))
(fields
(field (name Reference) P)
(field (name Value) CONN_02X05))
(pins
(pin (num 1) (name P1) (type passive))
(pin (num 2) (name P2) (type passive))
(pin (num 3) (name P3) (type passive))
(pin (num 4) (name P4) (type passive))
(pin (num 5) (name P5) (type passive))
(pin (num 6) (name P6) (type passive))
(pin (num 7) (name P7) (type passive))
(pin (num 8) (name P8) (type passive))
(pin (num 9) (name P9) (type passive))
(pin (num 10) (name P10) (type passive))))
(libpart (lib _Connector) (part Fiducial_Top)
(description "Top side fiducial")
(footprints
(fp Fiducial))
(fields
(field (name Reference) FID)
(field (name Value) Fiducial_Top))
(pins
(pin (num 1) (name ~) (type input))))
(libpart (lib SparkFun-Jumpers) (part JUMPER-SMT_2_NO)
(description "Normally open jumper This jumper has two pads in close proximity to each other. Apply solder to close the connection. Round pads are easier to solder for beginners, but are a lot larger. SparkFun Product that uses the round pads:<ul><li><a href=\"https://www.sparkfun.com/products/12781\">SparkFun EL Sequencer</a></li></ul> ")
(footprints
(fp *SMT-JUMPER_2_NO_NO-SILK*)
(fp *SMT-JUMPER_2_NO_NO-SILK_ROUND*)
(fp *SMT-JUMPER_2_NO_SILK*)
(fp *SMT-JUMPER_2_NO_SILK_ROUND*))
(fields
(field (name Reference) JP)
(field (name Value) JUMPER-SMT_2_NO)
(field (name Footprint) SMT-JUMPER_2_NO)
(field (name PROD_ID) XXX-00000))
(pins
(pin (num 1) (name 1) (type passive))
(pin (num 2) (name 2) (type passive))))
(libpart (lib SparkFun-Jumpers) (part JUMPER-SMT_3_NO)
(description "Normally open jumper This jumper has three pads in close proximity to each other. Apply solder to close the connection(s). ")
(footprints
(fp *SMT-JUMPER_3_NO_NO-SILK*)
(fp *SMT-JUMPER_3_NO_SILK*))
(fields
(field (name Reference) JP)
(field (name Value) JUMPER-SMT_3_NO)
(field (name Footprint) SMT-JUMPER_3_NO)
(field (name PROD_ID) XXX-00000))
(pins
(pin (num 1) (name 1) (type passive))
(pin (num 2) (name 2) (type passive))
(pin (num 3) (name 3) (type passive))))
(libpart (lib device) (part R)
(description Resistor)
(footprints
(fp R_*)
(fp Resistor_*))
(fields
(field (name Reference) R)
(field (name Value) R))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib _Active) (part TCA9548APWR)
(fields
(field (name Reference) U)
(field (name Value) TCA9548APWR)
(field (name Footprint) SOP65P640X110-24N)
(field (name Datasheet) Unavailable)
(field (name Field4) None)
(field (name Field5) "TSSOP-24 Texas Instruments")
(field (name Field6) TCA9548APWR)
(field (name Field7) "Low-Voltage 8-Channel I2C Switch With Reset 24-TSSOP -40 to 85")
(field (name Field8) "Texas Instruments"))
(pins
(pin (num 1) (name A0) (type BiDi))
(pin (num 2) (name A1) (type BiDi))
(pin (num 3) (name RESET) (type BiDi))
(pin (num 4) (name SD0) (type BiDi))
(pin (num 5) (name SC0) (type BiDi))
(pin (num 6) (name SD1) (type BiDi))
(pin (num 7) (name SC1) (type BiDi))
(pin (num 8) (name SD2) (type BiDi))
(pin (num 9) (name SC2) (type BiDi))
(pin (num 10) (name SD3) (type BiDi))
(pin (num 11) (name SC3) (type BiDi))
(pin (num 12) (name GND) (type BiDi))
(pin (num 13) (name SD4) (type BiDi))
(pin (num 14) (name SC4) (type BiDi))
(pin (num 15) (name SD5) (type BiDi))
(pin (num 16) (name SC5) (type BiDi))
(pin (num 17) (name SD6) (type BiDi))
(pin (num 18) (name SC6) (type BiDi))
(pin (num 19) (name SD7) (type BiDi))
(pin (num 20) (name SC7) (type BiDi))
(pin (num 21) (name A2) (type BiDi))
(pin (num 22) (name SCL) (type BiDi))
(pin (num 23) (name SDA) (type BiDi))
(pin (num 24) (name VCC) (type BiDi))))
(libpart (lib _Connector) (part TP_Top)
(fields
(field (name Reference) TT)
(field (name Value) TP_Top))
(pins
(pin (num 1) (name TP) (type passive)))))
(libraries
(library (logical SparkFun-Jumpers)
(uri /Users/Alden/Projects/Kicad/SparkFun-KiCad-Libraries/Libraries/SparkFun-Jumpers.lib))
(library (logical memory)
(uri "/Library/Application Support/kicad/library/memory.lib"))
(library (logical device)
(uri "/Library/Application Support/kicad/library/device.lib"))
(library (logical _Connector)
(uri /Users/Alden/Projects/proj107_EEPROMheader/gQuintic-EEPROM-Header/ProjectLibrary/_Connector.lib))
(library (logical conn)
(uri "/Library/Application Support/kicad/library/conn.lib"))
(library (logical _Active)
(uri /Users/Alden/Projects/proj107_EEPROMheader/gQuintic-EEPROM-Header/ProjectLibrary/_Active.lib)))
(nets
(net (code 1) (name GND)
(node (ref U1) (pin 12))
(node (ref U3) (pin 4))
(node (ref P1) (pin 1))
(node (ref C3) (pin 2))
(node (ref J6) (pin 3))
(node (ref J5) (pin 3))
(node (ref J4) (pin 3))
(node (ref J3) (pin 3))
(node (ref J11) (pin 3))
(node (ref J12) (pin 3))
(node (ref J13) (pin 3))
(node (ref J14) (pin 3))
(node (ref J15) (pin 3))
(node (ref J16) (pin 3))
(node (ref JP6) (pin 1))
(node (ref JP4) (pin 1))
(node (ref JP5) (pin 1))
(node (ref JP3) (pin 1))
(node (ref J8) (pin 3))
(node (ref J7) (pin 3))
(node (ref TT2) (pin 1))
(node (ref J2) (pin 3))
(node (ref J1) (pin 3))
(node (ref C1) (pin 2))
(node (ref C2) (pin 2))
(node (ref JP1) (pin 1))
(node (ref JP2) (pin 1))
(node (ref J9) (pin 3))
(node (ref J10) (pin 3))
(node (ref U2) (pin 12)))
(net (code 2) (name "/EEPROM Header CIrcuit/1.SD0")
(node (ref R2) (pin 2))
(node (ref J9) (pin 1))
(node (ref U2) (pin 4)))
(net (code 3) (name "/EEPROM Header CIrcuit/1.SC0")
(node (ref U2) (pin 5))
(node (ref R4) (pin 2))
(node (ref J9) (pin 2)))
(net (code 4) (name "/EEPROM Header CIrcuit/1.SD1")
(node (ref U2) (pin 6))
(node (ref J10) (pin 1))
(node (ref R6) (pin 2)))
(net (code 5) (name "/EEPROM Header CIrcuit/1.SC1")
(node (ref R8) (pin 2))
(node (ref J10) (pin 2))
(node (ref U2) (pin 7)))
(net (code 6) (name "/EEPROM Header CIrcuit/1.SC2")
(node (ref R12) (pin 2))
(node (ref J11) (pin 2))
(node (ref U2) (pin 9)))
(net (code 7) (name "/EEPROM Header CIrcuit/1.SC3")
(node (ref R16) (pin 2))
(node (ref U2) (pin 11))
(node (ref J12) (pin 2)))
(net (code 8) (name "/EEPROM Header CIrcuit/1.SC4")
(node (ref R20) (pin 2))
(node (ref U2) (pin 14))
(node (ref J13) (pin 2)))
(net (code 9) (name "/EEPROM Header CIrcuit/1.SC5")
(node (ref J14) (pin 2))
(node (ref R24) (pin 2))
(node (ref U2) (pin 16)))
(net (code 10) (name "/EEPROM Header CIrcuit/1.SC6")
(node (ref R28) (pin 2))
(node (ref J15) (pin 2))
(node (ref U2) (pin 18)))
(net (code 11) (name "/EEPROM Header CIrcuit/1.SC7")
(node (ref R32) (pin 2))
(node (ref U2) (pin 20))
(node (ref J16) (pin 2)))
(net (code 12) (name "/EEPROM Header CIrcuit/1.SD2")
(node (ref J11) (pin 1))
(node (ref R10) (pin 2))
(node (ref U2) (pin 8)))
(net (code 13) (name "/EEPROM Header CIrcuit/1.SD3")
(node (ref U2) (pin 10))
(node (ref J12) (pin 1))
(node (ref R14) (pin 2)))
(net (code 14) (name ~RESET)
(node (ref JP10) (pin 2))
(node (ref U1) (pin 3))
(node (ref U2) (pin 3))
(node (ref P2) (pin 1)))
(net (code 15) (name "/EEPROM Header CIrcuit/1.SD4")
(node (ref R18) (pin 2))
(node (ref U2) (pin 13))
(node (ref J13) (pin 1)))
(net (code 16) (name "/EEPROM Header CIrcuit/1.SD5")
(node (ref J14) (pin 1))
(node (ref U2) (pin 15))
(node (ref R22) (pin 2)))
(net (code 17) (name "/EEPROM Header CIrcuit/1.SD6")
(node (ref U2) (pin 17))
(node (ref J15) (pin 1))
(node (ref R26) (pin 2)))
(net (code 18) (name "/EEPROM Header CIrcuit/1.SD7")
(node (ref J16) (pin 1))
(node (ref U2) (pin 19))
(node (ref R30) (pin 2)))
(net (code 19) (name "/EEPROM Header CIrcuit/1.A0")
(node (ref JP4) (pin 2))
(node (ref U2) (pin 1)))
(net (code 20) (name "/EEPROM Header CIrcuit/1.A1")
(node (ref U2) (pin 2))
(node (ref JP5) (pin 2)))
(net (code 21) (name "/EEPROM Header CIrcuit/1.A2")
(node (ref U2) (pin 21))
(node (ref JP6) (pin 2)))
(net (code 22) (name "/EEPROM Header CIrcuit/0.A2")
(node (ref U1) (pin 21))
(node (ref JP3) (pin 2)))
(net (code 23) (name "/EEPROM Header CIrcuit/0.A0")
(node (ref JP1) (pin 2))
(node (ref U1) (pin 1)))
(net (code 24) (name "/EEPROM Header CIrcuit/0.SD1")
(node (ref U1) (pin 6))
(node (ref J2) (pin 1))
(node (ref R5) (pin 2)))
(net (code 25) (name "/EEPROM Header CIrcuit/0.SC1")
(node (ref R7) (pin 2))
(node (ref J2) (pin 2))
(node (ref U1) (pin 7)))
(net (code 26) (name "/EEPROM Header CIrcuit/0.SD2")
(node (ref U1) (pin 8))
(node (ref J3) (pin 1))
(node (ref R9) (pin 2)))
(net (code 27) (name "/EEPROM Header CIrcuit/0.SC2")
(node (ref R11) (pin 2))
(node (ref J3) (pin 2))
(node (ref U1) (pin 9)))
(net (code 28) (name "/EEPROM Header CIrcuit/0.SD3")
(node (ref U1) (pin 10))
(node (ref J4) (pin 1))
(node (ref R13) (pin 2)))
(net (code 29) (name "/EEPROM Header CIrcuit/0.SC3")
(node (ref U1) (pin 11))
(node (ref J4) (pin 2))
(node (ref R15) (pin 2)))
(net (code 30) (name "/EEPROM Header CIrcuit/0.SD4")
(node (ref J5) (pin 1))
(node (ref U1) (pin 13))
(node (ref R17) (pin 2)))
(net (code 31) (name "/EEPROM Header CIrcuit/0.SC4")
(node (ref U1) (pin 14))
(node (ref R19) (pin 2))
(node (ref J5) (pin 2)))
(net (code 32) (name "/EEPROM Header CIrcuit/0.SD5")
(node (ref R21) (pin 2))
(node (ref J6) (pin 1))
(node (ref U1) (pin 15)))
(net (code 33) (name "/EEPROM Header CIrcuit/0.SC0")
(node (ref R3) (pin 2))
(node (ref J1) (pin 2))
(node (ref U1) (pin 5)))
(net (code 34) (name SPI_MISO)
(node (ref P1) (pin 7)))
(net (code 35) (name SPI_MOSI)
(node (ref P1) (pin 9)))
(net (code 36) (name SPI_CS2)
(node (ref P1) (pin 6)))
(net (code 37) (name SPI_CLK)
(node (ref P1) (pin 8)))
(net (code 38) (name "/EEPROM Header CIrcuit/0.SD6")
(node (ref J7) (pin 1))
(node (ref R25) (pin 2))
(node (ref U1) (pin 17)))
(net (code 39) (name "/EEPROM Header CIrcuit/0.SC6")
(node (ref J7) (pin 2))
(node (ref U1) (pin 18))
(node (ref R27) (pin 2)))
(net (code 40) (name "/EEPROM Header CIrcuit/0.SD7")
(node (ref J8) (pin 1))
(node (ref U1) (pin 19))
(node (ref R29) (pin 2)))
(net (code 41) (name "/EEPROM Header CIrcuit/0.SC7")
(node (ref R31) (pin 2))
(node (ref U1) (pin 20))
(node (ref J8) (pin 2)))
(net (code 42) (name +3V3)
(node (ref R6) (pin 1))
(node (ref R8) (pin 1))
(node (ref R10) (pin 1))
(node (ref R12) (pin 1))
(node (ref R14) (pin 1))
(node (ref U2) (pin 24))
(node (ref R22) (pin 1))
(node (ref R20) (pin 1))
(node (ref R18) (pin 1))
(node (ref R16) (pin 1))
(node (ref JP6) (pin 3))
(node (ref JP4) (pin 3))
(node (ref R2) (pin 1))
(node (ref R4) (pin 1))
(node (ref JP3) (pin 3))
(node (ref JP5) (pin 3))
(node (ref P1) (pin 5))
(node (ref R1) (pin 1))
(node (ref C1) (pin 1))
(node (ref U3) (pin 8))
(node (ref R23) (pin 1))
(node (ref R21) (pin 1))
(node (ref R19) (pin 1))
(node (ref R17) (pin 1))
(node (ref R15) (pin 1))
(node (ref U1) (pin 24))
(node (ref R13) (pin 1))
(node (ref R11) (pin 1))
(node (ref R9) (pin 1))
(node (ref R7) (pin 1))
(node (ref R25) (pin 1))
(node (ref R27) (pin 1))
(node (ref R29) (pin 1))
(node (ref R31) (pin 1))
(node (ref TT3) (pin 1))
(node (ref R5) (pin 1))
(node (ref R33) (pin 1))
(node (ref R34) (pin 1))
(node (ref C3) (pin 1))
(node (ref R3) (pin 1))
(node (ref C2) (pin 1))
(node (ref JP1) (pin 3))
(node (ref JP2) (pin 3))
(node (ref JP9) (pin 1))
(node (ref R32) (pin 1))
(node (ref R24) (pin 1))
(node (ref R26) (pin 1))
(node (ref R28) (pin 1))
(node (ref JP7) (pin 1))
(node (ref JP8) (pin 1))
(node (ref R30) (pin 1)))
(net (code 43) (name SPI_CS1)
(node (ref P1) (pin 10)))
(net (code 44) (name I2C_SCL)
(node (ref R34) (pin 2))
(node (ref P1) (pin 4))
(node (ref TT4) (pin 1))
(node (ref U1) (pin 22))
(node (ref U3) (pin 6))
(node (ref U2) (pin 22)))
(net (code 45) (name I2C_SDA)
(node (ref P1) (pin 3))
(node (ref R33) (pin 2))
(node (ref U3) (pin 5))
(node (ref U2) (pin 23))
(node (ref TT1) (pin 1))
(node (ref U1) (pin 23)))
(net (code 46) (name "Net-(FID1-Pad1)")
(node (ref FID1) (pin 1)))
(net (code 47) (name "Net-(FID2-Pad1)")
(node (ref FID2) (pin 1)))
(net (code 48) (name "Net-(FID3-Pad1)")
(node (ref FID3) (pin 1)))
(net (code 49) (name "/EEPROM Header CIrcuit/A0")
(node (ref JP7) (pin 2))
(node (ref U3) (pin 1)))
(net (code 50) (name "/EEPROM Header CIrcuit/A1")
(node (ref JP8) (pin 2))
(node (ref U3) (pin 2)))
(net (code 51) (name "/EEPROM Header CIrcuit/WP")
(node (ref TT5) (pin 1))
(node (ref U3) (pin 7)))
(net (code 52) (name "/EEPROM Header CIrcuit/0.A1")
(node (ref U1) (pin 2))
(node (ref JP2) (pin 2)))
(net (code 53) (name "/EEPROM Header CIrcuit/0.SD0")
(node (ref U1) (pin 4))
(node (ref J1) (pin 1))
(node (ref R1) (pin 2)))
(net (code 54) (name "/EEPROM Header CIrcuit/0.SC5")
(node (ref J6) (pin 2))
(node (ref U1) (pin 16))
(node (ref R23) (pin 2)))
(net (code 55) (name "/EEPROM Header CIrcuit/A2")
(node (ref JP9) (pin 2))
(node (ref U3) (pin 3)))
(net (code 56) (name SPI_CS3)
(node (ref JP10) (pin 1))
(node (ref P1) (pin 2)))))