forked from hatlabs/SH-ESP32-hardware
-
Notifications
You must be signed in to change notification settings - Fork 0
/
PCB.kicad_sch
1260 lines (1220 loc) · 46.5 KB
/
PCB.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 dbbd160f-7240-4bed-bdc1-13963605680d)
(paper "A4")
(title_block
(title "Sailor Hat with ESP32")
(date "2022-10-26")
(rev "2.0.2")
(company "Hat Labs Ltd")
(comment 1 "https://creativecommons.org/licenses/by-sa/4.0")
(comment 2 "To view a copy of this license, visit ")
(comment 3 "SH-ESP32 is licensed under CC BY-SA 4.0.")
)
(lib_symbols
(symbol "Device:C" (pin_numbers hide) (pin_names (offset 0.254)) (in_bom yes) (on_board yes)
(property "Reference" "C" (id 0) (at 0.635 2.54 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "C" (id 1) (at 0.635 -2.54 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (id 2) (at 0.9652 -3.81 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" "cap capacitor" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Unpolarized capacitor" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "C_*" (id 6) (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) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -2.032 0.762)
(xy 2.032 0.762)
)
(stroke (width 0.508) (type default) (color 0 0 0 0))
(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 "Mechanical:MountingHole" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
(property "Reference" "H" (id 0) (at 0 5.08 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "MountingHole" (id 1) (at 0 3.175 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 without connection" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "MountingHole*" (id 6) (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) (color 0 0 0 0))
(fill (type none))
)
)
)
(symbol "power:+3.3V" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "#PWR" (id 0) (at 0 -3.81 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "+3.3V" (id 1) (at 0 3.556 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 \"+3.3V\"" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "+3.3V_0_1"
(polyline
(pts
(xy -0.762 1.27)
(xy 0 2.54)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 0)
(xy 0 2.54)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 2.54)
(xy 0.762 1.27)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "+3.3V_1_1"
(pin power_in line (at 0 0 90) (length 0) hide
(name "+3V3" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "power:GND" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "#PWR" (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 91.44 97.79) (diameter 0) (color 0 0 0 0)
(uuid 09a580c1-71c3-47af-9f56-64a21896aa82)
)
(junction (at 99.06 87.63) (diameter 0) (color 0 0 0 0)
(uuid 1ae3ca1f-d514-4b28-ac28-1227c46a0915)
)
(junction (at 99.06 102.87) (diameter 0) (color 0 0 0 0)
(uuid 1b267769-cf92-440d-bfb5-5d01ee043314)
)
(junction (at 119.38 52.07) (diameter 0) (color 0 0 0 0)
(uuid 1c0dcc02-c4fa-4648-b742-189c0f9c30e0)
)
(junction (at 111.76 67.31) (diameter 0) (color 0 0 0 0)
(uuid 1cd84ab4-6191-4b64-9f8f-625d083b2f8d)
)
(junction (at 91.44 92.71) (diameter 0) (color 0 0 0 0)
(uuid 1db6a51a-5a70-4d6e-b477-41bc0703f009)
)
(junction (at 91.44 62.23) (diameter 0) (color 0 0 0 0)
(uuid 222a5679-2d53-4fe3-b8b3-4646d1e38626)
)
(junction (at 91.44 113.03) (diameter 0) (color 0 0 0 0)
(uuid 2da6af23-50e6-4c46-a10e-903837ed890f)
)
(junction (at 99.06 133.35) (diameter 0) (color 0 0 0 0)
(uuid 352c3ae6-99ee-4b8d-8287-7429b60c25d4)
)
(junction (at 99.06 57.15) (diameter 0) (color 0 0 0 0)
(uuid 36048437-b696-4f39-afcf-c465fc535715)
)
(junction (at 99.06 62.23) (diameter 0) (color 0 0 0 0)
(uuid 37066e98-db5a-497e-ab4c-eb2ef4a0ff15)
)
(junction (at 91.44 52.07) (diameter 0) (color 0 0 0 0)
(uuid 4548de74-8458-425c-828b-1859ba73c6a2)
)
(junction (at 99.06 92.71) (diameter 0) (color 0 0 0 0)
(uuid 45e6543b-da28-4ad6-b10a-17b328e877b5)
)
(junction (at 99.06 46.99) (diameter 0) (color 0 0 0 0)
(uuid 48763bb2-5732-476b-b0a4-3ef614809832)
)
(junction (at 91.44 138.43) (diameter 0) (color 0 0 0 0)
(uuid 4a42a82a-54f4-4304-ba00-f2c10c74467a)
)
(junction (at 91.44 87.63) (diameter 0) (color 0 0 0 0)
(uuid 4e49a427-5343-49e1-b49d-ed54a4bf70aa)
)
(junction (at 119.38 62.23) (diameter 0) (color 0 0 0 0)
(uuid 55d369ba-b372-4323-b339-1d9aefaace7b)
)
(junction (at 91.44 123.19) (diameter 0) (color 0 0 0 0)
(uuid 5762c665-3017-4d59-b4a9-a5bca7f698c6)
)
(junction (at 91.44 107.95) (diameter 0) (color 0 0 0 0)
(uuid 59da9c33-0e66-40cb-a44c-dbd7c8ed3272)
)
(junction (at 91.44 128.27) (diameter 0) (color 0 0 0 0)
(uuid 5e847061-9ddd-4ee5-9c56-321a4533a54b)
)
(junction (at 99.06 123.19) (diameter 0) (color 0 0 0 0)
(uuid 64faf4ff-6415-4f92-aa1b-64e4da76fe65)
)
(junction (at 91.44 118.11) (diameter 0) (color 0 0 0 0)
(uuid 6d9ef217-66f1-46b7-a2c3-bc0d0c6d6534)
)
(junction (at 119.38 67.31) (diameter 0) (color 0 0 0 0)
(uuid 6e889523-9c5e-4165-809a-a5284ee6d794)
)
(junction (at 119.38 46.99) (diameter 0) (color 0 0 0 0)
(uuid 766b890f-da2c-48bd-b6ee-8bd0f2c43b93)
)
(junction (at 119.38 57.15) (diameter 0) (color 0 0 0 0)
(uuid 8bbe8a5d-d974-4fef-a8bd-99db7914d7e4)
)
(junction (at 99.06 113.03) (diameter 0) (color 0 0 0 0)
(uuid 914a41ae-7e14-4741-b712-76fda49e4e34)
)
(junction (at 99.06 138.43) (diameter 0) (color 0 0 0 0)
(uuid 917f2384-498c-4287-a2fc-137888861979)
)
(junction (at 91.44 67.31) (diameter 0) (color 0 0 0 0)
(uuid 9df5c14a-62cd-4f0f-aa00-551f596ef10a)
)
(junction (at 91.44 143.51) (diameter 0) (color 0 0 0 0)
(uuid 9ea98036-2772-4eff-9be2-6ce98f543a02)
)
(junction (at 91.44 102.87) (diameter 0) (color 0 0 0 0)
(uuid 9f985122-d46c-4fd7-81ff-3c64f8f8dac3)
)
(junction (at 99.06 82.55) (diameter 0) (color 0 0 0 0)
(uuid bceec9b0-f63f-4c63-888c-2a253afe0737)
)
(junction (at 91.44 82.55) (diameter 0) (color 0 0 0 0)
(uuid bea4f8b1-43ec-4b41-8855-4a5570ad0af6)
)
(junction (at 111.76 82.55) (diameter 0) (color 0 0 0 0)
(uuid c3326bb9-3240-443c-ad0c-c11a037637bb)
)
(junction (at 99.06 72.39) (diameter 0) (color 0 0 0 0)
(uuid c5e8b553-40e3-4e29-87d6-a058e46a9ef5)
)
(junction (at 99.06 97.79) (diameter 0) (color 0 0 0 0)
(uuid ca535355-ae8a-4bb7-afa7-d51978482f97)
)
(junction (at 91.44 57.15) (diameter 0) (color 0 0 0 0)
(uuid d558ba63-9247-48b8-9d54-2c53e59822db)
)
(junction (at 99.06 77.47) (diameter 0) (color 0 0 0 0)
(uuid d9d8b053-e63f-4367-93b9-3af27580e0db)
)
(junction (at 91.44 77.47) (diameter 0) (color 0 0 0 0)
(uuid da1e1db6-acfd-4b48-8de3-bf4a7021f3c4)
)
(junction (at 111.76 52.07) (diameter 0) (color 0 0 0 0)
(uuid db79fb29-2771-4f8b-ab3e-4285b725096b)
)
(junction (at 99.06 67.31) (diameter 0) (color 0 0 0 0)
(uuid dc8f9511-b482-4d47-af5e-84073d178e81)
)
(junction (at 111.76 62.23) (diameter 0) (color 0 0 0 0)
(uuid dcb95580-dd1b-40eb-be3d-fd2507e7ef30)
)
(junction (at 99.06 118.11) (diameter 0) (color 0 0 0 0)
(uuid e1abe6ff-1a1b-4c98-ab68-418b42f93c17)
)
(junction (at 119.38 77.47) (diameter 0) (color 0 0 0 0)
(uuid e47d44ad-fcfb-4d88-8a02-69420c2ec781)
)
(junction (at 111.76 77.47) (diameter 0) (color 0 0 0 0)
(uuid f0264b76-6b48-4322-ba1b-0a5a8409976d)
)
(junction (at 99.06 128.27) (diameter 0) (color 0 0 0 0)
(uuid f6127e24-2b2d-4629-8734-b7395e9e0f63)
)
(junction (at 91.44 72.39) (diameter 0) (color 0 0 0 0)
(uuid faccf3d4-a954-4318-8eb1-1eaa329daffb)
)
(junction (at 111.76 57.15) (diameter 0) (color 0 0 0 0)
(uuid fc076a8c-b318-48e4-8225-1a19366e6a26)
)
(junction (at 99.06 107.95) (diameter 0) (color 0 0 0 0)
(uuid fc2dbc69-c314-4498-ade9-c7f8dc9f8811)
)
(junction (at 91.44 133.35) (diameter 0) (color 0 0 0 0)
(uuid fe26bf47-3b96-4f1c-b3cf-ee130bf29a19)
)
(junction (at 99.06 52.07) (diameter 0) (color 0 0 0 0)
(uuid ffaf0ba9-8bce-4014-a84e-3831c2c6f11b)
)
(wire (pts (xy 91.44 46.99) (xy 91.44 52.07))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 06f3ce7a-2056-474d-8771-488a5bc01503)
)
(wire (pts (xy 99.06 123.19) (xy 99.06 118.11))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 075cbd41-e059-4999-a3b0-80ab73d34f84)
)
(wire (pts (xy 99.06 118.11) (xy 99.06 113.03))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0a3770e4-8410-4515-890c-a0b4bdbbc1f0)
)
(wire (pts (xy 99.06 52.07) (xy 99.06 46.99))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0ee4d3bd-9e4e-4c5b-81ba-090efebd3179)
)
(wire (pts (xy 111.76 82.55) (xy 111.76 90.17))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1d1e12a4-e0ee-4c7a-93dd-ce99cf42e6aa)
)
(wire (pts (xy 99.06 97.79) (xy 99.06 92.71))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3041f682-ab52-4f6b-85e2-3e8130b4b7ec)
)
(wire (pts (xy 91.44 123.19) (xy 91.44 128.27))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 32f0f747-04d3-4453-92f3-1803f7b3c8a1)
)
(wire (pts (xy 99.06 67.31) (xy 99.06 62.23))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 37b3193b-d794-47ad-b88c-bd43f75d0c27)
)
(wire (pts (xy 91.44 128.27) (xy 91.44 133.35))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 38aa3f2e-9fe0-4dd8-b2b2-26118781650d)
)
(wire (pts (xy 99.06 102.87) (xy 99.06 97.79))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 38c938bb-b00c-481a-ac68-f1a6a5368e05)
)
(wire (pts (xy 91.44 67.31) (xy 91.44 72.39))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4d809303-b135-4954-9df5-61fb19a249be)
)
(wire (pts (xy 111.76 67.31) (xy 111.76 77.47))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4f420387-7207-4f95-9315-c3ed841304ed)
)
(wire (pts (xy 119.38 82.55) (xy 119.38 77.47))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 507c36a6-40b7-48fe-a404-eaa93e1a3074)
)
(wire (pts (xy 91.44 143.51) (xy 91.44 148.59))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 51893d48-1045-4db6-8142-e463331ac0f8)
)
(wire (pts (xy 111.76 57.15) (xy 111.76 62.23))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 52a8c9dc-c5aa-485c-817d-caad5d80c397)
)
(wire (pts (xy 91.44 57.15) (xy 91.44 62.23))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5664d8e5-ae59-492e-bad3-480a14ed7a68)
)
(wire (pts (xy 119.38 57.15) (xy 119.38 52.07))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 574fe8fe-3d5d-4ba7-b2ce-d9e8ad093adf)
)
(wire (pts (xy 99.06 128.27) (xy 99.06 123.19))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 59b3b6a9-fc8d-4a6c-9473-cb2c1018ef46)
)
(wire (pts (xy 111.76 77.47) (xy 111.76 82.55))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5d6a69a8-0bd0-4b11-9901-f99098549864)
)
(wire (pts (xy 91.44 92.71) (xy 91.44 97.79))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 60b6e8ed-e5f9-4ee6-9b8c-88f759559e2b)
)
(wire (pts (xy 91.44 102.87) (xy 91.44 107.95))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 6425c814-43ce-48de-8260-981a237b6a8e)
)
(wire (pts (xy 99.06 46.99) (xy 99.06 41.91))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 6d027c28-74fd-4102-bbd8-88d2614a6602)
)
(wire (pts (xy 99.06 138.43) (xy 99.06 133.35))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 73f3068a-4a9a-4efb-a821-0d05a05006a5)
)
(wire (pts (xy 111.76 62.23) (xy 111.76 67.31))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 7634ff85-abe8-4314-9633-58a3d1bccb57)
)
(wire (pts (xy 91.44 133.35) (xy 91.44 138.43))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 7b73ebe1-1372-43ec-9ca1-9f5cd354d447)
)
(wire (pts (xy 99.06 133.35) (xy 99.06 128.27))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 7ef6b5ac-f53c-480d-bf26-92c7a0d37d38)
)
(wire (pts (xy 91.44 113.03) (xy 91.44 118.11))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 7f57bf2e-879e-4d66-913f-56fb388e6431)
)
(wire (pts (xy 91.44 87.63) (xy 91.44 92.71))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 83631db3-5cb3-4848-a7a0-84144f45a5d9)
)
(wire (pts (xy 91.44 107.95) (xy 91.44 113.03))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8ab69a2e-88ec-4dda-9698-182d8fc99608)
)
(wire (pts (xy 91.44 82.55) (xy 91.44 87.63))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8f15b6b1-c2e9-4b14-aba8-7f5ed0571168)
)
(wire (pts (xy 91.44 72.39) (xy 91.44 77.47))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8fac59bd-8906-4eaa-bf2c-a1caf198cd5d)
)
(wire (pts (xy 91.44 118.11) (xy 91.44 123.19))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 94e543a9-1a13-4629-9c86-04d3955cf97b)
)
(wire (pts (xy 99.06 92.71) (xy 99.06 87.63))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 952f2c9e-22eb-4f87-b226-0774c048ea44)
)
(wire (pts (xy 91.44 97.79) (xy 91.44 102.87))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 95c44f79-8e08-49fd-8d42-3fd27cf87ef0)
)
(wire (pts (xy 99.06 77.47) (xy 99.06 72.39))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 991d1163-c589-46d1-a91e-31c3b5320ecf)
)
(wire (pts (xy 119.38 46.99) (xy 119.38 41.91))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 9a33edd1-6244-4512-a518-ef52d175a483)
)
(wire (pts (xy 99.06 143.51) (xy 99.06 138.43))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 9e7088d8-afba-4f1d-a60c-4f3b1bdee6cf)
)
(wire (pts (xy 99.06 57.15) (xy 99.06 52.07))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a1aec8ac-8ba0-493b-aaa8-635c4ee838e1)
)
(wire (pts (xy 119.38 52.07) (xy 119.38 46.99))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b15c04bd-2dd2-41a3-aeb3-ce682e7ec855)
)
(wire (pts (xy 99.06 87.63) (xy 99.06 82.55))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b8278681-904d-4ce5-a7e6-792740647337)
)
(wire (pts (xy 119.38 62.23) (xy 119.38 57.15))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b95a4700-40db-4183-bf8b-2946aa78d066)
)
(wire (pts (xy 99.06 107.95) (xy 99.06 102.87))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid bdf58844-0751-47bf-b3a4-4b08933fb72d)
)
(wire (pts (xy 91.44 52.07) (xy 91.44 57.15))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid cc90ed9d-8106-4bbf-b5da-b6d47c433212)
)
(wire (pts (xy 91.44 138.43) (xy 91.44 143.51))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid cf8d1ea9-7b17-4843-b617-859a3e18f9e1)
)
(wire (pts (xy 111.76 46.99) (xy 111.76 52.07))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid d6c9d899-52ac-4c55-bffe-00bcf46151bc)
)
(wire (pts (xy 119.38 67.31) (xy 119.38 62.23))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid d82d975d-fa55-4dc8-b9d9-5435528a380b)
)
(wire (pts (xy 99.06 82.55) (xy 99.06 77.47))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid d9266cf6-90ff-4baf-954c-d88ccaa6aa53)
)
(wire (pts (xy 99.06 113.03) (xy 99.06 107.95))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid d96c438e-b59f-4500-afb0-13926a21813f)
)
(wire (pts (xy 91.44 62.23) (xy 91.44 67.31))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid eeb6b826-bc65-4571-ab3b-1b47a831da34)
)
(wire (pts (xy 99.06 72.39) (xy 99.06 67.31))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid f0414df8-e0f8-4396-84c7-bac95db5baa3)
)
(wire (pts (xy 111.76 52.07) (xy 111.76 57.15))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid f30c7a7f-7781-425e-8012-ba0bf4ec6b61)
)
(wire (pts (xy 91.44 77.47) (xy 91.44 82.55))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid fd101819-86ac-4160-bf54-bb42ded58e5b)
)
(wire (pts (xy 119.38 67.31) (xy 119.38 77.47))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid fd7c8b7d-d7ba-4163-8bba-603621fa5dc4)
)
(wire (pts (xy 99.06 62.23) (xy 99.06 57.15))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid feb439e1-3258-426e-ae7c-63abff0f9a8e)
)
(text "Mounting holes" (at 40.64 40.64 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 4f622e72-af33-430d-ab90-6efa65396503)
)
(text "Decoupling caps" (at 87.63 34.29 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid c54783ec-e06a-4c6b-b697-f58dbf7e8af3)
)
(symbol (lib_id "Mechanical:MountingHole") (at 48.26 46.99 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-00005fc0d03d)
(property "Reference" "H1001" (id 0) (at 50.8 45.8216 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "MountingHole" (id 1) (at 50.8 48.133 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "SH-ESP32:MountingSlot_3.2mm_M3_Unplated" (id 2) (at 48.26 46.99 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 48.26 46.99 0)
(effects (font (size 1.27 1.27)) hide)
)
)
(symbol (lib_id "Mechanical:MountingHole") (at 48.26 54.61 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-00005fc0d043)
(property "Reference" "H1002" (id 0) (at 50.8 53.4416 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "MountingHole" (id 1) (at 50.8 55.753 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "SH-ESP32:MountingSlot_3.2mm_M3_Unplated" (id 2) (at 48.26 54.61 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 48.26 54.61 0)
(effects (font (size 1.27 1.27)) hide)
)
)
(symbol (lib_id "Device:C") (at 95.25 46.99 90) (mirror x) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-00005fc0efbf)
(property "Reference" "C1001" (id 0) (at 92.71 44.45 90)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "100nF" (id 1) (at 102.87 44.45 90)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (id 2) (at 99.06 47.9552 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 95.25 46.99 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "LCSC" "C1525" (id 4) (at 95.25 46.99 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 1a956d32-c93a-4dcd-a02b-c57d4a761095))
(pin "2" (uuid 9743fedf-e7ab-4c87-9934-23c7eed82962))
)
(symbol (lib_id "Device:C") (at 95.25 52.07 90) (mirror x) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-00005fc0f391)
(property "Reference" "C1002" (id 0) (at 92.71 49.53 90)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "100nF" (id 1) (at 102.87 49.53 90)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (id 2) (at 99.06 53.0352 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 95.25 52.07 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "LCSC" "C1525" (id 4) (at 95.25 52.07 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid e44e6949-05de-46b0-a909-f3c7c57c430e))
(pin "2" (uuid d3430e8c-2ea4-4515-8fa8-86f13f9d3c0d))
)
(symbol (lib_id "Device:C") (at 95.25 57.15 90) (mirror x) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-00005fc0f7e8)
(property "Reference" "C1003" (id 0) (at 92.71 54.61 90)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "100nF" (id 1) (at 102.87 54.61 90)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (id 2) (at 99.06 58.1152 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 95.25 57.15 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "LCSC" "C1525" (id 4) (at 95.25 57.15 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 13ea09f3-0614-4ee6-beb0-dcc567946376))
(pin "2" (uuid 774a3ce5-455a-46ef-962e-7dbfbc63c916))
)
(symbol (lib_id "Device:C") (at 95.25 62.23 90) (mirror x) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-00005fc0fb07)
(property "Reference" "C1004" (id 0) (at 92.71 59.69 90)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "100nF" (id 1) (at 102.87 59.69 90)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (id 2) (at 99.06 63.1952 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 95.25 62.23 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "LCSC" "C1525" (id 4) (at 95.25 62.23 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 500c8c20-3baf-460f-bcf1-a792419596c9))
(pin "2" (uuid 7a26d897-d799-4aeb-ac5a-2f55b0a730ba))
)
(symbol (lib_id "Device:C") (at 95.25 67.31 90) (mirror x) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-00005fc0fece)
(property "Reference" "C1005" (id 0) (at 92.71 64.77 90)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "100nF" (id 1) (at 102.87 64.77 90)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (id 2) (at 99.06 68.2752 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 95.25 67.31 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "LCSC" "C1525" (id 4) (at 95.25 67.31 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid d9514bcf-e26b-47f5-8c69-4daf62d03d18))
(pin "2" (uuid ca730761-fedf-4eae-98fa-a8325d785a83))
)
(symbol (lib_id "Device:C") (at 95.25 72.39 90) (mirror x) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-00005fc1024d)
(property "Reference" "C1006" (id 0) (at 92.71 69.85 90)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "100nF" (id 1) (at 102.87 69.85 90)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (id 2) (at 99.06 73.3552 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 95.25 72.39 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "LCSC" "C1525" (id 4) (at 95.25 72.39 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid fa8bb413-920d-48c5-b13f-6629ebc13df2))
(pin "2" (uuid 258c66b4-1089-4146-8c3d-2c38a144f994))
)
(symbol (lib_id "Device:C") (at 95.25 77.47 90) (mirror x) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-00005fc106a4)
(property "Reference" "C1007" (id 0) (at 92.71 74.93 90)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "100nF" (id 1) (at 102.87 74.93 90)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (id 2) (at 99.06 78.4352 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 95.25 77.47 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "LCSC" "C1525" (id 4) (at 95.25 77.47 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 496346c3-2fa0-4f0a-bc7e-7a6194abd05b))
(pin "2" (uuid 4d8c7438-5bd5-4c45-87d1-73e6ebef344f))
)
(symbol (lib_id "Device:C") (at 95.25 82.55 90) (mirror x) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-00005fc10e2b)
(property "Reference" "C1008" (id 0) (at 92.71 80.01 90)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "100nF" (id 1) (at 102.87 80.01 90)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (id 2) (at 99.06 83.5152 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 95.25 82.55 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "LCSC" "C1525" (id 4) (at 95.25 82.55 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 6d7298df-c64b-4904-a6f5-5d816b7dddcf))
(pin "2" (uuid 86b10599-9d48-4466-96fc-ee3d4e9c6110))
)
(symbol (lib_id "Device:C") (at 95.25 87.63 90) (mirror x) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-00005fc11222)
(property "Reference" "C1009" (id 0) (at 92.71 85.09 90)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "100nF" (id 1) (at 102.87 85.09 90)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (id 2) (at 99.06 88.5952 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 95.25 87.63 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "LCSC" "C1525" (id 4) (at 95.25 87.63 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 5a8bdbad-fe36-40d6-8f75-5db854749a55))
(pin "2" (uuid 23d24fb1-8748-49a8-8989-a32471b02147))
)
(symbol (lib_id "Device:C") (at 95.25 92.71 90) (mirror x) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-00005fc11559)
(property "Reference" "C1010" (id 0) (at 92.71 90.17 90)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "100nF" (id 1) (at 102.87 90.17 90)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (id 2) (at 99.06 93.6752 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 95.25 92.71 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "LCSC" "C1525" (id 4) (at 95.25 92.71 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid afbec94b-d243-410e-8d06-87e2cee2ba9a))
(pin "2" (uuid baded3c1-ef9b-4137-8ee7-117242b39113))
)
(symbol (lib_id "Device:C") (at 95.25 97.79 90) (mirror x) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-00005fc117a0)
(property "Reference" "C1011" (id 0) (at 92.71 95.25 90)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "100nF" (id 1) (at 102.87 95.25 90)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (id 2) (at 99.06 98.7552 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 95.25 97.79 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "LCSC" "C1525" (id 4) (at 95.25 97.79 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid ca1e0bdb-3bcf-42e8-9653-3def3b74bfe3))
(pin "2" (uuid 388b13fc-68d7-4b8a-b7b3-1caf92936361))
)
(symbol (lib_id "Device:C") (at 95.25 102.87 90) (mirror x) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-00005fc11aef)
(property "Reference" "C1012" (id 0) (at 92.71 100.33 90)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "100nF" (id 1) (at 102.87 100.33 90)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (id 2) (at 99.06 103.8352 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 95.25 102.87 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "LCSC" "C1525" (id 4) (at 95.25 102.87 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid d52243c6-c654-4a97-88f2-20409f04c059))
(pin "2" (uuid 59390a1a-22d0-440c-b20d-876f11fbc57e))
)
(symbol (lib_id "Device:C") (at 95.25 107.95 90) (mirror x) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-00005fc11e6e)
(property "Reference" "C1013" (id 0) (at 92.71 105.41 90)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "100nF" (id 1) (at 102.87 105.41 90)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (id 2) (at 99.06 108.9152 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 95.25 107.95 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "LCSC" "C1525" (id 4) (at 95.25 107.95 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 5497c5e3-7a08-4dee-a31d-2846d05c4ee3))
(pin "2" (uuid 516aa5e9-fd55-4328-bf15-e495d747099a))
)
(symbol (lib_id "Device:C") (at 95.25 113.03 90) (mirror x) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-00005fc122dd)
(property "Reference" "C1014" (id 0) (at 92.71 110.49 90)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "100nF" (id 1) (at 102.87 110.49 90)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (id 2) (at 99.06 113.9952 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 95.25 113.03 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "LCSC" "C1525" (id 4) (at 95.25 113.03 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 8e6c99a6-0ddf-4286-88ef-2f9b57cf9f93))
(pin "2" (uuid a17d29e3-0e49-4b69-9f9d-8590406f5f09))
)
(symbol (lib_id "Device:C") (at 95.25 118.11 90) (mirror x) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-00005fc1274c)
(property "Reference" "C1015" (id 0) (at 92.71 115.57 90)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "100nF" (id 1) (at 102.87 115.57 90)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (id 2) (at 99.06 119.0752 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 95.25 118.11 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "LCSC" "C1525" (id 4) (at 95.25 118.11 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid de55684a-3078-4db1-ba90-08d4582b4149))
(pin "2" (uuid 06c95120-bc2e-49f3-be6a-8445516c579d))
)
(symbol (lib_id "Device:C") (at 95.25 123.19 90) (mirror x) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-00005fc12bd3)
(property "Reference" "C1016" (id 0) (at 92.71 120.65 90)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "100nF" (id 1) (at 102.87 120.65 90)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (id 2) (at 99.06 124.1552 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 95.25 123.19 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "LCSC" "C1525" (id 4) (at 95.25 123.19 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid ba2af87d-88b6-4f60-89a2-3a9995179335))
(pin "2" (uuid d8a943ad-2e0a-4930-98f3-d4569bc7d1b3))
)
(symbol (lib_id "Device:C") (at 95.25 128.27 90) (mirror x) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-00005fc12e02)
(property "Reference" "C1017" (id 0) (at 92.71 125.73 90)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "100nF" (id 1) (at 102.87 125.73 90)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (id 2) (at 99.06 129.2352 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 95.25 128.27 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "LCSC" "C1525" (id 4) (at 95.25 128.27 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 60cd2e30-21c0-4ac5-9b58-ac474c8f433d))
(pin "2" (uuid 77687f62-eaae-4008-a2be-cd6e2e8dfb50))
)
(symbol (lib_id "Device:C") (at 95.25 133.35 90) (mirror x) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-00005fc1351e)
(property "Reference" "C1018" (id 0) (at 92.71 130.81 90)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "100nF" (id 1) (at 102.87 130.81 90)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (id 2) (at 99.06 134.3152 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 95.25 133.35 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "LCSC" "C1525" (id 4) (at 95.25 133.35 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 22d49561-d685-4067-afd8-0a45f0cd80fc))
(pin "2" (uuid af7dca97-ab31-438b-9bef-22e45b92392c))
)
(symbol (lib_id "Device:C") (at 95.25 138.43 90) (mirror x) (unit 1)
(in_bom yes) (on_board yes)