-
Notifications
You must be signed in to change notification settings - Fork 2
/
28C256_to_27C256.kicad_sch
1054 lines (1034 loc) · 40.7 KB
/
28C256_to_27C256.kicad_sch
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_sch (version 20211123) (generator eeschema)
(uuid df964f9c-3abb-4a45-9533-f1b3bacbac62)
(paper "USLetter")
(title_block
(title "28C256 SOIC to 27C256 DIP")
(date "2022-10-11")
(rev "003")
(company "Brian. K. White - [email protected]")
)
(lib_symbols
(symbol "000_LOCAL:27C256" (in_bom yes) (on_board yes)
(property "Reference" "U" (id 0) (at -7.62 26.67 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "27C256" (id 1) (at 2.54 -26.67 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "000_LOCAL:DIP-28_W15.24mm_pcb_sil_pins" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "http://ww1.microchip.com/downloads/en/DeviceDoc/doc0014.pdf" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "OTP UV EPROM 256 KiBit" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "OTP/UV EPROM 256 KiBit" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "DIP*W15.24mm*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "27C256_1_1"
(rectangle (start -7.62 25.4) (end 7.62 -25.4)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type background))
)
(pin power_in line (at -10.16 -17.78 0) (length 2.54)
(name "VPP" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin input line (at -10.16 22.86 0) (length 2.54)
(name "A0" (effects (font (size 1.27 1.27))))
(number "10" (effects (font (size 1.27 1.27))))
)
(pin tri_state line (at 10.16 22.86 180) (length 2.54)
(name "D0" (effects (font (size 1.27 1.27))))
(number "11" (effects (font (size 1.27 1.27))))
)
(pin tri_state line (at 10.16 20.32 180) (length 2.54)
(name "D1" (effects (font (size 1.27 1.27))))
(number "12" (effects (font (size 1.27 1.27))))
)
(pin tri_state line (at 10.16 17.78 180) (length 2.54)
(name "D2" (effects (font (size 1.27 1.27))))
(number "13" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 0 -27.94 90) (length 2.54)
(name "GND" (effects (font (size 1.27 1.27))))
(number "14" (effects (font (size 1.27 1.27))))
)
(pin tri_state line (at 10.16 15.24 180) (length 2.54)
(name "D3" (effects (font (size 1.27 1.27))))
(number "15" (effects (font (size 1.27 1.27))))
)
(pin tri_state line (at 10.16 12.7 180) (length 2.54)
(name "D4" (effects (font (size 1.27 1.27))))
(number "16" (effects (font (size 1.27 1.27))))
)
(pin tri_state line (at 10.16 10.16 180) (length 2.54)
(name "D5" (effects (font (size 1.27 1.27))))
(number "17" (effects (font (size 1.27 1.27))))
)
(pin tri_state line (at 10.16 7.62 180) (length 2.54)
(name "D6" (effects (font (size 1.27 1.27))))
(number "18" (effects (font (size 1.27 1.27))))
)
(pin tri_state line (at 10.16 5.08 180) (length 2.54)
(name "D7" (effects (font (size 1.27 1.27))))
(number "19" (effects (font (size 1.27 1.27))))
)
(pin input line (at -10.16 -7.62 0) (length 2.54)
(name "A12" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin input line (at -10.16 -20.32 0) (length 2.54)
(name "~{CE}" (effects (font (size 1.27 1.27))))
(number "20" (effects (font (size 1.27 1.27))))
)
(pin input line (at -10.16 -2.54 0) (length 2.54)
(name "A10" (effects (font (size 1.27 1.27))))
(number "21" (effects (font (size 1.27 1.27))))
)
(pin input line (at -10.16 -22.86 0) (length 2.54)
(name "~{OE}" (effects (font (size 1.27 1.27))))
(number "22" (effects (font (size 1.27 1.27))))
)
(pin input line (at -10.16 -5.08 0) (length 2.54)
(name "A11" (effects (font (size 1.27 1.27))))
(number "23" (effects (font (size 1.27 1.27))))
)
(pin input line (at -10.16 0 0) (length 2.54)
(name "A9" (effects (font (size 1.27 1.27))))
(number "24" (effects (font (size 1.27 1.27))))
)
(pin input line (at -10.16 2.54 0) (length 2.54)
(name "A8" (effects (font (size 1.27 1.27))))
(number "25" (effects (font (size 1.27 1.27))))
)
(pin input line (at -10.16 -10.16 0) (length 2.54)
(name "A13" (effects (font (size 1.27 1.27))))
(number "26" (effects (font (size 1.27 1.27))))
)
(pin input line (at -10.16 -12.7 0) (length 2.54)
(name "A14" (effects (font (size 1.27 1.27))))
(number "27" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 0 27.94 270) (length 2.54)
(name "VCC" (effects (font (size 1.27 1.27))))
(number "28" (effects (font (size 1.27 1.27))))
)
(pin input line (at -10.16 5.08 0) (length 2.54)
(name "A7" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin input line (at -10.16 7.62 0) (length 2.54)
(name "A6" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin input line (at -10.16 10.16 0) (length 2.54)
(name "A5" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
(pin input line (at -10.16 12.7 0) (length 2.54)
(name "A4" (effects (font (size 1.27 1.27))))
(number "6" (effects (font (size 1.27 1.27))))
)
(pin input line (at -10.16 15.24 0) (length 2.54)
(name "A3" (effects (font (size 1.27 1.27))))
(number "7" (effects (font (size 1.27 1.27))))
)
(pin input line (at -10.16 17.78 0) (length 2.54)
(name "A2" (effects (font (size 1.27 1.27))))
(number "8" (effects (font (size 1.27 1.27))))
)
(pin input line (at -10.16 20.32 0) (length 2.54)
(name "A1" (effects (font (size 1.27 1.27))))
(number "9" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "000_LOCAL:28C256" (in_bom yes) (on_board yes)
(property "Reference" "U" (id 0) (at -7.62 26.67 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "28C256" (id 1) (at 2.54 -26.67 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "DIP*W15.24mm* SOIC*7.5x17.9mm*P1.27mm*" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "28C256_1_1"
(rectangle (start -7.62 25.4) (end 7.62 -25.4)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type background))
)
(pin input line (at -10.16 -12.7 0) (length 2.54)
(name "A14" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin input line (at -10.16 22.86 0) (length 2.54)
(name "A0" (effects (font (size 1.27 1.27))))
(number "10" (effects (font (size 1.27 1.27))))
)
(pin tri_state line (at 10.16 22.86 180) (length 2.54)
(name "D0" (effects (font (size 1.27 1.27))))
(number "11" (effects (font (size 1.27 1.27))))
)
(pin tri_state line (at 10.16 20.32 180) (length 2.54)
(name "D1" (effects (font (size 1.27 1.27))))
(number "12" (effects (font (size 1.27 1.27))))
)
(pin tri_state line (at 10.16 17.78 180) (length 2.54)
(name "D2" (effects (font (size 1.27 1.27))))
(number "13" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 0 -27.94 90) (length 2.54)
(name "GND" (effects (font (size 1.27 1.27))))
(number "14" (effects (font (size 1.27 1.27))))
)
(pin tri_state line (at 10.16 15.24 180) (length 2.54)
(name "D3" (effects (font (size 1.27 1.27))))
(number "15" (effects (font (size 1.27 1.27))))
)
(pin tri_state line (at 10.16 12.7 180) (length 2.54)
(name "D4" (effects (font (size 1.27 1.27))))
(number "16" (effects (font (size 1.27 1.27))))
)
(pin tri_state line (at 10.16 10.16 180) (length 2.54)
(name "D5" (effects (font (size 1.27 1.27))))
(number "17" (effects (font (size 1.27 1.27))))
)
(pin tri_state line (at 10.16 7.62 180) (length 2.54)
(name "D6" (effects (font (size 1.27 1.27))))
(number "18" (effects (font (size 1.27 1.27))))
)
(pin tri_state line (at 10.16 5.08 180) (length 2.54)
(name "D7" (effects (font (size 1.27 1.27))))
(number "19" (effects (font (size 1.27 1.27))))
)
(pin input line (at -10.16 -7.62 0) (length 2.54)
(name "A12" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin input line (at -10.16 -22.86 0) (length 2.54)
(name "~{CS}" (effects (font (size 1.27 1.27))))
(number "20" (effects (font (size 1.27 1.27))))
)
(pin input line (at -10.16 -2.54 0) (length 2.54)
(name "A10" (effects (font (size 1.27 1.27))))
(number "21" (effects (font (size 1.27 1.27))))
)
(pin input line (at -10.16 -20.32 0) (length 2.54)
(name "~{OE}" (effects (font (size 1.27 1.27))))
(number "22" (effects (font (size 1.27 1.27))))
)
(pin input line (at -10.16 -5.08 0) (length 2.54)
(name "A11" (effects (font (size 1.27 1.27))))
(number "23" (effects (font (size 1.27 1.27))))
)
(pin input line (at -10.16 0 0) (length 2.54)
(name "A9" (effects (font (size 1.27 1.27))))
(number "24" (effects (font (size 1.27 1.27))))
)
(pin input line (at -10.16 2.54 0) (length 2.54)
(name "A8" (effects (font (size 1.27 1.27))))
(number "25" (effects (font (size 1.27 1.27))))
)
(pin input line (at -10.16 -10.16 0) (length 2.54)
(name "A13" (effects (font (size 1.27 1.27))))
(number "26" (effects (font (size 1.27 1.27))))
)
(pin input line (at -10.16 -17.78 0) (length 2.54)
(name "~{WE}" (effects (font (size 1.27 1.27))))
(number "27" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 0 27.94 270) (length 2.54)
(name "VCC" (effects (font (size 1.27 1.27))))
(number "28" (effects (font (size 1.27 1.27))))
)
(pin input line (at -10.16 5.08 0) (length 2.54)
(name "A7" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin input line (at -10.16 7.62 0) (length 2.54)
(name "A6" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin input line (at -10.16 10.16 0) (length 2.54)
(name "A5" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
(pin input line (at -10.16 12.7 0) (length 2.54)
(name "A4" (effects (font (size 1.27 1.27))))
(number "6" (effects (font (size 1.27 1.27))))
)
(pin input line (at -10.16 15.24 0) (length 2.54)
(name "A3" (effects (font (size 1.27 1.27))))
(number "7" (effects (font (size 1.27 1.27))))
)
(pin input line (at -10.16 17.78 0) (length 2.54)
(name "A2" (effects (font (size 1.27 1.27))))
(number "8" (effects (font (size 1.27 1.27))))
)
(pin input line (at -10.16 20.32 0) (length 2.54)
(name "A1" (effects (font (size 1.27 1.27))))
(number "9" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "000_LOCAL:GND" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "#PWR" (id 0) (at 0 -6.35 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (id 1) (at 0 -3.81 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "power-flag" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Power symbol creates a global label with name \"GND\" , ground" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "GND_0_1"
(polyline
(pts
(xy 0 0)
(xy 0 -1.27)
(xy 1.27 -1.27)
(xy 0 -2.54)
(xy -1.27 -1.27)
(xy 0 -1.27)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "GND_1_1"
(pin power_in line (at 0 0 270) (length 0) hide
(name "GND" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "000_LOCAL:Jumper_4_Bridged23" (pin_names (offset 0) hide) (in_bom yes) (on_board yes)
(property "Reference" "JP" (id 0) (at 2.54 -3.81 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "Jumper_4_Bridged23" (id 1) (at 0 2.794 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "Jumper SPDT" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Jumper, 3-pole, pins 1+2 closed/bridged" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "SolderJumper*Bridged12*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "Jumper_4_Bridged23_0_0"
(circle (center -3.302 -7.62) (radius 0.508)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(circle (center -3.302 -5.08) (radius 0.508)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(circle (center -3.302 -2.54) (radius 0.508)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(circle (center -3.302 0) (radius 0.508)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "Jumper_4_Bridged23_0_1"
(arc (start -2.794 -5.08) (mid -2.1539 -3.81) (end -2.794 -2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "Jumper_4_Bridged23_1_1"
(pin passive line (at -6.35 0 0) (length 2.54)
(name "A" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -6.35 -2.54 0) (length 2.54)
(name "B" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -6.35 -5.08 0) (length 2.54)
(name "C" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -6.35 -7.62 0) (length 2.54)
(name "D" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "000_LOCAL:R_US" (pin_numbers hide) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "R" (id 0) (at 2.54 0 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "R_US" (id 1) (at -2.54 0 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 1.016 -0.254 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "R res resistor" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Resistor, US symbol" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "R_*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "R_US_0_1"
(polyline
(pts
(xy 0 -2.286)
(xy 0 -2.54)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 2.286)
(xy 0 2.54)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 -0.762)
(xy 1.016 -1.143)
(xy 0 -1.524)
(xy -1.016 -1.905)
(xy 0 -2.286)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 0.762)
(xy 1.016 0.381)
(xy 0 0)
(xy -1.016 -0.381)
(xy 0 -0.762)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 2.286)
(xy 1.016 1.905)
(xy 0 1.524)
(xy -1.016 1.143)
(xy 0 0.762)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "R_US_1_1"
(pin passive line (at 0 3.81 270) (length 1.27)
(name "~" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -3.81 90) (length 1.27)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "000_LOCAL:VCC" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "#PWR" (id 0) (at 0 -3.81 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "VCC" (id 1) (at 0 3.81 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "power-flag" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Power symbol creates a global label with name \"VCC\"" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "VCC_0_1"
(polyline
(pts
(xy -0.762 1.27)
(xy 0 2.54)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 0)
(xy 0 2.54)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 2.54)
(xy 0.762 1.27)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "VCC_1_1"
(pin power_in line (at 0 0 90) (length 0) hide
(name "VCC" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
)
(polyline (pts (xy 146.939 152.781) (xy 146.939 150.495))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 0937db54-d63d-4e4e-b6ed-057aa27168ee)
)
(polyline (pts (xy 138.557 149.733) (xy 138.557 147.447))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 21973750-fba0-4433-9881-8494beda0c21)
)
(polyline (pts (xy 143.891 147.447) (xy 143.891 149.733))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 2de3fb3a-d693-4221-bd1d-18abc5689cd1)
)
(polyline (pts (xy 141.605 152.781) (xy 146.939 152.781))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 30fd451f-53a3-4e58-8da7-f2d4c6d50920)
)
(polyline (pts (xy 143.891 149.733) (xy 138.557 149.733))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 50fc18aa-e34a-445b-a232-e28d663c09e3)
)
(polyline (pts (xy 138.557 147.447) (xy 143.891 147.447))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 5ef07173-918f-4e89-b830-1fe6b5e29b10)
)
(polyline (pts (xy 140.589 152.781) (xy 140.589 150.495))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 8a399cc0-27e4-4b0e-b627-6d0712e0da4d)
)
(polyline (pts (xy 135.255 150.495) (xy 135.255 152.781))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 9227c25b-c999-4946-8fdd-3be5cbba484a)
)
(polyline (pts (xy 140.589 150.495) (xy 135.255 150.495))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid ae1fcb73-31ae-4466-8b70-ad75a5ab763a)
)
(polyline (pts (xy 141.605 150.495) (xy 141.605 152.781))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid ce0c3f8c-6406-4cba-9e4c-cb189b630e79)
)
(wire (pts (xy 133.35 140.97) (xy 139.7 140.97))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid deaa3a2a-4824-42b8-a285-df7bc5515409)
)
(polyline (pts (xy 135.255 152.781) (xy 140.589 152.781))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid e110eac8-1b0b-4541-9b2a-233ff3504cb8)
)
(polyline (pts (xy 146.939 150.495) (xy 141.605 150.495))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid f56bc63f-4c58-4c27-b4bf-a225b70adcff)
)
(text "RUN mode (27C256 pinout on DIP legs): 1 2 3 4"
(at 93.091 149.479 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 4b08aacd-0705-4df3-be9c-f9d9439c5b35)
)
(text "PROGRAM mode (28C256 pinout on DIP legs): 1 2 3 4"
(at 88.011 152.527 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 51e0fab2-6964-4ecd-bbcf-aee74cb54bd2)
)
(label "D0" (at 181.61 68.58 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 00840a2d-fadd-4bae-b4bb-50ef5d901d26)
)
(label "A10" (at 91.44 93.98 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 04b8c429-62a3-4859-adab-321c6610ecfd)
)
(label "D7" (at 181.61 86.36 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 09e1e943-5a79-4301-b303-9e40591b5aa5)
)
(label "D6" (at 111.76 83.82 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 141205d1-6b1d-4d6b-b48d-2b6cc5fa7cd8)
)
(label "A1" (at 161.29 71.12 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 1a8c7ebf-0ab3-4a60-81cf-80268214929d)
)
(label "A5" (at 161.29 81.28 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 1ae97e14-9983-4ad3-ae04-87b4eff8d791)
)
(label "D5" (at 111.76 81.28 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 1b111f98-d3a2-46f4-958d-57170066b9ee)
)
(label "NC_A14" (at 139.7 133.35 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 25e16a4a-cb5e-4393-b88b-6535ce0daef5)
)
(label "~{OE}" (at 161.29 111.76 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 30015108-7446-456d-a0bc-db2a2dc20c5c)
)
(label "A8" (at 91.44 88.9 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 32c9e50b-c72e-4c9e-870a-04e01f3810a9)
)
(label "D2" (at 181.61 73.66 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 385209f2-786c-4876-b1ce-3ccafed356e5)
)
(label "A13" (at 91.44 101.6 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 3860f12a-dcfb-4cf2-a25e-cee45666db85)
)
(label "A3" (at 91.44 76.2 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 4654a506-dace-49e8-8dd7-132a048936a9)
)
(label "D4" (at 181.61 78.74 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 489a716a-9567-44ce-a729-ca82634557f1)
)
(label "~{WE}" (at 139.7 140.97 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 4e4c5413-9d5a-4a89-a8b2-b9283fa7d01a)
)
(label "A1" (at 91.44 71.12 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 51e08170-205a-45ef-bd82-b6786727966d)
)
(label "~{WE}" (at 161.29 109.22 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 58d4ad19-342a-4f4f-9b03-410254f65cdb)
)
(label "A9" (at 161.29 91.44 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 59aa1860-90c8-4064-bc67-c5475e3808c0)
)
(label "D1" (at 181.61 71.12 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 5a08f83b-fe98-44da-89f6-a0ed8061eba7)
)
(label "A2" (at 161.29 73.66 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 5ef35062-54d8-4470-a2e4-605dfcab861e)
)
(label "A10" (at 161.29 93.98 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 60d50ca4-d4e9-4c70-8349-0fcb33b59b2a)
)
(label "A14_WE" (at 139.7 138.43 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 63802147-ba5e-4ab3-a8d6-acd005444c55)
)
(label "D2" (at 111.76 73.66 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 6f2a835f-dc22-4a23-943b-5dfca56827a7)
)
(label "A11" (at 161.29 96.52 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 736d8682-bf17-4176-ac57-a9feae4705f7)
)
(label "A14" (at 161.29 104.14 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 7bba3a41-d36c-4b43-9fc0-b7ff8619939c)
)
(label "NC_A14" (at 91.44 109.22 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 7d754fe8-d21c-4ca3-9659-94528b81b156)
)
(label "A0" (at 161.29 68.58 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 7d93c877-efa6-4e17-96bf-a424117590d9)
)
(label "A5" (at 91.44 81.28 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 7e1b8f36-d01c-4c62-8c29-54e62dfdf7f8)
)
(label "A9" (at 91.44 91.44 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 7e6e8ad7-d9b5-45c4-aa66-796c9e935f26)
)
(label "D7" (at 111.76 86.36 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 7faa7966-ac97-4acb-8354-5b43d8a71330)
)
(label "A7" (at 161.29 86.36 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 80803dd3-69a4-4ab5-91e8-dde3db6b1228)
)
(label "A11" (at 91.44 96.52 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 82086b40-d355-4552-8e07-e9c7ce35026e)
)
(label "A3" (at 161.29 76.2 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 87760a0f-3cef-47d5-872c-7b2e8709ea79)
)
(label "A6" (at 91.44 83.82 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 8b68fa80-a6d2-4f48-9d71-5a9a4da2eab5)
)
(label "~{CE}" (at 91.44 111.76 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 9115ad5e-9a07-439c-8129-7ce9a18283cc)
)
(label "A0" (at 91.44 68.58 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 91172c7c-f689-4ba0-aa71-8f311964124c)
)
(label "A6" (at 161.29 83.82 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 93b151e2-08fd-430e-9d94-def54606a04d)
)
(label "A4" (at 161.29 78.74 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 9a6ae11c-b512-4f79-8fc0-ddf8034cb5ba)
)
(label "D5" (at 181.61 81.28 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid a4b6106d-d7b7-4f29-9d00-e7eb3575231a)
)
(label "D0" (at 111.76 68.58 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid a5bd1680-67b5-45a8-84d6-e001d4248653)
)
(label "A12" (at 91.44 99.06 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid a6636c65-1b27-4b67-ac28-0ee22ae97c76)
)
(label "D1" (at 111.76 71.12 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid a9d8aac7-1115-45cb-9101-67b7cb2ec7f8)
)
(label "A4" (at 91.44 78.74 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid b3ad71f2-87bc-444e-aaff-e027128f05bb)
)
(label "D3" (at 111.76 76.2 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid bd6e0618-bd04-442b-a457-3345027f862c)
)
(label "D6" (at 181.61 83.82 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid c068af8e-ac9b-4130-9ff5-4b1439609f24)
)
(label "A14_WE" (at 91.44 104.14 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid c6b19bbe-2c2f-4f38-bc98-cb8db37fd8e6)
)
(label "A7" (at 91.44 86.36 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid ce9ec9b8-b6e3-41ad-a25f-88c2d0b6dcd7)
)
(label "~{OE}" (at 91.44 114.3 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid d4d3bd72-630a-4280-9dd7-9167cfc51177)
)
(label "A13" (at 161.29 101.6 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid eca2d169-a1c5-4e12-a0d0-ac582ac9c838)
)
(label "A8" (at 161.29 88.9 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid ee50bfa3-671a-45ab-88d8-3ef12f443b3e)
)
(label "A14" (at 139.7 135.89 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid f2d4f396-b4e6-4c36-a467-f24026c6034b)
)
(label "~{CE}" (at 161.29 114.3 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid f3c9a375-10b6-4f0a-bcc7-410a37dcdcc1)
)
(label "A2" (at 91.44 73.66 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid f60ac797-1f7e-44fc-9ea9-e5f3d8f4cca3)
)
(label "A12" (at 161.29 99.06 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid f7be47b6-7fec-478d-8f20-eb92b4ef1c30)
)
(label "D4" (at 111.76 78.74 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid fc87c0e6-306c-4729-aabb-fab3636b9da8)
)
(label "D3" (at 181.61 76.2 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid fe544209-6f4d-4dc3-b647-e1f4b6e042fb)
)
(symbol (lib_id "000_LOCAL:28C256") (at 171.45 91.44 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-00005e5b130a)
(property "Reference" "U1" (id 0) (at 165.1 64.135 0))
(property "Value" "28C256" (id 1) (at 176.53 64.135 0))
(property "Footprint" "000_LOCAL:SOIC28W" (id 2) (at 171.45 91.44 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "http://ww1.microchip.com/downloads/en/DeviceDoc/doc0006.pdf" (id 3) (at 171.45 91.44 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 06969bf2-6c55-4e62-85e4-e06469542848))
(pin "10" (uuid 6df4d01e-adae-4425-9f18-b106fcc2731e))
(pin "11" (uuid cb38f31f-c4b7-46e0-91bc-d8b68c16a696))
(pin "12" (uuid 439cd742-e301-4833-ac73-b3aa7c5b2f5c))
(pin "13" (uuid 0f0064b5-32a1-4208-9197-9249570ac5c0))
(pin "14" (uuid e5f01a8e-f92e-4971-9e6b-61996c2f2202))
(pin "15" (uuid e7933443-4e6b-4e06-a3dd-88efa34378c0))
(pin "16" (uuid cb497e45-f6fb-4805-a828-81009a77b7c9))
(pin "17" (uuid 721e7df7-e4c7-43aa-bf81-94f9b57c0558))
(pin "18" (uuid 14e38f2c-8574-4e7b-bf99-ae3a99dafbd2))
(pin "19" (uuid 7236ea65-0323-4850-99ae-bc17489b5ae7))
(pin "2" (uuid cea99688-8cae-4496-9a3c-fd852f243603))
(pin "20" (uuid 2a222e38-6a4e-4eec-98fd-3dc44672fd74))
(pin "21" (uuid 24eec152-3dbd-4895-9780-de18faebb3e2))
(pin "22" (uuid 4f567caa-1f27-48a7-b1f8-bea5491fedcf))
(pin "23" (uuid 944c7eb5-9e8b-4d4c-afba-349765d0adb2))
(pin "24" (uuid 93d393c4-5b72-45c1-9614-c9c9f150fd59))
(pin "25" (uuid 07928dcc-aea5-441f-abc7-c6f409f0934d))
(pin "26" (uuid 49ee1429-ec3d-4003-bcb3-49bfbf42d238))
(pin "27" (uuid e8bcd4f7-4e29-4f73-a4d6-b38782e1378f))
(pin "28" (uuid 7128ae05-66fb-4f9e-a70a-479ac67280a7))
(pin "3" (uuid eb3d1858-43cc-4e3d-bcd6-4ff8dc09e09f))
(pin "4" (uuid d68ccf1b-c9f9-4487-886c-e6d04ac04be3))
(pin "5" (uuid a0d660ca-efe4-4f1a-a307-83e3fa78217a))
(pin "6" (uuid 2e59b69f-dab3-452d-a7d2-d1a760532170))
(pin "7" (uuid d77033a8-2e93-43f0-b945-053cc2bab534))
(pin "8" (uuid 525e70b8-f851-49df-a3e9-b38ac31dcb9f))
(pin "9" (uuid 8db9de3c-d7fe-4969-814d-c6b3d9727fc3))
)
(symbol (lib_id "000_LOCAL:27C256") (at 101.6 91.44 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-00005e5c209e)
(property "Reference" "J1" (id 0) (at 95.25 64.135 0))
(property "Value" "27C256 DIP LEGS" (id 1) (at 111.125 64.135 0))
(property "Footprint" "000_LOCAL:DIP28_0.6_pcb" (id 2) (at 101.6 91.44 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "http://ww1.microchip.com/downloads/en/DeviceDoc/doc0014.pdf" (id 3) (at 101.6 91.44 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 2cc26645-d4a3-4bfe-a62c-3b53abcd71f1))
(pin "10" (uuid a4c50e46-3e94-4d41-a025-089ae77eff3c))
(pin "11" (uuid 2b296a01-dfd0-40ef-a737-6cf10a04d545))
(pin "12" (uuid 653c167f-3ba2-4b6a-bd39-d5e7376282c1))
(pin "13" (uuid f38aa322-e8fb-45eb-86ea-0c948ca53592))
(pin "14" (uuid 9bc2d389-79c5-407d-b70f-37c2470561df))
(pin "15" (uuid 6969f9cf-d8c2-4513-8dac-90dda3c7c06a))
(pin "16" (uuid 601b3ce0-ba7b-40fb-87ee-0f6e3b9b23a2))
(pin "17" (uuid bf1cc4fe-6441-4e38-a906-6080053c8fb4))
(pin "18" (uuid 2c6110dc-33e0-4872-8bc6-27fdd90da1b2))
(pin "19" (uuid dfe0284d-5233-4d8a-b4e0-d8110dec4a37))
(pin "2" (uuid 0f2fbd24-b36e-40cc-bea7-a36402d99437))
(pin "20" (uuid 838b8caf-9be8-4d65-b2f5-6333e7b30acd))
(pin "21" (uuid d2c4dbad-a328-4a6f-861c-97c629c34fd2))
(pin "22" (uuid d8cebdfb-e1b0-48c3-b837-37c3c474f91e))
(pin "23" (uuid 690392ec-2733-4de6-9c75-544f5538b1a5))
(pin "24" (uuid 02f89df7-034d-4a75-943e-e47e2387e68d))
(pin "25" (uuid 45b41624-283b-47e2-b93f-6ebf45088121))
(pin "26" (uuid d0d40e23-d288-43ff-bf98-46997681a83e))
(pin "27" (uuid 3a24ddc7-db91-4bbd-a77a-a5dbce058feb))
(pin "28" (uuid 201a3b59-7bcc-4d8a-8e3e-6aa84ba20fcb))
(pin "3" (uuid f799f4ff-6736-4368-bcbd-aa152025a87b))
(pin "4" (uuid 0383e5c8-5fa9-42a3-8913-c48d5c3251ef))
(pin "5" (uuid 60f62784-1fa9-40de-8427-8d77537dc6e0))
(pin "6" (uuid ecd4fa0f-2022-466e-be5a-aa0ca2bf698c))
(pin "7" (uuid 9edb6000-5a9c-4d04-81d7-ea8a6802276d))
(pin "8" (uuid 3f18a8dd-a3f1-4633-ac3b-b3f8e8e344ac))
(pin "9" (uuid 04ec90a1-72e0-495d-a493-ec97cf3300b8))
)
(symbol (lib_id "000_LOCAL:R_US") (at 129.54 140.97 270) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-00005e5d421c)
(property "Reference" "R1" (id 0) (at 125.984 143.256 90))
(property "Value" "47k" (id 1) (at 129.54 143.256 90))
(property "Footprint" "000_LOCAL:R_0805" (id 2) (at 129.286 141.986 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 129.54 140.97 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 1f48525d-6376-471e-9077-9f034604b457))
(pin "2" (uuid d5974773-879c-45c0-900d-6a4d917b17bc))
)
(symbol (lib_id "000_LOCAL:Jumper_4_Bridged23") (at 146.05 133.35 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-00005e638c0c)
(property "Reference" "JP1" (id 0) (at 134.874 130.048 0))
(property "Value" "Jumper_3_Bridged12" (id 1) (at 165.608 136.144 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Footprint" "000_LOCAL:Pin_Header_Angled_1x04_Pitch2.54mm" (id 2) (at 146.05 133.35 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 146.05 133.35 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid a71249e3-3108-4203-82bf-330dfd63e174))
(pin "2" (uuid e2ffb7e3-f51a-4654-a330-c994dfeae9da))
(pin "3" (uuid 6da543a2-0d1f-41af-b9d1-439d514bfe5b))
(pin "4" (uuid 3062adba-4271-42b0-91be-7ac8e3380c9c))
)
(symbol (lib_id "000_LOCAL:GND") (at 101.6 119.38 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 17d4f9b7-e308-4106-bb62-1995115ed989)
(property "Reference" "#PWR?" (id 0) (at 101.6 125.73 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (id 1) (at 101.6 123.19 0))
(property "Footprint" "" (id 2) (at 101.6 119.38 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 101.6 119.38 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 6bc1034b-1386-49dd-97fe-7dc67a26e10f))
)
(symbol (lib_id "000_LOCAL:VCC") (at 101.6 63.5 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 455c670b-d880-40b3-9787-254ca31d269c)
(property "Reference" "#PWR?" (id 0) (at 101.6 67.31 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "VCC" (id 1) (at 101.6 59.69 0))
(property "Footprint" "" (id 2) (at 101.6 63.5 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 101.6 63.5 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 12673d5c-321c-474e-9c27-8f50162a8e0c))
)
(symbol (lib_id "000_LOCAL:VCC") (at 125.73 140.97 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 525c1fa1-811d-49f5-85cd-06534328c4e1)
(property "Reference" "#PWR?" (id 0) (at 125.73 144.78 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "VCC" (id 1) (at 125.73 137.16 0))
(property "Footprint" "" (id 2) (at 125.73 140.97 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 125.73 140.97 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 8df23808-9fa3-4687-88ad-cb022b0f157e))
)
(symbol (lib_id "000_LOCAL:VCC") (at 171.45 63.5 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid bc241da1-6357-4618-9e6e-99823abd9c62)
(property "Reference" "#PWR?" (id 0) (at 171.45 67.31 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "VCC" (id 1) (at 171.45 59.69 0))
(property "Footprint" "" (id 2) (at 171.45 63.5 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 171.45 63.5 0)
(effects (font (size 1.27 1.27)) hide)