-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSensors.kicad_sch
1492 lines (1462 loc) · 53.2 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 fe5d1dc5-d8f8-4761-9b74-5248918e5d28)
(paper "A4")
(title_block
(title "NOVA Flight computer")
(date "2023-03-22")
(rev "v0.0.1")
(company "UCD Aerospace Engineering Team")
(comment 1 "Til Blechschmidt")
)
(lib_symbols
(symbol "Connector_Generic:Conn_01x03" (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" "Conn_01x03" (at 0 -5.08 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" "connector" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Generic connector, single row, 01x03, script generated (kicad-library-utils/schlib/autogen/connector/)" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "Connector*:*_1x??_*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "Conn_01x03_1_1"
(rectangle (start -1.27 -2.413) (end 0 -2.667)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start -1.27 0.127) (end 0 -0.127)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start -1.27 2.667) (end 0 2.413)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start -1.27 3.81) (end 1.27 -3.81)
(stroke (width 0.254) (type default))
(fill (type background))
)
(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))))
)
)
)
(symbol "Device:C" (pin_numbers hide) (pin_names (offset 0.254)) (in_bom yes) (on_board yes)
(property "Reference" "C" (at 0.635 2.54 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "C" (at 0.635 -2.54 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (at 0.9652 -3.81 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "cap capacitor" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Unpolarized capacitor" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "C_*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "C_0_1"
(polyline
(pts
(xy -2.032 -0.762)
(xy 2.032 -0.762)
)
(stroke (width 0.508) (type default))
(fill (type none))
)
(polyline
(pts
(xy -2.032 0.762)
(xy 2.032 0.762)
)
(stroke (width 0.508) (type default))
(fill (type none))
)
)
(symbol "C_1_1"
(pin passive line (at 0 3.81 270) (length 2.794)
(name "~" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -3.81 90) (length 2.794)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Odyssey:LIS2MDL" (in_bom yes) (on_board yes)
(property "Reference" "U" (at -6.35 1.27 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "LIS2MDL" (at 6.35 1.27 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Package_LGA:LGA-12_2x2mm_P0.5mm" (at 0 15.24 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "https://www.st.com/content/ccc/resource/technical/document/datasheet/group3/29/13/d1/e0/9a/4d/4f/30/DM00395193/files/DM00395193.pdf/jcr:content/translations/en.DM00395193.pdf" (at 1.27 12.7 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "LIS2MDL_0_0"
(pin input line (at -10.16 -2.54 0) (length 2.54)
(name "SPC" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 1.27 2.54 270) (length 2.54)
(name "VDD_IO" (effects (font (size 1.27 1.27))))
(number "10" (effects (font (size 1.27 1.27))))
)
(pin input line (at -10.16 -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 input line (at -10.16 -7.62 0) (length 2.54)
(name "SDI" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin input line (at 10.16 -6.35 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 -1.27 -15.24 90) (length 2.54)
(name "GND" (effects (font (size 1.27 1.27))))
(number "6" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -10.16 -10.16 0) (length 2.54)
(name "SDO" (effects (font (size 1.27 1.27))))
(number "7" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 1.27 -15.24 90) (length 2.54)
(name "GND" (effects (font (size 1.27 1.27))))
(number "8" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at -1.27 2.54 270) (length 2.54)
(name "VDD" (effects (font (size 1.27 1.27))))
(number "9" (effects (font (size 1.27 1.27))))
)
)
(symbol "LIS2MDL_1_0"
(pin no_connect line (at 10.16 -8.89 180) (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 -11.43 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 -3.81 180) (length 2.54) hide
(name "NC" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
(symbol "LIS2MDL_1_1"
(rectangle (start -7.62 0) (end 7.62 -12.7)
(stroke (width 0) (type default))
(fill (type background))
)
)
)
(symbol "Odyssey:LSM6DSO32" (in_bom yes) (on_board yes)
(property "Reference" "U" (at -10.16 1.27 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "LSM6DSO32" (at 11.43 1.27 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Package_LGA:LGA-14_3x2.5mm_P0.5mm_LayoutBorder3x4y" (at 5.08 15.24 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "https://www.st.com/resource/en/datasheet/lsm6dso32.pdf" (at 0 17.78 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "IMU" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Accelerometer & Gyroscope" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "LSM6DSO32_0_0"
(pin input line (at -12.7 -6.35 0) (length 2.54)
(name "CS" (effects (font (size 1.27 1.27))))
(number "12" (effects (font (size 1.27 1.27))))
)
(pin input line (at -12.7 -8.89 0) (length 2.54)
(name "SCL" (effects (font (size 1.27 1.27))))
(number "13" (effects (font (size 1.27 1.27))))
)
(pin input line (at -12.7 -11.43 0) (length 2.54)
(name "SDI" (effects (font (size 1.27 1.27))))
(number "14" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at -3.81 2.54 270) (length 2.54)
(name "VDDIO" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at -1.27 2.54 270) (length 2.54)
(name "VDDIO" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin output line (at 12.7 -6.35 180) (length 2.54)
(name "INT1" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 1.27 2.54 270) (length 2.54)
(name "VDDIO" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at -1.27 -16.51 90) (length 2.54)
(name "GND" (effects (font (size 1.27 1.27))))
(number "6" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 1.27 -16.51 90) (length 2.54)
(name "GND" (effects (font (size 1.27 1.27))))
(number "7" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 3.81 2.54 270) (length 2.54)
(name "VDD" (effects (font (size 1.27 1.27))))
(number "8" (effects (font (size 1.27 1.27))))
)
(pin output line (at 12.7 -8.89 180) (length 2.54)
(name "INT2" (effects (font (size 1.27 1.27))))
(number "9" (effects (font (size 1.27 1.27))))
)
)
(symbol "LSM6DSO32_1_0"
(pin bidirectional line (at -12.7 -3.81 0) (length 2.54)
(name "SDO" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin no_connect line (at 0 22.86 0) (length 2.54) hide
(name "NC" (effects (font (size 1.27 1.27))))
(number "10" (effects (font (size 1.27 1.27))))
)
(pin no_connect line (at 0 20.32 0) (length 2.54) hide
(name "NC" (effects (font (size 1.27 1.27))))
(number "11" (effects (font (size 1.27 1.27))))
)
)
(symbol "LSM6DSO32_1_1"
(rectangle (start -10.16 0) (end 10.16 -13.97)
(stroke (width 0) (type default))
(fill (type background))
)
)
)
(symbol "Sensor_Pressure:MS5611-01BA" (in_bom yes) (on_board yes)
(property "Reference" "U" (at -6.35 8.89 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "MS5611-01BA" (at 7.62 8.89 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Package_LGA:LGA-8_3x5mm_P1.25mm" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "https://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=MS5611-01BA03&DocType=Data+Sheet&DocLang=English" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "pressure SPI I2C" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Barometric pressure sensor, 10cm resolution, 10 to 1200 mbar, I2C and SPI interface up to 20MHz, LGA-8" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "LGA*3x5mm*P1.25mm*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "MS5611-01BA_0_1"
(rectangle (start -7.62 7.62) (end 7.62 -7.62)
(stroke (width 0.254) (type default))
(fill (type background))
)
)
(symbol "MS5611-01BA_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 -10.16 5.08 0) (length 2.54)
(name "PS" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 0 -10.16 90) (length 2.54)
(name "GND" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin input line (at -10.16 -5.08 0) (length 2.54)
(name "CSB" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin input line (at -10.16 -5.08 0) (length 2.54) hide
(name "CSB" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
(pin output line (at -10.16 2.54 0) (length 2.54)
(name "SDO" (effects (font (size 1.27 1.27))))
(number "6" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -10.16 0 0) (length 2.54)
(name "SDI/SDA" (effects (font (size 1.27 1.27))))
(number "7" (effects (font (size 1.27 1.27))))
)
(pin input line (at -10.16 -2.54 0) (length 2.54)
(name "SCLK" (effects (font (size 1.27 1.27))))
(number "8" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "power:+3.3V" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "#PWR" (at 0 -3.81 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "+3.3V" (at 0 3.556 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "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 \"+3.3V\"" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "+3.3V_0_1"
(polyline
(pts
(xy -0.762 1.27)
(xy 0 2.54)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0 0)
(xy 0 2.54)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0 2.54)
(xy 0.762 1.27)
)
(stroke (width 0) (type default))
(fill (type none))
)
)
(symbol "+3.3V_1_1"
(pin power_in line (at 0 0 90) (length 0) hide
(name "+3.3V" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "power:+3.3VA" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "#PWR" (at 0 -3.81 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "+3.3VA" (at 0 3.556 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "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 \"+3.3VA\"" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "+3.3VA_0_1"
(polyline
(pts
(xy -0.762 1.27)
(xy 0 2.54)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0 0)
(xy 0 2.54)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0 2.54)
(xy 0.762 1.27)
)
(stroke (width 0) (type default))
(fill (type none))
)
)
(symbol "+3.3VA_1_1"
(pin power_in line (at 0 0 90) (length 0) hide
(name "+3.3VA" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "power: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 132.08 96.52) (diameter 0) (color 0 0 0 0)
(uuid 2575c825-81a5-4f85-b3fa-e8cc63803079)
)
(junction (at 180.34 91.44) (diameter 0) (color 0 0 0 0)
(uuid 376a28b8-ab1b-4f6c-8eba-22e307e32ff8)
)
(junction (at 201.93 121.92) (diameter 0) (color 0 0 0 0)
(uuid 4b073f19-17f9-4f38-afc7-6b562c3f24e7)
)
(junction (at 207.01 124.46) (diameter 0) (color 0 0 0 0)
(uuid 4b908e8f-1cf3-42b5-861d-a7f92e5bf4a2)
)
(junction (at 193.04 88.9) (diameter 0) (color 0 0 0 0)
(uuid 54712926-8d06-4a3c-b356-9c39fe90a00b)
)
(junction (at 157.48 109.22) (diameter 0) (color 0 0 0 0)
(uuid 591f6167-40d9-4cb4-aafa-80f1ecd350b9)
)
(junction (at 69.85 109.22) (diameter 0) (color 0 0 0 0)
(uuid 6e823dfd-876d-4c02-ba02-50f7630e0880)
)
(junction (at 144.78 119.38) (diameter 0) (color 0 0 0 0)
(uuid 93ea9a86-f075-4f93-816e-a2068c079bef)
)
(junction (at 139.7 109.22) (diameter 0) (color 0 0 0 0)
(uuid 961a1b0e-7ce2-4367-a5ad-41d92366d2ed)
)
(junction (at 147.32 124.46) (diameter 0) (color 0 0 0 0)
(uuid 965c7f39-0b0c-4564-bdff-f9fc7862c1f1)
)
(junction (at 97.79 121.92) (diameter 0) (color 0 0 0 0)
(uuid 976f8ce4-7258-412c-ba44-b4ae1e3fecbb)
)
(junction (at 217.17 93.98) (diameter 0) (color 0 0 0 0)
(uuid 9c778e7d-9d6a-4d22-b6e6-2ae10b5e6ce9)
)
(junction (at 69.85 96.52) (diameter 0) (color 0 0 0 0)
(uuid b1936a0e-d40f-451a-bce7-386119c3353d)
)
(junction (at 82.55 93.98) (diameter 0) (color 0 0 0 0)
(uuid b83aa323-4b90-4b3e-a4db-b3d8a6383951)
)
(junction (at 194.31 93.98) (diameter 0) (color 0 0 0 0)
(uuid c764378a-f17a-4639-b8b7-576d60d9ddf3)
)
(junction (at 209.55 119.38) (diameter 0) (color 0 0 0 0)
(uuid c9c93b00-1869-4915-bddf-9dd46b4b721f)
)
(junction (at 142.24 121.92) (diameter 0) (color 0 0 0 0)
(uuid cb2a4759-649e-43f3-a1cf-1609db501594)
)
(junction (at 95.25 119.38) (diameter 0) (color 0 0 0 0)
(uuid cc4c1b14-2ab4-4d73-82bc-68ae754065d3)
)
(junction (at 105.41 93.98) (diameter 0) (color 0 0 0 0)
(uuid cdaed4bf-6a5b-428d-8154-6aed37064a2f)
)
(junction (at 193.04 109.22) (diameter 0) (color 0 0 0 0)
(uuid d259d21d-8919-43cb-9fbc-722706df761d)
)
(junction (at 194.31 91.44) (diameter 0) (color 0 0 0 0)
(uuid e563cc86-8ef5-4acf-8767-aed87caeaf4d)
)
(junction (at 58.42 96.52) (diameter 0) (color 0 0 0 0)
(uuid f07fb32c-64e4-4189-b7b5-92cc427f00c7)
)
(junction (at 90.17 124.46) (diameter 0) (color 0 0 0 0)
(uuid f248ec36-214c-4421-848f-f9410dfa2fb7)
)
(junction (at 82.55 109.22) (diameter 0) (color 0 0 0 0)
(uuid fdd752db-78fb-4376-8016-d49e15eb65f2)
)
(junction (at 105.41 96.52) (diameter 0) (color 0 0 0 0)
(uuid fe4ef477-8731-4f12-a129-76ea5dc6c935)
)
(no_connect (at 207.01 80.01) (uuid 25e24b07-a196-446f-b7cd-c9857ea60c1a))
(wire (pts (xy 82.55 93.98) (xy 82.55 99.06))
(stroke (width 0) (type default))
(uuid 00a43885-fa93-4c81-b380-b64fa4d94915)
)
(wire (pts (xy 82.55 109.22) (xy 82.55 111.76))
(stroke (width 0) (type default))
(uuid 00e19428-dc64-4688-87a7-67a10b280d97)
)
(wire (pts (xy 69.85 96.52) (xy 69.85 99.06))
(stroke (width 0) (type default))
(uuid 022b4793-d0a0-4681-ad42-7e79c1190584)
)
(wire (pts (xy 58.42 86.36) (xy 58.42 96.52))
(stroke (width 0) (type default))
(uuid 06ea46ce-f4fe-4ad5-ba41-b7795cd337d1)
)
(wire (pts (xy 95.25 105.41) (xy 95.25 119.38))
(stroke (width 0) (type default))
(uuid 08165eb1-ccf1-4553-9181-e8c26d10561c)
)
(wire (pts (xy 58.42 96.52) (xy 69.85 96.52))
(stroke (width 0) (type default))
(uuid 0b9bb62f-a4ff-4163-a2f0-1466d6ecb54a)
)
(wire (pts (xy 105.41 92.71) (xy 105.41 93.98))
(stroke (width 0) (type default))
(uuid 0d40aca6-0538-4977-a66a-746a805d5112)
)
(wire (pts (xy 90.17 105.41) (xy 90.17 124.46))
(stroke (width 0) (type default))
(uuid 129a34dd-35a2-4cb0-ac5e-a8b72a037965)
)
(wire (pts (xy 149.86 106.68) (xy 149.86 127))
(stroke (width 0) (type default))
(uuid 1a041f2b-8dba-4ee3-b9c1-bfc7828d8b51)
)
(wire (pts (xy 193.04 106.68) (xy 193.04 109.22))
(stroke (width 0) (type default))
(uuid 206e39d6-231c-43f1-ae37-af70614de511)
)
(wire (pts (xy 58.42 109.22) (xy 69.85 109.22))
(stroke (width 0) (type default))
(uuid 21a55c05-7e35-4180-b484-0f0f9d89c494)
)
(wire (pts (xy 180.34 91.44) (xy 180.34 99.06))
(stroke (width 0) (type default))
(uuid 29cc3457-34c4-427a-ab8f-0f75120bc569)
)
(wire (pts (xy 142.24 121.92) (xy 201.93 121.92))
(stroke (width 0) (type default))
(uuid 2bb4179f-9a2e-4d07-a89a-07de51541ff6)
)
(wire (pts (xy 157.48 109.22) (xy 157.48 111.76))
(stroke (width 0) (type default))
(uuid 2de297ff-954d-4fec-8a47-707ccd62afc3)
)
(wire (pts (xy 180.34 86.36) (xy 180.34 91.44))
(stroke (width 0) (type default))
(uuid 31f772ab-65c5-450f-b9cb-9f4fb199de48)
)
(wire (pts (xy 90.17 124.46) (xy 147.32 124.46))
(stroke (width 0) (type default))
(uuid 33facb38-82d9-4828-8b2b-4b528d69fcb4)
)
(wire (pts (xy 180.34 109.22) (xy 193.04 109.22))
(stroke (width 0) (type default))
(uuid 38bdebd3-2dac-4a78-a25e-6483bf01255c)
)
(wire (pts (xy 193.04 109.22) (xy 193.04 111.76))
(stroke (width 0) (type default))
(uuid 40f8471e-4e18-46cb-b8d9-17c47beaaa98)
)
(wire (pts (xy 139.7 109.22) (xy 157.48 109.22))
(stroke (width 0) (type default))
(uuid 41cd5ed9-a874-45c2-9c70-930676bf3838)
)
(wire (pts (xy 95.25 119.38) (xy 144.78 119.38))
(stroke (width 0) (type default))
(uuid 469f61c5-2513-45ac-9bf8-46f1d49f2c30)
)
(wire (pts (xy 142.24 106.68) (xy 142.24 121.92))
(stroke (width 0) (type default))
(uuid 496b782d-bea6-426d-9890-ad8c726fcab2)
)
(wire (pts (xy 214.63 93.98) (xy 217.17 93.98))
(stroke (width 0) (type default))
(uuid 4a14e13a-30fc-4c38-866b-939a403bff9a)
)
(wire (pts (xy 214.63 91.44) (xy 217.17 91.44))
(stroke (width 0) (type default))
(uuid 532cb401-1d93-4702-a96f-296b660f0e79)
)
(wire (pts (xy 50.8 119.38) (xy 95.25 119.38))
(stroke (width 0) (type default))
(uuid 53c61749-b856-48ac-b4d0-869f6fc72f27)
)
(wire (pts (xy 193.04 88.9) (xy 193.04 86.36))
(stroke (width 0) (type default))
(uuid 54fe378d-14b3-47f9-aaa2-80ae598b8811)
)
(wire (pts (xy 69.85 96.52) (xy 85.09 96.52))
(stroke (width 0) (type default))
(uuid 590de4d9-3b1e-41f5-a3f6-6b511becca99)
)
(wire (pts (xy 132.08 86.36) (xy 132.08 96.52))
(stroke (width 0) (type default))
(uuid 66e48f8f-868f-4e21-b142-7ae9b964e4f8)
)
(wire (pts (xy 105.41 83.82) (xy 93.98 83.82))
(stroke (width 0) (type default))
(uuid 709eada6-7751-429e-98da-036fc2cf06ec)
)
(wire (pts (xy 180.34 106.68) (xy 180.34 109.22))
(stroke (width 0) (type default))
(uuid 71dec029-a2f4-4a42-a2b6-a61daec33b4d)
)
(wire (pts (xy 69.85 106.68) (xy 69.85 109.22))
(stroke (width 0) (type default))
(uuid 753a510e-edac-4ec2-829e-ca7301de97b1)
)
(wire (pts (xy 194.31 91.44) (xy 194.31 93.98))
(stroke (width 0) (type default))
(uuid 759345c8-2aa4-4e37-b760-c6ed5d5445bf)
)
(wire (pts (xy 50.8 121.92) (xy 97.79 121.92))
(stroke (width 0) (type default))
(uuid 7bc0317b-76dd-49c5-88f6-9a7ef45846e6)
)
(wire (pts (xy 147.32 124.46) (xy 207.01 124.46))
(stroke (width 0) (type default))
(uuid 7dced05b-8f05-4435-8aee-d31b9f011259)
)
(wire (pts (xy 69.85 109.22) (xy 82.55 109.22))
(stroke (width 0) (type default))
(uuid 80159c66-5fc2-4a3c-87d3-af82fd820119)
)
(wire (pts (xy 58.42 106.68) (xy 58.42 109.22))
(stroke (width 0) (type default))
(uuid 85dd6ceb-5fcf-4c7e-b6c5-2604967080c9)
)
(wire (pts (xy 204.47 127) (xy 207.01 127))
(stroke (width 0) (type default))
(uuid 861d4795-2771-4381-8271-fd570f52ebeb)
)
(wire (pts (xy 105.41 96.52) (xy 105.41 111.76))
(stroke (width 0) (type default))
(uuid 8750945d-239e-488e-a24b-ca4c7a595edd)
)
(wire (pts (xy 93.98 83.82) (xy 93.98 85.09))
(stroke (width 0) (type default))
(uuid 8d76b4cf-5c44-4d50-a96e-7517f209da4e)
)
(wire (pts (xy 82.55 86.36) (xy 82.55 93.98))
(stroke (width 0) (type default))
(uuid 8fa3fe4c-0fa1-455b-bd61-01894ddf11bc)
)
(wire (pts (xy 201.93 105.41) (xy 201.93 121.92))
(stroke (width 0) (type default))
(uuid 92c77b20-bb88-49ef-84fc-68f34767a5b7)
)
(wire (pts (xy 149.86 127) (xy 152.4 127))
(stroke (width 0) (type default))
(uuid 96c2ff0e-9261-4a58-b08a-89f868bb1755)
)
(wire (pts (xy 180.34 91.44) (xy 194.31 91.44))
(stroke (width 0) (type default))
(uuid 9827567a-93c6-4ff8-8618-0ab7fd4161a4)
)
(wire (pts (xy 201.93 121.92) (xy 222.25 121.92))
(stroke (width 0) (type default))
(uuid 9aa5324d-e398-4e68-9fd6-e63ec2de6629)
)
(wire (pts (xy 194.31 91.44) (xy 195.58 91.44))
(stroke (width 0) (type default))
(uuid a011e800-f5a0-4623-bcd7-1f90c5df1d94)
)
(wire (pts (xy 207.01 124.46) (xy 222.25 124.46))
(stroke (width 0) (type default))
(uuid a15b4d3e-b229-4cbf-9fcb-902c204c4001)
)
(wire (pts (xy 58.42 99.06) (xy 58.42 96.52))
(stroke (width 0) (type default))
(uuid a3894eb4-0a4d-4b88-ae83-166526050cd3)
)
(wire (pts (xy 92.71 127) (xy 95.25 127))
(stroke (width 0) (type default))
(uuid a61ed3be-6133-4f0e-8dd4-5c73f30f4b33)
)
(wire (pts (xy 193.04 88.9) (xy 193.04 99.06))
(stroke (width 0) (type default))
(uuid a7ff06a1-c9eb-4a89-bdb3-9be91f4cb382)
)
(wire (pts (xy 207.01 105.41) (xy 207.01 124.46))
(stroke (width 0) (type default))
(uuid a9a551cf-f989-4d97-bb83-325c442e865b)
)
(wire (pts (xy 209.55 119.38) (xy 222.25 119.38))
(stroke (width 0) (type default))
(uuid a9c515dc-4a09-4e32-bf4a-79ad36f843ee)
)
(wire (pts (xy 97.79 121.92) (xy 142.24 121.92))
(stroke (width 0) (type default))
(uuid ab455757-5fe7-4caa-938d-8afe8fa6687c)
)
(wire (pts (xy 209.55 105.41) (xy 209.55 119.38))
(stroke (width 0) (type default))
(uuid ab79894f-d7c0-49bb-ab84-887a402bf439)
)
(wire (pts (xy 50.8 124.46) (xy 90.17 124.46))
(stroke (width 0) (type default))
(uuid b51c79bd-d64e-4316-a390-4ace6c25c862)
)
(wire (pts (xy 217.17 91.44) (xy 217.17 93.98))
(stroke (width 0) (type default))
(uuid b76c3d97-39f9-4b71-b6a4-03a37ef2b886)
)
(wire (pts (xy 194.31 93.98) (xy 194.31 96.52))
(stroke (width 0) (type default))
(uuid b7bb39d3-91c2-4e7d-a9b9-96cc7220563d)
)
(wire (pts (xy 102.87 96.52) (xy 105.41 96.52))
(stroke (width 0) (type default))
(uuid b97e6474-3a59-413f-bd7e-e6fe3697d2f6)
)
(wire (pts (xy 134.62 96.52) (xy 132.08 96.52))
(stroke (width 0) (type default))
(uuid bb6d455c-7acf-4e6b-8c53-3d49315773a9)
)
(wire (pts (xy 82.55 93.98) (xy 85.09 93.98))
(stroke (width 0) (type default))
(uuid bbec50c7-2e14-4c75-8e5c-68135d601823)
)
(wire (pts (xy 195.58 88.9) (xy 193.04 88.9))
(stroke (width 0) (type default))
(uuid be211e0f-1812-4081-b2ab-627975f33f4a)
)
(wire (pts (xy 105.41 85.09) (xy 105.41 83.82))
(stroke (width 0) (type default))
(uuid bfb2ceb1-38ba-4f9d-a8e8-fbd7e778806a)
)
(wire (pts (xy 132.08 106.68) (xy 132.08 109.22))
(stroke (width 0) (type default))
(uuid c3669d20-1e4f-419c-9f64-d4b3dd5fac91)
)
(wire (pts (xy 132.08 109.22) (xy 139.7 109.22))
(stroke (width 0) (type default))
(uuid c8655209-6f4b-4936-a175-de6fd144d817)
)
(wire (pts (xy 217.17 93.98) (xy 217.17 111.76))
(stroke (width 0) (type default))
(uuid ca77b83b-7964-49be-b9fc-4fdcc66e5977)
)
(wire (pts (xy 82.55 106.68) (xy 82.55 109.22))
(stroke (width 0) (type default))
(uuid cd8a7f6f-5423-476e-94e9-337e8194cbd6)
)
(wire (pts (xy 139.7 106.68) (xy 139.7 109.22))
(stroke (width 0) (type default))
(uuid cee3af34-873e-438b-a2fe-8150698280ad)
)
(wire (pts (xy 195.58 96.52) (xy 194.31 96.52))
(stroke (width 0) (type default))
(uuid d3a5bb9a-7dca-45d5-9af9-0dc8fa3e7eeb)
)
(wire (pts (xy 204.47 105.41) (xy 204.47 127))
(stroke (width 0) (type default))
(uuid dd77818e-6b4a-4638-8197-c638a18f39d2)
)
(wire (pts (xy 157.48 96.52) (xy 157.48 109.22))
(stroke (width 0) (type default))
(uuid e3e8e53d-ed59-4aa5-8c26-7211a4e74646)
)
(wire (pts (xy 92.71 105.41) (xy 92.71 127))
(stroke (width 0) (type default))
(uuid e3f903a7-91ec-4fb2-aff7-fc23a7de2d72)
)
(wire (pts (xy 97.79 105.41) (xy 97.79 121.92))
(stroke (width 0) (type default))
(uuid e45757de-ddb1-438b-942e-11be03cc02ee)
)
(wire (pts (xy 209.55 119.38) (xy 144.78 119.38))
(stroke (width 0) (type default))
(uuid e61a3980-6359-4493-9697-a8a42551a728)
)
(wire (pts (xy 154.94 96.52) (xy 157.48 96.52))
(stroke (width 0) (type default))
(uuid e6567d38-c328-4924-b4f6-81d2d85329ae)
)
(wire (pts (xy 105.41 93.98) (xy 105.41 96.52))
(stroke (width 0) (type default))
(uuid e6b095ab-5103-4800-bf70-f7a474628d3a)
)
(wire (pts (xy 102.87 93.98) (xy 105.41 93.98))
(stroke (width 0) (type default))
(uuid e8358fb8-3e08-4209-a682-610a8a629a71)
)
(wire (pts (xy 204.47 68.58) (xy 204.47 80.01))
(stroke (width 0) (type default))
(uuid eb33d7ee-543a-4261-9bfa-3a6a377e1c0c)
)
(wire (pts (xy 144.78 106.68) (xy 144.78 119.38))
(stroke (width 0) (type default))
(uuid ec297fcf-5f0a-41bb-a33b-5dd5e8ce0687)
)
(wire (pts (xy 132.08 96.52) (xy 132.08 99.06))
(stroke (width 0) (type default))
(uuid f6a908d2-dd46-4e41-9cae-e500600adcdb)
)
(wire (pts (xy 195.58 93.98) (xy 194.31 93.98))
(stroke (width 0) (type default))
(uuid fac78711-92d3-4e27-aa10-e6aa239f72c2)
)
(wire (pts (xy 147.32 106.68) (xy 147.32 124.46))
(stroke (width 0) (type default))
(uuid fcb772f0-5057-4397-a61a-5bbbe3a92127)
)
(text "Sensors" (at 116.332 50.8 0)
(effects (font (size 10 10) (thickness 1) bold) (justify left bottom))
(uuid 2c5808d4-f438-44b6-ad2d-e56510316019)
)
(text "Barometer" (at 139.954 136.652 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 582cb43f-0095-4072-9437-5a3a6315ab48)
)
(text "Accel + Gyro" (at 199.39 136.652 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 588fffa6-1b69-4d34-829d-9888ea6a5329)
)
(text "Magnetometer" (at 87.376 136.652 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid e183520e-4171-4b29-8558-32c5475dfb4a)
)
(hierarchical_label "SPI_SCK" (shape input) (at 50.8 124.46 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 11750e22-4384-438f-8cc7-3f16f687edb0)
)
(hierarchical_label "SPI_MISO" (shape input) (at 50.8 121.92 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 138a6315-c47f-43ed-b990-00efdff22139)
)
(hierarchical_label "SPI_CS_BARO" (shape input) (at 152.4 127 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 528259fb-4b51-46ef-ae9e-a1f091ab3ca9)
)
(hierarchical_label "SPI_MOSI" (shape input) (at 50.8 119.38 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 5be3ad57-e84f-4642-9c1b-70022d7c9fb7)
)
(hierarchical_label "SPI_CS_MAGN" (shape input) (at 95.25 127 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 6e302af7-db9e-4513-b938-d5210d148980)
)
(hierarchical_label "INT_IMU" (shape input) (at 204.47 68.58 90) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid d307f27b-8f45-464f-b849-d0fc640323bc)
)
(hierarchical_label "SPI_CS_IMU" (shape input) (at 207.01 127 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid e0c802ff-5fd9-42ce-b6f2-9b28279997da)
)
(symbol (lib_id "Device:C") (at 58.42 102.87 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 0aed79fa-299b-4111-8a1c-df2be3cde02c)
(property "Reference" "C26" (at 50.546 101.6 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "10u" (at 50.546 104.14 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (at 59.3852 106.68 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 58.42 102.87 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid e30a2e4c-5e4f-4120-9304-55466d81fa33))
(pin "2" (uuid 6e14de3f-3042-449f-9e47-d9942d09b535))
(instances
(project "Nova"
(path "/0c006d9f-ae30-49aa-ab15-ff0bec4de0e8/b4564e06-ae37-4733-9020-dc4bb7ce2d2c"
(reference "C26") (unit 1)
)
)
)
)
(symbol (lib_id "power:GND") (at 105.41 111.76 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 3331be1b-8f98-4e06-bbec-cf25938e8db2)
(property "Reference" "#PWR052" (at 105.41 118.11 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (at 105.41 115.57 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 105.41 111.76 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 105.41 111.76 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid eeda7afa-914d-4249-b8e5-87a56366169b))
(instances
(project "Nova"
(path "/0c006d9f-ae30-49aa-ab15-ff0bec4de0e8/b4564e06-ae37-4733-9020-dc4bb7ce2d2c"
(reference "#PWR052") (unit 1)
)
)
)
)
(symbol (lib_id "power:GND") (at 193.04 111.76 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 3a98b3ff-ca6b-4531-8830-505deb491a84)
(property "Reference" "#PWR054" (at 193.04 118.11 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (at 193.04 115.57 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 193.04 111.76 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 193.04 111.76 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 46ea6e6a-b9c8-43b7-aab7-5527e31d6164))
(instances
(project "Nova"
(path "/0c006d9f-ae30-49aa-ab15-ff0bec4de0e8/b4564e06-ae37-4733-9020-dc4bb7ce2d2c"
(reference "#PWR054") (unit 1)
)
)