-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsensors.kicad_sch
1417 lines (1384 loc) · 50.9 KB
/
sensors.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 d2b34ae1-5428-47d1-8383-cfcb7d644dc3)
(paper "A4")
(lib_symbols
(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: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 "Sensor_Magnetic:LIS2MDL" (in_bom yes) (on_board yes)
(property "Reference" "U" (at -8.89 11.43 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "LIS2MDL" (at 7.62 11.43 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Package_LGA:LGA-12_2x2mm_P0.5mm" (at 30.48 -7.62 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "https://www.st.com/resource/en/datasheet/lis2mdl.pdf" (at 38.1 -10.16 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "digital magnetometer" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Ultra-low-power, 3-axis digital output magnetometer, LGA-12" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "LGA*2x2mm*P0.5mm*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "LIS2MDL_0_1"
(rectangle (start -10.16 10.16) (end 10.16 -10.16)
(stroke (width 0.254) (type default))
(fill (type background))
)
)
(symbol "LIS2MDL_1_1"
(pin input line (at -12.7 2.54 0) (length 2.54)
(name "SCL/SPC" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 2.54 12.7 270) (length 2.54)
(name "Vdd_IO" (effects (font (size 1.27 1.27))))
(number "10" (effects (font (size 1.27 1.27))))
)
(pin no_connect line (at -10.16 -7.62 0) (length 2.54) hide
(name "NC" (effects (font (size 1.27 1.27))))
(number "11" (effects (font (size 1.27 1.27))))
)
(pin no_connect line (at 10.16 -7.62 180) (length 2.54) hide
(name "NC" (effects (font (size 1.27 1.27))))
(number "12" (effects (font (size 1.27 1.27))))
)
(pin no_connect line (at -10.16 -5.08 0) (length 2.54) hide
(name "NC" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin input line (at -12.7 5.08 0) (length 2.54)
(name "~{CS}" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -12.7 0 0) (length 2.54)
(name "SDA/SDI/SDO" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin power_out line (at 12.7 -2.54 180) (length 2.54)
(name "C1" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 0 -12.7 90) (length 2.54)
(name "GND" (effects (font (size 1.27 1.27))))
(number "6" (effects (font (size 1.27 1.27))))
)
(pin output line (at 12.7 5.08 180) (length 2.54)
(name "DRDY" (effects (font (size 1.27 1.27))))
(number "7" (effects (font (size 1.27 1.27))))
(alternate "INT" output line)
(alternate "SDO" output line)
)
(pin passive line (at 0 -12.7 90) (length 2.54) hide
(name "GND" (effects (font (size 1.27 1.27))))
(number "8" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 0 12.7 270) (length 2.54)
(name "Vdd" (effects (font (size 1.27 1.27))))
(number "9" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Sensor_Motion:MPU-6050" (in_bom yes) (on_board yes)
(property "Reference" "U" (at -11.43 13.97 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "MPU-6050" (at 7.62 -15.24 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Sensor_Motion:InvenSense_QFN-24_4x4mm_P0.5mm" (at 0 -20.32 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "https://invensense.tdk.com/wp-content/uploads/2015/02/MPU-6000-Datasheet1.pdf" (at 0 -3.81 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "mems" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "InvenSense 6-Axis Motion Sensor, Gyroscope, Accelerometer, I2C" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "*QFN*4x4mm*P0.5mm*" (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))
(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 "RESV" (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 "RESV" (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 "RESV" (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_DA" (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_CL" (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 "VLOGIC" (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:+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: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 203.2 58.42) (diameter 0) (color 0 0 0 0)
(uuid 050585b8-ea7c-466e-8e79-4dd12fe24522)
)
(junction (at 66.04 92.71) (diameter 0) (color 0 0 0 0)
(uuid 361a90ae-6ccf-483a-a62e-9c047dd972a3)
)
(junction (at 66.04 95.25) (diameter 0) (color 0 0 0 0)
(uuid 3f45d8b3-c54b-4c76-9c39-ac86c61b555e)
)
(junction (at 111.76 110.49) (diameter 0) (color 0 0 0 0)
(uuid 52e984a8-1560-4d90-8e98-2066575f1e7e)
)
(junction (at 91.44 53.34) (diameter 0) (color 0 0 0 0)
(uuid 5790e929-6c59-4a25-a5b1-3180d550f5f7)
)
(junction (at 66.04 53.34) (diameter 0) (color 0 0 0 0)
(uuid 8053218b-d406-4ede-aa12-f3bb8b24e81e)
)
(junction (at 120.65 67.31) (diameter 0) (color 0 0 0 0)
(uuid 8650bb7c-c9b6-444c-b784-324ab68b53e0)
)
(junction (at 104.14 53.34) (diameter 0) (color 0 0 0 0)
(uuid a4009d7a-493c-462d-8173-a9a927ed97a3)
)
(junction (at 66.04 82.55) (diameter 0) (color 0 0 0 0)
(uuid b1bcc9d5-df4d-44f2-8004-2ac6ae62bfad)
)
(junction (at 229.87 58.42) (diameter 0) (color 0 0 0 0)
(uuid b6a6c57d-3330-4359-81d1-1f02b28a1237)
)
(junction (at 88.9 110.49) (diameter 0) (color 0 0 0 0)
(uuid d7448880-430f-4ecf-8f78-74b16e1e00c5)
)
(junction (at 86.36 53.34) (diameter 0) (color 0 0 0 0)
(uuid e7997176-56fe-4f49-a5a8-7a7ac3801518)
)
(junction (at 58.42 80.01) (diameter 0) (color 0 0 0 0)
(uuid f2733d53-7315-4bc6-b942-56a4a6632099)
)
(junction (at 194.31 58.42) (diameter 0) (color 0 0 0 0)
(uuid f982d3bc-1f65-4a33-b622-420a4963b5d0)
)
(wire (pts (xy 111.76 106.68) (xy 111.76 110.49))
(stroke (width 0) (type default))
(uuid 073b8c35-7c25-49d1-8493-2b5bc00ca8c7)
)
(wire (pts (xy 66.04 53.34) (xy 66.04 67.31))
(stroke (width 0) (type default))
(uuid 084cf3d3-283a-4f53-8b19-9dd33bdee0a9)
)
(wire (pts (xy 229.87 59.69) (xy 229.87 58.42))
(stroke (width 0) (type default))
(uuid 0c7767b0-8a84-4bfc-8dc0-b11aecf480b0)
)
(wire (pts (xy 66.04 110.49) (xy 88.9 110.49))
(stroke (width 0) (type default))
(uuid 0e846178-0cd8-4b00-8e75-a0e41cc688d2)
)
(wire (pts (xy 53.34 82.55) (xy 66.04 82.55))
(stroke (width 0) (type default))
(uuid 175735fd-f7da-4076-8a23-ae91d09ac261)
)
(wire (pts (xy 232.41 97.79) (xy 232.41 100.33))
(stroke (width 0) (type default))
(uuid 178ac80f-d9d3-4e5f-8295-6282016e26d5)
)
(wire (pts (xy 88.9 105.41) (xy 88.9 110.49))
(stroke (width 0) (type default))
(uuid 18822930-736e-4184-8eef-027ab80fbdb3)
)
(wire (pts (xy 88.9 110.49) (xy 88.9 114.3))
(stroke (width 0) (type default))
(uuid 18e2c041-5465-45b8-92fe-cdb93142024e)
)
(wire (pts (xy 104.14 53.34) (xy 104.14 57.15))
(stroke (width 0) (type default))
(uuid 23a040b8-f2a2-4c72-820a-536ab09a7240)
)
(wire (pts (xy 91.44 50.8) (xy 91.44 53.34))
(stroke (width 0) (type default))
(uuid 27a533b1-c37b-498f-8361-029bdfba58da)
)
(wire (pts (xy 106.68 95.25) (xy 111.76 95.25))
(stroke (width 0) (type default))
(uuid 28a269b6-fa68-48c0-911c-a358f5a15a14)
)
(wire (pts (xy 104.14 53.34) (xy 120.65 53.34))
(stroke (width 0) (type default))
(uuid 33bf54ab-c069-4f32-91c5-47e7e2454b22)
)
(wire (pts (xy 120.65 67.31) (xy 104.14 67.31))
(stroke (width 0) (type default))
(uuid 356f4135-c997-413b-ab9e-238d6cceda2a)
)
(wire (pts (xy 106.68 87.63) (xy 110.49 87.63))
(stroke (width 0) (type default))
(uuid 3b4f2305-dc2a-47fa-a53e-11a96213faa6)
)
(wire (pts (xy 104.14 67.31) (xy 104.14 62.23))
(stroke (width 0) (type default))
(uuid 47c718c1-ac52-49dd-837c-ac3e63c7cc32)
)
(wire (pts (xy 66.04 92.71) (xy 66.04 95.25))
(stroke (width 0) (type default))
(uuid 55520488-2d5e-4c2a-a871-6109fbb2e943)
)
(wire (pts (xy 229.87 58.42) (xy 234.95 58.42))
(stroke (width 0) (type default))
(uuid 5771102b-9c33-42b9-a425-7e723d0a21c8)
)
(wire (pts (xy 106.68 80.01) (xy 115.57 80.01))
(stroke (width 0) (type default))
(uuid 5a59a39c-5d88-4933-a185-d0ad1025fb67)
)
(wire (pts (xy 71.12 85.09) (xy 66.04 85.09))
(stroke (width 0) (type default))
(uuid 5cb8f22c-e5a9-455c-b690-76ab925cc85b)
)
(wire (pts (xy 58.42 53.34) (xy 66.04 53.34))
(stroke (width 0) (type default))
(uuid 5eabe6f4-a971-46bf-ae7f-1cf0fa12ac29)
)
(wire (pts (xy 198.12 83.82) (xy 203.2 83.82))
(stroke (width 0) (type default))
(uuid 76c39ea4-52e5-4bcd-8fbd-66e47af11aff)
)
(wire (pts (xy 198.12 80.01) (xy 198.12 83.82))
(stroke (width 0) (type default))
(uuid 77d88735-09ed-4ed1-b94a-27bb3839c5be)
)
(wire (pts (xy 125.73 106.68) (xy 125.73 110.49))
(stroke (width 0) (type default))
(uuid 77f3a704-7bc8-4132-8927-4c63f11cf469)
)
(wire (pts (xy 71.12 92.71) (xy 66.04 92.71))
(stroke (width 0) (type default))
(uuid 782e7b1d-e1a2-4232-b40b-50c47bd63ded)
)
(wire (pts (xy 66.04 82.55) (xy 71.12 82.55))
(stroke (width 0) (type default))
(uuid 7ff4014c-82b3-4c52-a603-f230046d3fef)
)
(wire (pts (xy 203.2 58.42) (xy 215.9 58.42))
(stroke (width 0) (type default))
(uuid 83054f9a-0242-4dcc-88fd-592825043d2c)
)
(wire (pts (xy 193.04 86.36) (xy 203.2 86.36))
(stroke (width 0) (type default))
(uuid 83665160-c652-4d79-add0-99bdaeb0ebe8)
)
(wire (pts (xy 203.2 58.42) (xy 203.2 59.69))
(stroke (width 0) (type default))
(uuid 92051348-20fe-4967-8ec3-5d83167ba3c3)
)
(wire (pts (xy 111.76 110.49) (xy 88.9 110.49))
(stroke (width 0) (type default))
(uuid 9403f2cc-0b99-4ad1-a4d9-4ee81f43d3fe)
)
(wire (pts (xy 86.36 53.34) (xy 86.36 69.85))
(stroke (width 0) (type default))
(uuid 9724a08b-eb6c-4962-85df-d606089d25a1)
)
(wire (pts (xy 106.68 85.09) (xy 110.49 85.09))
(stroke (width 0) (type default))
(uuid 97fbd1df-9420-4b12-9c49-29eafe9ddf79)
)
(wire (pts (xy 203.2 64.77) (xy 203.2 67.31))
(stroke (width 0) (type default))
(uuid 982c195c-8de3-47db-891d-04172b9b71e0)
)
(wire (pts (xy 232.41 92.71) (xy 232.41 91.44))
(stroke (width 0) (type default))
(uuid a5c7a493-7161-442f-9b13-dec3e28d2320)
)
(wire (pts (xy 215.9 58.42) (xy 215.9 76.2))
(stroke (width 0) (type default))
(uuid a61ff8d2-a964-4ed1-9db7-79ac72be1058)
)
(wire (pts (xy 58.42 72.39) (xy 58.42 80.01))
(stroke (width 0) (type default))
(uuid ae3da103-af1b-43ab-8859-7d3d6135be77)
)
(wire (pts (xy 111.76 110.49) (xy 125.73 110.49))
(stroke (width 0) (type default))
(uuid b101eec1-4222-4104-8c4f-0d308c7ae8f1)
)
(wire (pts (xy 190.5 58.42) (xy 194.31 58.42))
(stroke (width 0) (type default))
(uuid b295dce7-6d35-4187-be9c-824b096744c4)
)
(wire (pts (xy 229.87 64.77) (xy 229.87 67.31))
(stroke (width 0) (type default))
(uuid b3835032-0bd1-4a64-9659-c77800faca9a)
)
(wire (pts (xy 120.65 62.23) (xy 120.65 67.31))
(stroke (width 0) (type default))
(uuid b6785177-7da3-4f49-8ba7-777ac00894fa)
)
(wire (pts (xy 218.44 58.42) (xy 218.44 76.2))
(stroke (width 0) (type default))
(uuid b98f4119-852e-48ec-abca-4d7dc9180ed8)
)
(wire (pts (xy 120.65 68.58) (xy 120.65 67.31))
(stroke (width 0) (type default))
(uuid be53bf30-39b0-46c5-b568-fb9b1b06534d)
)
(wire (pts (xy 66.04 95.25) (xy 71.12 95.25))
(stroke (width 0) (type default))
(uuid bf2ebfb3-3ba3-4797-bac9-cb3c74c4945e)
)
(wire (pts (xy 66.04 95.25) (xy 66.04 110.49))
(stroke (width 0) (type default))
(uuid c03eac86-0817-429c-a852-c62d3198ce47)
)
(wire (pts (xy 194.31 58.42) (xy 194.31 59.69))
(stroke (width 0) (type default))
(uuid c6cb3e47-d429-4380-91bf-c92b21dbf6e9)
)
(wire (pts (xy 58.42 67.31) (xy 58.42 53.34))
(stroke (width 0) (type default))
(uuid c83eb220-80b9-46f4-8e8e-7117d80a2bc7)
)
(wire (pts (xy 125.73 92.71) (xy 106.68 92.71))
(stroke (width 0) (type default))
(uuid c873fb07-9aa9-4b1d-8fca-df61985e7d74)
)
(wire (pts (xy 66.04 85.09) (xy 66.04 92.71))
(stroke (width 0) (type default))
(uuid cb7ad117-96b4-41e2-b7b8-062bbab2f70b)
)
(wire (pts (xy 218.44 58.42) (xy 229.87 58.42))
(stroke (width 0) (type default))
(uuid cf9ca752-1d0c-428f-b37f-cf5f7066c118)
)
(wire (pts (xy 194.31 58.42) (xy 203.2 58.42))
(stroke (width 0) (type default))
(uuid d17ced3f-84f8-4889-879a-3293f3280de6)
)
(wire (pts (xy 53.34 80.01) (xy 58.42 80.01))
(stroke (width 0) (type default))
(uuid d1a848da-7d41-4328-a2ee-3e343e4749ab)
)
(wire (pts (xy 228.6 83.82) (xy 234.95 83.82))
(stroke (width 0) (type default))
(uuid d29f6508-6cd9-4d43-88c7-c1763ba3d734)
)
(wire (pts (xy 66.04 72.39) (xy 66.04 82.55))
(stroke (width 0) (type default))
(uuid d4915396-386b-466b-95de-9340936f8103)
)
(wire (pts (xy 58.42 80.01) (xy 71.12 80.01))
(stroke (width 0) (type default))
(uuid d7048b8b-2954-4a66-a82a-a2b9f8975bfa)
)
(wire (pts (xy 66.04 53.34) (xy 86.36 53.34))
(stroke (width 0) (type default))
(uuid d73a2726-5b52-4811-8c47-fe175e24bf10)
)
(wire (pts (xy 120.65 57.15) (xy 120.65 53.34))
(stroke (width 0) (type default))
(uuid d80534c2-ce81-4551-8d0d-e85efcbdc17b)
)
(wire (pts (xy 190.5 57.15) (xy 190.5 58.42))
(stroke (width 0) (type default))
(uuid d852e509-ed8b-46c1-9c40-fd0bfc7a5203)
)
(wire (pts (xy 215.9 101.6) (xy 215.9 107.95))
(stroke (width 0) (type default))
(uuid d9393b3e-8aa2-496d-be43-bcb26496beb1)
)
(wire (pts (xy 193.04 88.9) (xy 203.2 88.9))
(stroke (width 0) (type default))
(uuid dcd612bb-e68f-4b93-ab2c-40647839f781)
)
(wire (pts (xy 91.44 53.34) (xy 91.44 69.85))
(stroke (width 0) (type default))
(uuid e0af2eb4-a1c7-400e-8309-4f1fcc223357)
)
(wire (pts (xy 111.76 101.6) (xy 111.76 95.25))
(stroke (width 0) (type default))
(uuid e603981c-e916-4b98-87c4-e72d383e435e)
)
(wire (pts (xy 86.36 53.34) (xy 91.44 53.34))
(stroke (width 0) (type default))
(uuid ef4cd528-3e0d-49b2-ad4b-7fb17941711a)
)
(wire (pts (xy 91.44 53.34) (xy 104.14 53.34))
(stroke (width 0) (type default))
(uuid f1d62e55-4e40-4809-9a5c-a057467a60f8)
)
(wire (pts (xy 125.73 92.71) (xy 125.73 101.6))
(stroke (width 0) (type default))
(uuid f360e0f2-1189-4d80-bd8b-de56c3104ae2)
)
(wire (pts (xy 232.41 91.44) (xy 228.6 91.44))
(stroke (width 0) (type default))
(uuid f448de19-abc6-4534-8d0d-0f6f002c5def)
)
(wire (pts (xy 194.31 64.77) (xy 194.31 67.31))
(stroke (width 0) (type default))
(uuid fa6cc503-bf4d-4a04-aaae-224594be74dd)
)
(rectangle (start 160.02 33.02) (end 274.32 125.73)
(stroke (width 0) (type default))
(fill (type none))
(uuid 0972c6ec-464b-4252-a422-4c60be39d6e4)
)
(rectangle (start 35.56 33.02) (end 147.32 125.73)
(stroke (width 0) (type default))
(fill (type none))
(uuid 5fc11c4a-87fe-4a9b-8f95-07ada3d490f9)
)
(text "IMU Circuit\n" (at 114.3 41.91 0)
(effects (font (size 3.5 3.5)) (justify left bottom))
(uuid acde9c0a-7f04-4345-b923-155ddb878ad2)
)
(text "Digital Magnetometer" (at 189.23 46.99 0)
(effects (font (size 3.5 3.5)) (justify left bottom))
(uuid af3bce56-e52a-4590-bb8a-4246d6b840ec)
)
(label "MGN_SCL" (at 193.04 86.36 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 114b6ce6-beb9-4de7-baf5-aea6ee3680f6)
)
(label "MGN_SCL" (at 110.49 87.63 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid c612da26-9631-4f81-ac76-535d6f693d4c)
)
(label "MGN_SDA" (at 193.04 88.9 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid d15421a8-17e8-4f5c-ad4d-d9becf68cc94)
)
(label "MGN_SDA" (at 110.49 85.09 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid e4d1462c-6939-4508-8c13-eede1f5e0bb1)
)
(global_label "SDA" (shape input) (at 53.34 80.01 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 2f9227cc-ae60-4b55-b208-6a961b8d1d2b)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 46.8661 80.01 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "INT_IMU" (shape input) (at 115.57 80.01 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 42285c56-9dcd-4d89-a825-0dd6fabc010e)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 125.8124 80.01 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "SCL" (shape input) (at 53.34 82.55 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 8cc1701d-04b6-431c-bad0-8d3a5e2c1440)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 46.9266 82.55 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(symbol (lib_id "power:GND") (at 215.9 107.95 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 02f3f43e-17e9-431e-b670-025fa652ee1f)
(property "Reference" "#PWR082" (at 215.9 114.3 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (at 215.9 113.03 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 215.9 107.95 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 215.9 107.95 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 4327ce2f-4ed8-43f2-b37f-f229a2394e0d))
(instances
(project "RC-Car-Controller"
(path "/6532ed18-dd14-44a4-a4f8-6383f8135b66/7627e0c1-a993-485b-b38b-14ad3d8f424c"
(reference "#PWR082") (unit 1)
)
)
)
)
(symbol (lib_id "Device:C_Small") (at 125.73 104.14 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 16b12144-4b52-4561-b6d5-a74faf363d98)
(property "Reference" "C52" (at 128.27 102.8763 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "2n2" (at 128.27 105.4163 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (at 125.73 104.14 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 125.73 104.14 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid c5ac1309-be11-4cdc-839b-903e8163910e))
(pin "2" (uuid 661c028f-ae1b-4d12-a4a9-e1e26338e559))
(instances
(project "RC-Car-Controller"
(path "/6532ed18-dd14-44a4-a4f8-6383f8135b66/7627e0c1-a993-485b-b38b-14ad3d8f424c"
(reference "C52") (unit 1)
)
)
)
)
(symbol (lib_id "Device:C_Small") (at 232.41 95.25 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 1bc84c23-6a77-4785-8727-2eaad6744fef)
(property "Reference" "C48" (at 234.95 93.9863 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "220n" (at 234.95 96.5263 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (at 232.41 95.25 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 232.41 95.25 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "2" (uuid 8fdafd48-3e91-4150-8b51-f07c8dd8f18e))
(pin "1" (uuid 460bd632-cf2f-4135-8637-a36e4df73258))
(instances
(project "RC-Car-Controller"
(path "/6532ed18-dd14-44a4-a4f8-6383f8135b66/7627e0c1-a993-485b-b38b-14ad3d8f424c"
(reference "C48") (unit 1)
)
)
)
)
(symbol (lib_id "Device:R_Small") (at 66.04 69.85 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 225a95d3-c337-4d3f-b30f-beeeb9fb1fdf)
(property "Reference" "R18" (at 68.58 69.215 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "1k" (at 68.58 71.755 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Resistor_SMD:R_0402_1005Metric" (at 66.04 69.85 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 66.04 69.85 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 832bb7a1-e228-464f-8297-b85da8e3edf1))
(pin "2" (uuid d5908793-2131-4d68-b848-267f652b3a8c))
(instances
(project "RC-Car-Controller"
(path "/6532ed18-dd14-44a4-a4f8-6383f8135b66/7627e0c1-a993-485b-b38b-14ad3d8f424c"
(reference "R18") (unit 1)
)
)
)
)
(symbol (lib_id "power:+3V3") (at 91.44 50.8 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 26c8a8ed-091c-4b97-b1d9-39f69f27a9ad)
(property "Reference" "#PWR090" (at 91.44 54.61 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "+3V3" (at 91.44 46.99 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 91.44 50.8 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 91.44 50.8 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid affd9e16-48e8-4bc2-b03c-5e1e81fc642f))
(instances
(project "RC-Car-Controller"
(path "/6532ed18-dd14-44a4-a4f8-6383f8135b66/7627e0c1-a993-485b-b38b-14ad3d8f424c"
(reference "#PWR090") (unit 1)
)
)
)
)
(symbol (lib_id "power:+3V3") (at 198.12 80.01 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 290dc1f6-f9d6-4d39-91c0-0332c005dea3)
(property "Reference" "#PWR087" (at 198.12 83.82 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "+3V3" (at 198.12 74.93 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 198.12 80.01 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 198.12 80.01 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid ec06b819-5ad0-4fdb-9fa0-37cb0380dc55))
(instances
(project "RC-Car-Controller"
(path "/6532ed18-dd14-44a4-a4f8-6383f8135b66/7627e0c1-a993-485b-b38b-14ad3d8f424c"
(reference "#PWR087") (unit 1)
)
)
)
)
(symbol (lib_id "Device:C_Small") (at 203.2 62.23 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 29692906-0fa4-4957-b8aa-2dc2f5f5933a)
(property "Reference" "C47" (at 205.74 60.9663 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "100n" (at 205.74 63.5063 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (at 203.2 62.23 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 203.2 62.23 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "2" (uuid a6e04488-a74a-4587-8196-60afeed01616))
(pin "1" (uuid 3e04582d-29ba-41d8-af33-5d725675778e))
(instances
(project "RC-Car-Controller"
(path "/6532ed18-dd14-44a4-a4f8-6383f8135b66/7627e0c1-a993-485b-b38b-14ad3d8f424c"
(reference "C47") (unit 1)
)
)
)
)
(symbol (lib_id "Device:C_Small") (at 104.14 59.69 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 418f4af0-a9f1-4057-9297-33dda3d0d496)
(property "Reference" "C50" (at 106.68 58.4263 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "10n" (at 106.68 60.9663 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (at 104.14 59.69 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 104.14 59.69 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 1f9b88c9-1344-4fd9-96f0-c457f94d1a2a))
(pin "2" (uuid 5704373c-edb5-4ee2-90f3-e725dc58a72f))
(instances
(project "RC-Car-Controller"
(path "/6532ed18-dd14-44a4-a4f8-6383f8135b66/7627e0c1-a993-485b-b38b-14ad3d8f424c"
(reference "C50") (unit 1)
)
)
)
)
(symbol (lib_id "power:GND") (at 232.41 100.33 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 48f45813-7af2-4853-9d3f-84a0ac2e0f6d)
(property "Reference" "#PWR081" (at 232.41 106.68 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (at 232.41 105.41 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 232.41 100.33 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 232.41 100.33 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 6b804fe5-fb13-42f7-9bb7-f731a5848fd5))
(instances
(project "RC-Car-Controller"
(path "/6532ed18-dd14-44a4-a4f8-6383f8135b66/7627e0c1-a993-485b-b38b-14ad3d8f424c"
(reference "#PWR081") (unit 1)
)
)
)
)
(symbol (lib_id "Device:C_Small") (at 111.76 104.14 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 541d0fef-8bef-42af-b709-a1a3099dc660)