forked from s-park21/Strelka-Flight-Computer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_autosave-Buck_Converter.kicad_sch
1272 lines (1236 loc) · 48.2 KB
/
_autosave-Buck_Converter.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 fd646d59-670a-4588-8403-b6dc19aa8142)
(paper "A4")
(lib_symbols
(symbol "Device:C_Small" (pin_numbers hide) (pin_names (offset 0.254) hide) (in_bom yes) (on_board yes)
(property "Reference" "C" (id 0) (at 0.254 1.778 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "C_Small" (id 1) (at 0.254 -2.032 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(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" "capacitor cap" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Unpolarized capacitor, small symbol" (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_Small_0_1"
(polyline
(pts
(xy -1.524 -0.508)
(xy 1.524 -0.508)
)
(stroke (width 0.3302) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -1.524 0.508)
(xy 1.524 0.508)
)
(stroke (width 0.3048) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "C_Small_1_1"
(pin passive line (at 0 2.54 270) (length 2.032)
(name "~" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -2.54 90) (length 2.032)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Device:D_Schottky_Small" (pin_numbers hide) (pin_names (offset 0.254) hide) (in_bom yes) (on_board yes)
(property "Reference" "D" (id 0) (at -1.27 2.032 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "D_Schottky_Small" (id 1) (at -7.112 -2.032 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (id 2) (at 0 0 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 0 0 90)
(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, small symbol" (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_Small_0_1"
(polyline
(pts
(xy -0.762 0)
(xy 0.762 0)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0.762 -1.016)
(xy -0.762 0)
(xy 0.762 1.016)
(xy 0.762 -1.016)
)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -1.27 0.762)
(xy -1.27 1.016)
(xy -0.762 1.016)
(xy -0.762 -1.016)
(xy -0.254 -1.016)
(xy -0.254 -0.762)
)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "D_Schottky_Small_1_1"
(pin passive line (at -2.54 0 0) (length 1.778)
(name "K" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 2.54 0 180) (length 1.778)
(name "A" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Device:Fuse" (pin_numbers hide) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "F" (id 0) (at 2.032 0 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "Fuse" (id 1) (at -1.905 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" "fuse" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Fuse" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "*Fuse*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "Fuse_0_1"
(rectangle (start -0.762 -2.54) (end 0.762 2.54)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 2.54)
(xy 0 -2.54)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "Fuse_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:R_Small" (pin_numbers hide) (pin_names (offset 0.254) hide) (in_bom yes) (on_board yes)
(property "Reference" "R" (id 0) (at 0.762 0.508 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "R_Small" (id 1) (at 0.762 -1.016 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(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" "R resistor" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Resistor, small symbol" (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_Small_0_1"
(rectangle (start -0.762 1.778) (end 0.762 -1.778)
(stroke (width 0.2032) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "R_Small_1_1"
(pin passive line (at 0 2.54 270) (length 0.762)
(name "~" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -2.54 90) (length 0.762)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "SRU1048-100Y:SRU1048-100Y" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
(property "Reference" "L" (id 0) (at -5.334 3.81 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
)
(property "Value" "SRU1048-100Y" (id 1) (at -5.842 -2.54 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
)
(property "Footprint" "IND_SRU1048-100Y" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) (justify left bottom) hide)
)
(property "Datasheet" "" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) (justify left bottom) hide)
)
(property "STANDARD" "Manufacturer Recommendations" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) (justify left bottom) hide)
)
(property "PARTREV" "03/18" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) (justify left bottom) hide)
)
(property "MANUFACTURER" "Bourns" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) (justify left bottom) hide)
)
(property "MAXIMUM_PACKAGE_HEIGHT" "5.1mm" (id 7) (at 0 0 0)
(effects (font (size 1.27 1.27)) (justify left bottom) hide)
)
(property "ki_locked" "" (id 8) (at 0 0 0)
(effects (font (size 1.27 1.27)))
)
(symbol "SRU1048-100Y_0_0"
(circle (center -5.842 1.27) (radius 0.1524)
(stroke (width 0.3048) (type default) (color 0 0 0 0))
(fill (type none))
)
(arc (start -3.81 1.27) (mid -4.708 0.898) (end -5.08 0)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
(arc (start -2.54 0) (mid -2.912 0.898) (end -3.81 1.27)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
(arc (start -1.27 1.27) (mid -2.168 0.898) (end -2.54 0)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
(arc (start 0 0) (mid -0.372 0.898) (end -1.27 1.27)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -4.826 2.032)
(xy 4.572 2.032)
)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -4.826 2.794)
(xy 4.572 2.794)
)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
(arc (start 1.27 1.27) (mid 0.372 0.898) (end 0 0)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
(arc (start 2.54 0) (mid 2.168 0.898) (end 1.27 1.27)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
(arc (start 3.81 1.27) (mid 2.912 0.898) (end 2.54 0)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
(arc (start 5.08 0) (mid 4.708 0.898) (end 3.81 1.27)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
(pin passive line (at -7.62 0 0) (length 2.54)
(name "~" (effects (font (size 1.016 1.016))))
(number "1" (effects (font (size 1.016 1.016))))
)
(pin passive line (at 7.62 0 180) (length 2.54)
(name "~" (effects (font (size 1.016 1.016))))
(number "2" (effects (font (size 1.016 1.016))))
)
)
)
(symbol "TPS54331D:TPS54331D" (pin_names (offset 0.254)) (in_bom yes) (on_board yes)
(property "Reference" "U" (id 0) (at 33.02 10.16 0)
(effects (font (size 1.524 1.524)))
)
(property "Value" "TPS54331D" (id 1) (at 33.02 7.62 0)
(effects (font (size 1.524 1.524)))
)
(property "Footprint" "D8" (id 2) (at 33.02 6.096 0)
(effects (font (size 1.524 1.524)) hide)
)
(property "Datasheet" "" (id 3) (at 15.24 0 0)
(effects (font (size 1.524 1.524)))
)
(property "ki_locked" "" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)))
)
(property "ki_fp_filters" "D8 D8-M D8-L" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "TPS54331D_0_1"
(rectangle (start 22.86 3.81) (end 40.64 -10.16)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type background))
)
)
(symbol "TPS54331D_1_1"
(pin unspecified line (at 15.24 0 0) (length 7.62)
(name "BOOT" (effects (font (size 1.4986 1.4986))))
(number "1" (effects (font (size 1.4986 1.4986))))
)
(pin input line (at 15.24 -2.54 0) (length 7.62)
(name "VIN" (effects (font (size 1.4986 1.4986))))
(number "2" (effects (font (size 1.4986 1.4986))))
)
(pin unspecified line (at 15.24 -5.08 0) (length 7.62)
(name "EN" (effects (font (size 1.4986 1.4986))))
(number "3" (effects (font (size 1.4986 1.4986))))
)
(pin unspecified line (at 15.24 -7.62 0) (length 7.62)
(name "SS" (effects (font (size 1.4986 1.4986))))
(number "4" (effects (font (size 1.4986 1.4986))))
)
(pin unspecified line (at 48.26 -7.62 180) (length 7.62)
(name "VSENSE" (effects (font (size 1.4986 1.4986))))
(number "5" (effects (font (size 1.4986 1.4986))))
)
(pin output line (at 48.26 -5.08 180) (length 7.62)
(name "COMP" (effects (font (size 1.4986 1.4986))))
(number "6" (effects (font (size 1.4986 1.4986))))
)
(pin power_in line (at 48.26 -2.54 180) (length 7.62)
(name "GND" (effects (font (size 1.4986 1.4986))))
(number "7" (effects (font (size 1.4986 1.4986))))
)
(pin power_in line (at 48.26 0 180) (length 7.62)
(name "PH" (effects (font (size 1.4986 1.4986))))
(number "8" (effects (font (size 1.4986 1.4986))))
)
)
)
(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 "power:VCC" (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" "VCC" (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 \"VCC\"" (id 5) (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) (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 "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 211.455 80.645) (diameter 0) (color 0 0 0 0)
(uuid 185a4d14-ba2c-4702-bd00-0c5a75f6b32e)
)
(junction (at 72.39 83.185) (diameter 0) (color 0 0 0 0)
(uuid 1bbee457-a6b3-4f68-8607-daa9c3f4a984)
)
(junction (at 165.735 85.725) (diameter 0) (color 0 0 0 0)
(uuid 2132b993-0665-4c4e-8feb-2012cd0025e0)
)
(junction (at 183.515 80.645) (diameter 0) (color 0 0 0 0)
(uuid 22b78fd6-8e10-4fd2-b0bd-3423d4907939)
)
(junction (at 102.235 83.185) (diameter 0) (color 0 0 0 0)
(uuid 359a26f5-38b8-4726-9168-64c16a724bae)
)
(junction (at 81.28 83.185) (diameter 0) (color 0 0 0 0)
(uuid 3f1e86ac-6851-4faa-83a6-32dfae14ff53)
)
(junction (at 102.235 90.17) (diameter 0) (color 0 0 0 0)
(uuid 6fa926f5-3f20-4dc8-b04d-ae468ceec196)
)
(junction (at 158.115 80.645) (diameter 0) (color 0 0 0 0)
(uuid 8488c3b0-2260-4fbb-a552-46f910714331)
)
(junction (at 220.345 80.645) (diameter 0) (color 0 0 0 0)
(uuid 8c0ef0d9-8354-4c82-a709-4ddf7c0584cd)
)
(junction (at 202.565 100.965) (diameter 0) (color 0 0 0 0)
(uuid c013cd76-b4f2-44cc-b78b-91ee3cd5f377)
)
(junction (at 202.565 80.645) (diameter 0) (color 0 0 0 0)
(uuid c52b6ebb-e7f4-42f7-ae9d-7f0283156a9e)
)
(wire (pts (xy 158.115 69.215) (xy 158.115 74.295))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0125106f-6f6e-4a42-a8cb-6dc4da9a4322)
)
(wire (pts (xy 220.345 80.645) (xy 230.505 80.645))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0429a2f5-b301-4fa4-8dc5-36dd9c4d967b)
)
(wire (pts (xy 202.565 100.965) (xy 202.565 98.425))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 076ef2bf-2068-41c8-b96e-60c9884501b7)
)
(wire (pts (xy 158.115 69.215) (xy 122.555 69.215))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0d66bee2-895a-43c9-b0a8-f8c61a5e9235)
)
(wire (pts (xy 81.28 84.455) (xy 81.28 83.185))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1053723d-f511-40f1-ae40-bf7ef45b9a90)
)
(wire (pts (xy 161.925 100.965) (xy 202.565 100.965))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2e4aaa6a-e2ac-44e1-9808-79d0da6a2ee4)
)
(wire (pts (xy 72.39 83.185) (xy 81.28 83.185))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2f1ebd2b-d08b-4301-aae2-f6ef217f6430)
)
(wire (pts (xy 161.925 88.265) (xy 161.925 100.965))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 30d02a7b-4068-41c4-9af0-f40acb1571ce)
)
(wire (pts (xy 202.565 103.505) (xy 202.565 100.965))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 32d80695-64ca-478e-a100-35fe370496ab)
)
(wire (pts (xy 220.345 80.645) (xy 211.455 80.645))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3f9c5a79-662e-4ce3-bb5a-c7a88f6b8d90)
)
(wire (pts (xy 155.575 80.645) (xy 158.115 80.645))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 415b88c7-9c91-4468-9c76-b576881f33fe)
)
(wire (pts (xy 211.455 80.645) (xy 202.565 80.645))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4312e547-73ba-43b0-88cb-6312b3df5dfc)
)
(wire (pts (xy 183.515 80.645) (xy 183.515 85.725))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 465ee793-ebcc-4648-a7a8-b6ca0c006fa8)
)
(wire (pts (xy 161.925 88.265) (xy 155.575 88.265))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 633a06ce-2d3f-4167-8016-5eaa571d83ab)
)
(wire (pts (xy 102.235 90.17) (xy 102.235 90.805))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 633d96b3-1d31-4dd0-ae85-bb940cb32dc1)
)
(wire (pts (xy 202.565 93.345) (xy 202.565 80.645))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 6463227b-9e87-4e56-a410-c863a1737171)
)
(wire (pts (xy 211.455 81.915) (xy 211.455 80.645))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 6484a6a9-3839-49ab-bd8d-bad377b40f79)
)
(wire (pts (xy 72.39 84.455) (xy 72.39 83.185))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 674b6705-51e9-4e9f-97dc-274d686dcb9b)
)
(wire (pts (xy 102.235 95.885) (xy 102.235 97.79))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 68ba0f9a-2d06-4d9e-be6b-6aba3aa1f15f)
)
(wire (pts (xy 68.58 83.185) (xy 72.39 83.185))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 78c6d199-4ea2-4f2b-857d-32f55c1e47e6)
)
(wire (pts (xy 115.57 90.17) (xy 115.57 85.725))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 7bc4d422-ec63-4bcc-89be-3eac726fdba7)
)
(wire (pts (xy 183.515 80.645) (xy 184.785 80.645))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8421e1b0-84ae-4b84-b056-bfca466bca8d)
)
(wire (pts (xy 102.235 83.185) (xy 102.235 84.455))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 88482d8a-9506-41fa-b483-c5bc50714506)
)
(wire (pts (xy 165.735 85.725) (xy 155.575 85.725))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 90e973ea-bb64-444d-80a3-1f9e5f32719b)
)
(wire (pts (xy 220.345 81.915) (xy 220.345 80.645))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 9151e5f8-7839-4b66-ae72-72a5eb5a3dac)
)
(wire (pts (xy 174.625 92.075) (xy 174.625 93.345))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 93db39a1-6bb1-4369-9570-29eb468ba274)
)
(wire (pts (xy 238.125 80.645) (xy 242.57 80.645))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 94f93a9a-eae7-4968-a8f7-8eb716d5a76e)
)
(wire (pts (xy 115.57 85.725) (xy 122.555 85.725))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 9c993241-b300-4c08-8fb5-2c70bdcba2ee)
)
(wire (pts (xy 81.28 83.185) (xy 102.235 83.185))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 9d0b8b11-2217-410d-ae8a-5f82ba383387)
)
(wire (pts (xy 158.115 80.645) (xy 183.515 80.645))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a3a61cac-3d56-48a1-93da-3fdf7e08f3a4)
)
(wire (pts (xy 102.235 89.535) (xy 102.235 90.17))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a8c608fb-7075-43f3-b9db-ce4600d00b0f)
)
(wire (pts (xy 158.115 79.375) (xy 158.115 80.645))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid acd09e9c-71b1-44b1-b4b1-7e32d519f348)
)
(wire (pts (xy 174.625 85.725) (xy 165.735 85.725))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid ba16728d-3684-42ae-a4d8-298c4a006593)
)
(wire (pts (xy 102.235 83.185) (xy 122.555 83.185))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid bade9c7d-286a-4c69-846c-66807ca46170)
)
(wire (pts (xy 200.025 80.645) (xy 202.565 80.645))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid cffad4a3-264c-44bd-a7a3-0d779a222568)
)
(wire (pts (xy 165.735 94.615) (xy 165.735 95.885))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid d172e756-729d-4aef-a982-3e7aa58f2c42)
)
(wire (pts (xy 102.235 90.17) (xy 115.57 90.17))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid d34c0d2d-6667-47b0-b580-371e15324e3a)
)
(wire (pts (xy 122.555 69.215) (xy 122.555 80.645))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid dedbee60-f8d7-4b87-90af-975e48a50e2d)
)
(wire (pts (xy 174.625 88.265) (xy 174.625 85.725))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid e114f54e-c0e6-4ab9-bcff-73f982b085d7)
)
(wire (pts (xy 122.555 88.265) (xy 122.555 89.535))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid e45ee289-0e09-4fb1-8e60-b9936eece8bf)
)
(text "Check output voltage" (at 210.185 100.965 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid aa4b8f99-15fd-4edc-b81c-2a8de344c671)
)
(symbol (lib_id "power:GND") (at 155.575 83.185 90) (unit 1)
(in_bom yes) (on_board yes) (fields_autoplaced)
(uuid 00984cfe-7508-4c9f-96ca-9bc32564f850)
(property "Reference" "#PWR?" (id 0) (at 161.925 83.185 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (id 1) (at 159.385 83.1849 90)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Footprint" "" (id 2) (at 155.575 83.185 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 155.575 83.185 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid a0b99d62-c95f-494c-bd58-c8305f2ce1ab))
)
(symbol (lib_id "power:GND") (at 102.235 97.79 0) (unit 1)
(in_bom yes) (on_board yes) (fields_autoplaced)
(uuid 05d1e17c-2c74-460c-819f-fc90d6aad81c)
(property "Reference" "#PWR?" (id 0) (at 102.235 104.14 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (id 1) (at 102.235 102.87 0))
(property "Footprint" "" (id 2) (at 102.235 97.79 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 102.235 97.79 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 845302cb-2de9-4f77-837b-67d62120d33a))
)
(symbol (lib_id "Device:C_Small") (at 211.455 84.455 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 0c919da3-9e68-4937-a9ea-d6ea48fbf7aa)
(property "Reference" "C?" (id 0) (at 214.122 82.5562 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "47u" (id 1) (at 214.122 85.0962 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder" (id 2) (at 211.455 84.455 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 211.455 84.455 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid fb4e3c4b-cfba-4e53-8fc5-e5aaf7886bf3))
(pin "2" (uuid a976849d-8473-43a3-8e6b-e8647b768056))
)
(symbol (lib_id "power:+5V") (at 242.57 80.645 0) (unit 1)
(in_bom yes) (on_board yes) (fields_autoplaced)
(uuid 0ef31298-aea6-4514-9b87-3aa3b9b392c4)
(property "Reference" "#PWR?" (id 0) (at 242.57 84.455 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "+5V" (id 1) (at 242.57 75.565 0))
(property "Footprint" "" (id 2) (at 242.57 80.645 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 242.57 80.645 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid d3b2822f-b334-42b3-9d5b-85fa8566816a))
)
(symbol (lib_id "Device:C_Small") (at 81.28 86.995 0) (unit 1)
(in_bom yes) (on_board yes) (fields_autoplaced)
(uuid 1c607436-95e4-4659-ac1f-769eb22cee7d)
(property "Reference" "C?" (id 0) (at 83.947 85.7312 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "10u" (id 1) (at 83.947 88.2712 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder" (id 2) (at 81.28 86.995 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 81.28 86.995 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 395c9465-4134-49ca-b370-a73bcf001214))
(pin "2" (uuid 36d1ee36-f94f-4fc6-b0ef-a70466355dae))
)
(symbol (lib_id "power:GND") (at 81.28 89.535 0) (unit 1)
(in_bom yes) (on_board yes) (fields_autoplaced)
(uuid 23b1c6b7-24b8-452a-afee-8dc8caa001c5)
(property "Reference" "#PWR?" (id 0) (at 81.28 95.885 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (id 1) (at 81.28 94.615 0))
(property "Footprint" "" (id 2) (at 81.28 89.535 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 81.28 89.535 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid a067e2a9-2168-4a75-b1ae-07175f3097e7))
)
(symbol (lib_id "power:GND") (at 165.735 94.615 0) (unit 1)
(in_bom yes) (on_board yes) (fields_autoplaced)
(uuid 2870a3fa-c008-4b2f-89fd-0d8ffeac7c6c)
(property "Reference" "#PWR?" (id 0) (at 165.735 100.965 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (id 1) (at 165.735 99.695 0))
(property "Footprint" "" (id 2) (at 165.735 94.615 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 165.735 94.615 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid a55e7805-df2a-470e-af11-a1a2b44daa3e))
)
(symbol (lib_id "TPS54331D:TPS54331D") (at 107.315 80.645 0) (unit 1)
(in_bom yes) (on_board yes) (fields_autoplaced)
(uuid 2a9ccaaa-2f6b-4e69-98f6-274869f6d941)
(property "Reference" "U?" (id 0) (at 139.065 71.628 0)
(effects (font (size 1.524 1.524)))
)
(property "Value" "TPS54331D" (id 1) (at 139.065 75.438 0)
(effects (font (size 1.524 1.524)))
)
(property "Footprint" "Footprints:TPS54331D" (id 2) (at 140.335 74.549 0)
(effects (font (size 1.524 1.524)) hide)
)
(property "Datasheet" "https://www.ti.com/general/docs/suppproductinfo.tsp?distId=10&gotoUrl=https%3A%2F%2Fwww.ti.com%2Flit%2Fgpn%2Ftps54331" (id 3) (at 122.555 80.645 0)
(effects (font (size 1.524 1.524)) hide)
)
(property "LCSC#" "C9865" (id 4) (at 107.315 80.645 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 0ae0dde3-a8f0-402c-b308-f4d09e8aaec5))
(pin "2" (uuid c65869bd-320e-4658-be01-b0c228d779c0))
(pin "3" (uuid ec4fbb70-8c10-4cd6-89b2-28975c3f36ed))
(pin "4" (uuid f63c6b10-cc1b-425f-a494-e44c1742e69b))
(pin "5" (uuid 5f792f58-5703-4de8-83eb-8a2410772e11))
(pin "6" (uuid 83df1cb6-463f-4373-8105-981cc8fe8190))
(pin "7" (uuid 7d22c3e8-b917-48a4-832c-afdf8f66e94a))
(pin "8" (uuid c5c5f9f8-c332-47c0-a678-3f8aedfc4b7c))
)
(symbol (lib_id "Device:C_Small") (at 220.345 84.455 0) (unit 1)
(in_bom yes) (on_board yes) (fields_autoplaced)
(uuid 304a2776-e5cb-43bf-beee-df0cae3d75c9)
(property "Reference" "C?" (id 0) (at 223.012 83.1912 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "47u" (id 1) (at 223.012 85.7312 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder" (id 2) (at 220.345 84.455 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 220.345 84.455 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid e05c2f14-466b-4237-b3b2-f1c1fbaf20c1))
(pin "2" (uuid 1073baa5-6cb2-4149-a0e4-1d961d5fcd77))
)
(symbol (lib_id "Device:C_Small") (at 174.625 90.805 0) (unit 1)
(in_bom yes) (on_board yes) (fields_autoplaced)
(uuid 369185fe-5d6b-440a-803a-3e517436f3e9)
(property "Reference" "C?" (id 0) (at 177.292 89.5412 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "10p" (id 1) (at 177.292 92.0812 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder" (id 2) (at 174.625 90.805 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 174.625 90.805 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 39fa3379-4628-4803-920a-f5d4a73751f1))
(pin "2" (uuid a090ab68-7c59-4a10-af78-f77abcdee04e))
)
(symbol (lib_id "Device:R_Small") (at 202.565 106.045 0) (mirror x) (unit 1)
(in_bom yes) (on_board yes)
(uuid 40993f3c-da9b-45f4-b1f8-20ec2278d327)
(property "Reference" "R?" (id 0) (at 204.0636 107.2134 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "1.91k" (id 1) (at 204.0636 104.902 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Resistor_SMD:R_0603_1608Metric" (id 2) (at 202.565 106.045 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 202.565 106.045 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "MFR#" "" (id 4) (at 202.565 106.045 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid cc1c2765-1f2c-411d-b757-6486953fc0ab))
(pin "2" (uuid 63fd5f63-6564-457a-b14b-00b8861065eb))
)
(symbol (lib_id "power:VCC") (at 68.58 83.185 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 422a0cc6-4610-4007-be09-2c093a3a31d8)
(property "Reference" "#PWR?" (id 0) (at 68.58 86.995 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "VCC" (id 1) (at 63.5 81.915 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (id 2) (at 68.58 83.185 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 68.58 83.185 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 30e8237d-252c-4464-afc5-907a1bec6c73))
)
(symbol (lib_id "power:GND") (at 183.515 90.805 0) (unit 1)
(in_bom yes) (on_board yes) (fields_autoplaced)
(uuid 44494465-1977-4c21-9649-2ca8159a3777)
(property "Reference" "#PWR?" (id 0) (at 183.515 97.155 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (id 1) (at 183.515 95.885 0))
(property "Footprint" "" (id 2) (at 183.515 90.805 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 183.515 90.805 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 1bfa48a7-a7a7-4c62-bb5f-0f9c322d42c5))
)
(symbol (lib_id "Device:R_Small") (at 102.235 86.995 180) (unit 1)
(in_bom yes) (on_board yes)
(uuid 4a3a73d5-5b18-45d6-9856-3e76e6490382)
(property "Reference" "R?" (id 0) (at 100.7364 88.1634 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "10k" (id 1) (at 100.7364 85.852 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Resistor_SMD:R_0603_1608Metric" (id 2) (at 102.235 86.995 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "https://www.seielect.com/catalog/sei-rmcf_rmcp.pdf" (id 3) (at 102.235 86.995 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "MFR#" "RMCF0805FT36K5" (id 4) (at 102.235 86.995 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 5e20a3b1-7255-49b8-a1f3-4ad044696869))
(pin "2" (uuid d522df4c-6e80-4387-b20c-874e7e590146))
)
(symbol (lib_id "Device:R_Small") (at 165.735 88.265 180) (unit 1)
(in_bom yes) (on_board yes)
(uuid 4abbd5e6-cf35-4abf-8392-437ae96e575f)
(property "Reference" "R?" (id 0) (at 164.2364 89.4334 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "36.5k" (id 1) (at 164.2364 87.122 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Resistor_SMD:R_0603_1608Metric" (id 2) (at 165.735 88.265 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "https://www.seielect.com/catalog/sei-rmcf_rmcp.pdf" (id 3) (at 165.735 88.265 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "MFR#" "RMCF0805FT36K5" (id 4) (at 165.735 88.265 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid c5bcbb39-d9db-4c75-bc10-8a41106b1b8a))
(pin "2" (uuid e322a7aa-80fb-4def-8e39-9bd7f70a2961))
)
(symbol (lib_id "SRU1048-100Y:SRU1048-100Y") (at 192.405 80.645 0) (unit 1)
(in_bom yes) (on_board yes) (fields_autoplaced)
(uuid 4bf67ad6-842a-4ad0-a321-ce3ede3ff8b5)
(property "Reference" "L?" (id 0) (at 191.9351 72.898 0))
(property "Value" "SRU1048-100Y" (id 1) (at 191.9351 75.438 0))
(property "Footprint" "Footprints:IND_SRU1048-100Y" (id 2) (at 192.405 80.645 0)
(effects (font (size 1.27 1.27)) (justify left bottom) hide)
)