-
Notifications
You must be signed in to change notification settings - Fork 0
/
led5x5x5.kicad_sch
2417 lines (2348 loc) · 85.1 KB
/
led5x5x5.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 20230121) (generator eeschema)
(uuid 89e69cf5-7220-4e2b-b8b4-5dc4daeb4d0e)
(paper "A4" portrait)
(lib_symbols
(symbol "Connector_Generic:Conn_02x01" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
(property "Reference" "J" (at 1.27 2.54 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "Conn_02x01" (at 1.27 -2.54 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "connector" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Generic connector, double row, 02x01, this symbol is compatible with counter-clockwise, top-bottom and odd-even numbering schemes., script generated (kicad-library-utils/schlib/autogen/connector/)" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "Connector*:*_2x??_*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "Conn_02x01_1_1"
(rectangle (start -1.27 0.127) (end 0 -0.127)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start -1.27 1.27) (end 3.81 -1.27)
(stroke (width 0.254) (type default))
(fill (type background))
)
(rectangle (start 3.81 0.127) (end 2.54 -0.127)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(pin passive line (at -5.08 0 0) (length 3.81)
(name "Pin_1" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 7.62 0 180) (length 3.81)
(name "Pin_2" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Connector_Generic:Conn_02x05_Odd_Even" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
(property "Reference" "J" (at 1.27 7.62 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "Conn_02x05_Odd_Even" (at 1.27 -7.62 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "connector" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Generic connector, double row, 02x05, odd/even pin numbering scheme (row 1 odd numbers, row 2 even numbers), script generated (kicad-library-utils/schlib/autogen/connector/)" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "Connector*:*_2x??_*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "Conn_02x05_Odd_Even_1_1"
(rectangle (start -1.27 -4.953) (end 0 -5.207)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start -1.27 -2.413) (end 0 -2.667)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start -1.27 0.127) (end 0 -0.127)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start -1.27 2.667) (end 0 2.413)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start -1.27 5.207) (end 0 4.953)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start -1.27 6.35) (end 3.81 -6.35)
(stroke (width 0.254) (type default))
(fill (type background))
)
(rectangle (start 3.81 -4.953) (end 2.54 -5.207)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start 3.81 -2.413) (end 2.54 -2.667)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start 3.81 0.127) (end 2.54 -0.127)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start 3.81 2.667) (end 2.54 2.413)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start 3.81 5.207) (end 2.54 4.953)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(pin passive line (at -5.08 5.08 0) (length 3.81)
(name "Pin_1" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 7.62 -5.08 180) (length 3.81)
(name "Pin_10" (effects (font (size 1.27 1.27))))
(number "10" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 7.62 5.08 180) (length 3.81)
(name "Pin_2" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 2.54 0) (length 3.81)
(name "Pin_3" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 7.62 2.54 180) (length 3.81)
(name "Pin_4" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 0 0) (length 3.81)
(name "Pin_5" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 7.62 0 180) (length 3.81)
(name "Pin_6" (effects (font (size 1.27 1.27))))
(number "6" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 -2.54 0) (length 3.81)
(name "Pin_7" (effects (font (size 1.27 1.27))))
(number "7" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 7.62 -2.54 180) (length 3.81)
(name "Pin_8" (effects (font (size 1.27 1.27))))
(number "8" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 -5.08 0) (length 3.81)
(name "Pin_9" (effects (font (size 1.27 1.27))))
(number "9" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Device:R" (pin_numbers hide) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "R" (at 2.032 0 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "R" (at 0 0 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at -1.778 0 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "R res resistor" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Resistor" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "R_*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "R_0_1"
(rectangle (start -1.016 -2.54) (end 1.016 2.54)
(stroke (width 0.254) (type default))
(fill (type none))
)
)
(symbol "R_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 "MCU_Microchip_ATmega:ATmega16-16P" (in_bom yes) (on_board yes)
(property "Reference" "U" (at -12.7 49.53 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
)
(property "Value" "ATmega16-16P" (at 2.54 -49.53 0)
(effects (font (size 1.27 1.27)) (justify left top))
)
(property "Footprint" "Package_DIP:DIP-40_W15.24mm" (at 0 0 0)
(effects (font (size 1.27 1.27) italic) hide)
)
(property "Datasheet" "http://ww1.microchip.com/downloads/en/DeviceDoc/doc2466.pdf" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "AVR 8bit Microcontroller MegaAVR" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "16MHz, 16kB Flash, 1kB SRAM, 512B EEPROM, JTAG, DIP-40" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "DIP*W15.24mm*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "ATmega16-16P_0_1"
(rectangle (start -12.7 -48.26) (end 12.7 48.26)
(stroke (width 0.254) (type default))
(fill (type background))
)
)
(symbol "ATmega16-16P_1_1"
(pin bidirectional line (at 15.24 20.32 180) (length 2.54)
(name "PB0" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 0 50.8 270) (length 2.54)
(name "VCC" (effects (font (size 1.27 1.27))))
(number "10" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 0 -50.8 90) (length 2.54)
(name "GND" (effects (font (size 1.27 1.27))))
(number "11" (effects (font (size 1.27 1.27))))
)
(pin output line (at -15.24 33.02 0) (length 2.54)
(name "XTAL2" (effects (font (size 1.27 1.27))))
(number "12" (effects (font (size 1.27 1.27))))
)
(pin input line (at -15.24 38.1 0) (length 2.54)
(name "XTAL1" (effects (font (size 1.27 1.27))))
(number "13" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 15.24 -25.4 180) (length 2.54)
(name "PD0" (effects (font (size 1.27 1.27))))
(number "14" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 15.24 -27.94 180) (length 2.54)
(name "PD1" (effects (font (size 1.27 1.27))))
(number "15" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 15.24 -30.48 180) (length 2.54)
(name "PD2" (effects (font (size 1.27 1.27))))
(number "16" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 15.24 -33.02 180) (length 2.54)
(name "PD3" (effects (font (size 1.27 1.27))))
(number "17" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 15.24 -35.56 180) (length 2.54)
(name "PD4" (effects (font (size 1.27 1.27))))
(number "18" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 15.24 -38.1 180) (length 2.54)
(name "PD5" (effects (font (size 1.27 1.27))))
(number "19" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 15.24 17.78 180) (length 2.54)
(name "PB1" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 15.24 -40.64 180) (length 2.54)
(name "PD6" (effects (font (size 1.27 1.27))))
(number "20" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 15.24 -43.18 180) (length 2.54)
(name "PD7" (effects (font (size 1.27 1.27))))
(number "21" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 15.24 -2.54 180) (length 2.54)
(name "PC0" (effects (font (size 1.27 1.27))))
(number "22" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 15.24 -5.08 180) (length 2.54)
(name "PC1" (effects (font (size 1.27 1.27))))
(number "23" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 15.24 -7.62 180) (length 2.54)
(name "PC2" (effects (font (size 1.27 1.27))))
(number "24" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 15.24 -10.16 180) (length 2.54)
(name "PC3" (effects (font (size 1.27 1.27))))
(number "25" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 15.24 -12.7 180) (length 2.54)
(name "PC4" (effects (font (size 1.27 1.27))))
(number "26" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 15.24 -15.24 180) (length 2.54)
(name "PC5" (effects (font (size 1.27 1.27))))
(number "27" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 15.24 -17.78 180) (length 2.54)
(name "PC6" (effects (font (size 1.27 1.27))))
(number "28" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 15.24 -20.32 180) (length 2.54)
(name "PC7" (effects (font (size 1.27 1.27))))
(number "29" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 15.24 15.24 180) (length 2.54)
(name "PB2" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 2.54 50.8 270) (length 2.54)
(name "AVCC" (effects (font (size 1.27 1.27))))
(number "30" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -50.8 90) (length 2.54) hide
(name "GND" (effects (font (size 1.27 1.27))))
(number "31" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -15.24 27.94 0) (length 2.54)
(name "AREF" (effects (font (size 1.27 1.27))))
(number "32" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 15.24 25.4 180) (length 2.54)
(name "PA7" (effects (font (size 1.27 1.27))))
(number "33" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 15.24 27.94 180) (length 2.54)
(name "PA6" (effects (font (size 1.27 1.27))))
(number "34" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 15.24 30.48 180) (length 2.54)
(name "PA5" (effects (font (size 1.27 1.27))))
(number "35" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 15.24 33.02 180) (length 2.54)
(name "PA4" (effects (font (size 1.27 1.27))))
(number "36" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 15.24 35.56 180) (length 2.54)
(name "PA3" (effects (font (size 1.27 1.27))))
(number "37" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 15.24 38.1 180) (length 2.54)
(name "PA2" (effects (font (size 1.27 1.27))))
(number "38" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 15.24 40.64 180) (length 2.54)
(name "PA1" (effects (font (size 1.27 1.27))))
(number "39" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 15.24 12.7 180) (length 2.54)
(name "PB3" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 15.24 43.18 180) (length 2.54)
(name "PA0" (effects (font (size 1.27 1.27))))
(number "40" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 15.24 10.16 180) (length 2.54)
(name "PB4" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 15.24 7.62 180) (length 2.54)
(name "PB5" (effects (font (size 1.27 1.27))))
(number "6" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 15.24 5.08 180) (length 2.54)
(name "PB6" (effects (font (size 1.27 1.27))))
(number "7" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 15.24 2.54 180) (length 2.54)
(name "PB7" (effects (font (size 1.27 1.27))))
(number "8" (effects (font (size 1.27 1.27))))
)
(pin input line (at -15.24 43.18 0) (length 2.54)
(name "~{RESET}" (effects (font (size 1.27 1.27))))
(number "9" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Simulation_SPICE:NPN" (pin_numbers hide) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "Q" (at -2.54 7.62 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "NPN" (at -2.54 5.08 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 63.5 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 63.5 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Sim.Device" "NPN" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Sim.Type" "GUMMELPOON" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Sim.Pins" "1=C 2=B 3=E" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "simulation" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Bipolar transistor symbol for simulation only, substrate tied to the emitter" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "NPN_0_1"
(polyline
(pts
(xy -2.54 0)
(xy 0.635 0)
)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0.635 0.635)
(xy 2.54 2.54)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 2.794 -1.27)
(xy 2.794 -1.27)
)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(polyline
(pts
(xy 2.794 -1.27)
(xy 2.794 -1.27)
)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0.635 -0.635)
(xy 2.54 -2.54)
(xy 2.54 -2.54)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0.635 1.905)
(xy 0.635 -1.905)
(xy 0.635 -1.905)
)
(stroke (width 0.508) (type default))
(fill (type none))
)
(polyline
(pts
(xy 1.27 -1.778)
(xy 1.778 -1.27)
(xy 2.286 -2.286)
(xy 1.27 -1.778)
(xy 1.27 -1.778)
)
(stroke (width 0) (type default))
(fill (type outline))
)
(circle (center 1.27 0) (radius 2.8194)
(stroke (width 0.254) (type default))
(fill (type none))
)
)
(symbol "NPN_1_1"
(pin open_collector line (at 2.54 5.08 270) (length 2.54)
(name "C" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin input line (at -5.08 0 0) (length 2.54)
(name "B" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin open_emitter line (at 2.54 -5.08 90) (length 2.54)
(name "E" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "power:GND" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "#PWR" (at 0 -6.35 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (at 0 -3.81 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "global power" (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" (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))
(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 "power:VCC" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "#PWR" (at 0 -3.81 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "VCC" (at 0 3.81 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "global power" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Power symbol creates a global label with name \"VCC\"" (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))
(fill (type none))
)
(polyline
(pts
(xy 0 0)
(xy 0 2.54)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0 2.54)
(xy 0.762 1.27)
)
(stroke (width 0) (type default))
(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))))
)
)
)
)
(junction (at 52.07 178.435) (diameter 0) (color 0 0 0 0)
(uuid 3134e8f8-5437-40bb-9446-f10cc06f51c7)
)
(junction (at 19.05 24.765) (diameter 0) (color 0 0 0 0)
(uuid 4fb6615d-ce72-4dd1-9923-1e02a2762f0c)
)
(junction (at 52.07 180.975) (diameter 0) (color 0 0 0 0)
(uuid 89c700dc-ee71-4996-b072-ade3ba87b493)
)
(junction (at 52.07 183.515) (diameter 0) (color 0 0 0 0)
(uuid bcfab527-3598-4566-894d-5857a83d153a)
)
(junction (at 39.37 24.765) (diameter 0) (color 0 0 0 0)
(uuid d23e57c3-377a-48f8-a660-0588edf2a8fb)
)
(junction (at 19.05 36.195) (diameter 0) (color 0 0 0 0)
(uuid f1f549af-3ada-4e82-8fbf-8a512ff80fcc)
)
(junction (at 92.71 71.755) (diameter 0) (color 0 0 0 0)
(uuid f6726d40-ef09-48a6-bb1d-6635e12c8069)
)
(no_connect (at 24.13 51.435) (uuid 0ee29cd6-bf08-47e9-bddc-ff9a38479fd0))
(no_connect (at 24.13 46.355) (uuid 1fecb239-edff-42b3-bbf8-d83413c02041))
(no_connect (at 37.465 186.055) (uuid 7332a2d7-ad36-4a35-bbbb-a4cddbfcec6d))
(no_connect (at 24.13 41.275) (uuid 7eb432dc-2682-42b0-b4f1-b50c01b7bdef))
(bus_entry (at 71.755 81.915) (size 2.54 -2.54)
(stroke (width 0) (type default))
(uuid 0a5757e6-0ff3-499c-aa62-04a3a2da3973)
)
(bus_entry (at 74.295 56.515) (size -2.54 2.54)
(stroke (width 0) (type default))
(uuid 1081c505-fbe9-44d0-979a-6a3d7757b91f)
)
(bus_entry (at 102.87 107.315) (size 2.54 2.54)
(stroke (width 0) (type default))
(uuid 153ff583-2094-49fc-93ea-765959feb1e9)
)
(bus_entry (at 74.295 36.195) (size -2.54 2.54)
(stroke (width 0) (type default))
(uuid 1b91b9bb-5716-4326-b733-b623e164acfb)
)
(bus_entry (at 74.295 61.595) (size -2.54 2.54)
(stroke (width 0) (type default))
(uuid 1fd93233-2914-4686-8280-b5b50b230293)
)
(bus_entry (at 74.295 41.275) (size -2.54 2.54)
(stroke (width 0) (type default))
(uuid 235bdcd1-2246-46be-a5b7-07b2b996997f)
)
(bus_entry (at 71.755 117.475) (size 2.54 2.54)
(stroke (width 0) (type default))
(uuid 24196de3-f5d5-4147-8bcc-3c0898cbf513)
)
(bus_entry (at 71.755 99.695) (size 2.54 -2.54)
(stroke (width 0) (type default))
(uuid 250bcf0d-6804-4b2d-8b71-2ce4154e5bb4)
)
(bus_entry (at 105.41 146.685) (size 2.54 2.54)
(stroke (width 0) (type default))
(uuid 28fe1381-460f-4caf-860f-714aa6947b45)
)
(bus_entry (at 105.41 128.27) (size 2.54 2.54)
(stroke (width 0) (type default))
(uuid 2c126e75-eec7-41fd-bf1a-bc42dfb3170c)
)
(bus_entry (at 105.41 204.47) (size 2.54 2.54)
(stroke (width 0) (type default))
(uuid 2ef7a601-ffc6-414f-abd0-12ab11f06759)
)
(bus_entry (at 71.755 86.995) (size 2.54 -2.54)
(stroke (width 0) (type default))
(uuid 2f06c3d1-c4d0-44d3-8c23-27190cee68c9)
)
(bus_entry (at 74.295 38.735) (size -2.54 2.54)
(stroke (width 0) (type default))
(uuid 2f9f37b1-0910-4bf5-8e7b-520be313449c)
)
(bus_entry (at 71.755 112.395) (size 2.54 2.54)
(stroke (width 0) (type default))
(uuid 2fbd4b1b-bf3e-4cd4-b016-3e8e19af2f45)
)
(bus_entry (at 71.755 120.015) (size 2.54 2.54)
(stroke (width 0) (type default))
(uuid 3c6cb607-7d84-4a6b-8c4c-07ed31cc6ae4)
)
(bus_entry (at 74.295 33.655) (size -2.54 2.54)
(stroke (width 0) (type default))
(uuid 4ae16326-8871-4758-a100-3129f75af3e7)
)
(bus_entry (at 71.755 122.555) (size 2.54 2.54)
(stroke (width 0) (type default))
(uuid 58a57bb8-5fd7-40a5-ab34-6eacdbf8d603)
)
(bus_entry (at 105.41 184.15) (size 2.54 2.54)
(stroke (width 0) (type default))
(uuid 5acdb7fa-a3a6-45b5-aec9-47314fc5cd3e)
)
(bus_entry (at 102.87 69.215) (size 2.54 2.54)
(stroke (width 0) (type default))
(uuid 5b9c74c5-b4e6-47fd-89db-887b83a2ffc4)
)
(bus_entry (at 74.295 59.055) (size -2.54 2.54)
(stroke (width 0) (type default))
(uuid 5c53a258-bff0-4907-a1c5-e6353ba7d218)
)
(bus_entry (at 74.295 51.435) (size -2.54 2.54)
(stroke (width 0) (type default))
(uuid 6e334bc9-baef-4ba2-8fa6-3beecaecb10d)
)
(bus_entry (at 102.87 66.675) (size 2.54 2.54)
(stroke (width 0) (type default))
(uuid 8d20345b-dba5-4f0e-b4c4-4e5373456755)
)
(bus_entry (at 71.755 92.075) (size 2.54 -2.54)
(stroke (width 0) (type default))
(uuid af36963c-dfdb-42d5-bbd4-4f62252827c8)
)
(bus_entry (at 71.755 97.155) (size 2.54 -2.54)
(stroke (width 0) (type default))
(uuid bb86132b-f93e-48a2-8851-0b0aa6d02fb5)
)
(bus_entry (at 71.755 84.455) (size 2.54 -2.54)
(stroke (width 0) (type default))
(uuid bc58053f-9fcf-4606-b5d5-c0b6d608e074)
)
(bus_entry (at 71.755 109.855) (size 2.54 2.54)
(stroke (width 0) (type default))
(uuid c80f25ff-9a00-42b7-adeb-67029f616a51)
)
(bus_entry (at 71.755 89.535) (size 2.54 -2.54)
(stroke (width 0) (type default))
(uuid c8a41578-b6ff-457f-94b5-4ec78789c446)
)
(bus_entry (at 74.295 46.355) (size -2.54 2.54)
(stroke (width 0) (type default))
(uuid cb99ad77-40e6-4671-b616-363a552de4d0)
)
(bus_entry (at 74.295 43.815) (size -2.54 2.54)
(stroke (width 0) (type default))
(uuid ce4be04f-c6f1-4caf-b36f-708d43bec5f8)
)
(bus_entry (at 71.755 94.615) (size 2.54 -2.54)
(stroke (width 0) (type default))
(uuid dcffe964-a5d2-4034-ae02-11ae032f0193)
)
(bus_entry (at 105.41 165.735) (size 2.54 2.54)
(stroke (width 0) (type default))
(uuid e6e5b00b-c80a-43b4-a000-db4c3a9ccd88)
)
(bus_entry (at 102.87 104.775) (size 2.54 2.54)
(stroke (width 0) (type default))
(uuid ecf26a08-5d48-4c73-940b-4e0cfc73e893)
)
(bus_entry (at 74.295 48.895) (size -2.54 2.54)
(stroke (width 0) (type default))
(uuid ed742697-828f-492a-ac7e-489db9e50a5a)
)
(bus_entry (at 71.755 114.935) (size 2.54 2.54)
(stroke (width 0) (type default))
(uuid fa5fff8c-b611-4656-a3dd-df32eb97b992)
)
(bus_entry (at 102.87 71.755) (size 2.54 2.54)
(stroke (width 0) (type default))
(uuid fc845155-eb88-4c9e-9f37-9eba023bdcad)
)
(wire (pts (xy 33.655 183.515) (xy 37.465 183.515))
(stroke (width 0) (type default))
(uuid 031caf4a-1e79-4f5f-b533-26127abc489f)
)
(bus (pts (xy 74.295 120.015) (xy 74.295 122.555))
(stroke (width 0) (type default))
(uuid 05fcca6c-fa8f-49fc-8f20-638bc616d794)
)
(wire (pts (xy 19.05 24.765) (xy 19.05 26.67))
(stroke (width 0) (type default))
(uuid 0781b704-aca2-4d32-a8d2-5b7492e8dec4)
)
(bus (pts (xy 74.295 46.355) (xy 74.295 48.895))
(stroke (width 0) (type default))
(uuid 0f6b344e-ec89-4835-ad5b-65b2b947cf96)
)
(wire (pts (xy 52.07 183.515) (xy 52.07 186.055))
(stroke (width 0) (type default))
(uuid 11ab8736-3c0b-4dad-9802-c6996128721d)
)
(bus (pts (xy 74.295 38.735) (xy 74.295 41.275))
(stroke (width 0) (type default))
(uuid 11ffdc4c-4978-41d5-ae44-220f6d981870)
)
(wire (pts (xy 54.61 36.195) (xy 71.755 36.195))
(stroke (width 0) (type default))
(uuid 17946302-ab8a-4c5f-a0f1-e7d61151fabe)
)
(wire (pts (xy 19.05 36.195) (xy 19.05 76.835))
(stroke (width 0) (type default))
(uuid 17ee7c99-faf2-4d46-9ca4-6c3164f41334)
)
(wire (pts (xy 56.515 187.325) (xy 56.515 188.595))
(stroke (width 0) (type default))
(uuid 182629ca-fc5f-4d14-9ec7-96dc0ab8888d)
)
(wire (pts (xy 41.91 24.765) (xy 41.91 28.575))
(stroke (width 0) (type default))
(uuid 1aebb51e-8a8c-40bb-a7c2-12007419d83c)
)
(wire (pts (xy 54.61 59.055) (xy 71.755 59.055))
(stroke (width 0) (type default))
(uuid 1b67a572-a514-4fe1-9808-cfb6ce9f1ef0)
)
(wire (pts (xy 136.525 109.22) (xy 136.525 116.205))
(stroke (width 0) (type default))
(uuid 1be7f0ef-7707-4339-b5c1-9457e868597d)
)
(wire (pts (xy 127.635 130.81) (xy 128.905 130.81))
(stroke (width 0) (type default))
(uuid 1dc6cfd6-e7fe-4dbe-8ef0-e24dcc9168f3)
)
(wire (pts (xy 39.37 24.765) (xy 41.91 24.765))
(stroke (width 0) (type default))
(uuid 2069022a-3141-4e8f-bd17-aa4e78a38871)
)
(bus (pts (xy 74.295 84.455) (xy 74.295 86.995))
(stroke (width 0) (type default))
(uuid 23d040dc-add0-4a0f-86d3-6eade26015ec)
)
(wire (pts (xy 148.59 109.22) (xy 148.59 134.62))
(stroke (width 0) (type default))
(uuid 240b24fb-487a-45a0-b993-60b288825c51)
)
(wire (pts (xy 54.61 61.595) (xy 71.755 61.595))
(stroke (width 0) (type default))
(uuid 24ccb30d-0ba0-4f45-bd2c-20fb104ad0fa)
)
(wire (pts (xy 50.165 178.435) (xy 52.07 178.435))
(stroke (width 0) (type default))
(uuid 25c15c3e-7602-4360-90ec-c602ea530291)
)
(wire (pts (xy 54.61 64.135) (xy 71.755 64.135))
(stroke (width 0) (type default))
(uuid 28aa34b9-764c-4e5e-a217-1279322efa26)
)
(bus (pts (xy 74.295 81.915) (xy 74.295 84.455))
(stroke (width 0) (type default))
(uuid 2b2956a7-af3e-4a14-b782-6ff0260d0fc9)
)
(bus (pts (xy 74.295 114.935) (xy 74.295 117.475))
(stroke (width 0) (type default))
(uuid 2e82156b-91cb-48ca-a7dc-e04c05f18408)
)
(wire (pts (xy 22.225 122.555) (xy 22.225 120.015))
(stroke (width 0) (type default))
(uuid 2fdfe1a8-d067-4a9b-a852-33246ffdc723)
)
(bus (pts (xy 74.295 48.895) (xy 74.295 51.435))
(stroke (width 0) (type default))
(uuid 30d39310-f8eb-4541-adf0-f1e68bb77dcc)
)
(bus (pts (xy 105.41 109.855) (xy 105.41 128.27))
(stroke (width 0) (type default))
(uuid 3211c6d8-0e24-4f4e-8699-464fae62b3ca)
)
(wire (pts (xy 89.535 74.295) (xy 89.535 78.74))
(stroke (width 0) (type default))
(uuid 34e9631d-e73d-42de-ad2b-00a699b7eb90)
)
(bus (pts (xy 180.975 29.21) (xy 180.975 93.345))
(stroke (width 0) (type default))
(uuid 37df5893-3360-4701-9c67-0ac43e26b9ae)
)
(wire (pts (xy 54.61 99.695) (xy 71.755 99.695))
(stroke (width 0) (type default))
(uuid 387c3569-ed6a-476c-80ba-5a63363a10ce)
)
(wire (pts (xy 107.95 168.275) (xy 142.875 168.275))
(stroke (width 0) (type default))
(uuid 3d9ef87c-43e0-4ce6-b2c5-6ab3c47d3f01)
)
(wire (pts (xy 139.7 149.225) (xy 140.97 149.225))
(stroke (width 0) (type default))
(uuid 3f2ec8c8-0b34-43f1-977b-b58e1940a8a1)
)
(wire (pts (xy 159.385 175.26) (xy 159.385 173.355))
(stroke (width 0) (type default))
(uuid 4483222b-28db-448e-825e-f8a12bbb58c8)
)
(wire (pts (xy 54.61 97.155) (xy 71.755 97.155))
(stroke (width 0) (type default))
(uuid 48b5eb8d-fd49-429f-a4b6-6d75e9ea2e9b)
)
(wire (pts (xy 54.61 109.855) (xy 71.755 109.855))
(stroke (width 0) (type default))
(uuid 4b6e757b-1160-4faa-8dea-ba1ec0dcb083)
)
(wire (pts (xy 148.59 142.24) (xy 148.59 144.145))
(stroke (width 0) (type default))
(uuid 4bf3d34c-3547-429d-a12e-269b21c11812)
)
(wire (pts (xy 107.95 207.01) (xy 165.735 207.01))
(stroke (width 0) (type default))
(uuid 4e6e6322-d65b-4289-9ef8-e7dc6ac5ec60)
)
(wire (pts (xy 33.655 178.435) (xy 37.465 178.435))
(stroke (width 0) (type default))
(uuid 4ec3f8a1-c572-448f-acb4-aa8c2abf86fe)
)
(wire (pts (xy 148.59 156.21) (xy 148.59 154.305))
(stroke (width 0) (type default))
(uuid 5156f205-ed3c-4a1e-b3e3-46c4b6c0826f)
)
(wire (pts (xy 162.56 186.69) (xy 163.83 186.69))
(stroke (width 0) (type default))
(uuid 51b6d572-493e-4fea-a834-643f8b37bd46)
)
(bus (pts (xy 74.295 29.21) (xy 180.975 29.21))
(stroke (width 0) (type default))
(uuid 5337ad56-d411-433b-89e4-8a4e69176c82)
)
(wire (pts (xy 107.95 130.81) (xy 120.015 130.81))
(stroke (width 0) (type default))
(uuid 53ce0f38-f655-4356-afa0-776620197a47)
)
(bus (pts (xy 74.295 36.195) (xy 74.295 38.735))
(stroke (width 0) (type default))
(uuid 5410898b-a829-49a7-952e-4ed65e62c699)
)
(bus (pts (xy 105.41 165.735) (xy 105.41 184.15))
(stroke (width 0) (type default))
(uuid 56fe7fb3-ae27-4193-88f1-f044b4d59198)
)
(wire (pts (xy 54.61 120.015) (xy 71.755 120.015))
(stroke (width 0) (type default))
(uuid 57fc3668-1563-4922-81eb-c75f9fcd31aa)
)
(wire (pts (xy 54.61 86.995) (xy 71.755 86.995))
(stroke (width 0) (type default))
(uuid 616f4609-9efa-4ee7-a97a-b28700ccc4a1)
)
(wire (pts (xy 52.07 178.435) (xy 52.07 180.975))
(stroke (width 0) (type default))
(uuid 6279e69a-20be-4812-9172-abd5dead5ab1)
)
(wire (pts (xy 50.165 186.055) (xy 52.07 186.055))
(stroke (width 0) (type default))
(uuid 639d72c5-4dc9-4f80-aa48-7de1565c4872)
)
(wire (pts (xy 19.05 34.29) (xy 19.05 36.195))
(stroke (width 0) (type default))
(uuid 6453529a-27c6-45f2-9ec2-4ca81aaa2a13)
)
(wire (pts (xy 171.45 179.705) (xy 171.45 181.61))
(stroke (width 0) (type default))
(uuid 665fb6c3-37dc-4858-a513-c9f40307484e)
)
(wire (pts (xy 33.655 188.595) (xy 37.465 188.595))
(stroke (width 0) (type default))
(uuid 67cf252b-c914-40b4-8984-3ecdcb4ad18f)
)
(wire (pts (xy 54.61 43.815) (xy 71.755 43.815))
(stroke (width 0) (type default))
(uuid 67f687d9-a274-4669-a808-f937b15702ba)
)
(bus (pts (xy 74.295 61.595) (xy 74.295 79.375))
(stroke (width 0) (type default))
(uuid 69ce99d9-448a-4a79-83fe-9e33cf495576)
)
(bus (pts (xy 74.295 117.475) (xy 74.295 120.015))
(stroke (width 0) (type default))
(uuid 6a8522c8-0b07-4d8d-96e0-f6f0196907ee)
)
(wire (pts (xy 54.61 41.275) (xy 71.755 41.275))
(stroke (width 0) (type default))
(uuid 6c4287f0-7fce-4f57-b985-aa8ac9dfd1ac)
)
(bus (pts (xy 74.295 51.435) (xy 74.295 56.515))
(stroke (width 0) (type default))
(uuid 6d683032-4f37-4064-b064-231a5cf32f64)
)
(bus (pts (xy 74.295 79.375) (xy 74.295 81.915))
(stroke (width 0) (type default))
(uuid 6e22934b-647a-4586-8940-cdd1d445f0d1)
)
(wire (pts (xy 86.36 76.835) (xy 86.36 78.74))
(stroke (width 0) (type default))
(uuid 739e54b7-bb31-495d-b423-3ff27790a2f1)
)
(bus (pts (xy 105.41 74.295) (xy 105.41 107.315))
(stroke (width 0) (type default))
(uuid 73b3e134-dda8-4855-b48b-aed666b87b09)
)
(wire (pts (xy 54.61 107.315) (xy 102.87 107.315))