-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathruetueta-pcb.kicad_sch
1752 lines (1694 loc) · 67.5 KB
/
ruetueta-pcb.kicad_sch
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
(kicad_sch (version 20211123) (generator eeschema)
(uuid 44d8279a-9cd1-4db6-856f-0363131605fc)
(paper "A4")
(lib_symbols
(symbol "Connector_Generic:Conn_01x02" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
(property "Reference" "J" (id 0) (at 0 2.54 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "Conn_01x02" (id 1) (at 0 -5.08 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "connector" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "Connector*:*_1x??_*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "Conn_01x02_1_1"
(rectangle (start -1.27 -2.413) (end 0 -2.667)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start -1.27 0.127) (end 0 -0.127)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start -1.27 1.27) (end 1.27 -3.81)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type background))
)
(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 -5.08 -2.54 0) (length 3.81)
(name "Pin_2" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Device:C_Polarized" (pin_numbers hide) (pin_names (offset 0.254)) (in_bom yes) (on_board yes)
(property "Reference" "C" (id 0) (at 0.635 2.54 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "C_Polarized" (id 1) (at 0.635 -2.54 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (id 2) (at 0.9652 -3.81 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "cap capacitor" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Polarized capacitor" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "CP_*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "C_Polarized_0_1"
(rectangle (start -2.286 0.508) (end 2.286 1.016)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -1.778 2.286)
(xy -0.762 2.286)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -1.27 2.794)
(xy -1.27 1.778)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start 2.286 -0.508) (end -2.286 -1.016)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type outline))
)
)
(symbol "C_Polarized_1_1"
(pin passive line (at 0 3.81 270) (length 2.794)
(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 2.794)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Device:LED" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
(property "Reference" "D" (id 0) (at 0 2.54 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "LED" (id 1) (at 0 -2.54 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "LED diode" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Light emitting diode" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "LED* LED_SMD:* LED_THT:*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "LED_0_1"
(polyline
(pts
(xy -1.27 -1.27)
(xy -1.27 1.27)
)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -1.27 0)
(xy 1.27 0)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 1.27 -1.27)
(xy 1.27 1.27)
(xy -1.27 0)
(xy 1.27 -1.27)
)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -3.048 -0.762)
(xy -4.572 -2.286)
(xy -3.81 -2.286)
(xy -4.572 -2.286)
(xy -4.572 -1.524)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -1.778 -0.762)
(xy -3.302 -2.286)
(xy -2.54 -2.286)
(xy -3.302 -2.286)
(xy -3.302 -1.524)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "LED_1_1"
(pin passive line (at -3.81 0 0) (length 2.54)
(name "K" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 3.81 0 180) (length 2.54)
(name "A" (effects (font (size 1.27 1.27))))
(number "2" (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" (id 0) (at 2.032 0 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "R" (id 1) (at 0 0 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at -1.778 0 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "R res resistor" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Resistor" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "R_*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "R_0_1"
(rectangle (start -1.016 -2.54) (end 1.016 2.54)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(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 "Transistor_BJT:BC557" (pin_names (offset 0) hide) (in_bom yes) (on_board yes)
(property "Reference" "Q" (id 0) (at 5.08 1.905 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "BC557" (id 1) (at 5.08 0 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Package_TO_SOT_THT:TO-92_Inline" (id 2) (at 5.08 -1.905 0)
(effects (font (size 1.27 1.27) italic) (justify left) hide)
)
(property "Datasheet" "https://www.onsemi.com/pub/Collateral/BC556BTA-D.pdf" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "ki_keywords" "PNP Transistor" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "0.1A Ic, 45V Vce, PNP Small Signal Transistor, TO-92" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "TO?92*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "BC557_0_1"
(polyline
(pts
(xy 0.635 0.635)
(xy 2.54 2.54)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(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) (color 0 0 0 0))
(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) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 2.286 -1.778)
(xy 1.778 -2.286)
(xy 1.27 -1.27)
(xy 2.286 -1.778)
(xy 2.286 -1.778)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type outline))
)
(circle (center 1.27 0) (radius 2.8194)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "BC557_1_1"
(pin passive 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 5.715)
(name "B" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin passive 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:+9V" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "#PWR" (id 0) (at 0 -3.81 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "+9V" (id 1) (at 0 3.556 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "power-flag" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Power symbol creates a global label with name \"+9V\"" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "+9V_0_1"
(polyline
(pts
(xy -0.762 1.27)
(xy 0 2.54)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 0)
(xy 0 2.54)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 2.54)
(xy 0.762 1.27)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "+9V_1_1"
(pin power_in line (at 0 0 90) (length 0) hide
(name "+9V" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "power:GND" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "#PWR" (id 0) (at 0 -6.35 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (id 1) (at 0 -3.81 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "power-flag" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Power symbol creates a global label with name \"GND\" , ground" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "GND_0_1"
(polyline
(pts
(xy 0 0)
(xy 0 -1.27)
(xy 1.27 -1.27)
(xy 0 -2.54)
(xy -1.27 -1.27)
(xy 0 -1.27)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "GND_1_1"
(pin power_in line (at 0 0 270) (length 0) hide
(name "GND" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
)
(junction (at 162.56 69.85) (diameter 0) (color 0 0 0 0)
(uuid 15974446-f32a-49c4-8e3c-d8eb13b8c9f1)
)
(junction (at 199.39 77.47) (diameter 0) (color 0 0 0 0)
(uuid 16ebdbbc-9606-458f-8b7c-c2c873e87670)
)
(junction (at 88.9 54.61) (diameter 0) (color 0 0 0 0)
(uuid 1b22f428-6439-4f4a-ae56-b3f61ad2a858)
)
(junction (at 144.78 62.23) (diameter 0) (color 0 0 0 0)
(uuid 3d427e24-6bd2-49a2-b474-193ea7fb5cb5)
)
(junction (at 107.95 54.61) (diameter 0) (color 0 0 0 0)
(uuid 706ade6e-6718-4836-8364-6a69eaf048af)
)
(junction (at 52.07 46.99) (diameter 0) (color 0 0 0 0)
(uuid 79b7a5fd-5560-445a-94f1-079e6eba97b0)
)
(junction (at 218.44 77.47) (diameter 0) (color 0 0 0 0)
(uuid 8c61d436-a175-4e70-8af5-6a843ec2f60a)
)
(junction (at 71.12 46.99) (diameter 0) (color 0 0 0 0)
(uuid abd1d9e1-0a61-4690-8a77-b8d0a3d9710f)
)
(junction (at 181.61 69.85) (diameter 0) (color 0 0 0 0)
(uuid b228d5e6-ebfa-4c1d-b90e-98c5ccbf3cff)
)
(junction (at 125.73 62.23) (diameter 0) (color 0 0 0 0)
(uuid cc76f375-b8b8-440f-8fc4-4e7ef7fcec78)
)
(wire (pts (xy 88.9 54.61) (xy 88.9 57.15))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0894672d-7a7f-4b3f-82b5-26a6ffe8f84f)
)
(wire (pts (xy 62.23 137.16) (xy 62.23 139.7))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0d07d573-03bd-4046-998c-a0c00d61cd82)
)
(wire (pts (xy 71.12 57.15) (xy 71.12 59.69))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 100d10ed-0869-4970-98d5-bff5a15336e3)
)
(wire (pts (xy 52.07 46.99) (xy 52.07 49.53))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1136d422-1c91-46e4-9942-2882a9626aec)
)
(wire (pts (xy 162.56 90.17) (xy 162.56 92.71))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 13a7993b-7add-4025-b06d-751fd6e7231f)
)
(wire (pts (xy 107.95 54.61) (xy 118.11 54.61))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1dbe4990-0c70-4aa5-b539-c0f6d5b1d738)
)
(wire (pts (xy 88.9 74.93) (xy 88.9 77.47))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 24056ac8-2a59-4ee8-a2d3-859e5c70eb17)
)
(wire (pts (xy 71.12 46.99) (xy 71.12 49.53))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 244f9b78-320c-4a19-be97-0ff79e0044bd)
)
(wire (pts (xy 52.07 57.15) (xy 52.07 59.69))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 28487b52-f2c7-4680-b3ad-9c5393ff8478)
)
(wire (pts (xy 218.44 77.47) (xy 218.44 20.32))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 28bd7bbb-9cd5-4baf-9657-10695ea2c20b)
)
(wire (pts (xy 162.56 67.31) (xy 162.56 69.85))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2a951dea-d8c1-4817-ab04-e27ff06de531)
)
(wire (pts (xy 125.73 92.71) (xy 125.73 95.25))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 352e48f4-c707-41d4-a86f-bf6a44c69082)
)
(wire (pts (xy 218.44 77.47) (xy 218.44 80.01))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3c293bdb-7070-4c2b-aab5-f0fc5267dec1)
)
(wire (pts (xy 30.48 139.7) (xy 30.48 142.24))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 41a7afab-7a01-43f1-bd15-6d9f95d7f846)
)
(wire (pts (xy 181.61 69.85) (xy 181.61 72.39))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 46716cd7-7159-492c-af49-8b7374095e34)
)
(wire (pts (xy 125.73 62.23) (xy 125.73 64.77))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 470d47a0-9996-4a5d-863d-f42dccf24d60)
)
(wire (pts (xy 107.95 54.61) (xy 107.95 57.15))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4ffd57d5-94c2-4103-8f60-e12f51c1ed5f)
)
(wire (pts (xy 41.91 39.37) (xy 44.45 39.37))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 553e5d32-1bdb-4a94-add8-68cd18f985c8)
)
(wire (pts (xy 88.9 85.09) (xy 88.9 87.63))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5654c544-b986-4a43-b9b9-aa2a3ca34520)
)
(wire (pts (xy 181.61 69.85) (xy 191.77 69.85))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 58633d81-52eb-49ab-bdc6-2d6f4816e1ef)
)
(wire (pts (xy 105.41 54.61) (xy 107.95 54.61))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5d896dd4-a97e-4aab-9d2f-7385b9725dcf)
)
(wire (pts (xy 144.78 72.39) (xy 144.78 74.93))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 687b57ad-4dcc-4e71-a439-5c38dade5481)
)
(wire (pts (xy 125.73 46.99) (xy 125.73 49.53))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 6b15a364-2d58-400a-8ac0-515816bdfc7f)
)
(wire (pts (xy 162.56 80.01) (xy 162.56 82.55))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 6e8da70e-4bb1-4900-8d01-0fc7c3f20127)
)
(wire (pts (xy 52.07 67.31) (xy 52.07 69.85))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 7568f018-e749-4edd-9a21-b303f5aaa2aa)
)
(wire (pts (xy 30.48 142.24) (xy 33.02 142.24))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 77bf8cf1-d825-46b8-b33e-9597dc7abd8c)
)
(wire (pts (xy 199.39 62.23) (xy 199.39 64.77))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 77ee1bb9-0570-4fbf-96ab-0f2bde182063)
)
(wire (pts (xy 88.9 64.77) (xy 88.9 67.31))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 7bcbc864-f0ab-4c4d-aaaf-e543fa3c149e)
)
(wire (pts (xy 125.73 82.55) (xy 125.73 85.09))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 7c209083-9335-4ba6-abb5-8ef1cb615ea5)
)
(wire (pts (xy 41.91 20.32) (xy 41.91 39.37))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 826b31b4-15bf-4a51-9aa1-d34e535f4245)
)
(wire (pts (xy 162.56 69.85) (xy 171.45 69.85))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 82c65ea7-30c9-49d1-bcca-55ffa36b8044)
)
(wire (pts (xy 52.07 77.47) (xy 52.07 80.01))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8c65126e-0074-4985-b47c-303d48587c1d)
)
(wire (pts (xy 52.07 46.99) (xy 60.96 46.99))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8e6c949b-1092-4db1-b900-9963074de762)
)
(wire (pts (xy 199.39 77.47) (xy 199.39 80.01))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 9879aa97-1772-44fa-be35-ad05d9364d0d)
)
(wire (pts (xy 33.02 144.78) (xy 30.48 144.78))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 998da11c-d062-4450-9749-4c8f6f3f2c2c)
)
(wire (pts (xy 88.9 54.61) (xy 97.79 54.61))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 9d9954e8-f49b-4eb5-8b1e-2483946f5737)
)
(wire (pts (xy 199.39 97.79) (xy 199.39 100.33))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a473f5c3-8ae4-442e-838a-f6b8f5804524)
)
(wire (pts (xy 142.24 62.23) (xy 144.78 62.23))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a99c0693-cd73-45a2-b0da-6df313634b83)
)
(wire (pts (xy 162.56 100.33) (xy 162.56 102.87))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid af67c52d-e995-4918-a8d3-2b18afb57d08)
)
(wire (pts (xy 107.95 64.77) (xy 107.95 67.31))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b1d7a6ec-1dd5-45e8-9a63-b28fadb4b269)
)
(wire (pts (xy 199.39 87.63) (xy 199.39 90.17))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b62631a6-4161-49a9-a2eb-a51cc7698dd7)
)
(wire (pts (xy 88.9 52.07) (xy 88.9 54.61))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid bcdc4442-70af-48b0-b927-61421bdc5770)
)
(wire (pts (xy 52.07 44.45) (xy 52.07 46.99))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid bcee904f-26c7-4d53-a8d2-be6ff0f974f0)
)
(wire (pts (xy 125.73 62.23) (xy 134.62 62.23))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid bef9e315-d4f9-48b2-a0ea-a698c7a98e82)
)
(wire (pts (xy 125.73 72.39) (xy 125.73 74.93))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c1381113-d512-4768-829a-317a7c2858cc)
)
(wire (pts (xy 218.44 20.32) (xy 41.91 20.32))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c2dbb3b2-b97d-4c1e-a108-7b0ab5dcf85a)
)
(wire (pts (xy 125.73 59.69) (xy 125.73 62.23))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c66bdf6c-66e4-4b28-8748-a4af2250123c)
)
(wire (pts (xy 181.61 80.01) (xy 181.61 82.55))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c88ce18b-381f-426c-87cd-9c79042fc84a)
)
(wire (pts (xy 199.39 107.95) (xy 199.39 110.49))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid d7c6af9d-464d-48f5-92ae-b787f5587c0a)
)
(wire (pts (xy 162.56 54.61) (xy 162.56 57.15))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid da524a30-9556-4ff0-9f58-adc78591d270)
)
(wire (pts (xy 215.9 77.47) (xy 218.44 77.47))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid e1912bd4-9728-42cb-9548-3d1b7fdbf753)
)
(wire (pts (xy 179.07 69.85) (xy 181.61 69.85))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid e1c39ac1-b8d8-417a-ab47-6fc42d560ebc)
)
(wire (pts (xy 144.78 62.23) (xy 144.78 64.77))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid e80fedcd-03de-4ace-98a3-063f9e7001ff)
)
(wire (pts (xy 199.39 77.47) (xy 208.28 77.47))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid e9501178-59f7-4011-87bd-6934032e33b9)
)
(wire (pts (xy 62.23 147.32) (xy 62.23 149.86))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid ec03027d-1d35-4aa4-bea3-f7474cabdc1c)
)
(wire (pts (xy 144.78 62.23) (xy 154.94 62.23))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid ef1bea3c-52a6-40ac-b912-5f0b2d766bfb)
)
(wire (pts (xy 199.39 74.93) (xy 199.39 77.47))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid ef780080-ea3e-45f5-9314-6e46f5046245)
)
(wire (pts (xy 68.58 46.99) (xy 71.12 46.99))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid f1e5d097-e59d-4723-b242-00c2cee22f92)
)
(wire (pts (xy 52.07 31.75) (xy 52.07 34.29))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid f37ca207-042d-4a2b-a723-1a3b7bf2225e)
)
(wire (pts (xy 218.44 87.63) (xy 218.44 90.17))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid f8f2ee45-a1a4-4bdb-95f8-af52feecca16)
)
(wire (pts (xy 162.56 69.85) (xy 162.56 72.39))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid f91bc457-75e7-4aa1-842d-7836ee3ce3db)
)
(wire (pts (xy 30.48 144.78) (xy 30.48 147.32))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid fbe8eb30-4ccc-4e42-977a-1003e1d73c05)
)
(wire (pts (xy 88.9 39.37) (xy 88.9 41.91))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid fbfcc47c-3f76-4a7b-b636-35fbd08ae409)
)
(wire (pts (xy 71.12 46.99) (xy 81.28 46.99))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid fec0b415-f628-4bcc-b9d1-1ed0845f3167)
)
(symbol (lib_id "power:+9V") (at 88.9 39.37 0) (unit 1)
(in_bom yes) (on_board yes) (fields_autoplaced)
(uuid 07989982-11c0-4533-a5d7-3a797538abbd)
(property "Reference" "#PWR08" (id 0) (at 88.9 43.18 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "+9V" (id 1) (at 88.9 34.29 0))
(property "Footprint" "" (id 2) (at 88.9 39.37 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 88.9 39.37 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 7343e337-e8a7-4587-a4dd-406e619f42f0))
)
(symbol (lib_id "Device:LED") (at 125.73 88.9 90) (unit 1)
(in_bom yes) (on_board yes) (fields_autoplaced)
(uuid 0c97c89a-38bd-438d-b9f4-e6d10a3d124e)
(property "Reference" "D6" (id 0) (at 129.54 89.2174 90)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Value" "LED" (id 1) (at 129.54 91.7574 90)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Footprint" "LED_THT:LED_D5.0mm_Clear" (id 2) (at 125.73 88.9 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 125.73 88.9 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 3c85eb6b-1c0a-46d9-81a1-0e3cd8bf8385))
(pin "2" (uuid 83773c11-ef80-47d6-b16d-9cd53d566099))
)
(symbol (lib_id "power:GND") (at 30.48 147.32 0) (unit 1)
(in_bom yes) (on_board yes) (fields_autoplaced)
(uuid 0e37a1ae-bf06-4c70-ae4c-e7cee553b0b3)
(property "Reference" "#PWR02" (id 0) (at 30.48 153.67 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (id 1) (at 30.48 152.4 0))
(property "Footprint" "" (id 2) (at 30.48 147.32 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 30.48 147.32 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 7e60f163-8805-4bc8-82a5-453da20ba1a2))
)
(symbol (lib_id "Device:C_Polarized") (at 138.43 62.23 270) (unit 1)
(in_bom yes) (on_board yes) (fields_autoplaced)
(uuid 0e7dcec5-9974-437a-a4d1-ef1d657f3548)
(property "Reference" "C4" (id 0) (at 139.319 54.61 90))
(property "Value" "100u" (id 1) (at 139.319 57.15 90))
(property "Footprint" "Capacitor_THT:CP_Radial_D5.0mm_P2.00mm" (id 2) (at 134.62 63.1952 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 138.43 62.23 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 5967bd64-0b00-4b54-b421-be53b830f8d7))
(pin "2" (uuid 5adf49ca-0aa2-4de9-b4a1-074e7178b324))
)
(symbol (lib_id "power:+9V") (at 162.56 54.61 0) (unit 1)
(in_bom yes) (on_board yes) (fields_autoplaced)
(uuid 138b3760-34a9-4fdb-809f-f81529a304dd)
(property "Reference" "#PWR014" (id 0) (at 162.56 58.42 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "+9V" (id 1) (at 162.56 49.53 0))
(property "Footprint" "" (id 2) (at 162.56 54.61 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 162.56 54.61 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 83dbdbc5-5717-46b9-ab54-b0f38e37e259))
)
(symbol (lib_id "Device:R") (at 144.78 68.58 0) (unit 1)
(in_bom yes) (on_board yes) (fields_autoplaced)
(uuid 141e3ccf-3dba-4d86-87c6-c5a498b690c3)
(property "Reference" "R6" (id 0) (at 147.32 67.3099 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "R_SPEED" (id 1) (at 147.32 69.8499 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal" (id 2) (at 143.002 68.58 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 144.78 68.58 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid e1d1b449-1f45-4ac7-8e7e-b9460d0fd5fe))
(pin "2" (uuid 2b947551-5d5c-4252-89bc-43a7190698fa))
)
(symbol (lib_id "power:GND") (at 199.39 110.49 0) (unit 1)
(in_bom yes) (on_board yes) (fields_autoplaced)
(uuid 1a781d91-6be6-445f-96e2-06e76b7517a4)
(property "Reference" "#PWR018" (id 0) (at 199.39 116.84 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (id 1) (at 199.39 115.57 0))
(property "Footprint" "" (id 2) (at 199.39 110.49 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 199.39 110.49 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 0aebccb9-5644-4ee9-8d85-60352f1a14a1))
)
(symbol (lib_id "Device:C_Polarized") (at 212.09 77.47 270) (unit 1)
(in_bom yes) (on_board yes) (fields_autoplaced)
(uuid 1c478e08-e4db-42d3-b3c7-a1da9d33a782)
(property "Reference" "C6" (id 0) (at 212.979 69.85 90))
(property "Value" "100u" (id 1) (at 212.979 72.39 90))
(property "Footprint" "Capacitor_THT:CP_Radial_D5.0mm_P2.00mm" (id 2) (at 208.28 78.4352 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 212.09 77.47 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 5e6e693a-2add-46c3-8008-19cbe5d2c1ae))
(pin "2" (uuid 2e6edb1d-6c2f-4ca6-ae8b-45b772acc77c))
)
(symbol (lib_id "Device:LED") (at 88.9 81.28 90) (unit 1)
(in_bom yes) (on_board yes) (fields_autoplaced)
(uuid 1e2e82c5-9009-45fc-95a3-4fc026abc114)
(property "Reference" "D4" (id 0) (at 92.71 81.5974 90)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Value" "LED" (id 1) (at 92.71 84.1374 90)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Footprint" "LED_THT:LED_D5.0mm_Clear" (id 2) (at 88.9 81.28 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 88.9 81.28 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 0129ce18-a21f-46ca-a707-a1ca073dc157))
(pin "2" (uuid 2e1ad6a4-5a21-4752-813e-b652509bb93d))
)
(symbol (lib_id "power:GND") (at 71.12 59.69 0) (unit 1)
(in_bom yes) (on_board yes) (fields_autoplaced)
(uuid 23146bd7-6bf5-4eb5-baae-d3572b1418ef)
(property "Reference" "#PWR07" (id 0) (at 71.12 66.04 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (id 1) (at 71.12 64.77 0))
(property "Footprint" "" (id 2) (at 71.12 59.69 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 71.12 59.69 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 391d54e9-04b9-4851-9853-e5856b65c845))
)
(symbol (lib_id "Device:R") (at 218.44 83.82 0) (unit 1)
(in_bom yes) (on_board yes) (fields_autoplaced)
(uuid 29e933d5-cd8f-465a-b886-771751b3f73b)
(property "Reference" "R10" (id 0) (at 220.98 82.5499 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "R_SPEED" (id 1) (at 220.98 85.0899 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal" (id 2) (at 216.662 83.82 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 218.44 83.82 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid b91d7939-2046-4a01-a643-01d937095648))
(pin "2" (uuid 1b749385-e302-44fc-88b8-8f498352623d))
)
(symbol (lib_id "Device:C_Polarized") (at 101.6 54.61 270) (unit 1)
(in_bom yes) (on_board yes) (fields_autoplaced)
(uuid 2a8a3525-7346-40fd-be6a-84727124c273)
(property "Reference" "C3" (id 0) (at 102.489 46.99 90))
(property "Value" "100u" (id 1) (at 102.489 49.53 90))
(property "Footprint" "Capacitor_THT:CP_Radial_D5.0mm_P2.00mm" (id 2) (at 97.79 55.5752 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 101.6 54.61 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 29b0cc6e-6b8e-4697-b89e-6e80a640baef))
(pin "2" (uuid a5f367d7-e25b-4f9f-b348-fa629f89f997))
)
(symbol (lib_id "Transistor_BJT:BC557") (at 86.36 46.99 0) (mirror x) (unit 1)
(in_bom yes) (on_board yes) (fields_autoplaced)
(uuid 338b4002-dc3b-4d3b-9469-06af0468e64e)
(property "Reference" "Q2" (id 0) (at 91.44 45.7199 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "BC557" (id 1) (at 91.44 48.2599 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Package_TO_SOT_THT:TO-92L_Inline_Wide" (id 2) (at 91.44 45.085 0)
(effects (font (size 1.27 1.27) italic) (justify left) hide)
)
(property "Datasheet" "https://www.onsemi.com/pub/Collateral/BC556BTA-D.pdf" (id 3) (at 86.36 46.99 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(pin "1" (uuid 7678b9d0-a8d2-47bf-9f62-83f620032bcd))
(pin "2" (uuid c9abfb07-2f6e-4881-b12c-c41379edd970))
(pin "3" (uuid 500e7db9-8f3c-4a8a-9704-71d956186788))
)
(symbol (lib_id "Device:C_Polarized") (at 64.77 46.99 270) (unit 1)
(in_bom yes) (on_board yes) (fields_autoplaced)
(uuid 36dd5adf-059e-4509-b04f-283c5ef5f4cc)
(property "Reference" "C2" (id 0) (at 65.659 39.37 90))
(property "Value" "100u" (id 1) (at 65.659 41.91 90))
(property "Footprint" "Capacitor_THT:CP_Radial_D5.0mm_P2.00mm" (id 2) (at 60.96 47.9552 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 64.77 46.99 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 090b236f-aed2-4ed3-96e6-1dcc7d614a27))
(pin "2" (uuid aef2c9e0-8e6d-4780-bb61-a1578acd39df))
)
(symbol (lib_id "Device:C_Polarized") (at 62.23 143.51 0) (unit 1)
(in_bom yes) (on_board yes) (fields_autoplaced)
(uuid 4928bef9-7e3f-4bd4-8e9a-319f23ca5dc8)
(property "Reference" "C1" (id 0) (at 66.04 141.3509 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "100u" (id 1) (at 66.04 143.8909 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Capacitor_THT:CP_Radial_D5.0mm_P2.00mm" (id 2) (at 63.1952 147.32 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 62.23 143.51 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 00317f5a-ceb8-4ac6-9be9-c38f0c5a6b2e))
(pin "2" (uuid 2908f2a3-40a2-4e7f-8b7c-6064079be2eb))
)
(symbol (lib_id "Transistor_BJT:BC557") (at 49.53 39.37 0) (mirror x) (unit 1)
(in_bom yes) (on_board yes) (fields_autoplaced)
(uuid 527346bb-ea73-4a6b-90c5-e15d8df2e57f)
(property "Reference" "Q1" (id 0) (at 54.61 38.0999 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "BC557" (id 1) (at 54.61 40.6399 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Package_TO_SOT_THT:TO-92L_Inline_Wide" (id 2) (at 54.61 37.465 0)
(effects (font (size 1.27 1.27) italic) (justify left) hide)
)
(property "Datasheet" "https://www.onsemi.com/pub/Collateral/BC556BTA-D.pdf" (id 3) (at 49.53 39.37 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(pin "1" (uuid 5e77c81d-7008-412e-a0ff-ee857a0f4211))
(pin "2" (uuid c8f4febf-02df-49ee-8baa-e581ed90187b))
(pin "3" (uuid ac3c6b5c-b6b8-4b7d-b61d-e77b71badb96))
)
(symbol (lib_id "power:+9V") (at 30.48 139.7 0) (unit 1)
(in_bom yes) (on_board yes) (fields_autoplaced)
(uuid 5a10a771-39a7-44fa-a5c7-5eb4da2ba051)
(property "Reference" "#PWR01" (id 0) (at 30.48 143.51 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "+9V" (id 1) (at 30.48 134.62 0))
(property "Footprint" "" (id 2) (at 30.48 139.7 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 30.48 139.7 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid e22ecb52-9362-41d3-a43c-a881b8d24db9))
)
(symbol (lib_id "power:+9V") (at 199.39 62.23 0) (unit 1)
(in_bom yes) (on_board yes) (fields_autoplaced)
(uuid 5e9aea5c-6f8e-4ee7-997d-9a847e6f387a)
(property "Reference" "#PWR017" (id 0) (at 199.39 66.04 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "+9V" (id 1) (at 199.39 57.15 0))
(property "Footprint" "" (id 2) (at 199.39 62.23 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 199.39 62.23 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 83d10044-e3c0-4cba-8d3d-2bf93dd47980))