forked from KiCad/kicad-source-mirror
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpic_programmer.kicad_pcb
20328 lines (20257 loc) · 855 KB
/
pic_programmer.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 20210424) (generator pcbnew)
(general
(thickness 1.6)
)
(paper "A4")
(title_block
(title "SERIAL PIC PROGRAMMER")
)
(layers
(0 "F.Cu" signal "top_layer")
(31 "B.Cu" signal "bottom_layer")
(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
(stackup
(layer "F.SilkS" (type "Top Silk Screen") (color "White"))
(layer "F.Paste" (type "Top Solder Paste"))
(layer "F.Mask" (type "Top Solder Mask") (color "Green") (thickness 0.01))
(layer "F.Cu" (type "copper") (thickness 0.035))
(layer "dielectric 1" (type "core") (thickness 1.51) (material "FR4") (epsilon_r 4.5) (loss_tangent 0.02))
(layer "B.Cu" (type "copper") (thickness 0.035))
(layer "B.Mask" (type "Bottom Solder Mask") (color "Green") (thickness 0.01))
(layer "B.Paste" (type "Bottom Solder Paste"))
(layer "B.SilkS" (type "Bottom Silk Screen") (color "White"))
(copper_finish "None")
(dielectric_constraints no)
)
(pad_to_mask_clearance 0)
(aux_axis_origin 62.23 153.67)
(pcbplotparams
(layerselection 0x0000030_80000001)
(disableapertmacros false)
(usegerberextensions true)
(usegerberattributes true)
(usegerberadvancedattributes true)
(creategerberjobfile true)
(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 1)
(scaleselection 1)
(outputdirectory "")
)
)
(net 0 "")
(net 1 "/PC-CLOCK-OUT")
(net 2 "GND")
(net 3 "Net-(C2-Pad1)")
(net 4 "Net-(C4-Pad1)")
(net 5 "Net-(C5-Pad1)")
(net 6 "Net-(C9-Pad2)")
(net 7 "Net-(D11-Pad1)")
(net 8 "Net-(D11-Pad2)")
(net 9 "Net-(Q1-Pad2)")
(net 10 "Net-(Q3-Pad2)")
(net 11 "Net-(R12-Pad1)")
(net 12 "Net-(R13-Pad1)")
(net 13 "Net-(R15-Pad1)")
(net 14 "Net-(R16-Pad1)")
(net 15 "Net-(R8-Pad1)")
(net 16 "Net-(RV1-Pad2)")
(net 17 "VCC")
(net 18 "VPP")
(net 19 "Net-(D1-Pad2)")
(net 20 "Net-(D4-Pad2)")
(net 21 "Net-(D8-Pad2)")
(net 22 "Net-(D9-Pad2)")
(net 23 "Net-(D12-Pad2)")
(net 24 "/pic_sockets/VCC_PIC")
(net 25 "/CLOCK-RB6")
(net 26 "/DATA-RB7")
(net 27 "Net-(D2-Pad2)")
(net 28 "Net-(D6-Pad2)")
(net 29 "Net-(D10-Pad2)")
(net 30 "unconnected-(J1-Pad1)")
(net 31 "/PC-DATA-IN")
(net 32 "/PC-DATA-OUT")
(net 33 "/VPP_ON")
(net 34 "Net-(Q2-Pad1)")
(net 35 "unconnected-(J1-Pad2)")
(net 36 "unconnected-(J1-Pad6)")
(net 37 "unconnected-(J1-Pad9)")
(net 38 "/VPP{slash}MCLR")
(net 39 "unconnected-(P2-Pad2)")
(net 40 "unconnected-(P2-Pad3)")
(net 41 "unconnected-(P2-Pad4)")
(net 42 "unconnected-(P2-Pad5)")
(net 43 "unconnected-(P2-Pad6)")
(net 44 "unconnected-(P2-Pad7)")
(net 45 "unconnected-(P2-Pad9)")
(net 46 "unconnected-(P2-Pad10)")
(net 47 "unconnected-(P2-Pad11)")
(net 48 "unconnected-(P2-Pad12)")
(net 49 "unconnected-(P2-Pad13)")
(net 50 "unconnected-(P2-Pad14)")
(net 51 "unconnected-(P2-Pad15)")
(net 52 "unconnected-(P2-Pad16)")
(net 53 "unconnected-(P2-Pad17)")
(net 54 "unconnected-(P2-Pad18)")
(net 55 "unconnected-(P2-Pad21)")
(net 56 "unconnected-(P2-Pad22)")
(net 57 "unconnected-(P2-Pad23)")
(net 58 "unconnected-(P2-Pad24)")
(net 59 "unconnected-(P2-Pad25)")
(net 60 "unconnected-(P2-Pad26)")
(net 61 "unconnected-(P3-Pad2)")
(net 62 "unconnected-(P3-Pad3)")
(net 63 "unconnected-(P3-Pad4)")
(net 64 "unconnected-(P3-Pad5)")
(net 65 "unconnected-(P3-Pad6)")
(net 66 "unconnected-(P3-Pad7)")
(net 67 "unconnected-(P3-Pad9)")
(net 68 "unconnected-(P3-Pad10)")
(net 69 "unconnected-(P3-Pad13)")
(net 70 "unconnected-(P3-Pad14)")
(net 71 "unconnected-(P3-Pad15)")
(net 72 "unconnected-(P3-Pad16)")
(net 73 "unconnected-(P3-Pad17)")
(net 74 "unconnected-(P3-Pad18)")
(net 75 "unconnected-(P3-Pad19)")
(net 76 "unconnected-(P3-Pad20)")
(net 77 "unconnected-(P3-Pad21)")
(net 78 "unconnected-(P3-Pad22)")
(net 79 "unconnected-(P3-Pad23)")
(net 80 "unconnected-(P3-Pad24)")
(net 81 "unconnected-(P3-Pad25)")
(net 82 "unconnected-(P3-Pad26)")
(net 83 "unconnected-(P3-Pad27)")
(net 84 "unconnected-(P3-Pad28)")
(net 85 "unconnected-(P3-Pad29)")
(net 86 "unconnected-(P3-Pad30)")
(net 87 "unconnected-(P3-Pad33)")
(net 88 "unconnected-(P3-Pad34)")
(net 89 "unconnected-(P3-Pad35)")
(net 90 "unconnected-(P3-Pad36)")
(net 91 "unconnected-(P3-Pad37)")
(net 92 "unconnected-(P3-Pad38)")
(net 93 "unconnected-(U1-Pad7)")
(net 94 "unconnected-(U4-Pad3)")
(net 95 "unconnected-(U4-Pad4)")
(net 96 "unconnected-(U5-Pad1)")
(net 97 "unconnected-(U5-Pad2)")
(net 98 "unconnected-(U5-Pad3)")
(net 99 "unconnected-(U5-Pad6)")
(net 100 "unconnected-(U5-Pad7)")
(net 101 "unconnected-(U5-Pad8)")
(net 102 "unconnected-(U5-Pad9)")
(net 103 "unconnected-(U5-Pad10)")
(net 104 "unconnected-(U5-Pad11)")
(net 105 "unconnected-(U5-Pad15)")
(net 106 "unconnected-(U5-Pad16)")
(net 107 "unconnected-(U5-Pad17)")
(net 108 "unconnected-(U5-Pad18)")
(net 109 "unconnected-(U6-Pad2)")
(net 110 "unconnected-(U6-Pad3)")
(net 111 "unconnected-(U6-Pad5)")
(footprint "Capacitor_THT:CP_Axial_L18.0mm_D6.5mm_P25.00mm_Horizontal" (layer "F.Cu")
(tedit 5A533291) (tstamp 00000000-0000-0000-0000-000054032b86)
(at 110.49 78.867 180)
(descr "CP, Axial series, Axial, Horizontal, pin pitch=25mm, , length*diameter=18*6.5mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf")
(tags "CP Axial series Axial Horizontal pin pitch 25mm length 18mm diameter 6.5mm Electrolytic Capacitor")
(property "Sheetfile" "pic_programmer.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-0000442a5056")
(attr through_hole)
(fp_text reference "C1" (at 12.5 -4.31 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a6f1cee4-350a-49d7-858b-50d3e3d852dc)
)
(fp_text value "100µF" (at 12.5 4.31 180) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6714d3d0-67c3-4e88-bf4d-4c5f778e0892)
)
(fp_text user "${REFERENCE}" (at 12.5 0 180) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp bc27282e-eeb3-4ed4-b421-f3a6eaa2e2b5)
)
(fp_line (start 3.38 3.37) (end 5.18 3.37) (layer "F.SilkS") (width 0.12) (tstamp 3462ecc2-1bae-4a89-9f65-63a9e667d09c))
(fp_line (start 6.98 -3.37) (end 21.62 -3.37) (layer "F.SilkS") (width 0.12) (tstamp 4d1afc95-4219-4bbd-9746-9af92b8382e5))
(fp_line (start 1.44 0) (end 3.38 0) (layer "F.SilkS") (width 0.12) (tstamp 58df7ef1-b92a-49a0-8639-c0c281311c8c))
(fp_line (start 5.18 3.37) (end 6.08 2.47) (layer "F.SilkS") (width 0.12) (tstamp 8959f01b-661c-44a4-a6b5-b57e597117d1))
(fp_line (start 6.08 2.47) (end 6.98 3.37) (layer "F.SilkS") (width 0.12) (tstamp 928467d1-ef81-4aa0-b95a-3562ac729310))
(fp_line (start 6.08 -2.47) (end 6.98 -3.37) (layer "F.SilkS") (width 0.12) (tstamp 9f77a334-8c05-44eb-8734-b02323623980))
(fp_line (start 3.38 -3.37) (end 5.18 -3.37) (layer "F.SilkS") (width 0.12) (tstamp a5ffbea5-7343-4e67-95ca-798ecf1a31fd))
(fp_line (start 2.18 -3.5) (end 2.18 -1.7) (layer "F.SilkS") (width 0.12) (tstamp b2ac688b-7bb5-4f97-83f4-4421e72e5ebf))
(fp_line (start 23.56 0) (end 21.62 0) (layer "F.SilkS") (width 0.12) (tstamp bffcf4d1-909b-4c58-a5be-6561a7007f9d))
(fp_line (start 6.98 3.37) (end 21.62 3.37) (layer "F.SilkS") (width 0.12) (tstamp c4dcabfd-61e1-4503-9ff2-b41ab53d91aa))
(fp_line (start 3.38 -3.37) (end 3.38 3.37) (layer "F.SilkS") (width 0.12) (tstamp d75f58b8-4e6d-4e45-b9c3-b942ded81af0))
(fp_line (start 5.18 -3.37) (end 6.08 -2.47) (layer "F.SilkS") (width 0.12) (tstamp e0db893c-3ed0-4514-88f8-12392d977eb3))
(fp_line (start 1.28 -2.6) (end 3.08 -2.6) (layer "F.SilkS") (width 0.12) (tstamp e67045ec-7ac2-4e58-adbd-ba06b515c475))
(fp_line (start 21.62 -3.37) (end 21.62 3.37) (layer "F.SilkS") (width 0.12) (tstamp e7e8636e-8a1d-4bd2-9304-51c7bf88ca86))
(fp_line (start 26.45 3.65) (end 26.45 -3.65) (layer "F.CrtYd") (width 0.05) (tstamp 5a03366f-05a8-4568-93d7-90ee54ce1ff3))
(fp_line (start 26.45 -3.65) (end -1.45 -3.65) (layer "F.CrtYd") (width 0.05) (tstamp e12abc24-3857-4264-8f78-760101a7cc3a))
(fp_line (start -1.45 -3.65) (end -1.45 3.65) (layer "F.CrtYd") (width 0.05) (tstamp f10e3c6e-61e7-4406-8325-82fe978579b0))
(fp_line (start -1.45 3.65) (end 26.45 3.65) (layer "F.CrtYd") (width 0.05) (tstamp fe3f3336-5cdc-4945-bb13-258cab45397b))
(fp_line (start 5.18 -3.25) (end 6.08 -2.35) (layer "F.Fab") (width 0.1) (tstamp 01242f51-9ef5-41ff-8af9-2bdf66835e68))
(fp_line (start 6.98 -3.25) (end 21.5 -3.25) (layer "F.Fab") (width 0.1) (tstamp 06c3c0e6-7385-4c0b-9f22-d75dd843999d))
(fp_line (start 6.98 3.25) (end 21.5 3.25) (layer "F.Fab") (width 0.1) (tstamp 09b3b400-f689-4913-9c2a-b2fb5a9c8fe9))
(fp_line (start 5.2 0) (end 7 0) (layer "F.Fab") (width 0.1) (tstamp 1cd0ab3b-0f4f-4cc1-9e4e-c3de697a4b0c))
(fp_line (start 0 0) (end 3.5 0) (layer "F.Fab") (width 0.1) (tstamp 370894ef-352b-48a4-96be-27098b7d9461))
(fp_line (start 3.5 3.25) (end 5.18 3.25) (layer "F.Fab") (width 0.1) (tstamp 3c84e368-3edc-42e0-8982-20119cfb45c2))
(fp_line (start 5.18 3.25) (end 6.08 2.35) (layer "F.Fab") (width 0.1) (tstamp 58f08ba5-d0e3-43fb-8beb-54efdce75f59))
(fp_line (start 6.08 -2.35) (end 6.98 -3.25) (layer "F.Fab") (width 0.1) (tstamp 5bf8b68b-0b4d-40fe-a110-744583af3d4a))
(fp_line (start 3.5 -3.25) (end 3.5 3.25) (layer "F.Fab") (width 0.1) (tstamp 6854b04c-649e-4a30-b3ab-bda4116a5800))
(fp_line (start 3.5 -3.25) (end 5.18 -3.25) (layer "F.Fab") (width 0.1) (tstamp 8c26551c-34ed-4948-86f2-5130f204da63))
(fp_line (start 21.5 -3.25) (end 21.5 3.25) (layer "F.Fab") (width 0.1) (tstamp 95b82f4c-5c3b-488f-bcd4-94fa52f1c68a))
(fp_line (start 25 0) (end 21.5 0) (layer "F.Fab") (width 0.1) (tstamp acf4f9ad-dce8-45ef-b6fe-68166c97c929))
(fp_line (start 6.08 2.35) (end 6.98 3.25) (layer "F.Fab") (width 0.1) (tstamp b1538173-2109-4b6b-b681-1a93dc0f2cb2))
(fp_line (start 6.1 -0.9) (end 6.1 0.9) (layer "F.Fab") (width 0.1) (tstamp bbf21b15-3165-4683-902a-e1e739cc2923))
(pad "1" thru_hole rect locked (at 0 0 180) (size 2.4 2.4) (drill 1.2) (layers *.Cu *.Mask)
(net 17 "VCC") (pintype "passive") (tstamp d6f6699b-7183-4350-ba44-c47e828a3a04))
(pad "2" thru_hole oval locked (at 25 0 180) (size 2.4 2.4) (drill 1.2) (layers *.Cu *.Mask)
(net 2 "GND") (pintype "passive") (tstamp fef03265-6842-4b6b-8bc1-b07c32ea999b))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_THT.3dshapes/CP_Axial_L18.0mm_D6.5mm_P25.00mm_Horizontal.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_THT:CP_Axial_L18.0mm_D6.5mm_P25.00mm_Horizontal" (layer "F.Cu")
(tedit 5A533291) (tstamp 00000000-0000-0000-0000-000054032b95)
(at 84.582 90.17)
(descr "CP, Axial series, Axial, Horizontal, pin pitch=25mm, , length*diameter=18*6.5mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf")
(tags "CP Axial series Axial Horizontal pin pitch 25mm length 18mm diameter 6.5mm Electrolytic Capacitor")
(property "Sheetfile" "pic_programmer.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-0000442a501d")
(attr through_hole)
(fp_text reference "C2" (at 12.5 -4.31) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp aa48eae4-6e15-433f-9def-5183e99398e3)
)
(fp_text value "220uF" (at 12.5 4.31) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 68a02e9a-531b-41b7-ba11-1efc207257ed)
)
(fp_text user "${REFERENCE}" (at 12.5 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0c28cb60-9c74-4a92-9d1c-ec123d72ac9f)
)
(fp_line (start 1.44 0) (end 3.38 0) (layer "F.SilkS") (width 0.12) (tstamp 0838c6f9-4917-4e34-952b-01a632be4936))
(fp_line (start 21.62 -3.37) (end 21.62 3.37) (layer "F.SilkS") (width 0.12) (tstamp 0bfb1498-5dc7-4c32-9af3-2d3733ed674e))
(fp_line (start 5.18 -3.37) (end 6.08 -2.47) (layer "F.SilkS") (width 0.12) (tstamp 22f2f4ab-7449-4a5e-812e-55efc5e753c2))
(fp_line (start 3.38 -3.37) (end 3.38 3.37) (layer "F.SilkS") (width 0.12) (tstamp 339b5707-a09c-4e41-ba05-09e4e443d40f))
(fp_line (start 1.28 -2.6) (end 3.08 -2.6) (layer "F.SilkS") (width 0.12) (tstamp 43e36072-d326-461b-ae26-fbff8be5ce0b))
(fp_line (start 2.18 -3.5) (end 2.18 -1.7) (layer "F.SilkS") (width 0.12) (tstamp 443bf32b-b6de-4e87-93f1-861790ce5c9e))
(fp_line (start 6.98 3.37) (end 21.62 3.37) (layer "F.SilkS") (width 0.12) (tstamp 7dc3ef00-ce98-4544-b653-afcab3642bbb))
(fp_line (start 5.18 3.37) (end 6.08 2.47) (layer "F.SilkS") (width 0.12) (tstamp 833b0367-baaf-40bd-af88-11f7f099e55a))
(fp_line (start 23.56 0) (end 21.62 0) (layer "F.SilkS") (width 0.12) (tstamp 89e6645e-4577-4011-a62a-f8046395f600))
(fp_line (start 3.38 3.37) (end 5.18 3.37) (layer "F.SilkS") (width 0.12) (tstamp 9c1fbb7e-e894-428f-9eaf-a4fc16276f13))
(fp_line (start 6.08 2.47) (end 6.98 3.37) (layer "F.SilkS") (width 0.12) (tstamp a4a2ffb0-caae-43eb-89c1-bcefd96a643a))
(fp_line (start 6.08 -2.47) (end 6.98 -3.37) (layer "F.SilkS") (width 0.12) (tstamp ad50f8e8-3490-439a-a743-d294d1ddd746))
(fp_line (start 6.98 -3.37) (end 21.62 -3.37) (layer "F.SilkS") (width 0.12) (tstamp e012e40a-d3ef-40e1-92d4-99064a8464f2))
(fp_line (start 3.38 -3.37) (end 5.18 -3.37) (layer "F.SilkS") (width 0.12) (tstamp ea7cc236-4615-4c6f-831e-d8bca299aff1))
(fp_line (start -1.45 -3.65) (end -1.45 3.65) (layer "F.CrtYd") (width 0.05) (tstamp 3c35e735-e26c-4d32-b852-95157d7389c0))
(fp_line (start -1.45 3.65) (end 26.45 3.65) (layer "F.CrtYd") (width 0.05) (tstamp 458b574c-711a-4af9-9904-bd66ddb5f2d0))
(fp_line (start 26.45 3.65) (end 26.45 -3.65) (layer "F.CrtYd") (width 0.05) (tstamp bfa8d67b-f436-4ac9-9e1b-16e06d2ee626))
(fp_line (start 26.45 -3.65) (end -1.45 -3.65) (layer "F.CrtYd") (width 0.05) (tstamp dbaeb9f9-a22e-4269-ba9a-601f721445fd))
(fp_line (start 6.1 -0.9) (end 6.1 0.9) (layer "F.Fab") (width 0.1) (tstamp 1a69db18-a455-4f13-b792-084ebb87f06e))
(fp_line (start 3.5 -3.25) (end 3.5 3.25) (layer "F.Fab") (width 0.1) (tstamp 34a83502-cb47-4aaf-9e3d-905f464d213b))
(fp_line (start 6.08 2.35) (end 6.98 3.25) (layer "F.Fab") (width 0.1) (tstamp 5afd39ca-f655-476f-a8fe-0efac88de620))
(fp_line (start 5.18 3.25) (end 6.08 2.35) (layer "F.Fab") (width 0.1) (tstamp 62e22715-b08f-436e-80e7-681105d7f81c))
(fp_line (start 25 0) (end 21.5 0) (layer "F.Fab") (width 0.1) (tstamp 6eeb52ca-601e-4597-b91c-8b1ffa1a736f))
(fp_line (start 21.5 -3.25) (end 21.5 3.25) (layer "F.Fab") (width 0.1) (tstamp 7222ab27-2c87-437c-83ca-40c2cae2f620))
(fp_line (start 0 0) (end 3.5 0) (layer "F.Fab") (width 0.1) (tstamp 7ea40392-a3f8-49a4-a9eb-284a2fa08e46))
(fp_line (start 6.08 -2.35) (end 6.98 -3.25) (layer "F.Fab") (width 0.1) (tstamp 8212aa03-9c21-4e6b-99e2-1cf48c668c1a))
(fp_line (start 5.18 -3.25) (end 6.08 -2.35) (layer "F.Fab") (width 0.1) (tstamp b8442aa2-466a-4fe9-aaae-23514e7cdb32))
(fp_line (start 3.5 3.25) (end 5.18 3.25) (layer "F.Fab") (width 0.1) (tstamp b9505e02-ffa3-412b-8c1c-1f4d8d9e742f))
(fp_line (start 6.98 3.25) (end 21.5 3.25) (layer "F.Fab") (width 0.1) (tstamp c157b7c0-04fa-4dc7-8994-a2845c99fe51))
(fp_line (start 5.2 0) (end 7 0) (layer "F.Fab") (width 0.1) (tstamp d8dc704e-3f8c-43a9-a035-42b5c5814702))
(fp_line (start 3.5 -3.25) (end 5.18 -3.25) (layer "F.Fab") (width 0.1) (tstamp de60cfdf-8d29-4dc9-974e-50f222192786))
(fp_line (start 6.98 -3.25) (end 21.5 -3.25) (layer "F.Fab") (width 0.1) (tstamp fad0938b-0e22-476f-9b73-18143ceea4ae))
(pad "1" thru_hole rect locked (at 0 0) (size 2.4 2.4) (drill 1.2) (layers *.Cu *.Mask)
(net 3 "Net-(C2-Pad1)") (pintype "passive") (tstamp 8eecaa29-e736-43be-a8d5-7837dea7301c))
(pad "2" thru_hole oval locked (at 25 0) (size 2.4 2.4) (drill 1.2) (layers *.Cu *.Mask)
(net 2 "GND") (pintype "passive") (tstamp f5173a34-9b96-497d-a904-9eb76e760adb))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_THT.3dshapes/CP_Axial_L18.0mm_D6.5mm_P25.00mm_Horizontal.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "MountingHole:MountingHole_4.3mm_M4" (layer "F.Cu")
(tedit 5B252FAB) (tstamp 00000000-0000-0000-0000-000054033012)
(at 77.47 135.89)
(descr "Mounting Hole 4.3mm, no annular, M4")
(tags "mounting hole 4.3mm no annular m4")
(property "Sheetfile" "pic_programmer.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000054020bea")
(attr exclude_from_pos_files)
(fp_text reference "P101" (at 6.13 -2.99) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8cd9cfef-ac84-4411-b905-069b67555d68)
)
(fp_text value "CONN_1" (at 8.03 -1.09) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7779c771-31ea-46e8-a62b-48e204b64c16)
)
(fp_text user "${REFERENCE}" (at 0.3 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1e915860-6845-4537-848e-de99a0fb6d46)
)
(fp_circle (center 0 0) (end 4.3 0) (layer "Cmts.User") (width 0.15) (fill none) (tstamp b046c392-0992-4bcc-8e4f-5e8c47abde3b))
(fp_circle (center 0 0) (end 4.55 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp 97b90ddc-6c43-4f8d-b5e3-1d18d164f2cf))
(pad "" np_thru_hole circle locked (at 0 0) (size 4.3 4.3) (drill 4.3) (layers *.Cu *.Mask) (tstamp f702b9f8-b011-4a1a-92fd-f7380efb2ce1))
)
(footprint "MountingHole:MountingHole_4.3mm_M4" (layer "F.Cu")
(tedit 5B252FB1) (tstamp 00000000-0000-0000-0000-000054033017)
(at 158.75 135.89)
(descr "Mounting Hole 4.3mm, no annular, M4")
(tags "mounting hole 4.3mm no annular m4")
(property "Sheetfile" "pic_programmer.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000054020da9")
(attr exclude_from_pos_files)
(fp_text reference "P102" (at 0 -5.3) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 049c5695-5008-4360-8124-4cc1362d2812)
)
(fp_text value "CONN_1" (at 9.05 0.91) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ae856f32-df05-49c3-b808-17ff73767a99)
)
(fp_text user "${REFERENCE}" (at 0.3 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a27cfe0e-0597-4e5c-b7a3-14c58912d4ac)
)
(fp_circle (center 0 0) (end 4.3 0) (layer "Cmts.User") (width 0.15) (fill none) (tstamp acf263aa-6c80-4f2c-828f-11b97a6ea405))
(fp_circle (center 0 0) (end 4.55 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp 1c968f8a-4f2b-4b9b-99c3-c8ecb94dce68))
(pad "" np_thru_hole circle locked (at 0 0) (size 4.3 4.3) (drill 4.3) (layers *.Cu *.Mask) (tstamp 57e64010-faa7-496d-b088-db2cb32faf56))
)
(footprint "MountingHole:MountingHole_4.3mm_M4" (layer "F.Cu")
(tedit 5B252FB5) (tstamp 00000000-0000-0000-0000-00005403301c)
(at 229.87 135.89)
(descr "Mounting Hole 4.3mm, no annular, M4")
(tags "mounting hole 4.3mm no annular m4")
(property "Sheetfile" "pic_programmer.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000054020dc2")
(attr exclude_from_pos_files)
(fp_text reference "P103" (at 0 -5.3) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5faf6d39-47c3-4e28-918c-38580d215444)
)
(fp_text value "CONN_1" (at -7.87 0.01) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 87d69295-e510-4dcb-95ad-6e6007140ea0)
)
(fp_text user "${REFERENCE}" (at 0.3 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 10938e75-39d7-4e16-8f78-1e46ad8c1c1c)
)
(fp_circle (center 0 0) (end 4.3 0) (layer "Cmts.User") (width 0.15) (fill none) (tstamp 95269006-6a1e-4d79-b9c0-0d1b56f7d132))
(fp_circle (center 0 0) (end 4.55 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp 91913326-15c1-4e6d-99cf-148aefbe7448))
(pad "" np_thru_hole circle locked (at 0 0) (size 4.3 4.3) (drill 4.3) (layers *.Cu *.Mask) (tstamp 4cec2c2b-3c96-41e5-8c1d-d2c6e43032c3))
)
(footprint "MountingHole:MountingHole_4.3mm_M4" (layer "F.Cu")
(tedit 5B252FA3) (tstamp 00000000-0000-0000-0000-000054033021)
(at 229.87 44.45)
(descr "Mounting Hole 4.3mm, no annular, M4")
(tags "mounting hole 4.3mm no annular m4")
(property "Sheetfile" "pic_programmer.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000054020de3")
(attr exclude_from_pos_files)
(fp_text reference "P104" (at -7.87 -1.65) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4e6d2b42-b74f-4249-9e70-0e2dee1a7c30)
)
(fp_text value "CONN_1" (at 0 5.3) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp fe13b83f-e21e-4544-9377-7a58960c4baf)
)
(fp_text user "${REFERENCE}" (at 0.3 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 320d2722-5aa6-484e-b2e0-4737947cafca)
)
(fp_circle (center 0 0) (end 4.3 0) (layer "Cmts.User") (width 0.15) (fill none) (tstamp f2a80f32-d10d-45f4-8ce0-6e6e8f518263))
(fp_circle (center 0 0) (end 4.55 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp 85654bcf-96da-450b-b7a4-bf36800dbf16))
(pad "" np_thru_hole circle locked (at 0 0) (size 4.3 4.3) (drill 4.3) (layers *.Cu *.Mask) (tstamp ea761a16-54fb-40fb-8f91-0398af43f399))
)
(footprint "MountingHole:MountingHole_4.3mm_M4" (layer "F.Cu")
(tedit 5B252F9E) (tstamp 00000000-0000-0000-0000-000054033026)
(at 158.75 44.45)
(descr "Mounting Hole 4.3mm, no annular, M4")
(tags "mounting hole 4.3mm no annular m4")
(property "Sheetfile" "pic_programmer.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000054020e5d")
(attr exclude_from_pos_files)
(fp_text reference "P105" (at -6.75 -1.45) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d0794288-1130-4b57-b648-6aa6fa3f95c3)
)
(fp_text value "CONN_1" (at 0 5.3) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 24ed7afc-deb5-4bcb-b557-1b6f323d58a0)
)
(fp_text user "${REFERENCE}" (at 0.3 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 17ea189a-2248-4fa0-9101-412333bd2984)
)
(fp_circle (center 0 0) (end 4.3 0) (layer "Cmts.User") (width 0.15) (fill none) (tstamp b7f6ee43-5cd4-40b1-a040-3f7bc557a7c7))
(fp_circle (center 0 0) (end 4.55 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp b195feab-edbf-4d11-89f4-ee9597becef9))
(pad "" np_thru_hole circle locked (at 0 0) (size 4.3 4.3) (drill 4.3) (layers *.Cu *.Mask) (tstamp 651f1c6c-a67f-4b78-b6b1-0dcd9c375932))
)
(footprint "MountingHole:MountingHole_4.3mm_M4" (layer "F.Cu")
(tedit 5B252F9A) (tstamp 00000000-0000-0000-0000-00005403302b)
(at 77.47 44.45)
(descr "Mounting Hole 4.3mm, no annular, M4")
(tags "mounting hole 4.3mm no annular m4")
(property "Sheetfile" "pic_programmer.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000054020e76")
(attr exclude_from_pos_files)
(fp_text reference "P106" (at 0 -5.3) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp cb492fe2-3179-4ef4-81e9-20d24d3d0ec2)
)
(fp_text value "CONN_1" (at 0 5.3) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2658b3ee-31fd-47a5-9e5a-0c893e73923d)
)
(fp_text user "${REFERENCE}" (at 0.3 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1d45d1d3-a3f6-45b4-b8a3-f42108103650)
)
(fp_circle (center 0 0) (end 4.3 0) (layer "Cmts.User") (width 0.15) (fill none) (tstamp 17ffc83d-40fe-4539-ac8c-a4ebe7f76333))
(fp_circle (center 0 0) (end 4.55 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp c5f19aa5-de52-46fe-b037-042a48c8e23e))
(pad "" np_thru_hole circle locked (at 0 0) (size 4.3 4.3) (drill 4.3) (layers *.Cu *.Mask) (tstamp 12bba8e0-c9ca-4231-9726-7619a1224dbe))
)
(footprint "footprints:40tex-Ell600" (layer "F.Cu")
(tedit 5D822BD5) (tstamp 00000000-0000-0000-0000-0000541e1940)
(at 175.26 50.8)
(descr "Support TEXTOOL Dil 40 pins, pads elliptiques, e=600 mils")
(tags "DEV")
(property "Sheetfile" "pic_sockets.kicad_sch")
(property "Sheetname" "pic_sockets")
(path "/00000000-0000-0000-0000-00004804a5e2/00000000-0000-0000-0000-0000442a88ed")
(attr through_hole)
(fp_text reference "P3" (at -6.66 -3.6 180) (layer "F.SilkS")
(effects (font (size 2.032 1.27) (thickness 0.3048)))
(tstamp d3a9535d-da29-4069-b10a-7238a4950ede)
)
(fp_text value "SUPP40" (at -9.16 2.5 180) (layer "F.SilkS")
(effects (font (size 2.032 1.27) (thickness 0.3048)))
(tstamp a5e53a04-c8ec-4338-b9a4-386e2476d6c7)
)
(fp_line (start -3.81 48.26) (end -7.62 48.26) (layer "F.SilkS") (width 0.381) (tstamp 0273552b-3e98-41f3-8474-52bf9daa06d1))
(fp_line (start 22.86 -5.08) (end 19.05 -5.08) (layer "F.SilkS") (width 0.381) (tstamp 159d84e9-c16d-42c9-a49d-179b4251dbd4))
(fp_line (start 19.05 54.61) (end 17.78 55.88) (layer "F.SilkS") (width 0.381) (tstamp 43ec0347-7410-42d8-9c1b-16e78b655de6))
(fp_line (start -3.81 -14.605) (end -3.81 -8.89) (layer "F.SilkS") (width 0.381) (tstamp 4c97cc93-7f2c-40e4-ab5e-7abe71f9c2da))
(fp_line (start 19.05 -8.89) (end 19.05 54.61) (layer "F.SilkS") (width 0.381) (tstamp 52e958d1-4a82-49a0-97d2-029a0692699b))
(fp_line (start -2.54 -5.08) (end -3.81 -5.08) (layer "F.SilkS") (width 0.381) (tstamp 54410dcc-4b4e-452c-b476-b0cfdb02f6e6))
(fp_line (start 2.54 -5.08) (end 12.7 -5.08) (layer "F.SilkS") (width 0.381) (tstamp 5664dd72-7e5a-4608-bcdd-24cef06ff1a6))
(fp_line (start -5.08 -22.86) (end -5.08 -16.51) (layer "F.SilkS") (width 0.381) (tstamp 605873d5-3831-4a95-800b-3ccfad4f587c))
(fp_line (start 17.78 55.88) (end -2.54 55.88) (layer "F.SilkS") (width 0.381) (tstamp 6ff2d891-614d-49c4-9683-d96db017ea6e))
(fp_line (start -2.54 -14.605) (end -2.54 -5.08) (layer "F.SilkS") (width 0.381) (tstamp 70998a03-d39f-419b-afa8-6ec9b7800317))
(fp_line (start 17.78 -10.16) (end 19.05 -8.89) (layer "F.SilkS") (width 0.381) (tstamp 787d2789-037e-4e3f-ae16-220bce528695))
(fp_line (start -3.81 54.61) (end -3.81 -8.89) (layer "F.SilkS") (width 0.381) (tstamp 82e293cb-6831-45c7-91a4-038214f427ab))
(fp_line (start 12.7 50.8) (end 2.54 50.8) (layer "F.SilkS") (width 0.381) (tstamp 9efb6a99-d6dc-45da-9591-c68231a62c17))
(fp_line (start -2.54 -10.16) (end 17.78 -10.16) (layer "F.SilkS") (width 0.381) (tstamp b92f2be5-93d7-4c38-9906-2e3b548bd5cf))
(fp_line (start -2.54 55.88) (end -3.81 54.61) (layer "F.SilkS") (width 0.381) (tstamp bea5c2ab-ca18-48ba-8ddd-6aa2a27bfa00))
(fp_line (start 19.05 0) (end 22.86 0) (layer "F.SilkS") (width 0.381) (tstamp d22bdc95-c760-48e4-9a10-95136a78bb31))
(fp_line (start 12.7 -5.08) (end 12.7 50.8) (layer "F.SilkS") (width 0.381) (tstamp d31364f2-601c-4263-9e2e-c28f69278a1a))
(fp_line (start 2.54 50.8) (end 2.54 -5.08) (layer "F.SilkS") (width 0.381) (tstamp d82b9b9c-c5ea-4b73-8fe9-b7055687ade4))
(fp_line (start -1.27 -16.51) (end -1.27 -22.86) (layer "F.SilkS") (width 0.381) (tstamp dca7e1d2-5bc0-4538-b507-ce5828f99c6d))
(fp_line (start -7.62 43.18) (end -3.81 43.18) (layer "F.SilkS") (width 0.381) (tstamp f90e0fdc-af4d-4d17-8f60-b0814f674db0))
(fp_line (start -3.81 -8.89) (end -2.54 -10.16) (layer "F.SilkS") (width 0.381) (tstamp fba31ce3-970b-4318-98d2-374064f48d38))
(fp_arc (start 21.59 -2.54) (end 22.859999 -0.000001) (angle -126.9) (layer "F.SilkS") (width 0.381) (tstamp 677a2eaf-488f-4a2f-9654-bbc834c6a56a))
(fp_arc (start -6.35 45.72) (end -7.619999 43.180001) (angle -126.9) (layer "F.SilkS") (width 0.381) (tstamp 84d22f7a-2d73-4568-92f5-a373ea557f9e))
(fp_arc (start -3.175 -16.51) (end -5.08 -16.51) (angle -180) (layer "F.SilkS") (width 0.381) (tstamp a4554ab3-04a8-4c7f-807f-54eda56252b8))
(fp_arc (start -3.175 -22.86) (end -1.27 -22.846) (angle -180.4210638) (layer "F.SilkS") (width 0.381) (tstamp ada48d1a-11ae-4d7e-ac17-53afa0892077))
(fp_line (start 19.62 0.63) (end 19.62 56.63) (layer "F.CrtYd") (width 0.15) (tstamp 24bff77d-5801-41e1-96dc-8571d837bf5e))
(fp_line (start 24.62 -5.87) (end 24.62 0.63) (layer "F.CrtYd") (width 0.15) (tstamp 38207257-541c-4f7b-8a96-6fe3ab98436a))
(fp_line (start -5.88 -25.87) (end -0.38 -25.87) (layer "F.CrtYd") (width 0.15) (tstamp 423fdf7b-19a5-4fef-886d-9914c39326cc))
(fp_line (start -9.38 48.63) (end -9.38 42.63) (layer "F.CrtYd") (width 0.15) (tstamp 4db92424-0511-47cd-b05d-31a1769698b0))
(fp_line (start 19.62 -10.87) (end 19.62 -5.87) (layer "F.CrtYd") (width 0.15) (tstamp 5336b245-d17a-4662-bc03-9cefc8a2ed06))
(fp_line (start -0.38 -25.87) (end -0.38 -10.87) (layer "F.CrtYd") (width 0.15) (tstamp 5fb007ce-2b53-49ab-ad39-ca4d78c88da7))
(fp_line (start -5.88 -10.87) (end -5.88 -25.87) (layer "F.CrtYd") (width 0.15) (tstamp 6c1eff16-de94-4bfd-bcc2-9a759416d103))
(fp_line (start 24.62 0.63) (end 19.62 0.63) (layer "F.CrtYd") (width 0.15) (tstamp 7efa672f-25af-4eff-86f4-66b96849c270))
(fp_line (start -9.38 42.63) (end -4.38 42.63) (layer "F.CrtYd") (width 0.15) (tstamp 9419eddc-7d26-4a15-8d8e-efabf6e03135))
(fp_line (start -4.38 -10.87) (end -5.88 -10.87) (layer "F.CrtYd") (width 0.15) (tstamp 975bcc8d-a23b-4803-b3fa-fede04b1ddea))
(fp_line (start -4.38 42.63) (end -4.38 -10.87) (layer "F.CrtYd") (width 0.15) (tstamp aa0cdc4d-c54c-48a5-8520-12a166974ccb))
(fp_line (start -4.38 56.63) (end -4.38 48.63) (layer "F.CrtYd") (width 0.15) (tstamp af066034-192f-473d-9f86-f2eef3a07a41))
(fp_line (start -0.38 -10.87) (end 19.62 -10.87) (layer "F.CrtYd") (width 0.15) (tstamp c18ce508-60ef-4b08-9313-667c4c228a98))
(fp_line (start 19.62 56.63) (end -4.38 56.63) (layer "F.CrtYd") (width 0.15) (tstamp c8b33f89-ecb7-4e35-9396-72de53894534))
(fp_line (start -4.38 48.63) (end -9.38 48.63) (layer "F.CrtYd") (width 0.15) (tstamp d515aa0d-e518-48f9-8434-958c4d7a2b84))
(fp_line (start 19.62 -5.87) (end 24.62 -5.87) (layer "F.CrtYd") (width 0.15) (tstamp e952f54c-a9a0-4a4d-8b4f-7489754c6490))
(pad "1" thru_hole oval locked (at 0 0 270) (size 1.6 2.8) (drill 1) (layers *.Cu *.Mask)
(net 38 "/VPP{slash}MCLR") (pinfunction "1") (pintype "passive") (tstamp 91e33e40-a2a4-43f5-b26c-09b293bda30a))
(pad "2" thru_hole oval locked (at 0 2.54 270) (size 1.6 2.8) (drill 1) (layers *.Cu *.Mask)
(net 61 "unconnected-(P3-Pad2)") (pinfunction "2") (pintype "passive+no_connect") (tstamp 517a71b2-aca9-4cee-a779-8814e22833ce))
(pad "3" thru_hole oval locked (at 0 5.08 270) (size 1.6 2.8) (drill 1) (layers *.Cu *.Mask)
(net 62 "unconnected-(P3-Pad3)") (pinfunction "3") (pintype "passive+no_connect") (tstamp 3d0e711f-2ed8-41c5-b5dd-8e7cd40c9e32))
(pad "4" thru_hole oval locked (at 0 7.62 270) (size 1.6 2.8) (drill 1) (layers *.Cu *.Mask)
(net 63 "unconnected-(P3-Pad4)") (pinfunction "4") (pintype "passive+no_connect") (tstamp 2e43e2b5-a003-4c69-99cd-fba898717262))
(pad "5" thru_hole oval locked (at 0 10.16 270) (size 1.6 2.8) (drill 1) (layers *.Cu *.Mask)
(net 64 "unconnected-(P3-Pad5)") (pinfunction "5") (pintype "passive+no_connect") (tstamp add21356-d6a1-48e1-9391-107248f76eaf))
(pad "6" thru_hole oval locked (at 0 12.7 270) (size 1.6 2.8) (drill 1) (layers *.Cu *.Mask)
(net 65 "unconnected-(P3-Pad6)") (pinfunction "6") (pintype "passive+no_connect") (tstamp 7be783bd-5736-4b0d-af5c-073ed2352a6a))
(pad "7" thru_hole oval locked (at 0 15.24 270) (size 1.6 2.8) (drill 1) (layers *.Cu *.Mask)
(net 66 "unconnected-(P3-Pad7)") (pinfunction "7") (pintype "passive+no_connect") (tstamp 2016e77a-115a-4d86-8dc3-a1b966a8ac45))
(pad "8" thru_hole oval locked (at 0 17.78 270) (size 1.6 2.8) (drill 1) (layers *.Cu *.Mask)
(net 2 "GND") (pinfunction "8") (pintype "passive") (tstamp 98f031eb-708e-47e7-9a31-c5973fd50b0e))
(pad "9" thru_hole oval locked (at 0 20.32 270) (size 1.6 2.8) (drill 1) (layers *.Cu *.Mask)
(net 67 "unconnected-(P3-Pad9)") (pinfunction "9") (pintype "passive+no_connect") (tstamp b3a3cef0-6e0a-4cc4-9024-34d1ae7823be))
(pad "10" thru_hole oval locked (at 0 22.86 270) (size 1.6 2.8) (drill 1) (layers *.Cu *.Mask)
(net 68 "unconnected-(P3-Pad10)") (pinfunction "10") (pintype "passive+no_connect") (tstamp 7128bb3b-9046-4824-a320-887298110e7a))
(pad "11" thru_hole oval locked (at 0 25.4 270) (size 1.6 2.8) (drill 1) (layers *.Cu *.Mask)
(net 24 "/pic_sockets/VCC_PIC") (pinfunction "11") (pintype "passive") (tstamp c97a4483-7831-4fde-9102-bda8e3ff0bdd))
(pad "12" thru_hole oval locked (at 0 27.94 270) (size 1.6 2.8) (drill 1) (layers *.Cu *.Mask)
(net 2 "GND") (pinfunction "12") (pintype "passive") (tstamp e158901c-894c-4b5d-bd64-6b10380d4fdb))
(pad "13" thru_hole oval locked (at 0 30.48 270) (size 1.6 2.8) (drill 1) (layers *.Cu *.Mask)
(net 69 "unconnected-(P3-Pad13)") (pinfunction "13") (pintype "passive+no_connect") (tstamp 498861aa-7648-4371-b55e-a9a1d182bd1e))
(pad "14" thru_hole oval locked (at 0 33.02 270) (size 1.6 2.8) (drill 1) (layers *.Cu *.Mask)
(net 70 "unconnected-(P3-Pad14)") (pinfunction "14") (pintype "passive+no_connect") (tstamp e59f76b9-3823-4316-b88d-df303dde8059))
(pad "15" thru_hole oval locked (at 0 35.56 270) (size 1.6 2.8) (drill 1) (layers *.Cu *.Mask)
(net 71 "unconnected-(P3-Pad15)") (pinfunction "15") (pintype "passive+no_connect") (tstamp 0e920a3b-6990-4d0a-80c4-fcb79178a933))
(pad "16" thru_hole oval locked (at 0 38.1 270) (size 1.6 2.8) (drill 1) (layers *.Cu *.Mask)
(net 72 "unconnected-(P3-Pad16)") (pinfunction "16") (pintype "passive+no_connect") (tstamp f0d19abf-63fa-49c1-a934-99d5ff6c1850))
(pad "17" thru_hole oval locked (at 0 40.64 270) (size 1.6 2.8) (drill 1) (layers *.Cu *.Mask)
(net 73 "unconnected-(P3-Pad17)") (pinfunction "17") (pintype "passive+no_connect") (tstamp e00c888a-1053-4408-bbe5-6038bc7b17f7))
(pad "18" thru_hole oval locked (at 0 43.18 270) (size 1.6 2.8) (drill 1) (layers *.Cu *.Mask)
(net 74 "unconnected-(P3-Pad18)") (pinfunction "18") (pintype "passive+no_connect") (tstamp f6884b76-74f4-4a46-bb23-fef255c0e1f8))
(pad "19" thru_hole oval locked (at 0 45.72 270) (size 1.6 2.8) (drill 1) (layers *.Cu *.Mask)
(net 75 "unconnected-(P3-Pad19)") (pinfunction "19") (pintype "passive+no_connect") (tstamp ce77deb9-d459-433f-b73e-1d0d196b7750))
(pad "20" thru_hole oval locked (at 0 48.26 270) (size 1.6 2.8) (drill 1) (layers *.Cu *.Mask)
(net 76 "unconnected-(P3-Pad20)") (pinfunction "20") (pintype "passive+no_connect") (tstamp ee1a4c3c-c825-4903-b11b-672e277dbec7))
(pad "21" thru_hole oval locked (at 15.24 48.26 270) (size 1.6 2.8) (drill 1) (layers *.Cu *.Mask)
(net 77 "unconnected-(P3-Pad21)") (pinfunction "21") (pintype "passive+no_connect") (tstamp 1b79b1bb-f71e-43e5-b1d9-bcf609171903))
(pad "22" thru_hole oval locked (at 15.24 45.72 270) (size 1.6 2.8) (drill 1) (layers *.Cu *.Mask)
(net 78 "unconnected-(P3-Pad22)") (pinfunction "22") (pintype "passive+no_connect") (tstamp 8bb9dc4d-c396-40f1-a9db-f103eca36fa4))
(pad "23" thru_hole oval locked (at 15.24 43.18 270) (size 1.6 2.8) (drill 1) (layers *.Cu *.Mask)
(net 79 "unconnected-(P3-Pad23)") (pinfunction "23") (pintype "passive+no_connect") (tstamp e9b75792-40ab-49fe-9dfb-497f466d421b))
(pad "24" thru_hole oval locked (at 15.24 40.64 270) (size 1.6 2.8) (drill 1) (layers *.Cu *.Mask)
(net 80 "unconnected-(P3-Pad24)") (pinfunction "24") (pintype "passive+no_connect") (tstamp cd0f6cf4-58c3-496e-a7de-a306c8dc85a6))
(pad "25" thru_hole oval locked (at 15.24 38.1 270) (size 1.6 2.8) (drill 1) (layers *.Cu *.Mask)
(net 81 "unconnected-(P3-Pad25)") (pinfunction "25") (pintype "passive+no_connect") (tstamp ce5ad566-1c3c-4728-84da-ccdce367dc0f))
(pad "26" thru_hole oval locked (at 15.24 35.56 270) (size 1.6 2.8) (drill 1) (layers *.Cu *.Mask)
(net 82 "unconnected-(P3-Pad26)") (pinfunction "26") (pintype "passive+no_connect") (tstamp 4209c925-1f23-4c81-9060-1e8c0c017df1))
(pad "27" thru_hole oval locked (at 15.24 33.02 270) (size 1.6 2.8) (drill 1) (layers *.Cu *.Mask)
(net 83 "unconnected-(P3-Pad27)") (pinfunction "27") (pintype "passive+no_connect") (tstamp 56fdbe87-4cac-414b-97e8-1f93b5aaabbc))
(pad "28" thru_hole oval locked (at 15.24 30.48 270) (size 1.6 2.8) (drill 1) (layers *.Cu *.Mask)
(net 84 "unconnected-(P3-Pad28)") (pinfunction "28") (pintype "passive+no_connect") (tstamp bc17b457-809e-4436-a17b-5935bc6c87a3))
(pad "29" thru_hole oval locked (at 15.24 27.94 270) (size 1.6 2.8) (drill 1) (layers *.Cu *.Mask)
(net 85 "unconnected-(P3-Pad29)") (pinfunction "29") (pintype "passive+no_connect") (tstamp 2583a9f4-1811-4c91-a39b-ffc04e32ecf4))
(pad "30" thru_hole oval locked (at 15.24 25.4 270) (size 1.6 2.8) (drill 1) (layers *.Cu *.Mask)
(net 86 "unconnected-(P3-Pad30)") (pinfunction "30") (pintype "passive+no_connect") (tstamp ea718e9b-c604-439c-824d-331b74682844))
(pad "31" thru_hole oval locked (at 15.24 22.86 270) (size 1.6 2.8) (drill 1) (layers *.Cu *.Mask)
(net 2 "GND") (pinfunction "31") (pintype "passive") (tstamp df9748c5-1ee2-4cbc-855f-5424082c68e8))
(pad "32" thru_hole oval locked (at 15.24 20.32 270) (size 1.6 2.8) (drill 1) (layers *.Cu *.Mask)
(net 24 "/pic_sockets/VCC_PIC") (pinfunction "32") (pintype "passive") (tstamp 72c5ed8d-71b6-4d1b-9088-82da6d0363fc))
(pad "33" thru_hole oval locked (at 15.24 17.78 270) (size 1.6 2.8) (drill 1) (layers *.Cu *.Mask)
(net 87 "unconnected-(P3-Pad33)") (pinfunction "33") (pintype "passive+no_connect") (tstamp 084097a1-f140-4a9b-aebe-a9e5489e3d23))
(pad "34" thru_hole oval locked (at 15.24 15.24 270) (size 1.6 2.8) (drill 1) (layers *.Cu *.Mask)
(net 88 "unconnected-(P3-Pad34)") (pinfunction "34") (pintype "passive+no_connect") (tstamp 4389668a-8e42-4025-9c87-f9c7b998ea25))
(pad "35" thru_hole oval locked (at 15.24 12.7 270) (size 1.6 2.8) (drill 1) (layers *.Cu *.Mask)
(net 89 "unconnected-(P3-Pad35)") (pinfunction "35") (pintype "passive+no_connect") (tstamp 43eba470-17c6-43d1-9ed9-b44916a03719))
(pad "36" thru_hole oval locked (at 15.24 10.16 270) (size 1.6 2.8) (drill 1) (layers *.Cu *.Mask)
(net 90 "unconnected-(P3-Pad36)") (pinfunction "36") (pintype "passive+no_connect") (tstamp 68f29480-8260-40f2-b35b-5902d42b7924))
(pad "37" thru_hole oval locked (at 15.24 7.62 270) (size 1.6 2.8) (drill 1) (layers *.Cu *.Mask)
(net 91 "unconnected-(P3-Pad37)") (pinfunction "37") (pintype "passive+no_connect") (tstamp 2e0115c1-dda3-4d16-bd4d-931cc9c2129d))
(pad "38" thru_hole oval locked (at 15.24 5.08 270) (size 1.6 2.8) (drill 1) (layers *.Cu *.Mask)
(net 92 "unconnected-(P3-Pad38)") (pinfunction "38") (pintype "passive+no_connect") (tstamp 3a9bff25-b432-42fb-a7c6-c3920e8195a3))
(pad "39" thru_hole oval locked (at 15.24 2.54 270) (size 1.6 2.8) (drill 1) (layers *.Cu *.Mask)
(net 25 "/CLOCK-RB6") (pinfunction "39") (pintype "passive") (tstamp 649b0a14-7ad8-4513-aa53-b8982430b32b))
(pad "40" thru_hole rect locked (at 15.24 0 270) (size 1.6 2.8) (drill 1) (layers *.Cu *.Mask)
(net 26 "/DATA-RB7") (pinfunction "40") (pintype "passive") (tstamp 4e2bbb61-c085-4d56-8a36-3592d985c655))
(pad "HOLE" thru_hole circle locked (at -6.35 45.72 270) (size 2.8 2.8) (drill 2) (layers *.Cu *.Mask) (tstamp 6bb2a916-4d94-46cb-9f7f-d8f5e60d7926))
(pad "HOLE" thru_hole circle locked (at 21.59 -2.54 270) (size 2.8 2.8) (drill 2) (layers *.Cu *.Mask) (tstamp c011c438-19a1-4499-828c-90d01e444e34))
(model "${KIPRJMOD}/libs/3d_shapes/textool_40.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 90))
)
)
(footprint "Package_DIP:DIP-8_W7.62mm_Socket_LongPads" (layer "F.Cu")
(tedit 5A02E8C5) (tstamp 00000000-0000-0000-0000-00005a212a0f)
(at 179.07 120.65)
(descr "8-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), Socket, LongPads")
(tags "THT DIP DIL PDIP 2.54mm 7.62mm 300mil Socket LongPads")
(property "Sheetfile" "pic_sockets.kicad_sch")
(property "Sheetname" "pic_sockets")
(path "/00000000-0000-0000-0000-00004804a5e2/00000000-0000-0000-0000-0000442a81a5")
(attr through_hole)
(fp_text reference "U6" (at -3.67 2.55) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 484d2bcd-6835-426d-bfc6-7181fc35291c)
)
(fp_text value "PIC_8_PINS" (at 3.81 9.95) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0d07a6e0-7e71-40cf-95a0-0f318b211e84)
)
(fp_text user "${REFERENCE}" (at 3.81 3.81) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0eccb204-a9e8-4195-9516-9305a1d1d8ec)
)
(fp_line (start 9.06 -1.39) (end -1.44 -1.39) (layer "F.SilkS") (width 0.12) (tstamp 175f2f25-c95d-4785-9529-a5cf4dbc1972))
(fp_line (start 1.56 -1.33) (end 1.56 8.95) (layer "F.SilkS") (width 0.12) (tstamp 26004a8a-151c-46a2-a643-091c947152e8))
(fp_line (start 1.56 8.95) (end 6.06 8.95) (layer "F.SilkS") (width 0.12) (tstamp 3b955bee-c80a-483b-b618-2a668ebd98e7))
(fp_line (start 6.06 -1.33) (end 4.81 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 4b6b4707-fef0-4c94-9ad6-5b1c6920238b))
(fp_line (start -1.44 9.01) (end 9.06 9.01) (layer "F.SilkS") (width 0.12) (tstamp 621af92c-816e-4a4c-9544-5d269887e045))
(fp_line (start -1.44 -1.39) (end -1.44 9.01) (layer "F.SilkS") (width 0.12) (tstamp 6609cf1d-1211-4869-8286-b5d944fc6ad2))
(fp_line (start 9.06 9.01) (end 9.06 -1.39) (layer "F.SilkS") (width 0.12) (tstamp 690f0da9-3ee7-40d6-9d5f-32021c4fac20))
(fp_line (start 2.81 -1.33) (end 1.56 -1.33) (layer "F.SilkS") (width 0.12) (tstamp aca06b2a-638a-4e3f-b9c2-44abbb2ff53a))
(fp_line (start 6.06 8.95) (end 6.06 -1.33) (layer "F.SilkS") (width 0.12) (tstamp d9a11333-7d90-4717-8a09-5b17b60f453a))
(fp_arc (start 3.81 -1.33) (end 2.81 -1.33) (angle -180) (layer "F.SilkS") (width 0.12) (tstamp 698ce167-22ee-4875-ad22-443f940975b8))
(fp_line (start -1.55 -1.6) (end -1.55 9.2) (layer "F.CrtYd") (width 0.05) (tstamp 01808051-51cb-440e-a9fa-a68de53f5051))
(fp_line (start 9.15 -1.6) (end -1.55 -1.6) (layer "F.CrtYd") (width 0.05) (tstamp 85aadba2-c3c3-4a38-8325-7d274d283466))
(fp_line (start 9.15 9.2) (end 9.15 -1.6) (layer "F.CrtYd") (width 0.05) (tstamp a8733a4a-cfe0-4f10-86b7-2a80283ba719))
(fp_line (start -1.55 9.2) (end 9.15 9.2) (layer "F.CrtYd") (width 0.05) (tstamp b1bd1577-c580-4d29-ad44-b4318ef507d5))
(fp_line (start 6.985 -1.27) (end 6.985 8.89) (layer "F.Fab") (width 0.1) (tstamp 0cde65f3-229c-49f1-aa2b-9292a23ba3d4))
(fp_line (start 0.635 8.89) (end 0.635 -0.27) (layer "F.Fab") (width 0.1) (tstamp 18b0180b-8149-4a8d-a92f-56ea41545bcd))
(fp_line (start 0.635 -0.27) (end 1.635 -1.27) (layer "F.Fab") (width 0.1) (tstamp 2554aaa0-eade-44cf-8b79-b968be1077d7))
(fp_line (start -1.27 -1.33) (end -1.27 8.95) (layer "F.Fab") (width 0.1) (tstamp 44515a22-5f37-4eee-88a3-3c7207d8bf5d))
(fp_line (start 6.985 8.89) (end 0.635 8.89) (layer "F.Fab") (width 0.1) (tstamp 6d5bbc0d-bead-413b-a994-2740b9675d4e))
(fp_line (start 8.89 -1.33) (end -1.27 -1.33) (layer "F.Fab") (width 0.1) (tstamp 83a1c4ea-c134-4b23-bc84-41b9f2dfa1f7))
(fp_line (start -1.27 8.95) (end 8.89 8.95) (layer "F.Fab") (width 0.1) (tstamp d0be2a2e-e5cc-483c-b31c-095511fd696b))
(fp_line (start 1.635 -1.27) (end 6.985 -1.27) (layer "F.Fab") (width 0.1) (tstamp e329ec38-3dde-4ee5-a0c3-2428ff342297))
(fp_line (start 8.89 8.95) (end 8.89 -1.33) (layer "F.Fab") (width 0.1) (tstamp fa3efa68-ed16-477e-998c-1b5807fd049a))
(pad "1" thru_hole rect locked (at 0 0) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 24 "/pic_sockets/VCC_PIC") (pinfunction "VDD") (pintype "power_in") (tstamp a895138e-c0b3-4c2c-913e-edb95f7112b2))
(pad "2" thru_hole oval locked (at 0 2.54) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 109 "unconnected-(U6-Pad2)") (pinfunction "GP5/OSC1") (pintype "input+no_connect") (tstamp 1dbb8e5c-6d01-437f-9566-989f9e38d6af))
(pad "3" thru_hole oval locked (at 0 5.08) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 110 "unconnected-(U6-Pad3)") (pinfunction "GP4/OSC2") (pintype "input+no_connect") (tstamp 22a570a4-22ea-4f23-9c5d-d3a5f19fe2ed))
(pad "4" thru_hole oval locked (at 0 7.62) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 38 "/VPP{slash}MCLR") (pinfunction "GP3/MCLR") (pintype "input") (tstamp 3d35b417-1485-47fb-944a-29593cab2edf))
(pad "5" thru_hole oval locked (at 7.62 7.62) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 111 "unconnected-(U6-Pad5)") (pinfunction "GP2") (pintype "input+no_connect") (tstamp a4007062-a984-4f07-8a54-6bb858bdafa1))
(pad "6" thru_hole oval locked (at 7.62 5.08) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 25 "/CLOCK-RB6") (pinfunction "GP1") (pintype "input") (tstamp 6230bd0f-8280-4752-9535-ee2f80cac002))
(pad "7" thru_hole oval locked (at 7.62 2.54) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 26 "/DATA-RB7") (pinfunction "GP0") (pintype "input") (tstamp 5b4d1154-9bc5-4db2-9a1d-f01eddf11852))
(pad "8" thru_hole oval locked (at 7.62 0) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 2 "GND") (pinfunction "VSS") (pintype "power_in") (tstamp 97eec270-e99b-43c3-abce-d071c265db58))
(model "${KICAD6_3DMODEL_DIR}/Package_DIP.3dshapes/DIP-8_W7.62mm_Socket.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Package_DIP:DIP-8_W7.62mm_Socket_LongPads" (layer "F.Cu")
(tedit 5A02E8C5) (tstamp 00000000-0000-0000-0000-00005a212a32)
(at 179.07 109.22)
(descr "8-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), Socket, LongPads")
(tags "THT DIP DIL PDIP 2.54mm 7.62mm 300mil Socket LongPads")
(property "Sheetfile" "pic_sockets.kicad_sch")
(property "Sheetname" "pic_sockets")
(path "/00000000-0000-0000-0000-00004804a5e2/00000000-0000-0000-0000-0000442a87f7")
(attr through_hole)
(fp_text reference "U1" (at -3.57 3.38) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 47a3ca58-63e1-4289-bf89-25bf3771e450)
)
(fp_text value "24Cxx" (at 3.81 9.95) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5ded93bf-b169-49d3-aa44-20dc4dfb4c31)
)
(fp_text user "${REFERENCE}" (at 3.81 3.81) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8a92a8c8-a29e-4a10-aacb-dcaf2a0db052)
)
(fp_line (start 6.06 8.95) (end 6.06 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 23cc5658-2d25-407d-b653-053a1fb75330))
(fp_line (start 2.81 -1.33) (end 1.56 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 2fdb2430-d90b-4ce1-b200-a6e135bb915f))
(fp_line (start 9.06 9.01) (end 9.06 -1.39) (layer "F.SilkS") (width 0.12) (tstamp 4514e5e8-20f7-4322-aee8-3b69203132e4))
(fp_line (start 1.56 -1.33) (end 1.56 8.95) (layer "F.SilkS") (width 0.12) (tstamp 7ad07cce-70ff-48b5-8bf7-0f2ad5dfbfef))
(fp_line (start -1.44 -1.39) (end -1.44 9.01) (layer "F.SilkS") (width 0.12) (tstamp 8401fefc-8a8e-4ba2-aa6f-ea02538d36ff))
(fp_line (start 9.06 -1.39) (end -1.44 -1.39) (layer "F.SilkS") (width 0.12) (tstamp a0896dfc-9392-40bd-85df-ccc736c23ce7))
(fp_line (start 1.56 8.95) (end 6.06 8.95) (layer "F.SilkS") (width 0.12) (tstamp afb5881a-81c9-4fa5-b9c5-80debd19ca0c))
(fp_line (start -1.44 9.01) (end 9.06 9.01) (layer "F.SilkS") (width 0.12) (tstamp e3f84129-fea5-421d-9bcb-2071f78cc5e6))
(fp_line (start 6.06 -1.33) (end 4.81 -1.33) (layer "F.SilkS") (width 0.12) (tstamp f9442333-1f67-4d69-af22-6db0ba32951e))
(fp_arc (start 3.81 -1.33) (end 2.81 -1.33) (angle -180) (layer "F.SilkS") (width 0.12) (tstamp fc44df6d-404d-4f1e-9e04-f13d10f649ad))
(fp_line (start -1.55 -1.6) (end -1.55 9.2) (layer "F.CrtYd") (width 0.05) (tstamp 2375c58f-dbce-468f-bd68-b6020609b3b0))
(fp_line (start 9.15 9.2) (end 9.15 -1.6) (layer "F.CrtYd") (width 0.05) (tstamp 3fac7be7-c66e-4889-90d7-be756df3ac30))
(fp_line (start -1.55 9.2) (end 9.15 9.2) (layer "F.CrtYd") (width 0.05) (tstamp aaedd41d-091d-493c-8638-71670d92cbcb))
(fp_line (start 9.15 -1.6) (end -1.55 -1.6) (layer "F.CrtYd") (width 0.05) (tstamp d846e497-072a-485d-a66a-23a3f3471b15))
(fp_line (start 6.985 -1.27) (end 6.985 8.89) (layer "F.Fab") (width 0.1) (tstamp 1be05a54-9898-4104-9f2b-b3ff02703a38))
(fp_line (start 6.985 8.89) (end 0.635 8.89) (layer "F.Fab") (width 0.1) (tstamp 45e52ad5-0e37-4f2b-902f-e7d2f0ceae89))
(fp_line (start 8.89 8.95) (end 8.89 -1.33) (layer "F.Fab") (width 0.1) (tstamp 532ffe80-378d-461a-b41b-0738cee4bb78))
(fp_line (start 0.635 -0.27) (end 1.635 -1.27) (layer "F.Fab") (width 0.1) (tstamp 6827d4b1-af31-4128-8971-6a28ad253e56))
(fp_line (start 1.635 -1.27) (end 6.985 -1.27) (layer "F.Fab") (width 0.1) (tstamp 86fe932c-5569-4926-8cc2-118c77637fc7))
(fp_line (start 0.635 8.89) (end 0.635 -0.27) (layer "F.Fab") (width 0.1) (tstamp 9b98616b-12b3-4eaf-89e6-f51d1f94ac90))
(fp_line (start 8.89 -1.33) (end -1.27 -1.33) (layer "F.Fab") (width 0.1) (tstamp a86067bb-dd1f-4f92-8e63-4a58276d972a))
(fp_line (start -1.27 -1.33) (end -1.27 8.95) (layer "F.Fab") (width 0.1) (tstamp b908524e-ed68-498f-ad0d-d26e3a69a66f))
(fp_line (start -1.27 8.95) (end 8.89 8.95) (layer "F.Fab") (width 0.1) (tstamp bfc1ef8b-25da-4e3d-b4bc-b0f466be71c5))
(pad "1" thru_hole rect locked (at 0 0) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 2 "GND") (pinfunction "A0") (pintype "input") (tstamp fbd075e1-fb1e-4237-9fd1-2e7f5eaa1d7d))
(pad "2" thru_hole oval locked (at 0 2.54) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 2 "GND") (pinfunction "A1") (pintype "input") (tstamp 1ab5fef1-1388-4e12-bf48-4b337d960050))
(pad "3" thru_hole oval locked (at 0 5.08) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 2 "GND") (pinfunction "A2") (pintype "input") (tstamp ce73e262-6bc9-4351-9ddd-d377a07f86d3))
(pad "4" thru_hole oval locked (at 0 7.62) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 2 "GND") (pinfunction "GND") (pintype "power_in") (tstamp affe022b-71c9-4dff-b696-c7b685e3afb0))
(pad "5" thru_hole oval locked (at 7.62 7.62) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 26 "/DATA-RB7") (pinfunction "SDA") (pintype "bidirectional") (tstamp 173e3ce6-0787-48e6-a11f-d4e744cfc901))
(pad "6" thru_hole oval locked (at 7.62 5.08) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 25 "/CLOCK-RB6") (pinfunction "SCL") (pintype "input") (tstamp ce593e01-cc45-4c0e-80c7-2c39861ec136))
(pad "7" thru_hole oval locked (at 7.62 2.54) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 93 "unconnected-(U1-Pad7)") (pinfunction "WP") (pintype "input+no_connect") (tstamp ca646a64-dc58-47fe-87de-d5de952e7b11))
(pad "8" thru_hole oval locked (at 7.62 0) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 24 "/pic_sockets/VCC_PIC") (pinfunction "VCC") (pintype "power_in") (tstamp 079e1d10-4ba8-410f-aabe-2509f389404e))
(model "${KICAD6_3DMODEL_DIR}/Package_DIP.3dshapes/DIP-8_W7.62mm_Socket.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Package_DIP:DIP-8_W7.62mm_LongPads" (layer "F.Cu")
(tedit 5A02E8C5) (tstamp 00000000-0000-0000-0000-00005a212a55)
(at 110.49 57.15)
(descr "8-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), LongPads")
(tags "THT DIP DIL PDIP 2.54mm 7.62mm 300mil LongPads")
(property "Sheetfile" "pic_programmer.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-0000442a5e20")
(attr through_hole)
(fp_text reference "U4" (at 3.81 -2.33) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f1f20c4e-5506-465d-97cd-09a8d5848390)
)
(fp_text value "LT1373" (at 3.81 9.95) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 77f75b5b-5617-48fd-90d5-1de695c14afe)
)
(fp_text user "${REFERENCE}" (at 3.81 3.81) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3ed3d32f-0cac-44ef-b61d-0cb0f853ddf8)
)
(fp_line (start 6.06 8.95) (end 6.06 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 045a591e-0103-4c08-9ab4-eaf36eb4f3cf))
(fp_line (start 1.56 -1.33) (end 1.56 8.95) (layer "F.SilkS") (width 0.12) (tstamp 24db9caa-f244-4d01-b41d-0bd6768e7c5f))
(fp_line (start 6.06 -1.33) (end 4.81 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 3f2e1b19-9468-4404-bbf3-325676d85eb7))
(fp_line (start 1.56 8.95) (end 6.06 8.95) (layer "F.SilkS") (width 0.12) (tstamp eb9a1a30-d996-4f88-a2ad-4dcd58a4152f))
(fp_line (start 2.81 -1.33) (end 1.56 -1.33) (layer "F.SilkS") (width 0.12) (tstamp f4751bdb-b308-431a-83fd-d88487b737e6))
(fp_arc (start 3.81 -1.33) (end 2.81 -1.33) (angle -180) (layer "F.SilkS") (width 0.12) (tstamp 00255a18-fd48-4f4f-9ef3-77be0b0821fd))
(fp_line (start -1.45 -1.55) (end -1.45 9.15) (layer "F.CrtYd") (width 0.05) (tstamp 8f4b0531-24d6-426b-b4f8-0e1c6ad1cc38))
(fp_line (start 9.1 -1.55) (end -1.45 -1.55) (layer "F.CrtYd") (width 0.05) (tstamp b85582f2-4d5e-4222-894a-532a716a7478))
(fp_line (start 9.1 9.15) (end 9.1 -1.55) (layer "F.CrtYd") (width 0.05) (tstamp c3e562dc-2444-467f-8a9e-195196f087b2))
(fp_line (start -1.45 9.15) (end 9.1 9.15) (layer "F.CrtYd") (width 0.05) (tstamp d0b810fb-3b5e-4367-b252-e6e4148c0613))
(fp_line (start 6.985 8.89) (end 0.635 8.89) (layer "F.Fab") (width 0.1) (tstamp 46518313-c467-40fc-9b75-69890a593ac0))
(fp_line (start 0.635 8.89) (end 0.635 -0.27) (layer "F.Fab") (width 0.1) (tstamp 4ad82c28-1857-444c-b762-46218eb798b8))
(fp_line (start 6.985 -1.27) (end 6.985 8.89) (layer "F.Fab") (width 0.1) (tstamp d0994a06-8b78-4fe4-bd6d-99f297592941))
(fp_line (start 1.635 -1.27) (end 6.985 -1.27) (layer "F.Fab") (width 0.1) (tstamp da38dd92-a019-4e5b-a0a7-043ae8d12089))
(fp_line (start 0.635 -0.27) (end 1.635 -1.27) (layer "F.Fab") (width 0.1) (tstamp efd6352c-74b5-431a-884a-0a79311bdfd3))
(pad "1" thru_hole rect locked (at 0 0) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 4 "Net-(C4-Pad1)") (pinfunction "Vc") (pintype "input") (tstamp bc03bd9b-8b2f-4a78-b773-248146173547))
(pad "2" thru_hole oval locked (at 0 2.54) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 16 "Net-(RV1-Pad2)") (pinfunction "FB+") (pintype "input") (tstamp dc1167b1-4b6b-4eab-a3e9-806926d1bc3d))
(pad "3" thru_hole oval locked (at 0 5.08) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 94 "unconnected-(U4-Pad3)") (pinfunction "FB-") (pintype "passive+no_connect") (tstamp ac1fca0b-e365-4ec2-9c29-92b712e0e712))
(pad "4" thru_hole oval locked (at 0 7.62) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 95 "unconnected-(U4-Pad4)") (pinfunction "S/S") (pintype "passive+no_connect") (tstamp 474ca5bf-3025-4d41-9c22-341fc8482af2))
(pad "5" thru_hole oval locked (at 7.62 7.62) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 17 "VCC") (pinfunction "Vin") (pintype "power_in") (tstamp 896c4437-86a7-4bab-8939-1324373533b2))
(pad "6" thru_hole oval locked (at 7.62 5.08) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 2 "GND") (pinfunction "GND_S") (pintype "input") (tstamp 1c4e7ad1-1cbf-4b2c-a01d-ddda3100b34f))
(pad "7" thru_hole oval locked (at 7.62 2.54) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 2 "GND") (pinfunction "GND") (pintype "input") (tstamp fe0761df-d57b-4eb3-9434-f13342bb38d2))
(pad "8" thru_hole oval locked (at 7.62 0) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 29 "Net-(D10-Pad2)") (pinfunction "Vsw") (pintype "input") (tstamp 5be77fde-2420-42bb-b978-32d7d74f6576))
(model "${KICAD6_3DMODEL_DIR}/Package_DIP.3dshapes/DIP-8_W7.62mm.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Package_DIP:DIP-28_W7.62mm_Socket_LongPads" (layer "F.Cu")
(tedit 5A02E8C5) (tstamp 00000000-0000-0000-0000-00005a212a70)
(at 207.645 50.8)
(descr "28-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), Socket, LongPads")
(tags "THT DIP DIL PDIP 2.54mm 7.62mm 300mil Socket LongPads")
(property "Sheetfile" "pic_sockets.kicad_sch")
(property "Sheetname" "pic_sockets")
(path "/00000000-0000-0000-0000-00004804a5e2/00000000-0000-0000-0000-00004436967e")
(attr through_hole)
(fp_text reference "P2" (at 3.81 -2.33) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a64ccb39-b3df-46ee-8250-831e20805bc2)
)
(fp_text value "SUPP28" (at 3.81 35.35) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 46ca8ef6-6269-4da9-abc4-bf70f599bfa1)
)
(fp_text user "${REFERENCE}" (at 3.81 16.51) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4702a88d-9c15-410b-a1e1-147694060949)
)
(fp_line (start 6.06 34.35) (end 6.06 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 1003ef60-6c69-4ee8-8622-a4265e4d6c6e))
(fp_line (start 1.56 -1.33) (end 1.56 34.35) (layer "F.SilkS") (width 0.12) (tstamp 33a87c13-9fe9-40b5-8c31-0d303ccb5e6f))
(fp_line (start 1.56 34.35) (end 6.06 34.35) (layer "F.SilkS") (width 0.12) (tstamp 418388bf-4553-40ea-9142-0a57b9af19fa))
(fp_line (start -1.44 -1.39) (end -1.44 34.41) (layer "F.SilkS") (width 0.12) (tstamp 4730c5d3-a313-4d1e-9c97-a36de6aa9254))
(fp_line (start 6.06 -1.33) (end 4.81 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 5262898f-3611-452b-8139-0890b11b782d))
(fp_line (start 9.06 34.41) (end 9.06 -1.39) (layer "F.SilkS") (width 0.12) (tstamp 73b4ccc5-4b78-4de5-8869-6920f3d3ddaa))
(fp_line (start 2.81 -1.33) (end 1.56 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 8689b869-9348-4c3f-ba51-bef9dd03059a))
(fp_line (start -1.44 34.41) (end 9.06 34.41) (layer "F.SilkS") (width 0.12) (tstamp e3698462-77b4-4842-be30-61316b5e3208))
(fp_line (start 9.06 -1.39) (end -1.44 -1.39) (layer "F.SilkS") (width 0.12) (tstamp f1486591-d64f-4250-8bda-f62517aac3ae))
(fp_arc (start 3.81 -1.33) (end 2.81 -1.33) (angle -180) (layer "F.SilkS") (width 0.12) (tstamp 3b89dd8d-3464-4668-98d9-f7f079dda502))
(fp_line (start 9.15 34.65) (end 9.15 -1.6) (layer "F.CrtYd") (width 0.05) (tstamp 17a94c38-1865-46a2-943a-58c46b441fb6))
(fp_line (start 9.15 -1.6) (end -1.55 -1.6) (layer "F.CrtYd") (width 0.05) (tstamp 313aea11-2e83-416c-b89e-2f146a3130a2))
(fp_line (start -1.55 -1.6) (end -1.55 34.65) (layer "F.CrtYd") (width 0.05) (tstamp 4410754e-59da-466a-a183-4906e41d891d))
(fp_line (start -1.55 34.65) (end 9.15 34.65) (layer "F.CrtYd") (width 0.05) (tstamp d0f37bb9-bc9d-4235-ad1b-d226035e7fa8))
(fp_line (start 0.635 -0.27) (end 1.635 -1.27) (layer "F.Fab") (width 0.1) (tstamp 2d145fe7-d03b-4e98-b415-3129d06033c5))
(fp_line (start 8.89 34.35) (end 8.89 -1.33) (layer "F.Fab") (width 0.1) (tstamp 466afbc8-ea9c-4ad2-bf7c-59eccd82174d))
(fp_line (start 6.985 34.29) (end 0.635 34.29) (layer "F.Fab") (width 0.1) (tstamp 9a3fc1fb-7403-431d-9885-46e85442d1ce))
(fp_line (start -1.27 34.35) (end 8.89 34.35) (layer "F.Fab") (width 0.1) (tstamp b022364e-1907-4f8d-953d-741df284e1d4))
(fp_line (start 6.985 -1.27) (end 6.985 34.29) (layer "F.Fab") (width 0.1) (tstamp b67575d7-23f9-47b0-abe6-da5f3854cb74))
(fp_line (start 1.635 -1.27) (end 6.985 -1.27) (layer "F.Fab") (width 0.1) (tstamp b86a93e5-ceca-4a99-9f33-0cb1f32c6897))
(fp_line (start 8.89 -1.33) (end -1.27 -1.33) (layer "F.Fab") (width 0.1) (tstamp d88444b6-ccff-42ac-aea8-174ca13e49c3))
(fp_line (start 0.635 34.29) (end 0.635 -0.27) (layer "F.Fab") (width 0.1) (tstamp ec0295e7-5358-444b-9f8d-a4fd45ae9e4b))
(fp_line (start -1.27 -1.33) (end -1.27 34.35) (layer "F.Fab") (width 0.1) (tstamp fb7366f2-4ba1-47b8-b47b-e4eca30c5077))
(pad "1" thru_hole rect locked (at 0 0) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 38 "/VPP{slash}MCLR") (pinfunction "1") (pintype "passive") (tstamp 8ce03d2a-6a56-4ead-b62f-658c9896be25))
(pad "2" thru_hole oval locked (at 0 2.54) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 39 "unconnected-(P2-Pad2)") (pinfunction "2") (pintype "passive+no_connect") (tstamp 8e645d4b-81c1-441d-ad91-67ec954b88e5))
(pad "3" thru_hole oval locked (at 0 5.08) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 40 "unconnected-(P2-Pad3)") (pinfunction "3") (pintype "passive+no_connect") (tstamp 89c45d19-f7cc-46c7-8610-59ed32e4058b))
(pad "4" thru_hole oval locked (at 0 7.62) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 41 "unconnected-(P2-Pad4)") (pinfunction "4") (pintype "passive+no_connect") (tstamp e84b076f-09fb-48d0-ab46-45fc6157e8c5))
(pad "5" thru_hole oval locked (at 0 10.16) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 42 "unconnected-(P2-Pad5)") (pinfunction "5") (pintype "passive+no_connect") (tstamp 709ad160-162f-4637-86b0-9d7e2ab9685b))
(pad "6" thru_hole oval locked (at 0 12.7) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 43 "unconnected-(P2-Pad6)") (pinfunction "6") (pintype "passive+no_connect") (tstamp 941dbff3-6644-4aeb-ab1d-69cf4d164d90))
(pad "7" thru_hole oval locked (at 0 15.24) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 44 "unconnected-(P2-Pad7)") (pinfunction "7") (pintype "passive+no_connect") (tstamp 9c46b2fa-c496-485c-8051-add5e157187f))
(pad "8" thru_hole oval locked (at 0 17.78) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 2 "GND") (pinfunction "8") (pintype "passive") (tstamp 419c1619-5f87-4a60-925f-fef94708a6da))
(pad "9" thru_hole oval locked (at 0 20.32) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 45 "unconnected-(P2-Pad9)") (pinfunction "9") (pintype "passive+no_connect") (tstamp da2e882e-12a0-4e72-bbe6-037f00c334bd))
(pad "10" thru_hole oval locked (at 0 22.86) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 46 "unconnected-(P2-Pad10)") (pinfunction "10") (pintype "passive+no_connect") (tstamp 50932b93-11a1-4208-a68d-71c5a1cf2d06))
(pad "11" thru_hole oval locked (at 0 25.4) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 47 "unconnected-(P2-Pad11)") (pinfunction "11") (pintype "passive+no_connect") (tstamp bb8bc4ec-6c49-4439-849c-85fac6f44dbc))
(pad "12" thru_hole oval locked (at 0 27.94) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 48 "unconnected-(P2-Pad12)") (pinfunction "12") (pintype "passive+no_connect") (tstamp effff827-4076-4731-8dd5-af3928016640))
(pad "13" thru_hole oval locked (at 0 30.48) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 49 "unconnected-(P2-Pad13)") (pinfunction "13") (pintype "passive+no_connect") (tstamp ec4153ad-f253-456f-b932-2a53b2240b83))
(pad "14" thru_hole oval locked (at 0 33.02) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 50 "unconnected-(P2-Pad14)") (pinfunction "14") (pintype "passive+no_connect") (tstamp 24afe68d-17ae-4a46-9d4c-82906b9446be))
(pad "15" thru_hole oval locked (at 7.62 33.02) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 51 "unconnected-(P2-Pad15)") (pinfunction "15") (pintype "passive+no_connect") (tstamp 902fd5cf-209a-47a2-b38d-6a84480215ee))
(pad "16" thru_hole oval locked (at 7.62 30.48) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 52 "unconnected-(P2-Pad16)") (pinfunction "16") (pintype "passive+no_connect") (tstamp 95c253f0-a226-4004-bde1-27e4832180fc))
(pad "17" thru_hole oval locked (at 7.62 27.94) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 53 "unconnected-(P2-Pad17)") (pinfunction "17") (pintype "passive+no_connect") (tstamp e49bd9e2-2e9a-45a9-9fac-687343c7e92e))
(pad "18" thru_hole oval locked (at 7.62 25.4) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 54 "unconnected-(P2-Pad18)") (pinfunction "18") (pintype "passive+no_connect") (tstamp 965d6620-1d7d-4fce-a853-18336264818d))
(pad "19" thru_hole oval locked (at 7.62 22.86) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 2 "GND") (pinfunction "19") (pintype "passive") (tstamp f6f8aee0-ee2c-4124-bc47-74cae111ff78))
(pad "20" thru_hole oval locked (at 7.62 20.32) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 24 "/pic_sockets/VCC_PIC") (pinfunction "20") (pintype "passive") (tstamp 5e56b1d8-e1ea-40d9-bc0c-5f45358619ea))
(pad "21" thru_hole oval locked (at 7.62 17.78) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 55 "unconnected-(P2-Pad21)") (pinfunction "21") (pintype "passive+no_connect") (tstamp 0df973c3-8beb-4fd7-9fac-24d156164991))
(pad "22" thru_hole oval locked (at 7.62 15.24) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 56 "unconnected-(P2-Pad22)") (pinfunction "22") (pintype "passive+no_connect") (tstamp 7f7b3c58-fd5a-4d68-8cec-b3326f399498))
(pad "23" thru_hole oval locked (at 7.62 12.7) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 57 "unconnected-(P2-Pad23)") (pinfunction "23") (pintype "passive+no_connect") (tstamp 73254f24-ede7-4fd3-ac48-8980b1af1a6b))
(pad "24" thru_hole oval locked (at 7.62 10.16) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 58 "unconnected-(P2-Pad24)") (pinfunction "24") (pintype "passive+no_connect") (tstamp 5d20038a-9091-49cb-9731-2f0886e2661e))
(pad "25" thru_hole oval locked (at 7.62 7.62) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 59 "unconnected-(P2-Pad25)") (pinfunction "25") (pintype "passive+no_connect") (tstamp acd103fb-d070-46cf-b020-01c4cdfd379f))
(pad "26" thru_hole oval locked (at 7.62 5.08) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 60 "unconnected-(P2-Pad26)") (pinfunction "26") (pintype "passive+no_connect") (tstamp aceeced8-2e9a-44f1-a451-47d9ac8b9530))
(pad "27" thru_hole oval locked (at 7.62 2.54) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 25 "/CLOCK-RB6") (pinfunction "27") (pintype "passive") (tstamp 7f7e4806-c4ea-4e49-824c-0a28b2840d4a))
(pad "28" thru_hole oval locked (at 7.62 0) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 26 "/DATA-RB7") (pinfunction "28") (pintype "passive") (tstamp eaa1966d-487f-452a-8e8c-e5cf377e849e))
(model "${KICAD6_3DMODEL_DIR}/Package_DIP.3dshapes/DIP-28_W7.62mm_Socket.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Package_DIP:DIP-18_W7.62mm_Socket_LongPads" (layer "F.Cu")
(tedit 5A02E8C5) (tstamp 00000000-0000-0000-0000-00005a212aa7)
(at 207.899 107.95)
(descr "18-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), Socket, LongPads")
(tags "THT DIP DIL PDIP 2.54mm 7.62mm 300mil Socket LongPads")
(property "Sheetfile" "pic_sockets.kicad_sch")
(property "Sheetname" "pic_sockets")
(path "/00000000-0000-0000-0000-00004804a5e2/00000000-0000-0000-0000-0000442a81a7")
(attr through_hole)
(fp_text reference "U5" (at 3.81 -2.33) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6086c1c8-ce2c-43cf-ab33-4c3a77cca9f3)
)
(fp_text value "PIC_18_PINS" (at 3.81 22.65) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 22b4fef9-e871-45f7-b95d-5042f4256ed7)
)
(fp_text user "${REFERENCE}" (at 3.81 10.16) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp aa6725ce-1af5-4cf7-96ac-a6ea79624fcd)
)
(fp_line (start 6.06 21.65) (end 6.06 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 3261ae47-d082-45a7-95de-b08f4a33369c))
(fp_line (start -1.44 -1.39) (end -1.44 21.71) (layer "F.SilkS") (width 0.12) (tstamp 3461cc88-7827-414a-9a67-20d2c91d7d55))
(fp_line (start -1.44 21.71) (end 9.06 21.71) (layer "F.SilkS") (width 0.12) (tstamp 58a970b5-7648-403d-bac6-06739dccac4d))
(fp_line (start 9.06 21.71) (end 9.06 -1.39) (layer "F.SilkS") (width 0.12) (tstamp 5afbb09b-f5e6-4254-ab26-6714eb87dfbd))
(fp_line (start 1.56 21.65) (end 6.06 21.65) (layer "F.SilkS") (width 0.12) (tstamp 72d8ea65-81c1-4aa6-8954-13d4365e0298))
(fp_line (start 1.56 -1.33) (end 1.56 21.65) (layer "F.SilkS") (width 0.12) (tstamp 750615d3-1e92-42b7-9387-79a2dda28dda))
(fp_line (start 9.06 -1.39) (end -1.44 -1.39) (layer "F.SilkS") (width 0.12) (tstamp 9ea24a85-a399-4c09-b58b-83d1bc96124d))
(fp_line (start 2.81 -1.33) (end 1.56 -1.33) (layer "F.SilkS") (width 0.12) (tstamp ad102ff3-5e4c-4e79-a009-b6915fea244e))
(fp_line (start 6.06 -1.33) (end 4.81 -1.33) (layer "F.SilkS") (width 0.12) (tstamp c5f84542-060f-48f5-94d6-628da90fdded))
(fp_arc (start 3.81 -1.33) (end 2.81 -1.33) (angle -180) (layer "F.SilkS") (width 0.12) (tstamp 4666e063-2a23-4e48-be7c-3140734185a7))
(fp_line (start -1.55 21.9) (end 9.15 21.9) (layer "F.CrtYd") (width 0.05) (tstamp 398f42b6-4352-4346-b9fa-187568473bee))
(fp_line (start -1.55 -1.6) (end -1.55 21.9) (layer "F.CrtYd") (width 0.05) (tstamp 53ee8fad-ef14-4bcf-a035-2917df7b2154))
(fp_line (start 9.15 21.9) (end 9.15 -1.6) (layer "F.CrtYd") (width 0.05) (tstamp 843ee8cd-74da-4087-9bd9-256eee4c8903))
(fp_line (start 9.15 -1.6) (end -1.55 -1.6) (layer "F.CrtYd") (width 0.05) (tstamp ec947546-71df-47a3-981f-df6cafb36bf6))
(fp_line (start 6.985 21.59) (end 0.635 21.59) (layer "F.Fab") (width 0.1) (tstamp 3212278f-2d1f-4d95-8432-6127514cb360))
(fp_line (start 8.89 21.65) (end 8.89 -1.33) (layer "F.Fab") (width 0.1) (tstamp 37a9fd7e-cd72-4917-bacc-29207123ffd1))
(fp_line (start 6.985 -1.27) (end 6.985 21.59) (layer "F.Fab") (width 0.1) (tstamp 4cda904e-4fad-4542-ae93-42e7eca89242))
(fp_line (start -1.27 -1.33) (end -1.27 21.65) (layer "F.Fab") (width 0.1) (tstamp 5912be98-725a-433f-be4c-128966ee43ca))
(fp_line (start 0.635 -0.27) (end 1.635 -1.27) (layer "F.Fab") (width 0.1) (tstamp 6dfe6025-992e-4889-bfa3-1011b574e1ba))
(fp_line (start 8.89 -1.33) (end -1.27 -1.33) (layer "F.Fab") (width 0.1) (tstamp 87f125dd-082a-4b34-8c41-7be51eac3239))
(fp_line (start 0.635 21.59) (end 0.635 -0.27) (layer "F.Fab") (width 0.1) (tstamp b49fbc5e-e773-4df6-a26a-bbe2010f0bb7))
(fp_line (start -1.27 21.65) (end 8.89 21.65) (layer "F.Fab") (width 0.1) (tstamp e424e305-2f71-4240-b2aa-35bf2e0ce7d3))
(fp_line (start 1.635 -1.27) (end 6.985 -1.27) (layer "F.Fab") (width 0.1) (tstamp fcc19c2b-643f-41a2-8564-5794e3d2962d))
(pad "1" thru_hole rect locked (at 0 0) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 96 "unconnected-(U5-Pad1)") (pinfunction "RA2") (pintype "bidirectional+no_connect") (tstamp e2903fc6-1996-4ba9-a2d0-396e657c63e8))
(pad "2" thru_hole oval locked (at 0 2.54) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 97 "unconnected-(U5-Pad2)") (pinfunction "RA3") (pintype "bidirectional+no_connect") (tstamp 259ce511-18c1-48a4-aab6-ecb572d073ca))
(pad "3" thru_hole oval locked (at 0 5.08) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 98 "unconnected-(U5-Pad3)") (pinfunction "T0ckl") (pintype "output+no_connect") (tstamp f93bd588-a4f7-46da-890c-59cac2d72612))
(pad "4" thru_hole oval locked (at 0 7.62) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 38 "/VPP{slash}MCLR") (pinfunction "MCLR") (pintype "input") (tstamp ee4fe639-2943-40a7-885c-0d5873056897))
(pad "5" thru_hole oval locked (at 0 10.16) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 2 "GND") (pinfunction "VSS") (pintype "power_in") (tstamp 063a4a73-3023-4280-a896-3b00d0e1ca98))
(pad "6" thru_hole oval locked (at 0 12.7) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 99 "unconnected-(U5-Pad6)") (pinfunction "RB0") (pintype "bidirectional+no_connect") (tstamp af0d4150-4e6a-4a39-be13-bef884b4b216))
(pad "7" thru_hole oval locked (at 0 15.24) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 100 "unconnected-(U5-Pad7)") (pinfunction "RB1") (pintype "bidirectional+no_connect") (tstamp 4e87591b-eba0-411f-a608-86cdaecce938))
(pad "8" thru_hole oval locked (at 0 17.78) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 101 "unconnected-(U5-Pad8)") (pinfunction "RB2") (pintype "bidirectional+no_connect") (tstamp 49ffa795-d1f7-4988-97fc-a5752a0f5da5))
(pad "9" thru_hole oval locked (at 0 20.32) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 102 "unconnected-(U5-Pad9)") (pinfunction "RB3") (pintype "bidirectional+no_connect") (tstamp 757a3a11-fcfc-45f7-a5ac-111c27ceaa18))
(pad "10" thru_hole oval locked (at 7.62 20.32) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 103 "unconnected-(U5-Pad10)") (pinfunction "RB4") (pintype "bidirectional+no_connect") (tstamp 6fbc1d13-ef76-4e81-a1d9-c1932be077cf))
(pad "11" thru_hole oval locked (at 7.62 17.78) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 104 "unconnected-(U5-Pad11)") (pinfunction "RB5") (pintype "bidirectional+no_connect") (tstamp b8d99efa-95d7-428d-8b60-2a949397fd98))
(pad "12" thru_hole oval locked (at 7.62 15.24) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 25 "/CLOCK-RB6") (pinfunction "ICSPC/RB6") (pintype "bidirectional") (tstamp cf5aeefb-93bd-4ac4-a6da-a4d8dd9ff787))
(pad "13" thru_hole oval locked (at 7.62 12.7) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 26 "/DATA-RB7") (pinfunction "ICSPD/RB7") (pintype "bidirectional") (tstamp a9e3d81d-5d6a-44ef-8211-08acbe054a1f))
(pad "14" thru_hole oval locked (at 7.62 10.16) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)