This repository has been archived by the owner on Nov 3, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
CURRENT_SENSE.kicad_sch
1548 lines (1499 loc) · 57.1 KB
/
CURRENT_SENSE.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 cd50b8dc-829d-4a1d-8f2a-6471f378ba87)
(paper "A4")
(lib_symbols
(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:Opamp_Dual" (in_bom yes) (on_board yes)
(property "Reference" "U" (id 0) (at 0 5.08 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "Opamp_Dual" (id 1) (at 0 -5.08 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_locked" "" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)))
)
(property "ki_keywords" "dual opamp" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Dual operational amplifier" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "SOIC*3.9x4.9mm*P1.27mm* DIP*W7.62mm* MSOP*3x3mm*P0.65mm* SSOP*2.95x2.8mm*P0.65mm* TSSOP*3x3mm*P0.65mm* VSSOP*P0.5mm* TO?99*" (id 7) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "Opamp_Dual_1_1"
(polyline
(pts
(xy -5.08 5.08)
(xy 5.08 0)
(xy -5.08 -5.08)
(xy -5.08 5.08)
)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type background))
)
(pin output line (at 7.62 0 180) (length 2.54)
(name "~" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin input line (at -7.62 -2.54 0) (length 2.54)
(name "-" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin input line (at -7.62 2.54 0) (length 2.54)
(name "+" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
)
(symbol "Opamp_Dual_2_1"
(polyline
(pts
(xy -5.08 5.08)
(xy 5.08 0)
(xy -5.08 -5.08)
(xy -5.08 5.08)
)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type background))
)
(pin input line (at -7.62 2.54 0) (length 2.54)
(name "+" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
(pin input line (at -7.62 -2.54 0) (length 2.54)
(name "-" (effects (font (size 1.27 1.27))))
(number "6" (effects (font (size 1.27 1.27))))
)
(pin output line (at 7.62 0 180) (length 2.54)
(name "~" (effects (font (size 1.27 1.27))))
(number "7" (effects (font (size 1.27 1.27))))
)
)
(symbol "Opamp_Dual_3_1"
(pin power_in line (at -2.54 -7.62 90) (length 3.81)
(name "V-" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at -2.54 7.62 270) (length 3.81)
(name "V+" (effects (font (size 1.27 1.27))))
(number "8" (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 "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 "+3V3" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "power:-BATT" (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" "-BATT" (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 battery" (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 \"-BATT\"" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "-BATT_0_1"
(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.762 1.27)
(xy -0.762 1.27)
(xy 0 2.54)
(xy 0.762 1.27)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type outline))
)
)
(symbol "-BATT_1_1"
(pin power_in line (at 0 0 90) (length 0) hide
(name "-BATT" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "power:GND" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "#PWR" (id 0) (at 0 -6.35 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (id 1) (at 0 -3.81 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "power-flag" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Power symbol creates a global label with name \"GND\" , ground" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "GND_0_1"
(polyline
(pts
(xy 0 0)
(xy 0 -1.27)
(xy 1.27 -1.27)
(xy 0 -2.54)
(xy -1.27 -1.27)
(xy 0 -1.27)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "GND_1_1"
(pin power_in line (at 0 0 270) (length 0) hide
(name "GND" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
)
(junction (at 163.83 73.66) (diameter 0) (color 0 0 0 0)
(uuid 021b9749-b848-4fdc-a255-7c252c9bb05f)
)
(junction (at 226.06 133.35) (diameter 0) (color 0 0 0 0)
(uuid 07d660d8-83cb-4630-ac54-a69fa3b10a44)
)
(junction (at 226.06 118.11) (diameter 0) (color 0 0 0 0)
(uuid 1626a819-9e80-4377-8a93-f509fffb3a39)
)
(junction (at 120.65 121.92) (diameter 0) (color 0 0 0 0)
(uuid 16c70a96-6f8f-4b01-b16a-70805ce00c7d)
)
(junction (at 195.58 127) (diameter 0) (color 0 0 0 0)
(uuid 1fb50f89-4b8a-4c6c-8935-ae1f1dae6773)
)
(junction (at 226.06 67.31) (diameter 0) (color 0 0 0 0)
(uuid 2ece63b8-349a-453a-8c5a-0053aa4b4461)
)
(junction (at 140.97 73.66) (diameter 0) (color 0 0 0 0)
(uuid 4d530e04-17cc-46fc-9ca8-829fa144f2cd)
)
(junction (at 114.2474 121.92) (diameter 0) (color 0 0 0 0)
(uuid 504d7c20-eba1-45eb-80ee-defa6afef3df)
)
(junction (at 120.65 127) (diameter 0) (color 0 0 0 0)
(uuid 5260fd23-6f0b-41b9-a5c0-50fec17c75b8)
)
(junction (at 114.3 127) (diameter 0) (color 0 0 0 0)
(uuid 5f976c2a-86e5-45ae-8b83-5bbe0a8843e8)
)
(junction (at 152.4 73.66) (diameter 0) (color 0 0 0 0)
(uuid 617c98d8-420a-4382-a7ba-e4b4fbb08aa7)
)
(junction (at 163.83 124.46) (diameter 0) (color 0 0 0 0)
(uuid 6b8c153e-62fe-42fb-aa7f-caef740ef6fd)
)
(junction (at 152.4 124.46) (diameter 0) (color 0 0 0 0)
(uuid 819283b6-ffe8-403d-8df1-82132df3b4fa)
)
(junction (at 226.06 82.55) (diameter 0) (color 0 0 0 0)
(uuid 8881004f-18b8-4b65-8bbb-d358044916d4)
)
(junction (at 140.97 124.46) (diameter 0) (color 0 0 0 0)
(uuid a8620a61-f072-46b8-9201-a93dbc5c329f)
)
(junction (at 195.58 76.2) (diameter 0) (color 0 0 0 0)
(uuid a96ec3cf-af7b-468f-8a73-42336a73e857)
)
(junction (at 120.65 71.12) (diameter 0) (color 0 0 0 0)
(uuid baa0413a-4300-493a-b271-95d2f4223e43)
)
(junction (at 120.65 76.2) (diameter 0) (color 0 0 0 0)
(uuid c8d88669-3846-41bc-a883-d4f466347828)
)
(junction (at 114.2474 71.12) (diameter 0) (color 0 0 0 0)
(uuid ebef27ec-5755-420d-9ed1-f2f74ae9557b)
)
(junction (at 114.3 76.2) (diameter 0) (color 0 0 0 0)
(uuid f11f3db3-dc46-40c0-a41d-8ed879616fe2)
)
(wire (pts (xy 173.99 129.54) (xy 177.8 129.54))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 044dde97-ee2e-473a-9264-ed4dff1893a5)
)
(wire (pts (xy 173.99 78.74) (xy 177.8 78.74))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 057fcaf3-edc9-4fff-97d8-16886360d43f)
)
(wire (pts (xy 120.65 71.12) (xy 123.19 71.12))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 11d50511-eed6-4eb1-8f1d-106f6fd44210)
)
(wire (pts (xy 152.4 114.3) (xy 177.8 114.3))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 12583d6f-03ad-4e56-b787-21dc6230cc96)
)
(wire (pts (xy 138.43 124.46) (xy 140.97 124.46))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1aa5a7b9-f7a0-4ae2-9455-41139bd02c1f)
)
(wire (pts (xy 177.8 124.46) (xy 163.83 124.46))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 232ccf4f-3322-4e62-990b-290e6ff36fcd)
)
(wire (pts (xy 114.2474 71.12) (xy 120.65 71.12))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 242a12fd-e08c-472f-bb6d-f573eeecbbfc)
)
(wire (pts (xy 123.19 76.2) (xy 120.65 76.2))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 266eb575-9e69-4c2e-bafa-e46d2ee4eb01)
)
(wire (pts (xy 120.65 137.16) (xy 123.19 137.16))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 26a06af6-a463-4c0b-bc99-b7ef2964e4cd)
)
(wire (pts (xy 109.22 127) (xy 114.3 127))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 272b7a9f-ce0c-4f38-8f71-d65d4380e56e)
)
(wire (pts (xy 152.4 73.66) (xy 152.4 63.5))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2b2988b2-024d-4072-bd93-b0a960499a4c)
)
(wire (pts (xy 222.25 71.12) (xy 222.25 67.31))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2ba79160-14f8-4139-b8a5-33b5288bd620)
)
(wire (pts (xy 195.58 114.3) (xy 195.58 127))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 36107421-a1c7-4f89-92f6-79c699dd154a)
)
(wire (pts (xy 222.25 78.74) (xy 222.25 82.55))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3d24149c-5735-4080-8039-b8bff9bc9871)
)
(wire (pts (xy 222.25 121.92) (xy 222.25 118.11))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3fd60e74-d168-4c5d-86fb-b70f0639f49a)
)
(wire (pts (xy 152.4 73.66) (xy 153.67 73.66))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 41414cc4-68f1-4db5-88c4-4d80f6e46621)
)
(wire (pts (xy 222.25 118.11) (xy 226.06 118.11))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 43dd4d64-745f-439a-bb81-a33838facc1b)
)
(wire (pts (xy 152.4 124.46) (xy 152.4 114.3))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 457b6329-ea74-45a0-ac70-069352cc32ef)
)
(wire (pts (xy 140.97 137.16) (xy 140.97 124.46))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4cf396cb-9d0e-412c-bfd5-19cce9445d47)
)
(wire (pts (xy 120.65 127) (xy 120.65 137.16))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 511979e1-5d3a-448b-a213-e4a81cb33278)
)
(wire (pts (xy 109.22 121.92) (xy 114.2474 121.92))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5e6d351d-f97e-4295-8d9c-e7bbd74e5cf1)
)
(wire (pts (xy 140.97 73.66) (xy 142.24 73.66))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 601df02a-d0b0-401e-b347-d26024bba694)
)
(wire (pts (xy 114.3 76.2) (xy 120.65 76.2))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 6b6add64-78bf-4b06-92d8-a358a93a1ab1)
)
(wire (pts (xy 130.81 86.36) (xy 140.97 86.36))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 729199d2-2daa-4a1a-a58d-819f84f50e02)
)
(wire (pts (xy 173.99 129.54) (xy 173.99 135.89))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 73f40fda-e6eb-4f93-9482-56cf47d84a87)
)
(wire (pts (xy 222.25 82.55) (xy 226.06 82.55))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 797aaa99-5650-47c3-a802-dd2feba5ddf5)
)
(wire (pts (xy 195.58 135.89) (xy 195.58 127))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 7c492d99-aca1-4fc2-8da7-d6b12e8676cf)
)
(wire (pts (xy 222.25 67.31) (xy 226.06 67.31))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 7e127c83-dfeb-42c2-b979-fd8d974b401a)
)
(wire (pts (xy 120.65 121.92) (xy 123.19 121.92))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 7ec1f63f-878f-4484-bda5-7caa7f746de6)
)
(wire (pts (xy 195.58 76.2) (xy 199.39 76.2))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8cccaec6-f41b-4414-a451-d0a059b14999)
)
(wire (pts (xy 140.97 124.46) (xy 142.24 124.46))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8ff02bca-1407-4488-9de5-e012a126876f)
)
(wire (pts (xy 109.22 71.12) (xy 114.2474 71.12))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 9025b5e2-8be2-4477-8e95-157ec704b9d1)
)
(wire (pts (xy 195.58 63.5) (xy 195.58 76.2))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 917f7ac8-e17f-42f7-94ca-e065f007f10d)
)
(wire (pts (xy 109.22 76.2) (xy 114.3 76.2))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 949957eb-4185-4ae0-93a2-2e9a56b89bc1)
)
(wire (pts (xy 152.4 63.5) (xy 177.8 63.5))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 95775075-b174-43e7-8d9b-2bbcceec5cca)
)
(wire (pts (xy 95.25 71.12) (xy 101.6 71.12))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 9b4be32a-89b6-4fb0-8ca0-5fb83673f6c0)
)
(wire (pts (xy 161.29 124.46) (xy 163.83 124.46))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 9f4abbc0-6ac3-48f0-b823-2c1c19349540)
)
(wire (pts (xy 140.97 86.36) (xy 140.97 73.66))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a3609e53-3668-4b67-8094-4cbb805fccff)
)
(wire (pts (xy 95.25 121.92) (xy 101.6 121.92))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a40f23b3-3fd1-46b4-8869-8eeb006ea7da)
)
(wire (pts (xy 93.98 127) (xy 101.6 127))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a45d2504-fc88-4256-b6bb-e332cc97f460)
)
(wire (pts (xy 114.3 127) (xy 120.65 127))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a472299f-e3bb-4fca-b1bc-703f9d1623cf)
)
(wire (pts (xy 120.65 58.42) (xy 120.65 60.96))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a69ea050-43e1-4dc6-9910-ec46196e11b9)
)
(wire (pts (xy 120.65 86.36) (xy 123.19 86.36))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a8001c20-3172-4719-a73a-b192797f89b8)
)
(wire (pts (xy 138.43 73.66) (xy 140.97 73.66))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a9f42a91-c0df-4958-bbf9-8c2889eb2552)
)
(wire (pts (xy 130.81 137.16) (xy 140.97 137.16))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid ad5a2ceb-0a8e-40db-a89f-3e85bc6e468a)
)
(wire (pts (xy 173.99 85.09) (xy 195.58 85.09))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid adb8d1a7-b322-4b6c-9cb6-8338fc23ba48)
)
(wire (pts (xy 114.2474 121.92) (xy 120.65 121.92))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b05672a8-9e48-4243-af70-846ca9ea75f0)
)
(wire (pts (xy 161.29 73.66) (xy 163.83 73.66))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b26b7335-a8f3-42f7-b024-b8639e6ade0b)
)
(wire (pts (xy 185.42 63.5) (xy 195.58 63.5))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b893555e-743d-4cf9-bd5a-f020e2718f96)
)
(wire (pts (xy 149.86 73.66) (xy 152.4 73.66))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid ba40160c-32ac-4940-815e-21fc3ba95a59)
)
(wire (pts (xy 193.04 76.2) (xy 195.58 76.2))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid be305d33-9efe-4a5f-a856-af467e515a67)
)
(wire (pts (xy 120.65 119.38) (xy 120.65 121.92))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid bf5d32d7-21dd-4768-b11d-11781346b5ff)
)
(wire (pts (xy 152.4 124.46) (xy 153.67 124.46))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c3af931d-fc5a-4845-9084-b9e8ca7063f6)
)
(wire (pts (xy 123.19 127) (xy 120.65 127))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c48ce12f-7879-4486-b872-bb52e6a3e833)
)
(wire (pts (xy 120.65 76.2) (xy 120.65 86.36))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid cc038494-54bb-4aa7-86ba-22e0e82086f2)
)
(wire (pts (xy 193.04 127) (xy 195.58 127))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid d4ef5db0-5fba-4fcd-ab64-2ef2646c5c6d)
)
(wire (pts (xy 120.65 109.22) (xy 120.65 111.76))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid d6a63765-784e-450e-a69b-2fa74840309b)
)
(wire (pts (xy 93.98 76.2) (xy 101.6 76.2))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid dc277d6c-b13f-4ff2-a544-4bff28ce3eda)
)
(wire (pts (xy 222.25 133.35) (xy 226.06 133.35))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid e04c4c70-8ba5-4dbe-8b1a-03b93a30a641)
)
(wire (pts (xy 173.99 78.74) (xy 173.99 85.09))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid e49ab0ca-a578-4194-9664-e7d0528306f3)
)
(wire (pts (xy 195.58 127) (xy 199.39 127))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid e5140abb-49a3-48c8-8bd3-b323c1e0494a)
)
(wire (pts (xy 222.25 129.54) (xy 222.25 133.35))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid e58dbfb7-3efd-4e8a-a81d-0502cdfa594e)
)
(wire (pts (xy 149.86 124.46) (xy 152.4 124.46))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid e75196a2-eadc-47d1-ab8b-777aeb535f0f)
)
(wire (pts (xy 173.99 135.89) (xy 195.58 135.89))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid e9ab4f4d-4db3-4695-8d6d-3fff9d59b878)
)
(wire (pts (xy 120.65 68.58) (xy 120.65 71.12))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid f177043f-f889-42f7-97a5-3b6b57cad25c)
)
(wire (pts (xy 177.8 73.66) (xy 163.83 73.66))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid f8c32f63-d64e-4208-a10b-0a88cfa95c5a)
)
(wire (pts (xy 185.42 114.3) (xy 195.58 114.3))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid fd670dee-fa82-4832-b717-73eaf526dc60)
)
(wire (pts (xy 195.58 85.09) (xy 195.58 76.2))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid ff1334c1-afc4-4cf0-93a3-ec8d84f40490)
)
(text "route sense line directly to shunt insides\nboth for shunt and gnd"
(at 73.66 95.25 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 19a6bba2-9ca3-4a98-889d-eb4c347c2717)
)
(text "route sense line directly to shunt insides\nboth for shunt and gnd"
(at 73.66 146.05 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid b86fafce-607a-4bac-9e0d-ee620f1cb55f)
)
(hierarchical_label "R_MTR_SHUNT" (shape input) (at 95.25 121.92 180)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 0c544a8c-9f45-4205-9bca-1d91c95d58ef)
)
(hierarchical_label "R_MTR_CURR" (shape input) (at 199.39 127 0)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 15ea3484-2685-47cb-9e01-ec01c6d477b8)
)
(hierarchical_label "L_MTR_SHUNT" (shape input) (at 95.25 71.12 180)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 776d771c-6950-4013-9f55-10cc59f2536a)
)
(hierarchical_label "L_MTR_CURR" (shape input) (at 199.39 76.2 0)
(effects (font (size 1.27 1.27)) (justify left))
(uuid e0146e15-d846-41fd-b342-f7baa8c8945e)
)
(symbol (lib_id "Device:R") (at 157.48 124.46 270) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-00005f72188f)
(property "Reference" "R41" (id 0) (at 157.48 119.2022 90))
(property "Value" "10k" (id 1) (at 157.48 121.5136 90))
(property "Footprint" "Resistor_SMD:R_0603_1608Metric" (id 2) (at 157.48 122.682 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 157.48 124.46 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "LCSC Part #" "C25804" (id 4) (at 157.48 124.46 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 8b1cb39c-c4de-4376-955e-d8ad01d75818))
(pin "2" (uuid bb2fd8f5-3b8b-4780-b04b-22eb5324d03e))
)
(symbol (lib_id "Device:R") (at 120.65 115.57 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-00005f723317)
(property "Reference" "R35" (id 0) (at 122.428 114.4016 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "220k" (id 1) (at 122.428 116.713 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Resistor_SMD:R_0603_1608Metric" (id 2) (at 118.872 115.57 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 120.65 115.57 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "LCSC Part #" "C22961" (id 4) (at 120.65 115.57 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid a58f6d7d-7457-44b7-9784-59d730fc92fa))
(pin "2" (uuid 8a70db00-1bdd-4476-b0bc-d0a0f2abd6dc))
)
(symbol (lib_id "power:+3.3V") (at 120.65 109.22 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-00005f723ca3)
(property "Reference" "#PWR053" (id 0) (at 120.65 113.03 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "+3.3V" (id 1) (at 121.031 104.8258 0))
(property "Footprint" "" (id 2) (at 120.65 109.22 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 120.65 109.22 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 79d7c83d-91c9-4bd8-a8b4-dd5d39b51616))
)
(symbol (lib_id "Device:C") (at 163.83 128.27 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-00005f72440b)
(property "Reference" "C33" (id 0) (at 166.751 127.1016 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "100nF" (id 1) (at 166.751 129.413 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 164.7952 132.08 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 163.83 128.27 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "LCSC Part #" "C14663" (id 4) (at 163.83 128.27 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid af9b5ea2-280a-41cd-8516-afe3aa7e7b04))
(pin "2" (uuid 4edc674e-c284-4db0-b7e6-85bf19d717d5))
)
(symbol (lib_id "power:GND") (at 163.83 132.08 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-00005f724b97)
(property "Reference" "#PWR055" (id 0) (at 163.83 138.43 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (id 1) (at 163.957 136.4742 0))
(property "Footprint" "" (id 2) (at 163.83 132.08 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 163.83 132.08 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 9a738855-67f0-4766-bd6e-ef9427c0a2f9))
)
(symbol (lib_id "Device:Opamp_Dual") (at 185.42 127 0) (unit 2)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-00005f726ef7)
(property "Reference" "U5" (id 0) (at 185.42 120.015 0))
(property "Value" "3PEAK TP09-SR" (id 1) (at 185.42 119.9896 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Footprint" "Package_SO:SOIC-8_3.9x4.9mm_P1.27mm" (id 2) (at 185.42 127 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 185.42 127 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "LCSC Part #" "C81662" (id 4) (at 185.42 127 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "5" (uuid 3a34cf5a-1539-4312-b41f-ae2b858ae423))
(pin "6" (uuid b5159227-5454-4704-93ed-50f75d8efc58))
(pin "7" (uuid c16feded-6628-404c-9325-ec20deb8c376))
)
(symbol (lib_id "Device:R") (at 105.41 127 270) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-00005f72af68)
(property "Reference" "R33" (id 0) (at 102.87 130.81 90))
(property "Value" "10k" (id 1) (at 107.95 130.81 90))
(property "Footprint" "Resistor_SMD:R_0603_1608Metric" (id 2) (at 105.41 125.222 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 105.41 127 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "LCSC Part #" "C25804" (id 4) (at 105.41 127 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid bd911311-5f31-4042-b2cc-e63e835bc564))
(pin "2" (uuid 0b83de0c-cbb7-4186-b2a8-0ba93063544c))
)
(symbol (lib_id "power:+3.3V") (at 226.06 118.11 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-00005f732e05)
(property "Reference" "#PWR058" (id 0) (at 226.06 121.92 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "+3.3V" (id 1) (at 226.441 113.7158 0))
(property "Footprint" "" (id 2) (at 226.06 118.11 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 226.06 118.11 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 0873bb36-33d1-470a-bd5c-4c0a57441bab))
)
(symbol (lib_id "power:GND") (at 226.06 133.35 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-00005f732e19)
(property "Reference" "#PWR059" (id 0) (at 226.06 139.7 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (id 1) (at 226.187 137.7442 0))
(property "Footprint" "" (id 2) (at 226.06 133.35 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 226.06 133.35 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 5df172e7-c950-4431-a184-2bc19aeccc2d))
)
(symbol (lib_id "Device:Opamp_Dual") (at 130.81 124.46 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-00005f737875)
(property "Reference" "U5" (id 0) (at 130.81 117.475 0))
(property "Value" "3PEAK TP09-SR" (id 1) (at 130.81 117.4496 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Footprint" "Package_SO:SOIC-8_3.9x4.9mm_P1.27mm" (id 2) (at 130.81 124.46 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 130.81 124.46 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "LCSC Part #" "C81662" (id 4) (at 130.81 124.46 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid d2e0341a-5057-4f98-ba18-f97dbc6a051f))
(pin "2" (uuid fe69aa4e-40c2-4c57-83ec-73dcbf999f91))
(pin "3" (uuid 983131e0-5eea-4aaf-a556-75427c851b4c))
)
(symbol (lib_id "Device:Opamp_Dual") (at 228.6 125.73 0) (unit 3)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-00005f7db73b)
(property "Reference" "U5" (id 0) (at 227.5332 124.5616 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "3PEAK TP09-SR" (id 1) (at 227.5332 126.873 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Package_SO:SOIC-8_3.9x4.9mm_P1.27mm" (id 2) (at 228.6 125.73 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 228.6 125.73 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "LCSC Part #" "C81662" (id 4) (at 228.6 125.73 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "4" (uuid 92aa8fca-9385-4582-bc3d-abdcf26c7e89))
(pin "8" (uuid 7e4ad0ec-eeca-4636-9a66-eff80c9451ca))
)
(symbol (lib_id "Device:R") (at 120.65 64.77 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00f2965d-a9e9-46cf-805b-3aade56c030a)
(property "Reference" "R34" (id 0) (at 122.428 63.6016 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "220k" (id 1) (at 122.428 65.913 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Resistor_SMD:R_0603_1608Metric" (id 2) (at 118.872 64.77 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 120.65 64.77 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "LCSC Part #" "C22961" (id 4) (at 120.65 64.77 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 46d6941b-4918-4cc6-8042-5a8e3c7dc730))
(pin "2" (uuid d42d11d9-f34b-4876-bb4f-a7c382a92469))
)
(symbol (lib_id "Device:D") (at 114.2474 118.11 270) (unit 1)
(in_bom yes) (on_board yes)
(uuid 023a0e1a-5162-4e28-b650-e5ab206aade4)
(property "Reference" "D16" (id 0) (at 111.76 116.84 90)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Value" "1N4148W" (id 1) (at 111.76 114.3 90)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Footprint" "Diode_SMD:D_SOD-123" (id 2) (at 114.2474 118.11 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 114.2474 118.11 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "LCSC Part #" "C81598" (id 4) (at 114.2474 118.11 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 54dd43a0-2123-4d75-9e85-edbabe1c8d16))
(pin "2" (uuid c6aa027b-2cb6-4319-8e85-381cdf4d3b35))
)
(symbol (lib_id "Device:R") (at 157.48 73.66 270) (unit 1)
(in_bom yes) (on_board yes)
(uuid 1391b799-1887-4f16-a387-65952e3c60ea)
(property "Reference" "R40" (id 0) (at 157.48 68.4022 90))