-
Notifications
You must be signed in to change notification settings - Fork 0
/
BaroAxel_Brain_STM32_Sensors.kicad_sch-bak
1415 lines (1378 loc) · 53 KB
/
BaroAxel_Brain_STM32_Sensors.kicad_sch-bak
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
(kicad_sch (version 20211123) (generator eeschema)
(uuid 296b9a41-572d-4525-8290-48070eef1cf2)
(paper "A4")
(title_block
(title "STM32F4 MPU9250 BMP280 | MCU")
(rev "1.0")
(company "Electro Scientific Club | Mohamed Yanis Hiou")
(comment 1 "STM32F Microcontroller Section")
)
(lib_symbols
(symbol "Device:C_Small" (pin_numbers hide) (pin_names (offset 0.254) hide) (in_bom yes) (on_board yes)
(property "Reference" "C" (id 0) (at 0.254 1.778 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "C_Small" (id 1) (at 0.254 -2.032 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "capacitor cap" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Unpolarized capacitor, small symbol" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "C_*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "C_Small_0_1"
(polyline
(pts
(xy -1.524 -0.508)
(xy 1.524 -0.508)
)
(stroke (width 0.3302) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -1.524 0.508)
(xy 1.524 0.508)
)
(stroke (width 0.3048) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "C_Small_1_1"
(pin passive line (at 0 2.54 270) (length 2.032)
(name "~" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -2.54 90) (length 2.032)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Device:D_Shockley" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
(property "Reference" "D" (id 0) (at 0 2.54 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "D_Shockley" (id 1) (at 0 -2.54 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "Shockley diode PNPN" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Shockley (PNPN) diode" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "TO-???* *_Diode_* *SingleDiode* D_*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "D_Shockley_0_1"
(polyline
(pts
(xy -1.27 0)
(xy 1.27 0)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -1.27 1.27)
(xy -1.27 -1.27)
)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -1.27 0)
(xy 1.27 1.27)
(xy 1.27 -1.27)
)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "D_Shockley_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:FerriteBead" (pin_numbers hide) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "FB" (id 0) (at -3.81 0.635 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "FerriteBead" (id 1) (at 3.81 0 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at -1.778 0 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "L ferrite bead inductor filter" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Ferrite bead" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "Inductor_* L_* *Ferrite*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "FerriteBead_0_1"
(polyline
(pts
(xy 0 -1.27)
(xy 0 -1.2192)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 1.27)
(xy 0 1.2954)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -2.7686 0.4064)
(xy -1.7018 2.2606)
(xy 2.7686 -0.3048)
(xy 1.6764 -2.159)
(xy -2.7686 0.4064)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "FerriteBead_1_1"
(pin passive line (at 0 3.81 270) (length 2.54)
(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.54)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Device:Fuse" (pin_numbers hide) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "F" (id 0) (at 2.032 0 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "Fuse" (id 1) (at -1.905 0 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at -1.778 0 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "fuse" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Fuse" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "*Fuse*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "Fuse_0_1"
(rectangle (start -0.762 -2.54) (end 0.762 2.54)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 2.54)
(xy 0 -2.54)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "Fuse_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 "Device:LED_Small" (pin_numbers hide) (pin_names (offset 0.254) hide) (in_bom yes) (on_board yes)
(property "Reference" "D" (id 0) (at -1.27 3.175 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "LED_Small" (id 1) (at -4.445 -2.54 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (id 2) (at 0 0 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 0 0 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "LED diode light-emitting-diode" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Light emitting diode, small symbol" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "LED* LED_SMD:* LED_THT:*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "LED_Small_0_1"
(polyline
(pts
(xy -0.762 -1.016)
(xy -0.762 1.016)
)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 1.016 0)
(xy -0.762 0)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(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) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 0.762)
(xy -0.508 1.27)
(xy -0.254 1.27)
(xy -0.508 1.27)
(xy -0.508 1.016)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0.508 1.27)
(xy 0 1.778)
(xy 0.254 1.778)
(xy 0 1.778)
(xy 0 1.524)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "LED_Small_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" (id 0) (at 0.762 0.508 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "R_Small" (id 1) (at 0.762 -1.016 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "R resistor" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Resistor, small symbol" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "R_*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "R_Small_0_1"
(rectangle (start -0.762 1.778) (end 0.762 -1.778)
(stroke (width 0.2032) (type default) (color 0 0 0 0))
(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 "Regulator_Linear:AMS1117-3.3" (pin_names (offset 0.254)) (in_bom yes) (on_board yes)
(property "Reference" "U" (id 0) (at -3.81 3.175 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "AMS1117-3.3" (id 1) (at 0 3.175 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Package_TO_SOT_SMD:SOT-223-3_TabPin2" (id 2) (at 0 5.08 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "http://www.advanced-monolithic.com/pdf/ds1117.pdf" (id 3) (at 2.54 -6.35 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "linear regulator ldo fixed positive" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "1A Low Dropout regulator, positive, 3.3V fixed output, SOT-223" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "SOT?223*TabPin2*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "AMS1117-3.3_0_1"
(rectangle (start -5.08 -5.08) (end 5.08 1.905)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type background))
)
)
(symbol "AMS1117-3.3_1_1"
(pin power_in line (at 0 -7.62 90) (length 2.54)
(name "GND" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin power_out line (at 7.62 0 180) (length 2.54)
(name "VO" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at -7.62 0 0) (length 2.54)
(name "VI" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Sensor_Motion:MPU-6050" (in_bom yes) (on_board yes)
(property "Reference" "U" (id 0) (at -11.43 13.97 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "MPU-6050" (id 1) (at 7.62 -15.24 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Sensor_Motion:InvenSense_QFN-24_4x4mm_P0.5mm" (id 2) (at 0 -20.32 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "https://store.invensense.com/datasheets/invensense/MPU-6050_DataSheet_V3%204.pdf" (id 3) (at 0 -3.81 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "mems" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "InvenSense 6-Axis Motion Sensor, Gyroscope, Accelerometer, I2C" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "*QFN*4x4mm*P0.5mm*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "MPU-6050_0_0"
(text "" (at 12.7 -2.54 0)
(effects (font (size 1.27 1.27)))
)
)
(symbol "MPU-6050_0_1"
(rectangle (start -12.7 13.97) (end 12.7 -13.97)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type background))
)
)
(symbol "MPU-6050_1_1"
(pin input clock (at -17.78 -7.62 0) (length 5.08)
(name "CLKIN" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 17.78 -7.62 180) (length 5.08)
(name "REGOUT" (effects (font (size 1.27 1.27))))
(number "10" (effects (font (size 1.27 1.27))))
)
(pin input line (at -17.78 -5.08 0) (length 5.08)
(name "FSYNC" (effects (font (size 1.27 1.27))))
(number "11" (effects (font (size 1.27 1.27))))
)
(pin output line (at 17.78 7.62 180) (length 5.08)
(name "INT" (effects (font (size 1.27 1.27))))
(number "12" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 2.54 17.78 270) (length 3.81)
(name "VDD" (effects (font (size 1.27 1.27))))
(number "13" (effects (font (size 1.27 1.27))))
)
(pin no_connect line (at -12.7 -10.16 0) (length 2.54) hide
(name "NC" (effects (font (size 1.27 1.27))))
(number "14" (effects (font (size 1.27 1.27))))
)
(pin no_connect line (at 12.7 12.7 180) (length 2.54) hide
(name "NC" (effects (font (size 1.27 1.27))))
(number "15" (effects (font (size 1.27 1.27))))
)
(pin no_connect line (at 12.7 10.16 180) (length 2.54) hide
(name "NC" (effects (font (size 1.27 1.27))))
(number "16" (effects (font (size 1.27 1.27))))
)
(pin no_connect line (at 12.7 5.08 180) (length 2.54) hide
(name "NC" (effects (font (size 1.27 1.27))))
(number "17" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 0 -17.78 90) (length 3.81)
(name "GND" (effects (font (size 1.27 1.27))))
(number "18" (effects (font (size 1.27 1.27))))
)
(pin no_connect line (at 12.7 -10.16 180) (length 2.54) hide
(name "NC" (effects (font (size 1.27 1.27))))
(number "19" (effects (font (size 1.27 1.27))))
)
(pin no_connect line (at -12.7 12.7 0) (length 2.54) hide
(name "NC" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 17.78 -5.08 180) (length 5.08)
(name "CPOUT" (effects (font (size 1.27 1.27))))
(number "20" (effects (font (size 1.27 1.27))))
)
(pin no_connect line (at 12.7 -2.54 180) (length 2.54) hide
(name "NC" (effects (font (size 1.27 1.27))))
(number "21" (effects (font (size 1.27 1.27))))
)
(pin no_connect line (at 12.7 -12.7 180) (length 2.54) hide
(name "NC" (effects (font (size 1.27 1.27))))
(number "22" (effects (font (size 1.27 1.27))))
)
(pin input line (at -17.78 5.08 0) (length 5.08)
(name "SCL" (effects (font (size 1.27 1.27))))
(number "23" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -17.78 7.62 0) (length 5.08)
(name "SDA" (effects (font (size 1.27 1.27))))
(number "24" (effects (font (size 1.27 1.27))))
)
(pin no_connect line (at -12.7 10.16 0) (length 2.54) hide
(name "NC" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin no_connect line (at -12.7 0 0) (length 2.54) hide
(name "NC" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin no_connect line (at -12.7 -2.54 0) (length 2.54) hide
(name "NC" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 17.78 2.54 180) (length 5.08)
(name "AUX_SDA" (effects (font (size 1.27 1.27))))
(number "6" (effects (font (size 1.27 1.27))))
)
(pin output clock (at 17.78 0 180) (length 5.08)
(name "AUX_SCL" (effects (font (size 1.27 1.27))))
(number "7" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at -2.54 17.78 270) (length 3.81)
(name "VDDIO" (effects (font (size 1.27 1.27))))
(number "8" (effects (font (size 1.27 1.27))))
)
(pin input line (at -17.78 2.54 0) (length 5.08)
(name "AD0" (effects (font (size 1.27 1.27))))
(number "9" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "power:+3.3V" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "#PWR" (id 0) (at 0 -3.81 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "+3.3V" (id 1) (at 0 3.556 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "power-flag" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Power symbol creates a global label with name \"+3.3V\"" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "+3.3V_0_1"
(polyline
(pts
(xy -0.762 1.27)
(xy 0 2.54)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 0)
(xy 0 2.54)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 2.54)
(xy 0.762 1.27)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "+3.3V_1_1"
(pin power_in line (at 0 0 90) (length 0) hide
(name "+3.3V" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "power:+5V" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "#PWR" (id 0) (at 0 -3.81 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "+5V" (id 1) (at 0 3.556 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "power-flag" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Power symbol creates a global label with name \"+5V\"" (id 5) (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) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 0)
(xy 0 2.54)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 2.54)
(xy 0.762 1.27)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "+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" (id 0) (at 0 -6.35 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (id 1) (at 0 -3.81 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "power-flag" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Power symbol creates a global label with name \"GND\" , ground" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "GND_0_1"
(polyline
(pts
(xy 0 0)
(xy 0 -1.27)
(xy 1.27 -1.27)
(xy 0 -2.54)
(xy -1.27 -1.27)
(xy 0 -1.27)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "GND_1_1"
(pin power_in line (at 0 0 270) (length 0) hide
(name "GND" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
)
(junction (at 170.815 92.71) (diameter 0) (color 0 0 0 0)
(uuid 01ee9944-57c6-43bf-af92-14dfe42f72c8)
)
(junction (at 193.04 132.08) (diameter 0) (color 0 0 0 0)
(uuid 138cb48c-d34a-495c-95a3-0381d653c013)
)
(junction (at 150.495 119.38) (diameter 0) (color 0 0 0 0)
(uuid 191db102-737c-4156-8958-1ebc5c30cdfa)
)
(junction (at 173.355 132.08) (diameter 0) (color 0 0 0 0)
(uuid 5baf33a8-15af-421e-b0ed-c6711b92e3b4)
)
(junction (at 93.98 74.295) (diameter 0) (color 0 0 0 0)
(uuid 63b1cf12-28d2-46ca-9a6f-3967eca23747)
)
(junction (at 173.355 130.81) (diameter 0) (color 0 0 0 0)
(uuid 6bc9cebf-cc63-4dd8-9d68-ae696616d7a5)
)
(junction (at 82.55 74.295) (diameter 0) (color 0 0 0 0)
(uuid 977ab332-7e7c-4ec6-b5e8-d99f02b8b0af)
)
(junction (at 107.95 64.135) (diameter 0) (color 0 0 0 0)
(uuid a7f8357e-fce7-460d-a6c6-c15a0ac27687)
)
(junction (at 82.55 64.135) (diameter 0) (color 0 0 0 0)
(uuid aa1b23b1-c688-4e70-b23e-e95441371b89)
)
(junction (at 105.41 74.295) (diameter 0) (color 0 0 0 0)
(uuid c937efd4-135a-4b2e-b100-da79a3d3485d)
)
(junction (at 105.41 64.135) (diameter 0) (color 0 0 0 0)
(uuid d2744f09-5003-4dce-8aa8-315335758986)
)
(no_connect (at 191.135 104.14) (uuid 022f5510-6c96-4922-8c4e-7f3fa85b3826))
(no_connect (at 191.135 109.22) (uuid ca5b26f2-4d55-4781-9495-b632ee7e84b2))
(no_connect (at 191.135 111.76) (uuid ca5b26f2-4d55-4781-9495-b632ee7e84b2))
(no_connect (at 155.575 109.22) (uuid d37f2416-7cae-46ad-ac9f-b4787c85df6b))
(wire (pts (xy 82.55 74.295) (xy 82.55 75.565))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 01d86a0f-0fda-4940-a615-1eb6f3c299a3)
)
(wire (pts (xy 173.355 130.81) (xy 173.355 132.08))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 07fc3cf0-b9d0-41a6-ab74-1d0020a2537c)
)
(wire (pts (xy 57.15 64.135) (xy 59.69 64.135))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0c9ac553-d415-4f36-826a-f9eb9707365c)
)
(wire (pts (xy 189.865 85.725) (xy 189.865 87.63))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0f4e7292-b2d8-498a-90f4-beb788ec5d2c)
)
(wire (pts (xy 191.135 119.38) (xy 193.04 119.38))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1092e59f-8011-41cf-9503-7387f12e6b90)
)
(wire (pts (xy 45.72 59.055) (xy 45.72 64.135))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 129ec838-e0c5-44db-87aa-d2db2e8b25a6)
)
(wire (pts (xy 175.895 93.98) (xy 175.895 92.71))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 161f82f0-0263-4225-bc12-82098f71d8bc)
)
(wire (pts (xy 193.04 125.095) (xy 193.04 132.08))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1e36bf2d-d5e4-4562-af85-29d0b125cacf)
)
(wire (pts (xy 140.335 106.68) (xy 155.575 106.68))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 227bc2ad-40cb-43be-a0e8-2aec6c0de370)
)
(wire (pts (xy 101.6 64.135) (xy 105.41 64.135))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2f4efbc5-ff46-4280-9a13-ab5e49d07cc0)
)
(wire (pts (xy 107.95 59.055) (xy 107.95 64.135))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 34fd0a23-6bdd-490c-bf0b-246b0999355c)
)
(wire (pts (xy 204.47 120.015) (xy 204.47 116.84))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 39fb8693-57d4-4bc2-bd7a-1cbc39fa2f47)
)
(wire (pts (xy 150.495 116.84) (xy 150.495 119.38))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 45018920-8456-42fc-9997-2e1d86b9a68a)
)
(wire (pts (xy 155.575 119.38) (xy 150.495 119.38))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 521d5f61-b6a1-4530-b630-c5648bbb905f)
)
(wire (pts (xy 107.95 64.135) (xy 111.76 64.135))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 55736016-b93d-4321-b6bb-8e57fcb46604)
)
(wire (pts (xy 170.815 92.71) (xy 175.895 92.71))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5bfadccb-45ab-4d6c-983b-6cac50961020)
)
(wire (pts (xy 93.98 74.295) (xy 105.41 74.295))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5cb210d4-478f-4400-bd05-bfcc56afe4fb)
)
(wire (pts (xy 156.21 92.71) (xy 156.21 94.615))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5d3be186-12ca-4239-9343-beb11d623b61)
)
(wire (pts (xy 82.55 64.135) (xy 82.55 67.945))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 6f46915b-5bc6-4f80-8aa1-e8a348749f8b)
)
(wire (pts (xy 116.84 71.755) (xy 116.84 74.295))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 7a015824-7d7d-4937-9227-cedc1309eb95)
)
(wire (pts (xy 204.47 116.84) (xy 191.135 116.84))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 7ba9e56a-5d7e-4bd9-b34f-822cf589bd53)
)
(polyline (pts (xy 43.18 53.975) (xy 43.18 80.645))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 82200160-7ebc-4556-9852-d8dcfa6ea16d)
)
(wire (pts (xy 93.98 71.755) (xy 93.98 74.295))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 83ed2759-6894-4462-8de7-cba0e13ef47d)
)
(wire (pts (xy 82.55 64.135) (xy 86.36 64.135))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 87c2490a-fcc3-4e38-ab55-9fc7af45845e)
)
(wire (pts (xy 170.815 85.725) (xy 170.815 92.71))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 94033a0a-4939-4d03-b2d1-2bebca6ee8bb)
)
(wire (pts (xy 105.41 73.025) (xy 105.41 74.295))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 95a1e58d-7595-4d34-89de-176613c078f1)
)
(polyline (pts (xy 125.73 80.645) (xy 43.18 80.645))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 99f8ca7e-bb36-4494-b079-bb61d8b14e70)
)
(wire (pts (xy 155.575 116.84) (xy 150.495 116.84))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 9a95f101-ed0d-48f2-a528-332e36adfb17)
)
(wire (pts (xy 80.01 64.135) (xy 82.55 64.135))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a5048ef8-e637-4d82-b379-02c615867efa)
)
(wire (pts (xy 82.55 73.025) (xy 82.55 74.295))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a90b91c8-ba71-4e38-93a3-a5fe293c9b9e)
)
(wire (pts (xy 45.72 64.135) (xy 49.53 64.135))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b2b69db1-aa8f-4dca-a95b-7e9535617401)
)
(wire (pts (xy 150.495 130.81) (xy 173.355 130.81))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b45c3228-5d80-4598-832a-96c6d223cd50)
)
(wire (pts (xy 204.47 132.08) (xy 193.04 132.08))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b81abb16-59da-43e0-a139-5b3da639fe81)
)
(wire (pts (xy 150.495 119.38) (xy 150.495 130.81))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid bb1a05c9-4f53-4ec5-9c20-b478299cceac)
)
(polyline (pts (xy 43.18 53.975) (xy 125.73 53.975))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c51b4a43-7d2d-4a68-8b72-70ceb96a7d5d)
)
(wire (pts (xy 193.04 132.08) (xy 173.355 132.08))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c84b4521-73ae-436c-9429-ad922c0a84f7)
)
(polyline (pts (xy 125.73 53.975) (xy 125.73 80.645))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c9031906-3881-4ee3-a329-baeb47967aa3)
)
(wire (pts (xy 204.47 125.095) (xy 204.47 132.08))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid cf8e10bb-0331-475b-8815-d5af5a4a34db)
)
(wire (pts (xy 116.84 64.135) (xy 116.84 66.675))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid d066e3d3-2078-469b-b50d-04cac2435e33)
)
(wire (pts (xy 173.355 129.54) (xy 173.355 130.81))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid d56c5d09-95a0-4570-ae88-fc9cf398ae10)
)
(wire (pts (xy 116.84 74.295) (xy 105.41 74.295))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid d863d56c-9ffd-4934-abdf-f34d498cd6a1)
)
(wire (pts (xy 67.31 64.135) (xy 72.39 64.135))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid dfddb2a6-6b13-46b2-951e-2b37fe0ffcb1)
)
(wire (pts (xy 173.355 132.08) (xy 173.355 133.35))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid e028b1e4-f0a0-499a-b83e-6101b537065e)
)
(wire (pts (xy 93.98 74.295) (xy 82.55 74.295))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid e652297d-19c6-4665-b2d4-5c5140d3fdfe)
)
(wire (pts (xy 170.815 92.71) (xy 170.815 93.98))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid ea5f5e75-61b1-4e1f-858c-c4377aa49743)
)
(wire (pts (xy 156.21 85.725) (xy 156.21 87.63))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid eee52be4-6974-4da7-a67c-7dabd30e56f2)
)
(wire (pts (xy 105.41 67.945) (xy 105.41 64.135))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid f1dd27a4-e9f9-4a42-b514-57186fbaa18b)
)
(wire (pts (xy 107.95 64.135) (xy 105.41 64.135))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid f2446f56-040b-481f-b010-0062c46252c6)
)
(wire (pts (xy 193.04 119.38) (xy 193.04 120.015))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid f5b3c595-6704-4622-ae11-0df8c351e365)
)
(wire (pts (xy 140.335 104.14) (xy 155.575 104.14))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid f7eb3206-145e-44d1-b9b3-734c63259f9c)
)
(wire (pts (xy 189.865 92.71) (xy 189.865 94.615))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid f88e639f-c1ee-4b9d-b7b3-6d09eb881aea)
)
(text "+5V coming from the USB or the Power Connector.\nShockley Diode is used for ESD protection.\nMin. of 22uF capacitors in VI and VO.\n"
(at 44.45 109.855 0)
(effects (font (size 1 1)) (justify left bottom))
(uuid 129ef511-a884-4809-b84d-6a2a7b61f32e)
)
(text "3) Sensors Section" (at 71.755 34.925 0)
(effects (font (size 10 10) bold italic) (justify left bottom))
(uuid 271d4c83-138e-4acd-bbb7-ab6708597e24)
)
(text "(1) Regulator" (at 44.45 52.705 0)
(effects (font (size 2 2) bold italic) (justify left bottom))
(uuid c6ed7c2c-ff79-411f-9ae0-0c5867927d16)
)
(label "I2C1_SCL" (at 140.335 106.68 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 3fbff9ef-7377-49bc-b01e-62bcf6be1d34)
)
(label "I2C1_SDA" (at 140.335 104.14 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid a1c035f4-6d71-44a7-abfd-ba85eb51577d)
)
(symbol (lib_id "Device:C_Small") (at 82.55 70.485 0) (unit 1)
(in_bom yes) (on_board yes) (fields_autoplaced)
(uuid 06b03d8c-f3d1-490b-82b4-333e9a68f703)
(property "Reference" "C?" (id 0) (at 85.09 69.2212 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "100u" (id 1) (at 85.09 71.7612 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 82.55 70.485 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 82.55 70.485 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 10a586fb-f8e0-46cb-a9fc-101c3ed95135))
(pin "2" (uuid e612bbcf-7788-44fc-b064-8a713992eef3))
)
(symbol (lib_id "power:GND") (at 189.865 94.615 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 1a0abc2a-4e15-40c5-b13a-7bb02161d9a9)
(property "Reference" "#PWR?" (id 0) (at 189.865 100.965 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (id 1) (at 189.865 98.425 0))
(property "Footprint" "" (id 2) (at 189.865 94.615 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 189.865 94.615 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid d4e3d17a-2dfc-4132-a6f3-dc25bdc7a995))
)
(symbol (lib_id "power:+3.3V") (at 107.95 59.055 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 24108bd2-5b49-4551-93e3-3d3db9e7a3ad)
(property "Reference" "#PWR?" (id 0) (at 107.95 62.865 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "+3.3V" (id 1) (at 107.95 55.245 0))
(property "Footprint" "" (id 2) (at 107.95 59.055 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 107.95 59.055 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 9eca85d4-7fdb-4a78-87ab-35401f900a6b))
)
(symbol (lib_id "Device:C_Small") (at 105.41 70.485 0) (unit 1)