-
Notifications
You must be signed in to change notification settings - Fork 0
/
v1.kicad_sch
1631 lines (1597 loc) · 57 KB
/
v1.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 70fd842f-e57e-498f-b935-1791177e9c4c)
(paper "A4")
(lib_symbols
(symbol "Connector:Screw_Terminal_01x04" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
(property "Reference" "J" (at 0 5.08 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "Screw_Terminal_01x04" (at 0 -7.62 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" "screw terminal" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Generic screw terminal, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "TerminalBlock*:*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "Screw_Terminal_01x04_1_1"
(rectangle (start -1.27 3.81) (end 1.27 -6.35)
(stroke (width 0.254) (type default))
(fill (type background))
)
(circle (center 0 -5.08) (radius 0.635)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(circle (center 0 -2.54) (radius 0.635)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(polyline
(pts
(xy -0.5334 -4.7498)
(xy 0.3302 -5.588)
)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(polyline
(pts
(xy -0.5334 -2.2098)
(xy 0.3302 -3.048)
)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(polyline
(pts
(xy -0.5334 0.3302)
(xy 0.3302 -0.508)
)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(polyline
(pts
(xy -0.5334 2.8702)
(xy 0.3302 2.032)
)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(polyline
(pts
(xy -0.3556 -4.572)
(xy 0.508 -5.4102)
)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(polyline
(pts
(xy -0.3556 -2.032)
(xy 0.508 -2.8702)
)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(polyline
(pts
(xy -0.3556 0.508)
(xy 0.508 -0.3302)
)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(polyline
(pts
(xy -0.3556 3.048)
(xy 0.508 2.2098)
)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(circle (center 0 0) (radius 0.635)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(circle (center 0 2.54) (radius 0.635)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(pin passive line (at -5.08 2.54 0) (length 3.81)
(name "Pin_1" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 0 0) (length 3.81)
(name "Pin_2" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 -2.54 0) (length 3.81)
(name "Pin_3" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 -5.08 0) (length 3.81)
(name "Pin_4" (effects (font (size 1.27 1.27))))
(number "4" (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 "User:ADS1115" (in_bom yes) (on_board yes)
(property "Reference" "M" (at -10.16 8.89 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 "ADS1115_0_1"
(rectangle (start -11.43 7.62) (end 10.16 -8.89)
(stroke (width 0) (type default))
(fill (type none))
)
)
(symbol "ADS1115_1_1"
(pin power_in line (at 0 10.16 270) (length 2.54)
(name "VDD" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin input line (at 12.7 -6.35 180) (length 2.54)
(name "A3" (effects (font (size 1.27 1.27))))
(number "10" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 0 -11.43 90) (length 2.54)
(name "GND" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at -13.97 5.08 0) (length 2.54)
(name "SCL" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -13.97 1.27 0) (length 2.54)
(name "SDA" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -13.97 -2.54 0) (length 2.54)
(name "ADDR" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -13.97 -6.35 0) (length 2.54)
(name "ALERT" (effects (font (size 1.27 1.27))))
(number "6" (effects (font (size 1.27 1.27))))
)
(pin input line (at 12.7 5.08 180) (length 2.54)
(name "A0" (effects (font (size 1.27 1.27))))
(number "7" (effects (font (size 1.27 1.27))))
)
(pin input line (at 12.7 1.27 180) (length 2.54)
(name "A1" (effects (font (size 1.27 1.27))))
(number "8" (effects (font (size 1.27 1.27))))
)
(pin input line (at 12.7 -2.54 180) (length 2.54)
(name "A2" (effects (font (size 1.27 1.27))))
(number "9" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "User:AHT20 Humidity Module" (in_bom yes) (on_board yes)
(property "Reference" "U" (at 0 3.81 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "AHT20 Humidity Module" (at 0 1.27 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "User:AHT20 Humidity Module" (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 "AHT20 Humidity Module_0_1"
(rectangle (start -8.89 0) (end 0 -10.16)
(stroke (width 0) (type default))
(fill (type none))
)
)
(symbol "AHT20 Humidity Module_1_1"
(pin power_in line (at 2.54 -1.27 180) (length 2.54)
(name "VIN" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 2.54 -3.81 180) (length 2.54)
(name "GND" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin input line (at 2.54 -6.35 180) (length 2.54)
(name "SCL" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 2.54 -8.89 180) (length 2.54)
(name "SDA" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "User:Drok_Vreg" (in_bom yes) (on_board yes)
(property "Reference" "U" (at 0 1.778 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "" (at 0 0 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "User:Drok Vreg" (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 "Drok_Vreg_0_1"
(rectangle (start -8.89 0) (end 0 -10.16)
(stroke (width 0) (type default))
(fill (type none))
)
)
(symbol "Drok_Vreg_1_1"
(pin output line (at 2.54 -1.27 180) (length 2.54)
(name "Out+" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin input line (at 2.54 -3.81 180) (length 2.54)
(name "Negative" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin input line (at 2.54 -6.35 180) (length 2.54)
(name "In+" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 2.54 -8.89 180) (length 2.54)
(name "Enable" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "User:ESP32_DevkitV1_DoIt" (in_bom yes) (on_board yes)
(property "Reference" "U" (at 0 2.794 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "ESP32 DevKitV1 DoIt" (at -0.254 0.762 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "User:ESP32 DevKitV1 DoIt" (at -2.794 0.254 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at -2.794 0.254 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "ESP32_DevkitV1_DoIt_1_1"
(rectangle (start -9.906 -0.762) (end 9.906 -38.1)
(stroke (width 0) (type default))
(fill (type background))
)
(pin input line (at -12.446 -2.54 0) (length 2.54)
(name "EN" (effects (font (size 1 1))))
(number "1" (effects (font (size 1 1))))
)
(pin bidirectional line (at -12.446 -24.384 0) (length 2.54)
(name "GPIO_27" (effects (font (size 1 1))))
(number "10" (effects (font (size 1 1))))
)
(pin bidirectional line (at -12.446 -26.924 0) (length 2.54)
(name "GPIO_14" (effects (font (size 1 1))))
(number "11" (effects (font (size 1 1))))
)
(pin bidirectional line (at -12.446 -29.21 0) (length 2.54)
(name "GPIO_12" (effects (font (size 1 1))))
(number "12" (effects (font (size 1 1))))
)
(pin bidirectional line (at -12.446 -31.496 0) (length 2.54)
(name "GPIO_13" (effects (font (size 1 1))))
(number "13" (effects (font (size 1 1))))
)
(pin power_in line (at -12.446 -34.036 0) (length 2.54)
(name "GND" (effects (font (size 1 1))))
(number "14" (effects (font (size 1 1))))
)
(pin power_in line (at -12.446 -36.576 0) (length 2.54)
(name "VIN" (effects (font (size 1 1))))
(number "15" (effects (font (size 1 1))))
)
(pin bidirectional line (at 12.446 -36.83 180) (length 2.54)
(name "3V3" (effects (font (size 1 1))))
(number "16" (effects (font (size 1 1))))
)
(pin power_in line (at 12.446 -34.29 180) (length 2.54)
(name "GND" (effects (font (size 1 1))))
(number "17" (effects (font (size 1 1))))
)
(pin bidirectional line (at 12.446 -31.75 180) (length 2.54)
(name "GPIO_15" (effects (font (size 1 1))))
(number "18" (effects (font (size 1 1))))
)
(pin bidirectional line (at 12.446 -29.464 180) (length 2.54)
(name "GPIO_2" (effects (font (size 1 1))))
(number "19" (effects (font (size 1 1))))
)
(pin bidirectional line (at -12.446 -5.08 0) (length 2.54)
(name "GPIO_36" (effects (font (size 1 1))))
(number "2" (effects (font (size 1 1))))
)
(pin bidirectional line (at 12.446 -27.178 180) (length 2.54)
(name "GPIO_4" (effects (font (size 1 1))))
(number "20" (effects (font (size 1 1))))
)
(pin bidirectional line (at 12.446 -24.638 180) (length 2.54)
(name "GPIO_16" (effects (font (size 1 1))))
(number "21" (effects (font (size 1 1))))
)
(pin bidirectional line (at 12.446 -22.098 180) (length 2.54)
(name "GPIO_17" (effects (font (size 1 1))))
(number "22" (effects (font (size 1 1))))
)
(pin bidirectional line (at 12.446 -19.812 180) (length 2.54)
(name "GPIO_5" (effects (font (size 1 1))))
(number "23" (effects (font (size 1 1))))
)
(pin bidirectional line (at 12.446 -17.526 180) (length 2.54)
(name "GPIO_18" (effects (font (size 1 1))))
(number "24" (effects (font (size 1 1))))
)
(pin bidirectional line (at 12.446 -15.24 180) (length 2.54)
(name "GPIO_19" (effects (font (size 1 1))))
(number "25" (effects (font (size 1 1))))
)
(pin bidirectional line (at 12.7 -12.446 180) (length 2.54)
(name "GPIO_21" (effects (font (size 1 1))))
(number "26" (effects (font (size 1 1))))
)
(pin bidirectional line (at 12.7 -10.16 180) (length 2.54)
(name "GPIO_1" (effects (font (size 1 1))))
(number "27" (effects (font (size 1 1))))
)
(pin bidirectional line (at 12.446 -7.874 180) (length 2.54)
(name "GPIO_3" (effects (font (size 1 1))))
(number "28" (effects (font (size 1 1))))
)
(pin bidirectional line (at 12.446 -5.334 180) (length 2.54)
(name "GPIO_22" (effects (font (size 1 1))))
(number "29" (effects (font (size 1 1))))
)
(pin bidirectional line (at -12.446 -7.62 0) (length 2.54)
(name "GPIO_39" (effects (font (size 1 1))))
(number "3" (effects (font (size 1 1))))
)
(pin bidirectional line (at 12.446 -3.048 180) (length 2.54)
(name "GPIO_23" (effects (font (size 1 1))))
(number "30" (effects (font (size 1 1))))
)
(pin bidirectional line (at -12.446 -9.906 0) (length 2.54)
(name "GPIO_34" (effects (font (size 1 1))))
(number "4" (effects (font (size 1 1))))
)
(pin bidirectional line (at -12.446 -12.192 0) (length 2.54)
(name "GPIO_35" (effects (font (size 1 1))))
(number "5" (effects (font (size 1 1))))
)
(pin bidirectional line (at -12.446 -14.732 0) (length 2.54)
(name "GPIO_32" (effects (font (size 1 1))))
(number "6" (effects (font (size 1 1))))
)
(pin bidirectional line (at -12.446 -17.272 0) (length 2.54)
(name "GPIO_33" (effects (font (size 1 1))))
(number "7" (effects (font (size 1 1))))
)
(pin bidirectional line (at -12.446 -19.812 0) (length 2.54)
(name "GPIO_25" (effects (font (size 1 1))))
(number "8" (effects (font (size 1 1))))
)
(pin bidirectional line (at -12.446 -22.098 0) (length 2.54)
(name "GPIO_26" (effects (font (size 1 1))))
(number "9" (effects (font (size 1 1))))
)
)
)
(symbol "User:HiLetgo_BMP280-3.3" (in_bom yes) (on_board yes)
(property "Reference" "U" (at -0.254 2.794 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "" (at -2.286 0 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "User:HiLetgo BMP280-3.3" (at -2.286 1.016 0)
(effects (font (size 1.27 1.27)))
)
(property "Datasheet" "" (at -2.286 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "HiLetgo_BMP280-3.3_1_1"
(rectangle (start -4.826 0) (end 5.334 -17.78)
(stroke (width 0) (type default))
(fill (type none))
)
(pin input line (at -7.366 -2.54 0) (length 2.54)
(name "VCC" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin input line (at -7.366 -5.08 0) (length 2.54)
(name "GND" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin input line (at -7.366 -7.62 0) (length 2.54)
(name "SCL" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin input line (at -7.366 -10.16 0) (length 2.54)
(name "SDA" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin input line (at -7.366 -12.7 0) (length 2.54)
(name "CSB" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
(pin input line (at -7.366 -15.24 0) (length 2.54)
(name "SDO" (effects (font (size 1.27 1.27))))
(number "6" (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" "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 \"+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:+3V3" (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" "+3V3" (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" "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 \"+3V3\"" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "+3V3_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 "+3V3_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:+5V" (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" "+5V" (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" "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 \"+5V\"" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "+5V_0_1"
(polyline
(pts
(xy -0.762 1.27)
(xy 0 2.54)
)
(stroke (width 0) (type default))
(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 "+5V_1_1"
(pin power_in line (at 0 0 90) (length 0) hide
(name "+5V" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "power:GND" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "#PWR" (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 99.568 26.416) (diameter 0) (color 0 0 0 0)
(uuid 726f896f-2fe4-4f08-b8af-ddfc06087ba3)
)
(no_connect (at 40.894 80.01) (uuid 4e3b622a-7aff-4567-8604-758ae0ad6d91))
(no_connect (at 57.15 108.458) (uuid a69ea7d8-94b4-4cdc-8c33-2be6f4852bb9))
(no_connect (at 56.134 39.878) (uuid c370a2ba-af67-40ca-a184-d7c91a3b8878))
(no_connect (at 29.464 47.498) (uuid d0679ff8-9423-41a6-8529-a3231f5c019b))
(no_connect (at 40.894 77.47) (uuid eca9c3d1-332e-4721-852f-af1299178e80))
(wire (pts (xy 25.4 39.878) (xy 29.464 39.878))
(stroke (width 0) (type default))
(uuid 03aee50d-f8e5-4c76-8507-ff5eb47951bc)
)
(wire (pts (xy 57.15 105.918) (xy 62.23 105.918))
(stroke (width 0) (type default))
(uuid 03dec72b-65cc-4902-b25c-e5790bdb3a35)
)
(wire (pts (xy 124.206 68.834) (xy 128.778 68.834))
(stroke (width 0) (type default))
(uuid 051578e5-ea6e-46ea-807b-c7db77211e0b)
)
(wire (pts (xy 99.568 26.416) (xy 102.87 26.416))
(stroke (width 0) (type default))
(uuid 10b6a9dd-1768-4483-a687-544220e5a07a)
)
(wire (pts (xy 35.56 69.85) (xy 40.894 69.85))
(stroke (width 0) (type default))
(uuid 16e31cd3-9916-4829-9c09-06ca9bf81a62)
)
(wire (pts (xy 93.98 26.416) (xy 99.568 26.416))
(stroke (width 0) (type default))
(uuid 21484201-bf55-4cec-9969-059ac0547dc3)
)
(wire (pts (xy 56.134 43.688) (xy 60.452 43.688))
(stroke (width 0) (type default))
(uuid 22e30d2e-8ffd-4b55-9b8f-bfb78cc8ee58)
)
(wire (pts (xy 111.76 52.832) (xy 116.332 52.832))
(stroke (width 0) (type default))
(uuid 30f20f81-e8d3-451b-b6ab-bba29cd42d8b)
)
(wire (pts (xy 111.76 45.212) (xy 116.078 45.212))
(stroke (width 0) (type default))
(uuid 3dd0cd8a-13d3-4676-84d3-cb1dbd0080a4)
)
(wire (pts (xy 111.76 47.752) (xy 116.332 47.752))
(stroke (width 0) (type default))
(uuid 3e4bd4b0-a84a-4466-a44b-35dfd8a59c13)
)
(wire (pts (xy 124.46 75.946) (xy 128.778 75.946))
(stroke (width 0) (type default))
(uuid 4f846e99-67d2-41be-9d5d-db97ab4fd713)
)
(wire (pts (xy 124.206 100.33) (xy 130.81 100.33))
(stroke (width 0) (type default))
(uuid 5d600578-dfc8-4350-8de0-c56eae13256c)
)
(wire (pts (xy 35.56 72.39) (xy 40.894 72.39))
(stroke (width 0) (type default))
(uuid 5d865ee2-a4d2-441d-aef4-6e7e83b36b45)
)
(wire (pts (xy 96.52 100.076) (xy 99.314 100.076))
(stroke (width 0) (type default))
(uuid 6a1c2e34-1a35-46f0-bb79-3c36a8f070ae)
)
(wire (pts (xy 37.338 92.202) (xy 41.656 92.202))
(stroke (width 0) (type default))
(uuid 6bebce88-17de-41a9-a312-3c702bd0c27b)
)
(wire (pts (xy 96.266 97.536) (xy 99.314 97.536))
(stroke (width 0) (type default))
(uuid 718b949c-1009-4ed0-83aa-a98955269294)
)
(wire (pts (xy 36.068 87.122) (xy 41.656 87.122))
(stroke (width 0) (type default))
(uuid 718c3788-fcc8-4375-a935-760ec9be6e34)
)
(wire (pts (xy 25.4 36.068) (xy 29.464 36.068))
(stroke (width 0) (type default))
(uuid 80668fce-1e1c-4cb0-bb6e-ff9c38f44fcf)
)
(wire (pts (xy 34.29 89.662) (xy 41.656 89.662))
(stroke (width 0) (type default))
(uuid 863d07cd-485a-43f2-9b30-3430ac47ceae)
)
(wire (pts (xy 111.76 50.292) (xy 116.332 50.292))
(stroke (width 0) (type default))
(uuid a3784542-0f74-4ace-84a0-38e9cdc4494f)
)
(wire (pts (xy 43.434 26.416) (xy 43.434 30.988))
(stroke (width 0) (type default))
(uuid a7531b99-ab56-4f94-8213-5a38de8cb852)
)
(wire (pts (xy 43.434 52.578) (xy 43.434 56.134))
(stroke (width 0) (type default))
(uuid a8c99792-8d17-42a5-bd7c-a5433e250ff6)
)
(wire (pts (xy 110.49 26.416) (xy 114.3 26.416))
(stroke (width 0) (type default))
(uuid ae1fb524-621e-415e-a7d9-61c74722ec77)
)
(wire (pts (xy 124.206 97.79) (xy 130.81 97.79))
(stroke (width 0) (type default))
(uuid ae669e6f-e441-469c-9df1-cfc9d5bf209e)
)
(wire (pts (xy 83.566 26.416) (xy 86.36 26.416))
(stroke (width 0) (type default))
(uuid bec5364c-b278-41ce-bd0e-51b5cb83d4c0)
)
(wire (pts (xy 56.134 47.498) (xy 60.96 47.498))
(stroke (width 0) (type default))
(uuid d2809b04-9b58-4859-bf0c-8d44f6af3ac9)
)
(wire (pts (xy 99.568 36.068) (xy 99.568 26.416))
(stroke (width 0) (type default))
(uuid d6b6ad66-8dab-4ed3-b33b-5679a80760dd)
)
(wire (pts (xy 35.56 67.31) (xy 40.894 67.31))
(stroke (width 0) (type default))
(uuid e1e2b5df-6799-44f8-b36c-d7fecde80cb0)
)
(wire (pts (xy 37.338 94.742) (xy 41.656 94.742))
(stroke (width 0) (type default))
(uuid e23eeaad-cbb7-47c3-b2f2-fb1833d96024)
)
(wire (pts (xy 57.15 100.838) (xy 62.23 100.838))
(stroke (width 0) (type default))
(uuid ecb47335-790a-4216-a8ef-44ec45d68fe9)
)
(wire (pts (xy 56.134 36.068) (xy 99.568 36.068))
(stroke (width 0) (type default))
(uuid efb0d488-bbf4-4e12-8786-4456bf802a77)
)
(wire (pts (xy 57.15 103.378) (xy 62.23 103.378))
(stroke (width 0) (type default))
(uuid f0902c2a-7cab-4674-86fb-76f6e481d036)
)
(wire (pts (xy 24.638 43.688) (xy 29.464 43.688))
(stroke (width 0) (type default))
(uuid f8d4983b-a8fe-4e8b-84b0-76f7d6340857)
)
(wire (pts (xy 35.56 74.93) (xy 40.894 74.93))
(stroke (width 0) (type default))
(uuid ff8085dd-8f2c-4f59-994b-e5ad602492c9)
)
(global_label "SCL" (shape input) (at 116.332 50.292 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 1300e4ef-ba1f-433d-9e00-eb3266d9992e)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 122.8248 50.292 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "SCL" (shape input) (at 128.778 68.834 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 19c7fef2-e7cc-4e9c-94b0-5e86a19e93b0)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 135.2708 68.834 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "Shunt High" (shape input) (at 37.338 92.202 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 2743e74c-7130-4f10-b528-33e3a37584ad)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 23.7697 92.202 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "Shunt High" (shape input) (at 60.452 43.688 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 2b62d14f-9eed-4cab-8180-2095ecd38e4a)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 74.0203 43.688 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "SDA" (shape input) (at 25.4 39.878 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 76860263-6795-4275-a5df-ccaf8ad3ea00)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 18.8467 39.878 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "SCL" (shape input) (at 25.4 36.068 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 8d67ffe9-afac-476b-8b83-d4078d99af8e)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 18.9072 36.068 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "Shunt Low" (shape input) (at 60.96 47.498 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid a4bbef8d-f103-4d11-8318-750be8a7f5bf)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 73.8026 47.498 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "SCL" (shape input) (at 35.56 72.39 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid aab11102-5ec0-4fc5-bb6b-d32af139985a)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 29.0672 72.39 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "SDA" (shape input) (at 35.56 74.93 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid af114731-b36d-4373-a67b-f3fefc481dd3)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 29.0067 74.93 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "Shunt Low" (shape input) (at 37.338 94.742 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid b4373e4b-3447-477d-8377-d459bf47b1da)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 24.4954 94.742 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "SDA" (shape input) (at 128.778 75.946 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid bdd00f11-fbe6-40ef-973a-9aaa147a723b)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 135.3313 75.946 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "SDA" (shape input) (at 116.332 52.832 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid eb892678-7685-4377-a061-5af45ee016f7)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 122.8853 52.832 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(symbol (lib_id "power:GND") (at 62.23 103.378 90) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 0011b4b7-b76b-4ac5-852b-13a8528dfdc9)
(property "Reference" "#PWR03" (at 68.58 103.378 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (at 66.04 103.378 90)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Footprint" "" (at 62.23 103.378 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 62.23 103.378 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 958b702e-9c6e-4e57-b7cc-554eb9bf31cf))
(instances
(project "BatteryMeter"
(path "/70fd842f-e57e-498f-b935-1791177e9c4c"
(reference "#PWR03") (unit 1)
)
)
)
)
(symbol (lib_id "power:+5V") (at 62.23 100.838 270) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 135d1d37-c65c-432b-9899-d0de3346bd0e)
(property "Reference" "#PWR04" (at 58.42 100.838 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "+5V" (at 66.04 100.838 90)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (at 62.23 100.838 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 62.23 100.838 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 068ca042-4e33-4e70-ae53-7cf77ca3b173))
(instances
(project "BatteryMeter"
(path "/70fd842f-e57e-498f-b935-1791177e9c4c"
(reference "#PWR04") (unit 1)
)
)
)
)
(symbol (lib_id "power:GND") (at 43.434 56.134 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 23a40a2c-507e-4b89-bda3-6c4c64636afb)
(property "Reference" "#PWR015" (at 43.434 62.484 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (at 43.434 63.754 90)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Footprint" "" (at 43.434 56.134 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 43.434 56.134 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 45df6c7c-fc22-4357-a337-f54c0f5326d9))
(instances
(project "BatteryMeter"
(path "/70fd842f-e57e-498f-b935-1791177e9c4c"
(reference "#PWR015") (unit 1)
)
)
)
)
(symbol (lib_id "power:+5V") (at 43.434 26.416 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)