-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathEthernet.kicad_sch
951 lines (929 loc) · 33.1 KB
/
Ethernet.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
(kicad_sch (version 20230121) (generator eeschema)
(uuid dccc6de1-d651-4f63-a25d-547922f014a3)
(paper "A4")
(title_block
(title "Ethernet")
(date "2024-01-06")
)
(lib_symbols
(symbol "Connector:Conn_01x06_Socket" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
(property "Reference" "J" (at 0 7.62 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "Conn_01x06_Socket" (at 0 -10.16 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_locked" "" (at 0 0 0)
(effects (font (size 1.27 1.27)))
)
(property "ki_keywords" "connector" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Generic connector, single row, 01x06, script generated" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "Connector*:*_1x??_*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "Conn_01x06_Socket_1_1"
(arc (start 0 -7.112) (mid -0.5058 -7.62) (end 0 -8.128)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(arc (start 0 -4.572) (mid -0.5058 -5.08) (end 0 -5.588)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(arc (start 0 -2.032) (mid -0.5058 -2.54) (end 0 -3.048)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(polyline
(pts
(xy -1.27 -7.62)
(xy -0.508 -7.62)
)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(polyline
(pts
(xy -1.27 -5.08)
(xy -0.508 -5.08)
)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(polyline
(pts
(xy -1.27 -2.54)
(xy -0.508 -2.54)
)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(polyline
(pts
(xy -1.27 0)
(xy -0.508 0)
)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(polyline
(pts
(xy -1.27 2.54)
(xy -0.508 2.54)
)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(polyline
(pts
(xy -1.27 5.08)
(xy -0.508 5.08)
)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(arc (start 0 0.508) (mid -0.5058 0) (end 0 -0.508)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(arc (start 0 3.048) (mid -0.5058 2.54) (end 0 2.032)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(arc (start 0 5.588) (mid -0.5058 5.08) (end 0 4.572)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(pin passive line (at -5.08 5.08 0) (length 3.81)
(name "Pin_1" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 2.54 0) (length 3.81)
(name "Pin_2" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 0 0) (length 3.81)
(name "Pin_3" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 -2.54 0) (length 3.81)
(name "Pin_4" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 -5.08 0) (length 3.81)
(name "Pin_5" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 -7.62 0) (length 3.81)
(name "Pin_6" (effects (font (size 1.27 1.27))))
(number "6" (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:C_Polarized" (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_Polarized" (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" "Polarized capacitor" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "CP_*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "C_Polarized_0_1"
(rectangle (start -2.286 0.508) (end 2.286 1.016)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy -1.778 2.286)
(xy -0.762 2.286)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy -1.27 2.794)
(xy -1.27 1.778)
)
(stroke (width 0) (type default))
(fill (type none))
)
(rectangle (start 2.286 -0.508) (end -2.286 -1.016)
(stroke (width 0) (type default))
(fill (type outline))
)
)
(symbol "C_Polarized_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 "MyLib:AZ1117CH-3.3TRG1" (pin_names (offset 0.762)) (in_bom yes) (on_board yes)
(property "Reference" "IC" (at 29.21 7.62 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "AZ1117CH-3.3TRG1" (at 29.21 5.08 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "SOT230P700X180-4N" (at 29.21 2.54 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "Datasheet" "https://datasheet.datasheetarchive.com/originals/distributors/Datasheets-DGA25/1776204.pdf" (at 29.21 0 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "Description" "1.35A 3.3V LDO Reg. Current Limit SOT223 DiodesZetex AZ1117CH-3.3TRG1, LDO Voltage Regulator, 0.8A, 3.3 V +/-1%, maximum of 15 Vin, 3-Pin SOT-223" (at 29.21 -2.54 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "Height" "1.8" (at 29.21 -5.08 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "Mouser Part Number" "621-AZ1117CH-3.3TRG1" (at 29.21 -7.62 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "Mouser Price/Stock" "https://www.mouser.co.uk/ProductDetail/Diodes-Incorporated/AZ1117CH-33TRG1?qs=FKu9oBikfSm7ntaG6olPSQ%3D%3D" (at 29.21 -10.16 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "Manufacturer_Name" "Diodes Inc." (at 29.21 -12.7 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "Manufacturer_Part_Number" "AZ1117CH-3.3TRG1" (at 29.21 -15.24 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "ki_description" "1.35A 3.3V LDO Reg. Current Limit SOT223 DiodesZetex AZ1117CH-3.3TRG1, LDO Voltage Regulator, 0.8A, 3.3 V +/-1%, maximum of 15 Vin, 3-Pin SOT-223" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "AZ1117CH-3.3TRG1_0_0"
(pin passive line (at 0 0 0) (length 5.08)
(name "ADJ/GND" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -2.54 0) (length 5.08)
(name "OUTPUT" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -5.08 0) (length 5.08)
(name "INPUT" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 33.02 0 180) (length 5.08)
(name "VOUT" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
)
(symbol "AZ1117CH-3.3TRG1_0_1"
(polyline
(pts
(xy 5.08 2.54)
(xy 27.94 2.54)
(xy 27.94 -7.62)
(xy 5.08 -7.62)
(xy 5.08 2.54)
)
(stroke (width 0.1524) (type solid))
(fill (type none))
)
)
)
(symbol "power:+5V" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "#PWR" (at 0 -3.81 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "+5V" (at 0 3.556 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "global power" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Power symbol creates a global label with name \"+5V\"" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "+5V_0_1"
(polyline
(pts
(xy -0.762 1.27)
(xy 0 2.54)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0 0)
(xy 0 2.54)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0 2.54)
(xy 0.762 1.27)
)
(stroke (width 0) (type default))
(fill (type none))
)
)
(symbol "+5V_1_1"
(pin power_in line (at 0 0 90) (length 0) hide
(name "+5V" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "power:GND" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "#PWR" (at 0 -6.35 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (at 0 -3.81 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "global power" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Power symbol creates a global label with name \"GND\" , ground" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "GND_0_1"
(polyline
(pts
(xy 0 0)
(xy 0 -1.27)
(xy 1.27 -1.27)
(xy 0 -2.54)
(xy -1.27 -1.27)
(xy 0 -1.27)
)
(stroke (width 0) (type default))
(fill (type none))
)
)
(symbol "GND_1_1"
(pin power_in line (at 0 0 270) (length 0) hide
(name "GND" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "power:PWR_FLAG" (power) (pin_numbers hide) (pin_names (offset 0) hide) (in_bom yes) (on_board yes)
(property "Reference" "#FLG" (at 0 1.905 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "PWR_FLAG" (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" "flag power" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Special symbol for telling ERC where power comes from" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "PWR_FLAG_0_0"
(pin power_out line (at 0 0 90) (length 0)
(name "pwr" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
(symbol "PWR_FLAG_0_1"
(polyline
(pts
(xy 0 0)
(xy 0 1.27)
(xy -1.016 1.905)
(xy 0 2.54)
(xy 1.016 1.905)
(xy 0 1.27)
)
(stroke (width 0) (type default))
(fill (type none))
)
)
)
)
(junction (at 153.67 111.76) (diameter 0) (color 0 0 0 0)
(uuid 19d3db39-d7d6-4a89-a1bb-90d3d823f76e)
)
(junction (at 132.08 104.14) (diameter 0) (color 0 0 0 0)
(uuid 2a8e2393-4999-4f97-8774-1605a819abdc)
)
(junction (at 142.24 111.76) (diameter 0) (color 0 0 0 0)
(uuid 7526a0d5-a45d-4f94-8c8b-00e4a1ea5c0f)
)
(junction (at 132.08 114.3) (diameter 0) (color 0 0 0 0)
(uuid 81739d45-2ffd-4e31-987b-d3738829a86a)
)
(junction (at 203.2 116.84) (diameter 0) (color 0 0 0 0)
(uuid 81d71d04-7a95-4779-9f34-6976c484d87a)
)
(no_connect (at 167.64 109.22) (uuid 0dade3e0-e409-4f3a-92b8-868bb7d33db6))
(no_connect (at 91.44 116.84) (uuid e33460c0-eaa2-46c5-8274-0a5353bd747e))
(wire (pts (xy 153.67 111.76) (xy 153.67 114.3))
(stroke (width 0) (type default))
(uuid 3d657b5f-e1e4-4a68-a9c1-2c0609dc6f77)
)
(wire (pts (xy 132.08 104.14) (xy 132.08 114.3))
(stroke (width 0) (type default))
(uuid 530d1f6f-9221-44af-80fc-540702e06be9)
)
(wire (pts (xy 158.75 116.84) (xy 167.64 116.84))
(stroke (width 0) (type default))
(uuid 685caed1-ca39-402e-a061-d1d55049b1d4)
)
(wire (pts (xy 194.31 114.3) (xy 203.2 114.3))
(stroke (width 0) (type default))
(uuid 8d298bd0-ee8f-49cb-a5c9-9e8d8ba6345b)
)
(wire (pts (xy 167.64 111.76) (xy 153.67 111.76))
(stroke (width 0) (type default))
(uuid 9333a87f-2473-4394-b805-3442be6b9c99)
)
(wire (pts (xy 124.46 114.3) (xy 132.08 114.3))
(stroke (width 0) (type default))
(uuid 9e6f2421-c8aa-4950-ba6e-92e3aaa958b6)
)
(wire (pts (xy 194.31 116.84) (xy 203.2 116.84))
(stroke (width 0) (type default))
(uuid bebef2be-68df-4ac2-b435-40306c42a29a)
)
(wire (pts (xy 132.08 101.6) (xy 153.67 101.6))
(stroke (width 0) (type default))
(uuid de3cc6f5-361c-49c8-8b2f-8c4809a7d022)
)
(wire (pts (xy 203.2 114.3) (xy 203.2 116.84))
(stroke (width 0) (type default))
(uuid df20f270-d858-49ef-b1ff-c22f0cb158a3)
)
(wire (pts (xy 132.08 101.6) (xy 132.08 104.14))
(stroke (width 0) (type default))
(uuid e5bfa70a-d382-4e5e-988d-2cdfbbfbe2c0)
)
(wire (pts (xy 124.46 111.76) (xy 142.24 111.76))
(stroke (width 0) (type default))
(uuid e6811376-a699-4e80-b48e-513039c0b18e)
)
(wire (pts (xy 167.64 114.3) (xy 153.67 114.3))
(stroke (width 0) (type default))
(uuid e71e84cc-801a-41de-847d-a184a30ea36f)
)
(wire (pts (xy 153.67 101.6) (xy 153.67 111.76))
(stroke (width 0) (type default))
(uuid f89b77b7-7570-4628-908a-6f43bb4e1981)
)
(rectangle (start 172.72 101.6) (end 189.23 118.11)
(stroke (width 0) (type default))
(fill (type none))
(uuid 94960f63-5163-4aad-8f8d-7d9963a16a14)
)
(text "Jack" (at 179.07 118.11 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 7340a4d4-b700-4179-90bf-a94120940828)
)
(text "W5500 module" (at 173.99 110.49 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 97c3e4c8-0add-479c-af43-3f32e9ab285d)
)
(global_label "SS" (shape input) (at 194.31 106.68 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 1eb17eb2-22fc-4b02-857e-1bcc42006a73)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 199.7142 106.68 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "MOSI" (shape input) (at 194.31 111.76 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 831eca9c-1ba1-46e0-87fd-cc6d9fa5633c)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 201.8914 111.76 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "INTn" (shape input) (at 194.31 104.14 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 8a422f9d-f0c5-487d-86f0-beee582e5711)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 201.3471 104.14 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "SCK" (shape input) (at 194.31 109.22 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 8c153466-cb2c-4ded-be93-d5ab91566ae7)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 201.0447 109.22 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "ResetNW" (shape input) (at 167.64 106.68 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 924b1cad-7164-458f-ab22-aadf2bd62a8a)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 156.6719 106.68 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "MISO" (shape input) (at 167.64 104.14 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid a6e549c5-3676-4442-9c41-c7da8b3e35a2)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 160.0586 104.14 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(symbol (lib_id "power:+5V") (at 142.24 111.76 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 12316f5c-b6be-43c5-99fd-0066fddb4982)
(property "Reference" "#PWR030" (at 142.24 115.57 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "+5V" (at 142.24 106.68 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 142.24 111.76 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 142.24 111.76 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid be254af3-f002-46b9-a676-280fce14634b))
(instances
(project "RC15"
(path "/872f1f1d-fe7e-4369-adff-2ab5311a98b7/dcfecdb5-5d7e-4194-af1d-d9995467ea14"
(reference "#PWR030") (unit 1)
)
)
)
)
(symbol (lib_id "power:GND") (at 124.46 116.84 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 2c593d33-6ed6-4cf1-a85c-3d51d016901c)
(property "Reference" "#PWR023" (at 124.46 123.19 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (at 124.587 121.2342 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 124.46 116.84 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 124.46 116.84 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid e8b156ff-6482-4264-bd52-733a6444c230))
(instances
(project "RC15"
(path "/872f1f1d-fe7e-4369-adff-2ab5311a98b7"
(reference "#PWR023") (unit 1)
)
(path "/872f1f1d-fe7e-4369-adff-2ab5311a98b7/dcfecdb5-5d7e-4194-af1d-d9995467ea14"
(reference "#PWR048") (unit 1)
)
)
)
)
(symbol (lib_id "Connector:Conn_01x06_Socket") (at 172.72 109.22 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 34ddcf23-7c4d-4a87-b695-6e2f085e8dcd)
(property "Reference" "J7" (at 168.91 100.33 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "Conn_01x06_Socket" (at 162.56 119.38 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Connector_PinSocket_2.54mm:PinSocket_1x06_P2.54mm_Vertical" (at 172.72 109.22 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 172.72 109.22 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "3" (uuid beb8d847-cf6c-4dfc-bb21-799b1113be9b))
(pin "5" (uuid 24be860a-81ce-46c7-a280-193c48a65c8a))
(pin "2" (uuid 1c25992d-2277-485d-81e1-99a8245ea6e5))
(pin "1" (uuid 48f0d535-61e9-445a-bd6c-2bad41cbce20))
(pin "4" (uuid 181a98f3-5e8f-4150-bfc4-da81727740db))
(pin "6" (uuid b76c9ad9-190b-4f02-9478-1c63e6b91fac))
(instances
(project "RC15"
(path "/872f1f1d-fe7e-4369-adff-2ab5311a98b7"
(reference "J7") (unit 1)
)
(path "/872f1f1d-fe7e-4369-adff-2ab5311a98b7/dcfecdb5-5d7e-4194-af1d-d9995467ea14"
(reference "J7") (unit 1)
)
)
)
)
(symbol (lib_id "Device:C_Polarized") (at 132.08 118.11 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 41fd0bd1-e7a1-447f-93a4-66a0e8d66990)
(property "Reference" "C5" (at 135.0772 116.9416 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "22uF" (at 135.0772 119.253 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (at 133.0452 121.92 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 132.08 118.11 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "LCSC" "" (at 132.08 118.11 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 6687e67d-c106-4eb7-9aa6-7a81e0b29bf1))
(pin "2" (uuid e2de672e-fa72-4ad2-b69a-fda05f789647))
(instances
(project "RC15"
(path "/872f1f1d-fe7e-4369-adff-2ab5311a98b7"
(reference "C5") (unit 1)
)
(path "/872f1f1d-fe7e-4369-adff-2ab5311a98b7/dcfecdb5-5d7e-4194-af1d-d9995467ea14"
(reference "C13") (unit 1)
)
)
)
)
(symbol (lib_id "power:GND") (at 142.24 119.38 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 43287647-c73f-46fc-93dc-7e7f28ee64d8)
(property "Reference" "#PWR029" (at 142.24 125.73 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (at 142.367 123.7742 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 142.24 119.38 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 142.24 119.38 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid ada04287-ed61-49d8-bfa8-046b2d9b0f9f))
(instances
(project "RC15"
(path "/872f1f1d-fe7e-4369-adff-2ab5311a98b7"
(reference "#PWR029") (unit 1)
)
(path "/872f1f1d-fe7e-4369-adff-2ab5311a98b7/dcfecdb5-5d7e-4194-af1d-d9995467ea14"
(reference "#PWR051") (unit 1)
)
)
)
)
(symbol (lib_id "power:GND") (at 158.75 116.84 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 86933eab-2861-412f-9128-f636fd8f9fb2)
(property "Reference" "#PWR0127" (at 158.75 123.19 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (at 158.75 121.92 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 158.75 116.84 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 158.75 116.84 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid e2392ac5-c232-418a-96ad-1e8a59067ba1))
(instances
(project "RC15"
(path "/872f1f1d-fe7e-4369-adff-2ab5311a98b7"
(reference "#PWR0127") (unit 1)
)
(path "/872f1f1d-fe7e-4369-adff-2ab5311a98b7/dcfecdb5-5d7e-4194-af1d-d9995467ea14"
(reference "#PWR031") (unit 1)
)
)
)
)
(symbol (lib_id "Connector:Conn_01x06_Socket") (at 189.23 109.22 0) (mirror y) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 9903aef7-1c20-4977-bfe0-08ed058ea97c)
(property "Reference" "J10" (at 194.31 100.33 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "Conn_01x06_Socket" (at 200.66 119.38 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Connector_PinSocket_2.54mm:PinSocket_1x06_P2.54mm_Vertical" (at 189.23 109.22 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 189.23 109.22 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "3" (uuid 6652b1ba-dae3-406e-bebc-3455dc79e7b6))
(pin "5" (uuid ddbab8a5-49ce-441a-b884-9933d40ca63f))
(pin "2" (uuid 2c5b83b4-f73e-440b-861f-fee5897f0ed6))
(pin "1" (uuid 1d2f4e52-dcc6-4ec4-b781-4d16dc38b9ee))
(pin "4" (uuid 9b5ee511-0859-4be6-9fb1-992c5d2b25a2))
(pin "6" (uuid 5851cff9-a99a-4ecd-8684-6509711bb716))
(instances
(project "RC15"
(path "/872f1f1d-fe7e-4369-adff-2ab5311a98b7"
(reference "J10") (unit 1)
)
(path "/872f1f1d-fe7e-4369-adff-2ab5311a98b7/dcfecdb5-5d7e-4194-af1d-d9995467ea14"
(reference "J10") (unit 1)
)
)
)
)
(symbol (lib_id "Device:C") (at 142.24 115.57 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 9ea55418-c140-4787-b127-a3d2a8ec1102)
(property "Reference" "C7" (at 145.161 114.4016 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "10uF" (at 145.161 116.713 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Capacitor_SMD:C_0805_2012Metric" (at 143.2052 119.38 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 142.24 115.57 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "LCSC" "" (at 142.24 115.57 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid f8c95e35-856c-4114-bda7-7e4923e76113))
(pin "2" (uuid bed0c9db-d774-4613-a462-c434cac7ebb0))
(instances
(project "RC15"
(path "/872f1f1d-fe7e-4369-adff-2ab5311a98b7"
(reference "C7") (unit 1)
)
(path "/872f1f1d-fe7e-4369-adff-2ab5311a98b7/dcfecdb5-5d7e-4194-af1d-d9995467ea14"
(reference "C14") (unit 1)
)
)
)
)
(symbol (lib_id "power:GND") (at 132.08 121.92 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid d2242afc-9fb1-467e-a79a-7b226d2a2e6a)
(property "Reference" "#PWR026" (at 132.08 128.27 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (at 132.207 126.3142 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 132.08 121.92 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 132.08 121.92 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid af68975a-3262-461f-b08d-746a2ce04a5d))
(instances
(project "RC15"
(path "/872f1f1d-fe7e-4369-adff-2ab5311a98b7"
(reference "#PWR026") (unit 1)
)
(path "/872f1f1d-fe7e-4369-adff-2ab5311a98b7/dcfecdb5-5d7e-4194-af1d-d9995467ea14"
(reference "#PWR050") (unit 1)
)
)
)
)
(symbol (lib_id "power:PWR_FLAG") (at 132.08 104.14 90) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid d3eb0795-2b08-4962-a133-e1ca7e358100)
(property "Reference" "#FLG03" (at 130.175 104.14 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "PWR_FLAG" (at 128.8288 104.14 90)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (at 132.08 104.14 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 132.08 104.14 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid f0a81ff7-ee13-47a2-b1d5-ce6af756c8ae))
(instances
(project "RC15"
(path "/872f1f1d-fe7e-4369-adff-2ab5311a98b7"
(reference "#FLG03") (unit 1)
)
(path "/872f1f1d-fe7e-4369-adff-2ab5311a98b7/dcfecdb5-5d7e-4194-af1d-d9995467ea14"
(reference "#FLG05") (unit 1)
)
)
)
)
(symbol (lib_id "power:GND") (at 203.2 116.84 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid f816a324-139f-43cc-b9be-2a0d23a4b8dc)
(property "Reference" "#PWR030" (at 203.2 123.19 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (at 203.2 121.92 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 203.2 116.84 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 203.2 116.84 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid ecbf8b5e-fd05-40dd-8982-3921bb79e564))
(instances
(project "RC15"
(path "/872f1f1d-fe7e-4369-adff-2ab5311a98b7"
(reference "#PWR030") (unit 1)
)
(path "/872f1f1d-fe7e-4369-adff-2ab5311a98b7/dcfecdb5-5d7e-4194-af1d-d9995467ea14"
(reference "#PWR047") (unit 1)
)
)
)
)
(symbol (lib_id "MyLib:AZ1117CH-3.3TRG1") (at 124.46 116.84 180) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid f837bae4-886f-4c29-b1e4-1648fa205bdc)
(property "Reference" "IC1" (at 107.95 105.029 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "AZ1117" (at 107.95 107.3404 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Package_TO_SOT_SMD:SOT-223" (at 95.25 119.38 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "Datasheet" "https://datasheet.datasheetarchive.com/originals/distributors/Datasheets-DGA25/1776204.pdf" (at 95.25 116.84 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "LCSC" "" (at 124.46 116.84 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Description" "1.35A 3.3V LDO Reg. Current Limit SOT223 DiodesZetex AZ1117CH-3.3TRG1, LDO Voltage Regulator, 0.8A, 3.3 V +/-1%, maximum of 15 Vin, 3-Pin SOT-223" (at 95.25 114.3 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "Height" "1.8" (at 95.25 111.76 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "Mouser Part Number" "621-AZ1117CH-3.3TRG1" (at 95.25 109.22 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "Mouser Price/Stock" "https://www.mouser.co.uk/ProductDetail/Diodes-Incorporated/AZ1117CH-33TRG1?qs=FKu9oBikfSm7ntaG6olPSQ%3D%3D" (at 95.25 106.68 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "Manufacturer_Name" "Diodes Inc." (at 95.25 104.14 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "Manufacturer_Part_Number" "AZ1117CH-3.3TRG1" (at 95.25 101.6 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(pin "1" (uuid 2cecb5be-f5c8-41f1-ac31-005ec604c631))
(pin "2" (uuid c1ffea6e-bd95-4165-8df3-71239fc3e2d9))
(pin "3" (uuid 3fafe5be-7dc0-4551-9972-90bc8ddfecb5))
(pin "4" (uuid 51252c09-3cac-47b3-a625-bd2c1b1a3e0a))
(instances
(project "RC15"
(path "/872f1f1d-fe7e-4369-adff-2ab5311a98b7"
(reference "IC1") (unit 1)
)
(path "/872f1f1d-fe7e-4369-adff-2ab5311a98b7/dcfecdb5-5d7e-4194-af1d-d9995467ea14"
(reference "IC4") (unit 1)
)
)
)
)
)