-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patharduino_coprocessor.kicad_sch
1215 lines (1196 loc) · 44.5 KB
/
arduino_coprocessor.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 77336a48-9e48-4d27-b40e-03a8c050e142)
(paper "A4")
(lib_symbols
(symbol "2023-09-29_01-38-21:ATMEGA1608-MFR" (pin_names (offset 0.254)) (in_bom yes) (on_board yes)
(property "Reference" "U4" (at 25.4 10.16 0)
(effects (font (size 1.524 1.524)))
)
(property "Value" "ATMEGA1608-MFR" (at 25.4 7.62 0)
(effects (font (size 1.524 1.524)))
)
(property "Footprint" "atmega:VQFN32_RXB_MCH-M" (at 0 1.27 0)
(effects (font (size 1.27 1.27) italic) hide)
)
(property "Datasheet" "ATMEGA1608-MFR" (at 0 1.27 0)
(effects (font (size 1.27 1.27) italic) hide)
)
(property "ki_locked" "" (at 0 0 0)
(effects (font (size 1.27 1.27)))
)
(property "ki_keywords" "ATMEGA1608-MFR" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "VQFN32_RXB_MCH VQFN32_RXB_MCH-M VQFN32_RXB_MCH-L" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "ATMEGA1608-MFR_0_1"
(polyline
(pts
(xy 7.62 -45.72)
(xy 43.18 -45.72)
)
(stroke (width 0.127) (type default))
(fill (type none))
)
(polyline
(pts
(xy 7.62 5.08)
(xy 7.62 -45.72)
)
(stroke (width 0.127) (type default))
(fill (type none))
)
(polyline
(pts
(xy 43.18 -45.72)
(xy 43.18 5.08)
)
(stroke (width 0.127) (type default))
(fill (type none))
)
(polyline
(pts
(xy 43.18 5.08)
(xy 7.62 5.08)
)
(stroke (width 0.127) (type default))
(fill (type none))
)
(pin power_in line (at 50.8 -38.1 180) (length 7.62)
(name "AVDD" (effects (font (size 1.27 1.27))))
(number "18" (effects (font (size 1.27 1.27))))
)
(pin power_out line (at 50.8 -35.56 180) (length 7.62)
(name "GND" (effects (font (size 1.27 1.27))))
(number "19" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 50.8 -15.24 180) (length 7.62)
(name "UPDI" (effects (font (size 1.27 1.27))))
(number "27" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 50.8 -12.7 180) (length 7.62)
(name "VDD" (effects (font (size 1.27 1.27))))
(number "28" (effects (font (size 1.27 1.27))))
)
(pin power_out line (at 50.8 -10.16 180) (length 7.62)
(name "GND" (effects (font (size 1.27 1.27))))
(number "29" (effects (font (size 1.27 1.27))))
)
(pin power_out line (at 50.8 0 180) (length 7.62)
(name "GND" (effects (font (size 1.27 1.27))))
(number "33" (effects (font (size 1.27 1.27))))
)
)
(symbol "ATMEGA1608-MFR_1_1"
(pin bidirectional line (at 0 0 0) (length 7.62)
(name "PA3_SCL" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 0 -22.86 0) (length 7.62)
(name "PD0_AIN0" (effects (font (size 1.27 1.27))))
(number "10" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 0 -25.4 0) (length 7.62)
(name "PD1_AIN1" (effects (font (size 1.27 1.27))))
(number "11" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 0 -27.94 0) (length 7.62)
(name "PD2_AIN2" (effects (font (size 1.27 1.27))))
(number "12" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 0 -30.48 0) (length 7.62)
(name "PD3_AIN3" (effects (font (size 1.27 1.27))))
(number "13" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 0 -33.02 0) (length 7.62)
(name "PD4_AIN4" (effects (font (size 1.27 1.27))))
(number "14" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 0 -35.56 0) (length 7.62)
(name "PD5_AIN5" (effects (font (size 1.27 1.27))))
(number "15" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 0 -38.1 0) (length 7.62)
(name "PD6_AIN6" (effects (font (size 1.27 1.27))))
(number "16" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 50.8 -40.64 180) (length 7.62)
(name "PD7_AIN7" (effects (font (size 1.27 1.27))))
(number "17" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 0 -2.54 0) (length 7.62)
(name "PA4_MOSI_TXD" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 50.8 -33.02 180) (length 7.62)
(name "PF0(TOSC1)_TXD" (effects (font (size 1.27 1.27))))
(number "20" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 50.8 -30.48 180) (length 7.62)
(name "PF1(TOSC2)_RXD" (effects (font (size 1.27 1.27))))
(number "21" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 50.8 -27.94 180) (length 7.62)
(name "PF2_SDA" (effects (font (size 1.27 1.27))))
(number "22" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 50.8 -25.4 180) (length 7.62)
(name "PF3_SCL" (effects (font (size 1.27 1.27))))
(number "23" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 50.8 -22.86 180) (length 7.62)
(name "PF4_AIN14" (effects (font (size 1.27 1.27))))
(number "24" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 50.8 -20.32 180) (length 7.62)
(name "PF5_AIN15" (effects (font (size 1.27 1.27))))
(number "25" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 50.8 -17.78 180) (length 7.62)
(name "PF6_RESET" (effects (font (size 1.27 1.27))))
(number "26" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 0 -5.08 0) (length 7.62)
(name "PA5_MISO_RXD" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 50.8 -7.62 180) (length 7.62)
(name "PA0(EXTCLK)_TXD" (effects (font (size 1.27 1.27))))
(number "30" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 50.8 -5.08 180) (length 7.62)
(name "PA1_RXD" (effects (font (size 1.27 1.27))))
(number "31" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 50.8 -2.54 180) (length 7.62)
(name "PA2_SDA" (effects (font (size 1.27 1.27))))
(number "32" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 0 -7.62 0) (length 7.62)
(name "PA6_SCK" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 0 -10.16 0) (length 7.62)
(name "PA7_SS" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 0 -12.7 0) (length 7.62)
(name "PC0_TXD" (effects (font (size 1.27 1.27))))
(number "6" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 0 -15.24 0) (length 7.62)
(name "PC1_RXD" (effects (font (size 1.27 1.27))))
(number "7" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 0 -17.78 0) (length 7.62)
(name "PC2_SCK_SDA" (effects (font (size 1.27 1.27))))
(number "8" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 0 -20.32 0) (length 7.62)
(name "PC3_SS_SCL" (effects (font (size 1.27 1.27))))
(number "9" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "2023-09-30_01-44-26:DSC6001CE2A-010.0000" (pin_names (offset 0.254)) (in_bom yes) (on_board yes)
(property "Reference" "U" (at 20.32 10.16 0)
(effects (font (size 1.524 1.524)))
)
(property "Value" "DSC6001CE2A-010.0000" (at 20.32 7.62 0)
(effects (font (size 1.524 1.524)))
)
(property "Footprint" "DFN4_3.2X2.5_MCH" (at 0 0 0)
(effects (font (size 1.27 1.27) italic) hide)
)
(property "Datasheet" "DSC6001CE2A-010.0000" (at 0 0 0)
(effects (font (size 1.27 1.27) italic) hide)
)
(property "ki_locked" "" (at 0 0 0)
(effects (font (size 1.27 1.27)))
)
(property "ki_keywords" "DSC6001CE2A-010.0000" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "DFN4_3.2X2.5_MCH DFN4_3.2X2.5_MCH-M DFN4_3.2X2.5_MCH-L" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "DSC6001CE2A-010.0000_0_1"
(polyline
(pts
(xy 7.62 -7.62)
(xy 33.02 -7.62)
)
(stroke (width 0.127) (type default))
(fill (type none))
)
(polyline
(pts
(xy 7.62 5.08)
(xy 7.62 -7.62)
)
(stroke (width 0.127) (type default))
(fill (type none))
)
(polyline
(pts
(xy 33.02 -7.62)
(xy 33.02 5.08)
)
(stroke (width 0.127) (type default))
(fill (type none))
)
(polyline
(pts
(xy 33.02 5.08)
(xy 7.62 5.08)
)
(stroke (width 0.127) (type default))
(fill (type none))
)
(pin output line (at 0 0 0) (length 7.62)
(name "OE" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin power_out line (at 0 -2.54 0) (length 7.62)
(name "GND" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin output line (at 40.64 -2.54 180) (length 7.62)
(name "OUT" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 40.64 0 180) (length 7.62)
(name "VDD" (effects (font (size 1.27 1.27))))
(number "4" (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 "Device:R_US" (pin_numbers hide) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "R" (at 2.54 0 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "R_US" (at -2.54 0 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 1.016 -0.254 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "R res resistor" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Resistor, US symbol" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "R_*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "R_US_0_1"
(polyline
(pts
(xy 0 -2.286)
(xy 0 -2.54)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0 2.286)
(xy 0 2.54)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0 -0.762)
(xy 1.016 -1.143)
(xy 0 -1.524)
(xy -1.016 -1.905)
(xy 0 -2.286)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0 0.762)
(xy 1.016 0.381)
(xy 0 0)
(xy -1.016 -0.381)
(xy 0 -0.762)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0 2.286)
(xy 1.016 1.905)
(xy 0 1.524)
(xy -1.016 1.143)
(xy 0 0.762)
)
(stroke (width 0) (type default))
(fill (type none))
)
)
(symbol "R_US_1_1"
(pin passive line (at 0 3.81 270) (length 1.27)
(name "~" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -3.81 90) (length 1.27)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "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 163.83 96.52) (diameter 0) (color 0 0 0 0)
(uuid ade4ea29-d583-4d80-8e6f-b281a6c41ab4)
)
(junction (at 163.83 71.12) (diameter 0) (color 0 0 0 0)
(uuid c74e5c4b-9f55-4220-9828-236e688240b5)
)
(junction (at 168.91 73.66) (diameter 0) (color 0 0 0 0)
(uuid ec718dbc-426d-4610-9b6b-8dde527298ea)
)
(wire (pts (xy 257.81 66.04) (xy 255.27 66.04))
(stroke (width 0) (type default))
(uuid 000faf66-ac6e-45e8-9dd4-262c9577a5b9)
)
(wire (pts (xy 205.74 68.58) (xy 214.63 68.58))
(stroke (width 0) (type default))
(uuid 0140ba64-accc-4cbd-94cf-5bc93020fd99)
)
(wire (pts (xy 101.6 91.44) (xy 109.22 91.44))
(stroke (width 0) (type default))
(uuid 14c50420-0f76-4fd4-84a5-e625f1e19b0a)
)
(wire (pts (xy 101.6 60.96) (xy 109.22 60.96))
(stroke (width 0) (type default))
(uuid 18e590bb-74c3-4b6a-8d28-9d334f5a3355)
)
(wire (pts (xy 160.02 68.58) (xy 198.12 68.58))
(stroke (width 0) (type default))
(uuid 1a685ac8-6933-489e-bb71-518c436d72b4)
)
(wire (pts (xy 163.83 71.12) (xy 163.83 96.52))
(stroke (width 0) (type default))
(uuid 1dd9ee5c-a992-44c0-be5b-63087b524482)
)
(wire (pts (xy 172.72 93.98) (xy 160.02 93.98))
(stroke (width 0) (type default))
(uuid 2251c089-3b3b-4d62-9687-acadf756fff0)
)
(wire (pts (xy 101.6 96.52) (xy 109.22 96.52))
(stroke (width 0) (type default))
(uuid 2544f4e5-cb89-4684-ab8d-d21ddf57a227)
)
(wire (pts (xy 163.83 60.96) (xy 163.83 71.12))
(stroke (width 0) (type default))
(uuid 267da427-131a-4ad5-bc64-b74d0740de94)
)
(wire (pts (xy 242.57 83.82) (xy 242.57 85.09))
(stroke (width 0) (type default))
(uuid 274898e3-8239-4bf1-bf67-5c3c095b26e7)
)
(wire (pts (xy 172.72 83.82) (xy 160.02 83.82))
(stroke (width 0) (type default))
(uuid 2a012b81-0950-4656-857c-6aa2091919b3)
)
(wire (pts (xy 172.72 76.2) (xy 160.02 76.2))
(stroke (width 0) (type default))
(uuid 30c39f5d-319e-4c64-9d27-bfb37211a213)
)
(wire (pts (xy 163.83 106.68) (xy 163.83 96.52))
(stroke (width 0) (type default))
(uuid 37834ce9-994b-4ba0-896a-b750dc4e1bd2)
)
(wire (pts (xy 168.91 54.61) (xy 168.91 73.66))
(stroke (width 0) (type default))
(uuid 4197d0ca-8e47-4543-bcfc-74e1222e120e)
)
(wire (pts (xy 160.02 99.06) (xy 168.91 99.06))
(stroke (width 0) (type default))
(uuid 43104c44-358d-4a23-af0f-348a60112870)
)
(wire (pts (xy 166.37 134.62) (xy 166.37 132.08))
(stroke (width 0) (type default))
(uuid 485e14b5-27ce-46c8-8f87-64f4bb3d63dc)
)
(wire (pts (xy 101.6 71.12) (xy 109.22 71.12))
(stroke (width 0) (type default))
(uuid 4b9e705c-cb97-4de1-913b-bf7416318dde)
)
(wire (pts (xy 172.72 88.9) (xy 160.02 88.9))
(stroke (width 0) (type default))
(uuid 4f23989c-8874-46b0-80e1-09bf992ddacb)
)
(wire (pts (xy 172.72 78.74) (xy 160.02 78.74))
(stroke (width 0) (type default))
(uuid 5eb70483-c6e2-4aed-91d8-7d53a43b9f5e)
)
(wire (pts (xy 101.6 99.06) (xy 109.22 99.06))
(stroke (width 0) (type default))
(uuid 6624167f-bb3c-4218-b789-bb00a6b79783)
)
(wire (pts (xy 163.83 96.52) (xy 160.02 96.52))
(stroke (width 0) (type default))
(uuid 6a3ed83b-57f2-49c0-bf77-bc185aa12690)
)
(wire (pts (xy 166.37 123.19) (xy 166.37 124.46))
(stroke (width 0) (type default))
(uuid 6b8a0f46-41a7-4265-93a7-383b41b282eb)
)
(wire (pts (xy 152.4 134.62) (xy 152.4 132.08))
(stroke (width 0) (type default))
(uuid 713ab56f-8364-4511-bf1a-111ba3d1c42f)
)
(wire (pts (xy 172.72 63.5) (xy 160.02 63.5))
(stroke (width 0) (type default))
(uuid 72ec8138-61a0-4e1d-b4cf-c248365777d2)
)
(wire (pts (xy 101.6 93.98) (xy 109.22 93.98))
(stroke (width 0) (type default))
(uuid 84459a19-4c17-4eaa-b5a5-e7d3ff6d9bc9)
)
(wire (pts (xy 172.72 66.04) (xy 160.02 66.04))
(stroke (width 0) (type default))
(uuid 876831c8-4dba-4a10-8997-c39e08d07f47)
)
(wire (pts (xy 160.02 60.96) (xy 163.83 60.96))
(stroke (width 0) (type default))
(uuid 87776f03-359c-4127-8928-b9ac4543534f)
)
(wire (pts (xy 101.6 78.74) (xy 109.22 78.74))
(stroke (width 0) (type default))
(uuid 91a396db-7fe5-46d4-bb35-d24414c4b1d9)
)
(wire (pts (xy 101.6 66.04) (xy 109.22 66.04))
(stroke (width 0) (type default))
(uuid 98174eb3-8fca-4141-b81d-bdb2a45dfc5b)
)
(wire (pts (xy 168.91 73.66) (xy 160.02 73.66))
(stroke (width 0) (type default))
(uuid 9e62de8a-4995-4923-84b3-7b13d4e0f6d0)
)
(wire (pts (xy 101.6 63.5) (xy 109.22 63.5))
(stroke (width 0) (type default))
(uuid a1a0cc21-0d91-4692-925e-7c3c2bfc4c30)
)
(wire (pts (xy 101.6 81.28) (xy 109.22 81.28))
(stroke (width 0) (type default))
(uuid a71bfbb6-f814-4144-bce4-fcb4946bda73)
)
(wire (pts (xy 101.6 73.66) (xy 109.22 73.66))
(stroke (width 0) (type default))
(uuid ad0fc8ba-4526-4850-843d-33ae4a92b79c)
)
(wire (pts (xy 257.81 73.66) (xy 257.81 68.58))
(stroke (width 0) (type default))
(uuid bdf06cf0-a44f-432f-9a4d-79ab7846c2b5)
)
(wire (pts (xy 209.55 66.04) (xy 214.63 66.04))
(stroke (width 0) (type default))
(uuid c8c4b91f-08f4-4d68-8b31-e1766b3ae856)
)
(wire (pts (xy 227.33 93.98) (xy 227.33 91.44))
(stroke (width 0) (type default))
(uuid cc637340-17c8-4b46-afa5-b25c7c2f6fe7)
)
(wire (pts (xy 172.72 86.36) (xy 160.02 86.36))
(stroke (width 0) (type default))
(uuid d008bebc-1855-46b2-bf8f-21f38d6601cc)
)
(wire (pts (xy 257.81 59.69) (xy 257.81 66.04))
(stroke (width 0) (type default))
(uuid d1935c8e-f9b7-41ab-9b14-f0867e9e53e8)
)
(wire (pts (xy 172.72 91.44) (xy 160.02 91.44))
(stroke (width 0) (type default))
(uuid d3fc82b9-4593-43d8-9a41-be656ed059df)
)
(wire (pts (xy 101.6 83.82) (xy 109.22 83.82))
(stroke (width 0) (type default))
(uuid d7e711da-4dac-46bf-b46f-66ac4c15bf5c)
)
(wire (pts (xy 242.57 95.25) (xy 242.57 92.71))
(stroke (width 0) (type default))
(uuid da7031c6-3b48-41ab-89c3-259e30425e6e)
)
(wire (pts (xy 101.6 76.2) (xy 109.22 76.2))
(stroke (width 0) (type default))
(uuid dc688087-4c8f-4049-a588-530e7cef2122)
)
(wire (pts (xy 160.02 71.12) (xy 163.83 71.12))
(stroke (width 0) (type default))
(uuid deda35b7-b4fa-4cc9-87a8-0ee6c84677d0)
)
(wire (pts (xy 101.6 88.9) (xy 109.22 88.9))
(stroke (width 0) (type default))
(uuid e008cd3a-8f30-4efe-88f2-0e880f6a88fb)
)
(wire (pts (xy 257.81 68.58) (xy 255.27 68.58))
(stroke (width 0) (type default))
(uuid e3c41f44-9405-40c3-a614-12b858282a93)
)
(wire (pts (xy 152.4 123.19) (xy 152.4 124.46))
(stroke (width 0) (type default))
(uuid e4657c9c-0eb1-4881-a47f-2a0cede16c90)
)
(wire (pts (xy 172.72 81.28) (xy 160.02 81.28))
(stroke (width 0) (type default))
(uuid ed01cf49-abcc-4788-a61d-1fa56adf4b75)
)
(wire (pts (xy 101.6 86.36) (xy 109.22 86.36))
(stroke (width 0) (type default))
(uuid ee3e7068-52b2-4714-8ee7-414e3ce754a5)
)
(wire (pts (xy 209.55 55.88) (xy 209.55 66.04))
(stroke (width 0) (type default))
(uuid ee79b279-abba-4c94-814c-e2f15ec267f4)
)
(wire (pts (xy 168.91 99.06) (xy 168.91 73.66))
(stroke (width 0) (type default))
(uuid eedd48df-918f-4325-8d14-fb0e8c103a0b)
)
(wire (pts (xy 101.6 68.58) (xy 109.22 68.58))
(stroke (width 0) (type default))
(uuid f593d8dd-fce6-48a1-b643-768f3f17cb3a)
)
(wire (pts (xy 172.72 101.6) (xy 160.02 101.6))
(stroke (width 0) (type default))
(uuid f607d8e1-5d4d-4676-8cc6-5ece619e0165)
)
(wire (pts (xy 227.33 82.55) (xy 227.33 83.82))
(stroke (width 0) (type default))
(uuid fcd33d66-4569-4ba0-8608-598cd77eb417)
)
(hierarchical_label "I2C2_SCL" (shape bidirectional) (at 172.72 86.36 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 025ac75d-8ceb-4161-ad6b-7a589c596c8e)
)
(hierarchical_label "GPIO_AIN5" (shape bidirectional) (at 101.6 96.52 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 08ce5bf3-d46b-48d6-bc19-cc352adc4c19)
)
(hierarchical_label "VCC" (shape input) (at 166.37 123.19 90) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 0b4223c6-a1cd-476a-a8b3-0406dd96e814)
)
(hierarchical_label "GPIO_AIN14" (shape bidirectional) (at 172.72 83.82 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 132d9df2-80be-4b6d-bdb7-698b404e683d)
)
(hierarchical_label "VCC" (shape input) (at 209.55 55.88 90) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 21eb2262-dc60-4554-9bee-30bb74150988)
)
(hierarchical_label "RESET_n" (shape input) (at 172.72 78.74 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 31ea1948-7609-4c25-a119-a785190174c2)
)
(hierarchical_label "UART0_RXD_SPI0_MISO" (shape input) (at 101.6 66.04 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 4b1d5810-9a1c-437a-9e3a-d3534f69f663)
)
(hierarchical_label "I2C0_SDA" (shape bidirectional) (at 172.72 63.5 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 58549ca3-ecd5-4c90-9af0-604c062a6f05)
)
(hierarchical_label "GPIO_AIN15" (shape bidirectional) (at 172.72 81.28 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 5fa7ce39-be30-4856-9088-e3f4582c2914)
)
(hierarchical_label "UDPI" (shape bidirectional) (at 172.72 76.2 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 63418997-2d6a-4180-9b66-4d54e42e7259)
)
(hierarchical_label "VCC" (shape input) (at 227.33 82.55 90) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 6ffacca2-96b2-4c45-b2d5-5d6631f03b66)
)
(hierarchical_label "GPIO_AIN1" (shape bidirectional) (at 101.6 86.36 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 7065a0cf-d6b1-43ed-a880-c9ddbaa2d1f2)
)
(hierarchical_label "UART1_RXD_SPI1_MISO" (shape input) (at 101.6 76.2 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 7085689b-b6e9-49ea-bdda-1f23c0e3db85)
)
(hierarchical_label "VCC" (shape input) (at 257.81 59.69 90) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 71291425-1639-410e-9cde-2e58f93d8e59)
)
(hierarchical_label "I2C1_SCL_SPI1_CS" (shape input) (at 101.6 81.28 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 733f7e29-c16c-4201-b2cf-80619bbd7058)
)
(hierarchical_label "I2C2_SDA" (shape bidirectional) (at 172.72 88.9 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 73cd121b-e9f7-4212-99ce-b9ff99ca3b00)
)
(hierarchical_label "SPI0_CS" (shape input) (at 101.6 71.12 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 744eab11-7602-4550-9823-cb5b5b64b27f)
)
(hierarchical_label "GPIO" (shape bidirectional) (at 172.72 66.04 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 7b534b9b-d8ae-4a0e-8182-1d776da77c0a)
)
(hierarchical_label "SPI0_SCLK" (shape input) (at 101.6 68.58 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 83b9cd77-7985-4abe-b97b-eef9aa0b3da6)
)
(hierarchical_label "UART0_TXD_SPI0_MOSI" (shape input) (at 101.6 63.5 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 8747ce6b-004e-4b90-908e-087f808cd906)
)
(hierarchical_label "UART2_TXD" (shape bidirectional) (at 172.72 93.98 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 884408a5-a0d4-45f3-97c9-37c1a7576dab)
)
(hierarchical_label "VCC" (shape input) (at 152.4 123.19 90) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 8dfde500-7eef-4996-9acc-0b913fdc8f0d)
)
(hierarchical_label "UART1_TXD_SPI1_MOSI" (shape input) (at 101.6 73.66 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 97a3aad8-23c9-42d9-b850-652d280106b7)
)
(hierarchical_label "GPIO_AIN2" (shape bidirectional) (at 101.6 88.9 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid a42d759c-5fcb-44fa-b287-e09c8152f592)
)
(hierarchical_label "GPIO_AIN7" (shape bidirectional) (at 172.72 101.6 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid ac4f9b34-ffa9-4a6e-bd2d-469c9446e217)
)
(hierarchical_label "GPIO_AIN6" (shape bidirectional) (at 101.6 99.06 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid c1440fda-c4ba-40a8-b65a-fef960f20908)
)
(hierarchical_label "I2C1_SCL_SPI1_CLK" (shape input) (at 101.6 78.74 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid c46a090d-1572-41d5-8694-c35ce751df22)
)
(hierarchical_label "I2C0_SCL" (shape bidirectional) (at 101.6 60.96 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid cb06db64-171a-44b5-afde-ab1db8ddd780)
)
(hierarchical_label "GPIO_AIN0" (shape bidirectional) (at 101.6 83.82 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid d195f1c8-20fc-4177-b908-d983f07d53b3)
)
(hierarchical_label "UART2_RXD" (shape bidirectional) (at 172.72 91.44 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid dfc5e974-ab98-463e-8d2e-59ec25d007d0)
)
(hierarchical_label "VCC" (shape input) (at 168.91 54.61 90) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid e859ea92-4f20-46a2-b073-319dcf9e2510)
)
(hierarchical_label "VCC" (shape input) (at 242.57 83.82 90) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid ebec8207-9172-48f4-94fd-d6b4e385691d)
)
(hierarchical_label "GPIO_AIN4" (shape bidirectional) (at 101.6 93.98 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid f45fbe5b-73b9-4345-9be8-eff1abf42696)
)
(hierarchical_label "GPIO_AIN3" (shape bidirectional) (at 101.6 91.44 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid f9ad27d4-4fd8-40f1-9531-fef41fdfcd95)
)
(symbol (lib_id "2023-09-29_01-38-21:ATMEGA1608-MFR") (at 109.22 60.96 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 138d99a2-9398-4914-8471-ba541cf57f79)
(property "Reference" "U4" (at 134.62 50.8 0)
(effects (font (size 1.524 1.524)))
)
(property "Value" "ATMEGA1608-MFR" (at 134.62 53.34 0)
(effects (font (size 1.524 1.524)))
)
(property "Footprint" "atmega:VQFN32_RXB_MCH-M" (at 109.22 59.69 0)
(effects (font (size 1.27 1.27) italic) hide)
)
(property "Datasheet" "ATMEGA1608-MFR" (at 109.22 59.69 0)
(effects (font (size 1.27 1.27) italic) hide)
)
(pin "18" (uuid 5f93b28d-e557-4350-8199-09f3154e057c))
(pin "19" (uuid 1d71c10f-9f3f-40d8-af55-9f9c852db48e))
(pin "27" (uuid bacdd1ec-6f51-4930-a098-3879a404858b))
(pin "28" (uuid fa952797-6ed4-4bd5-ab14-edaab7aae9ee))
(pin "29" (uuid 11e7df3f-3c53-4595-bf1c-c5ebaa244433))
(pin "33" (uuid 0dc1c5c5-d996-4a62-b1b8-34f96a47076a))
(pin "1" (uuid 9119d8c0-47d7-4692-8ef0-d56aca61ca20))
(pin "10" (uuid 965e26da-24d3-420e-ab92-59467568061f))
(pin "11" (uuid 8be343ec-26c0-4cae-aacc-b2e0791a9007))
(pin "12" (uuid 98a90dd5-db31-4bf5-8f99-3c6dd686c8fb))
(pin "13" (uuid 23ecbcf9-84ae-4ef6-9202-77c58c00c8bc))
(pin "14" (uuid 1bbed0dc-8623-4e19-a680-53a4b651c094))
(pin "15" (uuid 65b624d1-aada-443c-82b4-b46a47b8e0f1))
(pin "16" (uuid b3958e35-30fd-43a3-8ea4-519d6e1d74c3))
(pin "17" (uuid 599f8a7b-8478-46ce-b90f-7c7d2c0c46a8))
(pin "2" (uuid 3152fb51-40c0-4605-a8c7-0836bb85c801))
(pin "20" (uuid a4f2c94c-f498-4caa-93c7-65c5a0674e89))
(pin "21" (uuid 00e90dba-547e-4733-a696-4fb4252cb360))
(pin "22" (uuid 22d330e0-0a02-42c8-8dbd-5092cf5bf108))
(pin "23" (uuid c6089656-431a-4001-ac61-7db1bb55957d))
(pin "24" (uuid b3d53823-c413-4130-b0fb-59aaa1b914fb))
(pin "25" (uuid c18c74aa-139a-4e81-9635-39acfdbc1098))
(pin "26" (uuid 34b50123-e61c-4c6e-8da0-cd72dc989ba0))
(pin "3" (uuid 79822b8f-45fd-462e-be77-165f5a138b9d))
(pin "30" (uuid fadbcea8-709b-4be9-8ed4-55008e22687c))
(pin "31" (uuid b45c9103-2c88-4f43-8e62-a7cc834f2c44))
(pin "32" (uuid 086d8b5f-b6df-48aa-867d-220a984102b0))
(pin "4" (uuid 1d6ab9ac-458c-4444-a088-2abd466963c9))
(pin "5" (uuid 7a86e737-d775-4827-8c6e-74db2d0b88ee))
(pin "6" (uuid 05ccdba6-0d53-4d1f-b0fd-7046d14f3eab))
(pin "7" (uuid 74b4fe2f-6e9a-4c4d-87b7-31571ebe047b))
(pin "8" (uuid b15647bd-de30-4b3c-bb3d-4e2045d83af6))
(pin "9" (uuid dc516cee-1975-4dbd-9629-7926b7356505))
(instances
(project "DaisySeedBreakout"
(path "/a83c9f4b-f61b-47d4-b39d-4636bff6eb0e"
(reference "U4") (unit 1)
)
(path "/a83c9f4b-f61b-47d4-b39d-4636bff6eb0e/aab26711-aaaa-4036-909f-ecfd3f2c014e"
(reference "U4") (unit 1)
)
)
)
)
(symbol (lib_id "2023-09-30_01-44-26:DSC6001CE2A-010.0000") (at 255.27 66.04 0) (mirror y) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 29101505-8b0d-4254-b251-870959f53e1f)
(property "Reference" "U6" (at 234.95 55.88 0)
(effects (font (size 1.524 1.524)))
)
(property "Value" "DSC6001CE2A-010.0000" (at 234.95 58.42 0)
(effects (font (size 1.524 1.524)))
)
(property "Footprint" "DFN4_3.2X2.5_MCH" (at 255.27 66.04 0)
(effects (font (size 1.27 1.27) italic) hide)
)
(property "Datasheet" "DSC6001CE2A-010.0000" (at 255.27 66.04 0)
(effects (font (size 1.27 1.27) italic) hide)
)
(pin "1" (uuid 6afaa61b-174b-49b2-96e9-3b288e64b30a))
(pin "2" (uuid 0f44291a-61ab-4c8c-af4b-286d17b15dee))
(pin "3" (uuid 45456bb6-04e0-410b-b900-ed80bf546c72))
(pin "4" (uuid 158d3c00-6184-484a-b254-3c099f109168))
(instances
(project "DaisySeedBreakout"
(path "/a83c9f4b-f61b-47d4-b39d-4636bff6eb0e/aab26711-aaaa-4036-909f-ecfd3f2c014e"
(reference "U6") (unit 1)
)
)
)
)
(symbol (lib_id "power:GND") (at 166.37 134.62 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 333d4528-b83b-41c6-bb27-5a037a557aeb)
(property "Reference" "#PWR064" (at 166.37 140.97 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (at 163.83 137.16 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 166.37 134.62 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 166.37 134.62 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 8bee4abd-9377-4945-b3a6-8592d4445e79))
(instances
(project "DaisySeedBreakout"
(path "/a83c9f4b-f61b-47d4-b39d-4636bff6eb0e"
(reference "#PWR064") (unit 1)
)
(path "/a83c9f4b-f61b-47d4-b39d-4636bff6eb0e/aab26711-aaaa-4036-909f-ecfd3f2c014e"
(reference "#PWR075") (unit 1)
)
)
)
)
(symbol (lib_id "power:GND") (at 257.81 73.66 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 5d6e9b22-bd04-481a-9098-35306a771fcf)
(property "Reference" "#PWR064" (at 257.81 80.01 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (at 255.27 76.2 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 257.81 73.66 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 257.81 73.66 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 987e7752-bd7f-4e58-b72b-e453a770098b))
(instances
(project "DaisySeedBreakout"
(path "/a83c9f4b-f61b-47d4-b39d-4636bff6eb0e"
(reference "#PWR064") (unit 1)
)
(path "/a83c9f4b-f61b-47d4-b39d-4636bff6eb0e/aab26711-aaaa-4036-909f-ecfd3f2c014e"
(reference "#PWR079") (unit 1)
)
)
)
)
(symbol (lib_id "Device:C") (at 166.37 128.27 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 69b83b6e-d89d-4f92-93f9-0b34b4378185)
(property "Reference" "C29" (at 170.18 127 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "0.1uF" (at 170.18 129.54 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (at 167.3352 132.08 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 166.37 128.27 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 4dab4aaf-6cf6-4270-bc6f-db8819ed84ed))
(pin "2" (uuid 60624657-0bae-410e-9855-6f0abc332c0c))
(instances
(project "DaisySeedBreakout"
(path "/a83c9f4b-f61b-47d4-b39d-4636bff6eb0e"
(reference "C29") (unit 1)
)
(path "/a83c9f4b-f61b-47d4-b39d-4636bff6eb0e/aab26711-aaaa-4036-909f-ecfd3f2c014e"
(reference "C36") (unit 1)
)
)
)
)
(symbol (lib_id "power:GND") (at 227.33 93.98 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 7820c214-44e9-4da2-9d67-26e59a6f5cd4)
(property "Reference" "#PWR064" (at 227.33 100.33 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (at 224.79 96.52 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 227.33 93.98 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 227.33 93.98 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 8c82e736-d932-454e-ad6a-1017918ff104))
(instances
(project "DaisySeedBreakout"
(path "/a83c9f4b-f61b-47d4-b39d-4636bff6eb0e"