-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathAutodrone_V2.kicad_sch
1880 lines (1853 loc) · 85.8 KB
/
Autodrone_V2.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 20211123) (generator eeschema)
(uuid e63e39d7-6ac0-4ffd-8aa3-1841a4541b55)
(paper "A4")
(lib_symbols
(symbol "JPW_Symbols:Arrow" (in_bom yes) (on_board yes)
(property "Reference" "L" (id 0) (at 0 0 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "Arrow" (id 1) (at 0 0 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "JPW_Footprints:Arrow" (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)
)
)
(symbol "JPW_Symbols:EGA" (in_bom yes) (on_board yes)
(property "Reference" "L" (id 0) (at 0 0 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "EGA" (id 1) (at 0 0 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "JPW_Footprints:EGA" (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)
)
)
(symbol "JPW_Symbols:LED" (in_bom yes) (on_board yes)
(property "Reference" "L" (id 0) (at 0 0 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "LED" (id 1) (at 0 0 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "JPW_Footprints:LED" (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)
)
)
(symbol "JPW_Symbols:WRC" (in_bom yes) (on_board yes)
(property "Reference" "L" (id 0) (at 0 0 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "WRC" (id 1) (at 0 0 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "JPW_Footprints:WRC2" (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)
)
)
(symbol "Mechanical:MountingHole_Pad" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
(property "Reference" "H" (id 0) (at 0 6.35 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "MountingHole_Pad" (id 1) (at 0 4.445 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" "mounting hole" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Mounting Hole with connection" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "MountingHole*Pad*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "MountingHole_Pad_0_1"
(circle (center 0 1.27) (radius 1.27)
(stroke (width 1.27) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "MountingHole_Pad_1_1"
(pin input line (at 0 -2.54 90) (length 2.54)
(name "1" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "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 173.99 116.84) (diameter 0) (color 0 0 0 0)
(uuid 2bef89de-08c7-4a13-9d85-67948d429ca0)
)
(junction (at 173.99 110.49) (diameter 0) (color 0 0 0 0)
(uuid 37e4dc66-4492-4061-908d-7213940a2ec3)
)
(junction (at 173.99 123.19) (diameter 0) (color 0 0 0 0)
(uuid cb868d2e-5efb-4bfb-8796-88435b326918)
)
(wire (pts (xy 135.89 153.67) (xy 132.08 153.67))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0147f16a-c952-4891-8f53-a9fb8cddeb8d)
)
(wire (pts (xy 100.33 101.6) (xy 104.14 101.6))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 03c52831-5dc5-43c5-a442-8d23643b46fb)
)
(wire (pts (xy 132.08 142.24) (xy 135.89 142.24))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 120a7b0f-ddfd-4447-85c1-35665465acdb)
)
(wire (pts (xy 100.33 111.76) (xy 104.14 111.76))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 13475e15-f37c-4de8-857e-1722b0c39513)
)
(wire (pts (xy 100.33 114.3) (xy 104.14 114.3))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2732632c-4768-42b6-bf7f-14643424019e)
)
(wire (pts (xy 173.99 110.49) (xy 173.99 116.84))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 29256b3d-9450-4c0a-a4d4-911f04b9c140)
)
(wire (pts (xy 100.33 86.36) (xy 104.14 86.36))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2f3deced-880d-4075-a81b-95c62da5b94d)
)
(wire (pts (xy 100.33 82.55) (xy 104.14 82.55))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3f5fe6b7-98fc-4d3e-9567-f9f7202d1455)
)
(wire (pts (xy 177.8 110.49) (xy 173.99 110.49))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 483f60da-14d7-4f88-8d01-3f9f30784c70)
)
(wire (pts (xy 135.89 147.32) (xy 132.08 147.32))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 48f827a8-6e22-4a2e-abdc-c2a03098d883)
)
(wire (pts (xy 100.33 88.9) (xy 104.14 88.9))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4d609e7c-74c9-4ae9-a26d-946ff00c167d)
)
(wire (pts (xy 104.14 127) (xy 100.33 127))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4e3d7c0d-12e3-42f2-b944-e4bcdbbcac2a)
)
(wire (pts (xy 132.08 73.66) (xy 135.89 73.66))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 55992e35-fe7b-468a-9b7a-1e4dc931b904)
)
(wire (pts (xy 100.33 107.95) (xy 104.14 107.95))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5740c959-93d8-47fd-8f68-62f0109e753d)
)
(wire (pts (xy 132.08 124.46) (xy 135.89 124.46))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 58dc14f9-c158-4824-a84e-24a6a482a7a4)
)
(wire (pts (xy 132.08 95.25) (xy 135.89 95.25))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5b2b5c7d-f943-4634-9f0a-e9561705c49d)
)
(wire (pts (xy 100.33 80.01) (xy 104.14 80.01))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5cbb5968-dbb5-4b84-864a-ead1cacf75b9)
)
(wire (pts (xy 104.14 133.35) (xy 100.33 133.35))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 6a44418c-7bb4-4e99-8836-57f153c19721)
)
(wire (pts (xy 173.99 116.84) (xy 173.99 123.19))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 6ca3c38c-4e71-4202-b6c1-1b25f04a27ae)
)
(wire (pts (xy 100.33 68.58) (xy 104.14 68.58))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 786b6072-5772-4bc1-8eeb-6c4e19f2a91b)
)
(wire (pts (xy 100.33 76.2) (xy 104.14 76.2))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 7e08f2a4-63d6-468b-bd8b-ec607077e023)
)
(wire (pts (xy 177.8 104.14) (xy 173.99 104.14))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 7e969d15-6cc0-4258-8b27-586608a21adb)
)
(wire (pts (xy 100.33 118.11) (xy 104.14 118.11))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 854dd5d4-5fd2-4730-bd49-a9cd8299a065)
)
(wire (pts (xy 132.08 144.78) (xy 135.89 144.78))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8d55e186-3e11-40e8-a65e-b36a8a00069e)
)
(wire (pts (xy 132.08 109.22) (xy 135.89 109.22))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 9702d639-3b1f-4825-8985-b32b9008503d)
)
(wire (pts (xy 100.33 71.12) (xy 104.14 71.12))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 9a9f2d82-f64d-4264-8bec-c182528fc4de)
)
(wire (pts (xy 132.08 90.17) (xy 135.89 90.17))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 9c8ccb2a-b1e9-4f2c-94fe-301b5975277e)
)
(wire (pts (xy 135.89 92.71) (xy 132.08 92.71))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a03e565f-d8cd-4032-aae3-b7327d4143dd)
)
(wire (pts (xy 132.08 76.2) (xy 135.89 76.2))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a06e8e78-f567-42e6-b645-013b1073ca31)
)
(wire (pts (xy 100.33 130.81) (xy 104.14 130.81))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid aa02e544-13f5-4cf8-a5f4-3e6cda006090)
)
(wire (pts (xy 100.33 73.66) (xy 104.14 73.66))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b60c50d1-225e-415c-8712-7acb5e3dc8ea)
)
(wire (pts (xy 132.08 130.81) (xy 135.89 130.81))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b635b16e-60bb-4b3e-9fc3-47d34eef8381)
)
(wire (pts (xy 100.33 105.41) (xy 104.14 105.41))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b6bcc3cf-50de-4a33-bc41-678825c1ecf2)
)
(wire (pts (xy 100.33 92.71) (xy 104.14 92.71))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid bb7f0588-d4d8-44bf-9ebf-3c533fe4d6ae)
)
(wire (pts (xy 132.08 68.58) (xy 135.89 68.58))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c3c93de0-69b1-4a04-8e0b-d78caf487c63)
)
(wire (pts (xy 100.33 124.46) (xy 104.14 124.46))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c70d9ef3-bfeb-47e0-a1e1-9aeba3da7864)
)
(wire (pts (xy 132.08 87.63) (xy 135.89 87.63))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid cef6f603-8a0b-4dd0-af99-ebfbef7d1b4b)
)
(wire (pts (xy 132.08 156.21) (xy 135.89 156.21))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid d1262c4d-2245-4c4f-8f35-7bb32cd9e21e)
)
(wire (pts (xy 100.33 99.06) (xy 104.14 99.06))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid d57dcfee-5058-4fc2-a68b-05f9a48f685b)
)
(wire (pts (xy 132.08 121.92) (xy 135.89 121.92))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid dde3dba8-1b81-466c-93a3-c284ff4da1ef)
)
(wire (pts (xy 132.08 149.86) (xy 135.89 149.86))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid e877bf4a-4210-4bd3-b7b0-806eb4affc5b)
)
(wire (pts (xy 132.08 106.68) (xy 135.89 106.68))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid ec9e24d8-d1c5-40e2-9812-dc315d05f470)
)
(wire (pts (xy 177.8 123.19) (xy 173.99 123.19))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid f022716e-b121-4cbf-a833-20e924070c22)
)
(wire (pts (xy 100.33 95.25) (xy 104.14 95.25))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid f1830a1b-f0cc-47ae-a2c9-679c82032f14)
)
(wire (pts (xy 173.99 104.14) (xy 173.99 110.49))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid f1dd8642-b405-490b-a449-d1cc5797fda8)
)
(wire (pts (xy 132.08 128.27) (xy 135.89 128.27))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid f976e2cc-36f9-4479-a816-2c74d1d5da6f)
)
(wire (pts (xy 132.08 71.12) (xy 135.89 71.12))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid f9865a9f-edb8-49c7-828f-4896e1f3047a)
)
(wire (pts (xy 173.99 116.84) (xy 177.8 116.84))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid fb03d859-dcc9-4533-b352-64830e0e5423)
)
(wire (pts (xy 173.99 123.19) (xy 173.99 127))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid fc0a4225-db46-4d48-8163-d522602d57cd)
)
(text "Mounting \nHoles" (at 170.18 100.33 0)
(effects (font (size 5.0038 5.0038) (thickness 1.0008) bold) (justify left bottom))
(uuid 04f5865e-f449-4408-a0c8-771cccfcb129)
)
(text "Images" (at 170.18 143.51 0)
(effects (font (size 5.0038 5.0038) (thickness 1.0008) bold) (justify left bottom))
(uuid 4d4b0fcd-2c79-4fc3-b5fa-7a0741601344)
)
(text "F722 Flight Controller" (at 186.69 185.42 0)
(effects (font (size 2.0066 2.0066) (thickness 0.4013) bold) (justify left bottom))
(uuid 587a157d-dedf-4558-a037-1a94bbba1848)
)
(text "Main" (at 107.95 57.15 0)
(effects (font (size 19.9898 19.9898) (thickness 3.998) bold) (justify left bottom))
(uuid 9762c9ed-64d8-4f3e-baf6-f6ba6effc919)
)
(label "CAM" (at 100.33 137.16 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 0d35483a-0b12-46cc-b9f2-896fd6831779)
)
(label "WORM1_L" (at 76.2 139.7 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 10109f84-4940-47f8-8640-91f185ac9bc1)
)
(label "VID" (at 154.94 92.71 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 128e34ce-eee7-477d-b905-a493e98db783)
)
(label "VID" (at 100.33 139.7 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 4e66a44f-7fa6-4e16-bf9b-62ec864301a5)
)
(label "WORM2_L" (at 76.2 144.78 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 55e740a3-0735-4744-896e-2bf5437093b9)
)
(label "WORM1_H" (at 163.83 121.92 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 6a955fc7-39d9-4c75-9a69-676ca8c0b9b2)
)
(label "WORM1_H" (at 76.2 137.16 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 71c31975-2c45-4d18-a25a-18e07a55d11e)
)
(label "WORM2_H" (at 163.83 128.27 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 746ba970-8279-4e7b-aed3-f28687777c21)
)
(label "CAM" (at 154.94 90.17 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid c801d42e-dd94-493e-bd2f-6c3ddad43f55)
)
(label "WORM2_L" (at 163.83 130.81 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid e10b5627-3247-4c86-b9f6-ef474ca11543)
)
(label "WORM1_L" (at 163.83 124.46 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid e8314017-7be6-4011-9179-37449a29b311)
)
(label "WORM2_H" (at 76.2 142.24 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid f4f99e3d-7269-4f6a-a759-16ad2a258779)
)
(symbol (lib_id "Mechanical:MountingHole_Pad") (at 180.34 104.14 270) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-00005f237f7b)
(property "Reference" "H1" (id 0) (at 184.15 102.9716 90)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "MountingHole_Pad" (id 1) (at 175.26 106.68 90)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "MyConnectors:MountingHole_6_4" (id 2) (at 180.34 104.14 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 180.34 104.14 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 933a17ae-06d4-4de3-aae1-d3835cc0d957))
)
(symbol (lib_id "Mechanical:MountingHole_Pad") (at 180.34 110.49 270) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-00005f23897e)
(property "Reference" "H2" (id 0) (at 184.15 109.3216 90)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "MountingHole_Pad" (id 1) (at 175.26 113.03 90)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "MyConnectors:MountingHole_6_4" (id 2) (at 180.34 110.49 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 180.34 110.49 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid ac0e5582-f44c-4bc2-8ae7-2c3f1115fb00))
)
(symbol (lib_id "Mechanical:MountingHole_Pad") (at 180.34 116.84 270) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-00005f238f3b)
(property "Reference" "H3" (id 0) (at 184.15 115.6716 90)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "MountingHole_Pad" (id 1) (at 175.26 119.38 90)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "MyConnectors:MountingHole_6_4" (id 2) (at 180.34 116.84 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 180.34 116.84 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 22614aba-2c26-4590-8e12-a7a6b6de48de))
)
(symbol (lib_id "Mechanical:MountingHole_Pad") (at 180.34 123.19 270) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-00005f239155)
(property "Reference" "H4" (id 0) (at 184.15 122.0216 90)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "MountingHole_Pad" (id 1) (at 175.26 125.73 90)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "MyConnectors:MountingHole_6_4" (id 2) (at 180.34 123.19 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 180.34 123.19 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 9050328c-80d1-449f-94a8-27658961ba9d))
)
(symbol (lib_id "power:GND") (at 173.99 127 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-00005f2491f9)
(property "Reference" "#PWR01" (id 0) (at 173.99 133.35 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (id 1) (at 174.117 131.3942 0))
(property "Footprint" "" (id 2) (at 173.99 127 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 173.99 127 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 74796a55-82bc-4f74-9e9c-c7cb232069e3))
)
(symbol (lib_id "JPW_Symbols:Arrow") (at 177.8 148.59 0) (unit 1)
(in_bom yes) (on_board yes) (fields_autoplaced)
(uuid 23914930-b2e5-44d0-8d26-235d5f66b234)
(property "Reference" "L2" (id 0) (at 178.435 147.6815 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "Arrow" (id 1) (at 178.435 150.4566 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "JPW_Footprints:Arrow" (id 2) (at 177.8 148.59 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 177.8 148.59 0)
(effects (font (size 1.27 1.27)) hide)
)
)
(symbol (lib_id "JPW_Symbols:EGA") (at 171.45 148.59 0) (unit 1)
(in_bom yes) (on_board yes) (fields_autoplaced)
(uuid 49ce3b38-5471-489d-83c4-0b16140dc07d)
(property "Reference" "L1" (id 0) (at 172.085 147.6815 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "EGA" (id 1) (at 172.085 150.4566 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "JPW_Footprints:EGA" (id 2) (at 171.45 148.59 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 171.45 148.59 0)
(effects (font (size 1.27 1.27)) hide)
)
)
(symbol (lib_id "JPW_Symbols:LED") (at 190.5 148.59 0) (unit 1)
(in_bom yes) (on_board yes) (fields_autoplaced)
(uuid 7895f9f2-5a91-4620-86b2-d67f07e26263)
(property "Reference" "L4" (id 0) (at 191.135 147.6815 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "LED" (id 1) (at 191.135 150.4566 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "JPW_Footprints:LED" (id 2) (at 190.5 148.59 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 190.5 148.59 0)
(effects (font (size 1.27 1.27)) hide)
)
)
(symbol (lib_id "JPW_Symbols:WRC") (at 195.58 148.59 0) (unit 1)
(in_bom yes) (on_board yes) (fields_autoplaced)
(uuid a25a0af3-ba5d-4626-b0bf-b638bab2a399)
(property "Reference" "L5" (id 0) (at 196.215 147.6815 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "WRC" (id 1) (at 196.215 150.4566 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "JPW_Footprints:WRC2" (id 2) (at 195.58 148.59 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 195.58 148.59 0)
(effects (font (size 1.27 1.27)) hide)
)
)
(symbol (lib_id "JPW_Symbols:LED") (at 185.42 148.59 0) (unit 1)
(in_bom yes) (on_board yes) (fields_autoplaced)
(uuid d8c34768-f582-40bc-9814-8eaf59ecc634)
(property "Reference" "L3" (id 0) (at 186.055 147.6815 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "LED" (id 1) (at 186.055 150.4566 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "JPW_Footprints:LED" (id 2) (at 185.42 148.59 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 185.42 148.59 0)
(effects (font (size 1.27 1.27)) hide)
)
)
(sheet (at 104.14 64.77) (size 27.94 93.98) (fields_autoplaced)
(stroke (width 0) (type solid) (color 0 0 0 0))
(fill (color 0 0 0 0.0000))
(uuid 00000000-0000-0000-0000-00006083bf4a)
(property "Sheet name" "MCU" (id 0) (at 104.14 64.0584 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
)
(property "Sheet file" "MCU.kicad_sch" (id 1) (at 104.14 159.3346 0)
(effects (font (size 1.27 1.27)) (justify left top))
)
(pin "SPI1_CS" input (at 132.08 76.2 0)
(effects (font (size 1.27 1.27)) (justify right))
(uuid e615f7aa-337e-474d-9615-2ad82b1c44ca)
)
(pin "SPI1_SCK" input (at 132.08 73.66 0)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 4fb02e58-160a-4a39-9f22-d0c75e82ee72)
)
(pin "SPI1_MISO" input (at 132.08 71.12 0)
(effects (font (size 1.27 1.27)) (justify right))
(uuid ef8fe2ac-6a7f-4682-9418-b801a1b10a3b)
)
(pin "SPI1_MOSI" input (at 132.08 68.58 0)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 44d8279a-9cd1-4db6-856f-0363131605fc)
)
(pin "SPI2_CS" input (at 132.08 95.25 0)
(effects (font (size 1.27 1.27)) (justify right))
(uuid eb667eea-300e-4ca7-8a6f-4b00de80cd45)
)
(pin "SPI2_SCK" input (at 132.08 92.71 0)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 66116376-6967-4178-9f23-a26cdeafc400)
)
(pin "SPI2_MISO" input (at 132.08 90.17 0)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 749dfe75-c0d6-4872-9330-29c5bbcb8ff8)
)
(pin "SPI2_MOSI" input (at 132.08 87.63 0)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 3b838d52-596d-4e4d-a6ac-e4c8e7621137)
)
(pin "USART1_TX" input (at 104.14 86.36 180)
(effects (font (size 1.27 1.27)) (justify left))
(uuid cbdcaa78-3bbc-413f-91bf-2709119373ce)
)
(pin "USART1_RX" input (at 104.14 88.9 180)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 1e1b062d-fad0-427c-a622-c5b8a80b5268)
)
(pin "I2C2_SCL" input (at 104.14 114.3 180)
(effects (font (size 1.27 1.27)) (justify left))
(uuid d8603679-3e7b-4337-8dbc-1827f5f54d8a)
)
(pin "USART6_RX" input (at 104.14 107.95 180)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 30f15357-ce1d-48b9-93dc-7d9b1b2aa048)
)
(pin "USART6_TX" input (at 104.14 105.41 180)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 87371631-aa02-498a-998a-09bdb74784c1)
)
(pin "I2C1_SCL" input (at 132.08 109.22 0)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 2e642b3e-a476-4c54-9a52-dcea955640cd)
)
(pin "I2C1_SDA" input (at 132.08 106.68 0)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 5038e144-5119-49db-b6cf-f7c345f1cf03)
)
(pin "M1" input (at 104.14 68.58 180)
(effects (font (size 1.27 1.27)) (justify left))
(uuid ac264c30-3e9a-4be2-b97a-9949b68bd497)
)
(pin "I2C2_SDA" input (at 104.14 111.76 180)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 54365317-1355-4216-bb75-829375abc4ec)
)
(pin "M2" input (at 104.14 71.12 180)
(effects (font (size 1.27 1.27)) (justify left))
(uuid a3e4f0ae-9f86-49e9-b386-ed8b42e012fb)
)
(pin "M4" input (at 104.14 76.2 180)
(effects (font (size 1.27 1.27)) (justify left))
(uuid a690fc6c-55d9-47e6-b533-faa4b67e20f3)
)
(pin "M3" input (at 104.14 73.66 180)
(effects (font (size 1.27 1.27)) (justify left))
(uuid c144caa5-b0d4-4cef-840a-d4ad178a2102)
)
(pin "SWDIO" input (at 132.08 142.24 0)
(effects (font (size 1.27 1.27)) (justify right))
(uuid efeac2a2-7682-4dc7-83ee-f6f1b23da506)
)
(pin "SWCLK" input (at 132.08 144.78 0)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 5fc27c35-3e1c-4f96-817c-93b5570858a6)
)
(pin "SWO" input (at 132.08 147.32 0)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 6c9b793c-e74d-4754-a2c0-901e73b26f1c)
)
(pin "NRST" input (at 132.08 149.86 0)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 6a45789b-3855-401f-8139-3c734f7f52f9)
)
(pin "USB_D-" input (at 104.14 133.35 180)
(effects (font (size 1.27 1.27)) (justify left))
(uuid b1086f75-01ba-4188-8d36-75a9e2828ca9)
)
(pin "USB_D+" input (at 104.14 130.81 180)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 716e31c5-485f-40b5-88e3-a75900da9811)
)
(pin "LED_STRIP" input (at 104.14 127 180)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 127679a9-3981-4934-815e-896a4e3ff56e)
)
(pin "UART5_TX" input (at 132.08 153.67 0)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 48ab88d7-7084-4d02-b109-3ad55a30bb11)
)
(pin "UART5_RX" input (at 132.08 156.21 0)
(effects (font (size 1.27 1.27)) (justify right))
(uuid f71da641-16e6-4257-80c3-0b9d804fee4f)
)
(pin "BUZ" input (at 104.14 124.46 180)
(effects (font (size 1.27 1.27)) (justify left))
(uuid fd470e95-4861-44fe-b1e4-6d8a7c66e144)
)
(pin "CURR_SENSE" input (at 104.14 118.11 180)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 8174b4de-74b1-48db-ab8e-c8432251095b)
)
(pin "USART3_RX" input (at 104.14 95.25 180)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 0eaa98f0-9565-4637-ace3-42a5231b07f7)
)
(pin "USART3_TX" input (at 104.14 92.71 180)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 181abe7a-f941-42b6-bd46-aaa3131f90fb)
)
(pin "LIMIT1_INT" input (at 104.14 80.01 180)
(effects (font (size 1.27 1.27)) (justify left))
(uuid ce83728b-bebd-48c2-8734-b6a50d837931)
)
(pin "LIMIT2_INT" input (at 104.14 82.55 180)
(effects (font (size 1.27 1.27)) (justify left))
(uuid c41b3c8b-634e-435a-b582-96b83bbd4032)
)
(pin "UART5_RX_CONN" input (at 104.14 101.6 180)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 9340c285-5767-42d5-8b6d-63fe2a40ddf3)
)
(pin "UART5_TX_CONN" input (at 104.14 99.06 180)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 1831fb37-1c5d-42c4-b898-151be6fca9dc)
)
(pin "WORM2_DIR" input (at 132.08 130.81 0)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 0f22151c-f260-4674-b486-4710a2c42a55)
)
(pin "WORM1_PWM" input (at 132.08 121.92 0)
(effects (font (size 1.27 1.27)) (justify right))
(uuid fe8d9267-7834-48d6-a191-c8724b2ee78d)
)
(pin "WORM1_DIR" input (at 132.08 124.46 0)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 0b21a65d-d20b-411e-920a-75c343ac5136)
)
(pin "WORM2_PWM" input (at 132.08 128.27 0)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 3cd1bda0-18db-417d-b581-a0c50623df68)
)
)
(sheet (at 166.37 66.04) (size 12.7 12.7) (fields_autoplaced)
(stroke (width 0) (type solid) (color 0 0 0 0))
(fill (color 0 0 0 0.0000))
(uuid 00000000-0000-0000-0000-00006094ac2b)
(property "Sheet name" "Power" (id 0) (at 166.37 65.3284 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
)
(property "Sheet file" "Power.kicad_sch" (id 1) (at 166.37 79.3246 0)
(effects (font (size 1.27 1.27)) (justify left top))
)
)
(sheet (at 76.2 64.77) (size 24.13 82.55) (fields_autoplaced)
(stroke (width 0) (type solid) (color 0 0 0 0))
(fill (color 0 0 0 0.0000))
(uuid 00000000-0000-0000-0000-000060a7361b)
(property "Sheet name" "Connectors" (id 0) (at 76.2 64.0584 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
)
(property "Sheet file" "Connectors.kicad_sch" (id 1) (at 76.2 147.9046 0)
(effects (font (size 1.27 1.27)) (justify left top))
)
(pin "M2" input (at 100.33 71.12 0)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 81bbc3ff-3938-49ac-8297-ce2bcc9a42bd)
)
(pin "M1" input (at 100.33 68.58 0)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 15875808-74d5-4210-b8ca-aa8fbc04ae21)
)
(pin "M3" input (at 100.33 73.66 0)
(effects (font (size 1.27 1.27)) (justify right))
(uuid dd00c2e1-6027-4717-b312-4fab3ee52002)
)
(pin "M4" input (at 100.33 76.2 0)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 0a3cc030-c9dd-4d74-9d50-715ed2b361a2)
)
(pin "CAM" input (at 100.33 137.16 0)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 8322f275-268c-4e87-a69f-4cfbf05e747f)
)
(pin "VID" input (at 100.33 139.7 0)
(effects (font (size 1.27 1.27)) (justify right))
(uuid b6270a28-e0d9-4655-a18a-03dbf007b940)
)
(pin "I2C2_SDA" input (at 100.33 111.76 0)
(effects (font (size 1.27 1.27)) (justify right))
(uuid f3490fa5-5a27-423b-af60-53609669542c)
)
(pin "I2C2_SCL" input (at 100.33 114.3 0)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 1860e030-7a36-4298-b7fc-a16d48ab15ba)
)
(pin "USART1_TX" input (at 100.33 86.36 0)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 3dcc657b-55a1-48e0-9667-e01e7b6b08b5)
)
(pin "USART1_RX" input (at 100.33 88.9 0)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 67f6e996-3c99-493c-8f6f-e739e2ed5d7a)
)
(pin "USART6_TX" input (at 100.33 105.41 0)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 32667662-ae86-4904-b198-3e95f11851bf)
)
(pin "USART6_RX" input (at 100.33 107.95 0)
(effects (font (size 1.27 1.27)) (justify right))
(uuid a05d7640-f2f6-4ba7-8c51-5a4af431fc13)
)
(pin "USB_D+" input (at 100.33 130.81 0)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 13abf99d-5265-4779-8973-e94370fd18ff)
)
(pin "USB_D-" input (at 100.33 133.35 0)
(effects (font (size 1.27 1.27)) (justify right))
(uuid a7520ad3-0f8b-4788-92d4-8ffb277041e6)
)
(pin "LED_STRIP" input (at 100.33 127 0)
(effects (font (size 1.27 1.27)) (justify right))
(uuid a795f1ba-cdd5-4cc5-9a52-08586e982934)
)
(pin "BUZ" input (at 100.33 124.46 0)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 46918595-4a45-48e8-84c0-961b4db7f35f)
)
(pin "CURR_SENSE" input (at 100.33 118.11 0)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 9ccf03e8-755a-4cd9-96fc-30e1d08fa253)
)
(pin "USART3_TX" input (at 100.33 92.71 0)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 94c158d1-8503-4553-b511-bf42f506c2a8)
)
(pin "USART3_RX" input (at 100.33 95.25 0)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 23bb2798-d93a-4696-a962-c305c4298a0c)
)
(pin "LIMIT1_INT" input (at 100.33 80.01 0)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 78cbdd6c-4878-4cc5-9a58-0e506478e37d)
)
(pin "LIMIT2_INT" input (at 100.33 82.55 0)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 6e105729-aba0-497c-a99e-c32d2b3ddb6d)
)
(pin "WORM1_H" input (at 76.2 137.16 180)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 983c426c-24e0-4c65-ab69-1f1824adc5c6)
)
(pin "WORM1_L" input (at 76.2 139.7 180)
(effects (font (size 1.27 1.27)) (justify left))
(uuid c1d83899-e380-49f9-a87d-8e78bc089ebf)
)
(pin "WORM2_H" input (at 76.2 142.24 180)
(effects (font (size 1.27 1.27)) (justify left))
(uuid e9bb29b2-2bb9-4ea2-acd9-2bb3ca677a12)
)
(pin "WORM2_L" input (at 76.2 144.78 180)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 62c076a3-d618-44a2-9042-9a08b3576787)
)
(pin "UART5_RX_CONN" input (at 100.33 101.6 0)
(effects (font (size 1.27 1.27)) (justify right))
(uuid da469d11-a8a4-414b-9449-d151eeaf4853)
)
(pin "UART5_TX_CONN" input (at 100.33 99.06 0)
(effects (font (size 1.27 1.27)) (justify right))
(uuid afb8e687-4a13-41a1-b8c0-89a749e897fe)
)
)
(sheet (at 135.89 85.09) (size 19.05 12.7) (fields_autoplaced)
(stroke (width 0) (type solid) (color 0 0 0 0))
(fill (color 0 0 0 0.0000))
(uuid 00000000-0000-0000-0000-000060b17c6e)
(property "Sheet name" "OSD" (id 0) (at 135.89 84.2641 0)
(effects (font (size 1.4986 1.4986)) (justify left bottom))
)
(property "Sheet file" "OSD.kicad_sch" (id 1) (at 135.89 98.466 0)
(effects (font (size 1.4986 1.4986)) (justify left top))
)
(pin "SPI3_SCK" input (at 135.89 92.71 180)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 98e81e80-1f85-4152-be3f-99785ea97751)
)
(pin "SPI3_MOSI" input (at 135.89 87.63 180)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 842e430f-0c35-45f3-a0b5-95ae7b7ae388)
)
(pin "SPI3_MISO" input (at 135.89 90.17 180)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 51c4dc0a-5b9f-4edf-a83f-4a12881e42ef)
)
(pin "VID" input (at 154.94 92.71 0)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 03d88a85-11fd-47aa-954c-c318bb15294a)
)
(pin "CAM" input (at 154.94 90.17 0)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 1a2f72d1-0b36-4610-afc4-4ad1660d5d3b)
)
(pin "SPI3_CS" input (at 135.89 95.25 180)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 0dcdf1b8-13c6-48b4-bd94-5d26038ff231)
)
)
(sheet (at 135.89 66.04) (size 13.97 12.7) (fields_autoplaced)
(stroke (width 0) (type solid) (color 0 0 0 0))
(fill (color 0 0 0 0.0000))
(uuid 00000000-0000-0000-0000-000060b2aba4)
(property "Sheet name" "Gyro" (id 0) (at 135.89 65.2141 0)
(effects (font (size 1.4986 1.4986)) (justify left bottom))
)
(property "Sheet file" "Gyro.kicad_sch" (id 1) (at 135.89 79.416 0)
(effects (font (size 1.4986 1.4986)) (justify left top))
)
(pin "SPI1_MOSI" input (at 135.89 68.58 180)
(effects (font (size 1.27 1.27)) (justify left))
(uuid cbc539d2-6a10-4052-9b7a-f10326dcac67)
)
(pin "SPI1_MISO" input (at 135.89 71.12 180)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 909b030b-fa1a-4fe8-b1ee-422b4d9e23cf)
)
(pin "SPI1_SCK" input (at 135.89 73.66 180)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 936e2ca6-11ae-4f42-9128-52bb329f3d21)
)
(pin "SPI1_CS" input (at 135.89 76.2 180)
(effects (font (size 1.27 1.27)) (justify left))
(uuid ebadd2a5-21ab-4a7e-b5bc-6f737367e560)
)
)
(sheet (at 135.89 104.14) (size 13.97 7.62) (fields_autoplaced)
(stroke (width 0) (type solid) (color 0 0 0 0))
(fill (color 0 0 0 0.0000))
(uuid 00000000-0000-0000-0000-000060b2f3fc)
(property "Sheet name" "Barometer" (id 0) (at 135.89 103.3141 0)
(effects (font (size 1.4986 1.4986)) (justify left bottom))
)
(property "Sheet file" "Barometer.kicad_sch" (id 1) (at 135.89 112.436 0)
(effects (font (size 1.4986 1.4986)) (justify left top))
)
(pin "I2C1_SDA" input (at 135.89 106.68 180)
(effects (font (size 1.27 1.27)) (justify left))
(uuid a501555e-bbc7-4b58-ad89-28a0cd3dd6d0)
)
(pin "I2C1_SCL" input (at 135.89 109.22 180)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 3cfcbcc7-4f45-46ab-82a8-c414c7972161)
)
)
(sheet (at 135.89 139.7) (size 13.97 19.05) (fields_autoplaced)
(stroke (width 0) (type solid) (color 0 0 0 0))
(fill (color 0 0 0 0.0000))
(uuid 00000000-0000-0000-0000-0000616f1407)
(property "Sheet name" "Debugger" (id 0) (at 135.89 138.9884 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
)
(property "Sheet file" "Debugger.kicad_sch" (id 1) (at 135.89 159.3346 0)
(effects (font (size 1.27 1.27)) (justify left top))
)
(pin "SWDIO" input (at 135.89 142.24 180)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 417f13e4-c121-485a-a6b5-8b55e70350b8)
)
(pin "SWO" input (at 135.89 147.32 180)
(effects (font (size 1.27 1.27)) (justify left))
(uuid c201e1b2-fc01-4110-bdaa-a33290468c83)
)
(pin "SWCLK" input (at 135.89 144.78 180)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 0088d107-13d8-496c-8da6-7bbeb9d096b0)
)