summaryrefslogtreecommitdiff
path: root/demos/pic_programmer/pic_programmer.net
blob: 2b62ba1f7b0f1c5bd6ee39d0f56c1fbf4649f9e2 (plain)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
(export (version D)
  (design
    (source F:/kicad-launchpad/testing/demos/pic_programmer/pic_programmer.sch)
    (date "05/11/2015 17:22:30")
    (tool "Eeschema (2015-11-05 BZR 6299)-product")
    (sheet (number 1) (name /) (tstamps /)
      (title_block
        (title "JDM - COM84 PIC Programmer with 13V DC/DC converter")
        (company KiCad)
        (rev 2)
        (date "05 jan 2014")
        (source pic_programmer.sch)
        (comment (number 1) (value ""))
        (comment (number 2) (value ""))
        (comment (number 3) (value ""))
        (comment (number 4) (value ""))))
    (sheet (number 2) (name /pic_sockets/) (tstamps /4804A5E2/)
      (title_block
        (title "JDM - COM84 PIC Programmer with 13V DC/DC converter")
        (company KiCad)
        (rev 3)
        (date "Sun 22 Mar 2015")
        (source pic_sockets.sch)
        (comment (number 1) (value ""))
        (comment (number 2) (value ""))
        (comment (number 3) (value ""))
        (comment (number 4) (value "")))))
  (components
    (comp (ref C9)
      (value 220nF)
      (footprint discret:C1-1)
      (libsource (lib pic_programmer_schlib) (part C))
      (sheetpath (names /) (tstamps /))
      (tstamp 464AD280))
    (comp (ref JP1)
      (value JUMPER)
      (footprint connect:GS2)
      (libsource (lib pic_programmer_schlib) (part JUMPER))
      (sheetpath (names /) (tstamps /))
      (tstamp 4639BAF8))
    (comp (ref D11)
      (value BAT43)
      (footprint discret:D3)
      (libsource (lib pic_programmer_schlib) (part DIODESCH))
      (sheetpath (names /) (tstamps /))
      (tstamp 4639BA28))
    (comp (ref D12)
      (value YELLOW-LED)
      (footprint discret:LEDV)
      (libsource (lib pic_programmer_schlib) (part LED))
      (sheetpath (names /) (tstamps /))
      (tstamp 4639B9EA))
    (comp (ref R21)
      (value 470)
      (footprint discret:R4)
      (libsource (lib pic_programmer_schlib) (part R))
      (sheetpath (names /) (tstamps /))
      (tstamp 4639B9E9))
    (comp (ref R20)
      (value 2.2K)
      (footprint discret:R4)
      (libsource (lib pic_programmer_schlib) (part R))
      (sheetpath (names /) (tstamps /))
      (tstamp 4639B9B3))
    (comp (ref R19)
      (value 2.2K)
      (footprint discret:R4)
      (libsource (lib pic_programmer_schlib) (part R))
      (sheetpath (names /) (tstamps /))
      (tstamp 4639B9B0))
    (comp (ref Q3)
      (value BC307)
      (footprint discret:TO92)
      (libsource (lib pic_programmer_schlib) (part PNP))
      (sheetpath (names /) (tstamps /))
      (tstamp 4639B996))
    (comp (ref RV1)
      (value 1K)
      (footprint discret:RV2X4)
      (libsource (lib pic_programmer_schlib) (part POT))
      (sheetpath (names /) (tstamps /))
      (tstamp 443D0101))
    (comp (ref R18)
      (value 220)
      (footprint discret:R4)
      (libsource (lib pic_programmer_schlib) (part R))
      (sheetpath (names /) (tstamps /))
      (tstamp 44369638))
    (comp (ref D10)
      (value SCHOTTKY)
      (footprint discret:D5)
      (libsource (lib pic_programmer_schlib) (part DIODESCH))
      (sheetpath (names /) (tstamps /))
      (tstamp 442A6026))
    (comp (ref R10)
      (value 5,1K)
      (footprint discret:R4)
      (libsource (lib pic_programmer_schlib) (part R))
      (sheetpath (names /) (tstamps /))
      (tstamp 442A5F83))
    (comp (ref C4)
      (value 0)
      (footprint discret:C1-1)
      (libsource (lib pic_programmer_schlib) (part C))
      (sheetpath (names /) (tstamps /))
      (tstamp 442A5F61))
    (comp (ref U4)
      (value LT1373)
      (footprint dip_sockets:DIP-8__300_ELL)
      (libsource (lib pic_programmer_schlib) (part LT1373))
      (sheetpath (names /) (tstamps /))
      (tstamp 442A5E20))
    (comp (ref R16)
      (value 62K)
      (footprint discret:R4)
      (libsource (lib pic_programmer_schlib) (part R))
      (sheetpath (names /) (tstamps /))
      (tstamp 442A58DC))
    (comp (ref R15)
      (value 6.2K)
      (footprint discret:R4)
      (libsource (lib pic_programmer_schlib) (part R))
      (sheetpath (names /) (tstamps /))
      (tstamp 442A58D7))
    (comp (ref C5)
      (value 10nF)
      (footprint discret:C1-1)
      (libsource (lib pic_programmer_schlib) (part C))
      (sheetpath (names /) (tstamps /))
      (tstamp 442A58B1))
    (comp (ref C3)
      (value 22uF/25V)
      (footprint discret:CP8)
      (libsource (lib pic_programmer_schlib) (part CP))
      (sheetpath (names /) (tstamps /))
      (tstamp 442A584C))
    (comp (ref L1)
      (value 22uH)
      (footprint inductors:INDUCTOR_V)
      (libsource (lib pic_programmer_schlib) (part INDUCTOR))
      (sheetpath (names /) (tstamps /))
      (tstamp 442A57BE))
    (comp (ref R17)
      (value 22K)
      (footprint discret:R4)
      (libsource (lib pic_programmer_schlib) (part R))
      (sheetpath (names /) (tstamps /))
      (tstamp 442A50BF))
    (comp (ref D9)
      (value GREEN-LED)
      (footprint discret:LEDV)
      (fields
        (field (name Champ4) "GREEN LED"))
      (libsource (lib pic_programmer_schlib) (part LED))
      (sheetpath (names /) (tstamps /))
      (tstamp 442A5084))
    (comp (ref R14)
      (value 470)
      (footprint discret:R4)
      (libsource (lib pic_programmer_schlib) (part R))
      (sheetpath (names /) (tstamps /))
      (tstamp 442A5083))
    (comp (ref C1)
      (value 100µF)
      (footprint discret:CP10)
      (libsource (lib pic_programmer_schlib) (part CP))
      (sheetpath (names /) (tstamps /))
      (tstamp 442A5056))
    (comp (ref U3)
      (value 7805)
      (footprint discret:LM78XX)
      (libsource (lib pic_programmer_schlib) (part 7805))
      (sheetpath (names /) (tstamps /))
      (tstamp 442A504A))
    (comp (ref C2)
      (value 220uF)
      (footprint discret:CP10)
      (libsource (lib pic_programmer_schlib) (part CP))
      (sheetpath (names /) (tstamps /))
      (tstamp 442A501D))
    (comp (ref D1)
      (value 1N4004)
      (footprint discret:D5)
      (libsource (lib pic_programmer_schlib) (part DIODE))
      (sheetpath (names /) (tstamps /))
      (tstamp 442A500B))
    (comp (ref P1)
      (value CONN_2)
      (footprint connect:bornier2)
      (libsource (lib pic_programmer_schlib) (part CONN_2))
      (sheetpath (names /) (tstamps /))
      (tstamp 442A4FE7))
    (comp (ref D8)
      (value RED-LED)
      (footprint discret:LEDV)
      (fields
        (field (name Champ4) "Low Current Led"))
      (libsource (lib pic_programmer_schlib) (part LED))
      (sheetpath (names /) (tstamps /))
      (tstamp 442A4F5D))
    (comp (ref R9)
      (value 2.2K)
      (footprint discret:R4)
      (libsource (lib pic_programmer_schlib) (part R))
      (sheetpath (names /) (tstamps /))
      (tstamp 442A4F52))
    (comp (ref Q2)
      (value BC307)
      (footprint discret:TO92)
      (libsource (lib pic_programmer_schlib) (part PNP))
      (sheetpath (names /) (tstamps /))
      (tstamp 442A4F30))
    (comp (ref R7)
      (value 10K)
      (footprint discret:R4)
      (libsource (lib pic_programmer_schlib) (part R))
      (sheetpath (names /) (tstamps /))
      (tstamp 442A4F2A))
    (comp (ref R11)
      (value 22K)
      (footprint discret:R4)
      (libsource (lib pic_programmer_schlib) (part R))
      (sheetpath (names /) (tstamps /))
      (tstamp 442A4F23))
    (comp (ref Q1)
      (value BC237)
      (footprint discret:TO92)
      (libsource (lib pic_programmer_schlib) (part NPN))
      (sheetpath (names /) (tstamps /))
      (tstamp 442A4EB9))
    (comp (ref R8)
      (value 1K)
      (footprint discret:R4)
      (libsource (lib pic_programmer_schlib) (part R))
      (sheetpath (names /) (tstamps /))
      (tstamp 442A4D92))
    (comp (ref R13)
      (value 470)
      (footprint discret:R4)
      (libsource (lib pic_programmer_schlib) (part R))
      (sheetpath (names /) (tstamps /))
      (tstamp 442A4D8D))
    (comp (ref R12)
      (value 470)
      (footprint discret:R4)
      (libsource (lib pic_programmer_schlib) (part R))
      (sheetpath (names /) (tstamps /))
      (tstamp 442A4D85))
    (comp (ref U2)
      (value 74HC125)
      (footprint dip_sockets:DIP-14__300_ELL)
      (libsource (lib pic_programmer_schlib) (part 74LS125))
      (sheetpath (names /) (tstamps /))
      (tstamp 442A4D6B))
    (comp (ref D7)
      (value BAT43)
      (footprint discret:D3)
      (libsource (lib pic_programmer_schlib) (part DIODESCH))
      (sheetpath (names /) (tstamps /))
      (tstamp 442A4D65))
    (comp (ref D6)
      (value BAT43)
      (footprint discret:D3)
      (libsource (lib pic_programmer_schlib) (part DIODESCH))
      (sheetpath (names /) (tstamps /))
      (tstamp 442A4D64))
    (comp (ref R6)
      (value 10K)
      (footprint discret:R4)
      (libsource (lib pic_programmer_schlib) (part R))
      (sheetpath (names /) (tstamps /))
      (tstamp 442A4D63))
    (comp (ref R5)
      (value 10K)
      (footprint discret:R4)
      (libsource (lib pic_programmer_schlib) (part R))
      (sheetpath (names /) (tstamps /))
      (tstamp 442A4D62))
    (comp (ref D5)
      (value BAT43)
      (footprint discret:D3)
      (libsource (lib pic_programmer_schlib) (part DIODESCH))
      (sheetpath (names /) (tstamps /))
      (tstamp 442A4D5D))
    (comp (ref D4)
      (value BAT43)
      (footprint discret:D3)
      (libsource (lib pic_programmer_schlib) (part DIODESCH))
      (sheetpath (names /) (tstamps /))
      (tstamp 442A4D5C))
    (comp (ref R4)
      (value 10K)
      (footprint discret:R4)
      (libsource (lib pic_programmer_schlib) (part R))
      (sheetpath (names /) (tstamps /))
      (tstamp 442A4D5B))
    (comp (ref R3)
      (value 10K)
      (footprint discret:R4)
      (libsource (lib pic_programmer_schlib) (part R))
      (sheetpath (names /) (tstamps /))
      (tstamp 442A4D5A))
    (comp (ref D3)
      (value BAT43)
      (footprint discret:D3)
      (libsource (lib pic_programmer_schlib) (part DIODESCH))
      (sheetpath (names /) (tstamps /))
      (tstamp 442A4D25))
    (comp (ref D2)
      (value BAT43)
      (footprint discret:D3)
      (libsource (lib pic_programmer_schlib) (part DIODESCH))
      (sheetpath (names /) (tstamps /))
      (tstamp 442A4D1B))
    (comp (ref R2)
      (value 10K)
      (footprint discret:R4)
      (libsource (lib pic_programmer_schlib) (part R))
      (sheetpath (names /) (tstamps /))
      (tstamp 442A4CFB))
    (comp (ref R1)
      (value 10K)
      (footprint discret:R4)
      (libsource (lib pic_programmer_schlib) (part R))
      (sheetpath (names /) (tstamps /))
      (tstamp 442A4CF4))
    (comp (ref J1)
      (value DB9-FEMAL)
      (footprint connect:DB9FC)
      (libsource (lib pic_programmer_schlib) (part DB9))
      (sheetpath (names /) (tstamps /))
      (tstamp 442A4C93))
    (comp (ref P101)
      (value CONN_1)
      (footprint footprints:1pin-4)
      (libsource (lib pic_programmer_schlib) (part CONN_1))
      (sheetpath (names /) (tstamps /))
      (tstamp 54020BEA))
    (comp (ref P102)
      (value CONN_1)
      (footprint footprints:1pin-4)
      (libsource (lib pic_programmer_schlib) (part CONN_1))
      (sheetpath (names /) (tstamps /))
      (tstamp 54020DA9))
    (comp (ref P103)
      (value CONN_1)
      (footprint footprints:1pin-4)
      (libsource (lib pic_programmer_schlib) (part CONN_1))
      (sheetpath (names /) (tstamps /))
      (tstamp 54020DC2))
    (comp (ref P104)
      (value CONN_1)
      (footprint footprints:1pin-4)
      (libsource (lib pic_programmer_schlib) (part CONN_1))
      (sheetpath (names /) (tstamps /))
      (tstamp 54020DE3))
    (comp (ref P105)
      (value CONN_1)
      (footprint footprints:1pin-4)
      (libsource (lib pic_programmer_schlib) (part CONN_1))
      (sheetpath (names /) (tstamps /))
      (tstamp 54020E5D))
    (comp (ref P106)
      (value CONN_1)
      (footprint footprints:1pin-4)
      (libsource (lib pic_programmer_schlib) (part CONN_1))
      (sheetpath (names /) (tstamps /))
      (tstamp 54020E76))
    (comp (ref P2)
      (value SUPP28)
      (footprint dip_sockets:DIP-28__300_ELL)
      (libsource (lib pic_programmer_schlib) (part SUPP28))
      (sheetpath (names /pic_sockets/) (tstamps /4804A5E2/))
      (tstamp 4436967E))
    (comp (ref C7)
      (value 100nF)
      (footprint discret:C1-1)
      (libsource (lib pic_programmer_schlib) (part C))
      (sheetpath (names /pic_sockets/) (tstamps /4804A5E2/))
      (tstamp 442AA145))
    (comp (ref P3)
      (value SUPP40)
      (footprint sockets:40tex-Ell600)
      (libsource (lib pic_programmer_schlib) (part SUPP40))
      (sheetpath (names /pic_sockets/) (tstamps /4804A5E2/))
      (tstamp 442A88ED))
    (comp (ref U1)
      (value 24Cxx)
      (footprint dip_sockets:DIP-8__300_ELL)
      (libsource (lib pic_programmer_schlib) (part 24C16))
      (sheetpath (names /pic_sockets/) (tstamps /4804A5E2/))
      (tstamp 442A87F7))
    (comp (ref U5)
      (value PIC_18_PINS)
      (footprint dip_sockets:DIP-18__300_ELL)
      (libsource (lib pic_programmer_schlib) (part PIC16F54))
      (sheetpath (names /pic_sockets/) (tstamps /4804A5E2/))
      (tstamp 442A81A7))
    (comp (ref U6)
      (value PIC_8_PINS)
      (footprint dip_sockets:DIP-8__300_ELL)
      (libsource (lib pic_programmer_schlib) (part PIC12C508A))
      (sheetpath (names /pic_sockets/) (tstamps /4804A5E2/))
      (tstamp 442A81A5))
    (comp (ref C6)
      (value 100nF)
      (footprint discret:C1-1)
      (libsource (lib pic_programmer_schlib) (part C))
      (sheetpath (names /pic_sockets/) (tstamps /4804A5E2/))
      (tstamp 442AA12B)))
  (libparts
    (libpart (lib pic_programmer_schlib) (part 24C16)
      (aliases
        (alias 24C512))
      (fields
        (field (name Reference) U)
        (field (name Value) 24C16))
      (pins
        (pin (num 1) (name A0) (type input))
        (pin (num 2) (name A1) (type input))
        (pin (num 3) (name A2) (type input))
        (pin (num 4) (name GND) (type power_in))
        (pin (num 5) (name SDA) (type BiDi))
        (pin (num 6) (name SCL) (type input))
        (pin (num 7) (name WP) (type input))
        (pin (num 8) (name VCC) (type power_in))))
    (libpart (lib pic_programmer_schlib) (part 74LS125)
      (fields
        (field (name Reference) U)
        (field (name Value) 74LS125))
      (pins
        (pin (num 1) (name E) (type input))
        (pin (num 2) (name D) (type input))
        (pin (num 3) (name O) (type 3state))
        (pin (num 4) (name E) (type input))
        (pin (num 5) (name D) (type input))
        (pin (num 6) (name O) (type 3state))
        (pin (num 7) (name GND) (type power_in))
        (pin (num 8) (name O) (type 3state))
        (pin (num 9) (name D) (type input))
        (pin (num 10) (name E) (type input))
        (pin (num 11) (name O) (type 3state))
        (pin (num 12) (name D) (type input))
        (pin (num 13) (name E) (type input))
        (pin (num 14) (name VCC) (type power_in))))
    (libpart (lib pic_programmer_schlib) (part 7805)
      (aliases
        (alias LM7805)
        (alias LM7812)
        (alias 78L05))
      (fields
        (field (name Reference) U)
        (field (name Value) 7805))
      (pins
        (pin (num GND) (name GND) (type input))
        (pin (num VI) (name VI) (type input))
        (pin (num VO) (name VO) (type power_out))))
    (libpart (lib pic_programmer_schlib) (part C)
      (footprints
        (fp SM*)
        (fp C?)
        (fp C1-1))
      (fields
        (field (name Reference) C)
        (field (name Value) C))
      (pins
        (pin (num 1) (name ~) (type passive))
        (pin (num 2) (name ~) (type passive))))
    (libpart (lib pic_programmer_schlib) (part CONN_1)
      (fields
        (field (name Reference) P)
        (field (name Value) CONN_1))
      (pins
        (pin (num 1) (name 1) (type passive))))
    (libpart (lib pic_programmer_schlib) (part CONN_2)
      (fields
        (field (name Reference) P)
        (field (name Value) CONN_2))
      (pins
        (pin (num 1) (name P1) (type passive))
        (pin (num 2) (name PM) (type passive))))
    (libpart (lib pic_programmer_schlib) (part CP)
      (aliases
        (alias CAPAPOL))
      (footprints
        (fp CP*)
        (fp SM*))
      (fields
        (field (name Reference) C)
        (field (name Value) CP))
      (pins
        (pin (num 1) (name ~) (type passive))
        (pin (num 2) (name ~) (type passive))))
    (libpart (lib pic_programmer_schlib) (part DB9)
      (footprints
        (fp DB9*))
      (fields
        (field (name Reference) J)
        (field (name Value) DB9))
      (pins
        (pin (num 1) (name 1) (type passive))
        (pin (num 2) (name 2) (type passive))
        (pin (num 3) (name 3) (type passive))
        (pin (num 4) (name 4) (type passive))
        (pin (num 5) (name 5) (type passive))
        (pin (num 6) (name P6) (type passive))
        (pin (num 7) (name P7) (type passive))
        (pin (num 8) (name P8) (type passive))
        (pin (num 9) (name P9) (type passive))))
    (libpart (lib pic_programmer_schlib) (part DIODE)
      (footprints
        (fp D?)
        (fp S*))
      (fields
        (field (name Reference) D)
        (field (name Value) DIODE))
      (pins
        (pin (num 1) (name A) (type passive))
        (pin (num 2) (name K) (type passive))))
    (libpart (lib pic_programmer_schlib) (part DIODESCH)
      (footprints
        (fp D?)
        (fp S*))
      (fields
        (field (name Reference) D)
        (field (name Value) DIODESCH))
      (pins
        (pin (num 1) (name A) (type passive))
        (pin (num 2) (name K) (type passive))))
    (libpart (lib pic_programmer_schlib) (part INDUCTOR)
      (fields
        (field (name Reference) L)
        (field (name Value) INDUCTOR))
      (pins
        (pin (num 1) (name 1) (type passive))
        (pin (num 2) (name 2) (type passive))))
    (libpart (lib pic_programmer_schlib) (part JUMPER)
      (fields
        (field (name Reference) JP)
        (field (name Value) JUMPER))
      (pins
        (pin (num 1) (name 1) (type passive))
        (pin (num 2) (name 2) (type passive))))
    (libpart (lib pic_programmer_schlib) (part LED)
      (footprints
        (fp LED-3MM)
        (fp LED-5MM)
        (fp LED-10MM)
        (fp LED-0603)
        (fp LED-0805)
        (fp LED-1206)
        (fp LEDV))
      (fields
        (field (name Reference) D)
        (field (name Value) LED))
      (pins
        (pin (num 1) (name A) (type passive))
        (pin (num 2) (name K) (type passive))))
    (libpart (lib pic_programmer_schlib) (part LT1372)
      (aliases
        (alias LT1373))
      (fields
        (field (name Reference) U)
        (field (name Value) LT1372))
      (pins
        (pin (num 1) (name Vc) (type input))
        (pin (num 2) (name FB+) (type input))
        (pin (num 3) (name FB-) (type passive))
        (pin (num 4) (name S/S) (type passive))
        (pin (num 5) (name Vin) (type power_in))
        (pin (num 6) (name GND_S) (type input))
        (pin (num 7) (name GND) (type input))
        (pin (num 8) (name Vsw) (type input))))
    (libpart (lib pic_programmer_schlib) (part NPN)
      (fields
        (field (name Reference) Q)
        (field (name Value) NPN))
      (pins
        (pin (num 1) (name E) (type passive))
        (pin (num 2) (name B) (type input))
        (pin (num 3) (name C) (type passive))))
    (libpart (lib pic_programmer_schlib) (part PIC12C508A)
      (aliases
        (alias PIC12C509A))
      (fields
        (field (name Reference) U)
        (field (name Value) PIC12C508A))
      (pins
        (pin (num 1) (name VDD) (type power_in))
        (pin (num 2) (name GP5/OSC1) (type input))
        (pin (num 3) (name GP4/OSC2) (type input))
        (pin (num 4) (name GP3/MCLR) (type input))
        (pin (num 5) (name GP2) (type input))
        (pin (num 6) (name GP1) (type input))
        (pin (num 7) (name GP0) (type input))
        (pin (num 8) (name VSS) (type power_in))))
    (libpart (lib pic_programmer_schlib) (part PIC16F54)
      (fields
        (field (name Reference) U?)
        (field (name Value) PIC16F54))
      (pins
        (pin (num 1) (name RA2) (type BiDi))
        (pin (num 2) (name RA3) (type BiDi))
        (pin (num 3) (name T0ckl) (type output))
        (pin (num 4) (name MCLR) (type input))
        (pin (num 5) (name VSS) (type power_in))
        (pin (num 6) (name RB0) (type BiDi))
        (pin (num 7) (name RB1) (type BiDi))
        (pin (num 8) (name RB2) (type BiDi))
        (pin (num 9) (name RB3) (type BiDi))
        (pin (num 10) (name RB4) (type BiDi))
        (pin (num 11) (name RB5) (type BiDi))
        (pin (num 12) (name ICSPC/RB6) (type BiDi))
        (pin (num 13) (name ICSPD/RB7) (type BiDi))
        (pin (num 14) (name VDD) (type power_in))
        (pin (num 15) (name OSC2/CLKO) (type output))
        (pin (num 16) (name OSC1/CLKI) (type input))
        (pin (num 17) (name RA0) (type BiDi))
        (pin (num 18) (name RA1) (type BiDi))))
    (libpart (lib pic_programmer_schlib) (part PNP)
      (fields
        (field (name Reference) Q)
        (field (name Value) PNP))
      (pins
        (pin (num 1) (name E) (type passive))
        (pin (num 2) (name B) (type input))
        (pin (num 3) (name C) (type passive))))
    (libpart (lib pic_programmer_schlib) (part POT)
      (fields
        (field (name Reference) RV)
        (field (name Value) POT))
      (pins
        (pin (num 1) (name 1) (type passive))
        (pin (num 2) (name 2) (type passive))
        (pin (num 3) (name 3) (type passive))))
    (libpart (lib pic_programmer_schlib) (part R)
      (footprints
        (fp R?)
        (fp SM0603)
        (fp SM0805)
        (fp R?-*)
        (fp SM1206))
      (fields
        (field (name Reference) R)
        (field (name Value) R))
      (pins
        (pin (num 1) (name ~) (type passive))
        (pin (num 2) (name ~) (type passive))))
    (libpart (lib pic_programmer_schlib) (part SUPP28)
      (fields
        (field (name Reference) J)
        (field (name Value) SUPP28))
      (pins
        (pin (num 1) (name 1) (type passive))
        (pin (num 2) (name 2) (type passive))
        (pin (num 3) (name 3) (type passive))
        (pin (num 4) (name 4) (type passive))
        (pin (num 5) (name 5) (type passive))
        (pin (num 6) (name 6) (type passive))
        (pin (num 7) (name 7) (type passive))
        (pin (num 8) (name 8) (type passive))
        (pin (num 9) (name 9) (type passive))
        (pin (num 10) (name 10) (type passive))
        (pin (num 11) (name 11) (type passive))
        (pin (num 12) (name 12) (type passive))
        (pin (num 13) (name 13) (type passive))
        (pin (num 14) (name 14) (type passive))
        (pin (num 15) (name 15) (type passive))
        (pin (num 16) (name 16) (type passive))
        (pin (num 17) (name 17) (type passive))
        (pin (num 18) (name 18) (type passive))
        (pin (num 19) (name 19) (type passive))
        (pin (num 20) (name 20) (type passive))
        (pin (num 21) (name 21) (type passive))
        (pin (num 22) (name 22) (type passive))
        (pin (num 23) (name 23) (type passive))
        (pin (num 24) (name 24) (type passive))
        (pin (num 25) (name 25) (type passive))
        (pin (num 26) (name 26) (type passive))
        (pin (num 27) (name 27) (type passive))
        (pin (num 28) (name 28) (type passive))))
    (libpart (lib pic_programmer_schlib) (part SUPP40)
      (fields
        (field (name Reference) P)
        (field (name Value) SUPP40))
      (pins
        (pin (num 1) (name 1) (type passive))
        (pin (num 2) (name 2) (type passive))
        (pin (num 3) (name 3) (type passive))
        (pin (num 4) (name 4) (type passive))
        (pin (num 5) (name 5) (type passive))
        (pin (num 6) (name 6) (type passive))
        (pin (num 7) (name 7) (type passive))
        (pin (num 8) (name 8) (type passive))
        (pin (num 9) (name 9) (type passive))
        (pin (num 10) (name 10) (type passive))
        (pin (num 11) (name 11) (type passive))
        (pin (num 12) (name 12) (type passive))
        (pin (num 13) (name 13) (type passive))
        (pin (num 14) (name 14) (type passive))
        (pin (num 15) (name 15) (type passive))
        (pin (num 16) (name 16) (type passive))
        (pin (num 17) (name 17) (type passive))
        (pin (num 18) (name 18) (type passive))
        (pin (num 19) (name 19) (type passive))
        (pin (num 20) (name 20) (type passive))
        (pin (num 21) (name 21) (type passive))
        (pin (num 22) (name 22) (type passive))
        (pin (num 23) (name 23) (type passive))
        (pin (num 24) (name 24) (type passive))
        (pin (num 25) (name 25) (type passive))
        (pin (num 26) (name 26) (type passive))
        (pin (num 27) (name 27) (type passive))
        (pin (num 28) (name 28) (type passive))
        (pin (num 29) (name 29) (type passive))
        (pin (num 30) (name 30) (type passive))
        (pin (num 31) (name 31) (type passive))
        (pin (num 32) (name 32) (type passive))
        (pin (num 33) (name 33) (type passive))
        (pin (num 34) (name 34) (type passive))
        (pin (num 35) (name 35) (type passive))
        (pin (num 36) (name 36) (type passive))
        (pin (num 37) (name 37) (type passive))
        (pin (num 38) (name 38) (type passive))
        (pin (num 39) (name 39) (type passive))
        (pin (num 40) (name 40) (type passive)))))
  (libraries
    (library (logical pic_programmer_schlib)
      (uri libs\pic_programmer_schlib.lib)))
  (nets
    (net (code 1) (name GND)
      (node (ref P2) (pin 8))
      (node (ref U2) (pin 4))
      (node (ref J1) (pin 5))
      (node (ref R6) (pin 2))
      (node (ref D9) (pin 2))
      (node (ref U2) (pin 1))
      (node (ref C5) (pin 2))
      (node (ref R2) (pin 2))
      (node (ref C7) (pin 2))
      (node (ref D3) (pin 1))
      (node (ref D5) (pin 1))
      (node (ref U2) (pin 10))
      (node (ref P3) (pin 8))
      (node (ref U6) (pin 8))
      (node (ref U1) (pin 4))
      (node (ref C6) (pin 2))
      (node (ref D7) (pin 1))
      (node (ref U2) (pin 13))
      (node (ref D12) (pin 2))
      (node (ref P3) (pin 12))
      (node (ref P3) (pin 31))
      (node (ref U2) (pin 7))
      (node (ref R4) (pin 2))
      (node (ref P1) (pin 1))
      (node (ref R17) (pin 2))
      (node (ref U1) (pin 1))
      (node (ref C4) (pin 2))
      (node (ref U5) (pin 5))
      (node (ref U4) (pin 6))
      (node (ref D8) (pin 2))
      (node (ref Q1) (pin 1))
      (node (ref P2) (pin 19))
      (node (ref R15) (pin 2))
      (node (ref U1) (pin 3))
      (node (ref U1) (pin 2))
      (node (ref C2) (pin 2))
      (node (ref C3) (pin 2))
      (node (ref U4) (pin 7))
      (node (ref U3) (pin GND))
      (node (ref C1) (pin 2)))
    (net (code 2) (name VPP)
      (node (ref R7) (pin 1))
      (node (ref R16) (pin 2))
      (node (ref D10) (pin 2))
      (node (ref C9) (pin 1))
      (node (ref Q2) (pin 1))
      (node (ref C3) (pin 1)))
    (net (code 3) (name "Net-(D8-Pad1)")
      (node (ref R9) (pin 2))
      (node (ref D8) (pin 1)))
    (net (code 4) (name /pic_sockets/VPP-MCLR)
      (node (ref P3) (pin 1))
      (node (ref U6) (pin 4))
      (node (ref P2) (pin 1))
      (node (ref R18) (pin 2))
      (node (ref U5) (pin 4)))
    (net (code 5) (name /pic_sockets/CLOCK-RB6)
      (node (ref U5) (pin 12))
      (node (ref P3) (pin 39))
      (node (ref U6) (pin 6))
      (node (ref U1) (pin 6))
      (node (ref P2) (pin 27))
      (node (ref R13) (pin 2)))
    (net (code 6) (name "Net-(Q1-Pad2)")
      (node (ref Q1) (pin 2))
      (node (ref R8) (pin 2)))
    (net (code 7) (name "Net-(D10-Pad1)")
      (node (ref D10) (pin 1))
      (node (ref L1) (pin 1))
      (node (ref U4) (pin 8)))
    (net (code 8) (name VCC)
      (node (ref JP1) (pin 1))
      (node (ref D6) (pin 2))
      (node (ref D2) (pin 2))
      (node (ref R14) (pin 1))
      (node (ref C1) (pin 1))
      (node (ref U3) (pin VO))
      (node (ref U4) (pin 5))
      (node (ref L1) (pin 2))
      (node (ref Q3) (pin 1))
      (node (ref D4) (pin 2))
      (node (ref R20) (pin 1))
      (node (ref U2) (pin 14)))
    (net (code 9) (name "Net-(J1-Pad1)")
      (node (ref J1) (pin 1)))
    (net (code 10) (name "Net-(J1-Pad6)")
      (node (ref J1) (pin 6)))
    (net (code 11) (name "Net-(J1-Pad2)")
      (node (ref J1) (pin 2)))
    (net (code 12) (name "Net-(J1-Pad9)")
      (node (ref J1) (pin 9)))
    (net (code 13) (name "Net-(D1-Pad1)")
      (node (ref D1) (pin 1))
      (node (ref P1) (pin 2)))
    (net (code 14) (name "Net-(C2-Pad1)")
      (node (ref C2) (pin 1))
      (node (ref D1) (pin 2))
      (node (ref U3) (pin VI)))
    (net (code 15) (name "Net-(D9-Pad1)")
      (node (ref R14) (pin 2))
      (node (ref D9) (pin 1)))
    (net (code 16) (name /TXD)
      (node (ref J1) (pin 3))
      (node (ref R1) (pin 1))
      (node (ref R2) (pin 1)))
    (net (code 17) (name "Net-(R8-Pad1)")
      (node (ref R8) (pin 1))
      (node (ref U2) (pin 3)))
    (net (code 18) (name "Net-(R12-Pad1)")
      (node (ref R12) (pin 1))
      (node (ref U2) (pin 6)))
    (net (code 19) (name "Net-(P102-Pad1)")
      (node (ref P102) (pin 1)))
    (net (code 20) (name "Net-(P106-Pad1)")
      (node (ref P106) (pin 1)))
    (net (code 21) (name "Net-(P105-Pad1)")
      (node (ref P105) (pin 1)))
    (net (code 22) (name "Net-(P104-Pad1)")
      (node (ref P104) (pin 1)))
    (net (code 23) (name "Net-(P103-Pad1)")
      (node (ref P103) (pin 1)))
    (net (code 24) (name "Net-(P101-Pad1)")
      (node (ref P101) (pin 1)))
    (net (code 25) (name "Net-(C9-Pad2)")
      (node (ref R11) (pin 2))
      (node (ref Q2) (pin 2))
      (node (ref R7) (pin 2))
      (node (ref C9) (pin 2)))
    (net (code 26) (name "Net-(R13-Pad1)")
      (node (ref U2) (pin 8))
      (node (ref R13) (pin 1)))
    (net (code 27) (name /pic_sockets/DATA-RB7)
      (node (ref U6) (pin 7))
      (node (ref P3) (pin 40))
      (node (ref U5) (pin 13))
      (node (ref U1) (pin 5))
      (node (ref U2) (pin 12))
      (node (ref R12) (pin 2))
      (node (ref P2) (pin 28)))
    (net (code 28) (name "Net-(D6-Pad1)")
      (node (ref R5) (pin 2))
      (node (ref U2) (pin 9))
      (node (ref D7) (pin 2))
      (node (ref D6) (pin 1)))
    (net (code 29) (name "Net-(RV1-Pad2)")
      (node (ref U4) (pin 2))
      (node (ref RV1) (pin 2)))
    (net (code 30) (name "Net-(R16-Pad1)")
      (node (ref RV1) (pin 3))
      (node (ref R16) (pin 1)))
    (net (code 31) (name "Net-(R15-Pad1)")
      (node (ref RV1) (pin 1))
      (node (ref R15) (pin 1)))
    (net (code 32) (name /pic_sockets/VCC_PIC)
      (node (ref R21) (pin 2))
      (node (ref C6) (pin 1))
      (node (ref JP1) (pin 2))
      (node (ref P3) (pin 11))
      (node (ref U6) (pin 1))
      (node (ref P3) (pin 32))
      (node (ref U5) (pin 14))
      (node (ref Q3) (pin 3))
      (node (ref U1) (pin 8))
      (node (ref P2) (pin 20))
      (node (ref C7) (pin 1)))
    (net (code 33) (name "Net-(Q3-Pad2)")
      (node (ref Q3) (pin 2))
      (node (ref R19) (pin 2))
      (node (ref R20) (pin 2)))
    (net (code 34) (name "Net-(D12-Pad1)")
      (node (ref R21) (pin 1))
      (node (ref D12) (pin 1)))
    (net (code 35) (name "Net-(D11-Pad1)")
      (node (ref D11) (pin 1))
      (node (ref R19) (pin 1)))
    (net (code 36) (name "Net-(C4-Pad1)")
      (node (ref U4) (pin 1))
      (node (ref C4) (pin 1))
      (node (ref R10) (pin 1)))
    (net (code 37) (name "Net-(C5-Pad1)")
      (node (ref C5) (pin 1))
      (node (ref R10) (pin 2)))
    (net (code 38) (name "Net-(U4-Pad3)")
      (node (ref U4) (pin 3)))
    (net (code 39) (name /PC-CLOCK-OUT)
      (node (ref J1) (pin 7))
      (node (ref R5) (pin 1))
      (node (ref R6) (pin 1)))
    (net (code 40) (name /CTS)
      (node (ref J1) (pin 8))
      (node (ref U2) (pin 11)))
    (net (code 41) (name /DTR)
      (node (ref J1) (pin 4))
      (node (ref R3) (pin 1))
      (node (ref R4) (pin 1)))
    (net (code 42) (name "Net-(U4-Pad4)")
      (node (ref U4) (pin 4)))
    (net (code 43) (name "Net-(Q2-Pad3)")
      (node (ref R9) (pin 1))
      (node (ref Q2) (pin 3))
      (node (ref R18) (pin 1))
      (node (ref R17) (pin 1)))
    (net (code 44) (name "Net-(D11-Pad2)")
      (node (ref D11) (pin 2))
      (node (ref Q1) (pin 3))
      (node (ref R11) (pin 1)))
    (net (code 45) (name "Net-(D2-Pad1)")
      (node (ref R1) (pin 2))
      (node (ref D2) (pin 1))
      (node (ref U2) (pin 2))
      (node (ref D3) (pin 2)))
    (net (code 46) (name "Net-(D4-Pad1)")
      (node (ref U2) (pin 5))
      (node (ref D5) (pin 2))
      (node (ref R3) (pin 2))
      (node (ref D4) (pin 1)))
    (net (code 47) (name "Net-(U5-Pad9)")
      (node (ref U5) (pin 9)))
    (net (code 48) (name "Net-(U5-Pad18)")
      (node (ref U5) (pin 18)))
    (net (code 49) (name "Net-(U5-Pad17)")
      (node (ref U5) (pin 17)))
    (net (code 50) (name "Net-(U5-Pad15)")
      (node (ref U5) (pin 15)))
    (net (code 51) (name "Net-(U5-Pad16)")
      (node (ref U5) (pin 16)))
    (net (code 52) (name "Net-(U5-Pad11)")
      (node (ref U5) (pin 11)))
    (net (code 53) (name "Net-(U5-Pad10)")
      (node (ref U5) (pin 10)))
    (net (code 54) (name "Net-(U5-Pad2)")
      (node (ref U5) (pin 2)))
    (net (code 55) (name "Net-(U1-Pad7)")
      (node (ref U1) (pin 7)))
    (net (code 56) (name "Net-(U5-Pad8)")
      (node (ref U5) (pin 8)))
    (net (code 57) (name "Net-(U5-Pad7)")
      (node (ref U5) (pin 7)))
    (net (code 58) (name "Net-(U5-Pad6)")
      (node (ref U5) (pin 6)))
    (net (code 59) (name "Net-(U5-Pad3)")
      (node (ref U5) (pin 3)))
    (net (code 60) (name "Net-(U5-Pad1)")
      (node (ref U5) (pin 1)))
    (net (code 61) (name "Net-(P3-Pad25)")
      (node (ref P3) (pin 25)))
    (net (code 62) (name "Net-(P3-Pad15)")
      (node (ref P3) (pin 15)))
    (net (code 63) (name "Net-(P3-Pad34)")
      (node (ref P3) (pin 34)))
    (net (code 64) (name "Net-(P3-Pad24)")
      (node (ref P3) (pin 24)))
    (net (code 65) (name "Net-(P3-Pad14)")
      (node (ref P3) (pin 14)))
    (net (code 66) (name "Net-(P3-Pad33)")
      (node (ref P3) (pin 33)))
    (net (code 67) (name "Net-(P3-Pad23)")
      (node (ref P3) (pin 23)))
    (net (code 68) (name "Net-(P3-Pad13)")
      (node (ref P3) (pin 13)))
    (net (code 69) (name "Net-(P3-Pad35)")
      (node (ref P3) (pin 35)))
    (net (code 70) (name "Net-(P3-Pad22)")
      (node (ref P3) (pin 22)))
    (net (code 71) (name "Net-(P3-Pad21)")
      (node (ref P3) (pin 21)))
    (net (code 72) (name "Net-(P3-Pad30)")
      (node (ref P3) (pin 30)))
    (net (code 73) (name "Net-(P3-Pad20)")
      (node (ref P3) (pin 20)))
    (net (code 74) (name "Net-(P3-Pad38)")
      (node (ref P3) (pin 38)))
    (net (code 75) (name "Net-(P3-Pad29)")
      (node (ref P3) (pin 29)))
    (net (code 76) (name "Net-(P3-Pad19)")
      (node (ref P3) (pin 19)))
    (net (code 77) (name "Net-(P3-Pad28)")
      (node (ref P3) (pin 28)))
    (net (code 78) (name "Net-(P3-Pad18)")
      (node (ref P3) (pin 18)))
    (net (code 79) (name "Net-(P3-Pad37)")
      (node (ref P3) (pin 37)))
    (net (code 80) (name "Net-(P3-Pad27)")
      (node (ref P3) (pin 27)))
    (net (code 81) (name "Net-(P3-Pad17)")
      (node (ref P3) (pin 17)))
    (net (code 82) (name "Net-(P3-Pad36)")
      (node (ref P3) (pin 36)))
    (net (code 83) (name "Net-(P3-Pad26)")
      (node (ref P3) (pin 26)))
    (net (code 84) (name "Net-(P3-Pad16)")
      (node (ref P3) (pin 16)))
    (net (code 85) (name "Net-(U6-Pad2)")
      (node (ref U6) (pin 2)))
    (net (code 86) (name "Net-(U6-Pad3)")
      (node (ref U6) (pin 3)))
    (net (code 87) (name "Net-(U6-Pad5)")
      (node (ref U6) (pin 5)))
    (net (code 88) (name "Net-(P2-Pad21)")
      (node (ref P2) (pin 21)))
    (net (code 89) (name "Net-(P2-Pad10)")
      (node (ref P2) (pin 10)))
    (net (code 90) (name "Net-(P2-Pad12)")
      (node (ref P2) (pin 12)))
    (net (code 91) (name "Net-(P2-Pad13)")
      (node (ref P2) (pin 13)))
    (net (code 92) (name "Net-(P2-Pad14)")
      (node (ref P2) (pin 14)))
    (net (code 93) (name "Net-(P2-Pad26)")
      (node (ref P2) (pin 26)))
    (net (code 94) (name "Net-(P2-Pad25)")
      (node (ref P2) (pin 25)))
    (net (code 95) (name "Net-(P2-Pad24)")
      (node (ref P2) (pin 24)))
    (net (code 96) (name "Net-(P2-Pad23)")
      (node (ref P2) (pin 23)))
    (net (code 97) (name "Net-(P2-Pad22)")
      (node (ref P2) (pin 22)))
    (net (code 98) (name "Net-(P2-Pad9)")
      (node (ref P2) (pin 9)))
    (net (code 99) (name "Net-(P2-Pad18)")
      (node (ref P2) (pin 18)))
    (net (code 100) (name "Net-(P2-Pad17)")
      (node (ref P2) (pin 17)))
    (net (code 101) (name "Net-(P2-Pad16)")
      (node (ref P2) (pin 16)))
    (net (code 102) (name "Net-(P2-Pad15)")
      (node (ref P2) (pin 15)))
    (net (code 103) (name "Net-(P2-Pad11)")
      (node (ref P2) (pin 11)))
    (net (code 104) (name "Net-(P2-Pad4)")
      (node (ref P2) (pin 4)))
    (net (code 105) (name "Net-(P2-Pad3)")
      (node (ref P2) (pin 3)))
    (net (code 106) (name "Net-(P2-Pad2)")
      (node (ref P2) (pin 2)))
    (net (code 107) (name "Net-(P2-Pad5)")
      (node (ref P2) (pin 5)))
    (net (code 108) (name "Net-(P2-Pad6)")
      (node (ref P2) (pin 6)))
    (net (code 109) (name "Net-(P2-Pad7)")
      (node (ref P2) (pin 7)))
    (net (code 110) (name "Net-(P3-Pad10)")
      (node (ref P3) (pin 10)))
    (net (code 111) (name "Net-(P3-Pad9)")
      (node (ref P3) (pin 9)))
    (net (code 112) (name "Net-(P3-Pad7)")
      (node (ref P3) (pin 7)))
    (net (code 113) (name "Net-(P3-Pad6)")
      (node (ref P3) (pin 6)))
    (net (code 114) (name "Net-(P3-Pad5)")
      (node (ref P3) (pin 5)))
    (net (code 115) (name "Net-(P3-Pad4)")
      (node (ref P3) (pin 4)))
    (net (code 116) (name "Net-(P3-Pad3)")
      (node (ref P3) (pin 3)))
    (net (code 117) (name "Net-(P3-Pad2)")
      (node (ref P3) (pin 2)))))