-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathactuators.kicad_sch
1779 lines (1735 loc) · 64.4 KB
/
actuators.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 ae9dbe6a-f364-4c6d-9f4d-2aabc7765c7d)
(paper "A4")
(lib_symbols
(symbol "Connector:Conn_01x03_Male" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
(property "Reference" "J" (id 0) (at 0 5.08 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "Conn_01x03_Male" (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, 01x03, 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_01x03_Male_1_1"
(polyline
(pts
(xy 1.27 -2.54)
(xy 0.8636 -2.54)
)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 1.27 0)
(xy 0.8636 0)
)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 1.27 2.54)
(xy 0.8636 2.54)
)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start 0.8636 -2.413) (end 0 -2.667)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type outline))
)
(rectangle (start 0.8636 0.127) (end 0 -0.127)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type outline))
)
(rectangle (start 0.8636 2.667) (end 0 2.413)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type outline))
)
(pin passive line (at 5.08 2.54 180) (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 0 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 180) (length 3.81)
(name "Pin_3" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Device:C" (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" (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" "Unpolarized capacitor" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "C_*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "C_0_1"
(polyline
(pts
(xy -2.032 -0.762)
(xy 2.032 -0.762)
)
(stroke (width 0.508) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -2.032 0.762)
(xy 2.032 0.762)
)
(stroke (width 0.508) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "C_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:D" (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" "D" (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" "diode" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Diode" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "TO-???* *_Diode_* *SingleDiode* D_*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "D_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))
)
)
(symbol "D_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:D_Schottky" (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" "D_Schottky" (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" "diode Schottky" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Schottky diode" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "TO-???* *_Diode_* *SingleDiode* D_*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "D_Schottky_0_1"
(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 -1.905 0.635)
(xy -1.905 1.27)
(xy -1.27 1.27)
(xy -1.27 -1.27)
(xy -0.635 -1.27)
(xy -0.635 -0.635)
)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "D_Schottky_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 "Device:Speaker" (pin_names (offset 0) hide) (in_bom yes) (on_board yes)
(property "Reference" "LS" (id 0) (at 1.27 5.715 0)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Value" "Speaker" (id 1) (at 1.27 3.81 0)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Footprint" "" (id 2) (at 0 -5.08 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at -0.254 -1.27 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "speaker sound" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Speaker" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "Speaker_0_0"
(rectangle (start -2.54 1.27) (end 1.016 -3.81)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 1.016 1.27)
(xy 3.556 3.81)
(xy 3.556 -6.35)
(xy 1.016 -3.81)
)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "Speaker_1_1"
(pin input line (at -5.08 0 0) (length 2.54)
(name "1" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin input line (at -5.08 -2.54 0) (length 2.54)
(name "2" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "power:+5V" (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" "+5V" (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 \"+5V\"" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "+5V_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 "+5V_1_1"
(pin power_in line (at 0 0 90) (length 0) hide
(name "+5V" (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))))
)
)
)
(symbol "t-top:DMG9926USD" (pin_names (offset 0) hide) (in_bom yes) (on_board yes)
(property "Reference" "Q" (id 0) (at 5.08 1.27 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "DMG9926USD" (id 1) (at 5.08 -1.27 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (id 2) (at 5.08 2.54 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)
)
(symbol "DMG9926USD_0_1"
(polyline
(pts
(xy 0.254 0)
(xy -2.54 0)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0.254 1.905)
(xy 0.254 -1.905)
)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0.762 -1.27)
(xy 0.762 -2.286)
)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0.762 0.508)
(xy 0.762 -0.508)
)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0.762 2.286)
(xy 0.762 1.27)
)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 2.54 2.54)
(xy 2.54 1.778)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 2.54 -2.54)
(xy 2.54 0)
(xy 0.762 0)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0.762 -1.778)
(xy 3.302 -1.778)
(xy 3.302 1.778)
(xy 0.762 1.778)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 1.016 0)
(xy 2.032 0.381)
(xy 2.032 -0.381)
(xy 1.016 0)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type outline))
)
(polyline
(pts
(xy 2.794 0.508)
(xy 2.921 0.381)
(xy 3.683 0.381)
(xy 3.81 0.254)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 3.302 0.381)
(xy 2.921 -0.254)
(xy 3.683 -0.254)
(xy 3.302 0.381)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(circle (center 1.651 0) (radius 2.794)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
(circle (center 2.54 -1.778) (radius 0.254)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type outline))
)
(circle (center 2.54 1.778) (radius 0.254)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type outline))
)
)
(symbol "DMG9926USD_1_1"
(pin passive line (at 2.54 -5.08 90) (length 2.54)
(name "S" (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 "G" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 2.54 5.08 270) (length 2.54)
(name "D" (effects (font (size 1.27 1.27))))
(number "7" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 2.54 5.08 270) (length 2.54)
(name "D" (effects (font (size 1.27 1.27))))
(number "8" (effects (font (size 1.27 1.27))))
)
)
(symbol "DMG9926USD_2_1"
(pin passive line (at 2.54 -5.08 90) (length 2.54)
(name "S" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin input line (at -5.08 0 0) (length 2.54)
(name "G" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 2.54 5.08 270) (length 2.54)
(name "D" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 2.54 5.08 270) (length 2.54)
(name "D" (effects (font (size 1.27 1.27))))
(number "6" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "t-top:Fan" (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "M" (id 0) (at 2.54 5.08 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "Fan" (id 1) (at 2.54 -2.54 0)
(effects (font (size 1.27 1.27)) (justify left top))
)
(property "Footprint" "" (id 2) (at 0 0.254 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 0 0.254 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "Fan Motor" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Fan" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "PinHeader*P2.54mm* TerminalBlock*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "Fan_0_1"
(arc (start -2.54 -0.508) (mid 0.0028 0.9121) (end 0 3.81)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 -5.08)
(xy 0 -4.572)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 -2.2352)
(xy 0 -2.6416)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 4.2672)
(xy 0 4.6228)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 4.572)
(xy 0 5.08)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(circle (center 0 1.016) (radius 3.2512)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
(arc (start 0 3.81) (mid 0.053 0.921) (end 2.54 -0.508)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(arc (start 2.54 -0.508) (mid 0 1.0618) (end -2.54 -0.508)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "Fan_1_1"
(pin passive line (at 0 -5.08 90) (length 2.54)
(name "-" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 7.62 270) (length 2.54)
(name "+" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "t-top:SN74LV1T34" (in_bom yes) (on_board yes)
(property "Reference" "U" (id 0) (at 5.08 6.35 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "SN74LV1T34" (id 1) (at 5.08 3.81 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Package_TO_SOT_SMD:SOT-23-5" (id 2) (at 16.51 -6.35 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "https://www.ti.com/lit/ds/symlink/sn74lv1t34.pdf" (id 3) (at -15.24 -13.97 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "single buffer level shift" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Single Power Supply, Single Buffer GATE, CMOS Logic, Level Shifter, SOT-23-5" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "SOT?23*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "SN74LV1T34_0_1"
(rectangle (start -5.08 5.08) (end 5.08 -5.08)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -0.762 0)
(xy -2.54 0)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 1.016 0)
(xy 2.54 0)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "SN74LV1T34_1_1"
(polyline
(pts
(xy -0.762 -0.762)
(xy -0.762 0.762)
(xy 1.016 0)
(xy -0.762 -0.762)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(pin no_connect line (at -5.08 2.54 0) (length 2.54) hide
(name "NC" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin input line (at -7.62 0 0) (length 2.54)
(name "A" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 0 -7.62 90) (length 2.54)
(name "GND" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin output line (at 7.62 0 180) (length 2.54)
(name "Y" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 0 7.62 270) (length 2.54)
(name "VCC" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
)
)
)
(junction (at 36.83 26.67) (diameter 0) (color 0 0 0 0)
(uuid 01bdce5b-5551-4c15-8354-bcfaceb2bad9)
)
(junction (at 54.61 26.67) (diameter 0) (color 0 0 0 0)
(uuid 39f1a74c-e20c-48a5-b79d-ee11d9560f45)
)
(junction (at 184.15 40.64) (diameter 0) (color 0 0 0 0)
(uuid 6353091a-3534-4f9f-b7bf-1912bcda0453)
)
(junction (at 242.57 20.32) (diameter 0) (color 0 0 0 0)
(uuid 6f807662-50c9-4a64-9ef3-b6219906243f)
)
(junction (at 93.98 26.67) (diameter 0) (color 0 0 0 0)
(uuid 719840a9-27d9-44ac-b071-95e5bdd8f067)
)
(junction (at 110.49 26.67) (diameter 0) (color 0 0 0 0)
(uuid 75c496bb-a986-4b20-b65b-dbb3470ebd08)
)
(junction (at 184.15 26.67) (diameter 0) (color 0 0 0 0)
(uuid 8069907f-c85c-4baf-9e7f-1a04df56ab6d)
)
(junction (at 168.91 54.61) (diameter 0) (color 0 0 0 0)
(uuid 866955be-cfe4-4563-97b3-8c3b357b58e2)
)
(junction (at 184.15 64.77) (diameter 0) (color 0 0 0 0)
(uuid a4940b88-7bed-405e-9eb8-ed55f525916a)
)
(junction (at 95.25 57.15) (diameter 0) (color 0 0 0 0)
(uuid a9b936b0-2ca7-48fb-a8b2-17808edf2464)
)
(junction (at 110.49 67.31) (diameter 0) (color 0 0 0 0)
(uuid b7425b06-3283-4bd5-8869-6ffeeba6dfe4)
)
(junction (at 71.12 48.26) (diameter 0) (color 0 0 0 0)
(uuid ce8f2130-2b9b-4194-b2a1-e7fef091e7d9)
)
(junction (at 71.12 26.67) (diameter 0) (color 0 0 0 0)
(uuid d88b14bc-b167-4435-a404-330ac6c4aeff)
)
(junction (at 93.98 48.26) (diameter 0) (color 0 0 0 0)
(uuid fa7bcc1c-d7d5-4112-bb30-a1bab4384e7a)
)
(junction (at 110.49 48.26) (diameter 0) (color 0 0 0 0)
(uuid feed4769-ecbc-47d1-9c06-f16c99bcd26a)
)
(wire (pts (xy 190.5 35.56) (xy 187.96 35.56))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 098a54c3-fcf8-4a98-9d0d-bb6d2d4a8dba)
)
(wire (pts (xy 232.41 43.18) (xy 234.95 43.18))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0b085630-8c28-4059-89a3-2a1d02292a39)
)
(wire (pts (xy 92.71 57.15) (xy 95.25 57.15))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 10b9ad3e-a97a-4afd-9934-ee67d7b52bb2)
)
(wire (pts (xy 31.75 94.615) (xy 30.48 94.615))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 111fa4f6-bd97-408c-b8b8-a1c1ff80ceda)
)
(polyline (pts (xy 142.24 12.7) (xy 142.24 76.2))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 12073def-373d-45b2-b371-a97fd329b982)
)
(wire (pts (xy 175.26 26.67) (xy 184.15 26.67))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 14024c9d-0e86-4038-a2c5-f9156dc64c6e)
)
(wire (pts (xy 110.49 26.67) (xy 129.54 26.67))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1c1f6a05-de0e-4510-8a94-cd81b7588e22)
)
(wire (pts (xy 110.49 48.26) (xy 110.49 43.18))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 29697b68-dc9d-43fa-9fe5-fb36932f3c76)
)
(wire (pts (xy 93.98 26.67) (xy 93.98 33.02))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2a671882-019b-4cd9-9ca9-9637550b29cf)
)
(wire (pts (xy 267.97 40.64) (xy 266.7 40.64))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2dadfe4a-f3f3-4ac1-8ce7-fc92d41d5384)
)
(wire (pts (xy 54.61 48.26) (xy 71.12 48.26))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2e323d13-5a02-4fa8-ab21-ac882810d1ff)
)
(wire (pts (xy 184.15 40.64) (xy 175.26 40.64))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2edf3b15-be49-435d-82ed-a1df9132e32f)
)
(wire (pts (xy 267.97 45.72) (xy 266.7 45.72))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2f4685e3-69f9-44eb-91e4-646808d41174)
)
(wire (pts (xy 95.25 57.15) (xy 102.87 57.15))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 30626b06-1183-466e-848a-601d984135a8)
)
(wire (pts (xy 129.54 48.26) (xy 110.49 48.26))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3080ab0a-4108-40ac-9b1c-f9202de872cc)
)
(wire (pts (xy 254 20.32) (xy 254 21.59))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3080d530-bf96-4eb8-855e-c01d7a121525)
)
(wire (pts (xy 54.61 26.67) (xy 71.12 26.67))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 37d9af8e-83ce-4b2e-b0a5-62f8d477cdb2)
)
(wire (pts (xy 187.96 35.56) (xy 187.96 40.64))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3a1f5a47-c4f7-420c-abd4-76febb67d780)
)
(wire (pts (xy 168.91 54.61) (xy 176.53 54.61))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3b29ed7b-3a1f-423e-91ba-5e1ece3d7f15)
)
(wire (pts (xy 168.91 64.77) (xy 184.15 64.77))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3dd7af58-5274-46f9-bb14-4b9c6d08977c)
)
(wire (pts (xy 242.57 50.8) (xy 242.57 52.07))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 44dbb111-b11e-40be-b723-4ba97fc3c980)
)
(wire (pts (xy 254 29.21) (xy 254 30.48))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 491b60da-462f-41f4-9e60-95edfa5f4348)
)
(wire (pts (xy 266.7 39.37) (xy 266.7 40.64))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4ba90532-e783-4570-9659-f8e47fe36ddc)
)
(wire (pts (xy 17.78 26.67) (xy 22.86 26.67))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4c0aae73-9879-458f-a403-59abd4c0c99f)
)
(wire (pts (xy 184.15 40.64) (xy 184.15 49.53))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4d165906-1be0-4358-8c9c-b0e7e46d80b2)
)
(wire (pts (xy 30.48 89.535) (xy 31.75 89.535))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4e15c26b-9bb0-4818-9d13-4e9a8c538760)
)
(wire (pts (xy 157.48 54.61) (xy 158.75 54.61))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4e877b66-13d6-405e-80c3-0baf2c01925c)
)
(wire (pts (xy 168.91 54.61) (xy 168.91 55.88))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 50dbdafe-30e7-4be6-911b-2a7e5b5bee59)
)
(wire (pts (xy 95.25 57.15) (xy 95.25 58.42))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5a623a75-3e18-4c2e-8f7e-8aa3c278b5af)
)
(wire (pts (xy 129.54 26.67) (xy 129.54 30.48))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5c61428c-ce78-4631-b143-472210daf893)
)
(wire (pts (xy 93.98 40.64) (xy 93.98 48.26))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5e9e1962-3141-4ff9-ba6d-7308df6ac253)
)
(polyline (pts (xy 102.87 76.2) (xy 102.87 105.41))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 63b6c05b-1cb6-4586-b1af-d01df09271e1)
)
(polyline (pts (xy 12.7 105.41) (xy 102.87 105.41))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 63c2dc7c-eacd-4cc4-b723-4e4a2ba1c3dc)
)
(polyline (pts (xy 142.24 76.2) (xy 213.36 76.2))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 6764e064-e06e-4767-a824-79d6fc49f5a9)
)
(wire (pts (xy 93.98 48.26) (xy 71.12 48.26))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 67b06320-bd9b-4d46-b1f8-7cc91a3bb002)
)
(wire (pts (xy 262.89 43.18) (xy 267.97 43.18))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 6c41ad9d-6326-4aaa-a602-c00184ce069a)
)
(wire (pts (xy 30.48 26.67) (xy 36.83 26.67))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 732d7bf1-6115-48ac-9aae-e4a6ff8e9af2)
)
(wire (pts (xy 71.12 26.67) (xy 93.98 26.67))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 7b727fd0-2593-472c-a804-0bfa923d9e22)
)
(wire (pts (xy 17.78 24.13) (xy 17.78 26.67))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 7f9f8227-7ca5-4039-abf1-18954de3ca02)
)
(wire (pts (xy 250.19 43.18) (xy 255.27 43.18))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 80f4eaf2-624f-406e-9b91-76d77d4dea13)
)
(wire (pts (xy 36.83 38.1) (xy 36.83 39.37))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8318617e-4e54-4f18-998a-acac869fa565)
)
(wire (pts (xy 54.61 26.67) (xy 54.61 30.48))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8834455b-d963-4deb-b0ef-c80bac30c019)
)
(wire (pts (xy 110.49 26.67) (xy 110.49 30.48))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 88fe71e5-c263-46c8-8a00-0aac0ccbe185)
)
(wire (pts (xy 168.91 63.5) (xy 168.91 64.77))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8e84d4b5-6b15-441b-a27a-8d173ad74d48)
)
(wire (pts (xy 110.49 67.31) (xy 110.49 68.58))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 9124c3e6-00ba-4379-9a4e-5c6990039afa)
)
(wire (pts (xy 54.61 38.1) (xy 54.61 48.26))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 91c0e6de-de7a-48dd-bdb5-b605ecb554e7)
)
(wire (pts (xy 242.57 20.32) (xy 254 20.32))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 95070c1f-3f26-4b27-a13e-84d941f828f7)
)
(wire (pts (xy 166.37 54.61) (xy 168.91 54.61))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 97e127a9-b385-402d-aa48-719e9786725c)
)
(wire (pts (xy 81.28 57.15) (xy 85.09 57.15))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 9ccc6731-20c7-4382-9f8b-999388b73791)