-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathJupiter-II_expansion.net
2016 lines (2016 loc) · 77.7 KB
/
Jupiter-II_expansion.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 C:\Users\rrr_l\Documents\Projetos_Eletronica\JupiterAce\Jupiter-II_expansion\Jupiter-II_expansion.sch)
(date "02/08/2020 15:23:27")
(tool "Eeschema (5.1.6)-1")
(sheet (number 1) (name /) (tstamps /)
(title_block
(title "Jupiter-II Expansion")
(company)
(rev A)
(date 2020-05-23)
(source Jupiter-II_expansion.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 2) (name /COLOUR/) (tstamps /5E8292A6/)
(title_block
(title)
(company)
(rev)
(date 2020-05-23)
(source colour.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value "")))))
(components
(comp (ref J1)
(value Conn_02x25_Odd_Even)
(footprint Connector_PinHeader_2.54mm:PinHeader_2x25_P2.54mm_Vertical)
(datasheet ~)
(libsource (lib Connector_Generic) (part Conn_02x25_Odd_Even) (description "Generic connector, double row, 02x25, odd/even pin numbering scheme (row 1 odd numbers, row 2 even numbers), script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5F0AD961))
(comp (ref H3)
(value MountingHole)
(footprint Mounting_Holes:MountingHole_3.2mm_M3)
(datasheet ~)
(libsource (lib Mechanical) (part MountingHole) (description "Mounting Hole without connection"))
(sheetpath (names /) (tstamps /))
(tstamp 5EC48260))
(comp (ref H2)
(value MountingHole)
(footprint Mounting_Holes:MountingHole_3.2mm_M3)
(datasheet ~)
(libsource (lib Mechanical) (part MountingHole) (description "Mounting Hole without connection"))
(sheetpath (names /) (tstamps /))
(tstamp 5EC4849C))
(comp (ref H1)
(value MountingHole)
(footprint Mounting_Holes:MountingHole_3.2mm_M3)
(datasheet ~)
(libsource (lib Mechanical) (part MountingHole) (description "Mounting Hole without connection"))
(sheetpath (names /) (tstamps /))
(tstamp 5EC48725))
(comp (ref H4)
(value MountingHole)
(footprint Mounting_Holes:MountingHole_3.2mm_M3)
(datasheet ~)
(libsource (lib Mechanical) (part MountingHole) (description "Mounting Hole without connection"))
(sheetpath (names /) (tstamps /))
(tstamp 5F0AD965))
(comp (ref U4)
(value AY-3-8910)
(footprint Package_DIP:DIP-40_W15.24mm_Socket)
(libsource (lib rfl_GeneralInstrument) (part AY-3-8910) (description "Programmable Sound Generator"))
(sheetpath (names /) (tstamps /))
(tstamp 5E98E10D))
(comp (ref C10)
(value 100n)
(footprint Capacitor_THT:C_Rect_L7.0mm_W2.5mm_P5.00mm)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5E98E151))
(comp (ref R8)
(value 470)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5E98E193))
(comp (ref R11)
(value 1k)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5E98E1F0))
(comp (ref C4)
(value 33p)
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5E98E1FC))
(comp (ref C5)
(value 33p)
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5E98E202))
(comp (ref R14)
(value 1k)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5E98E20F))
(comp (ref R15)
(value 1k)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5E98E215))
(comp (ref C6)
(value 10u)
(footprint Capacitor_Tantalum_SMD:CP_EIA-6032-15_Kemet-U_Pad2.25x2.35mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part CP1_Small) (description "Polarized capacitor, small US symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5E98E223))
(comp (ref C3)
(value 10u)
(footprint Capacitor_Tantalum_SMD:CP_EIA-6032-15_Kemet-U_Pad2.25x2.35mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part CP1_Small) (description "Polarized capacitor, small US symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5E98E229))
(comp (ref R10)
(value 10k)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5E98E22F))
(comp (ref R9)
(value 10k)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5E98E235))
(comp (ref R12)
(value 10k)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5E98E241))
(comp (ref R7)
(value 10k)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5E98E247))
(comp (ref R13)
(value 470)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5E98E24D))
(comp (ref C11)
(value 100n)
(footprint Capacitor_THT:C_Rect_L7.0mm_W2.5mm_P5.00mm)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5E9AB40E))
(comp (ref U1)
(value GAL22V10)
(footprint Package_DIP:DIP-24_W7.62mm_Socket)
(libsource (lib Jupiter-Ace+-rescue) (part GAL22V10-rfl_pld) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5E9E8CDF))
(comp (ref C9)
(value 100n)
(footprint Capacitor_THT:C_Rect_L7.0mm_W2.5mm_P5.00mm)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5E9E8D12))
(comp (ref U3)
(value 628128)
(footprint Package_DIP:DIP-32_W15.24mm)
(libsource (lib rfl_memory) (part 628128) (description "RAM 128 Ko"))
(sheetpath (names /) (tstamps /))
(tstamp 5E8AC916))
(comp (ref C8)
(value 100n)
(footprint Capacitor_THT:C_Rect_L7.0mm_W2.5mm_P5.00mm)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5F0AD963))
(comp (ref U2)
(value 27C128)
(footprint Package_DIP:DIP-28_W15.24mm)
(datasheet http://eeshop.unl.edu/pdf/27128.pdf)
(libsource (lib Memory_EPROM) (part 27128) (description "UV Erasable EPROM 128 KiBit, [Obsolete 2000-11]"))
(sheetpath (names /) (tstamps /))
(tstamp 5E8AC926))
(comp (ref C7)
(value 100n)
(footprint Capacitor_THT:C_Rect_L7.0mm_W2.5mm_P5.00mm)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5E8AC969))
(comp (ref J2)
(value Conn_02x25_Odd_Even)
(footprint Connector_PinSocket_2.54mm:PinSocket_2x25_P2.54mm_Vertical)
(datasheet ~)
(libsource (lib Connector_Generic) (part Conn_02x25_Odd_Even) (description "Generic connector, double row, 02x25, odd/even pin numbering scheme (row 1 odd numbers, row 2 even numbers), script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5FEC35F6))
(comp (ref J4)
(value Conn_01x03)
(footprint Connector_Molex:Molex_KK-254_AE-6410-03A_1x03_P2.54mm_Vertical)
(datasheet ~)
(libsource (lib Connector_Generic) (part Conn_01x03) (description "Generic connector, single row, 01x03, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 60E184C4))
(comp (ref U5)
(value 16C450)
(footprint Package_DIP:DIP-40_W15.24mm_Socket)
(libsource (lib rfl_interface) (part 16C450) (description UART))
(sheetpath (names /) (tstamps /))
(tstamp 5F0DAEDA))
(comp (ref R1)
(value 4k7)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5F0DAEF9))
(comp (ref Y1)
(value "3.6864 MHz")
(footprint Crystal:Crystal_HC18-U_Vertical)
(datasheet ~)
(libsource (lib Device) (part Crystal_Small) (description "Two pin crystal, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5F0DAF35))
(comp (ref R5)
(value 1k5)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5F0DAF3B))
(comp (ref C1)
(value 47p)
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5F0DAF41))
(comp (ref C2)
(value 22p)
(footprint Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5F0DAF47))
(comp (ref R6)
(value 1M)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5F0DAF4D))
(comp (ref R4)
(value 4k7)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5F0DAFA2))
(comp (ref R3)
(value 4k7)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5F0DAFA8))
(comp (ref R2)
(value 4k7)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5F0DAFAE))
(comp (ref X1)
(value "CXO_DIP14 3.6864 MHz")
(footprint Oscillator:Oscillator_DIP-14)
(datasheet http://cdn-reichelt.de/documents/datenblatt/B400/OSZI.pdf)
(libsource (lib Oscillator) (part CXO_DIP14) (description "Crystal Clock Oscillator, DIP14-style metal package"))
(sheetpath (names /) (tstamps /))
(tstamp 5F0DAFBD))
(comp (ref J3)
(value Conn_01x10)
(footprint Connector_Molex:Molex_KK-254_AE-6410-10A_1x10_P2.54mm_Vertical)
(datasheet ~)
(libsource (lib Connector_Generic) (part Conn_01x10) (description "Generic connector, single row, 01x10, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5EFEC78C))
(comp (ref R53)
(value 10k)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5F340AFF))
(comp (ref R54)
(value 10k)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5F341832))
(comp (ref U6)
(value 6116)
(footprint Package_DIP:DIP-24_W15.24mm)
(libsource (lib rfl_memory) (part 6116) (description "Static RAM 2KB, DIP24"))
(sheetpath (names /COLOUR/) (tstamps /5E8292A6/))
(tstamp 5CEBBD6B))
(comp (ref C13)
(value 100n)
(footprint Capacitor_THT:C_Rect_L7.0mm_W2.5mm_P5.00mm)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /COLOUR/) (tstamps /5E8292A6/))
(tstamp 5E15A5DE))
(comp (ref C12)
(value 100n)
(footprint Capacitor_THT:C_Rect_L7.0mm_W2.5mm_P5.00mm)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /COLOUR/) (tstamps /5E8292A6/))
(tstamp 5E15B637))
(comp (ref C14)
(value 100n)
(footprint Capacitor_THT:C_Rect_L7.0mm_W2.5mm_P5.00mm)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /COLOUR/) (tstamps /5E8292A6/))
(tstamp 5E15BAD5))
(comp (ref U8)
(value 74LS574)
(footprint Package_DIP:DIP-20_W7.62mm)
(datasheet http://www.ti.com/lit/gpn/sn74LS574)
(libsource (lib 74xx) (part 74LS574) (description "8-bit Register, 3-state outputs"))
(sheetpath (names /COLOUR/) (tstamps /5E8292A6/))
(tstamp 5ED1CC21))
(comp (ref R17)
(value 3k3)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /COLOUR/) (tstamps /5E8292A6/))
(tstamp 5EF3B176))
(comp (ref R18)
(value 3k3)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /COLOUR/) (tstamps /5E8292A6/))
(tstamp 5EF3D8B6))
(comp (ref Q1)
(value BC817)
(footprint Package_TO_SOT_SMD:SOT-23)
(datasheet http://www.fairchildsemi.com/ds/BC/BC817.pdf)
(libsource (lib Transistor_BJT) (part BC817) (description "0.8A Ic, 45V Vce, NPN Transistor, SOT-23"))
(sheetpath (names /COLOUR/) (tstamps /5E8292A6/))
(tstamp 5EF81F2C))
(comp (ref R20)
(value 1k)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /COLOUR/) (tstamps /5E8292A6/))
(tstamp 5EF9CA82))
(comp (ref U9)
(value 74LS257)
(footprint Package_DIP:DIP-16_W7.62mm)
(datasheet http://www.ti.com/lit/gpn/sn74LS257)
(libsource (lib 74xx) (part 74LS257) (description "Quad 2 to 1 Multiplexer"))
(sheetpath (names /COLOUR/) (tstamps /5E8292A6/))
(tstamp 5ECBF306))
(comp (ref R46)
(value 2k2)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /COLOUR/) (tstamps /5E8292A6/))
(tstamp 5EEE6957))
(comp (ref R45)
(value 2k2)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /COLOUR/) (tstamps /5E8292A6/))
(tstamp 5EEE695D))
(comp (ref R44)
(value 2k2)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /COLOUR/) (tstamps /5E8292A6/))
(tstamp 5EEE6963))
(comp (ref R43)
(value 2k2)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /COLOUR/) (tstamps /5E8292A6/))
(tstamp 5EEE6969))
(comp (ref R30)
(value 1k2)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /COLOUR/) (tstamps /5E8292A6/))
(tstamp 5EF02268))
(comp (ref R31)
(value 1k2)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /COLOUR/) (tstamps /5E8292A6/))
(tstamp 5EF0226E))
(comp (ref R32)
(value 1k2)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /COLOUR/) (tstamps /5E8292A6/))
(tstamp 5EF02274))
(comp (ref R33)
(value 1k2)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /COLOUR/) (tstamps /5E8292A6/))
(tstamp 5EF0227A))
(comp (ref R34)
(value 1k2)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /COLOUR/) (tstamps /5E8292A6/))
(tstamp 5EF02280))
(comp (ref R35)
(value 1k2)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /COLOUR/) (tstamps /5E8292A6/))
(tstamp 5EF02286))
(comp (ref R36)
(value 1k2)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /COLOUR/) (tstamps /5E8292A6/))
(tstamp 5EF0228C))
(comp (ref R37)
(value 1k2)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /COLOUR/) (tstamps /5E8292A6/))
(tstamp 5EF02292))
(comp (ref R26)
(value 2k2)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /COLOUR/) (tstamps /5E8292A6/))
(tstamp 5ED00510))
(comp (ref R27)
(value 2k2)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /COLOUR/) (tstamps /5E8292A6/))
(tstamp 5ED00AB6))
(comp (ref R28)
(value 2k2)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /COLOUR/) (tstamps /5E8292A6/))
(tstamp 5ED01125))
(comp (ref R29)
(value 2k2)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /COLOUR/) (tstamps /5E8292A6/))
(tstamp 5ED016B7))
(comp (ref R16)
(value 2k2)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /COLOUR/) (tstamps /5E8292A6/))
(tstamp 5F7B068C))
(comp (ref J7)
(value Conn_02x15_Odd_Even)
(footprint Connector_PinHeader_2.54mm:PinHeader_2x15_P2.54mm_Vertical)
(datasheet ~)
(libsource (lib Connector_Generic) (part Conn_02x15_Odd_Even) (description "Generic connector, double row, 02x15, odd/even pin numbering scheme (row 1 odd numbers, row 2 even numbers), script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /COLOUR/) (tstamps /5E8292A6/))
(tstamp 5FF80D84))
(comp (ref R22)
(value 3k3)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /COLOUR/) (tstamps /5E8292A6/))
(tstamp 5F4E85E7))
(comp (ref R23)
(value 3k3)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /COLOUR/) (tstamps /5E8292A6/))
(tstamp 5F4E85F1))
(comp (ref Q2)
(value BC817)
(footprint Package_TO_SOT_SMD:SOT-23)
(datasheet http://www.fairchildsemi.com/ds/BC/BC817.pdf)
(libsource (lib Transistor_BJT) (part BC817) (description "0.8A Ic, 45V Vce, NPN Transistor, SOT-23"))
(sheetpath (names /COLOUR/) (tstamps /5E8292A6/))
(tstamp 5F4E85FB))
(comp (ref R25)
(value 1k)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /COLOUR/) (tstamps /5E8292A6/))
(tstamp 5F4E8605))
(comp (ref R24)
(value 75)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /COLOUR/) (tstamps /5E8292A6/))
(tstamp 5F4E8619))
(comp (ref R21)
(value 2k2)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /COLOUR/) (tstamps /5E8292A6/))
(tstamp 5F4E8623))
(comp (ref R40)
(value 3k3)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /COLOUR/) (tstamps /5E8292A6/))
(tstamp 5F5042F7))
(comp (ref R41)
(value 3k3)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /COLOUR/) (tstamps /5E8292A6/))
(tstamp 5F504301))
(comp (ref Q3)
(value BC817)
(footprint Package_TO_SOT_SMD:SOT-23)
(datasheet http://www.fairchildsemi.com/ds/BC/BC817.pdf)
(libsource (lib Transistor_BJT) (part BC817) (description "0.8A Ic, 45V Vce, NPN Transistor, SOT-23"))
(sheetpath (names /COLOUR/) (tstamps /5E8292A6/))
(tstamp 5F50430B))
(comp (ref R47)
(value 1k)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /COLOUR/) (tstamps /5E8292A6/))
(tstamp 5F504315))
(comp (ref R42)
(value 75)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /COLOUR/) (tstamps /5E8292A6/))
(tstamp 5F504329))
(comp (ref R39)
(value 2k2)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /COLOUR/) (tstamps /5E8292A6/))
(tstamp 5F504333))
(comp (ref R49)
(value 1k2)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /COLOUR/) (tstamps /5E8292A6/))
(tstamp 5EF88B42))
(comp (ref R50)
(value 1k2)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /COLOUR/) (tstamps /5E8292A6/))
(tstamp 5EF88B48))
(comp (ref R51)
(value 1k2)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /COLOUR/) (tstamps /5E8292A6/))
(tstamp 5EF88B4E))
(comp (ref R52)
(value 1k2)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /COLOUR/) (tstamps /5E8292A6/))
(tstamp 5EF88B54))
(comp (ref R19)
(value 75)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /COLOUR/) (tstamps /5E8292A6/))
(tstamp 5EFA0FB7))
(comp (ref J6)
(value Conn_01x07)
(footprint Connector_Molex:Molex_KK-254_AE-6410-07A_1x07_P2.54mm_Vertical)
(datasheet ~)
(libsource (lib Connector_Generic) (part Conn_01x07) (description "Generic connector, single row, 01x07, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /COLOUR/) (tstamps /5E8292A6/))
(tstamp 5F43F91A))
(comp (ref R38)
(value 2k2)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /COLOUR/) (tstamps /5E8292A6/))
(tstamp 5F55A198))
(comp (ref R48)
(value 2k2)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /COLOUR/) (tstamps /5E8292A6/))
(tstamp 5F698776))
(comp (ref R57)
(value 2k2)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /COLOUR/) (tstamps /5E8292A6/))
(tstamp 5F6A944A))
(comp (ref U7)
(value 74LS257)
(footprint Package_DIP:DIP-16_W7.62mm)
(datasheet http://www.ti.com/lit/gpn/sn74LS257)
(libsource (lib 74xx) (part 74LS257) (description "Quad 2 to 1 Multiplexer"))
(sheetpath (names /COLOUR/) (tstamps /5E8292A6/))
(tstamp 5EDBFFE3))
(comp (ref D1)
(value 1N914)
(footprint Diode_THT:D_DO-35_SOD27_P7.62mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part D_ALT) (description "Diode, filled shape"))
(sheetpath (names /COLOUR/) (tstamps /5E8292A6/))
(tstamp 5EF67ED8))
(comp (ref D2)
(value 1N914)
(footprint Diode_THT:D_DO-35_SOD27_P7.62mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part D_ALT) (description "Diode, filled shape"))
(sheetpath (names /COLOUR/) (tstamps /5E8292A6/))
(tstamp 5EE07DDA))
(comp (ref R55)
(value 4k7)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /COLOUR/) (tstamps /5E8292A6/))
(tstamp 5F2AF835))
(comp (ref R56)
(value 4k7)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /COLOUR/) (tstamps /5E8292A6/))
(tstamp 5F2B0862))
(comp (ref R58)
(value 4k7)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /COLOUR/) (tstamps /5E8292A6/))
(tstamp 5F2B0A96))
(comp (ref R59)
(value 4k7)
(footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /COLOUR/) (tstamps /5E8292A6/))
(tstamp 5F2B0C2A)))
(libparts
(libpart (lib 74xx) (part 74LS257)
(description "Quad 2 to 1 Multiplexer")
(docs http://www.ti.com/lit/gpn/sn74LS257)
(footprints
(fp DIP?16*))
(fields
(field (name Reference) U)
(field (name Value) 74LS257))
(pins
(pin (num 1) (name S) (type input))
(pin (num 2) (name I0a) (type input))
(pin (num 3) (name I1a) (type input))
(pin (num 4) (name Za) (type 3state))
(pin (num 5) (name I0b) (type input))
(pin (num 6) (name I1b) (type input))
(pin (num 7) (name Zb) (type 3state))
(pin (num 8) (name GND) (type power_in))
(pin (num 9) (name Zd) (type 3state))
(pin (num 10) (name I1d) (type input))
(pin (num 11) (name I0d) (type input))
(pin (num 12) (name Zc) (type 3state))
(pin (num 13) (name I1c) (type input))
(pin (num 14) (name I0c) (type input))
(pin (num 15) (name OE) (type input))
(pin (num 16) (name VCC) (type power_in))))
(libpart (lib 74xx) (part 74LS574)
(aliases
(alias 74HCT574))
(description "8-bit Register, 3-state outputs")
(docs http://www.ti.com/lit/gpn/sn74LS574)
(footprints
(fp DIP?20*))
(fields
(field (name Reference) U)
(field (name Value) 74LS574))
(pins
(pin (num 1) (name OE) (type input))
(pin (num 2) (name D0) (type input))
(pin (num 3) (name D1) (type input))
(pin (num 4) (name D2) (type input))
(pin (num 5) (name D3) (type input))
(pin (num 6) (name D4) (type input))
(pin (num 7) (name D5) (type input))
(pin (num 8) (name D6) (type input))
(pin (num 9) (name D7) (type input))
(pin (num 10) (name GND) (type power_in))
(pin (num 11) (name Cp) (type input))
(pin (num 12) (name Q7) (type 3state))
(pin (num 13) (name Q6) (type 3state))
(pin (num 14) (name Q5) (type 3state))
(pin (num 15) (name Q4) (type 3state))
(pin (num 16) (name Q3) (type 3state))
(pin (num 17) (name Q2) (type 3state))
(pin (num 18) (name Q1) (type 3state))
(pin (num 19) (name Q0) (type 3state))
(pin (num 20) (name VCC) (type power_in))))
(libpart (lib Connector_Generic) (part Conn_01x03)
(description "Generic connector, single row, 01x03, script generated (kicad-library-utils/schlib/autogen/connector/)")
(docs ~)
(footprints
(fp Connector*:*_1x??_*))
(fields
(field (name Reference) J)
(field (name Value) Conn_01x03))
(pins
(pin (num 1) (name Pin_1) (type passive))
(pin (num 2) (name Pin_2) (type passive))
(pin (num 3) (name Pin_3) (type passive))))
(libpart (lib Connector_Generic) (part Conn_01x07)
(description "Generic connector, single row, 01x07, script generated (kicad-library-utils/schlib/autogen/connector/)")
(docs ~)
(footprints
(fp Connector*:*_1x??_*))
(fields
(field (name Reference) J)
(field (name Value) Conn_01x07))
(pins
(pin (num 1) (name Pin_1) (type passive))
(pin (num 2) (name Pin_2) (type passive))
(pin (num 3) (name Pin_3) (type passive))
(pin (num 4) (name Pin_4) (type passive))
(pin (num 5) (name Pin_5) (type passive))
(pin (num 6) (name Pin_6) (type passive))
(pin (num 7) (name Pin_7) (type passive))))
(libpart (lib Connector_Generic) (part Conn_01x10)
(description "Generic connector, single row, 01x10, script generated (kicad-library-utils/schlib/autogen/connector/)")
(docs ~)
(footprints
(fp Connector*:*_1x??_*))
(fields
(field (name Reference) J)
(field (name Value) Conn_01x10))
(pins
(pin (num 1) (name Pin_1) (type passive))
(pin (num 2) (name Pin_2) (type passive))
(pin (num 3) (name Pin_3) (type passive))
(pin (num 4) (name Pin_4) (type passive))
(pin (num 5) (name Pin_5) (type passive))
(pin (num 6) (name Pin_6) (type passive))
(pin (num 7) (name Pin_7) (type passive))
(pin (num 8) (name Pin_8) (type passive))
(pin (num 9) (name Pin_9) (type passive))
(pin (num 10) (name Pin_10) (type passive))))
(libpart (lib Connector_Generic) (part Conn_02x15_Odd_Even)
(description "Generic connector, double row, 02x15, odd/even pin numbering scheme (row 1 odd numbers, row 2 even numbers), script generated (kicad-library-utils/schlib/autogen/connector/)")
(docs ~)
(footprints
(fp Connector*:*_2x??_*))
(fields
(field (name Reference) J)
(field (name Value) Conn_02x15_Odd_Even))
(pins
(pin (num 1) (name Pin_1) (type passive))
(pin (num 2) (name Pin_2) (type passive))
(pin (num 3) (name Pin_3) (type passive))
(pin (num 4) (name Pin_4) (type passive))
(pin (num 5) (name Pin_5) (type passive))
(pin (num 6) (name Pin_6) (type passive))
(pin (num 7) (name Pin_7) (type passive))
(pin (num 8) (name Pin_8) (type passive))
(pin (num 9) (name Pin_9) (type passive))
(pin (num 10) (name Pin_10) (type passive))
(pin (num 11) (name Pin_11) (type passive))
(pin (num 12) (name Pin_12) (type passive))
(pin (num 13) (name Pin_13) (type passive))
(pin (num 14) (name Pin_14) (type passive))
(pin (num 15) (name Pin_15) (type passive))
(pin (num 16) (name Pin_16) (type passive))
(pin (num 17) (name Pin_17) (type passive))
(pin (num 18) (name Pin_18) (type passive))
(pin (num 19) (name Pin_19) (type passive))
(pin (num 20) (name Pin_20) (type passive))
(pin (num 21) (name Pin_21) (type passive))
(pin (num 22) (name Pin_22) (type passive))
(pin (num 23) (name Pin_23) (type passive))
(pin (num 24) (name Pin_24) (type passive))
(pin (num 25) (name Pin_25) (type passive))
(pin (num 26) (name Pin_26) (type passive))
(pin (num 27) (name Pin_27) (type passive))
(pin (num 28) (name Pin_28) (type passive))
(pin (num 29) (name Pin_29) (type passive))
(pin (num 30) (name Pin_30) (type passive))))
(libpart (lib Connector_Generic) (part Conn_02x25_Odd_Even)
(description "Generic connector, double row, 02x25, odd/even pin numbering scheme (row 1 odd numbers, row 2 even numbers), script generated (kicad-library-utils/schlib/autogen/connector/)")
(docs ~)
(footprints
(fp Connector*:*_2x??_*))
(fields
(field (name Reference) J)
(field (name Value) Conn_02x25_Odd_Even))
(pins
(pin (num 1) (name Pin_1) (type passive))
(pin (num 2) (name Pin_2) (type passive))
(pin (num 3) (name Pin_3) (type passive))
(pin (num 4) (name Pin_4) (type passive))
(pin (num 5) (name Pin_5) (type passive))
(pin (num 6) (name Pin_6) (type passive))
(pin (num 7) (name Pin_7) (type passive))
(pin (num 8) (name Pin_8) (type passive))
(pin (num 9) (name Pin_9) (type passive))
(pin (num 10) (name Pin_10) (type passive))
(pin (num 11) (name Pin_11) (type passive))
(pin (num 12) (name Pin_12) (type passive))
(pin (num 13) (name Pin_13) (type passive))
(pin (num 14) (name Pin_14) (type passive))
(pin (num 15) (name Pin_15) (type passive))
(pin (num 16) (name Pin_16) (type passive))
(pin (num 17) (name Pin_17) (type passive))
(pin (num 18) (name Pin_18) (type passive))
(pin (num 19) (name Pin_19) (type passive))
(pin (num 20) (name Pin_20) (type passive))
(pin (num 21) (name Pin_21) (type passive))
(pin (num 22) (name Pin_22) (type passive))
(pin (num 23) (name Pin_23) (type passive))
(pin (num 24) (name Pin_24) (type passive))
(pin (num 25) (name Pin_25) (type passive))
(pin (num 26) (name Pin_26) (type passive))
(pin (num 27) (name Pin_27) (type passive))
(pin (num 28) (name Pin_28) (type passive))
(pin (num 29) (name Pin_29) (type passive))
(pin (num 30) (name Pin_30) (type passive))
(pin (num 31) (name Pin_31) (type passive))
(pin (num 32) (name Pin_32) (type passive))
(pin (num 33) (name Pin_33) (type passive))
(pin (num 34) (name Pin_34) (type passive))
(pin (num 35) (name Pin_35) (type passive))
(pin (num 36) (name Pin_36) (type passive))
(pin (num 37) (name Pin_37) (type passive))
(pin (num 38) (name Pin_38) (type passive))
(pin (num 39) (name Pin_39) (type passive))
(pin (num 40) (name Pin_40) (type passive))
(pin (num 41) (name Pin_41) (type passive))
(pin (num 42) (name Pin_42) (type passive))
(pin (num 43) (name Pin_43) (type passive))
(pin (num 44) (name Pin_44) (type passive))
(pin (num 45) (name Pin_45) (type passive))
(pin (num 46) (name Pin_46) (type passive))
(pin (num 47) (name Pin_47) (type passive))
(pin (num 48) (name Pin_48) (type passive))
(pin (num 49) (name Pin_49) (type passive))
(pin (num 50) (name Pin_50) (type passive))))
(libpart (lib Device) (part CP1_Small)
(description "Polarized capacitor, small US symbol")
(docs ~)
(footprints
(fp CP_*))
(fields
(field (name Reference) C)
(field (name Value) CP1_Small))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib Device) (part C_Small)
(description "Unpolarized capacitor, small symbol")
(docs ~)
(footprints
(fp C_*))
(fields
(field (name Reference) C)
(field (name Value) C_Small))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib Device) (part Crystal_Small)
(description "Two pin crystal, small symbol")
(docs ~)
(footprints
(fp Crystal*))
(fields
(field (name Reference) Y)
(field (name Value) Crystal_Small))
(pins
(pin (num 1) (name 1) (type passive))
(pin (num 2) (name 2) (type passive))))
(libpart (lib Device) (part D_ALT)
(description "Diode, filled shape")
(docs ~)
(footprints
(fp TO-???*)
(fp *_Diode_*)
(fp *SingleDiode*)
(fp D_*))
(fields
(field (name Reference) D)
(field (name Value) D_ALT))
(pins
(pin (num 1) (name K) (type passive))
(pin (num 2) (name A) (type passive))))
(libpart (lib Device) (part R)
(description Resistor)
(docs ~)
(footprints
(fp R_*))
(fields
(field (name Reference) R)
(field (name Value) R))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib Jupiter-Ace+-rescue) (part GAL22V10-rfl_pld)
(footprints
(fp DIP-24*)
(fp SOIC24))
(fields
(field (name Reference) U)
(field (name Value) GAL22V10-rfl_pld))
(pins
(pin (num 1) (name I/CK) (type input))
(pin (num 2) (name I) (type input))
(pin (num 3) (name I) (type input))
(pin (num 4) (name I) (type input))
(pin (num 5) (name I) (type input))
(pin (num 6) (name I) (type input))
(pin (num 7) (name I) (type input))
(pin (num 8) (name I) (type input))
(pin (num 9) (name I) (type input))
(pin (num 10) (name I) (type input))
(pin (num 11) (name I) (type input))
(pin (num 12) (name GND) (type power_in))
(pin (num 13) (name I) (type input))
(pin (num 14) (name I/O) (type 3state))
(pin (num 15) (name I/O) (type 3state))
(pin (num 16) (name I/O) (type 3state))