-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathYellow.kicad_sch
1104 lines (1052 loc) · 36.2 KB
/
Yellow.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 abc482bd-3f17-4d35-80db-1da3dcdb5c27)
(paper "A4")
(title_block
(title "Overview")
(date "2022-11-06")
(rev "1.3b")
(company "Nabu Casa")
(comment 1 "www.nabucasa.com")
(comment 2 "Yellow")
)
(lib_symbols
(symbol "Mechanical:Fiducial" (in_bom yes) (on_board yes)
(property "Reference" "FID" (at 0 5.08 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "Fiducial" (at 0 3.175 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" "fiducial marker" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Fiducial Marker" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "Fiducial*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "Fiducial_0_1"
(circle (center 0 0) (radius 1.27)
(stroke (width 0.508) (type default))
(fill (type background))
)
)
)
(symbol "Mechanical:Heatsink" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
(property "Reference" "HS" (at 0 5.08 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "Heatsink" (at 0 -1.27 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 0.3048 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 0.3048 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "thermal heat temperature" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Heatsink" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "Heatsink_*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "Heatsink_0_1"
(polyline
(pts
(xy -0.3302 1.27)
(xy -0.9652 1.27)
(xy -0.9652 3.81)
(xy -1.6002 3.81)
(xy -1.6002 1.27)
(xy -2.2352 1.27)
(xy -2.2352 3.81)
(xy -2.8702 3.81)
(xy -2.8702 0)
(xy -0.9652 0)
)
(stroke (width 0.254) (type default))
(fill (type background))
)
(polyline
(pts
(xy -0.3302 1.27)
(xy -0.3302 3.81)
(xy 0.3048 3.81)
(xy 0.3048 1.27)
(xy 0.9398 1.27)
(xy 0.9398 3.81)
(xy 1.5748 3.81)
(xy 1.5748 1.27)
(xy 2.2098 1.27)
(xy 2.2098 3.81)
(xy 2.8448 3.81)
(xy 2.8448 0)
(xy -0.9652 0)
)
(stroke (width 0.254) (type default))
(fill (type background))
)
)
)
(symbol "Mechanical:MountingHole" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
(property "Reference" "H" (at 0 5.08 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "MountingHole" (at 0 3.175 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" "mounting hole" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Mounting Hole without connection" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "MountingHole*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "MountingHole_0_1"
(circle (center 0 0) (radius 1.27)
(stroke (width 1.27) (type default))
(fill (type none))
)
)
)
)
(bus (pts (xy 95.25 39.37) (xy 59.69 39.37))
(stroke (width 0) (type solid))
(uuid 002fc280-d2cc-41be-93a0-c7bb9fe05a8d)
)
(bus (pts (xy 100.33 83.82) (xy 110.49 83.82))
(stroke (width 0) (type solid))
(uuid 02da34e3-2a38-40dc-ba4f-fba871861194)
)
(wire (pts (xy 107.95 53.34) (xy 107.95 68.58))
(stroke (width 0) (type solid))
(uuid 041124b6-423d-4648-a34c-853a13260f43)
)
(bus (pts (xy 100.33 38.1) (xy 100.33 83.82))
(stroke (width 0) (type solid))
(uuid 13d236a1-7ed4-4e52-955d-1890db4596d9)
)
(wire (pts (xy 110.49 78.74) (xy 102.87 78.74))
(stroke (width 0) (type solid))
(uuid 174f5184-5ca1-4ece-9f3b-6de6b7880beb)
)
(wire (pts (xy 161.29 53.975) (xy 158.115 53.975))
(stroke (width 0) (type solid))
(uuid 1af47ce1-95bc-47c8-aef7-af1f025e7b0c)
)
(wire (pts (xy 110.49 92.71) (xy 92.71 92.71))
(stroke (width 0) (type solid))
(uuid 234ada1d-92b9-450b-bf1b-ccb046d85888)
)
(bus (pts (xy 59.69 64.77) (xy 83.185 64.77))
(stroke (width 0) (type solid))
(uuid 23f723aa-adcc-4c13-9daa-abac6b88850e)
)
(bus (pts (xy 59.69 93.98) (xy 63.5 93.98))
(stroke (width 0) (type solid))
(uuid 292685fa-0949-4f9a-999e-1df169623dce)
)
(wire (pts (xy 110.49 71.12) (xy 106.045 71.12))
(stroke (width 0) (type solid))
(uuid 2fbc66db-17d2-4da1-9e57-dcbad60476ad)
)
(wire (pts (xy 106.045 71.12) (xy 106.045 50.8))
(stroke (width 0) (type solid))
(uuid 2fbc66db-17d2-4da1-9e57-dcbad60476ae)
)
(wire (pts (xy 161.29 53.975) (xy 161.29 71.12))
(stroke (width 0) (type solid))
(uuid 371014c3-e572-4ac0-b11c-b785efee5faf)
)
(wire (pts (xy 101.6 81.28) (xy 101.6 40.64))
(stroke (width 0) (type solid))
(uuid 38c054f0-3cbc-490f-ba8f-92a88f064d64)
)
(wire (pts (xy 92.71 41.91) (xy 59.69 41.91))
(stroke (width 0) (type solid))
(uuid 3c13b650-5c37-4521-9e7f-98fed1575d90)
)
(polyline (pts (xy 51.435 66.04) (xy 51.435 97.155))
(stroke (width 0) (type dash))
(uuid 3d698c84-f591-41e3-9799-c1aed0b489d4)
)
(bus (pts (xy 158.115 96.52) (xy 175.26 96.52))
(stroke (width 0) (type solid))
(uuid 46aa0186-16ff-41a4-8138-7a9bbcf9d951)
)
(wire (pts (xy 158.115 71.12) (xy 161.29 71.12))
(stroke (width 0) (type solid))
(uuid 4b269e25-29da-45d7-a385-b8a5ce60d99f)
)
(wire (pts (xy 158.115 46.99) (xy 162.56 46.99))
(stroke (width 0) (type solid))
(uuid 4eb5591b-48cb-44e0-ba27-ee5ba1cd2b67)
)
(bus (pts (xy 158.115 80.01) (xy 175.26 80.01))
(stroke (width 0) (type solid))
(uuid 5095797a-5347-4234-909f-dac1411d98dc)
)
(polyline (pts (xy 69.215 97.155) (xy 51.435 97.155))
(stroke (width 0) (type dash))
(uuid 574de7f4-48ff-40f5-8b92-4db81ffffd3f)
)
(bus (pts (xy 167.64 36.83) (xy 175.26 36.83))
(stroke (width 0) (type solid))
(uuid 6014c72c-93a6-4fb8-99a9-621eb2d7f9ea)
)
(wire (pts (xy 110.49 50.8) (xy 106.045 50.8))
(stroke (width 0) (type solid))
(uuid 60167cc9-59f5-4d0d-a4b2-3fdeea1d31a3)
)
(wire (pts (xy 102.87 43.18) (xy 110.49 43.18))
(stroke (width 0) (type solid))
(uuid 62d23818-1b16-4f55-86f4-c1bc159ee2ac)
)
(bus (pts (xy 63.5 67.31) (xy 63.5 93.98))
(stroke (width 0) (type solid))
(uuid 630b2382-9f8d-4677-9852-e7eb1f63bb9a)
)
(bus (pts (xy 83.185 64.77) (xy 83.185 102.235))
(stroke (width 0) (type solid))
(uuid 662e4ab9-7136-4441-b0cb-4483148dbe7d)
)
(bus (pts (xy 158.115 73.66) (xy 167.64 73.66))
(stroke (width 0) (type solid))
(uuid 692d9422-f0b5-4576-b93e-b3d58c905b75)
)
(polyline (pts (xy 51.435 66.04) (xy 69.215 66.04))
(stroke (width 0) (type dash))
(uuid 73dadd14-2461-46f5-9e7f-846f49d934c4)
)
(wire (pts (xy 215.9 53.34) (xy 222.25 53.34))
(stroke (width 0) (type solid))
(uuid 7632815e-3a45-4934-bd1f-8a2b55463c4c)
)
(wire (pts (xy 222.25 22.86) (xy 222.25 53.34))
(stroke (width 0) (type solid))
(uuid 769a8c6f-afe5-4e27-a670-2e0a184b346f)
)
(wire (pts (xy 62.23 107.95) (xy 59.69 107.95))
(stroke (width 0) (type solid))
(uuid 77dd3d4a-4699-4537-b2d6-85b7e2eeab5c)
)
(bus (pts (xy 59.69 67.31) (xy 63.5 67.31))
(stroke (width 0) (type solid))
(uuid 7ae3a9e9-f373-4797-921f-a6932790d9d8)
)
(bus (pts (xy 110.49 87.63) (xy 97.79 87.63))
(stroke (width 0) (type solid))
(uuid 7e645aee-55bd-41bc-a9ec-2fda2a8313e2)
)
(wire (pts (xy 110.49 68.58) (xy 107.95 68.58))
(stroke (width 0) (type solid))
(uuid 84df2972-25ba-402e-90e9-dcddaaaa9e61)
)
(wire (pts (xy 101.6 40.64) (xy 110.49 40.64))
(stroke (width 0) (type solid))
(uuid 88778059-a7bf-4b86-83f1-b740748f140e)
)
(wire (pts (xy 102.87 78.74) (xy 102.87 43.18))
(stroke (width 0) (type solid))
(uuid 8bee1b43-12d8-4e28-b8c2-511f7c1b1409)
)
(bus (pts (xy 97.79 106.045) (xy 97.79 125.73))
(stroke (width 0) (type solid))
(uuid 96f01056-929d-4e17-a2b1-fee14b8333fc)
)
(wire (pts (xy 107.95 53.34) (xy 110.49 53.34))
(stroke (width 0) (type solid))
(uuid 98a720c7-eb44-4dd3-b5f9-edb1942e03c3)
)
(polyline (pts (xy 69.215 66.04) (xy 69.215 97.155))
(stroke (width 0) (type dash))
(uuid 98d84620-52dd-4425-95f3-28bf38c64ee8)
)
(bus (pts (xy 100.33 38.1) (xy 110.49 38.1))
(stroke (width 0) (type solid))
(uuid 9c853794-5cc2-4e62-ad92-2b3518e57149)
)
(bus (pts (xy 110.49 90.17) (xy 95.25 90.17))
(stroke (width 0) (type solid))
(uuid 9eab3f5a-c245-4e61-9643-3087be611e2b)
)
(wire (pts (xy 162.56 22.86) (xy 222.25 22.86))
(stroke (width 0) (type solid))
(uuid 9ef995dd-7c0d-4f45-898e-ab02bb6d71d1)
)
(wire (pts (xy 104.14 76.2) (xy 110.49 76.2))
(stroke (width 0) (type solid))
(uuid a5de074e-671c-4aed-b8ac-b4e48d9de96e)
)
(wire (pts (xy 104.14 45.72) (xy 104.14 76.2))
(stroke (width 0) (type solid))
(uuid a5de074e-671c-4aed-b8ac-b4e48d9de96f)
)
(wire (pts (xy 110.49 45.72) (xy 104.14 45.72))
(stroke (width 0) (type solid))
(uuid a5de074e-671c-4aed-b8ac-b4e48d9de970)
)
(wire (pts (xy 162.56 46.99) (xy 162.56 22.86))
(stroke (width 0) (type solid))
(uuid a9cb7d69-0fc6-4e85-89fd-89c9ca07a599)
)
(bus (pts (xy 167.64 73.66) (xy 167.64 36.83))
(stroke (width 0) (type solid))
(uuid ac862ecb-e0ae-4776-b935-a7e96ca45611)
)
(wire (pts (xy 62.23 123.19) (xy 62.23 107.95))
(stroke (width 0) (type solid))
(uuid b9fb25e1-f408-439c-886d-2f6a5b018a98)
)
(bus (pts (xy 97.79 125.73) (xy 110.49 125.73))
(stroke (width 0) (type solid))
(uuid bc8bf53d-3531-4b45-9f55-30f133bae237)
)
(bus (pts (xy 101.6 123.19) (xy 110.49 123.19))
(stroke (width 0) (type solid))
(uuid cb64ad48-58dd-4f9f-8682-486809aaa706)
)
(wire (pts (xy 92.71 92.71) (xy 92.71 41.91))
(stroke (width 0) (type solid))
(uuid d491a44d-c001-4c10-b1eb-1805e42ac4eb)
)
(bus (pts (xy 97.79 87.63) (xy 97.79 36.83))
(stroke (width 0) (type solid))
(uuid d9b06949-d40c-44e1-a803-de1cc7169f30)
)
(bus (pts (xy 95.25 90.17) (xy 95.25 39.37))
(stroke (width 0) (type solid))
(uuid d9dce571-088e-428e-9122-2bdcb237f851)
)
(wire (pts (xy 110.49 81.28) (xy 101.6 81.28))
(stroke (width 0) (type solid))
(uuid dd315761-20f7-4eea-8cb8-06b9dac57601)
)
(wire (pts (xy 90.17 44.45) (xy 90.17 95.25))
(stroke (width 0) (type solid))
(uuid e2937bd6-3f03-498c-b48c-7b95eede44a9)
)
(wire (pts (xy 59.69 44.45) (xy 90.17 44.45))
(stroke (width 0) (type solid))
(uuid e2937bd6-3f03-498c-b48c-7b95eede44aa)
)
(wire (pts (xy 90.17 95.25) (xy 110.49 95.25))
(stroke (width 0) (type solid))
(uuid e2937bd6-3f03-498c-b48c-7b95eede44ab)
)
(bus (pts (xy 83.185 102.235) (xy 110.49 102.235))
(stroke (width 0) (type solid))
(uuid e6e00dfa-cfa9-4501-837f-d9ea707131c3)
)
(bus (pts (xy 97.79 36.83) (xy 59.69 36.83))
(stroke (width 0) (type solid))
(uuid ebef2954-0db9-4ffe-afc5-5c8950752573)
)
(wire (pts (xy 59.69 123.19) (xy 62.23 123.19))
(stroke (width 0) (type solid))
(uuid f53133bb-379f-4e37-8f03-d2a2a87a8da1)
)
(bus (pts (xy 110.49 106.045) (xy 97.79 106.045))
(stroke (width 0) (type solid))
(uuid fd6e2d38-350e-4b3a-b160-9fb2a513faba)
)
(text "1.5kV Isolation" (at 78.105 69.215 0)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid a67a85e8-f409-43da-bc57-36fa33035b38)
)
(text "High Voltage!" (at 67.31 97.155 0)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid bacac8c3-2a4c-441a-9b5f-5285d6dab8da)
)
(label "{I2C}" (at 101.6 83.82 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 1293c695-1c68-4e1b-8bfa-e6d5de63338a)
)
(label "{I2C}" (at 101.6 123.19 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 4c95316c-6c0d-42ea-b6ad-6c8d484a2c06)
)
(symbol (lib_id "Mechanical:MountingHole") (at 76.2 182.88 0) (unit 1)
(in_bom no) (on_board yes) (dnp no)
(uuid 13673698-1ae8-48ac-89ad-67bec4817dbe)
(property "Reference" "H1" (at 78.7401 181.7306 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "MountingHole" (at 78.7401 184.0293 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "MountingHole:MountingHole_2.7mm_M2.5" (at 76.2 182.88 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 76.2 182.88 0)
(effects (font (size 1.27 1.27)) hide)
)
(instances
(project "Yellow"
(path "/abc482bd-3f17-4d35-80db-1da3dcdb5c27"
(reference "H1") (unit 1)
)
)
)
)
(symbol (lib_id "Mechanical:MountingHole") (at 93.98 190.5 0) (unit 1)
(in_bom no) (on_board yes) (dnp no)
(uuid 1719aa9c-b7b4-4351-ae6a-b606de4554d5)
(property "Reference" "H4" (at 96.5201 189.3506 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "MountingHole" (at 96.5201 191.6493 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "MountingHole:MountingHole_2.7mm_M2.5" (at 93.98 190.5 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 93.98 190.5 0)
(effects (font (size 1.27 1.27)) hide)
)
(instances
(project "Yellow"
(path "/abc482bd-3f17-4d35-80db-1da3dcdb5c27"
(reference "H4") (unit 1)
)
)
)
)
(symbol (lib_id "Mechanical:MountingHole") (at 93.98 182.88 0) (unit 1)
(in_bom no) (on_board yes) (dnp no)
(uuid 27427d47-315e-474e-8985-0b3c80fdd220)
(property "Reference" "H3" (at 96.5201 181.7306 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "MountingHole" (at 96.5201 184.0293 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "MountingHole:MountingHole_2.7mm_M2.5" (at 93.98 182.88 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 93.98 182.88 0)
(effects (font (size 1.27 1.27)) hide)
)
(instances
(project "Yellow"
(path "/abc482bd-3f17-4d35-80db-1da3dcdb5c27"
(reference "H3") (unit 1)
)
)
)
)
(symbol (lib_id "Mechanical:MountingHole") (at 111.76 182.88 0) (unit 1)
(in_bom no) (on_board yes) (dnp no)
(uuid 37de04fb-2d22-493d-a648-e024c9d5a4fc)
(property "Reference" "H5" (at 114.3001 181.7306 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "MountingHole" (at 114.3001 184.0293 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Yellow:DrillSlot_Plated_3.5x2.5mm" (at 111.76 182.88 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 111.76 182.88 0)
(effects (font (size 1.27 1.27)) hide)
)
(instances
(project "Yellow"
(path "/abc482bd-3f17-4d35-80db-1da3dcdb5c27"
(reference "H5") (unit 1)
)
)
)
)
(symbol (lib_id "Mechanical:Fiducial") (at 43.18 182.88 0) (unit 1)
(in_bom no) (on_board yes) (dnp no)
(uuid 397a81dd-bc3b-4d75-ac01-0741f48b79fe)
(property "Reference" "FID5" (at 45.3391 181.7306 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "Fiducial" (at 45.3391 184.0293 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Fiducial:Fiducial_1mm_Mask2mm" (at 43.18 182.88 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 43.18 182.88 0)
(effects (font (size 1.27 1.27)) hide)
)
(instances
(project "Yellow"
(path "/abc482bd-3f17-4d35-80db-1da3dcdb5c27"
(reference "FID5") (unit 1)
)
)
)
)
(symbol (lib_id "Mechanical:Fiducial") (at 30.48 190.5 0) (unit 1)
(in_bom no) (on_board yes) (dnp no)
(uuid 6e1877e9-cf72-4c13-a5dc-d95b870bb6c9)
(property "Reference" "FID4" (at 32.6391 189.3506 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "Fiducial" (at 32.6391 191.6493 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Fiducial:Fiducial_1mm_Mask2mm" (at 30.48 190.5 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 30.48 190.5 0)
(effects (font (size 1.27 1.27)) hide)
)
(instances
(project "Yellow"
(path "/abc482bd-3f17-4d35-80db-1da3dcdb5c27"
(reference "FID4") (unit 1)
)
)
)
)
(symbol (lib_id "Mechanical:Fiducial") (at 55.88 190.5 0) (unit 1)
(in_bom no) (on_board yes) (dnp no)
(uuid 902787ce-17d4-4a85-914c-caf2c76e7348)
(property "Reference" "FID8" (at 58.0391 189.3506 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "Fiducial" (at 58.0391 191.6493 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Fiducial:Fiducial_1mm_Mask2mm" (at 55.88 190.5 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 55.88 190.5 0)
(effects (font (size 1.27 1.27)) hide)
)
(instances
(project "Yellow"
(path "/abc482bd-3f17-4d35-80db-1da3dcdb5c27"
(reference "FID8") (unit 1)
)
)
)
)
(symbol (lib_id "Mechanical:Fiducial") (at 30.48 182.88 0) (unit 1)
(in_bom no) (on_board yes) (dnp no)
(uuid a3f36d21-b692-4657-b96e-b6fe5eae0384)
(property "Reference" "FID3" (at 32.6391 181.7306 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "Fiducial" (at 32.6391 184.0293 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Fiducial:Fiducial_1mm_Mask2mm" (at 30.48 182.88 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 30.48 182.88 0)
(effects (font (size 1.27 1.27)) hide)
)
(instances
(project "Yellow"
(path "/abc482bd-3f17-4d35-80db-1da3dcdb5c27"
(reference "FID3") (unit 1)
)
)
)
)
(symbol (lib_id "Mechanical:Fiducial") (at 43.18 190.5 0) (unit 1)
(in_bom no) (on_board yes) (dnp no)
(uuid be733b35-4e5a-4d02-bba2-5bd334942370)
(property "Reference" "FID6" (at 45.3391 189.3506 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "Fiducial" (at 45.3391 191.6493 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Fiducial:Fiducial_1mm_Mask2mm" (at 43.18 190.5 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 43.18 190.5 0)
(effects (font (size 1.27 1.27)) hide)
)
(instances
(project "Yellow"
(path "/abc482bd-3f17-4d35-80db-1da3dcdb5c27"
(reference "FID6") (unit 1)
)
)
)
)
(symbol (lib_id "Mechanical:MountingHole") (at 111.76 190.5 0) (unit 1)
(in_bom no) (on_board yes) (dnp no)
(uuid bfcec0b4-32c4-4ebf-8bb4-4766287797f1)
(property "Reference" "H6" (at 114.3001 189.3506 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "MountingHole" (at 114.3001 191.6493 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Yellow:DrillSlot_Plated_3.5x2.5mm" (at 111.76 190.5 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 111.76 190.5 0)
(effects (font (size 1.27 1.27)) hide)
)
(instances
(project "Yellow"
(path "/abc482bd-3f17-4d35-80db-1da3dcdb5c27"
(reference "H6") (unit 1)
)
)
)
)
(symbol (lib_id "Mechanical:Fiducial") (at 17.78 190.5 0) (unit 1)
(in_bom no) (on_board yes) (dnp no)
(uuid cb680c0b-5011-49fe-ab2c-b8e25dd08527)
(property "Reference" "FID2" (at 19.9391 189.3506 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "Fiducial" (at 19.9391 191.6493 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Fiducial:Fiducial_1mm_Mask2mm" (at 17.78 190.5 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 17.78 190.5 0)
(effects (font (size 1.27 1.27)) hide)
)
(instances
(project "Yellow"
(path "/abc482bd-3f17-4d35-80db-1da3dcdb5c27"
(reference "FID2") (unit 1)
)
)
)
)
(symbol (lib_id "Mechanical:Heatsink") (at 133.35 185.42 0) (unit 1)
(in_bom no) (on_board yes) (dnp no)
(uuid cd73f910-31d6-4226-a110-18f09eef8514)
(property "Reference" "HS1" (at 136.9569 182.3656 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "Heatsink" (at 136.9569 184.6643 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Yellow:Heatsink_56x56mm_2xFixation3.2mm" (at 133.6548 185.42 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 133.6548 185.42 0)
(effects (font (size 1.27 1.27)) hide)
)
(instances
(project "Yellow"
(path "/abc482bd-3f17-4d35-80db-1da3dcdb5c27"
(reference "HS1") (unit 1)
)
)
)
)
(symbol (lib_id "Mechanical:Fiducial") (at 17.78 182.88 0) (unit 1)
(in_bom no) (on_board yes) (dnp no)
(uuid d6694e6a-eae0-4147-bc94-8d2c65eec42f)
(property "Reference" "FID1" (at 19.9391 181.7306 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "Fiducial" (at 19.9391 184.0293 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Fiducial:Fiducial_1mm_Mask2mm" (at 17.78 182.88 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 17.78 182.88 0)
(effects (font (size 1.27 1.27)) hide)
)
(instances
(project "Yellow"
(path "/abc482bd-3f17-4d35-80db-1da3dcdb5c27"
(reference "FID1") (unit 1)
)
)
)
)
(symbol (lib_id "Mechanical:Fiducial") (at 55.88 182.88 0) (unit 1)
(in_bom no) (on_board yes) (dnp no)
(uuid d7909674-1922-4ddb-8b1b-9c714bef3b92)
(property "Reference" "FID7" (at 58.0391 181.7306 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "Fiducial" (at 58.0391 184.0293 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Fiducial:Fiducial_1mm_Mask2mm" (at 55.88 182.88 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 55.88 182.88 0)
(effects (font (size 1.27 1.27)) hide)
)
(instances
(project "Yellow"
(path "/abc482bd-3f17-4d35-80db-1da3dcdb5c27"
(reference "FID7") (unit 1)
)
)
)
)
(symbol (lib_id "Mechanical:MountingHole") (at 76.2 190.5 0) (unit 1)
(in_bom no) (on_board yes) (dnp no)
(uuid f42b7aad-88a1-4721-b564-f8f879d7e253)
(property "Reference" "H2" (at 78.7401 189.3506 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "MountingHole" (at 78.7401 191.6493 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "MountingHole:MountingHole_2.7mm_M2.5" (at 76.2 190.5 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 76.2 190.5 0)
(effects (font (size 1.27 1.27)) hide)
)
(instances
(project "Yellow"
(path "/abc482bd-3f17-4d35-80db-1da3dcdb5c27"
(reference "H2") (unit 1)
)
)
)
)
(sheet (at 175.26 49.53) (size 40.64 36.83)
(stroke (width 0.001) (type solid) (color 132 0 132 1))
(fill (color 255 255 255 0.0000))
(uuid 12f6ca59-5dee-4aea-b4bb-e4b9cab2885b)
(property "Sheetname" "802.15.4 Radio" (at 175.26 48.8941 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
)
(property "Sheetfile" "Radio.kicad_sch" (at 175.26 86.8689 0)
(effects (font (size 1.27 1.27)) (justify left top))
)
(pin "~{LED_RADIO}" output (at 215.9 53.34 0)
(effects (font (size 1.27 1.27)) (justify right))
(uuid d755ead0-5518-4bd2-ae4a-ac3a4462d0d4)
)
(pin "Radio{UART SWD ~{RESET} ~{BOOT}}" bidirectional (at 175.26 80.01 180)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 411ed783-a9dc-4822-9f29-8f6dfad67edd)
)
(instances
(project "Yellow"
(path "/abc482bd-3f17-4d35-80db-1da3dcdb5c27" (page "4"))
)
)
)
(sheet (at 24.13 62.23) (size 35.56 20.32)
(stroke (width 0.001) (type solid) (color 132 0 132 1))
(fill (color 255 255 255 0.0000))
(uuid 18c18357-12fa-4472-a108-e954e5bd7840)
(property "Sheetname" "Ethernet" (at 24.13 61.5941 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
)
(property "Sheetfile" "Ethernet.kicad_sch" (at 24.13 83.0589 0)
(effects (font (size 1.27 1.27)) (justify left top))
)
(pin "ETH{ETH}" bidirectional (at 59.69 64.77 0)
(effects (font (size 1.27 1.27)) (justify right))
(uuid e973e03f-2fde-4b73-a423-476755a06004)
)
(pin "{PoE}" output (at 59.69 67.31 0)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 4765007e-e37c-4d2d-8738-f0e9c3034def)
)
(instances
(project "Yellow"
(path "/abc482bd-3f17-4d35-80db-1da3dcdb5c27" (page "6"))
)
)
)
(sheet (at 110.49 24.765) (size 47.625 32.385) (fields_autoplaced)
(stroke (width 0.001) (type solid) (color 132 0 132 1))
(fill (color 255 255 255 0.0000))
(uuid 441a9908-1e74-440b-b462-bdf6815583fe)
(property "Sheetname" "Control/RTC" (at 110.49 24.1291 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
)
(property "Sheetfile" "ControlRTC.kicad_sch" (at 110.49 57.6589 0)
(effects (font (size 1.27 1.27)) (justify left top))
)
(pin "{I2C}" bidirectional (at 110.49 38.1 180)
(effects (font (size 1.27 1.27)) (justify left))
(uuid c6696ad6-d534-4a98-a4af-bc9b0419b3e8)
)
(pin "~{LED_PWR}" input (at 110.49 40.64 180)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 74831538-ffef-4216-9ad7-2dc4c58401e4)
)
(pin "~{FAN_PWM}" input (at 158.115 53.975 0)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 00439a74-41c1-44a1-ae78-9ce765150eda)
)
(pin "~{LED_RADIO}" input (at 158.115 46.99 0)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 766cde48-55d7-4ed5-9d53-70de087b96b9)
)
(pin "~{LED_ACT}" input (at 110.49 43.18 180)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 762deb47-85e1-4401-9630-82df3e91f0a5)
)
(pin "~{SW_WIPE}" output (at 110.49 53.34 180)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 5a6e91f3-cd4f-406f-ba6d-280ef81b9d42)
)
(pin "~{SW_USER}" output (at 110.49 50.8 180)
(effects (font (size 1.27 1.27)) (justify left))
(uuid adb89242-12da-4d08-adf3-6de3a7e84841)
)
(pin "~{LED_AMBER}" input (at 110.49 45.72 180)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 7a7e8217-7b4d-47b4-95e9-754258f506a0)
)
(instances
(project "Yellow"
(path "/abc482bd-3f17-4d35-80db-1da3dcdb5c27" (page "9"))
)
)
)
(sheet (at 175.26 93.98) (size 35.56 15.24)
(stroke (width 0.001) (type solid) (color 132 0 132 1))
(fill (color 255 255 255 0.0000))
(uuid 67ada73c-6692-4fd8-8c20-5be89f2b8650)
(property "Sheetname" "SDCard" (at 175.26 93.3441 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
)
(property "Sheetfile" "SDCard.kicad_sch" (at 175.26 109.7289 0)
(effects (font (size 1.27 1.27)) (justify left top))
)
(pin "SD{SD}" bidirectional (at 175.26 96.52 180)
(effects (font (size 1.27 1.27)) (justify left))
(uuid e2b751d7-ef65-4871-b115-de56ee6bf2fd)
)
(instances
(project "Yellow"
(path "/abc482bd-3f17-4d35-80db-1da3dcdb5c27" (page "10"))
)
)
)
(sheet (at 24.13 91.44) (size 35.56 19.05)
(stroke (width 0.001) (type solid) (color 132 0 132 1))
(fill (color 255 255 255 0.0000))
(uuid 6888556d-e390-44b5-977e-8a0092745a4b)
(property "Sheetname" "PoE" (at 24.13 90.8041 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
)
(property "Sheetfile" "PoE.kicad_sch" (at 24.13 110.9989 0)
(effects (font (size 1.27 1.27)) (justify left top))
)
(pin "{PoE}" input (at 59.69 93.98 0)
(effects (font (size 1.27 1.27)) (justify right))
(uuid c4c86d6c-2d76-48fa-88ca-5243b8b77cb2)
)
(pin "DC_IN_F" input (at 59.69 107.95 0)
(effects (font (size 1.27 1.27)) (justify right))
(uuid d91f01a5-d8e3-4383-a837-a7c5b06fa561)
)
(instances
(project "Yellow"
(path "/abc482bd-3f17-4d35-80db-1da3dcdb5c27" (page "11"))
)
)
)
(sheet (at 110.49 66.04) (size 47.625 42.545)
(stroke (width 0.001) (type solid) (color 187 17 66 1))
(fill (color 255 255 255 0.0000))
(uuid 7c248bd3-8232-4777-a40c-eab53460cf85)
(property "Sheetname" "CM4" (at 110.49 65.4041 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
)
(property "Sheetfile" "CM4.kicad_sch" (at 110.49 109.22 0)
(effects (font (size 1.27 1.27)) (justify left top))
)
(pin "ETH{ETH}" bidirectional (at 110.49 102.235 180)
(effects (font (size 1.27 1.27)) (justify left))
(uuid c8965626-ebb7-4b9c-a885-bb7cc1519729)
)
(pin "{CM4_USB}" bidirectional (at 110.49 87.63 180)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 0d90fb4f-3215-4a85-ae3a-972835557a52)
)
(pin "PCIe{PCIe}" bidirectional (at 158.115 73.66 0)
(effects (font (size 1.27 1.27)) (justify right))
(uuid caf17212-3095-40b8-8f06-92dd7554630c)
)
(pin "{I2C}" bidirectional (at 110.49 83.82 180)
(effects (font (size 1.27 1.27)) (justify left))
(uuid eeccd782-552b-4985-a4f0-737b74060318)
)
(pin "CM4_DBG{TX RX}" bidirectional (at 110.49 90.17 180)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 0b8fea2a-c627-49d8-bfcd-c2897d32c7af)
)
(pin "I2S{I2S}" output (at 110.49 106.045 180)
(effects (font (size 1.27 1.27)) (justify left))
(uuid d676a940-f810-4bd4-87ae-ca7d5bf4f704)
)
(pin "~{EXTRST}" output (at 110.49 92.71 180)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 4858358d-b7e4-48a9-b2a8-12d4f17b691b)
)
(pin "SD{SD}" bidirectional (at 158.115 96.52 0)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 54e675ac-4be0-4c7a-bac9-c760d208b4a2)
)
(pin "~{LED_PWR}" output (at 110.49 81.28 180)
(effects (font (size 1.27 1.27)) (justify left))
(uuid e68109dc-ed5b-4115-b10c-86e3e1cd8f5e)
)
(pin "~{LED_ACT}" output (at 110.49 78.74 180)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 08a4315f-d715-4c5d-bb7b-db9b1e5d6917)
)
(pin "~{FAN_PWM}" output (at 158.115 71.12 0)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 9fdef8b1-1ed1-4a09-9c65-439d27d4943e)
)
(pin "Radio{UART SWD ~{RESET} ~{BOOT}}" bidirectional (at 158.115 80.01 0)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 2f0b0fda-42bd-4c5a-ba78-88beb8cf9b7e)
)
(pin "~{SW_WIPE}" input (at 110.49 68.58 180)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 20559413-fe04-4a76-97f3-35d2fcf52f1e)
)
(pin "~{SW_USER}" input (at 110.49 71.12 180)
(effects (font (size 1.27 1.27)) (justify left))
(uuid bea8a61b-f9e6-4821-9682-22a61dfa11ae)
)
(pin "RESET_CM4" input (at 110.49 95.25 180)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 6c76d170-3b75-4fa2-a46b-27c32496e30e)
)
(pin "~{LED_AMBER}" output (at 110.49 76.2 180)
(effects (font (size 1.27 1.27)) (justify left))
(uuid abb27109-7646-406d-85ef-6850bf7b0f3e)
)
(instances
(project "Yellow"
(path "/abc482bd-3f17-4d35-80db-1da3dcdb5c27" (page "2"))
)
)
)