-
Notifications
You must be signed in to change notification settings - Fork 0
/
8051_dev.net
1905 lines (1905 loc) · 67.2 KB
/
8051_dev.net
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
(export (version D)
(design
(source /root/Downloads/8051_Board_Shared-master/8051_dev.sch)
(date "Sat 06 Aug 2016 07:50:00 AM EDT")
(tool "Eeschema no-vcs-found-product")
(sheet (number 1) (name /) (tstamps /)
(title_block
(title)
(company)
(rev)
(date)
(source 8051_dev.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 2) (name /GPIO/) (tstamps /579AE440/)
(title_block
(title)
(company)
(rev)
(date)
(source GPIO.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 3) (name /LCD/) (tstamps /579AF509/)
(title_block
(title)
(company)
(rev)
(date)
(source LCD.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 4) (name /STEPPER/) (tstamps /579B3797/)
(title_block
(title)
(company)
(rev)
(date)
(source STEPPER.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 5) (name /4_7_SEGMENT/) (tstamps /579B4E0B/)
(title_block
(title)
(company)
(rev)
(date)
(source 4_7_SEGMENT.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 6) (name /DCmotor/) (tstamps /579BADFD/)
(title_block
(title)
(company)
(rev)
(date)
(source DCMotor.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 7) (name /ADC/) (tstamps /579BCF80/)
(title_block
(title)
(company)
(rev)
(date)
(source ADC.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 8) (name /POWER_SUPPLY/) (tstamps /579ADE38/)
(title_block
(title)
(company)
(rev)
(date)
(source POWER_SUPPLY.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 9) (name /SERIAL/) (tstamps /579B8DE4/)
(title_block
(title)
(company)
(rev)
(date)
(source SERIAL.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 10) (name /KeyPad/) (tstamps /57A5FEA5/)
(title_block
(title)
(company)
(rev)
(date)
(source KeyPad.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value "")))))
(components
(comp (ref SW1)
(value RESETSWITCH)
(footprint Buttons_Switches_ThroughHole:Push_button_2_pin)
(libsource (lib device) (part SW_PUSH))
(sheetpath (names /) (tstamps /))
(tstamp 579C0743))
(comp (ref C3)
(value 10uf/10v)
(footprint Capacitors_ThroughHole:C_Disc_D3_P2.5)
(libsource (lib device) (part CP))
(sheetpath (names /) (tstamps /))
(tstamp 579C07E0))
(comp (ref R1)
(value 8.2k)
(footprint Resistors_ThroughHole:Resistor_Horizontal_RM10mm)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 579C09B0))
(comp (ref Y1)
(value 11.0592MHZ)
(footprint Crystals:HC-49V)
(libsource (lib device) (part Crystal_Small))
(sheetpath (names /) (tstamps /))
(tstamp 579C1572))
(comp (ref C1)
(value 33PF)
(footprint Capacitors_ThroughHole:C_Disc_D3_P2.5)
(libsource (lib device) (part C_Small))
(sheetpath (names /) (tstamps /))
(tstamp 579C1730))
(comp (ref C2)
(value 33PF)
(footprint Capacitors_ThroughHole:C_Disc_D3_P2.5)
(libsource (lib device) (part C_Small))
(sheetpath (names /) (tstamps /))
(tstamp 579C17A5))
(comp (ref P2)
(value CONN_01X08)
(footprint Pin_Headers:Pin_Header_Straight_1x08)
(libsource (lib conn) (part CONN_01X08))
(sheetpath (names /) (tstamps /))
(tstamp 579C315E))
(comp (ref P4)
(value CONN_01X08)
(footprint Pin_Headers:Pin_Header_Straight_1x08)
(libsource (lib conn) (part CONN_01X08))
(sheetpath (names /) (tstamps /))
(tstamp 579C51A0))
(comp (ref P3)
(value CONN_01X08)
(footprint Pin_Headers:Pin_Header_Straight_1x08)
(libsource (lib conn) (part CONN_01X08))
(sheetpath (names /) (tstamps /))
(tstamp 579C6870))
(comp (ref P1)
(value CONN_01X08)
(footprint Pin_Headers:Pin_Header_Straight_1x08)
(libsource (lib conn) (part CONN_01X08))
(sheetpath (names /) (tstamps /))
(tstamp 579C7047))
(comp (ref U1)
(value 8051_generic_89s51)
(footprint Housings_DIP:DIP-40_W15.24mm_LongPads)
(libsource (lib 8051_dev-cache) (part 8051_generic_89s51))
(sheetpath (names /) (tstamps /))
(tstamp 57A5BD0E))
(comp (ref RR1)
(value 10K_sil_resistance)
(footprint Resistors_ThroughHole:Resistor_Array_SIP8)
(libsource (lib device) (part RR8))
(sheetpath (names /) (tstamps /))
(tstamp 579C4379))
(comp (ref D1)
(value LED)
(footprint LEDs:LED-3MM)
(libsource (lib device) (part LED))
(sheetpath (names /GPIO/) (tstamps /579AE440/))
(tstamp 579AE4EE))
(comp (ref R2)
(value 330)
(footprint Resistors_ThroughHole:Resistor_Horizontal_RM10mm)
(libsource (lib device) (part R))
(sheetpath (names /GPIO/) (tstamps /579AE440/))
(tstamp 579AE6C3))
(comp (ref D2)
(value LED)
(footprint LEDs:LED-3MM)
(libsource (lib device) (part LED))
(sheetpath (names /GPIO/) (tstamps /579AE440/))
(tstamp 579AEAA2))
(comp (ref R3)
(value 330)
(footprint Resistors_ThroughHole:Resistor_Horizontal_RM10mm)
(libsource (lib device) (part R))
(sheetpath (names /GPIO/) (tstamps /579AE440/))
(tstamp 579AEAA8))
(comp (ref D3)
(value LED)
(footprint LEDs:LED-3MM)
(libsource (lib device) (part LED))
(sheetpath (names /GPIO/) (tstamps /579AE440/))
(tstamp 579AEB1B))
(comp (ref R4)
(value 330)
(footprint Resistors_ThroughHole:Resistor_Horizontal_RM10mm)
(libsource (lib device) (part R))
(sheetpath (names /GPIO/) (tstamps /579AE440/))
(tstamp 579AEB21))
(comp (ref D4)
(value LED)
(footprint LEDs:LED-3MM)
(libsource (lib device) (part LED))
(sheetpath (names /GPIO/) (tstamps /579AE440/))
(tstamp 579AEB28))
(comp (ref R5)
(value 330)
(footprint Resistors_ThroughHole:Resistor_Horizontal_RM10mm)
(libsource (lib device) (part R))
(sheetpath (names /GPIO/) (tstamps /579AE440/))
(tstamp 579AEB2E))
(comp (ref D5)
(value LED)
(footprint LEDs:LED-3MM)
(libsource (lib device) (part LED))
(sheetpath (names /GPIO/) (tstamps /579AE440/))
(tstamp 579AED35))
(comp (ref R6)
(value 330)
(footprint Resistors_ThroughHole:Resistor_Horizontal_RM10mm)
(libsource (lib device) (part R))
(sheetpath (names /GPIO/) (tstamps /579AE440/))
(tstamp 579AED3B))
(comp (ref D6)
(value LED)
(footprint LEDs:LED-3MM)
(libsource (lib device) (part LED))
(sheetpath (names /GPIO/) (tstamps /579AE440/))
(tstamp 579AED42))
(comp (ref R7)
(value 330)
(footprint Resistors_ThroughHole:Resistor_Horizontal_RM10mm)
(libsource (lib device) (part R))
(sheetpath (names /GPIO/) (tstamps /579AE440/))
(tstamp 579AED48))
(comp (ref D7)
(value LED)
(footprint LEDs:LED-3MM)
(libsource (lib device) (part LED))
(sheetpath (names /GPIO/) (tstamps /579AE440/))
(tstamp 579AED4F))
(comp (ref R8)
(value 330)
(footprint Resistors_ThroughHole:Resistor_Horizontal_RM10mm)
(libsource (lib device) (part R))
(sheetpath (names /GPIO/) (tstamps /579AE440/))
(tstamp 579AED55))
(comp (ref D8)
(value LED)
(footprint LEDs:LED-3MM)
(libsource (lib device) (part LED))
(sheetpath (names /GPIO/) (tstamps /579AE440/))
(tstamp 579AED5C))
(comp (ref R9)
(value 330)
(footprint Resistors_ThroughHole:Resistor_Horizontal_RM10mm)
(libsource (lib device) (part R))
(sheetpath (names /GPIO/) (tstamps /579AE440/))
(tstamp 579AED62))
(comp (ref P5)
(value GPIO_LED_HEADERS)
(footprint Pin_Headers:Pin_Header_Straight_1x08)
(libsource (lib conn) (part CONN_01X08))
(sheetpath (names /GPIO/) (tstamps /579AE440/))
(tstamp 579AEFA4))
(comp (ref RR2)
(value RR8)
(footprint Resistors_ThroughHole:Resistor_Array_SIP8)
(libsource (lib device) (part RR8))
(sheetpath (names /GPIO/) (tstamps /579AE440/))
(tstamp 579B08B6))
(comp (ref P6)
(value GPIO_SWITCHES_HEADER)
(footprint Pin_Headers:Pin_Header_Straight_1x08)
(libsource (lib conn) (part CONN_01X08))
(sheetpath (names /GPIO/) (tstamps /579AE440/))
(tstamp 579B1533))
(comp (ref SW2)
(value SW_PUSH)
(footprint Buttons_Switches_ThroughHole:Push_button_2_pin)
(libsource (lib device) (part SW_PUSH))
(sheetpath (names /GPIO/) (tstamps /579AE440/))
(tstamp 579B17C2))
(comp (ref SW3)
(value SW_PUSH)
(footprint Buttons_Switches_ThroughHole:Push_button_2_pin)
(libsource (lib device) (part SW_PUSH))
(sheetpath (names /GPIO/) (tstamps /579AE440/))
(tstamp 579B182F))
(comp (ref SW4)
(value SW_PUSH)
(footprint Buttons_Switches_ThroughHole:Push_button_2_pin)
(libsource (lib device) (part SW_PUSH))
(sheetpath (names /GPIO/) (tstamps /579AE440/))
(tstamp 579B1882))
(comp (ref SW5)
(value SW_PUSH)
(footprint Buttons_Switches_ThroughHole:Push_button_2_pin)
(libsource (lib device) (part SW_PUSH))
(sheetpath (names /GPIO/) (tstamps /579AE440/))
(tstamp 579B18D5))
(comp (ref SW6)
(value SW_PUSH)
(footprint Buttons_Switches_ThroughHole:Push_button_2_pin)
(libsource (lib device) (part SW_PUSH))
(sheetpath (names /GPIO/) (tstamps /579AE440/))
(tstamp 579B1920))
(comp (ref SW7)
(value SW_PUSH)
(footprint Buttons_Switches_ThroughHole:Push_button_2_pin)
(libsource (lib device) (part SW_PUSH))
(sheetpath (names /GPIO/) (tstamps /579AE440/))
(tstamp 579B1979))
(comp (ref SW8)
(value SW_PUSH)
(footprint Buttons_Switches_ThroughHole:Push_button_2_pin)
(libsource (lib device) (part SW_PUSH))
(sheetpath (names /GPIO/) (tstamps /579AE440/))
(tstamp 579B19C0))
(comp (ref SW9)
(value SW_PUSH)
(footprint Buttons_Switches_ThroughHole:Push_button_2_pin)
(libsource (lib device) (part SW_PUSH))
(sheetpath (names /GPIO/) (tstamps /579AE440/))
(tstamp 579B1A0B))
(comp (ref DS1)
(value LCD16X2)
(footprint Display:WC1602A)
(libsource (lib display) (part LCD16X2))
(sheetpath (names /LCD/) (tstamps /579AF509/))
(tstamp 579AF51D))
(comp (ref R10)
(value 330)
(footprint Resistors_ThroughHole:Resistor_Horizontal_RM10mm)
(libsource (lib device) (part R))
(sheetpath (names /LCD/) (tstamps /579AF509/))
(tstamp 579AF6A8))
(comp (ref P7)
(value LCD_PIN_HEADERS)
(footprint Pin_Headers:Pin_Header_Straight_1x11)
(libsource (lib conn) (part CONN_01X11))
(sheetpath (names /LCD/) (tstamps /579AF509/))
(tstamp 579AF733))
(comp (ref RV1)
(value POT)
(footprint Potentiometers:Potentiometer_Trimmer-Suntan-TSR-3386P)
(libsource (lib device) (part POT))
(sheetpath (names /LCD/) (tstamps /579AF509/))
(tstamp 579AF584))
(comp (ref P8)
(value LCD_power_head)
(footprint Pin_Headers:Pin_Header_Straight_1x02)
(libsource (lib conn) (part CONN_01X02))
(sheetpath (names /LCD/) (tstamps /579AF509/))
(tstamp 57A5BEBF))
(comp (ref U2)
(value ULN2003)
(footprint Housings_DIP:DIP-16_W7.62mm_LongPads)
(libsource (lib 8051_dev-rescue) (part ULN2003-RESCUE-8051_dev))
(sheetpath (names /STEPPER/) (tstamps /579B3797/))
(tstamp 579B37B4))
(comp (ref P11)
(value STEPPER_OUT)
(footprint Pin_Headers:Pin_Header_Straight_1x07)
(libsource (lib conn) (part CONN_01X07))
(sheetpath (names /STEPPER/) (tstamps /579B3797/))
(tstamp 579B39F9))
(comp (ref P10)
(value STEPPER_POWER)
(footprint Pin_Headers:Pin_Header_Angled_2x01)
(libsource (lib conn) (part CONN_01X02))
(sheetpath (names /STEPPER/) (tstamps /579B3797/))
(tstamp 579B3D99))
(comp (ref P9)
(value Stepper_in)
(footprint Pin_Headers:Pin_Header_Straight_1x07)
(libsource (lib conn) (part CONN_01X07))
(sheetpath (names /STEPPER/) (tstamps /579B3797/))
(tstamp 57A62266))
(comp (ref Q1)
(value BC547)
(footprint TO_SOT_Packages_THT:TO-92_Inline_Wide)
(libsource (lib transistors) (part BC547))
(sheetpath (names /4_7_SEGMENT/) (tstamps /579B4E0B/))
(tstamp 579B4E8D))
(comp (ref R11)
(value 50K)
(footprint Resistors_ThroughHole:Resistor_Horizontal_RM10mm)
(libsource (lib device) (part R))
(sheetpath (names /4_7_SEGMENT/) (tstamps /579B4E0B/))
(tstamp 579B4ECC))
(comp (ref Q2)
(value BC547)
(footprint TO_SOT_Packages_THT:TO-92_Inline_Wide)
(libsource (lib transistors) (part BC547))
(sheetpath (names /4_7_SEGMENT/) (tstamps /579B4E0B/))
(tstamp 579B4FF0))
(comp (ref Q3)
(value BC547)
(footprint TO_SOT_Packages_THT:TO-92_Inline_Wide)
(libsource (lib transistors) (part BC547))
(sheetpath (names /4_7_SEGMENT/) (tstamps /579B4E0B/))
(tstamp 579B5022))
(comp (ref Q4)
(value BC547)
(footprint TO_SOT_Packages_THT:TO-92_Inline_Wide)
(libsource (lib transistors) (part BC547))
(sheetpath (names /4_7_SEGMENT/) (tstamps /579B4E0B/))
(tstamp 579B505F))
(comp (ref R12)
(value 50K)
(footprint Resistors_ThroughHole:Resistor_Horizontal_RM10mm)
(libsource (lib device) (part R))
(sheetpath (names /4_7_SEGMENT/) (tstamps /579B4E0B/))
(tstamp 579B54A6))
(comp (ref R16)
(value 50K)
(footprint Resistors_ThroughHole:Resistor_Horizontal_RM10mm)
(libsource (lib device) (part R))
(sheetpath (names /4_7_SEGMENT/) (tstamps /579B4E0B/))
(tstamp 579B54DD))
(comp (ref R22)
(value 50K)
(footprint Resistors_ThroughHole:Resistor_Horizontal_RM10mm)
(libsource (lib device) (part R))
(sheetpath (names /4_7_SEGMENT/) (tstamps /579B4E0B/))
(tstamp 579B5515))
(comp (ref P12)
(value 4_7_SEGMENT_BC547_CONTROL)
(footprint Pin_Headers:Pin_Header_Straight_1x04)
(libsource (lib conn) (part CONN_01X04))
(sheetpath (names /4_7_SEGMENT/) (tstamps /579B4E0B/))
(tstamp 579B5726))
(comp (ref P13)
(value 4_7_SEGMENT_HEADER)
(footprint Pin_Headers:Pin_Header_Straight_1x08)
(libsource (lib conn) (part CONN_01X08))
(sheetpath (names /4_7_SEGMENT/) (tstamps /579B4E0B/))
(tstamp 579B5961))
(comp (ref R13)
(value 330)
(footprint Resistors_ThroughHole:Resistor_Horizontal_RM10mm)
(libsource (lib device) (part R))
(sheetpath (names /4_7_SEGMENT/) (tstamps /579B4E0B/))
(tstamp 579B6021))
(comp (ref R14)
(value 330)
(footprint Resistors_ThroughHole:Resistor_Horizontal_RM10mm)
(libsource (lib device) (part R))
(sheetpath (names /4_7_SEGMENT/) (tstamps /579B4E0B/))
(tstamp 579B612E))
(comp (ref R15)
(value 330)
(footprint Resistors_ThroughHole:Resistor_Horizontal_RM10mm)
(libsource (lib device) (part R))
(sheetpath (names /4_7_SEGMENT/) (tstamps /579B4E0B/))
(tstamp 579B6169))
(comp (ref R17)
(value 330)
(footprint Resistors_ThroughHole:Resistor_Horizontal_RM10mm)
(libsource (lib device) (part R))
(sheetpath (names /4_7_SEGMENT/) (tstamps /579B4E0B/))
(tstamp 579B61FD))
(comp (ref R18)
(value 330)
(footprint Resistors_ThroughHole:Resistor_Horizontal_RM10mm)
(libsource (lib device) (part R))
(sheetpath (names /4_7_SEGMENT/) (tstamps /579B4E0B/))
(tstamp 579B6203))
(comp (ref R19)
(value 330)
(footprint Resistors_ThroughHole:Resistor_Horizontal_RM10mm)
(libsource (lib device) (part R))
(sheetpath (names /4_7_SEGMENT/) (tstamps /579B4E0B/))
(tstamp 579B6209))
(comp (ref R20)
(value 330)
(footprint Resistors_ThroughHole:Resistor_Horizontal_RM10mm)
(libsource (lib device) (part R))
(sheetpath (names /4_7_SEGMENT/) (tstamps /579B4E0B/))
(tstamp 579B628D))
(comp (ref R21)
(value 330)
(footprint Resistors_ThroughHole:Resistor_Horizontal_RM10mm)
(libsource (lib device) (part R))
(sheetpath (names /4_7_SEGMENT/) (tstamps /579B4E0B/))
(tstamp 579B6293))
(comp (ref AFF1)
(value CC56-12)
(footprint Displays_7-Segment:Cx56-12)
(libsource (lib display) (part CC56-12))
(sheetpath (names /4_7_SEGMENT/) (tstamps /579B4E0B/))
(tstamp 579B76F1))
(comp (ref U3)
(value L293D_modified)
(footprint Housings_DIP:DIP-16_W7.62mm_LongPads)
(libsource (lib 8051_dev-cache) (part L293D_modified))
(sheetpath (names /DCmotor/) (tstamps /579BADFD/))
(tstamp 579BAE26))
(comp (ref P14)
(value L293D_HEADER)
(footprint Pin_Headers:Pin_Header_Straight_1x04)
(libsource (lib conn) (part CONN_01X04))
(sheetpath (names /DCmotor/) (tstamps /579BADFD/))
(tstamp 579BB340))
(comp (ref P15)
(value L293D_9V)
(footprint Pin_Headers:Pin_Header_Straight_1x02)
(libsource (lib conn) (part CONN_01X02))
(sheetpath (names /DCmotor/) (tstamps /579BADFD/))
(tstamp 579BB5E5))
(comp (ref P16)
(value DC_motor_power_head)
(footprint Pin_Headers:Pin_Header_Straight_1x02)
(libsource (lib conn) (part CONN_01X02))
(sheetpath (names /DCmotor/) (tstamps /579BADFD/))
(tstamp 57A5E953))
(comp (ref P20)
(value ADC_DIG_OUT)
(footprint Pin_Headers:Pin_Header_Straight_1x08)
(libsource (lib conn) (part CONN_01X08))
(sheetpath (names /ADC/) (tstamps /579BCF80/))
(tstamp 579BDB29))
(comp (ref RV2)
(value POT)
(footprint Potentiometers:Potentiometer_Trimmer-Suntan-TSR-3386P)
(libsource (lib device) (part POT))
(sheetpath (names /ADC/) (tstamps /579BCF80/))
(tstamp 579BE463))
(comp (ref P17)
(value ADC_power_head)
(footprint Pin_Headers:Pin_Header_Straight_1x02)
(libsource (lib conn) (part CONN_01X02))
(sheetpath (names /ADC/) (tstamps /579BCF80/))
(tstamp 57A5E198))
(comp (ref U4)
(value 0808)
(footprint Housings_DIP:DIP-28_W15.24mm_LongPads)
(libsource (lib 8051_dev-cache) (part 0808))
(sheetpath (names /ADC/) (tstamps /579BCF80/))
(tstamp 57A61848))
(comp (ref P19)
(value ADCV_1)
(footprint Pin_Headers:Pin_Header_Straight_1x03)
(libsource (lib conn) (part CONN_01X03))
(sheetpath (names /ADC/) (tstamps /579BCF80/))
(tstamp 57A60EDB))
(comp (ref P28)
(value ADCV_2)
(footprint Pin_Headers:Pin_Header_Straight_1x05)
(libsource (lib conn) (part CONN_01X05))
(sheetpath (names /ADC/) (tstamps /579BCF80/))
(tstamp 57A60F22))
(comp (ref P18)
(value ADCC1)
(footprint Pin_Headers:Pin_Header_Straight_1x04)
(libsource (lib conn) (part CONN_01X04))
(sheetpath (names /ADC/) (tstamps /579BCF80/))
(tstamp 57A61508))
(comp (ref P29)
(value ADCC2)
(footprint Pin_Headers:Pin_Header_Straight_1x04)
(libsource (lib conn) (part CONN_01X04))
(sheetpath (names /ADC/) (tstamps /579BCF80/))
(tstamp 57A618EE))
(comp (ref CON1)
(value BARREL_JACK)
(footprint Connect:BARREL_JACK)
(libsource (lib conn) (part BARREL_JACK))
(sheetpath (names /POWER_SUPPLY/) (tstamps /579ADE38/))
(tstamp 579ADE43))
(comp (ref C6)
(value 10Uf_63V)
(footprint Capacitors_ThroughHole:C_Disc_D3_P2.5)
(libsource (lib device) (part CP))
(sheetpath (names /POWER_SUPPLY/) (tstamps /579ADE38/))
(tstamp 579ADF07))
(comp (ref C5)
(value 1000UF_25V)
(footprint Capacitors_ThroughHole:C_Disc_D3_P2.5)
(libsource (lib device) (part CP))
(sheetpath (names /POWER_SUPPLY/) (tstamps /579ADE38/))
(tstamp 579ADF43))
(comp (ref C4)
(value 0.1UF)
(footprint Capacitors_ThroughHole:C_Disc_D3_P2.5)
(libsource (lib device) (part C))
(sheetpath (names /POWER_SUPPLY/) (tstamps /579ADE38/))
(tstamp 579ADF77))
(comp (ref U5)
(value 7805_mod)
(footprint Connect:PINHEAD1-3)
(libsource (lib 7805_mod) (part 7805_mod))
(sheetpath (names /POWER_SUPPLY/) (tstamps /579ADE38/))
(tstamp 57A61DF1))
(comp (ref P23)
(value 9Vout)
(footprint Pin_Headers:Pin_Header_Straight_1x02)
(libsource (lib conn) (part CONN_01X02))
(sheetpath (names /POWER_SUPPLY/) (tstamps /579ADE38/))
(tstamp 57A5C281))
(comp (ref P24)
(value 5V_Pin)
(footprint Pin_Headers:Pin_Header_Straight_1x05)
(libsource (lib conn) (part CONN_01X05))
(sheetpath (names /POWER_SUPPLY/) (tstamps /579ADE38/))
(tstamp 57A5C672))
(comp (ref P25)
(value GND_pin)
(footprint Pin_Headers:Pin_Header_Straight_1x05)
(libsource (lib conn) (part CONN_01X05))
(sheetpath (names /POWER_SUPPLY/) (tstamps /579ADE38/))
(tstamp 57A5C82C))
(comp (ref C7)
(value 0.1UF)
(footprint Capacitors_ThroughHole:C_Disc_D3_P2.5)
(libsource (lib device) (part C_Small))
(sheetpath (names /SERIAL/) (tstamps /579B8DE4/))
(tstamp 579B9449))
(comp (ref C8)
(value 0.1UF)
(footprint Capacitors_ThroughHole:C_Disc_D3_P2.5)
(libsource (lib device) (part C_Small))
(sheetpath (names /SERIAL/) (tstamps /579B8DE4/))
(tstamp 579B946F))
(comp (ref C9)
(value 0.1UF)
(footprint Capacitors_ThroughHole:C_Disc_D3_P2.5)
(libsource (lib device) (part C_Small))
(sheetpath (names /SERIAL/) (tstamps /579B8DE4/))
(tstamp 579B97AB))
(comp (ref C10)
(value 0.1UF)
(footprint Capacitors_ThroughHole:C_Disc_D3_P2.5)
(libsource (lib device) (part C_Small))
(sheetpath (names /SERIAL/) (tstamps /579B8DE4/))
(tstamp 579B9810))
(comp (ref P21)
(value MAX232_TX_RX)
(footprint Pin_Headers:Pin_Header_Straight_1x02)
(libsource (lib conn) (part CONN_01X02))
(sheetpath (names /SERIAL/) (tstamps /579B8DE4/))
(tstamp 579B9ACA))
(comp (ref J1)
(value DB9)
(footprint Connect:DB9FC)
(libsource (lib conn) (part DB9))
(sheetpath (names /SERIAL/) (tstamps /579B8DE4/))
(tstamp 579B9D4D))
(comp (ref P22)
(value MAX_power_head)
(footprint Pin_Headers:Pin_Header_Straight_1x02)
(libsource (lib conn) (part CONN_01X02))
(sheetpath (names /SERIAL/) (tstamps /579B8DE4/))
(tstamp 57A5DC1C))
(comp (ref U6)
(value MAX_232)
(footprint Housings_DIP:DIP-16_W7.62mm_LongPads)
(libsource (lib 8051_dev-cache) (part MAX_232))
(sheetpath (names /SERIAL/) (tstamps /579B8DE4/))
(tstamp 57A62B03))
(comp (ref SW10)
(value SW_PUSH)
(footprint Buttons_Switches_ThroughHole:Push_button_2_pin)
(libsource (lib device) (part SW_PUSH))
(sheetpath (names /KeyPad/) (tstamps /57A5FEA5/))
(tstamp 57A5FED8))
(comp (ref SW13)
(value SW_PUSH)
(footprint Buttons_Switches_ThroughHole:Push_button_2_pin)
(libsource (lib device) (part SW_PUSH))
(sheetpath (names /KeyPad/) (tstamps /57A5FEA5/))
(tstamp 57A5FF26))
(comp (ref SW17)
(value SW_PUSH)
(footprint Buttons_Switches_ThroughHole:Push_button_2_pin)
(libsource (lib device) (part SW_PUSH))
(sheetpath (names /KeyPad/) (tstamps /57A5FEA5/))
(tstamp 57A5FF4F))
(comp (ref SW11)
(value SW_PUSH)
(footprint Buttons_Switches_ThroughHole:Push_button_2_pin)
(libsource (lib device) (part SW_PUSH))
(sheetpath (names /KeyPad/) (tstamps /57A5FEA5/))
(tstamp 57A5FF82))
(comp (ref SW14)
(value SW_PUSH)
(footprint Buttons_Switches_ThroughHole:Push_button_2_pin)
(libsource (lib device) (part SW_PUSH))
(sheetpath (names /KeyPad/) (tstamps /57A5FEA5/))
(tstamp 57A60005))
(comp (ref SW16)
(value SW_PUSH)
(footprint Buttons_Switches_ThroughHole:Push_button_2_pin)
(libsource (lib device) (part SW_PUSH))
(sheetpath (names /KeyPad/) (tstamps /57A5FEA5/))
(tstamp 57A6004E))
(comp (ref SW19)
(value SW_PUSH)
(footprint Buttons_Switches_ThroughHole:Push_button_2_pin)
(libsource (lib device) (part SW_PUSH))
(sheetpath (names /KeyPad/) (tstamps /57A5FEA5/))
(tstamp 57A60083))
(comp (ref SW20)
(value SW_PUSH)
(footprint Buttons_Switches_ThroughHole:Push_button_2_pin)
(libsource (lib device) (part SW_PUSH))
(sheetpath (names /KeyPad/) (tstamps /57A5FEA5/))
(tstamp 57A600B8))
(comp (ref SW12)
(value SW_PUSH)
(footprint Buttons_Switches_ThroughHole:Push_button_2_pin)
(libsource (lib device) (part SW_PUSH))
(sheetpath (names /KeyPad/) (tstamps /57A5FEA5/))
(tstamp 57A600FF))
(comp (ref SW15)
(value SW_PUSH)
(footprint Buttons_Switches_ThroughHole:Push_button_2_pin)
(libsource (lib device) (part SW_PUSH))
(sheetpath (names /KeyPad/) (tstamps /57A5FEA5/))
(tstamp 57A60142))
(comp (ref SW18)
(value SW_PUSH)
(footprint Buttons_Switches_ThroughHole:Push_button_2_pin)
(libsource (lib device) (part SW_PUSH))
(sheetpath (names /KeyPad/) (tstamps /57A5FEA5/))
(tstamp 57A6017D))
(comp (ref SW21)
(value SW_PUSH)
(footprint Buttons_Switches_ThroughHole:Push_button_2_pin)
(libsource (lib device) (part SW_PUSH))
(sheetpath (names /KeyPad/) (tstamps /57A5FEA5/))
(tstamp 57A601B2))
(comp (ref P27)
(value CONN_01X03)
(footprint Pin_Headers:Pin_Header_Straight_1x03)
(libsource (lib conn) (part CONN_01X03))
(sheetpath (names /KeyPad/) (tstamps /57A5FEA5/))
(tstamp 57A601F7))
(comp (ref P26)
(value CONN_01X04)
(footprint Pin_Headers:Pin_Header_Straight_1x04)
(libsource (lib conn) (part CONN_01X04))
(sheetpath (names /KeyPad/) (tstamps /57A5FEA5/))
(tstamp 57A60260)))
(libparts
(libpart (lib 8051_dev-cache) (part 0808)
(fields
(field (name Reference) U)
(field (name Value) 0808))
(pins
(pin (num 1) (name IN3) (type input))
(pin (num 2) (name IN4) (type input))
(pin (num 3) (name IN5) (type input))
(pin (num 4) (name IN6) (type input))
(pin (num 5) (name IN7) (type input))
(pin (num 6) (name START) (type input))
(pin (num 7) (name EOC) (type input))
(pin (num 8) (name 2-5) (type input))
(pin (num 9) (name OUTeN) (type input))
(pin (num 10) (name CLOCK) (type input))
(pin (num 11) (name VCC) (type input))
(pin (num 12) (name vREF+) (type input))
(pin (num 13) (name GND) (type input))
(pin (num 14) (name 2-7) (type input))
(pin (num 15) (name 2-6) (type input))
(pin (num 16) (name VREF-) (type input))
(pin (num 17) (name 2-8) (type input))
(pin (num 18) (name 2-4) (type input))
(pin (num 19) (name 2-3) (type input))
(pin (num 20) (name 2-2) (type input))
(pin (num 21) (name 2-1) (type input))
(pin (num 22) (name ALE) (type input))
(pin (num 23) (name ADD_C) (type input))
(pin (num 24) (name ADD_B) (type input))
(pin (num 25) (name ADD_A) (type input))
(pin (num 26) (name IN0) (type input))
(pin (num 27) (name IN1) (type input))
(pin (num 28) (name IN2) (type input))))
(libpart (lib 7805_mod) (part 7805_mod)
(fields
(field (name Reference) U)
(field (name Value) 7805_mod))
(pins
(pin (num 1) (name VI) (type input))
(pin (num 2) (name GND) (type input))
(pin (num 3) (name Vo) (type input))))
(libpart (lib 8051_dev-cache) (part 8051_generic_89s51)
(fields
(field (name Reference) U)
(field (name Value) 8051_generic_89s51))
(pins
(pin (num 1) (name P1.0) (type input))
(pin (num 2) (name P1.1) (type input))
(pin (num 3) (name P1.2) (type input))
(pin (num 4) (name P1.3) (type input))
(pin (num 5) (name P1.4) (type input))
(pin (num 6) (name P1.5_mosi) (type input))
(pin (num 7) (name P1.6_miso) (type input))
(pin (num 8) (name P1.7_sck) (type input))
(pin (num 9) (name RST) (type input))
(pin (num 10) (name P3.0_RX) (type input))
(pin (num 11) (name P3.0_TX) (type input))
(pin (num 12) (name INT0) (type input))
(pin (num 13) (name INT1) (type input))
(pin (num 14) (name T0) (type input))
(pin (num 15) (name T1) (type input))
(pin (num 16) (name WR) (type input))
(pin (num 17) (name RD) (type input))
(pin (num 18) (name XTAL2) (type input))
(pin (num 19) (name XTAL1) (type input))
(pin (num 20) (name GND) (type input))
(pin (num 21) (name A8) (type input))
(pin (num 22) (name A9) (type input))
(pin (num 23) (name A10) (type input))
(pin (num 24) (name A11) (type input))
(pin (num 25) (name A12) (type input))
(pin (num 26) (name A13) (type input))
(pin (num 27) (name A14) (type input))
(pin (num 28) (name A15) (type input))
(pin (num 29) (name PSEN) (type input))
(pin (num 30) (name ALE/PROG) (type input))
(pin (num 31) (name EA/VPP) (type input))
(pin (num 32) (name AD7) (type input))
(pin (num 33) (name AD6) (type input))
(pin (num 34) (name AD5) (type input))
(pin (num 35) (name AD4) (type input))
(pin (num 36) (name AD3) (type input))
(pin (num 37) (name AD2) (type input))
(pin (num 38) (name AD1) (type input))
(pin (num 39) (name AD0) (type input))
(pin (num 40) (name VCC) (type input))))
(libpart (lib conn) (part BARREL_JACK)
(description "DC Barrel Jack")
(fields
(field (name Reference) CON)
(field (name Value) BARREL_JACK))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))
(pin (num 3) (name ~) (type passive))))
(libpart (lib transistors) (part BC547)
(aliases
(alias BC546)
(alias BC548)
(alias BC549)
(alias BC550))
(description "45V Vce, 0.1A Ic, NPN, Small Signal Transistor, TO-92")
(docs http://www.fairchildsemi.com/ds/BC/BC547.pdf)
(footprints
(fp TO-92*))
(fields
(field (name Reference) Q)
(field (name Value) BC547)
(field (name Footprint) TO-92))
(pins
(pin (num 1) (name C) (type passive))
(pin (num 2) (name B) (type input))
(pin (num 3) (name E) (type passive))))
(libpart (lib device) (part C)
(description "Unpolarized capacitor")
(footprints
(fp C?)
(fp C_????_*)
(fp C_????)
(fp SMD*_c)
(fp Capacitor*))
(fields
(field (name Reference) C)
(field (name Value) C))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib display) (part CC56-12)
(description "Kingbright 4 x 7-segment common cathode display")
(docs http://www.kingbrightusa.com/images/catalog/SPEC/CC56-12EWA.pdf)
(footprints
(fp Cx56-12))
(fields
(field (name Reference) AFF)
(field (name Value) CC56-12))
(pins
(pin (num 1) (name e) (type input))
(pin (num 2) (name d) (type input))
(pin (num 3) (name DP) (type input))
(pin (num 4) (name c) (type input))
(pin (num 5) (name g) (type input))
(pin (num 6) (name CC4) (type input))
(pin (num 7) (name b) (type input))
(pin (num 8) (name CC3) (type input))
(pin (num 9) (name CC2) (type input))
(pin (num 10) (name f) (type input))
(pin (num 11) (name a) (type input))
(pin (num 12) (name CC1) (type input))))
(libpart (lib conn) (part CONN_01X02)
(description "Connector, single row, 01x02")
(footprints
(fp Pin_Header_Straight_1X02)
(fp Pin_Header_Angled_1X02)
(fp Socket_Strip_Straight_1X02)
(fp Socket_Strip_Angled_1X02))
(fields
(field (name Reference) P)
(field (name Value) CONN_01X02))
(pins
(pin (num 1) (name P1) (type passive))
(pin (num 2) (name P2) (type passive))))
(libpart (lib conn) (part CONN_01X03)
(description "Connector, single row, 01x03")
(footprints
(fp Pin_Header_Straight_1X03)
(fp Pin_Header_Angled_1X03)
(fp Socket_Strip_Straight_1X03)
(fp Socket_Strip_Angled_1X03))
(fields
(field (name Reference) P)
(field (name Value) CONN_01X03))
(pins
(pin (num 1) (name P1) (type passive))
(pin (num 2) (name P2) (type passive))
(pin (num 3) (name P3) (type passive))))
(libpart (lib conn) (part CONN_01X04)
(description "Connector, single row, 01x04")
(footprints
(fp Pin_Header_Straight_1X04)
(fp Pin_Header_Angled_1X04)
(fp Socket_Strip_Straight_1X04)
(fp Socket_Strip_Angled_1X04))
(fields
(field (name Reference) P)
(field (name Value) CONN_01X04))
(pins
(pin (num 1) (name P1) (type passive))
(pin (num 2) (name P2) (type passive))
(pin (num 3) (name P3) (type passive))
(pin (num 4) (name P4) (type passive))))
(libpart (lib conn) (part CONN_01X05)
(description "Connector, single row, 01x05")
(footprints
(fp Pin_Header_Straight_1X05)
(fp Pin_Header_Angled_1X05)
(fp Socket_Strip_Straight_1X05)
(fp Socket_Strip_Angled_1X05))
(fields
(field (name Reference) P)
(field (name Value) CONN_01X05))
(pins
(pin (num 1) (name P1) (type passive))
(pin (num 2) (name P2) (type passive))
(pin (num 3) (name P3) (type passive))
(pin (num 4) (name P4) (type passive))
(pin (num 5) (name P5) (type passive))))
(libpart (lib conn) (part CONN_01X07)
(description "Connector, single row, 01x07")
(footprints
(fp Pin_Header_Straight_1X07)
(fp Pin_Header_Angled_1X07)
(fp Socket_Strip_Straight_1X07)
(fp Socket_Strip_Angled_1X07))
(fields
(field (name Reference) P)
(field (name Value) CONN_01X07))
(pins
(pin (num 1) (name P1) (type passive))
(pin (num 2) (name P2) (type passive))
(pin (num 3) (name P3) (type passive))
(pin (num 4) (name P4) (type passive))
(pin (num 5) (name P5) (type passive))
(pin (num 6) (name P6) (type passive))
(pin (num 7) (name P7) (type passive))))
(libpart (lib conn) (part CONN_01X08)
(description "Connector, single row, 01x08")
(footprints
(fp Pin_Header_Straight_1X08)
(fp Pin_Header_Angled_1X08)