-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTMP76C75T.kicad_pcb
7543 lines (7478 loc) · 586 KB
/
TMP76C75T.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 20211014) (generator pcbnew)
(general
(thickness 1.6)
)
(paper "A4")
(layers
(0 "F.Cu" signal)
(31 "B.Cu" signal)
(32 "B.Adhes" user "B.Adhesive")
(33 "F.Adhes" user "F.Adhesive")
(34 "B.Paste" user)
(35 "F.Paste" user)
(36 "B.SilkS" user "B.Silkscreen")
(37 "F.SilkS" user "F.Silkscreen")
(38 "B.Mask" user)
(39 "F.Mask" user)
(40 "Dwgs.User" user "User.Drawings")
(41 "Cmts.User" user "User.Comments")
(42 "Eco1.User" user "User.Eco1")
(43 "Eco2.User" user "User.Eco2")
(44 "Edge.Cuts" user)
(45 "Margin" user)
(46 "B.CrtYd" user "B.Courtyard")
(47 "F.CrtYd" user "F.Courtyard")
(48 "B.Fab" user)
(49 "F.Fab" user)
)
(setup
(pad_to_mask_clearance 0.051)
(solder_mask_min_width 0.25)
(pcbplotparams
(layerselection 0x00010fc_ffffffff)
(disableapertmacros false)
(usegerberextensions false)
(usegerberattributes false)
(usegerberadvancedattributes false)
(creategerberjobfile false)
(svguseinch false)
(svgprecision 6)
(excludeedgelayer true)
(plotframeref false)
(viasonmask false)
(mode 1)
(useauxorigin false)
(hpglpennumber 1)
(hpglpenspeed 20)
(hpglpendiameter 15.000000)
(dxfpolygonmode true)
(dxfimperialunits true)
(dxfusepcbnewfont true)
(psnegative false)
(psa4output false)
(plotreference true)
(plotvalue true)
(plotinvisibletext false)
(sketchpadsonfab false)
(subtractmaskfromsilk false)
(outputformat 1)
(mirror false)
(drillshape 0)
(scaleselection 1)
(outputdirectory "")
)
)
(net 0 "")
(net 1 "GND")
(net 2 "Net-(D1-Pad2)")
(net 3 "+5V")
(net 4 "/CLK1")
(net 5 "/CLK2")
(net 6 "/AD7")
(net 7 "/AD6")
(net 8 "/AD5")
(net 9 "/AD4")
(net 10 "/AD3")
(net 11 "/AD2")
(net 12 "/AD1")
(net 13 "/AD0")
(net 14 "/A15")
(net 15 "/A14")
(net 16 "/A13")
(net 17 "/A12")
(net 18 "/A11")
(net 19 "/A10")
(net 20 "/A9")
(net 21 "/A8")
(net 22 "unconnected-(U1-Pad7)")
(net 23 "unconnected-(U1-Pad9)")
(net 24 "unconnected-(U1-Pad17)")
(net 25 "unconnected-(U1-Pad26)")
(net 26 "unconnected-(U1-Pad33)")
(net 27 "/A0")
(net 28 "/A1")
(net 29 "/A2")
(net 30 "/A3")
(net 31 "/A4")
(net 32 "/A5")
(net 33 "/A6")
(net 34 "/A7")
(net 35 "unconnected-(U3-Pad19)")
(net 36 "unconnected-(U3-Pad35)")
(net 37 "/E")
(net 38 "/RW")
(net 39 "/AS")
(net 40 "Net-(D0-Pad2)")
(net 41 "Net-(D2-Pad2)")
(net 42 "/VIN")
(net 43 "/RESET")
(net 44 "/TX")
(net 45 "/RX")
(net 46 "/P1.0")
(net 47 "/P1.1")
(net 48 "/P1.2")
(net 49 "/P1.3")
(net 50 "/P1.4")
(net 51 "/P1.5")
(net 52 "/P1.6")
(net 53 "/P1.7")
(net 54 "/P7.7")
(net 55 "/P7.6")
(net 56 "/P7.5")
(net 57 "/P7.4")
(net 58 "/P7.3")
(net 59 "/P7.2")
(net 60 "/P7.1")
(net 61 "/P7.0")
(net 62 "/P6.5")
(net 63 "/P6.4")
(net 64 "/P6.3")
(net 65 "/P6.2")
(net 66 "/P6.1")
(net 67 "/P6.0")
(net 68 "/P5.7")
(net 69 "/P5.6")
(net 70 "/P5.5")
(net 71 "/P5.4")
(net 72 "/P5.3")
(net 73 "/P5.2")
(net 74 "/P5.1")
(net 75 "/P5.0")
(net 76 "/P3.7")
(net 77 "/P3.6")
(net 78 "/P3.5")
(net 79 "/P3.4")
(net 80 "/P3.3")
(net 81 "/P3.2")
(net 82 "/P3.1")
(net 83 "/P3.0")
(net 84 "/P4.7")
(net 85 "/P4.6")
(net 86 "/P4.5")
(net 87 "/P4.4")
(net 88 "/P4.3")
(net 89 "/P4.2")
(net 90 "/P4.1")
(net 91 "/P4.0")
(net 92 "/P2.2")
(net 93 "/P2.1")
(net 94 "/P2.0")
(net 95 "/OE")
(net 96 "/CE")
(net 97 "/AN-")
(net 98 "/VREG")
(net 99 "Net-(D3-Pad2)")
(net 100 "unconnected-(J-PWR3-Pad2)")
(net 101 "unconnected-(J-PWR3-Pad3)")
(net 102 "unconnected-(J-PWR3-Pad4)")
(footprint "Connector_BarrelJack:BarrelJack_CUI_PJ-063AH_Horizontal" (layer "F.Cu")
(tedit 5B0886BD) (tstamp 00000000-0000-0000-0000-000061a839fc)
(at 167.64 130.81)
(descr "Barrel Jack, 2.0mm ID, 5.5mm OD, 24V, 8A, no switch, https://www.cui.com/product/resource/pj-063ah.pdf")
(tags "barrel jack cui dc power")
(property "Sheetfile" "TMP76C75T.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-0000624ebed1")
(attr through_hole)
(fp_text reference "J-PWR1" (at 0 -2.3) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 03f57fb4-32a3-4bc6-85b9-fd8ece4a9592)
)
(fp_text value "Jack-DC" (at 0 13) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b78cb2c1-ae4b-4d9b-acd8-d7fe342342f2)
)
(fp_line (start 5.11 12.11) (end -5.11 12.11) (layer "F.SilkS") (width 0.12) (tstamp 07d160b6-23e1-4aa0-95cb-440482e6fc15))
(fp_line (start -5.11 12.11) (end -5.11 9.05) (layer "F.SilkS") (width 0.12) (tstamp 1e48966e-d29d-4521-8939-ec8ac570431d))
(fp_line (start 5.11 -1.11) (end 5.11 4.95) (layer "F.SilkS") (width 0.12) (tstamp 844d7d7a-b386-45a8-aaf6-bf41bbcb43b5))
(fp_line (start -5.11 -1.11) (end -2.3 -1.11) (layer "F.SilkS") (width 0.12) (tstamp a07b6b2b-7179-4297-b163-5e47ffbe76d3))
(fp_line (start 5.11 9.05) (end 5.11 12.11) (layer "F.SilkS") (width 0.12) (tstamp a62609cd-29b7-4918-b97d-7b2404ba61cf))
(fp_line (start -5.11 4.95) (end -5.11 -1.11) (layer "F.SilkS") (width 0.12) (tstamp d1a9be32-38ba-44e6-bc35-f031541ab1fe))
(fp_line (start -1 -1.3) (end 1 -1.3) (layer "F.SilkS") (width 0.12) (tstamp d692b5e6-71b2-4fa6-bc83-618add8d8fef))
(fp_line (start 2.3 -1.11) (end 5.11 -1.11) (layer "F.SilkS") (width 0.12) (tstamp ebca7c5e-ae52-43e5-ac6c-69a96a9a5b24))
(fp_line (start -6 12.5) (end 6 12.5) (layer "F.CrtYd") (width 0.05) (tstamp 24b72b0d-63b8-4e06-89d0-e94dcf39a600))
(fp_line (start 6 12.5) (end 6 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 4431c0f6-83ea-4eee-95a8-991da2f03ccd))
(fp_line (start 6 -1.5) (end -6 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 90e761f6-1432-4f73-ad28-fa8869b7ec31))
(fp_line (start -6 -1.5) (end -6 12.5) (layer "F.CrtYd") (width 0.05) (tstamp a6738794-75ae-48a6-8949-ed8717400d71))
(fp_line (start 0 0) (end 1 -1) (layer "F.Fab") (width 0.1) (tstamp 05f2859d-2820-4e84-b395-696011feb13b))
(fp_line (start 5 -1) (end 5 12) (layer "F.Fab") (width 0.1) (tstamp 2a1de22d-6451-488d-af77-0bf8841bd695))
(fp_line (start -5 12) (end -5 -1) (layer "F.Fab") (width 0.1) (tstamp 6ac3ab53-7523-4805-bfd2-5de19dff127e))
(fp_line (start -5 -1) (end -1 -1) (layer "F.Fab") (width 0.1) (tstamp 713e0777-58b2-4487-baca-60d0ebed27c3))
(fp_line (start 5 12) (end -5 12) (layer "F.Fab") (width 0.1) (tstamp a8219a78-6b33-4efa-a789-6a67ce8f7a50))
(fp_line (start -1 -1) (end 0 0) (layer "F.Fab") (width 0.1) (tstamp a8fb8ee0-623f-4870-a716-ecc88f37ef9a))
(fp_line (start 1 -1) (end 5 -1) (layer "F.Fab") (width 0.1) (tstamp f3044f68-903d-4063-b253-30d8e3a83eae))
(pad "" np_thru_hole circle locked (at 0 9) (size 1.6 1.6) (drill 1.6) (layers *.Cu *.Mask) (tstamp 576f00e6-a1be-45d3-9b93-e26d9e0fe306))
(pad "1" thru_hole rect locked (at 0 0) (size 4 2) (drill oval 3 1) (layers *.Cu *.Mask)
(net 42 "/VIN") (pintype "passive") (tstamp 901440f4-e2a6-4447-83cc-f58a2b26f5c4))
(pad "2" thru_hole oval locked (at 0 6) (size 3.3 2) (drill oval 2.3 1) (layers *.Cu *.Mask)
(net 1 "GND") (pintype "passive") (tstamp d7e5a060-eb57-4238-9312-26bc885fc97d))
(pad "MP" thru_hole oval locked (at -4.5 7) (size 2 3.5) (drill oval 1 2.5) (layers *.Cu *.Mask) (tstamp a0dee8e6-f88a-4f05-aba0-bab3aafdf2bc))
(pad "MP" thru_hole oval locked (at 4.5 7) (size 2 3.5) (drill oval 1 2.5) (layers *.Cu *.Mask) (tstamp f19c9655-8ddb-411a-96dd-bd986870c3c6))
(model "${KISYS3DMOD}/Connector_BarrelJack.3dshapes/BarrelJack_CUI_PJ-063AH_Horizontal.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_THT:R_Array_SIP9" (layer "F.Cu")
(tedit 5A14249F) (tstamp 00000000-0000-0000-0000-000061a83a9c)
(at 114.3 127 90)
(descr "9-pin Resistor SIP pack")
(tags "R")
(property "Sheetfile" "TMP76C75T.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00006266b56c")
(attr through_hole)
(fp_text reference "RN1" (at 10.16 -2.4 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f66bb685-9833-454c-bf31-b96598f50347)
)
(fp_text value "R_Network08" (at 11.43 2.4 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 56f0a67a-a93a-477a-9778-70fe2cfeeb5a)
)
(fp_text user "${REFERENCE}" (at 10.16 0 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5cc7655c-62f2-43d2-a7a5-eaa4635dada8)
)
(fp_line (start 21.76 -1.4) (end -1.44 -1.4) (layer "F.SilkS") (width 0.12) (tstamp 173fd4a7-b485-4e9d-8724-470865466784))
(fp_line (start 1.27 -1.4) (end 1.27 1.4) (layer "F.SilkS") (width 0.12) (tstamp 1a7e7b16-fc7c-4e64-9ace-48cc78112437))
(fp_line (start -1.44 -1.4) (end -1.44 1.4) (layer "F.SilkS") (width 0.12) (tstamp 5f059fcf-8990-4db3-9058-7f232d9600e1))
(fp_line (start 21.76 1.4) (end 21.76 -1.4) (layer "F.SilkS") (width 0.12) (tstamp 96ee9b8e-4543-4639-b9ea-44b8baaaf94e))
(fp_line (start -1.44 1.4) (end 21.76 1.4) (layer "F.SilkS") (width 0.12) (tstamp bab3431c-ede6-417b-8033-763748a11a9f))
(fp_line (start -1.7 -1.65) (end -1.7 1.65) (layer "F.CrtYd") (width 0.05) (tstamp 26296271-780a-4da9-8e69-910d9240bca1))
(fp_line (start -1.7 1.65) (end 22.05 1.65) (layer "F.CrtYd") (width 0.05) (tstamp 7ac1ccc5-26c5-4b73-8425-7bbec927bf24))
(fp_line (start 22.05 -1.65) (end -1.7 -1.65) (layer "F.CrtYd") (width 0.05) (tstamp a819bf9a-0c8b-443a-b488-e5f1395d77ad))
(fp_line (start 22.05 1.65) (end 22.05 -1.65) (layer "F.CrtYd") (width 0.05) (tstamp e29e8d7d-cee8-47d4-8444-1d7032daf03c))
(fp_line (start -1.29 -1.25) (end -1.29 1.25) (layer "F.Fab") (width 0.1) (tstamp 6a1ae8ee-dea6-4015-b83e-baf8fcdfaf0f))
(fp_line (start 1.27 -1.25) (end 1.27 1.25) (layer "F.Fab") (width 0.1) (tstamp 6a25c4e1-7129-430c-892b-6eecb6ffdb47))
(fp_line (start -1.29 1.25) (end 21.61 1.25) (layer "F.Fab") (width 0.1) (tstamp a08c061a-7f5b-4909-b673-0d0a59a012a3))
(fp_line (start 21.61 -1.25) (end -1.29 -1.25) (layer "F.Fab") (width 0.1) (tstamp d8f24303-7e52-49a9-9e82-8d60c3aaa009))
(fp_line (start 21.61 1.25) (end 21.61 -1.25) (layer "F.Fab") (width 0.1) (tstamp fcb4f52a-a6cb-4ca0-970a-4c8a2c0f3942))
(pad "1" thru_hole rect locked (at 0 0 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 3 "+5V") (pinfunction "common") (pintype "passive") (tstamp d8d71ad3-6fd1-4a98-9c1f-70c4fbf3d1d1))
(pad "2" thru_hole oval locked (at 2.54 0 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 53 "/P1.7") (pinfunction "R1") (pintype "passive") (tstamp 41ab46ed-40f5-461d-81aa-1f02dc069a49))
(pad "3" thru_hole oval locked (at 5.08 0 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 52 "/P1.6") (pinfunction "R2") (pintype "passive") (tstamp b6924901-677d-424a-a3f4-52c8dd1fa5f5))
(pad "4" thru_hole oval locked (at 7.62 0 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 51 "/P1.5") (pinfunction "R3") (pintype "passive") (tstamp 92574e8a-729f-48de-afcb-97b4f5e826f8))
(pad "5" thru_hole oval locked (at 10.16 0 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 50 "/P1.4") (pinfunction "R4") (pintype "passive") (tstamp fe4068b9-89da-4c59-ba51-b5949772f5d8))
(pad "6" thru_hole oval locked (at 12.7 0 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 49 "/P1.3") (pinfunction "R5") (pintype "passive") (tstamp 51f5536d-48d2-4807-be44-93f427952b0e))
(pad "7" thru_hole oval locked (at 15.24 0 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 48 "/P1.2") (pinfunction "R6") (pintype "passive") (tstamp 2bbd6c26-4114-4518-8f4a-c6fdadc046b6))
(pad "8" thru_hole oval locked (at 17.78 0 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 47 "/P1.1") (pinfunction "R7") (pintype "passive") (tstamp 4e7a230a-c1a4-4455-81ee-277835acf4a2))
(pad "9" thru_hole oval locked (at 20.32 0 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 46 "/P1.0") (pinfunction "R8") (pintype "passive") (tstamp 8efe6411-1919-4082-b5b8-393585e068c8))
(model "${KISYS3DMOD}/Resistor_THT.3dshapes/R_Array_SIP9.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_THT:R_Array_SIP5" (layer "F.Cu")
(tedit 5A14249F) (tstamp 00000000-0000-0000-0000-000061a83ab4)
(at 114.3 92.71 -90)
(descr "5-pin Resistor SIP pack")
(tags "R")
(property "Sheetfile" "TMP76C75T.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-0000626739ce")
(attr through_hole)
(fp_text reference "RN2" (at -2.413 0 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 15a5a11b-0ea1-4f6e-b356-cc2d530615ed)
)
(fp_text value "R_Network04_US" (at 5.08 2.54 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8afe1dbf-1187-4362-8af8-a90ca839a6b3)
)
(fp_text user "${REFERENCE}" (at 5.08 0 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 59ee13a4-660e-47e2-a73a-01cfe11439e9)
)
(fp_line (start -1.44 1.4) (end 11.6 1.4) (layer "F.SilkS") (width 0.12) (tstamp 3bb9c3d4-9a6f-41ac-8d1e-92ed4fe334c0))
(fp_line (start 11.6 1.4) (end 11.6 -1.4) (layer "F.SilkS") (width 0.12) (tstamp 45484f82-420e-44d0-a58e-382bb939dac5))
(fp_line (start 11.6 -1.4) (end -1.44 -1.4) (layer "F.SilkS") (width 0.12) (tstamp 97cc05bf-4ed5-449c-b0c8-131e5126a7ac))
(fp_line (start -1.44 -1.4) (end -1.44 1.4) (layer "F.SilkS") (width 0.12) (tstamp d554632b-6dd0-47f8-b59b-3ce25177ca3e))
(fp_line (start 1.27 -1.4) (end 1.27 1.4) (layer "F.SilkS") (width 0.12) (tstamp e6e468d8-2bb7-49d5-a4d0-fde0f6bbe8c6))
(fp_line (start 11.9 1.65) (end 11.9 -1.65) (layer "F.CrtYd") (width 0.05) (tstamp 24a492d9-25a9-4fba-b51b-3effb576b351))
(fp_line (start -1.7 -1.65) (end -1.7 1.65) (layer "F.CrtYd") (width 0.05) (tstamp 665081dc-8354-4d41-8855-bde8901aee4c))
(fp_line (start 11.9 -1.65) (end -1.7 -1.65) (layer "F.CrtYd") (width 0.05) (tstamp c8b93f12-bc5c-4ce5-b954-377d903895f1))
(fp_line (start -1.7 1.65) (end 11.9 1.65) (layer "F.CrtYd") (width 0.05) (tstamp d7df1f01-3f56-437b-a452-e88ad90a9805))
(fp_line (start -1.29 -1.25) (end -1.29 1.25) (layer "F.Fab") (width 0.1) (tstamp 24fd922c-d488-4d61-b6dc-9d3e359ccc82))
(fp_line (start 11.45 -1.25) (end -1.29 -1.25) (layer "F.Fab") (width 0.1) (tstamp 4ef07d45-f940-4cb6-bb96-2ddec13fd099))
(fp_line (start -1.29 1.25) (end 11.45 1.25) (layer "F.Fab") (width 0.1) (tstamp 7ce4aab5-8271-4432-a4b1-bff168293b45))
(fp_line (start 1.27 -1.25) (end 1.27 1.25) (layer "F.Fab") (width 0.1) (tstamp 89fb4a63-a18d-4c7e-be12-f061ef4bf0c0))
(fp_line (start 11.45 1.25) (end 11.45 -1.25) (layer "F.Fab") (width 0.1) (tstamp fe1ad3bd-92cc-4e1c-8cc9-a77278095945))
(pad "1" thru_hole rect locked (at 0 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 3 "+5V") (pinfunction "common") (pintype "passive") (tstamp 50a799a7-f8f3-4f13-9288-b10696e9a7da))
(pad "2" thru_hole oval locked (at 2.54 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 94 "/P2.0") (pinfunction "R1") (pintype "passive") (tstamp 71a9f036-1f13-462e-ac9e-81caaaa7f807))
(pad "3" thru_hole oval locked (at 5.08 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 93 "/P2.1") (pinfunction "R2") (pintype "passive") (tstamp 0f9b475c-adb7-41fc-b827-33d4eaa86b99))
(pad "4" thru_hole oval locked (at 7.62 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 92 "/P2.2") (pinfunction "R3") (pintype "passive") (tstamp 9600911d-0df3-419b-8d4a-8d1432a7daf2))
(pad "5" thru_hole oval locked (at 10.16 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 43 "/RESET") (pinfunction "R4") (pintype "passive") (tstamp ac8576da-4e00-41a0-9609-eb655e96e10b))
(model "${KISYS3DMOD}/Resistor_THT.3dshapes/R_Array_SIP5.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_THT:R_Array_SIP9" (layer "F.Cu")
(tedit 5A14249F) (tstamp 00000000-0000-0000-0000-000061a83ad0)
(at 125.73 92.71)
(descr "9-pin Resistor SIP pack")
(tags "R")
(property "Sheetfile" "TMP76C75T.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00006240aa47")
(attr through_hole)
(fp_text reference "RN3" (at 20.32 -2.54) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 82907d2e-4560-49c2-9cfc-01b127317195)
)
(fp_text value "R_Network08" (at 11.43 2.4) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ab34b936-8ca5-4be1-8599-504cb86609fc)
)
(fp_text user "${REFERENCE}" (at 10.16 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp bc01f3e7-a131-4f66-8abc-cc13e855d5e5)
)
(fp_line (start -1.44 1.4) (end 21.76 1.4) (layer "F.SilkS") (width 0.12) (tstamp 45a58c23-3e6d-4df0-af01-6d5948b0075c))
(fp_line (start 1.27 -1.4) (end 1.27 1.4) (layer "F.SilkS") (width 0.12) (tstamp 48034820-9d25-4020-8e74-d44c1441e803))
(fp_line (start -1.44 -1.4) (end -1.44 1.4) (layer "F.SilkS") (width 0.12) (tstamp 5641be26-f5e9-482f-8616-297f17f4eae2))
(fp_line (start 21.76 -1.4) (end -1.44 -1.4) (layer "F.SilkS") (width 0.12) (tstamp be118b00-015b-445a-8fc5-7bf35350fda8))
(fp_line (start 21.76 1.4) (end 21.76 -1.4) (layer "F.SilkS") (width 0.12) (tstamp e8312cc4-6502-4783-b578-55c01e0393af))
(fp_line (start -1.7 1.65) (end 22.05 1.65) (layer "F.CrtYd") (width 0.05) (tstamp 7df9ce6f-7f38-4582-a049-7f92faf1abc9))
(fp_line (start 22.05 1.65) (end 22.05 -1.65) (layer "F.CrtYd") (width 0.05) (tstamp 93afd2e8-e16c-4e06-b872-cf0e624aee35))
(fp_line (start 22.05 -1.65) (end -1.7 -1.65) (layer "F.CrtYd") (width 0.05) (tstamp a09cb1c4-cc63-49c7-a35f-4b80c3ba2217))
(fp_line (start -1.7 -1.65) (end -1.7 1.65) (layer "F.CrtYd") (width 0.05) (tstamp dd3da890-32ef-4a5a-aea4-e5d2141f1ff1))
(fp_line (start 21.61 1.25) (end 21.61 -1.25) (layer "F.Fab") (width 0.1) (tstamp 2ad4b4ba-3abd-4313-bed9-1edce936a95e))
(fp_line (start 21.61 -1.25) (end -1.29 -1.25) (layer "F.Fab") (width 0.1) (tstamp 86143bb0-7899-4df8-b1df-baa3c0ac7889))
(fp_line (start 1.27 -1.25) (end 1.27 1.25) (layer "F.Fab") (width 0.1) (tstamp 90d503cf-92b2-4120-a4b0-03a2eddde893))
(fp_line (start -1.29 1.25) (end 21.61 1.25) (layer "F.Fab") (width 0.1) (tstamp cd2580a0-9e4c-4895-a13c-3b2ee33bafc4))
(fp_line (start -1.29 -1.25) (end -1.29 1.25) (layer "F.Fab") (width 0.1) (tstamp d337c492-7429-4618-b378-df29f72737e3))
(pad "1" thru_hole rect locked (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 3 "+5V") (pinfunction "common") (pintype "passive") (tstamp a4911204-1308-4d17-90a9-1ff5f9c57c9b))
(pad "2" thru_hole oval locked (at 2.54 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 13 "/AD0") (pinfunction "R1") (pintype "passive") (tstamp f240e733-157e-4a15-812f-78f42d8a8322))
(pad "3" thru_hole oval locked (at 5.08 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 12 "/AD1") (pinfunction "R2") (pintype "passive") (tstamp fc13962a-a464-4fa2-b9a6-4c26667104ee))
(pad "4" thru_hole oval locked (at 7.62 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 11 "/AD2") (pinfunction "R3") (pintype "passive") (tstamp 8fd0b33a-45bf-4216-9d7e-a62e1c071730))
(pad "5" thru_hole oval locked (at 10.16 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 10 "/AD3") (pinfunction "R4") (pintype "passive") (tstamp 524d7aa8-362f-459a-b2ae-4ca2a0b1612b))
(pad "6" thru_hole oval locked (at 12.7 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 9 "/AD4") (pinfunction "R5") (pintype "passive") (tstamp b5cea0b5-192f-476b-a3c8-0c26e2231699))
(pad "7" thru_hole oval locked (at 15.24 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 8 "/AD5") (pinfunction "R6") (pintype "passive") (tstamp 8313e187-c805-4927-8002-313a51839243))
(pad "8" thru_hole oval locked (at 17.78 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 7 "/AD6") (pinfunction "R7") (pintype "passive") (tstamp e002a979-85bc-451a-a77b-29ce2a8f19f9))
(pad "9" thru_hole oval locked (at 20.32 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 6 "/AD7") (pinfunction "R8") (pintype "passive") (tstamp fd34aa56-ded2-4e97-965a-a39457716f0c))
(model "${KISYS3DMOD}/Resistor_THT.3dshapes/R_Array_SIP9.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_THT:R_Array_SIP9" (layer "F.Cu")
(tedit 5A14249F) (tstamp 00000000-0000-0000-0000-000061a83aec)
(at 151.13 88.9 -90)
(descr "9-pin Resistor SIP pack")
(tags "R")
(property "Sheetfile" "TMP76C75T.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000062936c83")
(attr through_hole)
(fp_text reference "RN4" (at 11.43 -2.4 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5099f397-6fe7-454f-899c-34e2b5f22ca7)
)
(fp_text value "R_Network08" (at 11.43 2.4 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6474aa6c-825c-4f0f-9938-759b68df02a5)
)
(fp_text user "${REFERENCE}" (at 10.16 0 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 47484446-e64c-4a82-88af-15de92cf6ad4)
)
(fp_line (start 21.76 1.4) (end 21.76 -1.4) (layer "F.SilkS") (width 0.12) (tstamp 10fa1a8c-62cb-4b8f-b916-b18d737ff71b))
(fp_line (start -1.44 -1.4) (end -1.44 1.4) (layer "F.SilkS") (width 0.12) (tstamp 750e60a2-e808-4253-8275-b79930fb2714))
(fp_line (start 21.76 -1.4) (end -1.44 -1.4) (layer "F.SilkS") (width 0.12) (tstamp 9e18f8b3-9e1a-4022-9224-10c12ca8a28d))
(fp_line (start 1.27 -1.4) (end 1.27 1.4) (layer "F.SilkS") (width 0.12) (tstamp cd48b13f-c989-4ac1-a7f0-053afcd77527))
(fp_line (start -1.44 1.4) (end 21.76 1.4) (layer "F.SilkS") (width 0.12) (tstamp e7376da1-2f59-4570-81e8-46fca0289df0))
(fp_line (start 22.05 1.65) (end 22.05 -1.65) (layer "F.CrtYd") (width 0.05) (tstamp 19515fa4-c166-4b6e-837d-c01a89e98000))
(fp_line (start -1.7 1.65) (end 22.05 1.65) (layer "F.CrtYd") (width 0.05) (tstamp 43f341b3-06e9-4e7a-a26e-5365b89d76bf))
(fp_line (start -1.7 -1.65) (end -1.7 1.65) (layer "F.CrtYd") (width 0.05) (tstamp 4d51bc15-1f84-46be-8e16-e836b10f854e))
(fp_line (start 22.05 -1.65) (end -1.7 -1.65) (layer "F.CrtYd") (width 0.05) (tstamp f48f1d12-9008-4743-81e2-bdec45db64a1))
(fp_line (start 21.61 1.25) (end 21.61 -1.25) (layer "F.Fab") (width 0.1) (tstamp 29cd9e70-9b68-44f7-96b2-fe993c246832))
(fp_line (start -1.29 1.25) (end 21.61 1.25) (layer "F.Fab") (width 0.1) (tstamp 2e1d63b8-5189-41bb-8b6a-c4ada546b2d5))
(fp_line (start 21.61 -1.25) (end -1.29 -1.25) (layer "F.Fab") (width 0.1) (tstamp 7114de55-86d9-46c1-a412-07f5eb895435))
(fp_line (start -1.29 -1.25) (end -1.29 1.25) (layer "F.Fab") (width 0.1) (tstamp dd5f7736-b8aa-44f2-a044-e514d63d48f3))
(fp_line (start 1.27 -1.25) (end 1.27 1.25) (layer "F.Fab") (width 0.1) (tstamp f879c0e8-5893-4eb4-8e59-2292a632100f))
(pad "1" thru_hole rect locked (at 0 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 3 "+5V") (pinfunction "common") (pintype "passive") (tstamp 188eabba-12a3-47b7-9be1-03f0c5a948eb))
(pad "2" thru_hole oval locked (at 2.54 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 21 "/A8") (pinfunction "R1") (pintype "passive") (tstamp c38f28b6-5bd4-4cf9-b273-1e7b230f6b42))
(pad "3" thru_hole oval locked (at 5.08 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 20 "/A9") (pinfunction "R2") (pintype "passive") (tstamp a311f3c6-42e3-4584-9725-4a62ff91b6e3))
(pad "4" thru_hole oval locked (at 7.62 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 19 "/A10") (pinfunction "R3") (pintype "passive") (tstamp bcacf97a-a49b-480c-96ed-a857f56faeb2))
(pad "5" thru_hole oval locked (at 10.16 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 18 "/A11") (pinfunction "R4") (pintype "passive") (tstamp 41524d81-a7f7-45af-a8c6-15609b68d1fd))
(pad "6" thru_hole oval locked (at 12.7 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 17 "/A12") (pinfunction "R5") (pintype "passive") (tstamp 71aa3829-956e-4ff9-af3f-b06e50ab2b5a))
(pad "7" thru_hole oval locked (at 15.24 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 16 "/A13") (pinfunction "R6") (pintype "passive") (tstamp 2f5467a7-bd49-433c-92f2-60a842e66f7b))
(pad "8" thru_hole oval locked (at 17.78 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 15 "/A14") (pinfunction "R7") (pintype "passive") (tstamp 2f33286e-7553-4442-acf0-23c61fcd6ab0))
(pad "9" thru_hole oval locked (at 20.32 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 14 "/A15") (pinfunction "R8") (pintype "passive") (tstamp 5206328f-de7d-41ba-bad8-f1768b7701cb))
(model "${KISYS3DMOD}/Resistor_THT.3dshapes/R_Array_SIP9.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_THT:R_Array_SIP9" (layer "F.Cu")
(tedit 5A14249F) (tstamp 00000000-0000-0000-0000-000061a83b08)
(at 151.13 113.03 -90)
(descr "9-pin Resistor SIP pack")
(tags "R")
(property "Sheetfile" "TMP76C75T.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000062809ad5")
(attr through_hole)
(fp_text reference "RN5" (at 11.43 -2.4 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f503ea07-bcf1-4924-930a-6f7e9cd312f8)
)
(fp_text value "R_Network08" (at 11.43 2.4 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 645bdbdc-8f65-42ef-a021-2d3e7d74a739)
)
(fp_text user "${REFERENCE}" (at 10.16 0 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ba116096-3ccc-4cc8-a185-5325439e4e24)
)
(fp_line (start 21.76 -1.4) (end -1.44 -1.4) (layer "F.SilkS") (width 0.12) (tstamp 82204892-ec79-4d38-a593-52fb9a9b4b87))
(fp_line (start -1.44 -1.4) (end -1.44 1.4) (layer "F.SilkS") (width 0.12) (tstamp 8b3ba7fc-20b6-43c4-a020-80151e1caecc))
(fp_line (start -1.44 1.4) (end 21.76 1.4) (layer "F.SilkS") (width 0.12) (tstamp ae8bb5ae-95ee-4e2d-8a0c-ae5b6149b4e3))
(fp_line (start 1.27 -1.4) (end 1.27 1.4) (layer "F.SilkS") (width 0.12) (tstamp b8c8c7a1-d546-4878-9de9-463ec76dff98))
(fp_line (start 21.76 1.4) (end 21.76 -1.4) (layer "F.SilkS") (width 0.12) (tstamp dec284d9-246c-4619-8dcc-8f4886f9349e))
(fp_line (start -1.7 1.65) (end 22.05 1.65) (layer "F.CrtYd") (width 0.05) (tstamp 8b963561-586b-4575-b721-87e7914602c6))
(fp_line (start 22.05 -1.65) (end -1.7 -1.65) (layer "F.CrtYd") (width 0.05) (tstamp b1ba92d5-0d41-4be9-b483-47d08dc1785d))
(fp_line (start 22.05 1.65) (end 22.05 -1.65) (layer "F.CrtYd") (width 0.05) (tstamp bf6104a1-a529-4c00-b4ae-92001543f7ec))
(fp_line (start -1.7 -1.65) (end -1.7 1.65) (layer "F.CrtYd") (width 0.05) (tstamp da862bae-4511-4bb9-b18d-fa60a2737feb))
(fp_line (start -1.29 -1.25) (end -1.29 1.25) (layer "F.Fab") (width 0.1) (tstamp 3e87b259-dfc1-4885-8dcf-7e7ae39674ed))
(fp_line (start -1.29 1.25) (end 21.61 1.25) (layer "F.Fab") (width 0.1) (tstamp 7f064424-06a6-4f5b-87d6-1970ae527766))
(fp_line (start 21.61 1.25) (end 21.61 -1.25) (layer "F.Fab") (width 0.1) (tstamp a2a0f5cc-b5aa-4e3e-8d85-23bdc2f59aec))
(fp_line (start 21.61 -1.25) (end -1.29 -1.25) (layer "F.Fab") (width 0.1) (tstamp b7c09c15-282b-4731-8942-008851172201))
(fp_line (start 1.27 -1.25) (end 1.27 1.25) (layer "F.Fab") (width 0.1) (tstamp fb0b1440-18be-4b5f-b469-b4cfaf66fc53))
(pad "1" thru_hole rect locked (at 0 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 3 "+5V") (pinfunction "common") (pintype "passive") (tstamp 7274c82d-0cb9-47de-b093-7d848f491410))
(pad "2" thru_hole oval locked (at 2.54 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 75 "/P5.0") (pinfunction "R1") (pintype "passive") (tstamp 72366acb-6c86-4134-89df-01ed6e4dc8e0))
(pad "3" thru_hole oval locked (at 5.08 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 74 "/P5.1") (pinfunction "R2") (pintype "passive") (tstamp de552ae9-cde6-4643-8cc7-9de2579dadae))
(pad "4" thru_hole oval locked (at 7.62 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 73 "/P5.2") (pinfunction "R3") (pintype "passive") (tstamp 386faf3f-2adf-472a-84bf-bd511edf2429))
(pad "5" thru_hole oval locked (at 10.16 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 72 "/P5.3") (pinfunction "R4") (pintype "passive") (tstamp f934a442-23d6-4e5b-908f-bb9199ad6f8b))
(pad "6" thru_hole oval locked (at 12.7 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 71 "/P5.4") (pinfunction "R5") (pintype "passive") (tstamp 363189af-2faa-46a4-b025-5a779d801f2e))
(pad "7" thru_hole oval locked (at 15.24 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 70 "/P5.5") (pinfunction "R6") (pintype "passive") (tstamp 37657eee-b379-4145-b65d-79c82b53e49e))
(pad "8" thru_hole oval locked (at 17.78 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 69 "/P5.6") (pinfunction "R7") (pintype "passive") (tstamp 7668b629-abd6-4e14-be84-df90ae487fc6))
(pad "9" thru_hole oval locked (at 20.32 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 68 "/P5.7") (pinfunction "R8") (pintype "passive") (tstamp 31bfc3e7-147b-4531-a0c5-e3a305c1647d))
(model "${KISYS3DMOD}/Resistor_THT.3dshapes/R_Array_SIP9.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_THT:R_Array_SIP7" (layer "F.Cu")
(tedit 5A14249F) (tstamp 00000000-0000-0000-0000-000061a83b22)
(at 121.92 130.81 180)
(descr "7-pin Resistor SIP pack")
(tags "R")
(property "Sheetfile" "TMP76C75T.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00006281c5c0")
(attr through_hole)
(fp_text reference "RN6" (at 2.54 2.54) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f030cfe8-f922-4a12-a58d-2ff6e60a9bb9)
)
(fp_text value "R_Network06" (at 8.89 2.4) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6fd21292-6577-40e1-bbda-18906b5e9f6f)
)
(fp_text user "${REFERENCE}" (at 7.62 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 153169ce-9fac-4868-bc4e-e1381c5bb726)
)
(fp_line (start 1.27 -1.4) (end 1.27 1.4) (layer "F.SilkS") (width 0.12) (tstamp 0c9bbc06-f1c0-4359-8448-9c515b32a886))
(fp_line (start 16.68 1.4) (end 16.68 -1.4) (layer "F.SilkS") (width 0.12) (tstamp 1527299a-08b3-47c3-929f-a75c83be365e))
(fp_line (start 16.68 -1.4) (end -1.44 -1.4) (layer "F.SilkS") (width 0.12) (tstamp 58a87288-e2bf-4c88-9871-a753efc69e9d))
(fp_line (start -1.44 1.4) (end 16.68 1.4) (layer "F.SilkS") (width 0.12) (tstamp aa288a22-ea1d-474d-8dae-efe971580843))
(fp_line (start -1.44 -1.4) (end -1.44 1.4) (layer "F.SilkS") (width 0.12) (tstamp e9a9fba3-7cfa-45ca-926c-a5a8ecd7e3a4))
(fp_line (start 16.95 -1.65) (end -1.7 -1.65) (layer "F.CrtYd") (width 0.05) (tstamp 22ab392d-1989-4185-9178-8083812ea067))
(fp_line (start -1.7 1.65) (end 16.95 1.65) (layer "F.CrtYd") (width 0.05) (tstamp 2dc66f7e-d85d-4081-ae71-fd8851d6aeda))
(fp_line (start -1.7 -1.65) (end -1.7 1.65) (layer "F.CrtYd") (width 0.05) (tstamp b606e532-e4c7-444d-b9ff-879f52cfde92))
(fp_line (start 16.95 1.65) (end 16.95 -1.65) (layer "F.CrtYd") (width 0.05) (tstamp d5a7688c-7438-4b6d-999f-4f2a3cb18fd6))
(fp_line (start 16.53 -1.25) (end -1.29 -1.25) (layer "F.Fab") (width 0.1) (tstamp 0ff398d7-e6e2-4972-a7a4-438407886f34))
(fp_line (start 16.53 1.25) (end 16.53 -1.25) (layer "F.Fab") (width 0.1) (tstamp 18dee026-9999-4f10-8c36-736131349406))
(fp_line (start -1.29 -1.25) (end -1.29 1.25) (layer "F.Fab") (width 0.1) (tstamp 9e427954-2486-4c91-89b5-6af73a073442))
(fp_line (start 1.27 -1.25) (end 1.27 1.25) (layer "F.Fab") (width 0.1) (tstamp d372e2ac-d81e-48b7-8c55-9bbe58eeffc3))
(fp_line (start -1.29 1.25) (end 16.53 1.25) (layer "F.Fab") (width 0.1) (tstamp db532ed2-914c-41b4-b389-de2bf235d0a7))
(pad "1" thru_hole rect locked (at 0 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 3 "+5V") (pinfunction "common") (pintype "passive") (tstamp 799d9f4a-bb6b-44d5-9f4c-3a30db59943d))
(pad "2" thru_hole oval locked (at 2.54 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 62 "/P6.5") (pinfunction "R1") (pintype "passive") (tstamp ab0ea55a-63b3-4ece-836d-2844713a821f))
(pad "3" thru_hole oval locked (at 5.08 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 63 "/P6.4") (pinfunction "R2") (pintype "passive") (tstamp 9f95f1fc-aa31-4ce6-996a-4b385731d8eb))
(pad "4" thru_hole oval locked (at 7.62 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 64 "/P6.3") (pinfunction "R3") (pintype "passive") (tstamp 6ba19f6c-fa3a-4bf3-8c57-119de0f02b65))
(pad "5" thru_hole oval locked (at 10.16 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 65 "/P6.2") (pinfunction "R4") (pintype "passive") (tstamp 29987966-1d19-4068-93f6-a61cdfb40ffa))
(pad "6" thru_hole oval locked (at 12.7 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 66 "/P6.1") (pinfunction "R5") (pintype "passive") (tstamp 2276ec6c-cdcc-4369-86b4-8267d991001e))
(pad "7" thru_hole oval locked (at 15.24 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 67 "/P6.0") (pinfunction "R6") (pintype "passive") (tstamp b121f1ff-8472-460b-ab2d-5110ddd1ca28))
(model "${KISYS3DMOD}/Resistor_THT.3dshapes/R_Array_SIP7.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_THT:R_Array_SIP9" (layer "F.Cu")
(tedit 5A14249F) (tstamp 00000000-0000-0000-0000-000061a83b5a)
(at 189.23 57.15 -90)
(descr "9-pin Resistor SIP pack")
(tags "R")
(property "Sheetfile" "TMP76C75T.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-0000622cc693")
(attr through_hole)
(fp_text reference "RN3-2" (at 6.731 2.286 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1a813eeb-ee58-4579-81e1-3f9a7227213c)
)
(fp_text value "R_Network08" (at 11.43 2.4 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b754bfb3-a198-47be-8e7b-61bec885a5db)
)
(fp_text user "${REFERENCE}" (at 10.16 0 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d8370835-89ad-4b62-9f40-d0c10470788a)
)
(fp_line (start 21.76 -1.4) (end -1.44 -1.4) (layer "F.SilkS") (width 0.12) (tstamp 1b5a32e4-0b8e-4f38-b679-71dc277c2087))
(fp_line (start -1.44 -1.4) (end -1.44 1.4) (layer "F.SilkS") (width 0.12) (tstamp 414f80f7-b2d5-43c3-a018-819efe44fe30))
(fp_line (start -1.44 1.4) (end 21.76 1.4) (layer "F.SilkS") (width 0.12) (tstamp 494d4ce3-60c4-4021-8bd1-ab41a12b14ed))
(fp_line (start 21.76 1.4) (end 21.76 -1.4) (layer "F.SilkS") (width 0.12) (tstamp 84febc35-87fd-4cad-8e04-2b66390cfc12))
(fp_line (start 1.27 -1.4) (end 1.27 1.4) (layer "F.SilkS") (width 0.12) (tstamp eb7e294c-b398-413b-8b78-85a66ed5f3ea))
(fp_line (start 22.05 -1.65) (end -1.7 -1.65) (layer "F.CrtYd") (width 0.05) (tstamp 01109662-12b4-48a3-b68d-624008909c2a))
(fp_line (start 22.05 1.65) (end 22.05 -1.65) (layer "F.CrtYd") (width 0.05) (tstamp 0e166909-afb5-4d70-a00b-dd78cd09b084))
(fp_line (start -1.7 -1.65) (end -1.7 1.65) (layer "F.CrtYd") (width 0.05) (tstamp 5a889284-4c9f-49be-8f02-e43e18550914))
(fp_line (start -1.7 1.65) (end 22.05 1.65) (layer "F.CrtYd") (width 0.05) (tstamp dc7523a5-4408-4a51-bc92-6a47a538c094))
(fp_line (start 1.27 -1.25) (end 1.27 1.25) (layer "F.Fab") (width 0.1) (tstamp a419542a-0c78-421e-9ac7-81d3afba6186))
(fp_line (start -1.29 1.25) (end 21.61 1.25) (layer "F.Fab") (width 0.1) (tstamp a67dbe3b-ec7d-4ea5-b0e5-715c5263d8da))
(fp_line (start 21.61 1.25) (end 21.61 -1.25) (layer "F.Fab") (width 0.1) (tstamp bc1d5740-b0c7-4566-95b0-470ac47a1fb3))
(fp_line (start 21.61 -1.25) (end -1.29 -1.25) (layer "F.Fab") (width 0.1) (tstamp c480dba7-51ff-4a4f-9251-e48b2784c64a))
(fp_line (start -1.29 -1.25) (end -1.29 1.25) (layer "F.Fab") (width 0.1) (tstamp eb1b2aa2-a3cc-4a96-87ec-70fcae365f0f))
(pad "1" thru_hole rect locked (at 0 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 3 "+5V") (pinfunction "common") (pintype "passive") (tstamp f47374c3-cb2a-4769-880f-830c9b19222e))
(pad "2" thru_hole oval locked (at 2.54 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 83 "/P3.0") (pinfunction "R1") (pintype "passive") (tstamp e0b36e60-bb2b-489c-a764-1b81e551ce62))
(pad "3" thru_hole oval locked (at 5.08 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 82 "/P3.1") (pinfunction "R2") (pintype "passive") (tstamp 0fc912fd-5036-4a55-b598-a9af40810824))
(pad "4" thru_hole oval locked (at 7.62 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 81 "/P3.2") (pinfunction "R3") (pintype "passive") (tstamp 55cff608-ab38-48d9-ac09-2d0a877ceca1))
(pad "5" thru_hole oval locked (at 10.16 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 80 "/P3.3") (pinfunction "R4") (pintype "passive") (tstamp 2a6ee718-8cdf-4fa6-be7c-8fe885d98fd7))
(pad "6" thru_hole oval locked (at 12.7 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 79 "/P3.4") (pinfunction "R5") (pintype "passive") (tstamp f2392fe0-54af-4e02-8793-9ba2471944b5))
(pad "7" thru_hole oval locked (at 15.24 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 78 "/P3.5") (pinfunction "R6") (pintype "passive") (tstamp 6b69fc79-c78f-4df1-9a05-c51d4173705f))
(pad "8" thru_hole oval locked (at 17.78 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 77 "/P3.6") (pinfunction "R7") (pintype "passive") (tstamp 9c8eae28-a7c3-4e6a-bd81-98cf70031070))
(pad "9" thru_hole oval locked (at 20.32 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 76 "/P3.7") (pinfunction "R8") (pintype "passive") (tstamp 3c66e6e2-f12d-4b23-910e-e478d272dfd5))
(model "${KISYS3DMOD}/Resistor_THT.3dshapes/R_Array_SIP9.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_THT:R_Array_SIP9" (layer "F.Cu")
(tedit 5A14249F) (tstamp 00000000-0000-0000-0000-000061a83b76)
(at 189.23 82.55 -90)
(descr "9-pin Resistor SIP pack")
(tags "R")
(property "Sheetfile" "TMP76C75T.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000062337733")
(attr through_hole)
(fp_text reference "RN4-2" (at 11.049 2.286 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 90fa0465-7fe5-474b-8e7c-9f955c02a0f6)
)
(fp_text value "R_Network08" (at 11.43 2.4 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7806469b-c133-4e19-b2d5-f2b690b4b2f3)
)
(fp_text user "${REFERENCE}" (at 10.16 0 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6742a066-6a5f-4185-90ae-b7fe8c6eda52)
)
(fp_line (start -1.44 1.4) (end 21.76 1.4) (layer "F.SilkS") (width 0.12) (tstamp 64256223-cf3b-4a78-97d3-f1dca769968f))
(fp_line (start 1.27 -1.4) (end 1.27 1.4) (layer "F.SilkS") (width 0.12) (tstamp a10b569c-d672-485d-9c05-2cb4795deeca))
(fp_line (start 21.76 1.4) (end 21.76 -1.4) (layer "F.SilkS") (width 0.12) (tstamp b21625e3-a75b-41d7-9f13-4c0e12ba16cb))
(fp_line (start 21.76 -1.4) (end -1.44 -1.4) (layer "F.SilkS") (width 0.12) (tstamp db902262-2864-4997-aeff-8abaa132424a))
(fp_line (start -1.44 -1.4) (end -1.44 1.4) (layer "F.SilkS") (width 0.12) (tstamp df93f76b-86da-45ae-87e2-4b691af12b00))
(fp_line (start 22.05 -1.65) (end -1.7 -1.65) (layer "F.CrtYd") (width 0.05) (tstamp 2d16cb66-2809-411d-912c-d3db0f48bd04))
(fp_line (start -1.7 -1.65) (end -1.7 1.65) (layer "F.CrtYd") (width 0.05) (tstamp 2d4d8c24-5b38-445b-8733-2a81ba21d33e))
(fp_line (start 22.05 1.65) (end 22.05 -1.65) (layer "F.CrtYd") (width 0.05) (tstamp 5fe7a4eb-9f04-4df6-a1fa-36c071e280d7))
(fp_line (start -1.7 1.65) (end 22.05 1.65) (layer "F.CrtYd") (width 0.05) (tstamp a6891c49-3648-41ce-811e-fccb4c4653af))
(fp_line (start 21.61 1.25) (end 21.61 -1.25) (layer "F.Fab") (width 0.1) (tstamp 2151a218-87ec-4d43-b5fa-736242c52602))
(fp_line (start -1.29 -1.25) (end -1.29 1.25) (layer "F.Fab") (width 0.1) (tstamp 4c8704fa-310a-4c01-8dc1-2b7e2727fea0))
(fp_line (start 21.61 -1.25) (end -1.29 -1.25) (layer "F.Fab") (width 0.1) (tstamp 6aa022fb-09ce-49d9-86b1-c73b3ee817e2))
(fp_line (start 1.27 -1.25) (end 1.27 1.25) (layer "F.Fab") (width 0.1) (tstamp 7e498af5-a41b-4f8f-8a13-10c00a9160aa))
(fp_line (start -1.29 1.25) (end 21.61 1.25) (layer "F.Fab") (width 0.1) (tstamp a6dc1180-19c4-432b-af49-fc9179bb4519))
(pad "1" thru_hole rect locked (at 0 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 3 "+5V") (pinfunction "common") (pintype "passive") (tstamp f74eb612-4697-4cb4-afe4-9f94828b954d))
(pad "2" thru_hole oval locked (at 2.54 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 91 "/P4.0") (pinfunction "R1") (pintype "passive") (tstamp 04d60995-4f82-4f17-8f82-2f27a0a779cc))
(pad "3" thru_hole oval locked (at 5.08 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 90 "/P4.1") (pinfunction "R2") (pintype "passive") (tstamp 6f44a349-1ba9-4965-b217-aa1589a07228))
(pad "4" thru_hole oval locked (at 7.62 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 89 "/P4.2") (pinfunction "R3") (pintype "passive") (tstamp b45059f3-613f-4b7a-a70a-ed75a9e941e6))
(pad "5" thru_hole oval locked (at 10.16 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 88 "/P4.3") (pinfunction "R4") (pintype "passive") (tstamp 40b38567-9d6a-4691-bccf-1b4dbe39957b))
(pad "6" thru_hole oval locked (at 12.7 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 87 "/P4.4") (pinfunction "R5") (pintype "passive") (tstamp 05e45f00-3c6b-4c0c-9ffb-3fe26fcda007))
(pad "7" thru_hole oval locked (at 15.24 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 86 "/P4.5") (pinfunction "R6") (pintype "passive") (tstamp 2fb9964c-4cd4-4e81-b5e8-f78759d3adb5))
(pad "8" thru_hole oval locked (at 17.78 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 85 "/P4.6") (pinfunction "R7") (pintype "passive") (tstamp 8385d9f6-6997-423b-b38d-d0ab00c45f3f))
(pad "9" thru_hole oval locked (at 20.32 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 84 "/P4.7") (pinfunction "R8") (pintype "passive") (tstamp e3c3d042-f4c5-4fb1-a6b8-52aa1c14cc0e))
(model "${KISYS3DMOD}/Resistor_THT.3dshapes/R_Array_SIP9.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Button_Switch_THT:SW_DIP_SPSTx03_Slide_9.78x9.8mm_W7.62mm_P2.54mm" (layer "F.Cu")
(tedit 5A4E1404) (tstamp 00000000-0000-0000-0000-000061a83bf1)
(at 100.33 101.6 180)
(descr "3x-dip-switch SPST , Slide, row spacing 7.62 mm (300 mils), body size 9.78x9.8mm (see e.g. https://www.ctscorp.com/wp-content/uploads/206-208.pdf)")
(tags "DIP Switch SPST Slide 7.62mm 300mil")
(property "Sheetfile" "TMP76C75T.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00006266f632")
(attr through_hole)
(fp_text reference "SW1" (at 3.81 8.382 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp dda1e6ca-91ec-4136-b90b-3c54d79454b9)
)
(fp_text value "SW_DIP_x03" (at 10.16 2.54 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d0cd3439-276c-41ba-b38d-f84f6da38415)
)
(fp_text user "on" (at 5.365 -1.4975) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.12)))
(tstamp b854a395-bfc6-4140-9640-75d4f9296771)
)
(fp_text user "${REFERENCE}" (at 7.27 2.54 90) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.12)))
(tstamp f5bf5b4a-5213-48af-a5cd-0d67969d2de6)
)
(fp_line (start 1.78 -0.275) (end 3.133333 -0.275) (layer "F.SilkS") (width 0.12) (tstamp 0cc9bf07-55b9-458f-b8aa-41b2f51fa940))
(fp_line (start 1.78 5.525) (end 3.133333 5.525) (layer "F.SilkS") (width 0.12) (tstamp 14094ad2-b562-4efa-8c6f-51d7a3134345))
(fp_line (start 5.84 4.445) (end 1.78 4.445) (layer "F.SilkS") (width 0.12) (tstamp 1cb22080-0f59-4c18-a6e6-8685ef44ec53))
(fp_line (start -1.14 7.5) (end 8.76 7.5) (layer "F.SilkS") (width 0.12) (tstamp 212bf70c-2324-47d9-8700-59771063baeb))
(fp_line (start 1.78 2.265) (end 3.133333 2.265) (layer "F.SilkS") (width 0.12) (tstamp 2165c9a4-eb84-4cb6-a870-2fdc39d2511b))
(fp_line (start 1.78 5.715) (end 5.84 5.715) (layer "F.SilkS") (width 0.12) (tstamp 235067e2-1686-40fe-a9a0-61704311b2b1))
(fp_line (start 1.78 -0.395) (end 3.133333 -0.395) (layer "F.SilkS") (width 0.12) (tstamp 241e0c85-4796-48eb-a5a0-1c0f2d6e5910))
(fp_line (start 5.84 1.905) (end 1.78 1.905) (layer "F.SilkS") (width 0.12) (tstamp 2de1ffee-2174-41d2-8969-68b8d21e5a7d))
(fp_line (start 1.78 4.445) (end 1.78 5.715) (layer "F.SilkS") (width 0.12) (tstamp 31f91ec8-56e4-4e08-9ccd-012652772211))
(fp_line (start 1.78 0.565) (end 3.133333 0.565) (layer "F.SilkS") (width 0.12) (tstamp 34c0bee6-7425-4435-8857-d1fe8dfb6d89))
(fp_line (start 1.78 -0.155) (end 3.133333 -0.155) (layer "F.SilkS") (width 0.12) (tstamp 363945f6-fbef-42be-99cf-4a8a48434d92))
(fp_line (start 1.78 -0.515) (end 3.133333 -0.515) (layer "F.SilkS") (width 0.12) (tstamp 386ad9e3-71fa-420f-8722-88548b024fc5))
(fp_line (start 1.78 2.745) (end 3.133333 2.745) (layer "F.SilkS") (width 0.12) (tstamp 3c9169cc-3a77-4ae0-8afc-cbfc472a28c5))
(fp_line (start 1.78 2.625) (end 3.133333 2.625) (layer "F.SilkS") (width 0.12) (tstamp 3e57b728-64e6-4470-8f27-a43c0dd85050))
(fp_line (start -1.14 -2.42) (end 8.76 -2.42) (layer "F.SilkS") (width 0.12) (tstamp 44035e53-ff94-45ad-801f-55a1ce042a0d))
(fp_line (start 1.78 5.645) (end 3.133333 5.645) (layer "F.SilkS") (width 0.12) (tstamp 590fefcc-03e7-45d6-b6c9-e51a7c3c36c4))
(fp_line (start 3.133333 4.445) (end 3.133333 5.715) (layer "F.SilkS") (width 0.12) (tstamp 59cb2966-1e9c-4b3b-b3c8-7499378d8dde))
(fp_line (start 1.78 0.635) (end 5.84 0.635) (layer "F.SilkS") (width 0.12) (tstamp 5d49e9a6-41dd-4072-adde-ef1036c1979b))
(fp_line (start 1.78 2.985) (end 3.133333 2.985) (layer "F.SilkS") (width 0.12) (tstamp 5e7c3a32-8dda-4e6a-9838-c94d1f165575))
(fp_line (start 1.78 2.865) (end 3.133333 2.865) (layer "F.SilkS") (width 0.12) (tstamp 5f31b97b-d794-46d6-bbd9-7a5638bcf704))
(fp_line (start 1.78 5.045) (end 3.133333 5.045) (layer "F.SilkS") (width 0.12) (tstamp 5ff19d63-2cb4-438b-93c4-e66d37a05329))
(fp_line (start 1.78 4.805) (end 3.133333 4.805) (layer "F.SilkS") (width 0.12) (tstamp 616287d9-a51f-498c-8b91-be46a0aa3a7f))
(fp_line (start 1.78 5.165) (end 3.133333 5.165) (layer "F.SilkS") (width 0.12) (tstamp 637f12be-fa48-4ce4-96b2-04c21a8795c8))
(fp_line (start 1.78 0.445) (end 3.133333 0.445) (layer "F.SilkS") (width 0.12) (tstamp 6cb535a7-247d-4f99-997d-c21b160eadfa))
(fp_line (start 1.78 1.905) (end 1.78 3.175) (layer "F.SilkS") (width 0.12) (tstamp 6cb93665-0bcd-4104-8633-fffd1811eee0))
(fp_line (start 5.84 5.715) (end 5.84 4.445) (layer "F.SilkS") (width 0.12) (tstamp 701e1517-e8cf-46f4-b538-98e721c97380))
(fp_line (start 1.78 2.385) (end 3.133333 2.385) (layer "F.SilkS") (width 0.12) (tstamp 75b944f9-bf25-4dc7-8104-e9f80b4f359b))
(fp_line (start 1.78 0.205) (end 3.133333 0.205) (layer "F.SilkS") (width 0.12) (tstamp 7c5f3091-7791-43b3-8d50-43f6a72274c9))
(fp_line (start 1.78 3.175) (end 5.84 3.175) (layer "F.SilkS") (width 0.12) (tstamp 7f2b3ce3-2f20-426d-b769-e0329b6a8111))
(fp_line (start -1.38 -2.66) (end 0.004 -2.66) (layer "F.SilkS") (width 0.12) (tstamp 7f9683c1-2203-43df-8fa1-719a0dc360df))
(fp_line (start 1.78 2.145) (end 3.133333 2.145) (layer "F.SilkS") (width 0.12) (tstamp 84d4e166-b429-409a-ab37-c6a10fd82ff5))
(fp_line (start 5.84 0.635) (end 5.84 -0.635) (layer "F.SilkS") (width 0.12) (tstamp 87a1984f-543d-4f2e-ad8a-7a3a24ee6047))
(fp_line (start 1.78 0.085) (end 3.133333 0.085) (layer "F.SilkS") (width 0.12) (tstamp 8ac400bf-c9b3-4af4-b0a7-9aa9ab4ad17e))
(fp_line (start 1.78 4.565) (end 3.133333 4.565) (layer "F.SilkS") (width 0.12) (tstamp 8bdea5f6-7a53-427a-92b8-fd15994c2e8c))
(fp_line (start 5.84 -0.635) (end 1.78 -0.635) (layer "F.SilkS") (width 0.12) (tstamp 8cb2cd3a-4ef9-4ae5-b6bc-2b1d16f657d6))
(fp_line (start 1.78 -0.035) (end 3.133333 -0.035) (layer "F.SilkS") (width 0.12) (tstamp 97dcf785-3264-40a1-a36e-8842acab24fb))
(fp_line (start 1.78 3.105) (end 3.133333 3.105) (layer "F.SilkS") (width 0.12) (tstamp 98861672-254d-432b-8e5a-10d885a5ffdc))
(fp_line (start 1.78 4.685) (end 3.133333 4.685) (layer "F.SilkS") (width 0.12) (tstamp a599509f-fbb9-4db4-9adf-9e96bab1138d))
(fp_line (start 5.84 3.175) (end 5.84 1.905) (layer "F.SilkS") (width 0.12) (tstamp a7f2e97b-29f3-44fd-bf8a-97a3c1528b61))
(fp_line (start -1.38 -2.66) (end -1.38 -1.277) (layer "F.SilkS") (width 0.12) (tstamp b0054ce1-b60e-41de-a6a2-bf712784dd39))
(fp_line (start 1.78 2.505) (end 3.133333 2.505) (layer "F.SilkS") (width 0.12) (tstamp bac7c5b3-99df-445a-ade9-1e608bbbe27e))
(fp_line (start -1.14 -2.42) (end -1.14 7.5) (layer "F.SilkS") (width 0.12) (tstamp be2983fa-f06e-485e-bea1-3dd96b916ec5))
(fp_line (start 3.133333 1.905) (end 3.133333 3.175) (layer "F.SilkS") (width 0.12) (tstamp be41ac9e-b8ba-4089-983b-b84269707f1c))
(fp_line (start 1.78 -0.635) (end 1.78 0.635) (layer "F.SilkS") (width 0.12) (tstamp c8ab8246-b2bb-4b06-b45e-2548482466fd))
(fp_line (start 1.78 5.405) (end 3.133333 5.405) (layer "F.SilkS") (width 0.12) (tstamp cbebc05a-c4dd-4baf-8c08-196e84e08b27))
(fp_line (start 8.76 -2.42) (end 8.76 7.5) (layer "F.SilkS") (width 0.12) (tstamp dc1d84c8-33da-4489-be8e-2a1de3001779))
(fp_line (start 3.133333 -0.635) (end 3.133333 0.635) (layer "F.SilkS") (width 0.12) (tstamp e0830067-5b66-4ce1-b2d1-aaa8af20baf7))
(fp_line (start 1.78 2.025) (end 3.133333 2.025) (layer "F.SilkS") (width 0.12) (tstamp e87738fc-e372-4c48-9de9-398fd8b4874c))
(fp_line (start 1.78 0.325) (end 3.133333 0.325) (layer "F.SilkS") (width 0.12) (tstamp f5c43e09-08d6-4a29-a53a-3b9ea7fb34cd))
(fp_line (start 1.78 5.285) (end 3.133333 5.285) (layer "F.SilkS") (width 0.12) (tstamp f7447e92-4293-41c4-be3f-69b30aad1f17))
(fp_line (start 1.78 4.925) (end 3.133333 4.925) (layer "F.SilkS") (width 0.12) (tstamp fa00d3f4-bb71-4b1d-aa40-ae9267e2c41f))
(fp_line (start -1.35 -2.7) (end -1.35 7.75) (layer "F.CrtYd") (width 0.05) (tstamp 1427bb3f-0689-4b41-a816-cd79a5202fd0))
(fp_line (start -1.35 7.75) (end 8.95 7.75) (layer "F.CrtYd") (width 0.05) (tstamp 78f9c3d3-3556-46f6-9744-05ad54b330f0))
(fp_line (start 8.95 -2.7) (end -1.35 -2.7) (layer "F.CrtYd") (width 0.05) (tstamp 89c9afdc-c346-4300-a392-5f9dd8c1e5bd))
(fp_line (start 8.95 7.75) (end 8.95 -2.7) (layer "F.CrtYd") (width 0.05) (tstamp 8b7bbefd-8f78-41f8-809c-2534a5de3b39))
(fp_line (start 5.84 -0.635) (end 1.78 -0.635) (layer "F.Fab") (width 0.1) (tstamp 051b8cb0-ae77-4e09-98a7-bf2103319e66))
(fp_line (start 1.78 0.365) (end 3.133333 0.365) (layer "F.Fab") (width 0.1) (tstamp 083becc8-e25d-4206-9636-55457650bbe3))
(fp_line (start 1.78 2.805) (end 3.133333 2.805) (layer "F.Fab") (width 0.1) (tstamp 0b9f21ed-3d41-4f23-ae45-74117a5f3153))
(fp_line (start 8.7 -2.36) (end 8.7 7.44) (layer "F.Fab") (width 0.1) (tstamp 0d993e48-cea3-4104-9c5a-d8f97b64a3ac))
(fp_line (start 1.78 2.005) (end 3.133333 2.005) (layer "F.Fab") (width 0.1) (tstamp 10d8ad0e-6a08-4053-92aa-23a15910fd21))
(fp_line (start 3.133333 -0.635) (end 3.133333 0.635) (layer "F.Fab") (width 0.1) (tstamp 123968c6-74e7-4754-8c36-08ea08e42555))
(fp_line (start 1.78 4.445) (end 1.78 5.715) (layer "F.Fab") (width 0.1) (tstamp 1b023dd4-5185-4576-b544-68a05b9c360b))
(fp_line (start -1.08 7.44) (end -1.08 -1.36) (layer "F.Fab") (width 0.1) (tstamp 20901d7e-a300-4069-8967-a6a7e97a68bc))
(fp_line (start 5.84 1.905) (end 1.78 1.905) (layer "F.Fab") (width 0.1) (tstamp 2b64d2cb-d62a-4762-97ea-f1b0d4293c4f))
(fp_line (start 1.78 2.605) (end 3.133333 2.605) (layer "F.Fab") (width 0.1) (tstamp 2c95b9a6-9c71-4108-9cde-57ddfdd2dd19))
(fp_line (start 1.78 4.545) (end 3.133333 4.545) (layer "F.Fab") (width 0.1) (tstamp 3249bd81-9fd4-4194-9b4f-2e333b2195b8))
(fp_line (start 1.78 4.845) (end 3.133333 4.845) (layer "F.Fab") (width 0.1) (tstamp 347562f5-b152-4e7b-8a69-40ca6daaaad4))
(fp_line (start 5.84 0.635) (end 5.84 -0.635) (layer "F.Fab") (width 0.1) (tstamp 35c09d1f-2914-4d1e-a002-df30af772f3b))
(fp_line (start 1.78 0.565) (end 3.133333 0.565) (layer "F.Fab") (width 0.1) (tstamp 3e3d55c8-e0ea-48fb-8421-a84b7cb7055b))
(fp_line (start 1.78 5.145) (end 3.133333 5.145) (layer "F.Fab") (width 0.1) (tstamp 3efa2ece-8f3f-4a8c-96e9-6ab3ec6f1f70))
(fp_line (start -1.08 -1.36) (end -0.08 -2.36) (layer "F.Fab") (width 0.1) (tstamp 422b10b9-e829-44a2-8808-05edd8cb3050))
(fp_line (start 1.78 5.245) (end 3.133333 5.245) (layer "F.Fab") (width 0.1) (tstamp 430d6d73-9de6-41ca-b788-178d709f4aae))
(fp_line (start 1.78 2.205) (end 3.133333 2.205) (layer "F.Fab") (width 0.1) (tstamp 475ed8b3-90bf-48cd-bce5-d8f48b689541))
(fp_line (start 1.78 -0.035) (end 3.133333 -0.035) (layer "F.Fab") (width 0.1) (tstamp 4a7e3849-3bc9-4bb3-b16a-fab2f5cee0e5))
(fp_line (start 1.78 3.175) (end 5.84 3.175) (layer "F.Fab") (width 0.1) (tstamp 5f312b85-6822-40a3-b417-2df49696ca2d))
(fp_line (start 1.78 5.545) (end 3.133333 5.545) (layer "F.Fab") (width 0.1) (tstamp 6a2bcc72-047b-4846-8583-1109e3552669))
(fp_line (start 1.78 5.045) (end 3.133333 5.045) (layer "F.Fab") (width 0.1) (tstamp 70d34adf-9bd8-469e-8c77-5c0d7adf511e))
(fp_line (start 5.84 4.445) (end 1.78 4.445) (layer "F.Fab") (width 0.1) (tstamp 718e5c6d-0e4c-46d8-a149-2f2bfc54c7f1))
(fp_line (start 1.78 0.465) (end 3.133333 0.465) (layer "F.Fab") (width 0.1) (tstamp 725cdf26-4b92-46db-bca9-10d930002dda))
(fp_line (start 1.78 3.005) (end 3.133333 3.005) (layer "F.Fab") (width 0.1) (tstamp 76afa8e0-9b3a-439d-843c-ad039d3b6354))
(fp_line (start 1.78 5.445) (end 3.133333 5.445) (layer "F.Fab") (width 0.1) (tstamp 775e8983-a723-43c5-bf00-61681f0840f3))
(fp_line (start 1.78 0.065) (end 3.133333 0.065) (layer "F.Fab") (width 0.1) (tstamp 79451892-db6b-4999-916d-6392174ee493))
(fp_line (start 1.78 0.265) (end 3.133333 0.265) (layer "F.Fab") (width 0.1) (tstamp 7acd513a-187b-4936-9f93-2e521ce33ad5))
(fp_line (start 1.78 2.405) (end 3.133333 2.405) (layer "F.Fab") (width 0.1) (tstamp 7b766787-7689-40b8-9ef5-c0b1af45a9ae))
(fp_line (start 1.78 2.705) (end 3.133333 2.705) (layer "F.Fab") (width 0.1) (tstamp 8486c294-aa7e-43c3-b257-1ca3356dd17a))
(fp_line (start 1.78 -0.135) (end 3.133333 -0.135) (layer "F.Fab") (width 0.1) (tstamp 888fd7cb-2fc6-480c-bcfa-0b71303087d3))
(fp_line (start 1.78 0.165) (end 3.133333 0.165) (layer "F.Fab") (width 0.1) (tstamp 8e295ed4-82cb-4d9f-8888-7ad2dd4d5129))
(fp_line (start 1.78 5.715) (end 5.84 5.715) (layer "F.Fab") (width 0.1) (tstamp 90f81af1-b6de-44aa-a46b-6504a157ce6c))
(fp_line (start 1.78 3.105) (end 3.133333 3.105) (layer "F.Fab") (width 0.1) (tstamp 946404ba-9297-43ec-9d67-30184041145f))
(fp_line (start 1.78 -0.535) (end 3.133333 -0.535) (layer "F.Fab") (width 0.1) (tstamp 974c48bf-534e-4335-98e1-b0426c783e99))
(fp_line (start 5.84 3.175) (end 5.84 1.905) (layer "F.Fab") (width 0.1) (tstamp 99186658-0361-40ba-ae93-62f23c5622e6))
(fp_line (start 5.84 5.715) (end 5.84 4.445) (layer "F.Fab") (width 0.1) (tstamp 9e0e6fc0-a269-4822-b93d-4c5e6689ff11))
(fp_line (start 1.78 5.345) (end 3.133333 5.345) (layer "F.Fab") (width 0.1) (tstamp a0e7a81b-2259-4f8d-8368-ba75f2004714))
(fp_line (start 3.133333 1.905) (end 3.133333 3.175) (layer "F.Fab") (width 0.1) (tstamp a64aeb89-c24a-493b-9aab-87a6be930bde))
(fp_line (start 1.78 2.905) (end 3.133333 2.905) (layer "F.Fab") (width 0.1) (tstamp a76a574b-1cac-43eb-81e6-0e2e278cea39))
(fp_line (start 1.78 -0.235) (end 3.133333 -0.235) (layer "F.Fab") (width 0.1) (tstamp a92f3b72-ed6d-4d99-9da6-35771bec3c77))
(fp_line (start 1.78 -0.335) (end 3.133333 -0.335) (layer "F.Fab") (width 0.1) (tstamp aa1c6f47-cbd4-4cbd-8265-e5ac08b7ffc8))
(fp_line (start 1.78 2.505) (end 3.133333 2.505) (layer "F.Fab") (width 0.1) (tstamp aee7520e-3bfc-435f-a66b-1dd1f5aa6a87))
(fp_line (start -0.08 -2.36) (end 8.7 -2.36) (layer "F.Fab") (width 0.1) (tstamp b12e5309-5d01-40ef-a9c3-8453e00a555e))
(fp_line (start 1.78 5.645) (end 3.133333 5.645) (layer "F.Fab") (width 0.1) (tstamp c873689a-d206-42f5-aead-9199b4d63f51))
(fp_line (start 1.78 4.945) (end 3.133333 4.945) (layer "F.Fab") (width 0.1) (tstamp cb083d38-4f11-4a80-8b19-ab751c405e4a))
(fp_line (start 1.78 4.645) (end 3.133333 4.645) (layer "F.Fab") (width 0.1) (tstamp cbde200f-1075-469a-89f8-abbdcf30e36a))
(fp_line (start 3.133333 4.445) (end 3.133333 5.715) (layer "F.Fab") (width 0.1) (tstamp cee2f43a-7d22-4585-a857-73949bd17a9d))
(fp_line (start 8.7 7.44) (end -1.08 7.44) (layer "F.Fab") (width 0.1) (tstamp cf21dfe3-ab4f-4ad9-b7cf-dc892d833b13))
(fp_line (start 1.78 2.305) (end 3.133333 2.305) (layer "F.Fab") (width 0.1) (tstamp df2a6036-7274-4398-9365-148b6ddab90d))
(fp_line (start 1.78 0.635) (end 5.84 0.635) (layer "F.Fab") (width 0.1) (tstamp e2b24e25-1a0d-434a-876b-c595b47d80d2))
(fp_line (start 1.78 1.905) (end 1.78 3.175) (layer "F.Fab") (width 0.1) (tstamp ee29d712-3378-4507-a00b-003526b29bb1))
(fp_line (start 1.78 -0.435) (end 3.133333 -0.435) (layer "F.Fab") (width 0.1) (tstamp f28e56e7-283b-4b9a-ae27-95e89770fbf8))
(fp_line (start 1.78 4.745) (end 3.133333 4.745) (layer "F.Fab") (width 0.1) (tstamp f50dae73-c5b5-475d-ac8c-5b555be54fa3))
(fp_line (start 1.78 -0.635) (end 1.78 0.635) (layer "F.Fab") (width 0.1) (tstamp fad4c712-0a2e-465d-a9f8-83d26bd66e37))
(fp_line (start 1.78 2.105) (end 3.133333 2.105) (layer "F.Fab") (width 0.1) (tstamp fc83cd71-1198-4019-87a1-dc154bceead3))
(pad "1" thru_hole rect locked (at 0 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 92 "/P2.2") (pintype "passive") (tstamp dd334895-c8ff-4719-bac4-c0b289bb5899))
(pad "2" thru_hole oval locked (at 0 2.54 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 93 "/P2.1") (pintype "passive") (tstamp 86ad0555-08b3-4dde-9a3e-c1e5e29b6615))
(pad "3" thru_hole oval locked (at 0 5.08 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 94 "/P2.0") (pintype "passive") (tstamp f56d244f-1fa4-4475-ac1d-f41eed31a48b))
(pad "4" thru_hole oval locked (at 7.62 5.08 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 41 "Net-(D2-Pad2)") (pintype "passive") (tstamp 73fbe87f-3928-49c2-bf87-839d907c6aef))
(pad "5" thru_hole oval locked (at 7.62 2.54 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 2 "Net-(D1-Pad2)") (pintype "passive") (tstamp 1c9f6fea-1796-4a2d-80b3-ae22ce51c8f5))
(pad "6" thru_hole oval locked (at 7.62 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 40 "Net-(D0-Pad2)") (pintype "passive") (tstamp be6b17f9-34f5-44e9-a4c7-725d2e274a9d))
(model "${KISYS3DMOD}/Button_Switch_THT.3dshapes/SW_DIP_SPSTx03_Slide_9.78x9.8mm_W7.62mm_P2.54mm.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 90))
)
)
(footprint "Socket:DIP_Socket-28_W11.9_W12.7_W15.24_W17.78_W18.5_3M_228-1277-00-0602J" locked (layer "F.Cu")
(tedit 5AF5D4CC) (tstamp 00000000-0000-0000-0000-000061a89e0b)
(at 149.86 55.499 -90)
(descr "3M 28-pin zero insertion force socket, through-hole, row spacing 15.24 mm (600 mils), http://multimedia.3m.com/mws/media/494546O/3mtm-dip-sockets-100-2-54-mm-ts0365.pdf")
(tags "THT DIP DIL ZIF 15.24mm 600mil Socket")
(property "Sheetfile" "TMP76C75T.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000061e600c9")
(attr through_hole)
(fp_text reference "U2" (at 7.62 -11.56 -90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 00c9c1c9-df78-4bf8-a378-9edee7dafbe3)
)
(fp_text value "27C256" (at 7.62 40.84 -90) (layer "F.Fab")
(effects (font (size 0.6 0.6) (thickness 0.09)))
(tstamp 92419cc9-1070-47aa-876c-2cf8f5a03a47)
)
(fp_text user "${REFERENCE}" (at 7.62 14.64 -90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ec7073f7-f754-4ee6-a977-3d11d16480f8)
)
(fp_line (start -3.93 39.94) (end 19.17 39.94) (layer "F.SilkS") (width 0.12) (tstamp 0d1c133a-5b0b-4fe0-b915-2f72b13b37e9))
(fp_line (start -3.93 -10.66) (end -3.93 -8.8) (layer "F.SilkS") (width 0.12) (tstamp 24d3ee68-60f0-4c8a-a72b-065f1026fd87))
(fp_line (start 19.17 -10.66) (end -3.93 -10.66) (layer "F.SilkS") (width 0.12) (tstamp 34d3baf1-c1a6-463d-a7da-03fde565ea93))
(fp_line (start 19.17 39.94) (end 19.17 -10.66) (layer "F.SilkS") (width 0.12) (tstamp 513c5122-3fbb-44b6-aa2c-74224719f915))
(fp_line (start -1.65 -10.66) (end -1.65 -8.4) (layer "F.SilkS") (width 0.12) (tstamp 99162744-5eac-427e-9957-877587056aee))
(fp_line (start -3.93 -3.9) (end -3.93 39.94) (layer "F.SilkS") (width 0.12) (tstamp a8470270-920a-4fed-9691-22526135f92c))
(fp_line (start -4.95 1.27) (end -4.95 -1.27) (layer "F.SilkS") (width 0.12) (tstamp f99552ce-0729-4ada-aef3-5686270d7c4d))
(fp_circle (center -3.2 -6.35) (end -2.3 -6.35) (layer "F.SilkS") (width 0.12) (fill none) (tstamp 31e2d26e-842a-4694-a3ae-7642d792727c))
(fp_circle (center -3.2 -6.35) (end -0.65 -6.35) (layer "F.SilkS") (width 0.12) (fill none) (tstamp 3f1d3b22-3ba1-4783-af8d-526bce7c36db))
(fp_line (start 0.1 -11.06) (end 19.57 -11.06) (layer "F.CrtYd") (width 0.05) (tstamp 0667208e-872f-444a-9ed0-78a1b5f392d2))
(fp_line (start -5.5 -3.4) (end -5.5 -23.36) (layer "F.CrtYd") (width 0.05) (tstamp 449cc181-df4b-4d3b-93ef-0653c2171fe8))
(fp_line (start -5.5 -23.36) (end 0.1 -23.36) (layer "F.CrtYd") (width 0.05) (tstamp 524dc8d0-13b4-43fe-b274-8ac08bc4b894))
(fp_line (start -4.33 40.34) (end -4.33 -3.4) (layer "F.CrtYd") (width 0.05) (tstamp 7aad0cca-fb50-4041-9a10-5380cb0860ac))
(fp_line (start -4.33 -3.4) (end -5.5 -3.4) (layer "F.CrtYd") (width 0.05) (tstamp 7fd11519-eb9e-4413-8ca2-e43e38c699f6))
(fp_line (start 19.57 40.34) (end -4.33 40.34) (layer "F.CrtYd") (width 0.05) (tstamp 969d876f-dc87-40bf-9e96-03cbb9ea5e82))
(fp_line (start 0.1 -23.36) (end 0.1 -11.06) (layer "F.CrtYd") (width 0.05) (tstamp bc29a09d-ebbe-4bab-9edb-114e75ee17a4))
(fp_line (start 19.57 -11.06) (end 19.57 40.34) (layer "F.CrtYd") (width 0.05) (tstamp eec347af-8fb3-4b2d-8e93-6e7176516f57))
(fp_line (start -3.7 -22.86) (end -1.7 -22.86) (layer "F.Fab") (width 0.1) (tstamp 11cae898-6e02-4314-87c3-bfa88f249303))
(fp_line (start 19.07 39.84) (end -3.83 39.84) (layer "F.Fab") (width 0.1) (tstamp 127b0e8c-8b10-4db4-b691-908ac98caaf1))
(fp_line (start -1.7 -22.86) (end -0.4 -21.46) (layer "F.Fab") (width 0.1) (tstamp 217a6ab0-8c75-4e09-8113-c7b7b906da43))
(fp_line (start -0.4 -17.86) (end -1.9 -15.86) (layer "F.Fab") (width 0.1) (tstamp 22fd57c4-481e-4417-b920-694451210da2))
(fp_line (start -5 -21.46) (end -3.7 -22.86) (layer "F.Fab") (width 0.1) (tstamp 3019c847-3ccf-490a-9dd6-694227c3fba5))
(fp_line (start -3.5 -9.75) (end -3.5 -15.86) (layer "F.Fab") (width 0.1) (tstamp 3a4d7b94-8b26-4555-b396-f2e88aea5db3))
(fp_line (start -5 -17.86) (end -0.4 -17.86) (layer "F.Fab") (width 0.1) (tstamp 41ef6d8e-078c-46e5-a743-15f86f94b1c5))
(fp_line (start 19.07 -10.56) (end 19.07 39.84) (layer "F.Fab") (width 0.1) (tstamp 57881c8f-ea31-4450-bce6-89885e0a9bfd))
(fp_line (start -3.83 39.84) (end -3.83 -9.4) (layer "F.Fab") (width 0.1) (tstamp 60a7dcc1-b459-4b69-be02-f48b66a815f0))
(fp_line (start -5 -21.46) (end -5 -17.86) (layer "F.Fab") (width 0.1) (tstamp 7401f61b-dc36-4f5a-ba3e-b101a22bf1fc))
(fp_line (start -3.83 -9.4) (end -2.85 -10.56) (layer "F.Fab") (width 0.1) (tstamp 741561bb-6157-4c58-bb00-0f2a32b21238))
(fp_line (start -0.4 -21.46) (end -5 -21.46) (layer "F.Fab") (width 0.1) (tstamp 76a87642-211c-44f2-a488-190d6dc3728e))
(fp_line (start -2.85 -10.56) (end 19.07 -10.56) (layer "F.Fab") (width 0.1) (tstamp 8c4cd1a2-9a92-4fba-aa2e-8b86c17dce10))
(fp_line (start -0.4 -17.86) (end -0.4 -21.46) (layer "F.Fab") (width 0.1) (tstamp a3722fe0-facc-42fa-a01b-a26433c9d7fe))
(fp_line (start -3.5 -15.86) (end -1.9 -15.86) (layer "F.Fab") (width 0.1) (tstamp da151d0a-a1fa-4865-aa78-eb4b6082fbfd))
(fp_line (start -5 -17.86) (end -3.5 -15.86) (layer "F.Fab") (width 0.1) (tstamp f8df4375-570f-4eb0-868e-4f350bd24547))
(fp_line (start -1.9 -15.86) (end -1.9 -10.56) (layer "F.Fab") (width 0.1) (tstamp fbca7d5b-4a19-4f46-9697-74b3068179aa))
(pad "1" thru_hole rect locked (at 0 0 270) (size 2 1.44) (drill 1) (layers *.Cu *.Mask)
(net 3 "+5V") (pinfunction "VPP") (pintype "input") (tstamp a4971cc2-2bc0-4979-86df-10f6aaaa3b65))
(pad "2" thru_hole oval locked (at 0 2.54 270) (size 2 1.44) (drill 1) (layers *.Cu *.Mask)
(net 17 "/A12") (pinfunction "A12") (pintype "input") (tstamp 5da06777-0696-4bb2-8c9a-78c96b4b3e90))
(pad "3" thru_hole oval locked (at 0 5.08 270) (size 2 1.44) (drill 1) (layers *.Cu *.Mask)
(net 34 "/A7") (pinfunction "A7") (pintype "input") (tstamp 1d6c2d6c-bee0-401d-9749-98f17833afdd))
(pad "4" thru_hole oval locked (at 0 7.62 270) (size 2 1.44) (drill 1) (layers *.Cu *.Mask)
(net 33 "/A6") (pinfunction "A6") (pintype "input") (tstamp e6235600-87cc-4c82-b15f-34fb66b9bf0e))
(pad "5" thru_hole oval locked (at 0 10.16 270) (size 2 1.44) (drill 1) (layers *.Cu *.Mask)
(net 32 "/A5") (pinfunction "A5") (pintype "input") (tstamp e73ef891-c9f9-42ab-894b-b2580ee0b0a1))
(pad "6" thru_hole oval locked (at 0 12.7 270) (size 2 1.44) (drill 1) (layers *.Cu *.Mask)
(net 31 "/A4") (pinfunction "A4") (pintype "input") (tstamp 3785b88e-f652-4024-afb0-be4c22cdaea8))
(pad "7" thru_hole oval locked (at 0 15.24 270) (size 2 1.44) (drill 1) (layers *.Cu *.Mask)
(net 30 "/A3") (pinfunction "A3") (pintype "input") (tstamp 0fffb828-f291-41d3-a83c-4eaa3df13f3a))
(pad "8" thru_hole oval locked (at 0 17.78 270) (size 2 1.44) (drill 1) (layers *.Cu *.Mask)
(net 29 "/A2") (pinfunction "A2") (pintype "input") (tstamp f8e927af-4836-4b0f-8a57-dbca5a18a442))
(pad "9" thru_hole oval locked (at 0 20.32 270) (size 2 1.44) (drill 1) (layers *.Cu *.Mask)
(net 28 "/A1") (pinfunction "A1") (pintype "input") (tstamp 72733f59-fc61-4ff2-8fe5-0440be71758a))
(pad "10" thru_hole oval locked (at 0 22.86 270) (size 2 1.44) (drill 1) (layers *.Cu *.Mask)
(net 27 "/A0") (pinfunction "A0") (pintype "input") (tstamp 45245258-c97a-4586-bc43-2154c85c0ef6))
(pad "11" thru_hole oval locked (at 0 25.4 270) (size 2 1.44) (drill 1) (layers *.Cu *.Mask)
(net 13 "/AD0") (pinfunction "D0") (pintype "tri_state") (tstamp 1bb16fed-1537-47fa-90f6-8dc136da5d16))
(pad "12" thru_hole oval locked (at 0 27.94 270) (size 2 1.44) (drill 1) (layers *.Cu *.Mask)
(net 12 "/AD1") (pinfunction "D1") (pintype "tri_state") (tstamp dd01ca49-c8a2-4580-af9a-2e9bce9769bc))
(pad "13" thru_hole oval locked (at 0 30.48 270) (size 2 1.44) (drill 1) (layers *.Cu *.Mask)
(net 11 "/AD2") (pinfunction "D2") (pintype "tri_state") (tstamp 1d801ac4-6429-45d9-ad70-9dd82bd9c030))
(pad "14" thru_hole oval locked (at 0 33.02 270) (size 2 1.44) (drill 1) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 443de8e6-6c50-4145-a643-8098c9ffc1e6))
(pad "15" thru_hole oval locked (at 15.24 33.02 270) (size 2 1.44) (drill 1) (layers *.Cu *.Mask)
(net 10 "/AD3") (pinfunction "D3") (pintype "tri_state") (tstamp bf958b11-f26e-429d-9cb0-d1379a98f463))
(pad "16" thru_hole oval locked (at 15.24 30.48 270) (size 2 1.44) (drill 1) (layers *.Cu *.Mask)
(net 9 "/AD4") (pinfunction "D4") (pintype "tri_state") (tstamp 168e91de-8892-4570-a62e-0a6a88daec47))
(pad "17" thru_hole oval locked (at 15.24 27.94 270) (size 2 1.44) (drill 1) (layers *.Cu *.Mask)
(net 8 "/AD5") (pinfunction "D5") (pintype "tri_state") (tstamp c60045a9-c6dd-4a1d-b776-92c82360c330))
(pad "18" thru_hole oval locked (at 15.24 25.4 270) (size 2 1.44) (drill 1) (layers *.Cu *.Mask)
(net 7 "/AD6") (pinfunction "D6") (pintype "tri_state") (tstamp 0c75753f-ac98-42bf-95d0-ee8de408989d))
(pad "19" thru_hole oval locked (at 15.24 22.86 270) (size 2 1.44) (drill 1) (layers *.Cu *.Mask)
(net 6 "/AD7") (pinfunction "D7") (pintype "tri_state") (tstamp d81bc63a-94f2-481d-a808-c50170eb6b79))
(pad "20" thru_hole oval locked (at 15.24 20.32 270) (size 2 1.44) (drill 1) (layers *.Cu *.Mask)
(net 96 "/CE") (pinfunction "~{CE}") (pintype "input") (tstamp d37a42c4-6950-4517-b4dd-96056acf0925))
(pad "21" thru_hole oval locked (at 15.24 17.78 270) (size 2 1.44) (drill 1) (layers *.Cu *.Mask)
(net 19 "/A10") (pinfunction "A10") (pintype "input") (tstamp 376da264-b219-4ddc-be78-a640bbee3aef))
(pad "22" thru_hole oval locked (at 15.24 15.24 270) (size 2 1.44) (drill 1) (layers *.Cu *.Mask)
(net 95 "/OE") (pinfunction "~{OE}") (pintype "input") (tstamp 7b8f4734-c91c-4c35-bc25-8ba9e0a60f64))
(pad "23" thru_hole oval locked (at 15.24 12.7 270) (size 2 1.44) (drill 1) (layers *.Cu *.Mask)
(net 18 "/A11") (pinfunction "A11") (pintype "input") (tstamp 63892cea-0371-47b0-925d-c40106168946))
(pad "24" thru_hole oval locked (at 15.24 10.16 270) (size 2 1.44) (drill 1) (layers *.Cu *.Mask)
(net 20 "/A9") (pinfunction "A9") (pintype "input") (tstamp 419715bf-ffaa-4f14-ba39-b7cca3633324))
(pad "25" thru_hole oval locked (at 15.24 7.62 270) (size 2 1.44) (drill 1) (layers *.Cu *.Mask)
(net 21 "/A8") (pinfunction "A8") (pintype "input") (tstamp f88265e8-a27a-4259-b3ad-7df91a571c60))
(pad "26" thru_hole oval locked (at 15.24 5.08 270) (size 2 1.44) (drill 1) (layers *.Cu *.Mask)
(net 16 "/A13") (pinfunction "A13") (pintype "input") (tstamp b45faf1e-b7a2-4d73-9833-db84a2fde78b))
(pad "27" thru_hole oval locked (at 15.24 2.54 270) (size 2 1.44) (drill 1) (layers *.Cu *.Mask)
(net 15 "/A14") (pinfunction "A14") (pintype "input") (tstamp e5f06cd2-492e-41b2-8ded-13a3fa1042bb))
(pad "28" thru_hole oval locked (at 15.24 0 270) (size 2 1.44) (drill 1) (layers *.Cu *.Mask)
(net 3 "+5V") (pinfunction "VCC") (pintype "power_in") (tstamp 7f7833f4-976f-4a80-99c4-69f2976ed565))
(model "${KICAD6_3DMODEL_DIR}/Socket.3dshapes/DIP_Socket-28_W11.9_W12.7_W15.24_W17.78_W18.5_3M_228-1277-00-0602J.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_PinHeader_2.54mm:PinHeader_1x08_P2.54mm_Vertical" (layer "F.Cu")
(tedit 59FED5CC) (tstamp 00000000-0000-0000-0000-000061a8c495)
(at 102.87 106.68)
(descr "Through hole straight pin header, 1x08, 2.54mm pitch, single row")
(tags "Through hole pin header THT 1x08 2.54mm single row")
(property "Sheetfile" "TMP76C75T.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000062befc75")
(attr through_hole)
(fp_text reference "J1" (at 0 20.32) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8ab9bf6a-8a3b-48f7-8e12-e7ed03833d3b)
)
(fp_text value "Conn_01x08_Male" (at 0 20.11) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b2964fdf-f904-402f-98d1-7f88ea1ff4b6)
)
(fp_text user "${REFERENCE}" (at 0 8.89 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0347da50-2bcf-4db8-b2c9-45cab6ba2c74)
)
(fp_line (start -1.33 -1.33) (end 0 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 10a1a59c-3148-4093-b369-6274e0c8ed80))
(fp_line (start 1.33 1.27) (end 1.33 19.11) (layer "F.SilkS") (width 0.12) (tstamp 2ec36703-3fa7-455f-8585-19df27aed640))
(fp_line (start -1.33 1.27) (end 1.33 1.27) (layer "F.SilkS") (width 0.12) (tstamp 5f2941bf-82bf-4461-97ce-70fd055a1b42))
(fp_line (start -1.33 0) (end -1.33 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 6631d66d-9705-4e4b-81a9-334908fcca71))
(fp_line (start -1.33 1.27) (end -1.33 19.11) (layer "F.SilkS") (width 0.12) (tstamp 6c8685e2-80f4-498a-933a-acfbfcdfa121))
(fp_line (start -1.33 19.11) (end 1.33 19.11) (layer "F.SilkS") (width 0.12) (tstamp cb828d21-f104-47fb-a6a4-11f4403045b7))
(fp_line (start -1.8 -1.8) (end -1.8 19.55) (layer "F.CrtYd") (width 0.05) (tstamp 61fd72f8-7c6c-4f2a-b845-9a6be06ec826))
(fp_line (start 1.8 -1.8) (end -1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp a86cae80-e347-46f5-a4c2-90484e600a6f))
(fp_line (start 1.8 19.55) (end 1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp d95b0832-b9f4-4c6b-bf2b-ce12b181d8da))
(fp_line (start -1.8 19.55) (end 1.8 19.55) (layer "F.CrtYd") (width 0.05) (tstamp f4cc9a1a-1eee-43c8-a5bd-46be395957c5))
(fp_line (start 1.27 -1.27) (end 1.27 19.05) (layer "F.Fab") (width 0.1) (tstamp 0104dadd-e186-436a-af61-38eac2e433d8))
(fp_line (start 1.27 19.05) (end -1.27 19.05) (layer "F.Fab") (width 0.1) (tstamp 91db20fb-4d46-4a0e-84c0-388fc2a07cf7))
(fp_line (start -0.635 -1.27) (end 1.27 -1.27) (layer "F.Fab") (width 0.1) (tstamp 9b834767-a9bb-408b-b827-17f7cfe8a2a4))
(fp_line (start -1.27 19.05) (end -1.27 -0.635) (layer "F.Fab") (width 0.1) (tstamp a5407efb-fbb4-492c-9121-fe68435cd86a))
(fp_line (start -1.27 -0.635) (end -0.635 -1.27) (layer "F.Fab") (width 0.1) (tstamp b6bb680c-5019-444f-8f22-7b2496cdd1f7))
(pad "1" thru_hole rect (at 0 0) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)