This repository was archived by the owner on Dec 23, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathrrc_pcb3.kicad_pcb
16121 lines (16074 loc) · 599 KB
/
rrc_pcb3.kicad_pcb
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_pcb (version 20221018) (generator pcbnew)
(general
(thickness 1.6)
)
(paper "A4")
(layers
(0 "F.Cu" signal)
(31 "B.Cu" signal)
(32 "B.Adhes" user "B.Adhesive")
(33 "F.Adhes" user "F.Adhesive")
(34 "B.Paste" user)
(35 "F.Paste" user)
(36 "B.SilkS" user "B.Silkscreen")
(37 "F.SilkS" user "F.Silkscreen")
(38 "B.Mask" user)
(39 "F.Mask" user)
(40 "Dwgs.User" user "User.Drawings")
(41 "Cmts.User" user "User.Comments")
(42 "Eco1.User" user "User.Eco1")
(43 "Eco2.User" user "User.Eco2")
(44 "Edge.Cuts" user)
(45 "Margin" user)
(46 "B.CrtYd" user "B.Courtyard")
(47 "F.CrtYd" user "F.Courtyard")
(48 "B.Fab" user)
(49 "F.Fab" user)
)
(setup
(pad_to_mask_clearance 0)
(pcbplotparams
(layerselection 0x003d0f0_ffffffff)
(plot_on_all_layers_selection 0x0001000_00000000)
(disableapertmacros false)
(usegerberextensions false)
(usegerberattributes true)
(usegerberadvancedattributes true)
(creategerberjobfile true)
(dashed_line_dash_ratio 12.000000)
(dashed_line_gap_ratio 3.000000)
(svgprecision 6)
(plotframeref true)
(viasonmask false)
(mode 1)
(useauxorigin false)
(hpglpennumber 1)
(hpglpenspeed 20)
(hpglpendiameter 15.000000)
(dxfpolygonmode true)
(dxfimperialunits true)
(dxfusepcbnewfont true)
(psnegative false)
(psa4output false)
(plotreference true)
(plotvalue true)
(plotinvisibletext false)
(sketchpadsonfab false)
(subtractmaskfromsilk false)
(outputformat 1)
(mirror false)
(drillshape 0)
(scaleselection 1)
(outputdirectory "gerber/")
)
)
(net 0 "")
(net 1 "GND")
(net 2 "VCC")
(net 3 "T_VCC")
(net 4 "SCL1")
(net 5 "SDA1")
(net 6 "TX2")
(net 7 "RX2")
(net 8 "SCL")
(net 9 "T_GND")
(net 10 "SDA")
(net 11 "unconnected-(U1-Pad2)")
(net 12 "INT1")
(net 13 "FSYNC")
(net 14 "unconnected-(U1-Pad4)")
(net 15 "unconnected-(U1-Pad5)")
(net 16 "unconnected-(U1-Pad9)")
(net 17 "unconnected-(U1-Pad10)")
(net 18 "unconnected-(U1-Pad11)")
(net 19 "unconnected-(U1-Pad12)")
(net 20 "unconnected-(U1-Pad13)")
(net 21 "unconnected-(U1-Pad14)")
(net 22 "unconnected-(U1-Pad15)")
(net 23 "unconnected-(U1-Pad16)")
(net 24 "RX7")
(net 25 "TX7")
(net 26 "unconnected-(U5-Pad7)")
(net 27 "unconnected-(U5-Pad6)")
(net 28 "unconnected-(U5-Pad5)")
(net 29 "unconnected-(U4-Pad9)")
(net 30 "unconnected-(U4-Pad8)")
(net 31 "unconnected-(U4-Pad6)")
(net 32 "unconnected-(U4-Pad5)")
(net 33 "unconnected-(U4-Pad4)")
(net 34 "unconnected-(U4-Pad3)")
(net 35 "unconnected-(U4-Pad24)")
(net 36 "unconnected-(U4-Pad2)")
(net 37 "unconnected-(U4-Pad19)")
(net 38 "unconnected-(U4-Pad18)")
(net 39 "unconnected-(U4-Pad16)")
(net 40 "unconnected-(U4-Pad14)")
(net 41 "unconnected-(U4-Pad13)")
(net 42 "unconnected-(U4-Pad12)")
(net 43 "unconnected-(U4-Pad11)")
(net 44 "unconnected-(U4-Pad10)")
(net 45 "unconnected-(U4-Pad1)")
(net 46 "unconnected-(U2-Pad8)")
(net 47 "unconnected-(U2-Pad7)")
(net 48 "unconnected-(U2-Pad67)")
(net 49 "unconnected-(U2-Pad66)")
(net 50 "unconnected-(U2-Pad65)")
(net 51 "unconnected-(U2-Pad64)")
(net 52 "unconnected-(U2-Pad63)")
(net 53 "unconnected-(U2-Pad62)")
(net 54 "unconnected-(U2-Pad61)")
(net 55 "unconnected-(U2-Pad60)")
(net 56 "unconnected-(U2-Pad6)")
(net 57 "unconnected-(U2-Pad59)")
(net 58 "unconnected-(U2-Pad58)")
(net 59 "unconnected-(U2-Pad57)")
(net 60 "unconnected-(U2-Pad56)")
(net 61 "unconnected-(U2-Pad55)")
(net 62 "unconnected-(U2-Pad54)")
(net 63 "unconnected-(U2-Pad53)")
(net 64 "unconnected-(U2-Pad52)")
(net 65 "unconnected-(U2-Pad51)")
(net 66 "unconnected-(U2-Pad50)")
(net 67 "unconnected-(U2-Pad5)")
(net 68 "unconnected-(U2-Pad49)")
(net 69 "unconnected-(U2-Pad46)")
(net 70 "unconnected-(U2-Pad45)")
(net 71 "unconnected-(U2-Pad44)")
(net 72 "unconnected-(U2-Pad43)")
(net 73 "unconnected-(U2-Pad42)")
(net 74 "unconnected-(U2-Pad4)")
(net 75 "unconnected-(U2-Pad37)")
(net 76 "unconnected-(U2-Pad36)")
(net 77 "unconnected-(U2-Pad35)")
(net 78 "unconnected-(U2-Pad33)")
(net 79 "unconnected-(U2-Pad31)")
(net 80 "unconnected-(U2-Pad3)")
(net 81 "unconnected-(U2-Pad29)")
(net 82 "unconnected-(U2-Pad28)")
(net 83 "unconnected-(U2-Pad27)")
(net 84 "unconnected-(U2-Pad26)")
(net 85 "unconnected-(U2-Pad25)")
(net 86 "unconnected-(U2-Pad24)")
(net 87 "unconnected-(U2-Pad23)")
(net 88 "unconnected-(U2-Pad22)")
(net 89 "unconnected-(U2-Pad2)")
(net 90 "unconnected-(U2-Pad16)")
(net 91 "unconnected-(U2-Pad14)")
(net 92 "unconnected-(U2-Pad13)")
(net 93 "unconnected-(U2-Pad12)")
(net 94 "unconnected-(U2-Pad11)")
(net 95 "unconnected-(U2-Pad1)")
(net 96 "Net-(J2-Pad2)")
(net 97 "Net-(J1-Pad2)")
(net 98 "Net-(J1-Pad1)")
(net 99 "Net-(BZ1-Pad1)")
(footprint "rfd900+:RFD900+" (layer "F.Cu")
(tstamp 00000000-0000-0000-0000-000060f5e188)
(at 180.082312 37.675556 180)
(property "Sheetfile" "rrc_pcb.kicad_sch")
(property "Sheetname" "")
(attr through_hole)
(fp_text reference "U1" (at 15.51 -28.97) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3fd6bd10-15a9-4904-8b66-096840eb5171)
)
(fp_text value "RFD900+" (at 15.51 -30.24) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp add094af-d6f3-4e2f-a8fd-8567a657014e)
)
(fp_text user "${REFERENCE}" (at 7.345 12.795 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 15812c92-b515-4ee4-8b59-ac48b80ee2ed)
)
(fp_line (start 0 -41.91) (end 0 -43)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 955b1ad2-9c3e-4bf2-9b78-066928f477dd))
(fp_line (start 0 -30.48) (end 0 -41.91)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 24b8252d-e8c1-4bc0-9eef-819d6babfe36))
(fp_line (start 0 0) (end 0 -30.48)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6a676caa-5607-4467-8685-5642c2ff02b7))
(fp_line (start 0 0) (end 30 0)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 03b1642a-49e2-418a-bc3d-ec2a11038b40))
(fp_line (start 4.73226 0.00188) (end 4.73226 8.63188)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5efeaed3-2db9-4549-a209-2d6171e2ac2f))
(fp_line (start 5 0) (end 5 8.5)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4a61e56a-cacb-44c6-a4fd-dbb972b86c16))
(fp_line (start 5 8.5) (end 25 8.5)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 17c1a09a-c541-4dc5-9211-451125878707))
(fp_line (start 5.70226 8.63188) (end 5.70226 9.04188)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 79477bb7-39cf-4d14-8650-76e962f46e92))
(fp_line (start 5.70226 11.14188) (end 5.70226 11.58188)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp db22a571-f263-4783-9586-46624e91844c))
(fp_line (start 6.42226 8.63188) (end 6.42226 9.04188)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp abce40fd-c647-4797-963d-43874ed7284b))
(fp_line (start 6.42226 11.14188) (end 6.42226 11.58188)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0c131a12-a89d-4a10-8a61-04df1a840c5f))
(fp_line (start 7.33226 0.00188) (end 7.33226 8.63188)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c3ee52f3-3966-4d08-a1b8-b9af3c1b05ab))
(fp_line (start 8.24226 8.63188) (end 8.24226 9.04188)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d90e33e7-3321-41a5-abdf-acbcaaabef37))
(fp_line (start 8.24226 11.14188) (end 8.24226 11.58188)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 125011ef-82fb-473d-b133-e5c0b5ed3caa))
(fp_line (start 8.96226 8.63188) (end 8.96226 9.04188)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 749b93b5-ba24-47af-9461-745f31aaf69d))
(fp_line (start 8.96226 11.14188) (end 8.96226 11.58188)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 18cced5d-fd43-4bce-8e8c-44dcf3ca1b66))
(fp_line (start 9.87226 0.00188) (end 9.87226 8.63188)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d4c67f0e-48da-4777-bcb0-7f7ddf59d6ba))
(fp_line (start 10.78226 8.63188) (end 10.78226 9.04188)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 51f48bb7-0de7-43a7-a642-3863f353a3ba))
(fp_line (start 10.78226 11.14188) (end 10.78226 11.58188)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 080db19e-b81d-45db-bf15-8dde6ef08532))
(fp_line (start 11.50226 8.63188) (end 11.50226 9.04188)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8d7e9ecf-37fb-44a4-85b3-30ec4e27cc7e))
(fp_line (start 11.50226 11.14188) (end 11.50226 11.58188)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2259cddd-a955-4dcc-90f5-1a7ceb6e8154))
(fp_line (start 12.41226 0.00188) (end 12.41226 8.63188)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ee8b1f88-4ccb-4df6-bbab-07e1ec264f84))
(fp_line (start 13.32226 8.63188) (end 13.32226 9.04188)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 58e97129-0329-4141-b02f-5c63d463dd75))
(fp_line (start 13.32226 11.14188) (end 13.32226 11.58188)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a2fc25e4-4f89-4a39-8de1-2136ebaf6e3a))
(fp_line (start 14.04226 8.63188) (end 14.04226 9.04188)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3f7cf528-9071-451e-bcef-11cf70dec2c6))
(fp_line (start 14.04226 11.14188) (end 14.04226 11.58188)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 60341816-91f2-4a1c-8add-23af78867113))
(fp_line (start 14.95226 0.00188) (end 14.95226 8.63188)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7d4c4d95-8972-4fff-9379-0d14600d8a56))
(fp_line (start 15.86226 8.63188) (end 15.86226 9.04188)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d9cfe03d-e427-4ff8-aab1-2fa426937be8))
(fp_line (start 15.86226 11.14188) (end 15.86226 11.58188)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4ff9aece-65b6-4c25-978b-23132b9195bd))
(fp_line (start 16.58226 8.63188) (end 16.58226 9.04188)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9b46ebb4-c4fb-450e-832a-b31ce9e83e6e))
(fp_line (start 16.58226 11.14188) (end 16.58226 11.58188)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f46712f0-4332-49d6-8ac2-3c0dd36e0085))
(fp_line (start 17.49226 0.00188) (end 17.49226 8.63188)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a343ad5a-effc-48f2-912f-21a6119f76cd))
(fp_line (start 18.40226 8.63188) (end 18.40226 9.04188)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp dd318412-7df4-4535-a4b8-1b3bb7b9be6b))
(fp_line (start 18.40226 11.14188) (end 18.40226 11.58188)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp cf500425-4148-4428-bbc7-2f2173bc5396))
(fp_line (start 19.12226 8.63188) (end 19.12226 9.04188)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4fec045d-2281-43bd-9f72-70350da12d0e))
(fp_line (start 19.12226 11.14188) (end 19.12226 11.58188)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f4ed12ac-4c61-481c-b5f5-74892c76072f))
(fp_line (start 20.03226 0.00188) (end 20.03226 8.63188)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2d522715-91aa-4b87-8b1d-6f816692b4da))
(fp_line (start 20.94226 8.63188) (end 20.94226 9.04188)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1a252167-25f9-438e-824e-fab53655c66d))
(fp_line (start 20.94226 11.14188) (end 20.94226 11.58188)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 955691d1-062f-4a97-9033-601f0e661655))
(fp_line (start 21.66226 8.63188) (end 21.66226 9.04188)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f6082ed0-cd31-42bc-ab63-f0f6c13cc21a))
(fp_line (start 21.66226 11.14188) (end 21.66226 11.58188)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 32e310b9-cce5-4720-a582-4d0e9e7c7cab))
(fp_line (start 22.57226 0.00188) (end 22.57226 8.63188)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4576c176-478d-4316-968f-f71b6e47eadb))
(fp_line (start 22.69036 0.00188) (end 22.69036 8.63188)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 492f5b1e-5623-4c40-9088-2a3cb74d6ec3))
(fp_line (start 22.808455 0.00188) (end 22.808455 8.63188)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp de3dbb3f-41ef-4d8d-bd88-380e3e5be754))
(fp_line (start 22.92655 0.00188) (end 22.92655 8.63188)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 93d5aae1-c234-4819-bb10-237394eef5ab))
(fp_line (start 23.044645 0.00188) (end 23.044645 8.63188)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f731c526-a23a-4253-8a46-7d68eb1f6f9f))
(fp_line (start 23.16274 0.00188) (end 23.16274 8.63188)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 862e2556-d167-4488-ae78-965190c4cf39))
(fp_line (start 23.280835 0.00188) (end 23.280835 8.63188)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3beb1d92-b7e5-49ee-b58e-bf6ac938a932))
(fp_line (start 23.39893 0.00188) (end 23.39893 8.63188)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 66f5d8d0-378b-4c1b-9628-9a75aaa95ca1))
(fp_line (start 23.48226 8.63188) (end 23.48226 9.04188)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8bf3f2bb-1f00-4743-9422-dcc9269b525d))
(fp_line (start 23.48226 11.14188) (end 23.48226 11.52188)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0f729a96-ef1b-48ed-abf6-0ec262884c1d))
(fp_line (start 23.517025 0.00188) (end 23.517025 8.63188)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b3cb5e89-466e-4686-9edf-c179c91492e2))
(fp_line (start 23.63512 0.00188) (end 23.63512 8.63188)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3f345183-2b11-4bc9-8ebf-67f42839bf21))
(fp_line (start 23.753215 0.00188) (end 23.753215 8.63188)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 341af045-7663-407f-a4b6-46d07e30281e))
(fp_line (start 23.87131 0.00188) (end 23.87131 8.63188)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6c13d2a5-5af9-41bf-9d25-dc5876213ccb))
(fp_line (start 23.989405 0.00188) (end 23.989405 8.63188)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 00f12407-ba3b-4cee-bfcd-0a6c91ea5534))
(fp_line (start 24.1075 0.00188) (end 24.1075 8.63188)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a60203fc-a58a-478b-a1df-e3348fc4f7ed))
(fp_line (start 24.20226 8.63188) (end 24.20226 9.04188)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b57b2bc0-529d-4649-90d3-2c43816bbc89))
(fp_line (start 24.20226 11.14188) (end 24.20226 11.52188)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 21843ba5-e8e8-4b13-a0f4-0ddaea0a0828))
(fp_line (start 24.225595 0.00188) (end 24.225595 8.63188)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e1cb517c-bd49-4ba4-87f5-1d214a2c377e))
(fp_line (start 24.34369 0.00188) (end 24.34369 8.63188)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3ed33b08-5e4d-43d5-826f-2a56e5af0d68))
(fp_line (start 24.461785 0.00188) (end 24.461785 8.63188)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a2f23f45-3ba7-43a3-bfe4-5361b83f4de2))
(fp_line (start 24.57988 0.00188) (end 24.57988 8.63188)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 402d15ba-33e3-4e6e-bdeb-917f5b5927b2))
(fp_line (start 24.697975 0.00188) (end 24.697975 8.63188)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 61097f63-87b0-4496-b52d-f250a79ae1ed))
(fp_line (start 24.81607 0.00188) (end 24.81607 8.63188)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3562031a-3b6d-4d8f-aaa8-83bf7c79136d))
(fp_line (start 24.934165 0.00188) (end 24.934165 8.63188)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 323a6794-e030-418c-83ee-37f9aebd9a0a))
(fp_line (start 25 8.5) (end 25 0)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5049a29c-5300-4d3a-9e1e-05b171319476))
(fp_line (start 25.05226 0.00188) (end 25.05226 8.63188)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1f736dd0-1b39-4b06-808b-af50b6f89544))
(fp_line (start 25.17226 0.00188) (end 4.73226 0.00188)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8d8fd921-2af1-4c61-9454-49dc52b4a784))
(fp_line (start 25.17226 0.00188) (end 25.17226 8.63188)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d05769b4-8263-4862-8a42-e733adbb3b00))
(fp_line (start 25.17226 8.63188) (end 4.73226 8.63188)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5cc60444-a3e7-411b-948b-f0827530e344))
(fp_line (start 25.17226 12.63188) (end 25.17226 13.74188)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6921bd1d-cfd0-4185-8d07-03e1fa80f2a6))
(fp_line (start 25.17226 13.74188) (end 23.84226 13.74188)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b9961c14-0525-44ed-855a-d463970fa524))
(fp_line (start 25.5 0) (end 5 0)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a89a2f04-e8d8-4a3c-bff0-21e83dac371b))
(fp_line (start 30 -43) (end 0 -43)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1a97a02d-0054-4c79-b67c-874d89046c2b))
(fp_line (start 30 0) (end 30 -43)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e51ab3f7-d24d-4de2-8904-b502e15d137f))
(fp_line (start 4.29226 -0.41812) (end 4.29226 14.43188)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp f4feab92-2f6e-443b-aef4-a5bbc9744614))
(fp_line (start 4.29226 14.43188) (end 25.64226 14.43188)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 0aa0ef2a-8a66-4246-8742-da65ec8bd51a))
(fp_line (start 25.64226 -0.41812) (end 4.29226 -0.41812)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 2d651b25-c02a-423d-a06a-7fbefb64cf82))
(fp_line (start 25.64226 14.43188) (end 25.64226 -0.41812)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d767e8b4-7758-4f39-8312-6ea4f099c05d))
(fp_line (start 4.79226 0.06188) (end 25.11226 0.06188)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 64157bcc-faf7-46b1-bb51-90f4560ef5e1))
(fp_line (start 4.79226 8.57188) (end 4.79226 0.06188)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 616093c8-3228-417a-a012-b141314cf387))
(fp_line (start 5.76226 8.57188) (end 5.76226 12.63188)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e4fbd811-e34b-498f-830d-12cd7517fa20))
(fp_line (start 5.76226 12.63188) (end 6.36226 12.63188)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 01701078-204a-40f4-94c8-0e3735ce3255))
(fp_line (start 6.36226 12.63188) (end 6.36226 8.57188)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b6d8f096-8536-43b3-8999-ec7115507b51))
(fp_line (start 8.30226 8.57188) (end 8.30226 12.63188)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 47231d01-4106-45fd-a6ad-ee4a18e12719))
(fp_line (start 8.30226 12.63188) (end 8.90226 12.63188)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 35f2f3dd-40d3-4653-8937-28e96ed0f0b8))
(fp_line (start 8.90226 12.63188) (end 8.90226 8.57188)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp bfca6514-5ae9-49a0-ad4c-72dd03be90be))
(fp_line (start 10.84226 8.57188) (end 10.84226 12.63188)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 79bcfb8f-616e-45cd-bada-1b22e61bcb97))
(fp_line (start 10.84226 12.63188) (end 11.44226 12.63188)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 1fa5cf21-a0c8-4356-af09-fc2125619f7f))
(fp_line (start 11.44226 12.63188) (end 11.44226 8.57188)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f00e22ae-928e-4aca-ad96-33b47d442bfe))
(fp_line (start 13.38226 8.57188) (end 13.38226 12.63188)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 80f2fcad-ecba-4db0-a53d-e17ca29edc43))
(fp_line (start 13.38226 12.63188) (end 13.98226 12.63188)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f1fa69b8-1cd0-406c-9137-c86330fc9c63))
(fp_line (start 13.98226 12.63188) (end 13.98226 8.57188)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp fb306f2e-8792-4497-a865-adf774f2f98c))
(fp_line (start 15.92226 8.57188) (end 15.92226 12.63188)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp dff583f6-562a-4cf7-a212-1bdb263cfab9))
(fp_line (start 15.92226 12.63188) (end 16.52226 12.63188)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d67602d4-e35a-4b0d-8079-2835bf0b4dc5))
(fp_line (start 16.52226 12.63188) (end 16.52226 8.57188)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp bf0fc002-9f97-49e2-8ea9-8ebdf385185e))
(fp_line (start 18.46226 8.57188) (end 18.46226 12.63188)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f6c96c85-a97b-43f0-8a14-e2eb1318ab1f))
(fp_line (start 18.46226 12.63188) (end 19.06226 12.63188)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 593773f6-da9f-4fc9-b1b5-06bc6448abce))
(fp_line (start 19.06226 12.63188) (end 19.06226 8.57188)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp efbf8cee-6de7-4528-9f79-58af43665aae))
(fp_line (start 21.00226 8.57188) (end 21.00226 12.63188)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 044673b6-d982-43a1-bb39-91710cdcc900))
(fp_line (start 21.00226 12.63188) (end 21.60226 12.63188)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d963c2e3-d1a4-49b1-972e-a6563f853ceb))
(fp_line (start 21.60226 12.63188) (end 21.60226 8.57188)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 38fe48c5-6141-464b-a6fb-bb106c32d514))
(fp_line (start 23.54226 8.57188) (end 23.54226 12.63188)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3797618e-67d9-4160-b25a-ce7e854f460f))
(fp_line (start 23.54226 12.63188) (end 24.14226 12.63188)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 1500c019-7bb9-4546-9c31-f0df6c3c8ba4))
(fp_line (start 24.14226 8.57188) (end 4.79226 8.57188)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a88d9487-47c5-4e6e-bd34-c2f3e81be866))
(fp_line (start 24.14226 12.63188) (end 24.14226 8.57188)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8884a1ce-b75e-442f-bfc0-50d8877ff81d))
(fp_line (start 25.11226 0.06188) (end 25.11226 7.60188)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0f0abb39-c780-402c-b5bf-249981dae0b9))
(fp_line (start 25.11226 7.60188) (end 24.14226 8.57188)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 74830f37-4e57-4303-91a4-5633e5ac8092))
(pad "" thru_hole circle (at 2.75 -2.75 180) (size 3.5 3.5) (drill 3.2) (layers "*.Cu" "*.Mask") (tstamp 0337c8be-982e-425e-a62b-5dc92975d8f5))
(pad "" thru_hole circle (at 15 -40.25 180) (size 3.5 3.5) (drill 3.2) (layers "*.Cu" "*.Mask") (tstamp 1f64415b-22ce-4cd6-9456-21fb9c0d6c36))
(pad "" thru_hole circle (at 27.25 -2.75 180) (size 3.5 3.5) (drill 3.2) (layers "*.Cu" "*.Mask") (tstamp c693cbf5-a61e-4cc4-be7a-cee45b744e41))
(pad "1" thru_hole rect (at 23.84226 12.63188 90) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 2 "VCC") (pinfunction "EXT_PWR") (pintype "power_in") (tstamp b8881751-b1b5-440c-87f8-2597a12be7b1))
(pad "2" thru_hole oval (at 23.84226 10.09188 90) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 11 "unconnected-(U1-Pad2)") (pinfunction "EXT_PWR") (pintype "power_in") (tstamp 17e1fc53-b8d2-4249-86da-8d50b67d4c55))
(pad "3" thru_hole oval (at 21.30226 12.63188 90) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 1 "GND") (pinfunction "EXT_GND") (pintype "power_in") (tstamp f68f015f-ae4d-4da5-98c0-d87d50708f37))
(pad "4" thru_hole oval (at 21.30226 10.09188 90) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 14 "unconnected-(U1-Pad4)") (pinfunction "EXT_GND") (pintype "power_in") (tstamp 8c0e2fe6-97c0-4aa8-957d-1fc607015216))
(pad "5" thru_hole oval (at 18.76226 12.63188 90) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 15 "unconnected-(U1-Pad5)") (pinfunction "ON_OFF") (pintype "power_in") (tstamp d4ca50e1-7306-4fb8-aba0-95a476d13046))
(pad "6" thru_hole oval (at 18.76226 10.09188 90) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 7 "RX2") (pinfunction "DF_S_TX") (pintype "bidirectional") (tstamp 0df09a06-9bee-48dd-8340-4d12d3948fdc))
(pad "7" thru_hole oval (at 16.22226 12.63188 90) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 6 "TX2") (pinfunction "DF_S_RX") (pintype "bidirectional") (tstamp 76641c22-06d4-40c6-b25b-1356f0c04158))
(pad "8" thru_hole oval (at 16.22226 10.09188 90) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 9 "T_GND") (pinfunction "SIG_GND") (pintype "power_in") (tstamp e192e143-c99d-4e46-9253-6d9c0d151aaf))
(pad "9" thru_hole oval (at 13.68226 12.63188 90) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 16 "unconnected-(U1-Pad9)") (pinfunction "DF_DCD") (pintype "output") (tstamp e227b1b4-b50d-43f7-8ef3-b7fe0ab5a0a7))
(pad "10" thru_hole oval (at 13.68226 10.09188 90) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 17 "unconnected-(U1-Pad10)") (pinfunction "DF_DSR") (pintype "output") (tstamp 3fa7a533-2d51-4358-b062-c2c4c86fb801))
(pad "11" thru_hole oval (at 11.14226 12.63188 90) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 18 "unconnected-(U1-Pad11)") (pinfunction "DF_CTS") (pintype "output") (tstamp d89505d3-f99a-4b53-b3c9-e9ae33ce1e7c))
(pad "12" thru_hole oval (at 11.14226 10.09188 90) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 19 "unconnected-(U1-Pad12)") (pinfunction "DF_RI") (pintype "output") (tstamp f1a56564-060c-48f1-b175-b611f87c63a6))
(pad "13" thru_hole oval (at 8.60226 12.63188 90) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 20 "unconnected-(U1-Pad13)") (pinfunction "DF_RTS") (pintype "input") (tstamp a4194d92-f6d5-460f-a323-1672d8bb6dff))
(pad "14" thru_hole oval (at 8.60226 10.09188 90) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 21 "unconnected-(U1-Pad14)") (pinfunction "DF_DTR") (pintype "input") (tstamp 9b644b53-0fb6-4e5b-9b0e-6808b944b94b))
(pad "15" thru_hole oval (at 6.06226 12.63188 90) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 22 "unconnected-(U1-Pad15)") (pinfunction "SIG_GND") (pintype "power_in") (tstamp f4f8d581-c409-4dc6-9feb-959c6d6b77bd))
(pad "16" thru_hole oval (at 6.06226 10.09188 90) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 23 "unconnected-(U1-Pad16)") (pinfunction "RESERVED") (pintype "no_connect") (tstamp a42b61ee-8de9-4224-8fbb-c717f2acd26b))
)
(footprint "Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal" (layer "F.Cu")
(tstamp 00000000-0000-0000-0000-000060f5e1dc)
(at 168.783102 82.712958)
(descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=10.16mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
(tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 10.16mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
(property "Sheetfile" "rrc_pcb.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000060f426bb")
(attr through_hole)
(fp_text reference "R3" (at 5.043254 -0.036061) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f79a1f40-6537-43a6-a44c-013fa2f8853e)
)
(fp_text value "R-Device" (at 5.08 2.37) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ee8b0e12-1490-4cd2-9023-c032ec1a6594)
)
(fp_text user "${REFERENCE}" (at 5.08 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a4858a3c-c22b-4bce-b617-e88ca4f025c3)
)
(fp_line (start 1.04 0) (end 1.81 0)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 615e853e-a5aa-4814-8a30-706412e38a07))
(fp_line (start 1.81 -1.37) (end 1.81 1.37)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 00ffc224-c1a4-4dde-b32b-00fa6fc8461a))
(fp_line (start 1.81 1.37) (end 8.35 1.37)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a7ebf033-9616-4890-b0e1-f78aa4554e86))
(fp_line (start 8.35 -1.37) (end 1.81 -1.37)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b3f0e001-7ab1-4134-a6bb-b494d21a5da1))
(fp_line (start 8.35 1.37) (end 8.35 -1.37)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9b77f524-72cd-464a-b46f-106617e77d4d))
(fp_line (start 9.12 0) (end 8.35 0)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 27208fef-b21f-4054-9ac5-3988a5349429))
(fp_line (start -1.05 -1.5) (end -1.05 1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 040b5770-b2a5-4f77-8bb7-87516deebbf8))
(fp_line (start -1.05 1.5) (end 11.21 1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 584bf8b4-8384-4596-b8f0-651914087f95))
(fp_line (start 11.21 -1.5) (end -1.05 -1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 1f5d16ce-bf15-423e-94e4-4d2743272b98))
(fp_line (start 11.21 1.5) (end 11.21 -1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 456371e7-2836-4d1b-83b8-968619c22e80))
(fp_line (start 0 0) (end 1.93 0)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ebcab288-2e7b-456d-a763-bcee5ac45003))
(fp_line (start 1.93 -1.25) (end 1.93 1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 1a6a2854-aabc-4ad4-9181-fbceee56c265))
(fp_line (start 1.93 1.25) (end 8.23 1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9d002bea-2d3a-4445-bb09-4e7a922545cd))
(fp_line (start 8.23 -1.25) (end 1.93 -1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 6bcdece4-abca-45fc-8e0c-51a37107243d))
(fp_line (start 8.23 1.25) (end 8.23 -1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 1eb1ced0-f440-43f9-8d0f-7599594987a0))
(fp_line (start 10.16 0) (end 8.23 0)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4b8767b4-4366-4053-9a9f-31b8d14b9a49))
(pad "1" thru_hole circle (at 0 0) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask") (remove_unused_layers) (keep_end_layers) (zone_layer_connections)
(net 4 "SCL1") (pintype "passive") (tstamp 9a99d97b-3ac6-4f5e-aaa8-5dbe43b892f1))
(pad "2" thru_hole oval (at 10.16 0) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 3 "T_VCC") (pintype "passive") (tstamp c4e4be50-7c71-479d-935c-983382f4cf10))
(model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal" (layer "F.Cu")
(tstamp 00000000-0000-0000-0000-000060f5e21e)
(at 178.943102 86.704287 180)
(descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=10.16mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
(tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 10.16mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
(property "Sheetfile" "rrc_pcb.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000060f41f75")
(attr through_hole)
(fp_text reference "R4" (at 4.62593 0.029783) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e86001d3-daf8-495c-9d65-0b6e963b95e7)
)
(fp_text value "R-Device" (at 5.08 -2.54) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c70e1a6d-ef17-4904-a1e7-4af88003ce51)
)
(fp_text user "${REFERENCE}" (at 5.08 -1.25) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3b96970f-1c07-4bdf-a0d7-55c3946bbfb7)
)
(fp_line (start 1.04 0) (end 1.81 0)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4781d72f-4aab-4a64-8172-72ba8029d79b))
(fp_line (start 1.81 -1.37) (end 1.81 1.37)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 96cf1e48-3de0-42ad-b0f6-3da417584315))
(fp_line (start 1.81 1.37) (end 8.35 1.37)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp cc0f1f03-e0f7-4fc9-bde7-842481171312))
(fp_line (start 8.35 -1.37) (end 1.81 -1.37)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6387102f-6bf8-4060-8812-1b088e578ef4))
(fp_line (start 8.35 1.37) (end 8.35 -1.37)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f65054e4-e43c-4fb3-a85f-1d39dcf4dee1))
(fp_line (start 9.12 0) (end 8.35 0)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8f5aac6f-929e-4560-a3e7-8cae1614417f))
(fp_line (start -1.05 -1.5) (end -1.05 1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp aaf5af5c-d788-4926-bfe3-96421bc7a576))
(fp_line (start -1.05 1.5) (end 11.21 1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 9dbeca8e-47c4-4671-a8dd-9aadc090718f))
(fp_line (start 11.21 -1.5) (end -1.05 -1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 682d2297-7141-4620-871d-98b89c450685))
(fp_line (start 11.21 1.5) (end 11.21 -1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 3934b4c4-f61e-48fb-b5f4-3efd496a2a7a))
(fp_line (start 0 0) (end 1.93 0)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4a51cc1b-edbd-4fdc-a65d-b0160fda25eb))
(fp_line (start 1.93 -1.25) (end 1.93 1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f70c1c2f-704a-4f2b-aaf2-eb02dab28cdd))
(fp_line (start 1.93 1.25) (end 8.23 1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 6361950a-6edc-421c-8931-f949cd7f3326))
(fp_line (start 8.23 -1.25) (end 1.93 -1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp fff908a6-5708-497e-9a13-d1a94825f3c4))
(fp_line (start 8.23 1.25) (end 8.23 -1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 14d89891-a1a0-4d74-a98a-d64aa7b8ff33))
(fp_line (start 10.16 0) (end 8.23 0)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 66ed491b-33c6-4da7-a1b3-451724ff5078))
(pad "1" thru_hole circle (at 0 0 180) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 5 "SDA1") (pintype "passive") (tstamp 3aae6248-360b-4559-905c-abacd42d6b71))
(pad "2" thru_hole oval (at 10.16 0 180) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 3 "T_VCC") (pintype "passive") (tstamp 8734b6ff-bfa0-4d6e-85f4-c05e634fb249))
(model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_AMASS:AMASS_XT30U-F_1x02_P5.0mm_Vertical" (layer "F.Cu")
(tstamp 00000000-0000-0000-0000-000060f5e42f)
(at 157.48 85.537678 180)
(descr "Connector XT30 Vertical Cable Female, https://www.tme.eu/en/Document/3cbfa5cfa544d79584972dd5234a409e/XT30U%20SPEC.pdf")
(tags "RC Connector XT30")
(property "Sheetfile" "rrc_pcb.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000060f4b4b7")
(attr through_hole)
(fp_text reference "J1" (at 2.5 -4) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp aae61eda-ada5-4c8b-99cc-18e226d9e185)
)
(fp_text value "Conn_01x02_Male-Connector" (at -1.536691 4.367232) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 37eb7bf9-6047-419b-8d6c-e784775f793e)
)
(fp_text user "-" (at -4 0) (layer "F.SilkS")
(effects (font (size 1.5 1.5) (thickness 0.15)))
(tstamp 8473359e-a14f-4134-9ae0-e429f5bd2dc4)
)
(fp_text user "+" (at 9 0) (layer "F.SilkS")
(effects (font (size 1.5 1.5) (thickness 0.15)))
(tstamp a8cda814-f566-4f6b-bdc4-736033a63397)
)
(fp_text user "${REFERENCE}" (at 2.5 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 56010e05-bc0d-4ff7-98a8-9368ccd14bc6)
)
(fp_line (start -2.71 -1.41) (end -2.71 1.41)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4d59c477-3fee-4d1a-9288-1a2b18e14eb1))
(fp_line (start -2.71 -1.41) (end -1.01 -2.71)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 509b6322-34b7-4128-adec-26c13a547a60))
(fp_line (start -2.71 1.41) (end -1.01 2.71)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6b1e19a9-d24a-48c4-823f-0f0606efd971))
(fp_line (start -1.01 -2.71) (end 7.71 -2.71)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5a05f20a-02d9-4e32-aa8f-391cae95f33a))
(fp_line (start -1.01 2.71) (end 7.71 2.71)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 36ad2dba-78d0-4b04-9277-d4c019accea2))
(fp_line (start 7.71 -2.71) (end 7.71 2.71)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp db8222f3-d95c-4b79-856b-0bb8331e577e))
(fp_line (start -3.1 -1.8) (end -3.1 1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 60298e2e-7fed-4475-b884-e56a3d8fb245))
(fp_line (start -3.1 -1.8) (end -1.4 -3.1)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 4a2d7ca7-626d-49c6-b9a1-a1101e6191db))
(fp_line (start -3.1 1.8) (end -1.4 3.1)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 1c5d38d8-bde8-49b6-90c7-f6f17f431d73))
(fp_line (start -1.4 -3.1) (end 8.1 -3.1)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 137a623a-cba1-4137-8eb2-7640a372468b))
(fp_line (start -1.4 3.1) (end 8.1 3.1)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c912798a-f9e3-4290-88d3-8882eed9cce1))
(fp_line (start 8.1 -3.1) (end 8.1 3.1)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp de32183f-5e69-4b8f-b6b6-1edbc0a3801f))
(fp_line (start -2.6 -1.3) (end -2.6 1.3)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d369b4dc-8abd-4522-aa99-862d688a967f))
(fp_line (start -2.6 -1.3) (end -0.9 -2.6)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 760825b9-f0d3-4552-967c-35001d0e7297))
(fp_line (start -2.6 1.3) (end -0.9 2.6)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3f0c9e7c-cba4-49bf-a83a-5a70ea59d850))
(fp_line (start -0.9 -2.6) (end 7.6 -2.6)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f2cebbcf-e4fd-4bb1-a61d-0ee3da3ca7a5))
(fp_line (start -0.9 2.6) (end 7.6 2.6)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 18c3a391-7ffd-467d-84a8-6f6c6af8af90))
(fp_line (start 7.6 -2.6) (end 7.6 2.6)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 22c86e9f-7a57-4e00-9947-cab3b3fd15e7))
(pad "1" thru_hole rect (at 0 0 180) (size 3.8 3.8) (drill 2.7) (layers "*.Cu" "*.Mask")
(net 98 "Net-(J1-Pad1)") (pinfunction "Pin_1") (pintype "passive") (tstamp fd1d6895-51f1-474e-9af7-dd4cd1588f2e))
(pad "2" thru_hole circle (at 5 0 180) (size 4 4) (drill 2.7) (layers "*.Cu" "*.Mask")
(net 97 "Net-(J1-Pad2)") (pinfunction "Pin_2") (pintype "passive") (tstamp 833db722-bd67-4f35-aad7-64c22371d154))
(model "${KIPRJMOD}/footprints/LiPo/Tattu_6S_8000mAh_25C.step"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "icm20948:icm20948" (layer "F.Cu")
(tstamp 00000000-0000-0000-0000-000060f5e4f0)
(at 63.758599 74.624231 180)
(property "MANUFACTURER" "TDK InvenSense")
(property "MAXIMUM_PACKAGE_HEIGHT" "")
(property "PARTREV" "")
(property "STANDARD" "")
(property "Sheetfile" "rrc_pcb.kicad_sch")
(property "Sheetname" "")
(path "/0447b727-4b5f-40f2-b95a-bf65178a21cf")
(attr smd)
(fp_text reference "U4" (at 0 -0.5 180 unlocked) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e38a1c1a-9f6f-4e80-bbc9-5b691aeec50d)
)
(fp_text value "ICM-20948 " (at 0 1 180 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0a92e974-1947-40fc-9bd0-d79ef05ef430)
)
(fp_text user "${REFERENCE}" (at -14.34 4.54 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 58126fca-c0e2-43f0-84d6-b881d0f61ade)
)
(fp_text user "${REFERENCE}" (at -13.24 4.54 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6073d979-db2c-45a9-85eb-e981059aba3b)
)
(fp_text user "${REFERENCE}" (at -5.08 6.229289 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a7db6939-1d70-4e7c-b51f-fdff26de2f0c)
)
(fp_line (start -16.94 -10.76) (end -15.61 -10.76)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ff9305af-0127-4de7-a682-6ff7babfaba2))
(fp_line (start -16.94 -9.43) (end -16.94 -10.76)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7c22c593-e910-4135-a36c-8661cb2a0a85))
(fp_line (start -16.94 -8.16) (end -16.94 19.84)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0ba9db09-c172-495d-8c4f-d3491668121c))
(fp_line (start -16.94 -8.16) (end -14.34 -8.16)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 70c2f0e7-e704-4954-a6ee-48428b8019f5))
(fp_line (start -16.94 19.84) (end -11.74 19.84)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0f60dd96-6470-4227-abe3-45905931316b))
(fp_line (start -14.34 -10.76) (end -11.74 -10.76)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f0e3c2e0-0acb-474b-b537-49745b02f66c))
(fp_line (start -14.34 -8.16) (end -14.34 -10.76)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 45db3a14-1135-4c32-a675-2fb190415f61))
(fp_line (start -11.74 -10.76) (end -11.74 19.84)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3988c468-ecfc-462f-9fff-d6342e3ac50f))
(fp_rect (start 21.495 -13.875) (end -17.705 24.225)
(stroke (width 0.12) (type solid)) (fill none) (layer "F.SilkS") (tstamp b69d9b34-e3ef-46e9-85cd-eb6c90bed9d6))
(fp_line (start -17.41 -11.23) (end -17.41 20.32)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 1ec015b8-dc64-49df-8971-a31a5ce7e61a))
(fp_line (start -17.41 20.32) (end -11.26 20.32)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 3e637787-8826-48d3-a3d6-7abd669a1993))
(fp_line (start -11.26 -11.23) (end -17.41 -11.23)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b7be39b7-b8a6-4ef6-bbc4-ac7e2ac05ac9))
(fp_line (start -11.26 20.32) (end -11.26 -11.23)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 39966bf5-1354-4a1f-b5da-e47c0fc7198d))
(fp_line (start -16.88 -9.43) (end -15.61 -10.7)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp aa962a2c-5881-4e5e-8f13-9ccdd94198f8))
(fp_line (start -16.88 19.78) (end -16.88 -9.43)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2de66ae7-601e-4a17-8a71-c39acbd152fc))
(fp_line (start -15.61 -10.7) (end -11.8 -10.7)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp fa4cba20-1da8-44a5-a0cd-29e64431fa8a))
(fp_line (start -11.8 -10.7) (end -11.8 19.78)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0ad36ec5-7a11-4126-a911-1cc0b92327c0))
(fp_line (start -11.8 19.78) (end -16.88 19.78)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 6bf6bc61-8dad-49cf-aacf-c2bcd83a671d))
(pad "" thru_hole circle (at -2.390096 -4.35 90) (size 4.1 4.1) (drill 4) (layers "*.Cu" "*.Mask") (tstamp 46195093-99c4-4386-90ad-c1b7b56de73b))
(pad "" thru_hole circle (at -2.390096 14.7 90) (size 4.1 4.1) (drill 4) (layers "*.Cu" "*.Mask") (tstamp b2f11af5-9d10-46fe-a23a-5d0518933692))
(pad "" thru_hole circle (at 17.495 -4.35 90) (size 4.1 4.1) (drill 4) (layers "*.Cu" "*.Mask") (tstamp f2a01510-0a73-436d-b208-b389398a3e9b))
(pad "" thru_hole circle (at 17.495 14.7 90) (size 4.1 4.1) (drill 4) (layers "*.Cu" "*.Mask") (tstamp 662f2367-b09a-4872-840d-1bf0e04b65c2))
(pad "1" thru_hole rect (at -15.61 -9.43 180) (size 1.7 1.7) (drill 1) (layers "*.Mask" "F.Cu" "In1.Cu" "B.Cu")
(net 45 "unconnected-(U4-Pad1)") (pinfunction "AUX_DA") (pintype "bidirectional") (tstamp e2e24654-ad92-4656-a2c5-a5c2db8fcee4))
(pad "2" thru_hole oval (at -13.07 -9.43 180) (size 1.7 1.7) (drill 1) (layers "*.Mask" "F.Cu" "In1.Cu" "B.Cu")
(net 36 "unconnected-(U4-Pad2)") (pinfunction "NC") (pintype "no_connect") (tstamp cd27e245-2a95-4c2f-94bf-cdfb9a2722c5))
(pad "3" thru_hole oval (at -15.61 -6.89 180) (size 1.7 1.7) (drill 1) (layers "*.Mask" "F.Cu" "In1.Cu" "B.Cu")
(net 34 "unconnected-(U4-Pad3)") (pinfunction "AUX_CL") (pintype "input") (tstamp d0173993-c002-475c-af39-dcc4f7ba1892))
(pad "4" thru_hole oval (at -13.07 -6.89 180) (size 1.7 1.7) (drill 1) (layers "*.Mask" "F.Cu" "In1.Cu" "B.Cu")
(net 33 "unconnected-(U4-Pad4)") (pinfunction "NC") (pintype "no_connect") (tstamp 1f47dceb-6d8a-4d1b-a42f-bcbe2cbc78f0))
(pad "5" thru_hole oval (at -15.61 -4.35 180) (size 1.7 1.7) (drill 1) (layers "*.Mask" "F.Cu" "In1.Cu" "B.Cu")
(net 32 "unconnected-(U4-Pad5)") (pinfunction "1V8") (pintype "power_in") (tstamp 228cd030-d0eb-43dd-b7f1-3f3ef04843d7))
(pad "6" thru_hole oval (at -13.07 -4.35 180) (size 1.7 1.7) (drill 1) (layers "*.Mask" "F.Cu" "In1.Cu" "B.Cu")
(net 31 "unconnected-(U4-Pad6)") (pinfunction "DRDY") (pintype "output") (tstamp 93d0f2e7-9016-409b-91dc-e2fbd118106d))
(pad "7" thru_hole oval (at -15.61 -1.81 180) (size 1.7 1.7) (drill 1) (layers "*.Mask" "F.Cu" "In1.Cu" "B.Cu")
(net 12 "INT1") (pinfunction "INT1") (pintype "output") (tstamp 0013c59c-6c08-4897-8067-100ceb4d1415))
(pad "8" thru_hole oval (at -13.07 -1.81 180) (size 1.7 1.7) (drill 1) (layers "*.Mask" "F.Cu" "In1.Cu" "B.Cu")
(net 30 "unconnected-(U4-Pad8)") (pinfunction "~{CS}") (pintype "input") (tstamp 5e48c2e0-c691-4c55-a9b5-0aba41fd4f4e))
(pad "9" thru_hole oval (at -15.61 0.73 180) (size 1.7 1.7) (drill 1) (layers "*.Mask" "F.Cu" "In1.Cu" "B.Cu")
(net 29 "unconnected-(U4-Pad9)") (pinfunction "NC") (pintype "no_connect") (tstamp 527bcd1a-5b67-4220-b8a9-c7921c26b519))
(pad "10" thru_hole oval (at -13.07 0.73 180) (size 1.7 1.7) (drill 1) (layers "*.Mask" "F.Cu" "In1.Cu" "B.Cu")
(net 44 "unconnected-(U4-Pad10)") (pinfunction "DRDY-CMP") (pintype "output") (tstamp c0f7e885-17b8-4ba8-b6b5-df67bd696898))
(pad "11" thru_hole oval (at -15.61 3.27 180) (size 1.7 1.7) (drill 1) (layers "*.Mask" "F.Cu" "In1.Cu" "B.Cu")
(net 43 "unconnected-(U4-Pad11)") (pinfunction "TP0") (pintype "power_in") (tstamp 6ce99c36-fd69-43ae-8b80-fe3cb6ec810f))
(pad "12" thru_hole oval (at -13.07 3.27 180) (size 1.7 1.7) (drill 1) (layers "*.Mask" "F.Cu" "In1.Cu" "B.Cu")
(net 42 "unconnected-(U4-Pad12)") (pinfunction "NC") (pintype "no_connect") (tstamp 68a0d4d9-9299-4be2-8a5c-ed8f6617ab64))
(pad "13" thru_hole oval (at -15.61 5.81 180) (size 1.7 1.7) (drill 1) (layers "*.Mask" "F.Cu" "In1.Cu" "B.Cu")
(net 41 "unconnected-(U4-Pad13)") (pinfunction "Vpp") (pintype "power_in") (tstamp c1ff1290-f665-4fc2-a9d7-3bcb04f50c6d))
(pad "14" thru_hole oval (at -13.07 5.81 180) (size 1.7 1.7) (drill 1) (layers "*.Mask" "F.Cu" "In1.Cu" "B.Cu")
(net 40 "unconnected-(U4-Pad14)") (pinfunction "NC") (pintype "no_connect") (tstamp 90aed43d-ad1f-4fb4-ae54-c80e4a489f9e))
(pad "15" thru_hole oval (at -15.61 8.35 180) (size 1.7 1.7) (drill 1) (layers "*.Mask" "F.Cu" "In1.Cu" "B.Cu")
(net 9 "T_GND") (pinfunction "GND") (pintype "power_in") (tstamp cec6e959-59fb-42a7-883d-8cb4368ee4d1))
(pad "16" thru_hole oval (at -13.07 8.35 180) (size 1.7 1.7) (drill 1) (layers "*.Mask" "F.Cu" "In1.Cu" "B.Cu")
(net 39 "unconnected-(U4-Pad16)") (pinfunction "NC") (pintype "no_connect") (tstamp 3a7511cc-0b7d-4fa0-a913-f891bfdc174a))
(pad "17" thru_hole oval (at -15.61 10.89 180) (size 1.7 1.7) (drill 1) (layers "*.Mask" "F.Cu" "In1.Cu" "B.Cu")
(net 9 "T_GND") (pinfunction "GND") (pintype "power_in") (tstamp c9826ca0-5752-474e-bb09-d26aabf2803f))
(pad "18" thru_hole oval (at -13.07 10.89 180) (size 1.7 1.7) (drill 1) (layers "*.Mask" "F.Cu" "In1.Cu" "B.Cu")
(net 38 "unconnected-(U4-Pad18)") (pinfunction "REGOUT") (pintype "output") (tstamp 4ebf5b4d-aca3-4af1-96bb-e4e908e702b8))
(pad "19" thru_hole oval (at -15.61 13.43 180) (size 1.7 1.7) (drill 1) (layers "*.Mask" "F.Cu" "In1.Cu" "B.Cu")
(net 37 "unconnected-(U4-Pad19)") (pinfunction "NC") (pintype "no_connect") (tstamp fb0f2e90-7556-4ab8-a579-d6eecca50e29))
(pad "20" thru_hole oval (at -13.07 13.43 180) (size 1.7 1.7) (drill 1) (layers "*.Mask" "F.Cu" "In1.Cu" "B.Cu")
(net 8 "SCL") (pinfunction "SCL/SCLK") (pintype "input") (tstamp 2a4f0c40-2e6c-48db-bb17-8306e85e126d))
(pad "21" thru_hole oval (at -15.61 15.97 180) (size 1.7 1.7) (drill 1) (layers "*.Mask" "F.Cu" "In1.Cu" "B.Cu")
(net 13 "FSYNC") (pinfunction "FSYNC") (pintype "input") (tstamp b0df3ac2-fac7-4179-be7c-b12218955965))
(pad "22" thru_hole oval (at -13.07 15.97 180) (size 1.7 1.7) (drill 1) (layers "*.Mask" "F.Cu" "In1.Cu" "B.Cu")
(net 10 "SDA") (pinfunction "SDA/SDI") (pintype "bidirectional") (tstamp 386344fb-ea51-4e1e-bf61-0f68000f4209))
(pad "23" thru_hole oval (at -15.61 18.51 180) (size 1.7 1.7) (drill 1) (layers "*.Mask" "F.Cu" "In1.Cu" "B.Cu")
(net 3 "T_VCC") (pinfunction "Vin") (pintype "power_in") (tstamp 392b973c-9407-4c22-ab83-620bf9b253a5))
(pad "24" thru_hole oval (at -13.07 18.51 180) (size 1.7 1.7) (drill 1) (layers "*.Mask" "F.Cu" "In1.Cu" "B.Cu")
(net 35 "unconnected-(U4-Pad24)") (pinfunction "AD0/SDO") (pintype "bidirectional") (tstamp d421864d-ddc3-4f4b-81bd-35c21ed5a52f))
)
(footprint "teensy:Teensy41" (layer "F.Cu")
(tstamp 00000000-0000-0000-0000-000060f5e582)
(at 92.71 30.48)
(property "Sheetfile" "rrc_pcb.kicad_sch")
(property "Sheetname" "")
(path "/e2a4979b-162a-4acf-966e-29cd5e9f5e0d")
(attr through_hole)
(fp_text reference "U2" (at 0 -10.16) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 19ccb047-670c-4901-866a-9276bea9712e)
)
(fp_text value "Teensy4.1" (at -35.758674 65.024137) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp fd404ad0-9ae6-43da-9887-9dd2d2341a50)
)
(fp_text user "Ethernet" (at -10.16 0 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 59ff9b4d-532e-48fb-b114-97e2446487c5)
)
(fp_text user "MIMXRT1062" (at -1.27 0 90) (layer "F.SilkS")
(effects (font (size 0.7 0.7) (thickness 0.15)))
(tstamp 613d84ed-c50c-42bf-b6a0-be7cacc1434a)
)
(fp_text user "USB" (at -26.67 0 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b27a119a-091f-499a-acdd-5c6561d6ab34)
)
(fp_text user "DVJ6A" (at -2.54 -0.18 90) (layer "F.SilkS")
(effects (font (size 0.7 0.7) (thickness 0.15)))
(tstamp b50fb2ed-f843-4c72-bd82-667ab57209c1)
)
(fp_text user "Micro SD" (at 24.13 0) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp cf1398dc-462e-4bec-a5b3-7907059e1c17)
)
(fp_text user "USB Host" (at -18.4658 2.4892) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f9da7d94-2d77-4cbd-8ef0-38ec12ccf7bb)
)
(fp_line (start -31.75 -3.81) (end -30.48 -3.81)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 315e03d3-2f72-42a0-b200-d57dd7801aa8))
(fp_line (start -31.75 3.81) (end -31.75 -3.81)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp ffaf1476-bbb1-4bb4-95af-a7cf216522bd))
(fp_line (start -30.48 -8.89) (end 30.48 -8.89)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 3741635e-b743-497c-9876-3489d9956dff))
(fp_line (start -30.48 3.81) (end -31.75 3.81)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp d713a01d-463d-4726-acf0-9d5bf468d1d3))
(fp_line (start -30.48 8.89) (end -30.48 -8.89)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 52653a1d-d55a-4a9b-beb4-b92486bab26a))
(fp_line (start -25.4 -3.81) (end -30.48 -3.81)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 9b017786-7297-4cea-ab21-153f7c820280))
(fp_line (start -25.4 3.81) (end -30.48 3.81)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 209c7bf1-7e41-40aa-9e39-9da6d0754cd7))
(fp_line (start -25.4 3.81) (end -25.4 -3.81)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp dc07ae6f-804b-4c87-9e13-aacc6cfc22b6))
(fp_line (start -24.1808 3.2992) (end -21.6408 3.2992)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 8c03542b-d537-4bb1-b265-f24f695377b1))
(fp_line (start -24.1808 3.2992) (end -11.4808 3.2992)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp f87868fc-eea6-4fe8-97d0-cf6d4dee55d7))
(fp_line (start -24.1808 5.8392) (end -24.1808 3.2992)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp b51ff846-16d1-4f85-affa-f02f2d6cc2e5))
(fp_line (start -21.6408 3.2992) (end -21.6408 5.8392)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 91cd4657-1bb0-4f6c-a846-eb12fc49a7c4))
(fp_line (start -17.25 -6.3516) (end -17.25 -6.1016)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 419cb6cc-2dab-4e8c-9c59-4dc81d81847b))
(fp_line (start -17.25 -6.1016) (end -17.25 -0.1016)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp fb92946e-7aaa-4b97-9ce9-7ceb7d79f499))
(fp_line (start -17.25 -0.1016) (end -13.25 -0.1016)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp fb4aca5c-657d-476b-af99-56bc77a5a78a))
(fp_line (start -13.25 -6.3516) (end -17.25 -6.3516)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp d1c61b2d-9a04-4967-a6f8-83a139f31c26))
(fp_line (start -13.25 -0.1016) (end -13.25 -6.3516)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 98012c3b-1478-4b08-9259-7723bea33a0f))
(fp_line (start -11.4808 3.2992) (end -11.4808 5.8392)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp b0ce32c0-4556-44e4-80c9-986dbf64384d))
(fp_line (start -11.4808 5.8392) (end -24.1808 5.8392)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp f2b10b28-9f7b-4f00-81ff-47bb7aab88e0))
(fp_line (start -7.62 -6.35) (end -7.62 6.35)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp cee14576-6001-4580-8de4-b5df634a2d09))
(fp_line (start -7.62 6.35) (end 5.08 6.35)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp e1f5d231-0300-48fa-8d69-2fe4a6fbfb5d))
(fp_line (start 5.08 -6.35) (end -7.62 -6.35)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 89739b21-9e17-4d85-a277-d57074e47ceb))
(fp_line (start 5.08 6.35) (end 5.08 -6.35)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp b17d01d9-c083-457d-a32e-08bb2ae949d9))
(fp_line (start 10.16 -1.27) (end 13.97 -1.27)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp afc10ac2-84f7-428f-a381-a8efab131e13))
(fp_line (start 10.16 1.27) (end 10.16 -1.27)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp f5308645-e6c3-4798-83b6-5d3cffba5e8f))
(fp_line (start 13.97 -1.27) (end 13.97 1.27)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp cae4793d-d075-4b35-a28d-2346e32f3c78))
(fp_line (start 13.97 1.27) (end 10.16 1.27)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 4693c570-9216-48f8-a887-e9593445c0dd))
(fp_line (start 17.78 -6.35) (end 17.78 6.35)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp c0aea073-3e36-4f28-ad31-03a88768442e))
(fp_line (start 17.78 6.35) (end 30.48 6.35)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp a745bdcf-5c15-4766-a1b4-829f6a147471))
(fp_line (start 29.21 -5.08) (end 29.21 5.08)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 7fb4bef7-bf1d-4c69-ab60-6a74f32a693b))
(fp_line (start 29.21 5.08) (end 30.48 5.08)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp c109a2a5-dc95-44a8-8bcd-4fb23ebb339b))
(fp_line (start 30.48 -8.89) (end 30.48 8.89)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 1634c831-0326-4b09-8935-c785ace6f136))
(fp_line (start 30.48 -6.35) (end 17.78 -6.35)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 44ec13e4-6437-47a8-a0ce-178f9118b966))
(fp_line (start 30.48 -5.08) (end 29.21 -5.08)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 65e99d12-5da7-4876-8f99-922dbad43d0c))
(fp_line (start 30.48 8.89) (end -30.48 8.89)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 9eaaf56b-3055-4877-b46b-1790d562a100))
(fp_circle (center 12.065 0) (end 12.7 -0.635)
(stroke (width 0.15) (type solid)) (fill none) (layer "F.SilkS") (tstamp 6d298275-8bb9-4ba3-a420-60a1b2592806))
(fp_poly
(pts
(xy 0.911 -0.688)
(xy 0.657 -0.434)
(xy 0.403 -0.815)
(xy 0.657 -1.069)
)
(stroke (width 0.1) (type solid)) (fill solid) (layer "F.SilkS") (tstamp 33d2815c-63ce-4b8e-8ef4-2806c567a64a))
(fp_poly
(pts
(xy 1.292 -0.18)
(xy 1.038 0.074)
(xy 0.784 -0.307)
(xy 1.038 -0.561)
)
(stroke (width 0.1) (type solid)) (fill solid) (layer "F.SilkS") (tstamp bf3fb88c-0ba6-440c-8a0a-7e993a43f819))
(fp_poly
(pts
(xy 1.673 -0.561)
(xy 1.419 -0.307)
(xy 1.165 -0.688)
(xy 1.419 -0.942)
)
(stroke (width 0.1) (type solid)) (fill solid) (layer "F.SilkS") (tstamp 3d6d8ecb-aba8-4539-ab1d-0e7b3e456ca7))
(fp_poly
(pts
(xy 1.673 0.328)
(xy 1.419 0.582)
(xy 1.165 0.201)
(xy 1.419 -0.053)
)
(stroke (width 0.1) (type solid)) (fill solid) (layer "F.SilkS") (tstamp a3fb0a13-e950-418e-a6da-eed75cba0922))
(fp_poly
(pts
(xy 2.054 -0.053)
(xy 1.8 0.201)
(xy 1.546 -0.18)
(xy 1.8 -0.434)
)
(stroke (width 0.1) (type solid)) (fill solid) (layer "F.SilkS") (tstamp 67491072-afc4-4b72-b349-cd74f7723832))
(fp_poly
(pts
(xy 2.435 0.455)
(xy 2.181 0.709)
(xy 1.927 0.328)
(xy 2.181 0.074)
)
(stroke (width 0.1) (type solid)) (fill solid) (layer "F.SilkS") (tstamp 1d159fdc-da30-47b2-abe5-1b8d4e470f53))
(fp_poly
(pts
(xy 2.816 0.074)
(xy 2.562 0.328)
(xy 2.308 -0.053)
(xy 2.562 -0.307)
)
(stroke (width 0.1) (type solid)) (fill solid) (layer "F.SilkS") (tstamp 541f1481-8f33-4348-8ec9-9d99160aca41))
(fp_poly
(pts
(xy 3.197 -0.307)
(xy 2.943 -0.053)
(xy 2.689 -0.434)
(xy 2.943 -0.688)
)
(stroke (width 0.1) (type solid)) (fill solid) (layer "F.SilkS") (tstamp 194817d3-a8b0-4793-a893-a0b5acec6b22))
(pad "1" thru_hole rect (at -29.21 7.62) (size 1.6 1.6) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 95 "unconnected-(U2-Pad1)") (pinfunction "GND") (pintype "power_in") (tstamp d23cfc3a-5656-4e65-8620-96496c8c949e))
(pad "2" thru_hole circle (at -26.67 7.62) (size 1.6 1.6) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 89 "unconnected-(U2-Pad2)") (pinfunction "0_RX1_CRX2_CS1") (pintype "bidirectional") (tstamp d61135e2-c956-4158-b32f-618f9b1b215c))
(pad "3" thru_hole circle (at -24.13 7.62) (size 1.6 1.6) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 80 "unconnected-(U2-Pad3)") (pinfunction "1_TX1_CTX2_MISO1") (pintype "bidirectional") (tstamp f0e751cc-607f-4a89-9c57-9175e7bcf295))
(pad "4" thru_hole circle (at -21.59 7.62) (size 1.6 1.6) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 74 "unconnected-(U2-Pad4)") (pinfunction "2_OUT2") (pintype "bidirectional") (tstamp 429a4b4c-2633-4b53-a69a-21badbb0e0c1))
(pad "5" thru_hole circle (at -19.05 7.62) (size 1.6 1.6) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 67 "unconnected-(U2-Pad5)") (pinfunction "3_LRCLK2") (pintype "bidirectional") (tstamp 748dd21a-212b-4b94-a8fa-47ccc88e6643))
(pad "6" thru_hole circle (at -16.51 7.62) (size 1.6 1.6) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 56 "unconnected-(U2-Pad6)") (pinfunction "4_BCLK2") (pintype "bidirectional") (tstamp ed47e7c6-8b5e-4e18-9576-bfe7ccb7600a))
(pad "7" thru_hole circle (at -13.97 7.62) (size 1.6 1.6) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 47 "unconnected-(U2-Pad7)") (pinfunction "5_IN2") (pintype "bidirectional") (tstamp 245a7677-b156-402b-8a6e-3105e79b150e))
(pad "8" thru_hole circle (at -11.43 7.62) (size 1.6 1.6) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 46 "unconnected-(U2-Pad8)") (pinfunction "6_OUT1D") (pintype "bidirectional") (tstamp 8cd55452-d572-464e-8426-b75ea93a73e8))
(pad "9" thru_hole circle (at -8.89 7.62) (size 1.6 1.6) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 7 "RX2") (pinfunction "7_RX2_OUT1A") (pintype "bidirectional") (tstamp 20090fcd-ee0f-4c4a-ab9e-fd1937f34ca4))
(pad "10" thru_hole circle (at -6.35 7.62) (size 1.6 1.6) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 6 "TX2") (pinfunction "8_TX2_IN1") (pintype "bidirectional") (tstamp 9d28d5d0-8d36-4d2a-a5de-89f74d5760e5))
(pad "11" thru_hole circle (at -3.81 7.62) (size 1.6 1.6) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 94 "unconnected-(U2-Pad11)") (pinfunction "9_OUT1C") (pintype "bidirectional") (tstamp b39d32fc-79de-4eae-a95b-e87351697356))
(pad "12" thru_hole circle (at -1.27 7.62) (size 1.6 1.6) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 93 "unconnected-(U2-Pad12)") (pinfunction "10_CS_MQSR") (pintype "bidirectional") (tstamp 164ed5e2-e008-4e8b-bb71-0218b75127b6))
(pad "13" thru_hole circle (at 1.27 7.62) (size 1.6 1.6) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 92 "unconnected-(U2-Pad13)") (pinfunction "11_MOSI_CTX1") (pintype "bidirectional") (tstamp dbb1dfa8-5673-4886-80ac-ae90e72b74cf))
(pad "14" thru_hole circle (at 3.81 7.62) (size 1.6 1.6) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 91 "unconnected-(U2-Pad14)") (pinfunction "12_MISO_MQSL") (pintype "bidirectional") (tstamp 41e37c30-db82-4cb9-b1e5-d5dbf6dadee7))
(pad "15" thru_hole circle (at 6.35 7.62) (size 1.6 1.6) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 3 "T_VCC") (pinfunction "3V3") (pintype "power_in") (tstamp cf1be125-ed1c-4d92-b85e-c2bcf03de5cd))
(pad "16" thru_hole circle (at 8.89 7.62) (size 1.6 1.6) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 90 "unconnected-(U2-Pad16)") (pinfunction "24_A10_TX6_SCL2") (pintype "bidirectional") (tstamp 7ed116d1-98e6-498f-82ee-09d063361dbc))
(pad "17" thru_hole circle (at 11.43 7.62) (size 1.6 1.6) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 5 "SDA1") (pinfunction "25_A11_RX6_SDA2") (pintype "bidirectional") (tstamp 38104720-34ce-4a29-8600-709c800751dc))
(pad "18" thru_hole circle (at 13.97 7.62) (size 1.6 1.6) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 99 "Net-(BZ1-Pad1)") (pinfunction "26_A12_MOSI1") (pintype "bidirectional") (tstamp 65c197ee-bca4-4050-9266-e4e949b9b43d))
(pad "19" thru_hole circle (at 16.51 7.62) (size 1.6 1.6) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 96 "Net-(J2-Pad2)") (pinfunction "27_A13_SCK1") (pintype "bidirectional") (tstamp a7655549-1a65-4530-a498-d7fc2176c1cc))
(pad "20" thru_hole circle (at 19.05 7.62) (size 1.6 1.6) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 24 "RX7") (pinfunction "28_RX7") (pintype "bidirectional") (tstamp fb0f711d-64df-46c8-ac81-abeb33f1a0be))
(pad "21" thru_hole circle (at 21.59 7.62) (size 1.6 1.6) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 25 "TX7") (pinfunction "29_TX7") (pintype "bidirectional") (tstamp 06cc5dad-11ab-478d-bf06-7c851c046286))
(pad "22" thru_hole circle (at 24.13 7.62) (size 1.6 1.6) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 88 "unconnected-(U2-Pad22)") (pinfunction "30_CRX3") (pintype "bidirectional") (tstamp 7c313f51-26be-402a-81eb-d52ddaae341d))
(pad "23" thru_hole circle (at 26.67 7.62) (size 1.6 1.6) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 87 "unconnected-(U2-Pad23)") (pinfunction "31_CTX3") (pintype "bidirectional") (tstamp 33072a09-e6eb-4bc8-b7ee-b4bb2f40bbb7))
(pad "24" thru_hole circle (at 29.21 7.62) (size 1.6 1.6) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 86 "unconnected-(U2-Pad24)") (pinfunction "32_OUT1B") (pintype "bidirectional") (tstamp acee5e32-0702-4d89-80ba-02b7f4f9bc53))
(pad "25" thru_hole circle (at 29.21 -7.62) (size 1.6 1.6) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 85 "unconnected-(U2-Pad25)") (pinfunction "33_MCLK2") (pintype "bidirectional") (tstamp 58e9d6cf-d0b2-479b-94c2-1f3002e51101))