-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathPowerManager.kicad_sch
990 lines (967 loc) · 36.9 KB
/
PowerManager.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
(kicad_sch (version 20211123) (generator eeschema)
(uuid a7917324-7c93-4549-a972-c55f545efe7c)
(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:R_Small_US" (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_US" (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 US 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_US_1_1"
(polyline
(pts
(xy 0 0)
(xy 1.016 -0.381)
(xy 0 -0.762)
(xy -1.016 -1.143)
(xy 0 -1.524)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 1.524)
(xy 1.016 1.143)
(xy 0 0.762)
(xy -1.016 0.381)
(xy 0 0)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(pin passive line (at 0 2.54 270) (length 1.016)
(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 1.016)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Diode:1SS355VM" (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" "1SS355VM" (id 1) (at 0 -2.54 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Diode_SMD:D_SOD-323F" (id 2) (at 0 -4.445 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "https://fscdn.rohm.com/en/products/databook/datasheet/discrete/diode/switching/1ss355vmte-17-e.pdf" (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" "90V 0.1A high speed switching Diode, SOD-323F" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "D*SOD?323F*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "1SS355VM_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 "1SS355VM_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 "Regulator_Linear:TLV75533PDBV" (pin_names (offset 0.254)) (in_bom yes) (on_board yes)
(property "Reference" "U" (id 0) (at -3.81 5.715 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "TLV75533PDBV" (id 1) (at 0 5.715 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Package_TO_SOT_SMD:SOT-23-5" (id 2) (at 0 8.255 0)
(effects (font (size 1.27 1.27) italic) hide)
)
(property "Datasheet" "http://www.ti.com/lit/ds/symlink/tlv755p.pdf" (id 3) (at 0 1.27 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "LDO Regulator Fixed Positive" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "500mA Low Dropout Voltage Regulator, Fixed Output 3.3V, 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 "TLV75533PDBV_0_1"
(rectangle (start -5.08 4.445) (end 5.08 -5.08)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type background))
)
)
(symbol "TLV75533PDBV_1_1"
(pin power_in line (at -7.62 2.54 0) (length 2.54)
(name "IN" (effects (font (size 1.27 1.27))))
(number "1" (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 "2" (effects (font (size 1.27 1.27))))
)
(pin input line (at -7.62 0 0) (length 2.54)
(name "EN" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin no_connect line (at 5.08 0 180) (length 2.54) hide
(name "NC" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin power_out line (at 7.62 2.54 180) (length 2.54)
(name "OUT" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "power:+3.3V" (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" "+3.3V" (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 \"+3.3V\"" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "+3.3V_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 "+3.3V_1_1"
(pin power_in line (at 0 0 90) (length 0) hide
(name "+3.3V" (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:GNDREF" (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" "GNDREF" (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 \"GNDREF\" , reference supply ground" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "GNDREF_0_1"
(polyline
(pts
(xy -0.635 -1.905)
(xy 0.635 -1.905)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -0.127 -2.54)
(xy 0.127 -2.54)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 -1.27)
(xy 0 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)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "GNDREF_1_1"
(pin power_in line (at 0 0 270) (length 0) hide
(name "GNDREF" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "power:PWR_FLAG" (power) (pin_numbers hide) (pin_names (offset 0) hide) (in_bom yes) (on_board yes)
(property "Reference" "#FLG" (id 0) (at 0 1.905 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "PWR_FLAG" (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" "Special symbol for telling ERC where power comes from" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "PWR_FLAG_0_0"
(pin power_out line (at 0 0 90) (length 0)
(name "pwr" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
(symbol "PWR_FLAG_0_1"
(polyline
(pts
(xy 0 0)
(xy 0 1.27)
(xy -1.016 1.905)
(xy 0 2.54)
(xy 1.016 1.905)
(xy 0 1.27)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
)
)
(junction (at 133.35 109.22) (diameter 0) (color 0 0 0 0)
(uuid 07582944-c6f7-4e02-a0cb-6bf47b9fb9b4)
)
(junction (at 133.35 123.19) (diameter 0) (color 0 0 0 0)
(uuid 1ada15eb-acbf-4920-b715-d783fbd42125)
)
(junction (at 133.35 138.43) (diameter 0) (color 0 0 0 0)
(uuid 1b2a6717-8cc3-4c72-9912-323d4a163308)
)
(junction (at 118.11 122.936) (diameter 0) (color 0 0 0 0)
(uuid 5d405166-d683-43c2-9855-0fe9cd10b291)
)
(junction (at 118.11 138.43) (diameter 0) (color 0 0 0 0)
(uuid 84451f38-4373-4acb-bd04-158ecdaacfed)
)
(junction (at 193.04 124.206) (diameter 0) (color 0 0 0 0)
(uuid 880a6e61-a81e-48f5-87e3-f0e72e405795)
)
(junction (at 103.124 122.936) (diameter 0) (color 0 0 0 0)
(uuid 9c4eefad-1e67-4a03-bd6f-dcdb95ccc5fa)
)
(junction (at 176.53 72.39) (diameter 0) (color 0 0 0 0)
(uuid aea66f67-5a56-4ec8-9ed7-c1c6eb204efa)
)
(junction (at 103.124 109.22) (diameter 0) (color 0 0 0 0)
(uuid b0cf2ec9-40a4-43fe-a6ac-4324c495b697)
)
(junction (at 176.53 109.22) (diameter 0) (color 0 0 0 0)
(uuid b57e2bc6-bb3b-4296-b6bc-6207500a6131)
)
(junction (at 118.11 109.22) (diameter 0) (color 0 0 0 0)
(uuid bea4ed84-48f9-46b7-b717-8e3b657e22cb)
)
(junction (at 176.53 124.206) (diameter 0) (color 0 0 0 0)
(uuid e3a50d63-02fb-4daa-b692-29202a7c49c8)
)
(junction (at 176.53 138.43) (diameter 0) (color 0 0 0 0)
(uuid f065cdcc-ba34-490f-a257-b3d81515aa5d)
)
(junction (at 193.04 109.22) (diameter 0) (color 0 0 0 0)
(uuid f80f8a75-14b0-44b0-8ee4-8c15abb06099)
)
(junction (at 161.29 138.43) (diameter 0) (color 0 0 0 0)
(uuid fd5100fb-321b-4372-9fbc-31bf3008f65a)
)
(wire (pts (xy 133.35 96.52) (xy 133.35 109.22))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0912c7de-a967-41b1-a0b1-76d45e8e4c42)
)
(wire (pts (xy 147.32 123.19) (xy 152.4 123.19))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0aeaa1b7-6c0f-4ca9-b19f-198671bbda89)
)
(wire (pts (xy 103.124 109.22) (xy 103.124 122.936))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1106d713-8e69-41d0-b8af-d39e75bbeae7)
)
(wire (pts (xy 133.35 109.22) (xy 153.67 109.22))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 13b36957-2006-45d4-b321-742d99a73d00)
)
(wire (pts (xy 103.124 134.874) (xy 103.124 138.43))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1651130f-9e99-43db-9b7e-05207f21cd50)
)
(wire (pts (xy 115.57 78.74) (xy 125.73 78.74))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 250a723c-7495-4479-8bd3-5cc7eecbb071)
)
(wire (pts (xy 133.35 109.22) (xy 133.35 113.03))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2dfc19be-8901-464d-a1af-c6bda20b7d99)
)
(wire (pts (xy 133.35 138.43) (xy 161.29 138.43))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2f1fa98f-a58e-45d1-9fa8-0184beb2e242)
)
(wire (pts (xy 103.124 122.936) (xy 107.442 122.936))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 31e6f322-ae49-4935-bdfa-80b867c4953b)
)
(wire (pts (xy 167.64 72.39) (xy 176.53 72.39))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 334a3346-0b54-43b4-a07a-62bcb507f7e1)
)
(wire (pts (xy 133.35 133.35) (xy 133.35 138.43))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3bc2732a-40bf-4783-a600-a16c2e9297e1)
)
(wire (pts (xy 103.124 105.41) (xy 103.124 109.22))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 425b6e48-5496-4f38-b9b3-58091df074c9)
)
(wire (pts (xy 103.124 109.22) (xy 118.11 109.22))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 496f4aa2-ec95-4699-911e-b87528a71edf)
)
(wire (pts (xy 103.124 122.936) (xy 103.124 129.794))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5ae72393-175c-4dc8-ac01-647802de93be)
)
(wire (pts (xy 112.522 122.936) (xy 118.11 122.936))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5b095997-836d-416c-b7a4-e167e4a1e37c)
)
(wire (pts (xy 118.11 118.11) (xy 118.11 122.936))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5ba49f79-0301-4582-8ede-95f044f46adc)
)
(wire (pts (xy 193.04 112.776) (xy 193.04 109.22))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 64e87a56-3b2d-4736-9070-bc9c8ac830b9)
)
(wire (pts (xy 176.53 96.52) (xy 176.53 109.22))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 65b5fea9-b6de-4331-a2ea-bcb4abefffee)
)
(wire (pts (xy 176.53 138.43) (xy 193.04 138.43))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 68620cf8-7c6b-458c-99ac-aed5199671c5)
)
(wire (pts (xy 161.29 138.43) (xy 176.53 138.43))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 69485f5b-cb88-43b5-a6b4-2e43c77ed2e2)
)
(wire (pts (xy 176.53 72.39) (xy 176.53 78.74))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 69e69c2d-f929-48c6-acbe-8651c8a519fb)
)
(wire (pts (xy 118.11 109.22) (xy 118.11 113.03))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 6bfe209a-35f5-4b8b-9747-ebfc262dc636)
)
(wire (pts (xy 118.11 122.936) (xy 118.11 138.43))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 7882a06f-b7ba-4fc2-bee2-e5b17433b35c)
)
(wire (pts (xy 193.04 109.22) (xy 198.12 109.22))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 796fa758-1386-4af6-8c1e-711fb9229b7c)
)
(wire (pts (xy 133.35 138.43) (xy 133.35 139.7))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 7cc6ed58-3fdd-4ae2-8de8-857848a05a75)
)
(wire (pts (xy 187.452 124.206) (xy 193.04 124.206))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 80274772-6d0a-4a22-8a03-ef80beaae6f1)
)
(wire (pts (xy 193.04 124.206) (xy 193.04 117.856))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 80cc1ef8-c8a1-417f-8904-5a7f3bbc2f29)
)
(wire (pts (xy 176.53 109.22) (xy 193.04 109.22))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 860de2d4-f43b-40b1-8b99-acd5c47ae8e0)
)
(wire (pts (xy 115.57 73.66) (xy 125.73 73.66))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8711eff7-f44b-40c0-a82b-073b876e5a1b)
)
(wire (pts (xy 152.4 111.76) (xy 153.67 111.76))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 934e6301-ff5c-40b4-9cd7-60c1c558b29b)
)
(wire (pts (xy 161.29 119.38) (xy 161.29 138.43))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 968968ea-d847-4f13-b526-dd2da6e4b79f)
)
(wire (pts (xy 193.04 104.14) (xy 193.04 109.22))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 99cd7b64-bb6b-4a93-b295-1c28d717df2a)
)
(wire (pts (xy 115.57 83.82) (xy 125.73 83.82))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 9c1c2429-67a6-4ea7-a42d-81eb29229bff)
)
(wire (pts (xy 176.53 109.22) (xy 176.53 124.206))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 9e05eecc-6e89-44a4-9943-46b6f9297a78)
)
(wire (pts (xy 176.53 124.206) (xy 176.53 129.794))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 9eb59e9e-293b-415d-b93e-7f047b07be8f)
)
(wire (pts (xy 133.35 123.19) (xy 133.35 128.27))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a471b8d6-a56a-4eff-a2d3-0a6f887f1456)
)
(wire (pts (xy 157.48 96.52) (xy 176.53 96.52))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a780b6cf-9328-44cc-b5cf-058aad1d534c)
)
(wire (pts (xy 167.64 78.74) (xy 167.64 72.39))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b06b4ff5-ba6a-4e57-af45-d6ab0c3851d2)
)
(wire (pts (xy 118.11 138.43) (xy 133.35 138.43))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b1103ac9-01b3-4a3d-9bb2-5119730e4f3b)
)
(wire (pts (xy 168.91 109.22) (xy 176.53 109.22))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid ba5ccd39-3364-434a-98ed-09ccd9b80232)
)
(wire (pts (xy 118.11 109.22) (xy 133.35 109.22))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid bd822e62-8dce-4d99-852f-ce061a064aa7)
)
(wire (pts (xy 149.86 96.52) (xy 133.35 96.52))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c0ead533-6da0-4722-89c7-bd95b9e2c75f)
)
(wire (pts (xy 176.53 134.874) (xy 176.53 138.43))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c146993f-1cf3-4562-9e4e-06efdce30bf9)
)
(wire (pts (xy 103.124 138.43) (xy 118.11 138.43))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c954c3d1-22a2-4c91-bec9-33f838e30dde)
)
(wire (pts (xy 176.53 124.206) (xy 182.372 124.206))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid d39c9291-3879-4682-be75-70afe875a265)
)
(wire (pts (xy 133.35 118.11) (xy 133.35 123.19))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid d46627d0-e649-460a-94d8-dc8d81637be2)
)
(wire (pts (xy 193.04 138.43) (xy 193.04 124.206))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid d5be3fba-8126-41f0-9a97-bcd325330e50)
)
(wire (pts (xy 179.07 72.39) (xy 176.53 72.39))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid de578b7f-1cc2-42a4-aaae-5390095a2fbb)
)
(wire (pts (xy 142.24 123.19) (xy 133.35 123.19))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid e0e21380-0194-4681-b2ca-2e5ad18e2a57)
)
(wire (pts (xy 99.568 109.22) (xy 103.124 109.22))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid f3a16689-83ac-48dc-a440-465be24afc1c)
)
(wire (pts (xy 152.4 111.76) (xy 152.4 123.19))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid fe82f35c-8abb-4222-977f-e896ed9a4a11)
)
(global_label "VIN" (shape output) (at 125.73 73.66 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 1a962b04-4729-49b7-b903-559bb7233dce)
(property "插入圖紙頁參考" "${INTERSHEET_REFS}" (id 0) (at 131.1669 73.5806 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "GND" (shape bidirectional) (at 125.73 83.82 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 6858c067-4640-4f55-85de-f6ac33b5fda2)
(property "插入圖紙頁參考" "${INTERSHEET_REFS}" (id 0) (at 132.0136 83.7406 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "GND" (shape bidirectional) (at 179.07 72.39 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 886e13f2-79b2-4079-832b-a40a3940b092)
(property "插入圖紙頁參考" "${INTERSHEET_REFS}" (id 0) (at 185.3536 72.3106 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "+3.3V" (shape output) (at 198.12 109.22 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 9b9440a7-3c32-4f4d-8b9f-a4cd42dc092f)
(property "插入圖紙頁參考" "${INTERSHEET_REFS}" (id 0) (at 206.2179 109.1406 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "VIN" (shape input) (at 99.568 109.22 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid a834bd64-96c9-4cfc-8672-c55360d9d1c5)
(property "插入圖紙頁參考" "${INTERSHEET_REFS}" (id 0) (at 94.1311 109.1406 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "+3.3V" (shape input) (at 125.73 78.74 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid ce61ca4c-8945-46bb-87ec-e3fafe62d5fd)
(property "插入圖紙頁參考" "${INTERSHEET_REFS}" (id 0) (at 133.8279 78.6606 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(hierarchical_label "+3.3V" (shape output) (at 115.57 78.74 180)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 24445ab7-04ee-4a58-91a8-3e5740b98367)
)
(hierarchical_label "VIN" (shape input) (at 115.57 73.66 180)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 340c9392-6c48-490e-ab72-8cb5de292649)
)
(hierarchical_label "GND" (shape bidirectional) (at 115.57 83.82 180)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 35fafd98-55c6-47df-a1ab-6fb7b0ebb8b6)
)
(symbol (lib_id "Device:C_Small") (at 109.982 122.936 90) (unit 1)
(in_bom yes) (on_board yes) (fields_autoplaced)
(uuid 1a9cae96-17f7-4874-8a9b-5364435e82a2)
(property "Reference" "C13" (id 0) (at 109.9883 115.57 90))
(property "Value" "1uF/16V" (id 1) (at 109.9883 118.11 90))
(property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 109.982 122.936 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 109.982 122.936 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 51512362-9f03-464c-b21d-a9cff127e202))
(pin "2" (uuid 3eaf48b0-385b-4457-b96c-21fb406388eb))
)
(symbol (lib_id "power:GND") (at 133.35 139.7 0) (unit 1)
(in_bom yes) (on_board yes) (fields_autoplaced)
(uuid 2e26d597-62ec-4fa8-aea4-5008cecfc5b1)
(property "Reference" "#PWR012" (id 0) (at 133.35 146.05 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (id 1) (at 133.35 144.78 0))
(property "Footprint" "" (id 2) (at 133.35 139.7 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 133.35 139.7 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 92264fe8-61b5-49a2-b0d4-e966e30d3cbb))
)
(symbol (lib_id "Device:R_Small_US") (at 133.35 130.81 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 3e6d5c1b-249f-4eb0-a84c-67a00dd57fbf)
(property "Reference" "R5" (id 0) (at 137.16 129.54 0))
(property "Value" "10K/5%" (id 1) (at 139.7 132.08 0))
(property "Footprint" "Resistor_SMD:R_0603_1608Metric" (id 2) (at 133.35 130.81 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 133.35 130.81 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 4e912e9a-8d7c-46ea-bee8-7a680816cfff))
(pin "2" (uuid fdc9690d-c3ab-41fe-8637-153c1f1c3c42))
)
(symbol (lib_id "Regulator_Linear:TLV75533PDBV") (at 161.29 111.76 0) (unit 1)
(in_bom yes) (on_board yes) (fields_autoplaced)
(uuid 4b57b678-2229-4e53-8d50-a70ecc4267f1)
(property "Reference" "U2" (id 0) (at 161.29 101.6 0))
(property "Value" "TLV75533PDBV" (id 1) (at 161.29 104.14 0))
(property "Footprint" "Package_TO_SOT_SMD:SOT-23-5" (id 2) (at 161.29 103.505 0)
(effects (font (size 1.27 1.27) italic) hide)
)
(property "Datasheet" "http://www.ti.com/lit/ds/symlink/tlv755p.pdf" (id 3) (at 161.29 110.49 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 95b8179b-17c2-4aaf-bc8a-77ae856643a1))
(pin "2" (uuid 826060cb-d2b8-41f8-b237-492b764e8c0c))
(pin "3" (uuid 5b53ba53-3ea8-477f-97b5-42f7c0a3dced))
(pin "4" (uuid 61abfbab-3241-40bf-b204-85052f2fa2ab))
(pin "5" (uuid e17f8514-dd9f-437c-b7d9-5edd8c5ce96c))
)
(symbol (lib_id "power:PWR_FLAG") (at 103.124 105.41 0) (unit 1)
(in_bom yes) (on_board yes) (fields_autoplaced)
(uuid 4f66ce91-dfa4-4175-8f14-33a22fe94920)
(property "Reference" "#FLG0101" (id 0) (at 103.124 103.505 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "PWR_FLAG" (id 1) (at 103.124 100.33 0))
(property "Footprint" "" (id 2) (at 103.124 105.41 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 103.124 105.41 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 8ea68bd9-6627-4397-8cca-9f91e447b1fa))
)
(symbol (lib_id "Device:C_Small") (at 118.11 115.57 0) (unit 1)
(in_bom yes) (on_board yes) (fields_autoplaced)
(uuid 59366270-d046-4a8d-8a86-fa3f9d2a71fc)
(property "Reference" "C8" (id 0) (at 120.65 114.3062 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "100nF/16V" (id 1) (at 120.65 116.8462 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 118.11 115.57 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 118.11 115.57 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 21b3241f-7927-4236-9edc-86c85ef4b2f7))
(pin "2" (uuid c5dfac4a-61f2-4519-a60d-01f805f9cfcc))
)
(symbol (lib_id "Device:C_Small") (at 103.124 132.334 0) (unit 1)
(in_bom yes) (on_board yes) (fields_autoplaced)
(uuid 65cff0aa-500b-4d77-9f75-58621a900fa6)
(property "Reference" "C12" (id 0) (at 106.68 131.0702 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "100uF/16V" (id 1) (at 106.68 133.6102 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Capacitor_SMD:C_1206_3216Metric" (id 2) (at 103.124 132.334 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 103.124 132.334 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 05217143-ebf3-4d1e-a704-84b83f4b4b05))
(pin "2" (uuid 0dc1d57a-9b06-4f4f-85d4-09eb95f12e2b))
)
(symbol (lib_id "Device:C_Small") (at 193.04 115.316 0) (unit 1)
(in_bom yes) (on_board yes) (fields_autoplaced)
(uuid 6bfc3026-825b-4595-81dc-f862b2691dba)
(property "Reference" "C11" (id 0) (at 195.58 114.0522 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "100nF/16V" (id 1) (at 195.58 116.5922 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 193.04 115.316 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 193.04 115.316 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 81e41671-7625-438e-8220-29e0b73f8b5e))
(pin "2" (uuid 721c9dbb-3522-4b14-ba01-13b7d0e73640))
)
(symbol (lib_id "Device:C_Small") (at 184.912 124.206 90) (unit 1)
(in_bom yes) (on_board yes) (fields_autoplaced)
(uuid 88308b81-0f50-4174-aaec-d6a655aa152b)
(property "Reference" "C14" (id 0) (at 184.9183 116.84 90))
(property "Value" "1uF/16V" (id 1) (at 184.9183 119.38 90))
(property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 184.912 124.206 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 184.912 124.206 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid a7481926-6aef-4f0f-a23e-546044a3056e))
(pin "2" (uuid 23870750-0a40-4d4f-a57f-05bec95cb85d))
)
(symbol (lib_id "power:GNDREF") (at 176.53 78.74 0) (unit 1)
(in_bom yes) (on_board yes) (fields_autoplaced)
(uuid 95172286-8147-417c-82df-574f8ed2fc45)
(property "Reference" "#PWR014" (id 0) (at 176.53 85.09 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GNDREF" (id 1) (at 176.53 83.82 0))
(property "Footprint" "" (id 2) (at 176.53 78.74 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 176.53 78.74 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid ff2b9b35-d5b4-49b0-8604-ebcfc12485a4))
)
(symbol (lib_id "Device:R_Small_US") (at 133.35 115.57 180) (unit 1)
(in_bom yes) (on_board yes)
(uuid b97acc0f-7f81-461e-bc98-653b8b399826)
(property "Reference" "R4" (id 0) (at 137.16 114.3 0))
(property "Value" "39K/5%" (id 1) (at 139.7 116.84 0))
(property "Footprint" "Resistor_SMD:R_0603_1608Metric" (id 2) (at 133.35 115.57 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 133.35 115.57 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid ecb72340-cb35-4b6f-ba33-323aed790a1f))
(pin "2" (uuid cbd87121-73b0-40f7-a5e0-babb40ac2112))
)
(symbol (lib_id "Device:C_Small") (at 176.53 132.334 0) (unit 1)
(in_bom yes) (on_board yes) (fields_autoplaced)
(uuid c9bdc69b-046c-48e6-81b1-bae8188675f3)
(property "Reference" "C10" (id 0) (at 179.07 131.0702 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "100uF/16V" (id 1) (at 179.07 133.6102 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Capacitor_SMD:C_1206_3216Metric" (id 2) (at 176.53 132.334 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 176.53 132.334 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 33ff45b2-600a-44e8-9af3-f42f15c788f4))
(pin "2" (uuid 1460142d-e247-4e6a-bc36-8e7fb8040f9f))
)
(symbol (lib_id "power:+3.3V") (at 193.04 104.14 0) (unit 1)
(in_bom yes) (on_board yes) (fields_autoplaced)
(uuid e379516f-4f05-4202-a5ff-be987d26be70)
(property "Reference" "#PWR015" (id 0) (at 193.04 107.95 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "+3.3V" (id 1) (at 193.04 99.06 0))
(property "Footprint" "" (id 2) (at 193.04 104.14 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 193.04 104.14 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid dcc2b7ce-3771-4ebc-ba91-39c16261c008))
)
(symbol (lib_id "Device:R_Small_US") (at 144.78 123.19 270) (unit 1)
(in_bom yes) (on_board yes)
(uuid e601a1ca-ea18-4ac2-932b-131526d69fb5)
(property "Reference" "R6" (id 0) (at 144.78 120.65 90))
(property "Value" "100R/5%" (id 1) (at 144.78 125.73 90))
(property "Footprint" "Resistor_SMD:R_0603_1608Metric" (id 2) (at 144.78 123.19 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 144.78 123.19 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid d6fa6f32-624f-420d-a434-06e64fdc8b87))
(pin "2" (uuid 6aca4f38-7ada-47a4-afeb-677a9072840f))
)
(symbol (lib_id "power:GND") (at 167.64 78.74 0) (unit 1)
(in_bom yes) (on_board yes) (fields_autoplaced)
(uuid f210d325-97e5-43d5-a2af-983f41854753)
(property "Reference" "#PWR013" (id 0) (at 167.64 85.09 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (id 1) (at 167.64 83.82 0))
(property "Footprint" "" (id 2) (at 167.64 78.74 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 167.64 78.74 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 2fcb2c10-84c6-425d-80e0-b698094f7e19))
)
(symbol (lib_id "Diode:1SS355VM") (at 153.67 96.52 0) (unit 1)
(in_bom yes) (on_board yes) (fields_autoplaced)
(uuid f8ae2471-cb2a-454b-b4c1-6caacd2411df)
(property "Reference" "D13" (id 0) (at 153.67 90.424 0))
(property "Value" "1N4148" (id 1) (at 153.67 92.964 0))
(property "Footprint" "Diode_SMD:D_0805_2012Metric" (id 2) (at 153.67 100.965 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "https://fscdn.rohm.com/en/products/databook/datasheet/discrete/diode/switching/1ss355vmte-17-e.pdf" (id 3) (at 153.67 96.52 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid ac325e51-96f6-4806-bd8f-f40eed027670))
(pin "2" (uuid 591d194c-7ec2-4181-805b-d5040559df47))
)
)