-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathBoxLib.kicad_pcb
More file actions
1362 lines (1337 loc) · 73 KB
/
BoxLib.kicad_pcb
File metadata and controls
1362 lines (1337 loc) · 73 KB
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 20211014) (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)
(50 "User.1" user)
(51 "User.2" user)
(52 "User.3" user)
(53 "User.4" user)
(54 "User.5" user)
(55 "User.6" user)
(56 "User.7" user)
(57 "User.8" user)
(58 "User.9" user)
)
(setup
(stackup
(layer "F.SilkS" (type "Top Silk Screen"))
(layer "F.Paste" (type "Top Solder Paste"))
(layer "F.Mask" (type "Top Solder Mask") (thickness 0.01))
(layer "F.Cu" (type "copper") (thickness 0.035))
(layer "dielectric 1" (type "core") (thickness 1.51) (material "FR4") (epsilon_r 4.5) (loss_tangent 0.02))
(layer "B.Cu" (type "copper") (thickness 0.035))
(layer "B.Mask" (type "Bottom Solder Mask") (thickness 0.01))
(layer "B.Paste" (type "Bottom Solder Paste"))
(layer "B.SilkS" (type "Bottom Silk Screen"))
(copper_finish "None")
(dielectric_constraints no)
)
(pad_to_mask_clearance 0)
(pcbplotparams
(layerselection 0x00010fc_ffffffff)
(disableapertmacros false)
(usegerberextensions false)
(usegerberattributes true)
(usegerberadvancedattributes true)
(creategerberjobfile true)
(svguseinch false)
(svgprecision 6)
(excludeedgelayer true)
(plotframeref false)
(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 1)
(scaleselection 1)
(outputdirectory "")
)
)
(property "RevNumber" "2021-02")
(net 0 "")
(net 1 "unconnected-(JP1-Pad1)")
(net 2 "unconnected-(JP1-Pad2)")
(net 3 "unconnected-(JP1-Pad3)")
(net 4 "unconnected-(J1-Pad1)")
(net 5 "unconnected-(J1-Pad2)")
(net 6 "unconnected-(J2-Pad1)")
(net 7 "unconnected-(J2-Pad2)")
(net 8 "unconnected-(J3-Pad1)")
(net 9 "unconnected-(J3-Pad2)")
(net 10 "unconnected-(J4-Pad1)")
(net 11 "unconnected-(J4-Pad2)")
(net 12 "unconnected-(J5-Pad1)")
(net 13 "unconnected-(J5-Pad2)")
(net 14 "unconnected-(J6-Pad1)")
(net 15 "unconnected-(J6-Pad2)")
(net 16 "unconnected-(J7-Pad1)")
(net 17 "unconnected-(J7-Pad2)")
(net 18 "unconnected-(J8-Pad1)")
(net 19 "unconnected-(J8-Pad2)")
(net 20 "unconnected-(J9-Pad1)")
(net 21 "unconnected-(J9-Pad2)")
(net 22 "unconnected-(F1-Pad1)")
(net 23 "unconnected-(F1-Pad2)")
(net 24 "unconnected-(U1-PadA0)")
(net 25 "unconnected-(U1-PadA1)")
(net 26 "unconnected-(U1-PadA2)")
(net 27 "unconnected-(U1-PadA3)")
(net 28 "unconnected-(U1-PadGND)")
(net 29 "unconnected-(U1-PadRX)")
(net 30 "unconnected-(U1-PadSCK)")
(net 31 "unconnected-(U1-PadSCL)")
(net 32 "unconnected-(U1-PadSDA)")
(net 33 "unconnected-(U1-PadTX)")
(net 34 "unconnected-(J10-Pad1)")
(net 35 "unconnected-(J10-Pad2)")
(net 36 "unconnected-(DS1-Pad3v)")
(net 37 "unconnected-(DS1-PadDC)")
(net 38 "unconnected-(DS1-PadGND)")
(net 39 "unconnected-(DS1-PadLIT)")
(net 40 "unconnected-(DS1-PadMISO)")
(net 41 "unconnected-(DS1-PadMOSI)")
(net 42 "unconnected-(DS1-PadRST)")
(net 43 "unconnected-(DS1-PadSCK)")
(net 44 "unconnected-(DS1-PadTFTCS)")
(net 45 "unconnected-(J11-Pad1)")
(net 46 "unconnected-(J11-Pad2)")
(net 47 "unconnected-(U2-PadA0)")
(net 48 "unconnected-(U2-PadA1)")
(net 49 "unconnected-(U2-PadA2)")
(net 50 "unconnected-(U2-PadA3)")
(net 51 "unconnected-(U2-PadGND)")
(net 52 "unconnected-(U2-PadRX)")
(net 53 "unconnected-(U2-PadSCK)")
(net 54 "unconnected-(U2-PadSCL)")
(net 55 "unconnected-(U2-PadSDA)")
(net 56 "unconnected-(U2-PadTX)")
(net 57 "unconnected-(D1-Pad1)")
(net 58 "unconnected-(D1-Pad2)")
(net 59 "unconnected-(D1-Pad3)")
(net 60 "unconnected-(D1-Pad4)")
(footprint "BoxLib:LED-LTST-C155GEKT" (layer "F.Cu")
(tedit 0) (tstamp 01de4ba4-4783-47ce-9adf-6ca5a3aaa694)
(at 73 71)
(property "Green" "Green Function")
(property "MPN" "C155GEKT")
(property "Manufacturer" "LTST")
(property "Red" "Red Function")
(property "Sheetfile" "BoxLib.kicad_sch")
(property "Sheetname" "")
(path "/cfdfa8c8-35d8-45dc-a3f3-e836c8fa5543")
(attr smd)
(fp_text reference "D1" (at -2.25 0 90 unlocked) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3f6c0302-d110-4c6a-a472-6ea1fdae6721)
)
(fp_text value "LED-LTST-C155GEKT" (at 0 -3.75 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 045adada-d379-4b72-868b-e79a9073060a)
)
(fp_text user "${Red}" (at -1 2.75 270 unlocked) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify left))
(tstamp 3a216995-b6d8-4e68-9c6b-59eb35957695)
)
(fp_text user "${Green}" (at 1 2.75 270 unlocked) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify left))
(tstamp 97e1c4ef-308f-49bb-ae95-50745c2482fa)
)
(fp_text user "${REFERENCE}" (at 0.25 0 90 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 30956afc-5228-48ce-ad77-4bd7c011b55e)
)
(fp_line (start -1.5 -0.975) (end -1.5 0.975) (layer "F.SilkS") (width 0.12) (tstamp 2f3e5a9a-ff28-417a-9043-5a0b1deab777))
(fp_line (start 1.5 -0.975) (end 1.5 0.975) (layer "F.SilkS") (width 0.12) (tstamp 3ef4ad63-a103-4537-bc79-20e1e8592b90))
(fp_poly (pts
(xy 1 -0.125)
(xy 0.75 0.25)
(xy 0.5 -0.125)
) (layer "F.SilkS") (width 0.1) (fill solid) (tstamp 4e120d68-8e67-4747-bebb-7fd19b519624))
(fp_poly (pts
(xy -0.5 -0.15)
(xy -0.75 0.225)
(xy -1 -0.15)
) (layer "F.SilkS") (width 0.1) (fill solid) (tstamp a7f16854-6671-4437-acdb-15777b1fb6ad))
(fp_rect (start -1.5 -2.75) (end 1.5 2.75) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp 8e6f73f5-b190-4a42-9baa-fa2401bbba50))
(pad "1" smd roundrect (at -0.7 -1.75) (size 1 1.5) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 57 "unconnected-(D1-Pad1)") (pintype "passive") (tstamp d11222b4-d7b9-43ee-8e62-1bffa28b1d7b))
(pad "2" smd rect (at 0.7 -1.75) (size 1 1.5) (layers "F.Cu" "F.Paste" "F.Mask")
(net 58 "unconnected-(D1-Pad2)") (pintype "passive") (tstamp e5bcbc12-8d13-4d6a-a41d-ce7735efbff7))
(pad "3" smd rect (at -0.7 1.75) (size 1 1.5) (layers "F.Cu" "F.Paste" "F.Mask")
(net 59 "unconnected-(D1-Pad3)") (pintype "passive") (tstamp 42a9070a-cc68-4617-a4e7-f9a7b6208d3f))
(pad "4" smd rect (at 0.7 1.75) (size 1 1.5) (layers "F.Cu" "F.Paste" "F.Mask")
(net 60 "unconnected-(D1-Pad4)") (pintype "passive") (tstamp ff3039b4-ed9b-4ae1-9ede-fd1c0d4d2dde))
(model "${BOXLIB}/3D Models/LTST-C155GEKT.STEP"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz -90 0 0))
)
)
(footprint "BoxLib:Jumper-Solder-Chevron-3mm-NC" (layer "F.Cu")
(tedit 61CCB25F) (tstamp 0fcb0e90-29a9-4d57-9332-cb3248cdb412)
(at 65.1 82.4)
(property "Sheetfile" "BoxLib.kicad_sch")
(property "Sheetname" "")
(property "exclude_from_bom" "")
(path "/0d57afe7-8aca-41cd-aaf0-c88579e0cad1")
(attr smd exclude_from_bom)
(fp_text reference "J7" (at 0 -2.5 unlocked) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 07105530-b526-4b11-a93c-f6c0a46ede2a)
)
(fp_text value "Solder-Jumper-NC" (at 0 4 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b1fe75b4-9a54-4542-82c2-470596f16bdd)
)
(fp_text user "${REFERENCE}" (at 0 2.5 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8733bd24-27f3-4cef-b548-4063e3969cda)
)
(fp_line (start 1 0) (end -0.5 0) (layer "F.Cu") (width 1) (tstamp 965f8281-56e2-48e7-a716-dc746649ffef))
(fp_poly (pts
(xy 1.5 1.5)
(xy -0.5 1.5)
(xy 1 0)
(xy -0.5 -1.5)
(xy 1.5 -1.5)
) (layer "F.Cu") (width 0.2) (fill solid) (tstamp 5d02a0e8-5a6f-46e4-ade7-79297de98118))
(fp_poly (pts
(xy -1.5 1.5)
(xy 0 0)
(xy -1.5 -1.5)
) (layer "F.Cu") (width 0.2) (fill solid) (tstamp c6edd401-da24-460e-abea-2e5dcbdbd844))
(fp_line (start 0.75 0) (end -0.75 0) (layer "F.Mask") (width 1.1) (tstamp b91e708b-cd38-4512-a35b-c484b9f1dc8a))
(fp_poly (pts
(xy -1.5 1.5)
(xy 0 0)
(xy -1.5 -1.5)
) (layer "F.Mask") (width 0.2) (fill solid) (tstamp d38ce23b-951d-4aec-887f-e4a37b324e0b))
(fp_poly (pts
(xy 1.5 1.5)
(xy -0.5 1.5)
(xy 1 0)
(xy -0.5 -1.5)
(xy 1.5 -1.5)
) (layer "F.Mask") (width 0.2) (fill solid) (tstamp f87701cb-a129-46c9-8c71-76e1d777dee9))
(pad "1" smd rect (at -1.25 0) (size 0.5 1) (layers "F.Cu" "F.Mask")
(net 16 "unconnected-(J7-Pad1)") (pintype "passive+no_connect") (tstamp b2e675c6-f5de-4e45-9d50-93b64c4d7043))
(pad "2" smd rect (at 1.25 0) (size 0.5 1) (layers "F.Cu" "F.Mask")
(net 17 "unconnected-(J7-Pad2)") (pintype "passive+no_connect") (tstamp ba6161b1-4387-4af3-a3af-76ecd1d1384a))
)
(footprint "BoxLib:Adafruit-QT_Py-PTH" (layer "F.Cu")
(tedit 0) (tstamp 1196cc58-dad3-4476-9b10-16848c871afb)
(at 131 41)
(property "3v Pin" "3v")
(property "5v Pin" "5v")
(property "A0 Pin" "A0")
(property "A1 Pin" "A1")
(property "A2 Pin" "A2")
(property "A3 Pin" "A3")
(property "GND Pin" "GND")
(property "MISO Pin" "MISO")
(property "MOSI Pin" "MOSI")
(property "MPN" "4600")
(property "Manufacturer" "Adafruit")
(property "RX Pin" "RX")
(property "SCK Pin" "SCK")
(property "SCL Pin" "SCL")
(property "SDA Pin" "SDA")
(property "Sheetfile" "BoxLib.kicad_sch")
(property "Sheetname" "")
(property "TX Pin" "TX")
(path "/6de99912-7afe-4fd9-8cfb-4bf27c16ae93")
(attr through_hole)
(fp_text reference "U2" (at 5.08 11.811 unlocked) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a9f75bfc-cfd4-40b5-8df8-c76a58b298a4)
)
(fp_text value "QT_Py" (at 0 -6.096 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0b3461e1-8243-4408-a3e8-c7b4f7d8a84f)
)
(fp_text user "${MOSI Pin}" (at 9.398 0 unlocked) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify right mirror))
(tstamp 2d2b5ec1-0197-4cda-8b98-ec9a2550d2d9)
)
(fp_text user "${GND Pin}" (at 9.398 -5.08 unlocked) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify right mirror))
(tstamp 5d68d796-b409-4db5-a83d-165c3859f49f)
)
(fp_text user "${TX Pin}" (at -9.652 7.62 unlocked) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify left mirror))
(tstamp 663ce3b2-b42a-4f0d-8b63-8b0f7e6e371f)
)
(fp_text user "${SDA Pin}" (at -9.652 2.54 unlocked) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify left mirror))
(tstamp 787dac36-f008-49f9-98e8-aa30bc3f555b)
)
(fp_text user "${3v Pin}" (at 9.398 -2.54 unlocked) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify right mirror))
(tstamp 93c47df4-3ac7-4c26-bfc5-df888bc8d903)
)
(fp_text user "${SCK Pin}" (at 9.398 5.08 unlocked) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify right mirror))
(tstamp 9daf64fc-bb48-45a5-a00a-9c16eb0fdcba)
)
(fp_text user "${A3 Pin}" (at -9.652 0 unlocked) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify left mirror))
(tstamp b5eee22b-c30d-4581-b32f-93ab5288850a)
)
(fp_text user "${SCL Pin}" (at -9.652 5.08 unlocked) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify left mirror))
(tstamp c693330e-1f7e-42b7-9aa7-20180409fe5b)
)
(fp_text user "${RX Pin}" (at 9.398 7.62 unlocked) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify right mirror))
(tstamp d00bad81-ca35-47b8-9c95-63e0e31e860f)
)
(fp_text user "${5v Pin}" (at 9.398 -7.62 unlocked) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify right mirror))
(tstamp d6573b7b-d36d-45c6-9683-92b9566287a1)
)
(fp_text user "${A1 Pin}" (at -9.652 -5.08 unlocked) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify left mirror))
(tstamp d93a9795-d14e-40f3-89d1-1ddce239a16f)
)
(fp_text user "${A0 Pin}" (at -9.652 -7.62 unlocked) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify left mirror))
(tstamp e829d229-d721-4276-9528-b375c17fd54e)
)
(fp_text user "${A2 Pin}" (at -9.652 -2.54 unlocked) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify left mirror))
(tstamp eafc0f6d-13ea-479e-b56f-fd682a40798a)
)
(fp_text user "${MISO Pin}" (at 9.398 2.54 unlocked) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify right mirror))
(tstamp f8f13031-c4de-4e61-a9ff-3ebb3d109358)
)
(fp_text user "${A2 Pin}" (at -9.398 -2.54 unlocked) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify right))
(tstamp 121f6bf8-8a0a-4019-bda3-26d4c4dd4c4b)
)
(fp_text user "${SCL Pin}" (at -9.398 5.08 unlocked) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify right))
(tstamp 245e2d2c-1ef8-4697-a385-6ad5f05a99ae)
)
(fp_text user "${SCK Pin}" (at 9.398 5.08 unlocked) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify left))
(tstamp 41e33040-6da1-42af-a4f1-9a4b42038c18)
)
(fp_text user "${RX Pin}" (at 9.398 7.62 unlocked) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify left))
(tstamp 4b3d1b80-5285-4287-a070-c160156da805)
)
(fp_text user "${5v Pin}" (at 9.398 -7.62 unlocked) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify left))
(tstamp 5a34a473-4336-405d-b1b1-06ba0e85e54e)
)
(fp_text user "${GND Pin}" (at 9.398 -5.08 unlocked) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify left))
(tstamp 6816f90c-012b-4c3a-a594-72072617639a)
)
(fp_text user "${A1 Pin}" (at -9.398 -5.08 unlocked) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify right))
(tstamp 6f012ed3-15c4-489a-b433-26c0f45da341)
)
(fp_text user "${A3 Pin}" (at -9.398 0 unlocked) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify right))
(tstamp 7aa52e24-5e5c-4816-a0cc-08f188d396cd)
)
(fp_text user "${MISO Pin}" (at 9.398 2.54 unlocked) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify left))
(tstamp 7c56c4c7-4f3d-4571-8a43-73a29b17ea90)
)
(fp_text user "${TX Pin}" (at -9.398 7.62 unlocked) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify right))
(tstamp 9fcb0c16-27db-4f5b-b513-410fac595e8f)
)
(fp_text user "${SDA Pin}" (at -9.398 2.54 unlocked) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify right))
(tstamp c0012eee-5d02-4b6b-a9da-0d1633e06572)
)
(fp_text user "${A0 Pin}" (at -9.398 -7.62 unlocked) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify right))
(tstamp d0f3c1d6-5ad2-474c-96b6-990bf2c8dffa)
)
(fp_text user "${MOSI Pin}" (at 9.398 0 unlocked) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify left))
(tstamp e12ba0ec-908a-4fe0-b4fc-b74aab2e6c18)
)
(fp_text user "${3v Pin}" (at 9.398 -2.54 unlocked) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify left))
(tstamp fd5f97fc-5b64-438c-a5a2-da20ab2f7deb)
)
(fp_text user "${REFERENCE}" (at 0 6.35 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ae83284f-7ae7-48cb-80b6-3e27691cb0cd)
)
(fp_line (start -2.54 -11.43) (end -4.445 -11.43) (layer "F.SilkS") (width 0.12) (tstamp 0c3779a2-dcc5-40c5-b209-9b3f5468238d))
(fp_line (start -4.445 -10.414) (end -6.406344 -10.414) (layer "F.SilkS") (width 0.12) (tstamp 10110213-81a0-4741-8bf8-e33ba8803ce9))
(fp_line (start 9.144 7.62) (end 9.144 -7.62) (layer "F.SilkS") (width 0.12) (tstamp 4c6d1c4f-815d-4b64-9b7b-5a23cd49842e))
(fp_line (start -9.144 -7.62) (end -9.144 7.62) (layer "F.SilkS") (width 0.12) (tstamp 6ac831f7-a8a5-4f8d-9d93-cdefde828ff2))
(fp_line (start -4.445 -11.43) (end -4.445 -10.414) (layer "F.SilkS") (width 0.12) (tstamp 8ca19f8f-43d8-466c-99e4-36a569cf5bc2))
(fp_line (start 6.152344 10.414) (end -6.35 10.414) (layer "F.SilkS") (width 0.12) (tstamp a86ec654-9bc4-4d03-9047-903b5a3c9d93))
(fp_line (start 4.445 -10.414) (end 6.35 -10.414) (layer "F.SilkS") (width 0.12) (tstamp e0825d72-c70e-4716-b694-e40a8f3b2d4b))
(fp_line (start 4.445 -11.43) (end 4.445 -10.414) (layer "F.SilkS") (width 0.12) (tstamp e51dd2e3-d2c4-4a23-8341-c2d2163c99ee))
(fp_line (start 4.445 -11.43) (end -2.54 -11.43) (layer "F.SilkS") (width 0.12) (tstamp ff467c05-a92d-4125-a9ee-7cbe9868af7f))
(fp_arc (start -9.144 -7.62) (mid -8.362181 -9.592171) (end -6.406344 -10.414) (layer "F.SilkS") (width 0.12) (tstamp 0a697204-577e-42a0-9c69-85abb7d13d66))
(fp_arc (start -6.35 10.414) (mid -8.325658 9.595658) (end -9.144 7.62) (layer "F.SilkS") (width 0.12) (tstamp 4696206a-125c-4c96-9a22-75469d7780cc))
(fp_arc (start 6.35 -10.414) (mid 8.325656 -9.595656) (end 9.144 -7.62) (layer "F.SilkS") (width 0.12) (tstamp 756fa9bd-5982-4281-b26c-1971b44e1dc1))
(fp_arc (start 9.144 7.62) (mid 8.199075 9.606876) (end 6.152344 10.414) (layer "F.SilkS") (width 0.12) (tstamp 8dcc30f4-281a-4f01-af59-10ed542e427a))
(fp_line (start 4.445 -10.414) (end -4.445 -10.414) (layer "Cmts.User") (width 0.12) (tstamp 463c4f7b-70c9-4197-a7b5-c4ca49c67c3c))
(fp_line (start 5.08 -12.7) (end -5.08 -12.7) (layer "F.CrtYd") (width 0.05) (tstamp 17f40011-a472-4f70-92d4-23b07f54ed04))
(fp_line (start -5.08 -12.7) (end -5.08 -11.43) (layer "F.CrtYd") (width 0.05) (tstamp 24dd0a67-d84d-47ba-9934-c91d049aad9c))
(fp_line (start 5.08 -11.43) (end 5.08 -12.7) (layer "F.CrtYd") (width 0.05) (tstamp 32601fda-1f2e-4d56-a570-1aaa3faafe66))
(fp_line (start 10.16 -11.43) (end 5.08 -11.43) (layer "F.CrtYd") (width 0.05) (tstamp 54b3158b-5255-4d5b-af83-b89f3f8035bb))
(fp_line (start -5.08 -11.43) (end -10.16 -11.43) (layer "F.CrtYd") (width 0.05) (tstamp a90b2ffa-9d02-4a32-a9aa-5afd0dfe62e4))
(fp_line (start -10.16 11.43) (end 10.16 11.43) (layer "F.CrtYd") (width 0.05) (tstamp aace29ad-69f6-43e2-a652-a7bf24368ee9))
(fp_line (start 10.16 11.43) (end 10.16 -11.43) (layer "F.CrtYd") (width 0.05) (tstamp ae738feb-e212-4703-a95a-1071a73b51cf))
(fp_line (start -10.16 -11.43) (end -10.16 11.43) (layer "F.CrtYd") (width 0.05) (tstamp de0dc370-0af4-493f-b2f0-f2256c225b47))
(pad "3V" thru_hole circle (at 7.62 -2.54) (size 1.778 1.778) (drill 1.016) (layers *.Cu *.Mask) (tstamp d850bf61-00cc-47d7-a831-44310588d00f))
(pad "5V" thru_hole circle (at 7.62 -7.62) (size 1.778 1.778) (drill 1.016) (layers *.Cu *.Mask) (tstamp 6734928d-2306-4e6b-9ad4-e1e43c9d3aa3))
(pad "A0" thru_hole circle (at -7.62 -7.62) (size 1.778 1.778) (drill 1.016) (layers *.Cu *.Mask)
(net 47 "unconnected-(U2-PadA0)") (pinfunction "A0/D0") (pintype "bidirectional") (tstamp 706d5b5d-54d1-4269-9ccc-cbc4d1b6d1b1))
(pad "A1" thru_hole circle (at -7.62 -5.08) (size 1.778 1.778) (drill 1.016) (layers *.Cu *.Mask)
(net 48 "unconnected-(U2-PadA1)") (pinfunction "A1/D1") (pintype "bidirectional") (tstamp 3e32c740-2716-4147-bd9f-9660d5d5804c))
(pad "A2" thru_hole circle (at -7.62 -2.54) (size 1.778 1.778) (drill 1.016) (layers *.Cu *.Mask)
(net 49 "unconnected-(U2-PadA2)") (pinfunction "A2/D2") (pintype "bidirectional") (tstamp 3488d403-86ec-4077-b5b8-2898cd635934))
(pad "A3" thru_hole circle (at -7.62 0) (size 1.778 1.778) (drill 1.016) (layers *.Cu *.Mask)
(net 50 "unconnected-(U2-PadA3)") (pinfunction "A3/D3") (pintype "bidirectional") (tstamp 54e97ec1-657d-4463-97f7-a8ef82e3139f))
(pad "GND" thru_hole circle (at 7.62 -5.08) (size 1.778 1.778) (drill 1.016) (layers *.Cu *.Mask)
(net 51 "unconnected-(U2-PadGND)") (pinfunction "GND") (pintype "power_in") (tstamp c2e13002-27a6-45b0-9b8f-b1afddb6521f))
(pad "MI" thru_hole circle (at 7.62 2.54) (size 1.778 1.778) (drill 1.016) (layers *.Cu *.Mask) (tstamp c0923b4e-5a86-4c34-a817-05474aa5addf))
(pad "MO" thru_hole circle (at 7.62 0) (size 1.778 1.778) (drill 1.016) (layers *.Cu *.Mask) (tstamp a9608310-95ec-47b0-9c10-320c77c07de0))
(pad "RX" thru_hole circle (at 7.62 7.62) (size 1.778 1.778) (drill 1.016) (layers *.Cu *.Mask)
(net 52 "unconnected-(U2-PadRX)") (pinfunction "RX/A7/D7") (pintype "bidirectional") (tstamp 5dae07de-3407-4fde-bf8a-f29036b049ca))
(pad "SCK" thru_hole circle (at 7.62 5.08) (size 1.778 1.778) (drill 1.016) (layers *.Cu *.Mask)
(net 53 "unconnected-(U2-PadSCK)") (pinfunction "SCK/A8/D8") (pintype "bidirectional") (tstamp 17e54ef0-7377-452a-8a9f-5acd7f5a285c))
(pad "SCL" thru_hole circle (at -7.62 5.08) (size 1.778 1.778) (drill 1.016) (layers *.Cu *.Mask)
(net 54 "unconnected-(U2-PadSCL)") (pinfunction "SCL/D5") (pintype "bidirectional") (tstamp 6b634e44-93cd-4866-9513-43de4f30ae14))
(pad "SDA" thru_hole circle (at -7.62 2.54) (size 1.778 1.778) (drill 1.016) (layers *.Cu *.Mask)
(net 55 "unconnected-(U2-PadSDA)") (pinfunction "SDA/D4") (pintype "bidirectional") (tstamp 4ff60c5d-e7d0-40db-ad2b-bc80a65b7773))
(pad "TX" thru_hole circle (at -7.62 7.62) (size 1.778 1.778) (drill 1.016) (layers *.Cu *.Mask)
(net 56 "unconnected-(U2-PadTX)") (pinfunction "TX/A6/D6") (pintype "bidirectional") (tstamp 6ae3b8fc-cd9d-40ca-81cb-b4bd805d25f6))
(model "${KIPRJMOD}/3D Models/qtpy.step"
(offset (xyz -8.89 -10.3632 1.905))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
(model "${KIPRJMOD}/3D Models/TSW-107-07-G-S.stp"
(offset (xyz 7.62 0 2.54))
(scale (xyz 1 1 1))
(rotate (xyz 90 0 90))
)
(model "${KIPRJMOD}/3D Models/TSW-107-07-G-S.stp"
(offset (xyz -7.62 0 2.54))
(scale (xyz 1 1 1))
(rotate (xyz 90 0 90))
)
)
(footprint "BoxLib:Adafruit-1_14-tft-display-4383" (layer "F.Cu")
(tedit 0) (tstamp 1b907e26-f1dd-4ad8-9e7f-dfd453bdef86)
(at 101 44)
(property "MPN" "4383")
(property "Manufacturer" "Adafruit")
(property "Sheetfile" "BoxLib.kicad_sch")
(property "Sheetname" "")
(path "/98ca5169-231d-4f6e-bb1a-cdb364a5a08d")
(attr through_hole)
(fp_text reference "DS1" (at -17.145 0 90 unlocked) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8e0a3efe-82b0-4b04-846f-5a4718a05b89)
)
(fp_text value "Adafruit-4383" (at 0 -8.89 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 86f9ba58-ebd1-4cc1-95f9-8dc6e42afee2)
)
(fp_text user "Adafruit 4383 1.14\" TFT Display" (at -1 -1 unlocked) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1e98888a-427d-4a31-a7dd-97b8504ac365)
)
(fp_text user "${REFERENCE}" (at 0 3.81 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e53529ed-7545-4aa1-9d58-e3fa302d263b)
)
(fp_line (start 15.875 10.795) (end 15.875 -12.7) (layer "F.SilkS") (width 0.12) (tstamp 05ff5b64-6baa-404d-a50c-13555bd45ac1))
(fp_line (start 10.795 -12.7) (end 10.795 -10.16) (layer "F.SilkS") (width 0.12) (tstamp 1a301c58-27a3-443c-9326-81adde1ab55f))
(fp_line (start -13.97 12.7) (end 13.97 12.7) (layer "F.SilkS") (width 0.12) (tstamp 5473c8b9-07c1-41d1-979e-095c6839fdc6))
(fp_line (start -15.875 -12.7) (end -15.875 10.795) (layer "F.SilkS") (width 0.12) (tstamp 55f0053a-e691-4659-9d36-d1280cd57ab9))
(fp_line (start -10.795 -10.16) (end 10.795 -10.16) (layer "F.SilkS") (width 0.12) (tstamp 696abf62-526e-4da0-adff-ae966b75407c))
(fp_line (start -10.795 -12.7) (end -10.795 -10.16) (layer "F.SilkS") (width 0.12) (tstamp 832f3ea8-e66a-477c-8ec4-e5d2614b69ce))
(fp_arc (start -15.875 -12.7) (mid -13.335 -15.24) (end -10.795 -12.7) (layer "F.SilkS") (width 0.12) (tstamp 2b4ee4d2-4dde-4390-bc92-abc1cfba3179))
(fp_arc (start 15.875 10.795) (mid 15.317038 12.142038) (end 13.97 12.7) (layer "F.SilkS") (width 0.12) (tstamp 43d175d6-5942-4edd-8c0d-7424d248fee4))
(fp_arc (start -13.97 12.7) (mid -15.317038 12.142038) (end -15.875 10.795) (layer "F.SilkS") (width 0.12) (tstamp 67ed5276-34fd-4873-b154-337802140fc5))
(fp_arc (start 10.795 -12.7) (mid 13.335 -15.24) (end 15.875 -12.7) (layer "F.SilkS") (width 0.12) (tstamp e3568f98-a399-4ea3-abc0-9ea4ec51b3b4))
(fp_circle (center 13.335 -12.7) (end 14.605 -12.7) (layer "F.SilkS") (width 0.12) (fill none) (tstamp 4cf06503-c526-4c11-9013-8c021b84d0bd))
(fp_circle (center -13.335 -12.7) (end -12.065 -12.065) (layer "F.SilkS") (width 0.12) (fill none) (tstamp b972148a-d6f6-416a-b839-848905ff1e10))
(pad "3v" thru_hole circle (at -10.16 10.63625) (size 2 2) (drill 1) (layers *.Cu *.Mask)
(net 36 "unconnected-(DS1-Pad3v)") (pinfunction "3v") (pintype "bidirectional") (tstamp 31d6e1e6-2703-483a-8520-fc3fbf5fe0a8))
(pad "DC" thru_hole circle (at 7.62 10.63625) (size 2 2) (drill 1) (layers *.Cu *.Mask)
(net 37 "unconnected-(DS1-PadDC)") (pinfunction "DC") (pintype "bidirectional") (tstamp 5f10ec49-3ea3-4e75-87b5-0ff9a256c6c5))
(pad "GND" thru_hole circle (at -7.62 10.63625) (size 2 2) (drill 1) (layers *.Cu *.Mask)
(net 38 "unconnected-(DS1-PadGND)") (pinfunction "GND") (pintype "power_in") (tstamp a4c425eb-bed1-45ee-b82e-843c4bdddef2))
(pad "LIT" thru_hole circle (at 12.7 10.63625) (size 2 2) (drill 1) (layers *.Cu *.Mask)
(net 39 "unconnected-(DS1-PadLIT)") (pinfunction "LIT") (pintype "input") (tstamp d7c33908-352d-4507-9bec-09f44cf23826))
(pad "MISO" thru_hole circle (at -2.54 10.63625) (size 2 2) (drill 1) (layers *.Cu *.Mask)
(net 40 "unconnected-(DS1-PadMISO)") (pinfunction "MISO") (pintype "bidirectional") (tstamp 22c7d7fe-427f-4c15-a772-5a65bb9219eb))
(pad "MOSI" thru_hole circle (at 0 10.63625) (size 2 2) (drill 1) (layers *.Cu *.Mask)
(net 41 "unconnected-(DS1-PadMOSI)") (pinfunction "MOSI") (pintype "bidirectional") (tstamp a8ac4b36-0fad-4822-8552-979e56841d39))
(pad "RST" thru_hole circle (at 5.08 10.63625) (size 2 2) (drill 1) (layers *.Cu *.Mask)
(net 42 "unconnected-(DS1-PadRST)") (pinfunction "RST") (pintype "input") (tstamp f1a2e47e-4e67-4c4f-b8a5-f27296fdda48))
(pad "SCK" thru_hole circle (at -5.08 10.63625) (size 2 2) (drill 1) (layers *.Cu *.Mask)
(net 43 "unconnected-(DS1-PadSCK)") (pinfunction "SCK") (pintype "bidirectional") (tstamp 94fd86b4-ddf3-476d-9742-b02c88bdbfc2))
(pad "SDCD" thru_hole circle (at 10.16 10.63625) (size 2 2) (drill 1) (layers *.Cu *.Mask) (tstamp c878dbf6-8f5e-4497-87c4-f84188e7e15c))
(pad "TFTCS" thru_hole circle (at 2.54 10.63625) (size 2 2) (drill 1) (layers *.Cu *.Mask)
(net 44 "unconnected-(DS1-PadTFTCS)") (pinfunction "TFTCS") (pintype "bidirectional") (tstamp 628fcd04-d267-4392-9217-6d9a2a35faa2))
(pad "VIN" thru_hole roundrect (at -12.7 10.63625) (size 2 2) (drill 1) (layers *.Cu *.Mask) (roundrect_rratio 0.25) (tstamp 63a7785c-19eb-48be-95bf-c261cae1030c))
(model "${KIPRJMOD}/3D Models/Adafruit-4383.step"
(offset (xyz 0 1.999996 -4.445))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 180))
)
(model "${KIPRJMOD}/3D Models/TSW-111-07-G-S.stp"
(offset (xyz 0 -10.6172 2.54))
(scale (xyz 1 1 1))
(rotate (xyz 90 0 0))
)
)
(footprint "BoxLib:Jumper-Solder-1mm-NC" (layer "F.Cu")
(tedit 61CCADD3) (tstamp 2d6207be-3936-4b97-9f39-994fe465dc7d)
(at 63.9 69)
(property "Sheetfile" "BoxLib.kicad_sch")
(property "Sheetname" "")
(property "exclude_from_bom" "")
(path "/d94b11a5-2905-43a4-a6c5-32ee2363daca")
(attr smd exclude_from_bom)
(fp_text reference "J5" (at 0 -1.5 unlocked) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4b150154-3ff1-4af3-9ed5-c357ef0df150)
)
(fp_text value "Solder-Jumper-NC" (at 0 4 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4231e4ae-f86f-497a-9e7a-dc62a4efd479)
)
(fp_text user "${REFERENCE}" (at 0 2.5 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp fda72009-d43d-4ab9-9905-10ada3ac125b)
)
(fp_line (start -0.25 0) (end 0.25 0) (layer "F.Cu") (width 0.5) (tstamp 25b8e5b0-73fe-4fe1-bc59-2f85d72eff14))
(fp_poly (pts
(arc (start -0.25 -0.5) (mid -0.75 0) (end -0.25 0.5))
) (layer "F.Cu") (width 0.2) (fill solid) (tstamp d7ea459a-dc44-44d8-bb2b-fa117592f2ce))
(fp_poly (pts
(arc (start 0.25 0.5) (mid 0.75 0) (end 0.25 -0.5))
) (layer "F.Cu") (width 0.2) (fill solid) (tstamp d7fcdbcd-853d-4042-811d-06ca81bfa47e))
(fp_line (start -0.25 0) (end 0.25 0) (layer "F.Mask") (width 0.7) (tstamp c684506b-2179-4a4a-a1aa-6cd857704320))
(fp_poly (pts
(arc (start 0.25 0.5) (mid 0.75 0) (end 0.25 -0.5))
) (layer "F.Mask") (width 0.2) (fill solid) (tstamp 3d240360-a628-4214-9bab-3980838951b8))
(fp_poly (pts
(arc (start -0.25 -0.5) (mid -0.75 0) (end -0.25 0.5))
) (layer "F.Mask") (width 0.2) (fill solid) (tstamp 6b688e1c-5311-4333-abf3-f5b49305919e))
(pad "1" smd custom (at -0.5 0) (size 0.3 0.3) (layers "F.Cu" "F.Mask")
(net 12 "unconnected-(J5-Pad1)") (pintype "passive+no_connect")
(options (clearance outline) (anchor circle))
(primitives
) (tstamp f2cfc856-a631-466a-87f4-bf1122381f19))
(pad "2" smd custom (at 0.5 0) (size 0.3 0.3) (layers "F.Cu" "F.Mask")
(net 13 "unconnected-(J5-Pad2)") (pintype "passive+no_connect")
(options (clearance outline) (anchor circle))
(primitives
) (tstamp 31ac42b2-8467-4761-aa7f-a419a7041201))
)
(footprint "BoxLib:Fuse-Current-Littelfuse-Nano2_154" (layer "F.Cu")
(tedit 6201890C) (tstamp 2e2c4431-7ad4-4101-b72a-e48147e24a71)
(at 103 82)
(property "Current" "500mA Slow")
(property "MPN" "0154.500DRT")
(property "Manufacturer" "Littelfuse")
(property "Octopart" "")
(property "Replace With" "454.5")
(property "Sheetfile" "BoxLib.kicad_sch")
(property "Sheetname" "")
(path "/f4e92608-53ba-49a5-880c-443776c87820")
(attr smd)
(fp_text reference "F1" (at 0 -4.318 unlocked) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f46f4b86-daf6-4869-98cb-928039f00f5f)
)
(fp_text value "Littelfuse_154_0.5A_Slow" (at 0 6.858 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b7e9cf10-b74e-4e80-a7f1-e33a29fe56de)
)
(fp_text user "${Current}" (at 0 5.08 unlocked) (layer "F.SilkS")
(effects (font (size 1.5 1.5) (thickness 0.3)))
(tstamp 8a56a0e1-0b83-4459-b285-5106d6ccafbb)
)
(fp_text user "${REFERENCE}" (at 0 0 90 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6d4e5957-6764-40d7-9d3e-e16ba095c79a)
)
(fp_line (start -6.35 -3.175) (end -6.35 3.175) (layer "F.SilkS") (width 0.12) (tstamp 051d4750-b73a-474f-abf5-a58dadb01c92))
(fp_line (start -6.35 3.175) (end 6.35 3.175) (layer "F.SilkS") (width 0.12) (tstamp 7e9c7b14-3332-49ee-a587-5014a80db3f9))
(fp_line (start -6.35 -3.175) (end 6.35 -3.175) (layer "F.SilkS") (width 0.12) (tstamp ad9624f8-cf25-4b9a-95b1-2c64fccd57f6))
(fp_line (start 6.35 -3.175) (end 6.35 3.175) (layer "F.SilkS") (width 0.12) (tstamp f03f8712-a7f0-45ba-8dbf-7ce6f298ed42))
(fp_line (start -2.54 -10.16) (end -2.54 -10.16) (layer "F.CrtYd") (width 0.05) (tstamp 70b621b6-45b5-43cb-9683-d589118723d7))
(fp_line (start 6.604 -3.556) (end -6.604 -3.556) (layer "F.CrtYd") (width 0.05) (tstamp 73e2a101-0bc0-414b-9aa7-7eeb8a3caef1))
(fp_line (start -6.604 -3.556) (end -6.604 3.556) (layer "F.CrtYd") (width 0.05) (tstamp 74a9c3ca-08aa-4a6a-9a4f-5ecc24362076))
(fp_line (start -6.604 3.556) (end 6.604 3.556) (layer "F.CrtYd") (width 0.05) (tstamp 7f2c9904-545b-4337-acd6-8707e0924818))
(fp_line (start 6.604 3.556) (end 6.604 -3.556) (layer "F.CrtYd") (width 0.05) (tstamp e382fedc-c868-44fd-9740-47cc05b15c1c))
(pad "1" smd roundrect (at -3.1877 0) (size 4.2418 3.81) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 22 "unconnected-(F1-Pad1)") (pinfunction "In") (pintype "bidirectional") (tstamp 8cb63406-42c5-417f-9384-cf8cdba62340))
(pad "2" smd roundrect (at 3.1877 0) (size 4.2418 3.81) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 23 "unconnected-(F1-Pad2)") (pinfunction "Out") (pintype "bidirectional") (tstamp 5600b446-cc57-4d99-a6dd-3cb2f076483c))
(model "${KIPRJMOD}/3D Models/Littelfuse_0154.500DRT.step"
(offset (xyz -10.7188 -2.413 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "BoxLib:Connector-SMD-2Pos-Wago-2060-452_998-404" (layer "F.Cu")
(tedit 0) (tstamp 43ed5ea0-71a7-4155-84cc-3a5086969a98)
(at 153 41)
(property "Pin1" "Pin 1")
(property "Pin2" "Pin 2")
(property "Sheetfile" "BoxLib.kicad_sch")
(property "Sheetname" "")
(path "/b96dd37f-05c4-499e-81a9-5c68a476b74c")
(attr smd)
(fp_text reference "J11" (at -5 0 90 unlocked) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f9bebe2d-7447-4b79-8142-f25250089e3b)
)
(fp_text value "Generic_2Pos_terminal_block" (at 0 -10.75 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ee5891b4-14ab-4cbb-8502-7fbf1dda94d5)
)
(fp_text user "${Pin2}" (at 2 7.5 270 unlocked) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify left))
(tstamp ba8f1937-b601-4e9e-9635-c92c7c596936)
)
(fp_text user "${Pin1}" (at -2 7.5 270 unlocked) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify left))
(tstamp db30ce90-6c6d-4a7b-854a-ba0fa4ebef29)
)
(fp_text user "${REFERENCE}" (at 0 0 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8277fc2c-5144-4ec5-95e3-22f995c3ba05)
)
(fp_rect (start -4.25 -9.5) (end 4.25 7.5) (layer "F.CrtYd") (width 0.12) (fill none) (tstamp fc3598df-b287-47b2-9bad-36172103698e))
(pad "1" smd rect (at -2 5.25) (size 2 3.5) (layers "F.Cu" "F.Paste" "F.Mask")
(net 45 "unconnected-(J11-Pad1)") (pintype "input") (tstamp 0ad3ac4b-bcb3-470a-8900-0610010026c3))
(pad "1" smd rect (at -2 -4) (size 2 6) (layers "F.Cu" "F.Paste" "F.Mask")
(net 45 "unconnected-(J11-Pad1)") (pintype "input") (tstamp 120b3f19-c700-476b-9946-4dba77474509))
(pad "2" smd rect (at 2 -4) (size 2 6) (layers "F.Cu" "F.Paste" "F.Mask")
(net 46 "unconnected-(J11-Pad2)") (pintype "input") (tstamp 02f07168-92d1-445e-b860-26a99f42412f))
(pad "2" smd rect (at 2 5.25) (size 2 3.5) (layers "F.Cu" "F.Paste" "F.Mask")
(net 46 "unconnected-(J11-Pad2)") (pintype "input") (tstamp d66462a6-a79a-42eb-b9a3-aaaeb8251857))
(model "${KIPRJMOD}/3D Models/Wago 2060-452_998-404.stp"
(offset (xyz -4 6.5 0.25))
(scale (xyz 1 1 1))
(rotate (xyz -90 0 -90))
)
)
(footprint "BoxLib:Adafruit-QT_Py_RP2040-PTH" (layer "F.Cu")
(tedit 0) (tstamp 57a572ae-a8f5-4f21-915a-d274f8126638)
(at 129 78)
(property "3v Pin" "3v")
(property "5v Pin" "5v")
(property "A0 Pin" "A0")
(property "A1 Pin" "A1")
(property "A2 Pin" "A2")
(property "A3 Pin" "A3")
(property "GND Pin" "GND")
(property "MISO Pin" "MISO")
(property "MOSI Pin" "MOSI")
(property "MPN" "4900")
(property "Manufacturer" "Adafruit")
(property "RX Pin" "RX")
(property "SCK Pin" "SCK")
(property "SCL Pin" "SCL")
(property "SDA Pin" "SDA")
(property "Sheetfile" "BoxLib.kicad_sch")
(property "Sheetname" "")
(property "TX Pin" "TX")
(path "/feb25c34-5b2e-4610-8c3a-964823b2348a")
(attr through_hole)
(fp_text reference "U1" (at 5.08 11.811 unlocked) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 734b067c-57d9-453e-bb6e-d3394dd6ba24)
)
(fp_text value "QT_Py_RP2040" (at 0 -6.096 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 154b32dd-165b-43e8-881d-01a88b54b7a1)
)
(fp_text user "${SCK Pin}" (at 9.398 5.08 unlocked) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify right mirror))
(tstamp 0fa44d5a-6414-4cce-9259-fbdd18614ede)
)
(fp_text user "${TX Pin}" (at -9.652 7.62 unlocked) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify left mirror))
(tstamp 17e3d67e-355e-402d-aca0-7bf7ad67be2d)
)
(fp_text user "${5v Pin}" (at 9.398 -7.62 unlocked) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify right mirror))
(tstamp 2ae379cd-06f4-49c7-81d4-dc55f5df805e)
)
(fp_text user "${RX Pin}" (at 9.398 7.62 unlocked) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify right mirror))
(tstamp 3385f012-6997-43a0-832f-cd2dee0cd742)
)
(fp_text user "${3v Pin}" (at 9.398 -2.54 unlocked) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify right mirror))
(tstamp 34910e16-ad52-4ba6-9ca9-c2cf12b20e15)
)
(fp_text user "${MISO Pin}" (at 9.398 2.54 unlocked) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify right mirror))
(tstamp 60fabe2e-c18d-4d49-8460-7dcfca564713)
)
(fp_text user "${A3 Pin}" (at -9.652 0 unlocked) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify left mirror))
(tstamp 61f11ad5-0147-4378-850e-0b93ecbd4f4c)
)
(fp_text user "${SCL Pin}" (at -9.652 5.08 unlocked) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify left mirror))
(tstamp 8019326c-90b5-4f62-8478-b556c8696724)
)
(fp_text user "${SDA Pin}" (at -9.652 2.54 unlocked) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify left mirror))
(tstamp 90e1ee75-7f67-4781-9a20-d3f84efbf295)
)
(fp_text user "${A2 Pin}" (at -9.652 -2.54 unlocked) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify left mirror))
(tstamp bc5ea09e-512a-4e7b-8e4e-8b27a95f7381)
)
(fp_text user "${GND Pin}" (at 9.398 -5.08 unlocked) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify right mirror))
(tstamp c53823a8-3411-4d08-8df8-bfff88943269)
)
(fp_text user "${A1 Pin}" (at -9.652 -5.08 unlocked) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify left mirror))
(tstamp c94d01f8-112a-4a4a-b3e3-5b8af014214a)
)
(fp_text user "${A0 Pin}" (at -9.652 -7.62 unlocked) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify left mirror))
(tstamp c9eb072a-cc5d-4699-8676-16514f31c8ef)
)
(fp_text user "${MOSI Pin}" (at 9.398 0 unlocked) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify right mirror))
(tstamp f666b543-6c85-4ead-808e-6fb7bc173a4d)
)
(fp_text user "${SCK Pin}" (at 9.398 5.08 unlocked) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify left))
(tstamp 0dbdfffc-ca35-4923-a11b-7158d59736e7)
)
(fp_text user "${TX Pin}" (at -9.398 7.62 unlocked) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify right))
(tstamp 0f572ac9-e036-4cc9-a6b9-e09a03cf39d7)
)
(fp_text user "${A1 Pin}" (at -9.398 -5.08 unlocked) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify right))
(tstamp 10af6c28-d01c-4dba-b1a5-3e68422805ec)
)
(fp_text user "${RX Pin}" (at 9.398 7.62 unlocked) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify left))
(tstamp 1173468e-7393-4d52-be4b-18b3a0c3baa4)
)
(fp_text user "${A2 Pin}" (at -9.398 -2.54 unlocked) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify right))
(tstamp 21188dad-9893-4126-99e5-b3cf6489a18c)
)
(fp_text user "${A0 Pin}" (at -9.398 -7.62 unlocked) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify right))
(tstamp 45b8f1a2-4d57-4c5e-9375-f789d767e56f)
)
(fp_text user "${SCL Pin}" (at -9.398 5.08 unlocked) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify right))
(tstamp 5880080c-14df-4f2e-b1e6-6a00ef6ec03d)
)
(fp_text user "${5v Pin}" (at 9.398 -7.62 unlocked) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify left))
(tstamp 6078d8fb-b9af-452a-9b8b-33029490fcd6)
)
(fp_text user "${GND Pin}" (at 9.398 -5.08 unlocked) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify left))
(tstamp c722d40a-35e7-4703-8ec4-8645c5ad6395)
)
(fp_text user "${MOSI Pin}" (at 9.398 0 unlocked) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify left))
(tstamp c94a0234-ae6f-4793-8dd3-2c6a8dbac3bc)
)
(fp_text user "${SDA Pin}" (at -9.398 2.54 unlocked) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify right))
(tstamp dafef4a2-fa90-4c5d-96fe-f9fadc39e428)
)
(fp_text user "${MISO Pin}" (at 9.398 2.54 unlocked) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify left))
(tstamp deaf5f65-5e7f-4db1-98b0-b4c14ff9ffe1)
)
(fp_text user "${3v Pin}" (at 9.398 -2.54 unlocked) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify left))
(tstamp e4e18d4b-1ce6-4a29-8571-f0d127261f40)
)
(fp_text user "${A3 Pin}" (at -9.398 0 unlocked) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify right))
(tstamp f7ee2a18-db08-4f0e-a441-338946f660af)
)
(fp_text user "${REFERENCE}" (at 0 6.35 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ac570e00-4b5e-4df6-9723-157929d1d46b)
)
(fp_line (start 6.152344 10.414) (end -6.35 10.414) (layer "F.SilkS") (width 0.12) (tstamp 14104a26-f0d1-4bb5-95a4-061659058c78))
(fp_line (start 9.144 7.62) (end 9.144 -7.62) (layer "F.SilkS") (width 0.12) (tstamp 18fb323b-c458-4a94-96ff-2373ca4c6bb0))
(fp_line (start 4.445 -11.43) (end 4.445 -10.414) (layer "F.SilkS") (width 0.12) (tstamp 3584ed87-cd32-43fa-aa55-b11fe8451b01))
(fp_line (start -4.445 -10.414) (end -6.406344 -10.414) (layer "F.SilkS") (width 0.12) (tstamp 5223b2ee-a1a2-4074-9b0b-1f2503a9e7b6))
(fp_line (start 4.445 -10.414) (end 6.35 -10.414) (layer "F.SilkS") (width 0.12) (tstamp 5cece746-e816-46a9-947d-0c591d8774f9))
(fp_line (start 4.445 -11.43) (end -2.54 -11.43) (layer "F.SilkS") (width 0.12) (tstamp b557871e-92ec-46ca-b649-d53f67b48563))
(fp_line (start -4.445 -11.43) (end -4.445 -10.414) (layer "F.SilkS") (width 0.12) (tstamp cdbd67e1-d2a1-482f-900e-8a5e9c59dd63))
(fp_line (start -9.144 -7.62) (end -9.144 7.62) (layer "F.SilkS") (width 0.12) (tstamp d287c5f4-94c8-4292-a208-cebeed9aeab9))
(fp_line (start -2.54 -11.43) (end -4.445 -11.43) (layer "F.SilkS") (width 0.12) (tstamp e1d8592e-5ed2-41df-8aea-1b138b06cd4b))
(fp_arc (start 6.35 -10.414) (mid 8.325656 -9.595656) (end 9.144 -7.62) (layer "F.SilkS") (width 0.12) (tstamp 0beff83c-026f-4e35-964a-90653267f7d5))
(fp_arc (start -9.144 -7.62) (mid -8.362181 -9.592171) (end -6.406344 -10.414) (layer "F.SilkS") (width 0.12) (tstamp 36c741bb-7c7f-4a7f-9645-edb33a58c4a3))
(fp_arc (start -6.35 10.414) (mid -8.325658 9.595658) (end -9.144 7.62) (layer "F.SilkS") (width 0.12) (tstamp 4de21e31-b6a9-44d7-bd2e-93c5845058d7))
(fp_arc (start 9.144 7.62) (mid 8.199075 9.606876) (end 6.152344 10.414) (layer "F.SilkS") (width 0.12) (tstamp 7e505ab0-47fb-4680-be39-f16cd51fd5be))
(fp_line (start 4.445 -10.414) (end -4.445 -10.414) (layer "Cmts.User") (width 0.12) (tstamp 9bbfad08-d021-4bef-bbf0-7a9a641aafb8))
(fp_line (start 10.16 -11.43) (end 5.08 -11.43) (layer "F.CrtYd") (width 0.05) (tstamp 0b94b7b3-2550-4971-968e-6c4232a4bcd7))
(fp_line (start 5.08 -12.7) (end -5.08 -12.7) (layer "F.CrtYd") (width 0.05) (tstamp 4b8a7927-4f28-43c6-a8d8-bb35a32b6332))
(fp_line (start -5.08 -11.43) (end -10.16 -11.43) (layer "F.CrtYd") (width 0.05) (tstamp 57695cb0-9321-4843-825b-532e8021c9de))
(fp_line (start -5.08 -12.7) (end -5.08 -11.43) (layer "F.CrtYd") (width 0.05) (tstamp 7008a3d9-bf21-4134-b1cd-02684e6e9c31))
(fp_line (start -10.16 -11.43) (end -10.16 11.43) (layer "F.CrtYd") (width 0.05) (tstamp 88070ea6-c4a1-4601-b2db-5b3ce3f0f39e))
(fp_line (start 5.08 -11.43) (end 5.08 -12.7) (layer "F.CrtYd") (width 0.05) (tstamp 8f8d41cd-942f-44e5-8323-26ec1bc7d76b))
(fp_line (start -10.16 11.43) (end 10.16 11.43) (layer "F.CrtYd") (width 0.05) (tstamp be2b4027-0875-4b88-9390-fd4651c5ba86))
(fp_line (start 10.16 11.43) (end 10.16 -11.43) (layer "F.CrtYd") (width 0.05) (tstamp e5dd13dc-53a0-40c7-8e8b-f7364ee5bb0d))
(pad "3V" thru_hole circle (at 7.62 -2.54) (size 1.778 1.778) (drill 1.016) (layers *.Cu *.Mask) (tstamp 83be1d97-95bd-4b0b-9275-ae30d59d1fac))
(pad "5V" thru_hole circle (at 7.62 -7.62) (size 1.778 1.778) (drill 1.016) (layers *.Cu *.Mask) (tstamp 1e1b5242-0437-4936-b9f2-8431886ca126))
(pad "A0" thru_hole circle (at -7.62 -7.62) (size 1.778 1.778) (drill 1.016) (layers *.Cu *.Mask)
(net 24 "unconnected-(U1-PadA0)") (pinfunction "A0/D0") (pintype "bidirectional") (tstamp 87172eaa-28ee-4200-be32-ad6321e063a8))
(pad "A1" thru_hole circle (at -7.62 -5.08) (size 1.778 1.778) (drill 1.016) (layers *.Cu *.Mask)
(net 25 "unconnected-(U1-PadA1)") (pinfunction "A1/D1") (pintype "bidirectional") (tstamp 22282861-4950-4644-aeea-fdf9aeb7a037))
(pad "A2" thru_hole circle (at -7.62 -2.54) (size 1.778 1.778) (drill 1.016) (layers *.Cu *.Mask)
(net 26 "unconnected-(U1-PadA2)") (pinfunction "A2/D2") (pintype "bidirectional") (tstamp de11158d-e1cb-416e-aaaf-87ca0d1cdef8))
(pad "A3" thru_hole circle (at -7.62 0) (size 1.778 1.778) (drill 1.016) (layers *.Cu *.Mask)
(net 27 "unconnected-(U1-PadA3)") (pinfunction "A3/D3") (pintype "bidirectional") (tstamp 53fd2f19-0764-45d2-a90b-47dd1d84ca65))
(pad "GND" thru_hole circle (at 7.62 -5.08) (size 1.778 1.778) (drill 1.016) (layers *.Cu *.Mask)
(net 28 "unconnected-(U1-PadGND)") (pinfunction "GND") (pintype "power_in") (tstamp 9c9f744a-6edb-4652-b2fd-8849eff9ca64))
(pad "MI" thru_hole circle (at 7.62 2.54) (size 1.778 1.778) (drill 1.016) (layers *.Cu *.Mask) (tstamp 511de633-774f-443c-921f-b263afeff237))
(pad "MO" thru_hole circle (at 7.62 0) (size 1.778 1.778) (drill 1.016) (layers *.Cu *.Mask) (tstamp 864d1d50-3ac5-433b-aa5b-d94f03780455))
(pad "RX" thru_hole circle (at 7.62 7.62) (size 1.778 1.778) (drill 1.016) (layers *.Cu *.Mask)
(net 29 "unconnected-(U1-PadRX)") (pinfunction "RX/A7/D7") (pintype "bidirectional") (tstamp 6ac1721f-8e16-4e14-bdbf-91f28d8d9d1e))
(pad "SCK" thru_hole circle (at 7.62 5.08) (size 1.778 1.778) (drill 1.016) (layers *.Cu *.Mask)
(net 30 "unconnected-(U1-PadSCK)") (pinfunction "SCK/A8/D8") (pintype "bidirectional") (tstamp 3dc957ba-1481-4b5b-898a-58e589a7fdfd))
(pad "SCL" thru_hole circle (at -7.62 5.08) (size 1.778 1.778) (drill 1.016) (layers *.Cu *.Mask)
(net 31 "unconnected-(U1-PadSCL)") (pinfunction "SCL/D5") (pintype "bidirectional") (tstamp a3b732b3-3abc-4f98-937f-13e67289e341))
(pad "SDA" thru_hole circle (at -7.62 2.54) (size 1.778 1.778) (drill 1.016) (layers *.Cu *.Mask)
(net 32 "unconnected-(U1-PadSDA)") (pinfunction "SDA/D4") (pintype "bidirectional") (tstamp 998b4e56-370e-4b41-a8e4-80814e582181))
(pad "TX" thru_hole circle (at -7.62 7.62) (size 1.778 1.778) (drill 1.016) (layers *.Cu *.Mask)
(net 33 "unconnected-(U1-PadTX)") (pinfunction "TX/A6/D6") (pintype "bidirectional") (tstamp 945ecf06-a8ba-49f9-9a39-f83d76690957))
(model "${KIPRJMOD}/3D Models/qtpy2040.step"
(offset (xyz -8.89 -10.3632 1.905))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
(model "${KIPRJMOD}/3D Models/TSW-107-07-G-S.stp"
(offset (xyz 7.62 0 2.54))
(scale (xyz 1 1 1))
(rotate (xyz 90 0 90))
)
(model "${KIPRJMOD}/3D Models/TSW-107-07-G-S.stp"
(offset (xyz -7.62 0 2.54))
(scale (xyz 1 1 1))
(rotate (xyz 90 0 90))
)
)
(footprint "BoxLib:Jumper-Solder-Chevron-3mm-NO" (layer "F.Cu")
(tedit 61CCB231) (tstamp 5a8b2764-55ed-4fd4-a0e0-c81f12d75000)
(at 59.9 82.3)
(property "Sheetfile" "BoxLib.kicad_sch")
(property "Sheetname" "")
(property "exclude_from_bom" "")
(path "/e75ccdf1-6628-4269-a4a3-7820166e05b3")
(attr smd exclude_from_bom)
(fp_text reference "J4" (at 0 -2.5 unlocked) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 737ccae9-dd25-4f11-b17f-ff9a83cf4ed2)
)
(fp_text value "Solder-Jumper-NO" (at 0 4 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 00e814c5-0352-4ee2-90c6-5aa439bb9040)
)
(fp_text user "${REFERENCE}" (at 0 2.5 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp beed4f09-0267-4dd6-8219-b8a462b362b8)
)
(fp_poly (pts
(xy 1.5 1.5)
(xy -0.5 1.5)
(xy 1 0)
(xy -0.5 -1.5)
(xy 1.5 -1.5)
) (layer "F.Cu") (width 0.2) (fill solid) (tstamp a5c306cc-bf34-44e6-bff6-7b34adda76b1))
(fp_poly (pts
(xy -1.5 1.5)
(xy 0 0)
(xy -1.5 -1.5)
) (layer "F.Cu") (width 0.2) (fill solid) (tstamp f022c12c-8ce1-4cb0-9f5f-a1e5ee7d0ba0))
(fp_poly (pts
(xy -1.5 1.5)
(xy 0 0)
(xy -1.5 -1.5)
) (layer "F.Mask") (width 0.2) (fill solid) (tstamp 0995d2bf-b192-442b-a012-dcfa55ce7131))
(fp_poly (pts
(xy 1.5 1.5)
(xy -0.5 1.5)
(xy 1 0)
(xy -0.5 -1.5)
(xy 1.5 -1.5)
) (layer "F.Mask") (width 0.2) (fill solid) (tstamp 7f829531-20d3-43b1-ac63-71675b351c86))
(pad "1" smd rect (at -1.25 0) (size 0.5 1) (layers "F.Cu" "F.Mask")
(net 10 "unconnected-(J4-Pad1)") (pintype "passive+no_connect") (tstamp 3e83dbb2-0e80-4ec0-9168-cc45a0247358))
(pad "2" smd rect (at 1.25 0) (size 0.5 1) (layers "F.Cu" "F.Mask")
(net 11 "unconnected-(J4-Pad2)") (pintype "passive+no_connect") (tstamp 95b0ae41-000a-48a5-bc13-a3947e07eed4))
)
(footprint "BoxLib:Jumper-Solder-3mm-NO" (layer "F.Cu")
(tedit 61CCABBC) (tstamp 6169dc3e-5a1b-4811-a1fd-62670db91b04)
(at 59.8 76)
(property "Sheetfile" "BoxLib.kicad_sch")
(property "Sheetname" "")
(property "exclude_from_bom" "")
(path "/3dcd46d8-0385-4448-b94d-7bf966d7542b")
(attr smd exclude_from_bom)
(fp_text reference "J3" (at 0 -2.5 unlocked) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9782ed9c-8ec5-44ac-a006-4e8dc5b28c7c)
)
(fp_text value "Solder-Jumper-NO" (at 0 4 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8d825fa2-b68f-4ced-919f-f6cedbec773a)
)
(fp_text user "${REFERENCE}" (at 0 2.5 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 46421797-59bd-460c-a026-8f2ad3d85353)
)
(fp_poly (pts
(arc (start -0.5 -1.5) (mid -2 0) (end -0.5 1.5))
) (layer "F.Cu") (width 0.2) (fill solid) (tstamp 8af4026e-1e49-4023-bb84-e966369506cd))
(fp_poly (pts
(arc (start 0.5 1.5) (mid 2 0) (end 0.5 -1.5))
) (layer "F.Cu") (width 0.2) (fill solid) (tstamp c420ffba-885c-4129-bde5-16102223bf0f))
(fp_poly (pts
(arc (start -0.5 -1.5) (mid -2 0) (end -0.5 1.5))
) (layer "F.Mask") (width 0.2) (fill solid) (tstamp 0f19a5ef-ac49-44a6-93ee-8c78f71fb35b))
(fp_poly (pts
(arc (start 0.5 1.5) (mid 2 0) (end 0.5 -1.5))
) (layer "F.Mask") (width 0.2) (fill solid) (tstamp e17049e9-82d4-4ee3-8f0f-ed173a9b6cd1))
(pad "1" smd custom (at -1.5 0) (size 1 1) (layers "F.Cu" "F.Mask")
(net 8 "unconnected-(J3-Pad1)") (pintype "passive+no_connect")
(options (clearance outline) (anchor circle))
(primitives
) (tstamp 7202c1dc-f74a-46e3-93b5-1d8d5cf28c4c))
(pad "2" smd custom (at 1.5 0) (size 1 1) (layers "F.Cu" "F.Mask")
(net 9 "unconnected-(J3-Pad2)") (pintype "passive+no_connect")
(options (clearance outline) (anchor circle))
(primitives
) (tstamp 258a04da-e0e4-47a9-8cae-c371fe7384dc))
)
(footprint "BoxLib:Connector-SMD-2Pos-Molex-0532614002" (layer "F.Cu")
(tedit 0) (tstamp 655c93c4-b0bf-4008-8c00-0d76cd164a1c)
(at 94.375 72.75)
(property "MPN" "053261400")
(property "Manufacturer" "Molex")
(property "Pin1" "BATT -")
(property "Pin2" "BATT +")
(property "Sheetfile" "BoxLib.kicad_sch")
(property "Sheetname" "")
(path "/129efeea-89d0-48ff-b5f5-9339477a2b2c")
(attr through_hole)
(fp_text reference "J10" (at -5.75 0 90 unlocked) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a816649f-c849-4d38-a32e-0cf254c6a7f8)