-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinverter_phase.kicad_sch
2939 lines (2882 loc) · 107 KB
/
inverter_phase.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 618db26a-427a-4010-8e3b-04aedb0de22c)
(paper "A4")
(title_block
(title "Inverter - Single Phase")
(date "2023-12-27")
(rev "1.0")
)
(lib_symbols
(symbol "Amplifier_Current:INA180B2" (in_bom yes) (on_board yes)
(property "Reference" "U" (at 6.35 -5.08 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "" (at 0 0 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)
)
(symbol "INA180B2_0_1"
(polyline
(pts
(xy 7.62 0)
(xy -2.54 5.08)
(xy -2.54 -5.08)
(xy 7.62 0)
)
(stroke (width 0.254) (type default))
(fill (type background))
)
)
(symbol "INA180B2_1_1"
(pin input line (at -5.08 2.54 0) (length 2.54)
(name "+" (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 3.81)
(name "GND" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin input line (at -5.08 -2.54 0) (length 2.54)
(name "-" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin output line (at 10.16 0 180) (length 2.54)
(name "~" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 0 7.62 270) (length 3.81)
(name "V+" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Connector:TestPoint" (pin_numbers hide) (pin_names (offset 0.762) hide) (in_bom yes) (on_board yes)
(property "Reference" "TP" (at 0 6.858 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "TestPoint" (at 0 5.08 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 5.08 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 5.08 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "test point tp" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "test point" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "Pin* Test*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "TestPoint_0_1"
(circle (center 0 3.302) (radius 0.762)
(stroke (width 0) (type default))
(fill (type none))
)
)
(symbol "TestPoint_1_1"
(pin passive line (at 0 0 90) (length 2.54)
(name "1" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Device:C_Small" (pin_numbers hide) (pin_names (offset 0.254) hide) (in_bom yes) (on_board yes)
(property "Reference" "C" (at 0.254 1.778 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "C_Small" (at 0.254 -2.032 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(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" "capacitor cap" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Unpolarized capacitor, small symbol" (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_Small_0_1"
(polyline
(pts
(xy -1.524 -0.508)
(xy 1.524 -0.508)
)
(stroke (width 0.3302) (type default))
(fill (type none))
)
(polyline
(pts
(xy -1.524 0.508)
(xy 1.524 0.508)
)
(stroke (width 0.3048) (type default))
(fill (type none))
)
)
(symbol "C_Small_1_1"
(pin passive line (at 0 2.54 270) (length 2.032)
(name "~" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -2.54 90) (length 2.032)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Device:D_Schottky_Small_Filled" (pin_numbers hide) (pin_names (offset 0.254) hide) (in_bom yes) (on_board yes)
(property "Reference" "D" (at -1.27 2.032 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "D_Schottky_Small_Filled" (at -7.112 -2.032 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (at 0 0 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 0 0 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "diode Schottky" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Schottky diode, small symbol, filled shape" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "TO-???* *_Diode_* *SingleDiode* D_*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "D_Schottky_Small_Filled_0_1"
(polyline
(pts
(xy -0.762 0)
(xy 0.762 0)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0.762 -1.016)
(xy -0.762 0)
(xy 0.762 1.016)
(xy 0.762 -1.016)
)
(stroke (width 0.254) (type default))
(fill (type outline))
)
(polyline
(pts
(xy -1.27 0.762)
(xy -1.27 1.016)
(xy -0.762 1.016)
(xy -0.762 -1.016)
(xy -0.254 -1.016)
(xy -0.254 -0.762)
)
(stroke (width 0.254) (type default))
(fill (type none))
)
)
(symbol "D_Schottky_Small_Filled_1_1"
(pin passive line (at -2.54 0 0) (length 1.778)
(name "K" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 2.54 0 180) (length 1.778)
(name "A" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Device:R_Small" (pin_numbers hide) (pin_names (offset 0.254) hide) (in_bom yes) (on_board yes)
(property "Reference" "R" (at 0.762 0.508 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "R_Small" (at 0.762 -1.016 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(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" "R resistor" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Resistor, small symbol" (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_Small_0_1"
(rectangle (start -0.762 1.778) (end 0.762 -1.778)
(stroke (width 0.2032) (type default))
(fill (type none))
)
)
(symbol "R_Small_1_1"
(pin passive line (at 0 2.54 270) (length 0.762)
(name "~" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -2.54 90) (length 0.762)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Driver_FET:IR2181" (in_bom yes) (on_board yes)
(property "Reference" "U" (at 1.27 13.335 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "IR2181" (at 1.27 11.43 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (at 0 0 0)
(effects (font (size 1.27 1.27) italic) hide)
)
(property "Datasheet" "https://www.infineon.com/dgdl/ir2181.pdf?fileId=5546d462533600a4015355c93cdd16ce" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "Gate Driver" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "High and Low Side Driver, 600V, 1.4/1.8A, PDIP-8/SOIC-8" (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*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "IR2181_0_1"
(rectangle (start -5.08 -10.16) (end 5.08 10.16)
(stroke (width 0.254) (type default))
(fill (type background))
)
)
(symbol "IR2181_1_1"
(pin input line (at -7.62 0 0) (length 2.54)
(name "HIN" (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 "LIN" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 0 -12.7 90) (length 2.54)
(name "COM" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin output line (at 7.62 -7.62 180) (length 2.54)
(name "LO" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 0 12.7 270) (length 2.54)
(name "VCC" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 7.62 -5.08 180) (length 2.54)
(name "VS" (effects (font (size 1.27 1.27))))
(number "6" (effects (font (size 1.27 1.27))))
)
(pin output line (at 7.62 5.08 180) (length 2.54)
(name "HO" (effects (font (size 1.27 1.27))))
(number "7" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 7.62 7.62 180) (length 2.54)
(name "VB" (effects (font (size 1.27 1.27))))
(number "8" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Mechanical:MountingHole_Pad" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
(property "Reference" "H" (at 0 6.35 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "MountingHole_Pad" (at 0 4.445 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" "mounting hole" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Mounting Hole with connection" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "MountingHole*Pad*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "MountingHole_Pad_0_1"
(circle (center 0 1.27) (radius 1.27)
(stroke (width 1.27) (type default))
(fill (type none))
)
)
(symbol "MountingHole_Pad_1_1"
(pin input line (at 0 -2.54 90) (length 2.54)
(name "1" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Transistor_FET:BSC072N08NS5" (pin_names hide) (in_bom yes) (on_board yes)
(property "Reference" "Q" (at 5.08 1.905 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "BSC072N08NS5" (at 5.08 0 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Package_TO_SOT_SMD:TDSON-8-1" (at 5.08 -1.905 0)
(effects (font (size 1.27 1.27) italic) (justify left) hide)
)
(property "Datasheet" "http://www.infineon.com/dgdl/Infineon-BSC072N08NS5-DS-v02_00-EN.pdf?fileId=5546d4624ad04ef9014ae3d8e8192c7c" (at 0 0 90)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "ki_keywords" "OptiMOS Power MOSFET N-MOS" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "74A Id, 80V Vds, OptiMOS N-Channel Power MOSFET, 7.2mOhm Ron, Qg (typ) 24.0nC, PG-TDSON-8" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "TDSON*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "BSC072N08NS5_0_1"
(polyline
(pts
(xy 0.254 0)
(xy -2.54 0)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0.254 1.905)
(xy 0.254 -1.905)
)
(stroke (width 0.254) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0.762 -1.27)
(xy 0.762 -2.286)
)
(stroke (width 0.254) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0.762 0.508)
(xy 0.762 -0.508)
)
(stroke (width 0.254) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0.762 2.286)
(xy 0.762 1.27)
)
(stroke (width 0.254) (type default))
(fill (type none))
)
(polyline
(pts
(xy 2.54 2.54)
(xy 2.54 1.778)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 2.54 -2.54)
(xy 2.54 0)
(xy 0.762 0)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0.762 -1.778)
(xy 3.302 -1.778)
(xy 3.302 1.778)
(xy 0.762 1.778)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 1.016 0)
(xy 2.032 0.381)
(xy 2.032 -0.381)
(xy 1.016 0)
)
(stroke (width 0) (type default))
(fill (type outline))
)
(polyline
(pts
(xy 2.794 0.508)
(xy 2.921 0.381)
(xy 3.683 0.381)
(xy 3.81 0.254)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 3.302 0.381)
(xy 2.921 -0.254)
(xy 3.683 -0.254)
(xy 3.302 0.381)
)
(stroke (width 0) (type default))
(fill (type none))
)
(circle (center 1.651 0) (radius 2.794)
(stroke (width 0.254) (type default))
(fill (type none))
)
(circle (center 2.54 -1.778) (radius 0.254)
(stroke (width 0) (type default))
(fill (type outline))
)
(circle (center 2.54 1.778) (radius 0.254)
(stroke (width 0) (type default))
(fill (type outline))
)
)
(symbol "BSC072N08NS5_1_1"
(pin passive line (at 2.54 -5.08 90) (length 2.54)
(name "S" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 2.54 -5.08 90) (length 2.54) hide
(name "S" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 2.54 -5.08 90) (length 2.54) hide
(name "S" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 0 0) (length 2.54)
(name "G" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 2.54 5.08 270) (length 2.54)
(name "D" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "power:+12V" (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" "+12V" (at 0 3.556 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" "power-flag" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Power symbol creates a global label with name \"+12V\"" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "+12V_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 "+12V_1_1"
(pin power_in line (at 0 0 90) (length 0) hide
(name "+12V" (effects (font (size 1.27 1.27))))
(number "1" (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" (at 0 -3.81 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "+3.3V" (at 0 3.556 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" "power-flag" (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\"" (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))
(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 "+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:+3.3VA" (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" "+3.3VA" (at 0 3.556 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" "power-flag" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Power symbol creates a global label with name \"+3.3VA\"" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "+3.3VA_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 "+3.3VA_1_1"
(pin power_in line (at 0 0 90) (length 0) hide
(name "+3.3VA" (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" (at 0 -3.81 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "+BATT" (at 0 3.556 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" "power-flag battery" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Power symbol creates a global label with name \"+BATT\"" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "+BATT_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 "+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" (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))))
)
)
)
)
(junction (at 91.44 89.535) (diameter 0) (color 0 0 0 0)
(uuid 045fa5ca-6c40-419a-bb95-d42371751512)
)
(junction (at 231.14 142.875) (diameter 0) (color 0 0 0 0)
(uuid 0a9d67d4-e2a2-4f57-af7b-5aac5063e614)
)
(junction (at 197.485 118.11) (diameter 0) (color 0 0 0 0)
(uuid 2f562685-44fd-4fde-9789-7a2792de7ba1)
)
(junction (at 208.28 70.485) (diameter 0) (color 0 0 0 0)
(uuid 387e2fd2-451c-4ad8-be6d-c01d446f4407)
)
(junction (at 205.105 103.505) (diameter 0) (color 0 0 0 0)
(uuid 3985eda5-05ab-47a4-8ba7-38d1e9ee5e4b)
)
(junction (at 140.335 76.835) (diameter 0) (color 0 0 0 0)
(uuid 5779dd97-968a-47ff-8675-0828c5dd97e7)
)
(junction (at 81.915 81.915) (diameter 0) (color 0 0 0 0)
(uuid 67cf4061-b4cf-4d1d-9fa4-61ba7fe2b873)
)
(junction (at 88.9 59.69) (diameter 0) (color 0 0 0 0)
(uuid 692ed665-86bb-479b-a739-9c354a98be56)
)
(junction (at 91.44 100.33) (diameter 0) (color 0 0 0 0)
(uuid 7750b6b4-9cb8-4118-b43f-e86409ec23f3)
)
(junction (at 114.935 59.69) (diameter 0) (color 0 0 0 0)
(uuid 78a84769-5eb8-4c96-946b-13cdd28a990e)
)
(junction (at 203.2 70.485) (diameter 0) (color 0 0 0 0)
(uuid 7ab0c6ee-c8fd-4ee8-83c3-43803a23e720)
)
(junction (at 231.14 70.485) (diameter 0) (color 0 0 0 0)
(uuid 86e94daa-9d6c-4f7b-89f6-16376d19af46)
)
(junction (at 231.14 113.665) (diameter 0) (color 0 0 0 0)
(uuid 880ca620-1d54-4d57-b064-952b69757ffe)
)
(junction (at 219.71 103.505) (diameter 0) (color 0 0 0 0)
(uuid 940d2ed6-bcb5-4677-ab7d-0746aedb1830)
)
(junction (at 231.14 36.83) (diameter 0) (color 0 0 0 0)
(uuid aadcc888-4bae-4682-82b5-3dd4dbdca59c)
)
(junction (at 231.14 83.82) (diameter 0) (color 0 0 0 0)
(uuid c72dbd2a-3d71-42ed-b85a-a594debdf5d0)
)
(junction (at 107.95 133.35) (diameter 0) (color 0 0 0 0)
(uuid c7a0c81a-62a3-4e96-b429-3800ca37c5b5)
)
(junction (at 231.14 133.985) (diameter 0) (color 0 0 0 0)
(uuid c9c0d543-2cfd-4d94-98a3-ebb849326a36)
)
(junction (at 194.31 70.485) (diameter 0) (color 0 0 0 0)
(uuid cbbdd5ff-f298-4710-a859-85e5ef3652f0)
)
(junction (at 204.47 45.72) (diameter 0) (color 0 0 0 0)
(uuid dc342cf1-7a75-4eec-8b81-60a47fb8b87e)
)
(junction (at 194.945 103.505) (diameter 0) (color 0 0 0 0)
(uuid edc190d4-db67-4e05-bf00-a4ee11f52a55)
)
(junction (at 194.31 80.645) (diameter 0) (color 0 0 0 0)
(uuid f1a9ae39-6aad-47de-9ff9-a60c9901609f)
)
(junction (at 102.235 59.69) (diameter 0) (color 0 0 0 0)
(uuid f83a08e9-07fb-47b6-856a-76631f1b89d3)
)
(junction (at 194.31 45.72) (diameter 0) (color 0 0 0 0)
(uuid f83f4c46-42a0-49f6-8dd8-468cf6a47155)
)
(wire (pts (xy 231.14 50.8) (xy 231.14 70.485))
(stroke (width 0) (type default))
(uuid 01dcc816-3250-427e-bb30-4e23b504d740)
)
(wire (pts (xy 182.88 45.72) (xy 194.31 45.72))
(stroke (width 0) (type default))
(uuid 0390ed32-34fc-4531-b8bc-2b30fa60927d)
)
(wire (pts (xy 114.935 59.69) (xy 125.73 59.69))
(stroke (width 0) (type default))
(uuid 04116957-5f89-4e88-a0a4-8cfc3879d1f0)
)
(wire (pts (xy 119.38 133.35) (xy 130.81 133.35))
(stroke (width 0) (type default))
(uuid 0494389f-a870-4cf3-8e4b-161b5618823e)
)
(wire (pts (xy 201.93 45.72) (xy 204.47 45.72))
(stroke (width 0) (type default))
(uuid 058ee31d-9479-4912-914c-8a66b8746328)
)
(wire (pts (xy 231.14 140.97) (xy 231.14 142.875))
(stroke (width 0) (type default))
(uuid 065ead05-9849-4633-9756-4fa06438effe)
)
(wire (pts (xy 202.565 103.505) (xy 205.105 103.505))
(stroke (width 0) (type default))
(uuid 08fdc6f4-7bd7-485d-b3be-424db71e2539)
)
(wire (pts (xy 225.425 133.985) (xy 231.14 133.985))
(stroke (width 0) (type default))
(uuid 0aea7e8b-b843-42ea-bd62-6899da2f86ea)
)
(wire (pts (xy 231.14 36.83) (xy 231.14 40.64))
(stroke (width 0) (type default))
(uuid 0cea5dbf-5e1d-4ed2-aae6-8f83a2339d41)
)
(wire (pts (xy 194.31 70.485) (xy 203.2 70.485))
(stroke (width 0) (type default))
(uuid 14a51e10-6050-4bf5-aa1d-f20baa35208e)
)
(wire (pts (xy 67.945 89.535) (xy 73.025 89.535))
(stroke (width 0) (type default))
(uuid 189c7e59-4e72-416a-8194-323464fb2dc4)
)
(wire (pts (xy 219.71 103.505) (xy 219.71 107.95))
(stroke (width 0) (type default))
(uuid 1d3f6047-ca23-44a1-9280-b169ae627251)
)
(wire (pts (xy 208.28 58.42) (xy 208.28 60.96))
(stroke (width 0) (type default))
(uuid 1df3e52f-9421-47a2-8bdb-8b1c10a1f629)
)
(wire (pts (xy 197.485 118.11) (xy 210.185 118.11))
(stroke (width 0) (type default))
(uuid 237aa5ac-c88a-4570-86b7-5ec594d33e35)
)
(wire (pts (xy 182.245 103.505) (xy 194.945 103.505))
(stroke (width 0) (type default))
(uuid 253befbf-ffa1-4ed9-b1c6-f006d0ffc6fb)
)
(wire (pts (xy 257.175 84.455) (xy 257.175 36.83))
(stroke (width 0) (type default))
(uuid 277c86c2-beed-497a-9d02-83019afda9ef)
)
(wire (pts (xy 205.105 103.505) (xy 219.71 103.505))
(stroke (width 0) (type default))
(uuid 299ef0e3-cc8b-45f9-92e3-2e4b645e8178)
)
(wire (pts (xy 225.425 140.97) (xy 225.425 142.875))
(stroke (width 0) (type default))
(uuid 3429f1dc-0ac7-4365-ab24-0f8fc692a5bd)
)
(wire (pts (xy 78.105 81.915) (xy 81.915 81.915))
(stroke (width 0) (type default))
(uuid 348278b4-aa72-4f5a-a3b7-df2a46796294)
)
(wire (pts (xy 140.335 89.535) (xy 140.335 85.09))
(stroke (width 0) (type default))
(uuid 351c20ac-59c3-4faa-940f-2016068eb49e)
)
(wire (pts (xy 88.9 67.31) (xy 88.9 69.85))
(stroke (width 0) (type default))
(uuid 35adacc0-ac53-4062-8a77-7d3921aa96e5)
)
(wire (pts (xy 81.915 81.915) (xy 94.615 81.915))
(stroke (width 0) (type default))
(uuid 3642572f-b3be-4cfa-9bbe-6aaa53c86fc4)
)
(wire (pts (xy 257.175 89.535) (xy 257.175 113.665))
(stroke (width 0) (type default))
(uuid 381b509f-20d1-4506-b4c2-361cbf20b8c0)
)
(wire (pts (xy 194.945 103.505) (xy 197.485 103.505))
(stroke (width 0) (type default))
(uuid 39108564-1e77-4e9e-a45b-aaf6534e363b)
)
(wire (pts (xy 197.485 118.11) (xy 197.485 116.205))
(stroke (width 0) (type default))
(uuid 3992ee0d-a5b5-4861-ab47-61ad5bc0b382)
)
(wire (pts (xy 197.485 120.65) (xy 197.485 118.11))
(stroke (width 0) (type default))
(uuid 3c9d168a-f548-41a0-a24a-128d678ec29e)
)
(wire (pts (xy 204.47 40.005) (xy 204.47 45.72))
(stroke (width 0) (type default))
(uuid 3ca2677f-9ea7-4aca-8180-fdbff2720379)
)
(wire (pts (xy 194.31 80.645) (xy 194.31 82.55))
(stroke (width 0) (type default))
(uuid 41898a54-ae79-447e-93d1-dcf16de930d1)
)
(wire (pts (xy 204.47 45.72) (xy 223.52 45.72))
(stroke (width 0) (type default))
(uuid 41d61c05-b1cf-4f1d-9575-9faee891905a)
)
(wire (pts (xy 81.915 97.79) (xy 81.915 100.33))
(stroke (width 0) (type default))
(uuid 4201fc08-533f-46c0-a1f2-8f4d6cfeef21)
)
(wire (pts (xy 197.485 125.73) (xy 197.485 128.27))
(stroke (width 0) (type default))
(uuid 42332c11-651b-4cc6-9dbb-a36871cbf186)
)
(wire (pts (xy 40.64 130.175) (xy 45.72 130.175))
(stroke (width 0) (type default))
(uuid 42336198-4165-4d97-96be-1ba906154658)
)
(wire (pts (xy 217.805 70.485) (xy 231.14 70.485))
(stroke (width 0) (type default))
(uuid 464f557e-1d90-4d9c-a8a0-c12a32e36ae8)
)
(wire (pts (xy 122.555 76.835) (xy 140.335 76.835))
(stroke (width 0) (type default))
(uuid 47a62bc4-0ab5-48f5-b3b6-6ab6d3df54be)
)
(wire (pts (xy 81.915 100.33) (xy 91.44 100.33))
(stroke (width 0) (type default))
(uuid 4956ec0e-f899-4d08-af00-c2ccf4fd03b2)
)
(wire (pts (xy 201.93 40.005) (xy 204.47 40.005))
(stroke (width 0) (type default))
(uuid 4a58bc46-7a35-494c-b16a-0661a2dee938)
)
(wire (pts (xy 231.14 83.82) (xy 237.49 83.82))
(stroke (width 0) (type default))
(uuid 4c5f2389-2814-4d33-916a-49b945d1fb3d)
)
(wire (pts (xy 102.235 59.69) (xy 114.935 59.69))
(stroke (width 0) (type default))
(uuid 4ecf2103-98fd-4fa8-80e3-7bf32e95b098)
)
(wire (pts (xy 225.425 142.875) (xy 231.14 142.875))
(stroke (width 0) (type default))
(uuid 50d7d613-f000-4fcd-9dba-fe5f681f2d6f)
)
(wire (pts (xy 78.105 89.535) (xy 91.44 89.535))
(stroke (width 0) (type default))
(uuid 555a44ab-b9a0-4544-8672-2076f525cb12)
)
(wire (pts (xy 88.9 54.61) (xy 88.9 59.69))
(stroke (width 0) (type default))
(uuid 5dfe9859-1fff-44f9-8990-6e1fe81f148e)
)
(wire (pts (xy 197.485 97.79) (xy 194.945 97.79))
(stroke (width 0) (type default))
(uuid 5f78ed16-66fd-481d-b13e-870e522caf57)
)
(wire (pts (xy 257.175 113.665) (xy 231.14 113.665))
(stroke (width 0) (type default))
(uuid 5ff7d7c7-5eef-47cf-b80f-541dfc8c2e43)
)