-
Notifications
You must be signed in to change notification settings - Fork 1
/
MCU.kicad_sch
1333 lines (1307 loc) · 49.1 KB
/
MCU.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 20230121) (generator eeschema)
(uuid 080d646c-2878-4b27-9fbb-73824a65ad1e)
(paper "A4")
(lib_symbols
(symbol "490107670612:490107670612" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
(property "Reference" "J" (at -7.62 6.35 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
)
(property "Value" "490107670612" (at -7.62 -7.62 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
)
(property "Footprint" "WURTH_490107670612" (at 0 0 0)
(effects (font (size 1.27 1.27)) (justify bottom) hide)
)
(property "Datasheet" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "PARTREV" "002.003" (at 0 0 0)
(effects (font (size 1.27 1.27)) (justify bottom) hide)
)
(property "STANDARD" "Manufacturer Recommendations" (at 0 0 0)
(effects (font (size 1.27 1.27)) (justify bottom) hide)
)
(property "MAXIMUM_PACKAGE_HEIGHT" "10.45 mm" (at 0 0 0)
(effects (font (size 1.27 1.27)) (justify bottom) hide)
)
(property "MANUFACTURER" "Würth Elektronik" (at 0 0 0)
(effects (font (size 1.27 1.27)) (justify bottom) hide)
)
(symbol "490107670612_0_0"
(rectangle (start -7.62 -5.08) (end 7.62 5.08)
(stroke (width 0.254) (type default))
(fill (type background))
)
(pin passive line (at -12.7 2.54 0) (length 5.08)
(name "1" (effects (font (size 1.016 1.016))))
(number "1" (effects (font (size 1.016 1.016))))
)
(pin passive line (at 12.7 2.54 180) (length 5.08)
(name "2" (effects (font (size 1.016 1.016))))
(number "2" (effects (font (size 1.016 1.016))))
)
(pin passive line (at -12.7 0 0) (length 5.08)
(name "3" (effects (font (size 1.016 1.016))))
(number "3" (effects (font (size 1.016 1.016))))
)
(pin passive line (at 12.7 0 180) (length 5.08)
(name "4" (effects (font (size 1.016 1.016))))
(number "4" (effects (font (size 1.016 1.016))))
)
(pin passive line (at -12.7 -2.54 0) (length 5.08)
(name "5" (effects (font (size 1.016 1.016))))
(number "5" (effects (font (size 1.016 1.016))))
)
(pin passive line (at 12.7 -2.54 180) (length 5.08)
(name "6" (effects (font (size 1.016 1.016))))
(number "6" (effects (font (size 1.016 1.016))))
)
)
)
(symbol "Device:C" (pin_numbers hide) (pin_names (offset 0.254)) (in_bom yes) (on_board yes)
(property "Reference" "C" (at 0.635 2.54 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "C" (at 0.635 -2.54 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (at 0.9652 -3.81 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "cap capacitor" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Unpolarized capacitor" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "C_*" (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))
(fill (type none))
)
(polyline
(pts
(xy -2.032 0.762)
(xy 2.032 0.762)
)
(stroke (width 0.508) (type default))
(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:LED" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
(property "Reference" "D" (at 0 2.54 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "LED" (at 0 -2.54 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "LED diode" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Light emitting diode" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "LED* LED_SMD:* LED_THT:*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "LED_0_1"
(polyline
(pts
(xy -1.27 -1.27)
(xy -1.27 1.27)
)
(stroke (width 0.254) (type default))
(fill (type none))
)
(polyline
(pts
(xy -1.27 0)
(xy 1.27 0)
)
(stroke (width 0) (type default))
(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))
(fill (type none))
)
(polyline
(pts
(xy -3.048 -0.762)
(xy -4.572 -2.286)
(xy -3.81 -2.286)
(xy -4.572 -2.286)
(xy -4.572 -1.524)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy -1.778 -0.762)
(xy -3.302 -2.286)
(xy -2.54 -2.286)
(xy -3.302 -2.286)
(xy -3.302 -1.524)
)
(stroke (width 0) (type default))
(fill (type none))
)
)
(symbol "LED_1_1"
(pin passive line (at -3.81 0 0) (length 2.54)
(name "K" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 3.81 0 180) (length 2.54)
(name "A" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Device:R" (pin_numbers hide) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "R" (at 2.032 0 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "R" (at 0 0 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at -1.778 0 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "R res resistor" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Resistor" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "R_*" (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))
(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 "PIC16F15345T-E_SSVAO:PIC16F15345T-E_SSVAO" (in_bom yes) (on_board yes)
(property "Reference" "IC" (at 44.45 7.62 0)
(effects (font (size 1.27 1.27)) (justify left top))
)
(property "Value" "PIC16F15345T-E_SSVAO" (at 44.45 5.08 0)
(effects (font (size 1.27 1.27)) (justify left top))
)
(property "Footprint" "SOP65P780X200-20N" (at 44.45 -94.92 0)
(effects (font (size 1.27 1.27)) (justify left top) hide)
)
(property "Datasheet" "" (at 44.45 -194.92 0)
(effects (font (size 1.27 1.27)) (justify left top) hide)
)
(property "Height" "2" (at 44.45 -394.92 0)
(effects (font (size 1.27 1.27)) (justify left top) hide)
)
(property "Manufacturer_Name" "Microchip" (at 44.45 -494.92 0)
(effects (font (size 1.27 1.27)) (justify left top) hide)
)
(property "Manufacturer_Part_Number" "PIC16F15345T-E/SSVAO" (at 44.45 -594.92 0)
(effects (font (size 1.27 1.27)) (justify left top) hide)
)
(property "Mouser Part Number" "" (at 44.45 -694.92 0)
(effects (font (size 1.27 1.27)) (justify left top) hide)
)
(property "Mouser Price/Stock" "" (at 44.45 -794.92 0)
(effects (font (size 1.27 1.27)) (justify left top) hide)
)
(property "Arrow Part Number" "" (at 44.45 -894.92 0)
(effects (font (size 1.27 1.27)) (justify left top) hide)
)
(property "Arrow Price/Stock" "" (at 44.45 -994.92 0)
(effects (font (size 1.27 1.27)) (justify left top) hide)
)
(property "ki_description" "IC MCU 8BIT 14KB FLASH 20SSOP" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "PIC16F15345T-E_SSVAO_1_1"
(rectangle (start 5.08 2.54) (end 43.18 -25.4)
(stroke (width 0.254) (type default))
(fill (type background))
)
(pin passive line (at 0 0 0) (length 5.08)
(name "VDD" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -22.86 0) (length 5.08)
(name "RB7" (effects (font (size 1.27 1.27))))
(number "10" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 48.26 -22.86 180) (length 5.08)
(name "RB6" (effects (font (size 1.27 1.27))))
(number "11" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 48.26 -20.32 180) (length 5.08)
(name "RB5" (effects (font (size 1.27 1.27))))
(number "12" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 48.26 -17.78 180) (length 5.08)
(name "RB4" (effects (font (size 1.27 1.27))))
(number "13" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 48.26 -15.24 180) (length 5.08)
(name "RC2" (effects (font (size 1.27 1.27))))
(number "14" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 48.26 -12.7 180) (length 5.08)
(name "RC1" (effects (font (size 1.27 1.27))))
(number "15" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 48.26 -10.16 180) (length 5.08)
(name "RC0" (effects (font (size 1.27 1.27))))
(number "16" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 48.26 -7.62 180) (length 5.08)
(name "RA2" (effects (font (size 1.27 1.27))))
(number "17" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 48.26 -5.08 180) (length 5.08)
(name "RA1/ICSPCLK" (effects (font (size 1.27 1.27))))
(number "18" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 48.26 -2.54 180) (length 5.08)
(name "RA0/ICSPDAT" (effects (font (size 1.27 1.27))))
(number "19" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -2.54 0) (length 5.08)
(name "RA5" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 48.26 0 180) (length 5.08)
(name "VSS" (effects (font (size 1.27 1.27))))
(number "20" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -5.08 0) (length 5.08)
(name "RA4" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -7.62 0) (length 5.08)
(name "~{MCLR}/VPP/RA3" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -10.16 0) (length 5.08)
(name "RC5" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -12.7 0) (length 5.08)
(name "RC4" (effects (font (size 1.27 1.27))))
(number "6" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -15.24 0) (length 5.08)
(name "RC3" (effects (font (size 1.27 1.27))))
(number "7" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -17.78 0) (length 5.08)
(name "RC6" (effects (font (size 1.27 1.27))))
(number "8" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -20.32 0) (length 5.08)
(name "RC7" (effects (font (size 1.27 1.27))))
(number "9" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "power:GND" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "#PWR" (at 0 -6.35 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (at 0 -3.81 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "global power" (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" (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))
(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" (at 0 -3.81 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "VCC" (at 0 3.81 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "global power" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Power symbol creates a global label with name \"VCC\"" (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))
(fill (type none))
)
(polyline
(pts
(xy 0 0)
(xy 0 2.54)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0 2.54)
(xy 0.762 1.27)
)
(stroke (width 0) (type default))
(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 113.03 87.63) (diameter 0) (color 0 0 0 0)
(uuid 253b2c5c-6c63-4629-ab40-1d7bf186f1b2)
)
(junction (at 200.66 96.52) (diameter 0) (color 0 0 0 0)
(uuid 30316c3e-cb0c-496f-a4dd-16252d0b9acf)
)
(junction (at 85.09 93.98) (diameter 0) (color 0 0 0 0)
(uuid 32110473-9012-43d1-b8ce-98db0583ea81)
)
(junction (at 119.38 80.01) (diameter 0) (color 0 0 0 0)
(uuid 5a4345e5-8af8-4d84-9c9e-3954875efd46)
)
(junction (at 113.03 80.01) (diameter 0) (color 0 0 0 0)
(uuid 5a520711-edb7-4835-b3b5-23fc54a9bc10)
)
(junction (at 85.09 92.71) (diameter 0) (color 0 0 0 0)
(uuid 8c9b9f5b-a8fc-49a3-9fd5-2f5e2cab6686)
)
(junction (at 116.84 100.33) (diameter 0) (color 0 0 0 0)
(uuid 9b074dc1-68a0-43c0-8cce-c2603cbcb8de)
)
(junction (at 189.23 87.63) (diameter 0) (color 0 0 0 0)
(uuid c5a45906-075f-4341-a88b-9b0b2a3f0ee5)
)
(junction (at 85.09 104.14) (diameter 0) (color 0 0 0 0)
(uuid d2bbdce1-a45c-42c9-a8b7-031f22a56533)
)
(junction (at 200.66 87.63) (diameter 0) (color 0 0 0 0)
(uuid f3d05d93-ab58-4c14-a060-38196c6d50f5)
)
(no_connect (at 120.65 85.09) (uuid 0d4067b8-50f3-48d1-abee-ea7f7a5bcc0d))
(no_connect (at 168.91 92.71) (uuid 25ba7aa4-1e60-4c20-9d72-926a6037d513))
(no_connect (at 120.65 90.17) (uuid 47771c49-052a-4238-b7c7-d1094ed55081))
(no_connect (at 120.65 102.87) (uuid 4d567fd6-6acd-49a4-a739-512c7f436e06))
(no_connect (at 198.12 116.84) (uuid 6e687cd2-f3c5-491f-978c-cbdbf0e74b99))
(no_connect (at 120.65 82.55) (uuid b8916d67-e74d-4405-b551-2f4f5ed650d4))
(no_connect (at 168.91 90.17) (uuid c0bf72b1-1731-4dbf-93c9-26e4ba843788))
(no_connect (at 168.91 102.87) (uuid e3258366-b17e-4478-852e-ab34447192b5))
(no_connect (at 168.91 95.25) (uuid f3b04d77-c710-46f2-8da0-def350994a99))
(no_connect (at 168.91 100.33) (uuid ff6cfb62-b491-45ba-912a-fd85311535d3))
(wire (pts (xy 119.38 77.47) (xy 119.38 80.01))
(stroke (width 0) (type default))
(uuid 050d5019-2a33-49f2-a60b-37f77e45f759)
)
(wire (pts (xy 116.84 100.33) (xy 120.65 100.33))
(stroke (width 0) (type default))
(uuid 0761b506-1fd4-4389-9054-7c29e68d01f8)
)
(wire (pts (xy 171.45 97.79) (xy 168.91 97.79))
(stroke (width 0) (type default))
(uuid 1162df75-f727-43cd-b98d-7f58d0378852)
)
(wire (pts (xy 85.09 104.14) (xy 90.17 104.14))
(stroke (width 0) (type default))
(uuid 18c82b1d-b0c0-4147-90f7-ea9c83afceb0)
)
(wire (pts (xy 165.1 114.3) (xy 172.72 114.3))
(stroke (width 0) (type default))
(uuid 1a17cc5d-50c3-4390-b530-13795b503a60)
)
(wire (pts (xy 116.84 113.03) (xy 116.84 114.3))
(stroke (width 0) (type default))
(uuid 214df415-a0ab-468f-b56d-b5becb9dd81c)
)
(wire (pts (xy 85.09 92.71) (xy 120.65 92.71))
(stroke (width 0) (type default))
(uuid 2ac85073-2c59-4eba-948a-e96cb13795dd)
)
(wire (pts (xy 114.3 95.25) (xy 120.65 95.25))
(stroke (width 0) (type default))
(uuid 2dd6e04d-6d49-4750-9339-cf5c5782a0a8)
)
(wire (pts (xy 85.09 80.01) (xy 85.09 83.82))
(stroke (width 0) (type default))
(uuid 30af2561-762f-4f3d-a8e3-afba45516381)
)
(wire (pts (xy 116.84 100.33) (xy 116.84 105.41))
(stroke (width 0) (type default))
(uuid 39302f85-efb4-4a4a-9fb5-5c7236a1a40f)
)
(wire (pts (xy 217.17 87.63) (xy 213.36 87.63))
(stroke (width 0) (type default))
(uuid 3a43fdd5-28b4-45f9-b3c8-ad484acdf20b)
)
(wire (pts (xy 80.01 93.98) (xy 85.09 93.98))
(stroke (width 0) (type default))
(uuid 3baed72b-3929-47a1-a613-018ad689ee43)
)
(wire (pts (xy 113.03 87.63) (xy 120.65 87.63))
(stroke (width 0) (type default))
(uuid 44edb74c-3904-4e7c-8f4e-7ac4c7f082c6)
)
(wire (pts (xy 119.38 67.31) (xy 119.38 69.85))
(stroke (width 0) (type default))
(uuid 45601f70-afab-4dd7-8e4a-b1f27b73bb0b)
)
(wire (pts (xy 119.38 80.01) (xy 120.65 80.01))
(stroke (width 0) (type default))
(uuid 55d0d341-72af-46b4-8cfd-98c457554e1c)
)
(wire (pts (xy 85.09 92.71) (xy 85.09 93.98))
(stroke (width 0) (type default))
(uuid 660092b4-858f-431b-b1e4-cbd3b0198fc8)
)
(wire (pts (xy 107.95 87.63) (xy 113.03 87.63))
(stroke (width 0) (type default))
(uuid 6746e4d4-3cde-4544-8764-224b3c973262)
)
(wire (pts (xy 171.45 82.55) (xy 168.91 82.55))
(stroke (width 0) (type default))
(uuid 744fe446-8563-4758-b809-9491ceeaf67a)
)
(wire (pts (xy 80.01 104.14) (xy 80.01 102.87))
(stroke (width 0) (type default))
(uuid 88b9522c-754e-446c-b708-a969083cde88)
)
(wire (pts (xy 171.45 85.09) (xy 168.91 85.09))
(stroke (width 0) (type default))
(uuid 8f6621dc-fe65-4b79-8da6-b786f89e3b70)
)
(wire (pts (xy 114.3 100.33) (xy 116.84 100.33))
(stroke (width 0) (type default))
(uuid 91f0fcd9-75a8-4821-9abe-79ec47a33a50)
)
(wire (pts (xy 200.66 95.25) (xy 200.66 96.52))
(stroke (width 0) (type default))
(uuid 97679e2d-c44a-4c7b-8bfa-8b826cecf21a)
)
(wire (pts (xy 90.17 93.98) (xy 90.17 95.25))
(stroke (width 0) (type default))
(uuid 9de353db-7341-4ee1-9534-92f39a960051)
)
(wire (pts (xy 113.03 80.01) (xy 119.38 80.01))
(stroke (width 0) (type default))
(uuid a10320ed-d32e-4b32-bc32-86564a62e5e5)
)
(wire (pts (xy 80.01 95.25) (xy 80.01 93.98))
(stroke (width 0) (type default))
(uuid aaa65ca1-e0e6-44a3-b567-3a66a5d2644d)
)
(wire (pts (xy 114.3 97.79) (xy 120.65 97.79))
(stroke (width 0) (type default))
(uuid b25cf3d6-a4aa-4ebc-b619-1c11fe48f2f2)
)
(wire (pts (xy 85.09 105.41) (xy 85.09 104.14))
(stroke (width 0) (type default))
(uuid b62deafd-2551-4309-ac09-34ab4c295dec)
)
(wire (pts (xy 168.91 87.63) (xy 189.23 87.63))
(stroke (width 0) (type default))
(uuid b6ef0210-1fcc-4681-8867-457ea6affe65)
)
(wire (pts (xy 181.61 80.01) (xy 168.91 80.01))
(stroke (width 0) (type default))
(uuid b8342d05-5df6-49d2-b7bf-ebc95b319929)
)
(wire (pts (xy 90.17 104.14) (xy 90.17 102.87))
(stroke (width 0) (type default))
(uuid bd633f0f-1bf8-43ba-91e4-694167bddd9b)
)
(wire (pts (xy 85.09 93.98) (xy 90.17 93.98))
(stroke (width 0) (type default))
(uuid cb751fdf-d984-43f1-9924-f7a9f808ed96)
)
(wire (pts (xy 124.46 67.31) (xy 119.38 67.31))
(stroke (width 0) (type default))
(uuid cc0ee07e-24be-48b6-891f-1c3ed760593f)
)
(wire (pts (xy 80.01 104.14) (xy 85.09 104.14))
(stroke (width 0) (type default))
(uuid cdb8bd24-09de-45a3-9adc-999c3301f731)
)
(wire (pts (xy 85.09 91.44) (xy 85.09 92.71))
(stroke (width 0) (type default))
(uuid cf79ea5d-baaf-4354-888b-dccb5e44856b)
)
(wire (pts (xy 204.47 111.76) (xy 198.12 111.76))
(stroke (width 0) (type default))
(uuid d42dec13-3cd3-431e-af5b-ba8c14dfc6fc)
)
(wire (pts (xy 107.95 80.01) (xy 113.03 80.01))
(stroke (width 0) (type default))
(uuid d847b685-1192-4c52-993e-54bac9637b7c)
)
(wire (pts (xy 189.23 87.63) (xy 200.66 87.63))
(stroke (width 0) (type default))
(uuid def83992-1445-4e3a-b24c-1b1cab6af8db)
)
(wire (pts (xy 189.23 96.52) (xy 189.23 95.25))
(stroke (width 0) (type default))
(uuid e886e2dc-d287-4803-a48d-afb0e52a7c38)
)
(wire (pts (xy 200.66 96.52) (xy 189.23 96.52))
(stroke (width 0) (type default))
(uuid edb94b1a-5fd6-4b6c-bd1c-6855757d9290)
)
(wire (pts (xy 205.74 87.63) (xy 200.66 87.63))
(stroke (width 0) (type default))
(uuid f167c6de-e887-464f-a20e-9c6b32703208)
)
(global_label "VDDHV" (shape input) (at 85.09 80.01 0) (fields_autoplaced)
(effects (font (size 1 1)) (justify left))
(uuid 0b6053be-53c6-4701-9ba5-b6269f3d0a16)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 92.1618 80.01 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "RA1" (shape input) (at 172.72 116.84 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 0deb76c6-b4b6-454e-9bb4-33143e20cc91)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 166.1667 116.84 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "RA3" (shape input) (at 107.95 87.63 180) (fields_autoplaced)
(effects (font (size 1 1)) (justify right))
(uuid 217e683e-4eeb-494f-8f7e-dbfdb3050419)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 102.8526 87.63 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "DRIVER_EN1" (shape input) (at 114.3 100.33 180) (fields_autoplaced)
(effects (font (size 1 1)) (justify right))
(uuid 6309fe89-70b8-4d72-834b-ca7b1de3e51d)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 103.0449 100.33 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "RA1" (shape input) (at 171.45 85.09 0) (fields_autoplaced)
(effects (font (size 1 1)) (justify left))
(uuid 768f924e-d5f2-4031-8e7e-c1f2fe013b6e)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 176.5474 85.09 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "RA0" (shape input) (at 171.45 82.55 0) (fields_autoplaced)
(effects (font (size 1 1)) (justify left))
(uuid 884640b5-7157-4064-8b89-c92c5d6b9c8b)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 176.5474 82.55 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "I_SENSE_ANB4" (shape input) (at 171.45 97.79 0) (fields_autoplaced)
(effects (font (size 1 1)) (justify left))
(uuid 886e7f01-d6d0-4d84-ac50-34a2baa822d6)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 184.4194 97.79 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "RA3" (shape input) (at 172.72 111.76 180) (fields_autoplaced)
(effects (font (size 1 1)) (justify right))
(uuid a9c42a29-0950-42b9-af8e-c43cd7a9a034)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 167.5602 111.76 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "DRIVER_EN2" (shape input) (at 114.3 97.79 180) (fields_autoplaced)
(effects (font (size 1 1)) (justify right))
(uuid bad97b32-b0fd-4988-9e0c-1b74a9222f44)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 103.0449 97.79 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "VDDHV" (shape input) (at 204.47 111.76 0) (fields_autoplaced)
(effects (font (size 1 1)) (justify left))
(uuid bd32464f-49ab-40b1-a497-9b4ad8928a6e)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 211.5821 111.76 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "VDDHV" (shape input) (at 107.95 80.01 180) (fields_autoplaced)
(effects (font (size 1 1)) (justify right))
(uuid ce1f03d1-5187-48f0-8939-af913f08a85b)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 100.8379 80.01 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "RA0" (shape input) (at 198.12 114.3 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid e661dbe9-50a6-4836-a43e-1313f0d5ebc8)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 204.6733 114.3 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "I_SENSE_C3IN1-" (shape input) (at 114.3 95.25 180) (fields_autoplaced)
(effects (font (size 1 1)) (justify right))
(uuid ed4ffce6-76bd-4991-b249-1973588a6580)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 99.521 95.25 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(symbol (lib_id "power:GND") (at 116.84 121.92 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 0170b5db-2ce9-42d4-aaf7-838fdb778840)
(property "Reference" "#PWR01" (at 116.84 128.27 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (at 116.84 127 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Footprint" "" (at 116.84 121.92 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 116.84 121.92 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid d17cdb33-b3a0-4971-84e9-758e28018bd7))
(instances
(project "SiC based Battery Disconnect"
(path "/525387b1-1528-4728-a616-6f57d2a34d69/a4af0f90-9694-45a8-86a1-2f9082dd6b02"
(reference "#PWR01") (unit 1)
)
(path "/525387b1-1528-4728-a616-6f57d2a34d69/925d75c4-de6e-4540-9e02-6341c2b379d1"
(reference "#PWR03") (unit 1)
)
(path "/525387b1-1528-4728-a616-6f57d2a34d69/08971e4e-e8fe-4bf4-848e-6b7bf460c909"
(reference "#PWR018") (unit 1)
)
)
)
)
(symbol (lib_id "490107670612:490107670612") (at 185.42 114.3 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 0aae9721-33b3-4269-8424-5a21c3c4867d)
(property "Reference" "J5" (at 185.42 104.14 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "490107670612" (at 185.42 106.68 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "490107670612:WURTH_490107670612" (at 185.42 114.3 0)
(effects (font (size 1.27 1.27)) (justify bottom) hide)
)
(property "Datasheet" "" (at 185.42 114.3 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "PARTREV" "002.003" (at 185.42 114.3 0)
(effects (font (size 1.27 1.27)) (justify bottom) hide)
)
(property "STANDARD" "Manufacturer Recommendations" (at 185.42 114.3 0)
(effects (font (size 1.27 1.27)) (justify bottom) hide)
)
(property "MAXIMUM_PACKAGE_HEIGHT" "10.45 mm" (at 185.42 114.3 0)
(effects (font (size 1.27 1.27)) (justify bottom) hide)
)
(property "MANUFACTURER" "Würth Elektronik" (at 185.42 114.3 0)
(effects (font (size 1.27 1.27)) (justify bottom) hide)
)
(pin "1" (uuid c6d48309-4304-40a9-baac-cac02fb72969))
(pin "2" (uuid 7c5f8335-eef0-49fc-aae2-ff115ed8b7ea))
(pin "3" (uuid 1bf4ab0e-83f5-4240-8716-8d583f1df689))
(pin "4" (uuid 055fc842-6752-41bf-98e0-dd669fc90a99))
(pin "5" (uuid 5f074f57-505c-4f9a-8878-e90044ca8cda))
(pin "6" (uuid b18a1494-b6d8-4068-9231-eb3901b3f00e))
(instances
(project "SiC based Battery Disconnect"
(path "/525387b1-1528-4728-a616-6f57d2a34d69/925d75c4-de6e-4540-9e02-6341c2b379d1"
(reference "J5") (unit 1)
)
(path "/525387b1-1528-4728-a616-6f57d2a34d69/08971e4e-e8fe-4bf4-848e-6b7bf460c909"
(reference "J6") (unit 1)
)
)
)
)
(symbol (lib_id "power:VCC") (at 217.17 87.63 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 0c5d3b96-6d0b-495c-a068-71889175cc1a)
(property "Reference" "#PWR020" (at 217.17 91.44 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "VCC" (at 217.17 82.55 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 217.17 87.63 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 217.17 87.63 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid c98764d2-0277-42f4-8738-17148ae145fe))
(instances
(project "SiC based Battery Disconnect"
(path "/525387b1-1528-4728-a616-6f57d2a34d69/08971e4e-e8fe-4bf4-848e-6b7bf460c909"
(reference "#PWR020") (unit 1)
)
)
)
)
(symbol (lib_id "Device:R") (at 113.03 83.82 180) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 1110d00d-a55f-4ce3-a876-e0f5f82a714c)
(property "Reference" "R5" (at 115.57 82.55 0)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Value" "10k" (at 115.57 85.09 0)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Footprint" "Resistor_SMD:R_0805_2012Metric" (at 114.808 83.82 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 113.03 83.82 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 1ccdd844-56f7-45b4-a31f-23b2294be18a))
(pin "2" (uuid d971f0eb-1939-4567-b9e4-9ac6223deff7))
(instances
(project "SiC based Battery Disconnect"
(path "/525387b1-1528-4728-a616-6f57d2a34d69/08971e4e-e8fe-4bf4-848e-6b7bf460c909"
(reference "R5") (unit 1)
)
)
)
)
(symbol (lib_id "power:GND") (at 165.1 114.3 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 13ed2772-c67a-46f4-bbd3-12e5217f00a2)
(property "Reference" "#PWR01" (at 165.1 120.65 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (at 165.1 119.38 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Footprint" "" (at 165.1 114.3 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 165.1 114.3 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 14a11685-de03-4311-b397-1ea0e50bc744))
(instances
(project "SiC based Battery Disconnect"
(path "/525387b1-1528-4728-a616-6f57d2a34d69/a4af0f90-9694-45a8-86a1-2f9082dd6b02"
(reference "#PWR01") (unit 1)
)
(path "/525387b1-1528-4728-a616-6f57d2a34d69/925d75c4-de6e-4540-9e02-6341c2b379d1"
(reference "#PWR03") (unit 1)
)
(path "/525387b1-1528-4728-a616-6f57d2a34d69/08971e4e-e8fe-4bf4-848e-6b7bf460c909"
(reference "#PWR010") (unit 1)
)
)
)
)
(symbol (lib_id "PIC16F15345T-E_SSVAO:PIC16F15345T-E_SSVAO") (at 120.65 80.01 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 5274162b-c890-444d-9948-5a3e9be02897)
(property "Reference" "IC2" (at 144.78 72.39 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "PIC16F15345-I/SO" (at 144.78 74.93 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "PIC16F15345-ISO:SOIC127P1030X265-20N" (at 165.1 174.93 0)
(effects (font (size 1.27 1.27)) (justify left top) hide)
)
(property "Datasheet" "" (at 165.1 274.93 0)
(effects (font (size 1.27 1.27)) (justify left top) hide)
)
(property "Height" "2" (at 165.1 474.93 0)
(effects (font (size 1.27 1.27)) (justify left top) hide)
)
(property "Manufacturer_Name" "Microchip" (at 165.1 574.93 0)
(effects (font (size 1.27 1.27)) (justify left top) hide)
)
(property "Manufacturer_Part_Number" "PIC16F15345T-E/SSVAO" (at 165.1 674.93 0)
(effects (font (size 1.27 1.27)) (justify left top) hide)
)
(property "Mouser Part Number" "" (at 165.1 774.93 0)
(effects (font (size 1.27 1.27)) (justify left top) hide)
)
(property "Mouser Price/Stock" "" (at 165.1 874.93 0)
(effects (font (size 1.27 1.27)) (justify left top) hide)
)
(property "Arrow Part Number" "" (at 165.1 974.93 0)
(effects (font (size 1.27 1.27)) (justify left top) hide)
)
(property "Arrow Price/Stock" "" (at 165.1 1074.93 0)
(effects (font (size 1.27 1.27)) (justify left top) hide)
)
(pin "1" (uuid 001e90b4-15b3-4d8f-8138-964585a08b4d))
(pin "10" (uuid ef668943-78ee-4e82-a6e5-72fd517cc8ab))
(pin "11" (uuid 2e67c87d-55af-4f02-a870-61dae1656c12))
(pin "12" (uuid 49c48a01-fa56-4528-beeb-eea024cade0c))
(pin "13" (uuid 49925b7c-72d2-457d-bbae-ef9daeacd1a4))
(pin "14" (uuid 6d17d104-c78e-48c6-83a3-cfa3c7a3e36b))
(pin "15" (uuid 38a40751-00e1-4493-95a3-5511fe274739))
(pin "16" (uuid 7cbf461b-0e11-4d19-ad1d-93d84000dc45))
(pin "17" (uuid 747dfb3c-f48f-4a3c-8264-42fe9566599f))
(pin "18" (uuid 5c59ae4e-8ec7-49cc-8062-4c3d97bff3fd))
(pin "19" (uuid 1779fff2-086e-418d-9421-e06cd04f8a9f))
(pin "2" (uuid 28881765-fa9d-47a4-b33e-7ea402c00439))
(pin "20" (uuid f98ecfea-ec17-40f7-b553-1774aa2f57fd))
(pin "3" (uuid 460aaa40-96e4-4d02-962f-158edcb824a6))
(pin "4" (uuid f258711b-3923-4559-b502-0ba9fde9cf87))
(pin "5" (uuid e57df744-01ef-418b-b573-4f834572daf9))
(pin "6" (uuid 45a3f918-ecc8-4e95-acba-65d81865a645))
(pin "7" (uuid afc454b4-b056-4130-b3b5-33f36a804770))
(pin "8" (uuid 67c4d945-f2a4-4414-ba6d-0591d33c9cc8))
(pin "9" (uuid 0195473e-6f70-44f9-8a97-210c2d14c8d5))
(instances
(project "SiC based Battery Disconnect"
(path "/525387b1-1528-4728-a616-6f57d2a34d69/08971e4e-e8fe-4bf4-848e-6b7bf460c909"
(reference "IC2") (unit 1)
)
)
)
)
(symbol (lib_id "power:GND") (at 124.46 67.31 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 57fce58c-3493-4d55-9d37-81d216e568b4)
(property "Reference" "#PWR01" (at 124.46 73.66 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (at 124.46 72.39 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Footprint" "" (at 124.46 67.31 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 124.46 67.31 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 7dd06519-7c8f-463b-92bc-11797365ff56))
(instances
(project "SiC based Battery Disconnect"
(path "/525387b1-1528-4728-a616-6f57d2a34d69/a4af0f90-9694-45a8-86a1-2f9082dd6b02"
(reference "#PWR01") (unit 1)
)
(path "/525387b1-1528-4728-a616-6f57d2a34d69/925d75c4-de6e-4540-9e02-6341c2b379d1"
(reference "#PWR03") (unit 1)
)
(path "/525387b1-1528-4728-a616-6f57d2a34d69/08971e4e-e8fe-4bf4-848e-6b7bf460c909"
(reference "#PWR011") (unit 1)
)
)