-
Notifications
You must be signed in to change notification settings - Fork 6
/
Chunky2040_rev3.kicad_sch
2234 lines (2182 loc) · 76.1 KB
/
Chunky2040_rev3.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 b979a7a8-b4b6-478f-b625-1232af35c367)
(paper "A4")
(title_block
(title "Chunkier2040 (Chunky2040 Rev 2)")
(date "2023-02-11")
(rev "2")
(company "Zerf Studios")
(comment 1 "Copyright 2023")
(comment 2 "Freznel B. Sta. Ana")
)
(lib_symbols
(symbol "Djinn-rescue:Ferrite_Bead_Small-Device" (pin_numbers hide) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "FB" (at 1.905 1.27 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "Ferrite_Bead_Small-Device" (at 1.905 -1.27 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (at -1.778 0 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_fp_filters" "Inductor_* L_* *Ferrite*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "Ferrite_Bead_Small-Device_0_1"
(polyline
(pts
(xy 0 -1.27)
(xy 0 -0.7874)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0 0.889)
(xy 0 1.2954)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy -1.8288 0.2794)
(xy -1.1176 1.4986)
(xy 1.8288 -0.2032)
(xy 1.1176 -1.4224)
(xy -1.8288 0.2794)
)
(stroke (width 0) (type default))
(fill (type none))
)
)
(symbol "Ferrite_Bead_Small-Device_1_1"
(pin passive line (at 0 2.54 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 -2.54 90) (length 1.27)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Graphic:Logo_Open_Hardware_Large" (in_bom no) (on_board no)
(property "Reference" "LOGO" (at 0 12.7 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "ZerfStudios_Logo" (at 0 -10.16 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Footprint" "prettylib:zerfstudios" (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 "Sim.Enable" "0" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "Logo" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Open Hardware logo, large" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "Logo_Open_Hardware_Large_0_1"
(rectangle (start -2.286 2.286) (end 2.286 -2.032)
(stroke (width 0) (type default))
(fill (type none))
)
(text "ZERF\nSTUDIOS\nLOGO" (at 6.096 0 0)
(effects (font (size 1.27 1.27)))
)
)
)
(symbol "Hole_1" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
(property "Reference" "H" (at 0 -1.27 0)
(effects (font (size 1.524 1.524)))
)
(property "Value" "Hole" (at 0 1.27 0)
(effects (font (size 1.524 1.524)))
)
(property "Footprint" "" (at 0 0 0)
(effects (font (size 1.524 1.524)) hide)
)
(property "Datasheet" "" (at 0 0 0)
(effects (font (size 1.524 1.524)) hide)
)
(symbol "Hole_1_0_1"
(circle (center 0 0) (radius 4.0132)
(stroke (width 0) (type default))
(fill (type none))
)
)
)
(symbol "Hole_10" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
(property "Reference" "H" (at 0 -1.27 0)
(effects (font (size 1.524 1.524)))
)
(property "Value" "Hole" (at 0 1.27 0)
(effects (font (size 1.524 1.524)))
)
(property "Footprint" "" (at 0 0 0)
(effects (font (size 1.524 1.524)) hide)
)
(property "Datasheet" "" (at 0 0 0)
(effects (font (size 1.524 1.524)) hide)
)
(symbol "Hole_10_0_1"
(circle (center 0 0) (radius 4.0132)
(stroke (width 0) (type default))
(fill (type none))
)
)
)
(symbol "Hole_11" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
(property "Reference" "H" (at 0 -1.27 0)
(effects (font (size 1.524 1.524)))
)
(property "Value" "Hole" (at 0 1.27 0)
(effects (font (size 1.524 1.524)))
)
(property "Footprint" "" (at 0 0 0)
(effects (font (size 1.524 1.524)) hide)
)
(property "Datasheet" "" (at 0 0 0)
(effects (font (size 1.524 1.524)) hide)
)
(symbol "Hole_11_0_1"
(circle (center 0 0) (radius 4.0132)
(stroke (width 0) (type default))
(fill (type none))
)
)
)
(symbol "Hole_2" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
(property "Reference" "H" (at 0 -1.27 0)
(effects (font (size 1.524 1.524)))
)
(property "Value" "Hole" (at 0 1.27 0)
(effects (font (size 1.524 1.524)))
)
(property "Footprint" "" (at 0 0 0)
(effects (font (size 1.524 1.524)) hide)
)
(property "Datasheet" "" (at 0 0 0)
(effects (font (size 1.524 1.524)) hide)
)
(symbol "Hole_2_0_1"
(circle (center 0 0) (radius 4.0132)
(stroke (width 0) (type default))
(fill (type none))
)
)
)
(symbol "Hole_3" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
(property "Reference" "H" (at 0 -1.27 0)
(effects (font (size 1.524 1.524)))
)
(property "Value" "Hole" (at 0 1.27 0)
(effects (font (size 1.524 1.524)))
)
(property "Footprint" "" (at 0 0 0)
(effects (font (size 1.524 1.524)) hide)
)
(property "Datasheet" "" (at 0 0 0)
(effects (font (size 1.524 1.524)) hide)
)
(symbol "Hole_3_0_1"
(circle (center 0 0) (radius 4.0132)
(stroke (width 0) (type default))
(fill (type none))
)
)
)
(symbol "Hole_4" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
(property "Reference" "H" (at 0 -1.27 0)
(effects (font (size 1.524 1.524)))
)
(property "Value" "Hole" (at 0 1.27 0)
(effects (font (size 1.524 1.524)))
)
(property "Footprint" "" (at 0 0 0)
(effects (font (size 1.524 1.524)) hide)
)
(property "Datasheet" "" (at 0 0 0)
(effects (font (size 1.524 1.524)) hide)
)
(symbol "Hole_4_0_1"
(circle (center 0 0) (radius 4.0132)
(stroke (width 0) (type default))
(fill (type none))
)
)
)
(symbol "Hole_5" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
(property "Reference" "H" (at 0 -1.27 0)
(effects (font (size 1.524 1.524)))
)
(property "Value" "Hole" (at 0 1.27 0)
(effects (font (size 1.524 1.524)))
)
(property "Footprint" "" (at 0 0 0)
(effects (font (size 1.524 1.524)) hide)
)
(property "Datasheet" "" (at 0 0 0)
(effects (font (size 1.524 1.524)) hide)
)
(symbol "Hole_5_0_1"
(circle (center 0 0) (radius 4.0132)
(stroke (width 0) (type default))
(fill (type none))
)
)
)
(symbol "Hole_6" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
(property "Reference" "H" (at 0 -1.27 0)
(effects (font (size 1.524 1.524)))
)
(property "Value" "Hole" (at 0 1.27 0)
(effects (font (size 1.524 1.524)))
)
(property "Footprint" "" (at 0 0 0)
(effects (font (size 1.524 1.524)) hide)
)
(property "Datasheet" "" (at 0 0 0)
(effects (font (size 1.524 1.524)) hide)
)
(symbol "Hole_6_0_1"
(circle (center 0 0) (radius 4.0132)
(stroke (width 0) (type default))
(fill (type none))
)
)
)
(symbol "Hole_7" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
(property "Reference" "H" (at 0 -1.27 0)
(effects (font (size 1.524 1.524)))
)
(property "Value" "Hole" (at 0 1.27 0)
(effects (font (size 1.524 1.524)))
)
(property "Footprint" "" (at 0 0 0)
(effects (font (size 1.524 1.524)) hide)
)
(property "Datasheet" "" (at 0 0 0)
(effects (font (size 1.524 1.524)) hide)
)
(symbol "Hole_7_0_1"
(circle (center 0 0) (radius 4.0132)
(stroke (width 0) (type default))
(fill (type none))
)
)
)
(symbol "Hole_8" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
(property "Reference" "H" (at 0 -1.27 0)
(effects (font (size 1.524 1.524)))
)
(property "Value" "Hole" (at 0 1.27 0)
(effects (font (size 1.524 1.524)))
)
(property "Footprint" "" (at 0 0 0)
(effects (font (size 1.524 1.524)) hide)
)
(property "Datasheet" "" (at 0 0 0)
(effects (font (size 1.524 1.524)) hide)
)
(symbol "Hole_8_0_1"
(circle (center 0 0) (radius 4.0132)
(stroke (width 0) (type default))
(fill (type none))
)
)
)
(symbol "Hole_9" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
(property "Reference" "H" (at 0 -1.27 0)
(effects (font (size 1.524 1.524)))
)
(property "Value" "Hole" (at 0 1.27 0)
(effects (font (size 1.524 1.524)))
)
(property "Footprint" "" (at 0 0 0)
(effects (font (size 1.524 1.524)) hide)
)
(property "Datasheet" "" (at 0 0 0)
(effects (font (size 1.524 1.524)) hide)
)
(symbol "Hole_9_0_1"
(circle (center 0 0) (radius 4.0132)
(stroke (width 0) (type default))
(fill (type none))
)
)
)
(symbol "Mechanical:MountingHole_Pad" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
(property "Reference" "H" (at 0 6.35 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "MountingHole_Pad" (at 0 4.445 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "mounting hole" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Mounting Hole with connection" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "MountingHole*Pad*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "MountingHole_Pad_0_1"
(circle (center 0 1.27) (radius 1.27)
(stroke (width 1.27) (type default))
(fill (type none))
)
)
(symbol "MountingHole_Pad_1_1"
(pin input line (at 0 -2.54 90) (length 2.54)
(name "1" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "keebio:Hole" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
(property "Reference" "H" (at 0 -1.27 0)
(effects (font (size 1.524 1.524)))
)
(property "Value" "Hole" (at 0 1.27 0)
(effects (font (size 1.524 1.524)))
)
(property "Footprint" "" (at 0 0 0)
(effects (font (size 1.524 1.524)) hide)
)
(property "Datasheet" "" (at 0 0 0)
(effects (font (size 1.524 1.524)) hide)
)
(symbol "Hole_0_1"
(circle (center 0 0) (radius 4.0132)
(stroke (width 0) (type default))
(fill (type none))
)
)
)
(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:GND2" (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" "GND2" (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" "power-flag" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Power symbol creates a global label with name \"GND2\" , ground" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "GND2_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 "GND2_1_1"
(pin power_in line (at 0 0 270) (length 0) hide
(name "GND2" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "prettylib:Ferrite_Bead_Small-Device_Chunky" (pin_numbers hide) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "FB1" (at 0 6.0198 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "4A/0805" (at 0 3.7084 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "prettylib:L_0805_2012Metric_Pad1.15x1.40mm_HandSolder" (at 0 1.778 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "LCSC" "C2847222" (at 0 0 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "Inductor_* L_* *Ferrite*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "Ferrite_Bead_Small-Device_Chunky_0_1"
(polyline
(pts
(xy 0 -1.27)
(xy 0 -0.7874)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0 0.889)
(xy 0 1.2954)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy -1.8288 0.2794)
(xy -1.1176 1.4986)
(xy 1.8288 -0.2032)
(xy 1.1176 -1.4224)
(xy -1.8288 0.2794)
)
(stroke (width 0) (type default))
(fill (type none))
)
)
(symbol "Ferrite_Bead_Small-Device_Chunky_1_1"
(pin passive line (at 0 2.54 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 -2.54 90) (length 1.27)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
)
(junction (at 140.97 87.63) (diameter 1.016) (color 0 0 0 0)
(uuid 2051b6b9-7b42-4fe6-97f2-708f77e35f93)
)
(junction (at 77.47 130.81) (diameter 0) (color 0 0 0 0)
(uuid 2e48610f-abc3-40b2-838c-01e3ef676f6c)
)
(junction (at 77.47 86.995) (diameter 0) (color 0 0 0 0)
(uuid 54894baa-6c33-442e-bca0-8f7ffe23f4b6)
)
(junction (at 140.97 96.52) (diameter 0) (color 0 0 0 0)
(uuid 6eddb56e-77fd-4bfe-ab22-b020d11b2916)
)
(junction (at 140.97 129.54) (diameter 0) (color 0 0 0 0)
(uuid 83c94840-aaeb-4c88-a820-ee14b6393f1b)
)
(junction (at 77.47 107.95) (diameter 0) (color 0 0 0 0)
(uuid 9002cf94-8656-47d8-becd-4f0bb30a6420)
)
(junction (at 140.97 116.84) (diameter 0) (color 0 0 0 0)
(uuid 937202da-3c01-4bc5-8d34-1452bd333d52)
)
(junction (at 140.97 106.68) (diameter 0) (color 0 0 0 0)
(uuid acedb14d-9f17-40b9-828c-0aab0f134954)
)
(junction (at 77.47 120.015) (diameter 0) (color 0 0 0 0)
(uuid c8efcef1-c568-4501-91d2-c619d06fa602)
)
(junction (at 77.47 97.79) (diameter 0) (color 0 0 0 0)
(uuid d3c574f5-7055-4b49-903a-b481de374e25)
)
(wire (pts (xy 77.47 76.835) (xy 77.47 86.995))
(stroke (width 0) (type solid))
(uuid 05f53b38-65d7-48f0-8afc-efb27ab20880)
)
(wire (pts (xy 77.47 86.995) (xy 77.47 97.79))
(stroke (width 0) (type default))
(uuid 0e97d8db-c1d6-4751-9ece-b29c71ac371c)
)
(wire (pts (xy 135.89 96.52) (xy 140.97 96.52))
(stroke (width 0) (type solid))
(uuid 2523c837-f0dd-47ca-ab8c-f28e8c47a7a3)
)
(wire (pts (xy 140.97 77.47) (xy 140.97 87.63))
(stroke (width 0) (type solid))
(uuid 254a0eec-51f8-4cd0-8586-07dfc871430a)
)
(wire (pts (xy 102.87 96.52) (xy 130.81 96.52))
(stroke (width 0) (type solid))
(uuid 30726997-c04f-4df1-91af-1243297a2b49)
)
(wire (pts (xy 102.87 116.84) (xy 130.81 116.84))
(stroke (width 0) (type solid))
(uuid 47aca560-4546-42e4-b6f3-b0fee2bb40e3)
)
(wire (pts (xy 140.97 116.84) (xy 140.97 129.54))
(stroke (width 0) (type solid))
(uuid 4d0bc7b7-e98a-4244-b7a2-f1e3b9208bef)
)
(wire (pts (xy 72.39 86.995) (xy 77.47 86.995))
(stroke (width 0) (type solid))
(uuid 4f8117e2-de62-4657-85df-9090763aa478)
)
(wire (pts (xy 72.39 120.015) (xy 77.47 120.015))
(stroke (width 0) (type solid))
(uuid 54e0253d-5426-4585-8cf6-9a2a3ced6a85)
)
(wire (pts (xy 140.97 129.54) (xy 140.97 133.35))
(stroke (width 0) (type solid))
(uuid 557783e5-d69b-447c-b1f7-348f4edfa598)
)
(wire (pts (xy 102.87 87.63) (xy 130.81 87.63))
(stroke (width 0) (type solid))
(uuid 57e3f0e5-650f-4e18-9c69-23de20bd9faf)
)
(wire (pts (xy 102.87 85.09) (xy 102.87 87.63))
(stroke (width 0) (type default))
(uuid 5ac2d1db-56d3-4719-bb9a-11d18a712673)
)
(wire (pts (xy 39.37 120.015) (xy 67.31 120.015))
(stroke (width 0) (type solid))
(uuid 5d3cfd32-710f-4e70-8614-c3c695044244)
)
(wire (pts (xy 102.87 77.47) (xy 130.81 77.47))
(stroke (width 0) (type solid))
(uuid 603249c1-04b9-4239-bdd5-9b2cb478c335)
)
(wire (pts (xy 140.97 96.52) (xy 140.97 106.68))
(stroke (width 0) (type solid))
(uuid 60ba85bb-d760-4d6b-add8-4f67faf7df99)
)
(wire (pts (xy 140.97 106.68) (xy 140.97 116.84))
(stroke (width 0) (type solid))
(uuid 66a3367a-5d53-47ea-a26e-939dd546b885)
)
(wire (pts (xy 72.39 107.95) (xy 77.47 107.95))
(stroke (width 0) (type solid))
(uuid 69b3979c-c197-4e76-be09-9abc9ea83e83)
)
(wire (pts (xy 135.89 87.63) (xy 140.97 87.63))
(stroke (width 0) (type solid))
(uuid 6a1c4aca-03d3-46d8-89fb-6cad4b826bda)
)
(wire (pts (xy 39.37 107.95) (xy 67.31 107.95))
(stroke (width 0) (type solid))
(uuid 6a518302-3cab-47d2-8bc1-adf059c2256d)
)
(wire (pts (xy 39.37 86.995) (xy 67.31 86.995))
(stroke (width 0) (type solid))
(uuid 703d125b-03a6-429e-879a-016528e98305)
)
(wire (pts (xy 39.37 130.81) (xy 67.31 130.81))
(stroke (width 0) (type solid))
(uuid 7849dc1d-6487-49ce-a454-0e068be54c65)
)
(wire (pts (xy 39.37 76.835) (xy 67.31 76.835))
(stroke (width 0) (type solid))
(uuid 8bbfcd17-3c5f-413c-be3f-4fba0d8d10ba)
)
(wire (pts (xy 77.47 130.81) (xy 77.47 134.62))
(stroke (width 0) (type solid))
(uuid 8ca6fd17-8051-4de3-a3f1-5cf4830ebbab)
)
(wire (pts (xy 72.39 97.79) (xy 77.47 97.79))
(stroke (width 0) (type solid))
(uuid 8cda76de-2247-4e63-b551-991f602e52a8)
)
(wire (pts (xy 135.89 77.47) (xy 140.97 77.47))
(stroke (width 0) (type solid))
(uuid 944fd90a-b142-4dd9-b11e-961627377bbe)
)
(wire (pts (xy 140.97 87.63) (xy 140.97 96.52))
(stroke (width 0) (type solid))
(uuid 9b97d51e-e15d-485e-8dcf-5794c529cbb0)
)
(wire (pts (xy 135.89 129.54) (xy 140.97 129.54))
(stroke (width 0) (type solid))
(uuid a31001b7-862f-4fd0-9444-cf678d3ce72c)
)
(wire (pts (xy 102.87 129.54) (xy 130.81 129.54))
(stroke (width 0) (type solid))
(uuid a3da26d8-58ea-4f3c-9f64-0d54690ec377)
)
(wire (pts (xy 77.47 97.79) (xy 77.47 107.95))
(stroke (width 0) (type solid))
(uuid ab62f513-8308-4162-b7e1-3126735a14bb)
)
(wire (pts (xy 77.47 120.015) (xy 77.47 130.81))
(stroke (width 0) (type solid))
(uuid ba05153b-1d76-4ab1-89f7-8d5a199b480c)
)
(wire (pts (xy 72.39 76.835) (xy 77.47 76.835))
(stroke (width 0) (type solid))
(uuid c2bfa851-47de-4de8-bae3-8cff6526c734)
)
(wire (pts (xy 77.47 107.95) (xy 77.47 120.015))
(stroke (width 0) (type solid))
(uuid c4ab58f8-df65-484b-a4ba-97cb84e3eb4f)
)
(wire (pts (xy 135.89 116.84) (xy 140.97 116.84))
(stroke (width 0) (type solid))
(uuid c58ddd1c-9b5d-4e09-a62a-1fe9653dcdc4)
)
(wire (pts (xy 72.39 130.81) (xy 77.47 130.81))
(stroke (width 0) (type solid))
(uuid cac2f848-df7e-479d-a67a-93c8dc42473f)
)
(wire (pts (xy 39.37 97.79) (xy 67.31 97.79))
(stroke (width 0) (type solid))
(uuid ccbdb426-a4db-43ef-8625-3d35beaf088e)
)
(wire (pts (xy 102.87 106.68) (xy 130.81 106.68))
(stroke (width 0) (type solid))
(uuid f0720482-8a71-41b9-9f9b-776bff849fb4)
)
(wire (pts (xy 135.89 106.68) (xy 140.97 106.68))
(stroke (width 0) (type solid))
(uuid fcb28bf1-5ed7-4ac3-8205-1f8d859e03a3)
)
(text "JLC ASSEMBLY HOLES" (at 156.337 103.378 0)
(effects (font (face "Futura") (size 3 3) (thickness 0.6) bold) (justify left bottom))
(uuid 003c9ab3-caa2-40da-821c-50a927b5170f)
)
(text "MOUSE BITES" (at 157.48 138.43 0)
(effects (font (face "Futura") (size 3 3) (thickness 0.6) bold) (justify left bottom))
(uuid 20e9d343-74c7-403b-8bea-d3900b5100bb)
)
(text "Note: I use Futura for the PCB Text and the Schematic Editor"
(at 156.21 157.48 0)
(effects (font (face "Futura") (size 2.54 2.54) (thickness 0.508) bold) (justify left bottom))
(uuid 23cc3de2-94f0-45d5-b1c1-97e7f7e3f6fa)
)
(label "SHIELD9" (at 111.76 96.52 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 1c25abec-eaa1-44d0-a0e4-0e4ef1483b80)
)
(label "SHIELD7" (at 111.76 77.47 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 2d8ba68b-21bc-4f6e-b2e1-3039375b425e)
)
(label "SHIELD8" (at 111.76 87.63 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 3df4dff8-237e-4066-844f-d78468801523)
)
(label "SHIELD11" (at 111.76 116.84 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 405fcb1e-fa70-44fe-881c-ac66845cbd82)
)
(label "SHIELD2" (at 46.99 86.995 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 62874740-fa55-4d39-81b0-481f6765577f)
)
(label "SHIELD5" (at 47.625 120.015 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid c3b9aebd-a0de-4934-9ec1-177862b06a0a)
)
(label "SHIELD3" (at 46.99 97.79 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid c46e885d-c90d-4878-abb1-3c570d2b2276)
)
(label "SHIELD6" (at 47.625 130.81 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid d8b4d998-2781-4a4c-b113-119073055f46)
)
(label "SHIELD4" (at 46.99 107.95 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid e0d3c15d-6a85-489b-9797-69ff190767cb)
)
(label "SHIELD10" (at 111.76 106.68 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid f237ee4f-606a-4955-b93f-77f51b339e3c)
)
(label "SHIELD12" (at 111.76 129.54 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid f4ea5e52-c232-4703-adc4-2a9081f6d836)
)
(label "SHIELD1" (at 46.99 76.835 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid f6d93fba-6a93-4781-9df2-baa89587523f)
)
(symbol (lib_id "Graphic:Logo_Open_Hardware_Large") (at 175.895 85.725 0) (unit 1)
(in_bom no) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 01f115b4-0466-428f-b6e4-ee4ba61489af)
(property "Reference" "LOGO" (at 175.895 73.025 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "ZerfStudios_Logo" (at 175.895 95.885 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Footprint" "prettylib:zerfstudios" (at 175.895 85.725 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 175.895 85.725 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Sim.Enable" "0" (at 175.895 85.725 0)
(effects (font (size 1.27 1.27)) hide)
)
(instances
(project "Chunky2040_rev3"
(path "/b979a7a8-b4b6-478f-b625-1232af35c367/bddffb7d-c3ce-40c8-a991-72e5df9ec1ae"
(reference "LOGO") (unit 1)
)
(path "/b979a7a8-b4b6-478f-b625-1232af35c367"
(reference "LOGO2") (unit 1)
)
)
)
)
(symbol (lib_id "prettylib:Ferrite_Bead_Small-Device_Chunky") (at 69.85 76.835 90) (mirror x) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 129b0452-47f8-42bd-89e4-591ffb56bf71)
(property "Reference" "FB5" (at 69.85 70.8152 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "4A/0805" (at 69.85 73.1266 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "prettylib:L_0805_2012Metric_Pad1.15x1.40mm_HandSolder" (at 68.072 76.835 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "https://datasheet.lcsc.com/lcsc/2110100030_Sunlord-UPZ2012D101-4R0TF_C370576.pdf" (at 69.85 76.835 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "LCSC" "C370576" (at 69.85 76.835 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Description" "4A 1 100Ω@100MHz ±25% 0805 Ferrite Beads ROHS" (at 69.85 76.835 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "MPN" "UPZ2012D101-4R0TF" (at 69.85 76.835 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "MPN " "UPZ2012D101-4R0T" (at 69.85 76.835 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Manufacturer" "Sunlord" (at 69.85 76.835 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Display value" "4A/0805" (at 69.85 76.835 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 9d83d4b3-4c25-45db-bf41-d784af5d8ed4))
(pin "2" (uuid 3d3aa5b0-13e6-4bb8-af5f-4c46ee5b81ec))
(instances
(project "Chunky2040_v2"
(path "/1103b247-8b8a-4d50-89a6-88e38e7b3d2d"
(reference "FB5") (unit 1)
)
)
(project "Chunky2040_rev3"
(path "/b979a7a8-b4b6-478f-b625-1232af35c367"
(reference "FB1") (unit 1)
)
)
)
)
(symbol (lib_name "Hole_2") (lib_id "keebio:Hole") (at 159.893 144.78 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 1b2cb465-120b-4e13-9052-b778cca5721b)
(property "Reference" "H4" (at 164.5412 143.7153 0)
(effects (font (size 1.524 1.524)) (justify left))
)
(property "Value" "Hole" (at 164.5412 146.9943 0)
(effects (font (size 1.524 1.524)) (justify left))
)
(property "Footprint" "Keebio-Parts:breakaway-mousebites" (at 159.893 144.78 0)
(effects (font (size 1.524 1.524)) hide)
)
(property "Datasheet" "" (at 159.893 144.78 0)
(effects (font (size 1.524 1.524)) hide)
)
(instances
(project "Chunky2040_v2"
(path "/1103b247-8b8a-4d50-89a6-88e38e7b3d2d"
(reference "H4") (unit 1)
)
)
(project "Chunky2040_rev3"
(path "/b979a7a8-b4b6-478f-b625-1232af35c367"
(reference "H7") (unit 1)
)
)
)
)
(symbol (lib_name "Hole_3") (lib_id "keebio:Hole") (at 193.675 120.015 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 2a82ca62-dc1f-4720-a690-3245e15904a6)
(property "Reference" "H3" (at 198.3232 118.9503 0)
(effects (font (size 1.524 1.524)) (justify left))
)
(property "Value" "Hole" (at 198.3232 122.2293 0)
(effects (font (size 1.524 1.524)) (justify left))
)
(property "Footprint" "prettylib:JLC_SMT_Assembly_Hole" (at 193.675 120.015 0)
(effects (font (size 1.524 1.524)) hide)
)
(property "Datasheet" "" (at 193.675 120.015 0)
(effects (font (size 1.524 1.524)) hide)
)
(instances
(project "Chunky2040_v2"
(path "/1103b247-8b8a-4d50-89a6-88e38e7b3d2d"
(reference "H3") (unit 1)
)
)
(project "Chunky2040_rev3"
(path "/b979a7a8-b4b6-478f-b625-1232af35c367"
(reference "H6") (unit 1)
)
)
)
)
(symbol (lib_id "Mechanical:MountingHole_Pad") (at 102.87 114.3 0) (mirror y) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 3404cc5f-f8f1-4e23-9ef1-ed1d962778ca)
(property "Reference" "DRILL11" (at 100.711 113.1316 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "Drill Mountpoint" (at 100.711 115.443 0)
(effects (font (size 1.27 1.27) bold) (justify left))
)
(property "Footprint" "MountingHole:MountingHole_2.2mm_M2_Pad_Via" (at 102.87 114.3 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 102.87 114.3 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid c8543b1c-4d98-43e8-9846-7dba8d888f05))
(instances
(project "Chunky2040_v2"
(path "/1103b247-8b8a-4d50-89a6-88e38e7b3d2d"
(reference "DRILL11") (unit 1)
)
)
(project "Chunky2040_rev3"
(path "/b979a7a8-b4b6-478f-b625-1232af35c367"
(reference "DRILL14") (unit 1)
)
)
)
)
(symbol (lib_id "power:GND2") (at 140.97 133.35 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 38333224-695f-4cc5-9471-998df8a73218)
(property "Reference" "#PWR07" (at 140.97 139.7 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND2" (at 140.97 137.7934 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 140.97 133.35 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 140.97 133.35 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 464c1f76-f71b-4825-8412-21cf1a2ae9ad))
(instances
(project "Chunky2040_v2"
(path "/1103b247-8b8a-4d50-89a6-88e38e7b3d2d"
(reference "#PWR07") (unit 1)
)
)
(project "Chunky2040_rev3"
(path "/b979a7a8-b4b6-478f-b625-1232af35c367"
(reference "#PWR01") (unit 1)
)
)
)
)
(symbol (lib_id "Mechanical:MountingHole_Pad") (at 102.87 82.55 0) (mirror y) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 38c0a30d-1891-4fcc-8526-5dba838acdd6)
(property "Reference" "DRILL8" (at 100.711 81.3816 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "Drill Mountpoint" (at 100.711 83.693 0)
(effects (font (size 1.27 1.27) bold) (justify left))
)
(property "Footprint" "MountingHole:MountingHole_3.2mm_M3_Pad_Via" (at 102.87 82.55 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 102.87 82.55 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid c921713b-9345-461a-8b23-51e72cc4472f))
(instances
(project "Chunky2040_v2"
(path "/1103b247-8b8a-4d50-89a6-88e38e7b3d2d"
(reference "DRILL8") (unit 1)
)
)
(project "Chunky2040_rev3"
(path "/b979a7a8-b4b6-478f-b625-1232af35c367"
(reference "DRILL11") (unit 1)
)
)
)
)
(symbol (lib_id "Mechanical:MountingHole_Pad") (at 39.37 117.475 0) (mirror y) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 3b290c09-e369-4832-86c2-39a82759fadd)
(property "Reference" "DRILL5" (at 37.211 116.3066 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "Drill Mountpoint" (at 37.211 118.618 0)
(effects (font (size 1.27 1.27) bold) (justify left))
)
(property "Footprint" "MountingHole:MountingHole_2.2mm_M2_Pad_Via" (at 39.37 117.475 0)