-
Notifications
You must be signed in to change notification settings - Fork 2
/
MicroMatrix.kicad_pcb
9029 lines (8887 loc) · 411 KB
/
MicroMatrix.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")
(title_block
(title "MicroMatrix")
(date "2024-01-09")
(rev "1.3")
(company "© foorschtbar")
)
(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)
(aux_axis_origin 131 90)
(grid_origin 147.5 99)
(pcbplotparams
(layerselection 0x00010fc_ffffffff)
(plot_on_all_layers_selection 0x0000000_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 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 0)
(scaleselection 1)
(outputdirectory "_gerber/")
)
)
(net 0 "")
(net 1 "Net-(D1-DOUT)")
(net 2 "GND")
(net 3 "DIN")
(net 4 "+5V")
(net 5 "Net-(D2-DOUT)")
(net 6 "Net-(D3-DOUT)")
(net 7 "Net-(D4-DOUT)")
(net 8 "Net-(D5-DOUT)")
(net 9 "Net-(D6-DOUT)")
(net 10 "Net-(D7-DOUT)")
(net 11 "Net-(D8-DOUT)")
(net 12 "Net-(D10-DIN)")
(net 13 "Net-(D10-DOUT)")
(net 14 "Net-(D11-DOUT)")
(net 15 "Net-(D12-DOUT)")
(net 16 "Net-(D13-DOUT)")
(net 17 "Net-(D14-DOUT)")
(net 18 "Net-(D15-DOUT)")
(net 19 "Net-(D16-DOUT)")
(net 20 "Net-(D17-DOUT)")
(net 21 "Net-(D18-DOUT)")
(net 22 "Net-(D19-DOUT)")
(net 23 "Net-(D20-DOUT)")
(net 24 "Net-(D21-DOUT)")
(net 25 "Net-(D22-DOUT)")
(net 26 "Net-(D23-DOUT)")
(net 27 "Net-(D24-DOUT)")
(net 28 "Net-(D25-DOUT)")
(net 29 "Net-(D26-DOUT)")
(net 30 "Net-(D27-DOUT)")
(net 31 "Net-(D28-DOUT)")
(net 32 "Net-(D29-DOUT)")
(net 33 "Net-(D30-DOUT)")
(net 34 "Net-(D31-DOUT)")
(net 35 "Net-(D32-DOUT)")
(net 36 "Net-(D33-DOUT)")
(net 37 "Net-(D34-DOUT)")
(net 38 "Net-(D35-DOUT)")
(net 39 "Net-(D36-DOUT)")
(net 40 "Net-(D37-DOUT)")
(net 41 "Net-(D38-DOUT)")
(net 42 "Net-(D39-DOUT)")
(net 43 "Net-(D40-DOUT)")
(net 44 "Net-(D41-DOUT)")
(net 45 "Net-(D42-DOUT)")
(net 46 "Net-(D43-DOUT)")
(net 47 "Net-(D44-DOUT)")
(net 48 "Net-(D45-DOUT)")
(net 49 "Net-(D46-DOUT)")
(net 50 "Net-(D47-DOUT)")
(net 51 "Net-(D48-DOUT)")
(net 52 "Net-(D49-DOUT)")
(net 53 "Net-(D50-DOUT)")
(net 54 "Net-(D51-DOUT)")
(net 55 "Net-(D52-DOUT)")
(net 56 "Net-(D53-DOUT)")
(net 57 "Net-(D54-DOUT)")
(net 58 "Net-(D55-DOUT)")
(net 59 "Net-(D56-DOUT)")
(net 60 "Net-(D57-DOUT)")
(net 61 "Net-(D58-DOUT)")
(net 62 "Net-(D59-DOUT)")
(net 63 "Net-(D60-DOUT)")
(net 64 "Net-(D61-DOUT)")
(net 65 "Net-(D62-DOUT)")
(net 66 "Net-(D63-DOUT)")
(net 67 "DOUT")
(footprint "SK6805-EC15:SK6805-EC15" (layer "F.Cu")
(tstamp 023b8036-b37e-4e6b-b316-94c2bd8af4ab)
(at 144 107.5 -90)
(property "JLCPCB_CORRECTION" "0;0;180")
(property "LCSC Part Number" "C2890035")
(property "Sheetfile" "MicroMatrix.kicad_sch")
(property "Sheetname" "")
(path "/0d592cce-3dd2-4694-993a-94ea5b48eeb4")
(attr smd)
(fp_text reference "D59" (at 0 -1.75 -90 unlocked) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 38d5bb3f-97b3-4097-9e5b-002b2ba940db)
)
(fp_text value "SK6805" (at 0.05 1.75 -90 unlocked) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 444dfdd4-5d96-4a37-bfd1-453618d3f6d9)
)
(fp_text user "${REFERENCE}" (at 0.025 0 -90) (layer "F.Fab")
(effects (font (size 0.3 0.3) (thickness 0.05)))
(tstamp 74467bf7-1308-43c7-8a54-cbba5e19446a)
)
(fp_line (start -0.85 -0.85) (end -0.2 -0.85)
(stroke (width 0.1) (type solid)) (layer "F.SilkS") (tstamp c2438038-a75c-4ae7-a2cf-1be8bc3cd3ec))
(fp_line (start -0.85 -0.2) (end -0.85 -0.85)
(stroke (width 0.1) (type solid)) (layer "F.SilkS") (tstamp c7d8dd0f-7514-4459-8d13-17fbe6760666))
(fp_line (start -1 -1) (end 1 -1)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 13db8fb6-c844-4782-83a1-8183f1701483))
(fp_line (start -1 1) (end -1 -1)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 8b175fe8-cd72-4b26-b9e6-f8c03fed575b))
(fp_line (start 1 -1) (end 1 1)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 65b61692-0153-408c-8210-768b8249a1dc))
(fp_line (start 1 1) (end -1 1)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 02840b61-3be2-480e-87c2-34b3a0a26fc5))
(fp_line (start -0.75 -0.75) (end 0.75 -0.75)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 6739d426-47f3-429b-aebe-c400091a9137))
(fp_line (start -0.75 0.75) (end -0.75 -0.75)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp dace17ba-3b2e-42a2-b01d-1a2b2841b41d))
(fp_line (start 0.75 -0.75) (end 0.75 0.75)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9332b33e-ffe5-4a75-a755-6e7decdb6fd0))
(fp_line (start 0.75 0.75) (end -0.75 0.75)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d71a046b-abcc-4e6a-9b41-1e74b879c03c))
(fp_poly
(pts
(xy 0.15 0.25)
(xy -0.15 0.45)
(xy 0.15 0.65)
)
(stroke (width 0.1) (type solid)) (fill solid) (layer "F.Fab") (tstamp 6747537c-006e-4b23-8a09-cee8642c4f0c))
(pad "1" smd rect (at -0.45 -0.45 270) (size 0.5 0.5) (layers "F.Cu" "F.Paste" "F.Mask")
(net 61 "Net-(D58-DOUT)") (pinfunction "DIN") (pintype "input") (tstamp 52162024-a938-4e53-9a84-3dac4190d3f5))
(pad "2" smd rect (at -0.45 0.45 270) (size 0.5 0.5) (layers "F.Cu" "F.Paste" "F.Mask")
(net 4 "+5V") (pinfunction "VDD") (pintype "power_in") (tstamp 9fc83520-36e3-42cb-9f3d-613e1195ce71))
(pad "3" smd rect (at 0.45 0.45 270) (size 0.5 0.5) (layers "F.Cu" "F.Paste" "F.Mask")
(net 62 "Net-(D59-DOUT)") (pinfunction "DOUT") (pintype "output") (tstamp a4543d27-b0fb-4988-ac55-c5edf814d92f))
(pad "4" smd rect (at 0.45 -0.45 270) (size 0.5 0.5) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 1df8a32b-d315-4ee5-aa3d-2a18541a44b1))
(model "${KIPRJMOD}/Libs/SK6805-EC15.pretty/SK6805-EC15.step"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "SK6805-EC15:SK6805-EC15" (layer "F.Cu")
(tstamp 02eeeaf0-02f1-49a3-b288-95e452374a4f)
(at 144 105)
(property "JLCPCB_CORRECTION" "0;0;180")
(property "LCSC Part Number" "C2890035")
(property "Sheetfile" "MicroMatrix.kicad_sch")
(property "Sheetname" "")
(path "/57c0dbe9-2b52-48aa-b24e-397eae62749d")
(attr smd)
(fp_text reference "D54" (at 0 -1.75 unlocked) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1f16f44c-ccae-4c03-a45c-80662d6990fa)
)
(fp_text value "SK6805" (at 0.05 1.75 unlocked) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e081d4f1-b1f6-4dfc-b485-e96a4f450647)
)
(fp_text user "${REFERENCE}" (at 0.025 0) (layer "F.Fab")
(effects (font (size 0.3 0.3) (thickness 0.05)))
(tstamp 9f439928-4b2f-4a83-a405-e0d41528d639)
)
(fp_line (start -0.85 -0.85) (end -0.2 -0.85)
(stroke (width 0.1) (type solid)) (layer "F.SilkS") (tstamp 3198b168-aafd-4b54-b4a0-5ad19af07ac2))
(fp_line (start -0.85 -0.2) (end -0.85 -0.85)
(stroke (width 0.1) (type solid)) (layer "F.SilkS") (tstamp 491d23ea-f635-47bf-b095-bd7c9d262197))
(fp_line (start -1 -1) (end 1 -1)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp bc289f88-beb7-4bd9-b085-6505a91efe6f))
(fp_line (start -1 1) (end -1 -1)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp f561624e-94dc-4946-90ae-7af11916c427))
(fp_line (start 1 -1) (end 1 1)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 9b341770-c1c5-41b6-a384-a2cac58642c1))
(fp_line (start 1 1) (end -1 1)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 8ef19306-2e1d-409a-abec-4cc52d29f108))
(fp_line (start -0.75 -0.75) (end 0.75 -0.75)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 6d435371-6ac1-43ee-abd8-cbef70f53766))
(fp_line (start -0.75 0.75) (end -0.75 -0.75)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp cca500af-cf59-41d6-8877-5ce5b5f1a6a7))
(fp_line (start 0.75 -0.75) (end 0.75 0.75)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 6f9e512d-28c8-4ccc-905e-e96f00b2f61a))
(fp_line (start 0.75 0.75) (end -0.75 0.75)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 90f18ea6-23ec-4224-a0b1-f507f6e96e14))
(fp_poly
(pts
(xy 0.15 0.25)
(xy -0.15 0.45)
(xy 0.15 0.65)
)
(stroke (width 0.1) (type solid)) (fill solid) (layer "F.Fab") (tstamp cfbf098f-fb62-4348-b1b6-7fb8771946c4))
(pad "1" smd rect (at -0.45 -0.45) (size 0.5 0.5) (layers "F.Cu" "F.Paste" "F.Mask")
(net 56 "Net-(D53-DOUT)") (pinfunction "DIN") (pintype "input") (tstamp ecb58e82-b426-4efb-b8e8-8e9148337821))
(pad "2" smd rect (at -0.45 0.45) (size 0.5 0.5) (layers "F.Cu" "F.Paste" "F.Mask")
(net 4 "+5V") (pinfunction "VDD") (pintype "power_in") (tstamp 3662fb67-ea4e-4e03-bcea-a6c84507697c))
(pad "3" smd rect (at 0.45 0.45) (size 0.5 0.5) (layers "F.Cu" "F.Paste" "F.Mask")
(net 57 "Net-(D54-DOUT)") (pinfunction "DOUT") (pintype "output") (tstamp 1548c159-6d5f-4f9f-a673-e3b5af63042a))
(pad "4" smd rect (at 0.45 -0.45) (size 0.5 0.5) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 5f429aad-df8f-47a3-b87d-9551573ab877))
(model "${KIPRJMOD}/Libs/SK6805-EC15.pretty/SK6805-EC15.step"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "SK6805-EC15:SK6805-EC15" (layer "F.Cu")
(tstamp 0453b36c-6c69-499f-9b57-55ad3a11aaa3)
(at 134 92.5 -90)
(property "JLCPCB_CORRECTION" "0;0;180")
(property "LCSC Part Number" "C2890035")
(property "Sheetfile" "MicroMatrix.kicad_sch")
(property "Sheetname" "")
(path "/a3cc6efc-15b3-4dc3-888a-e03cc4c0aeed")
(attr smd)
(fp_text reference "D15" (at 0 -1.75 -90 unlocked) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp cc68dd84-6a28-4177-9896-e3ee38cd5b10)
)
(fp_text value "SK6805" (at 0.05 1.75 -90 unlocked) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c8b19f3e-35a3-49a3-91e6-ba22137846a4)
)
(fp_text user "${REFERENCE}" (at 0.025 0 -90) (layer "F.Fab")
(effects (font (size 0.3 0.3) (thickness 0.05)))
(tstamp fb15341e-1c26-43e5-ab51-22fd7fe1f8c6)
)
(fp_line (start -0.85 -0.85) (end -0.2 -0.85)
(stroke (width 0.1) (type solid)) (layer "F.SilkS") (tstamp d22da152-d014-4557-8d45-4580f3356bfd))
(fp_line (start -0.85 -0.2) (end -0.85 -0.85)
(stroke (width 0.1) (type solid)) (layer "F.SilkS") (tstamp 322493b8-f6cb-426c-b6fb-ea73290bb265))
(fp_line (start -1 -1) (end 1 -1)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 4408402e-f304-469e-a89a-358d94dcb011))
(fp_line (start -1 1) (end -1 -1)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 284ba173-f9ae-4e1a-a3ca-21f732afe59a))
(fp_line (start 1 -1) (end 1 1)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp f8e9382b-7820-425c-850b-4ed89d64e883))
(fp_line (start 1 1) (end -1 1)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a5f0ed1e-0508-4580-b740-d27f38f7b139))
(fp_line (start -0.75 -0.75) (end 0.75 -0.75)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 91a2462d-83d0-464c-8a7d-b502165ad5e8))
(fp_line (start -0.75 0.75) (end -0.75 -0.75)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e3a627ba-568a-4c2b-bf56-0ad3f81c7506))
(fp_line (start 0.75 -0.75) (end 0.75 0.75)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8eec5f3e-dc29-4d80-9e3e-3651769100cc))
(fp_line (start 0.75 0.75) (end -0.75 0.75)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 1ba3dd64-e247-4930-a029-7d7c844dd80b))
(fp_poly
(pts
(xy 0.15 0.25)
(xy -0.15 0.45)
(xy 0.15 0.65)
)
(stroke (width 0.1) (type solid)) (fill solid) (layer "F.Fab") (tstamp 99651422-5c16-43e0-b6dd-a173873d6ab7))
(pad "1" smd rect (at -0.45 -0.45 270) (size 0.5 0.5) (layers "F.Cu" "F.Paste" "F.Mask")
(net 17 "Net-(D14-DOUT)") (pinfunction "DIN") (pintype "input") (tstamp 46f4aeff-f035-478a-afb3-8a6bf2d83c93))
(pad "2" smd rect (at -0.45 0.45 270) (size 0.5 0.5) (layers "F.Cu" "F.Paste" "F.Mask")
(net 4 "+5V") (pinfunction "VDD") (pintype "power_in") (tstamp e3a8cac2-1fb0-4700-b604-c2524a7276f5))
(pad "3" smd rect (at 0.45 0.45 270) (size 0.5 0.5) (layers "F.Cu" "F.Paste" "F.Mask")
(net 18 "Net-(D15-DOUT)") (pinfunction "DOUT") (pintype "output") (tstamp 60d26698-4b95-4be8-9044-c8354e619c45))
(pad "4" smd rect (at 0.45 -0.45 270) (size 0.5 0.5) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (pinfunction "GND") (pintype "power_in") (tstamp c16e7127-b0bd-466a-90b2-12b9536fb616))
(model "${KIPRJMOD}/Libs/SK6805-EC15.pretty/SK6805-EC15.step"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "" (layer "F.Cu")
(tstamp 04b002c5-b0ed-45ea-8acf-6f312ef24433)
(at 132.5 99)
(fp_text reference "" (at 0 0) (layer "F.SilkS")
(effects (font (size 1.27 1.27) (thickness 0.15)))
(tstamp 32048c75-daf8-4769-af74-462aa2cc4ae9)
)
(fp_text value "" (at 0 0) (layer "F.SilkS")
(effects (font (size 1.27 1.27) (thickness 0.15)))
(tstamp 40bc1bb0-266c-402e-ab6b-1162df90ab81)
)
(pad "1" smd rect (at 0 0) (size 5.08 2.54) (layers "B.Cu" "B.Paste" "B.Mask")
(net 3 "DIN") (tstamp 8202d57b-d5d2-4a80-8c03-3c6bdbbd1ddf))
)
(footprint "SK6805-EC15:SK6805-EC15" (layer "F.Cu")
(tstamp 0530af74-8d1f-4140-b5a9-fbe4d930f2d6)
(at 136.5 90)
(property "JLCPCB_CORRECTION" "0;0;180")
(property "LCSC Part Number" "C2890035")
(property "Sheetfile" "MicroMatrix.kicad_sch")
(property "Sheetname" "")
(path "/92c7baea-3c57-4692-9b80-f1d47bc5b1ec")
(attr smd)
(fp_text reference "D3" (at 0 -1.75 unlocked) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0359ffcb-7b18-46d8-a364-2c0894e680b1)
)
(fp_text value "SK6805" (at 0.05 1.75 unlocked) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8ca00507-0820-4a7a-a3cb-c5782786cb45)
)
(fp_text user "${REFERENCE}" (at 0.025 0) (layer "F.Fab")
(effects (font (size 0.3 0.3) (thickness 0.05)))
(tstamp 929c3083-db6a-4000-be70-df9355673a45)
)
(fp_line (start -0.85 -0.85) (end -0.2 -0.85)
(stroke (width 0.1) (type solid)) (layer "F.SilkS") (tstamp ac720d14-d9f3-471f-8eb1-2a4226af7150))
(fp_line (start -0.85 -0.2) (end -0.85 -0.85)
(stroke (width 0.1) (type solid)) (layer "F.SilkS") (tstamp 2a40b004-5357-458c-8fb2-97d47bbd2974))
(fp_line (start -1 -1) (end 1 -1)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a0241134-2f74-4c67-b92e-1de282a0dd2e))
(fp_line (start -1 1) (end -1 -1)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 34b54840-9664-45b9-a08a-929f6c9bfe95))
(fp_line (start 1 -1) (end 1 1)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 51f63b04-d117-4b29-8d47-3d617db9318e))
(fp_line (start 1 1) (end -1 1)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp f5c7dcd0-3d0b-4495-804d-e36bd9c6e934))
(fp_line (start -0.75 -0.75) (end 0.75 -0.75)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7f75454f-e091-4d6e-9805-aea27bd20eb9))
(fp_line (start -0.75 0.75) (end -0.75 -0.75)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d7d8cec0-5d3b-40ec-bbdf-24c0dd6cfcdc))
(fp_line (start 0.75 -0.75) (end 0.75 0.75)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 6a9357a3-7b84-4697-8a5f-b4c124d593f8))
(fp_line (start 0.75 0.75) (end -0.75 0.75)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 84e2b1a1-c59c-4d8c-acd9-2d27d81235ea))
(fp_poly
(pts
(xy 0.15 0.25)
(xy -0.15 0.45)
(xy 0.15 0.65)
)
(stroke (width 0.1) (type solid)) (fill solid) (layer "F.Fab") (tstamp 342a70f1-40e7-44a5-b9f0-8ca898363bfe))
(pad "1" smd rect (at -0.45 -0.45) (size 0.5 0.5) (layers "F.Cu" "F.Paste" "F.Mask")
(net 5 "Net-(D2-DOUT)") (pinfunction "DIN") (pintype "input") (tstamp 78b58286-b2ad-45ea-9419-cfc4c81eac4f))
(pad "2" smd rect (at -0.45 0.45) (size 0.5 0.5) (layers "F.Cu" "F.Paste" "F.Mask")
(net 4 "+5V") (pinfunction "VDD") (pintype "power_in") (tstamp 3c42cec8-ee19-475c-af39-bbdcee067e4c))
(pad "3" smd rect (at 0.45 0.45) (size 0.5 0.5) (layers "F.Cu" "F.Paste" "F.Mask")
(net 6 "Net-(D3-DOUT)") (pinfunction "DOUT") (pintype "output") (tstamp d5c18335-231b-4cdc-9c47-826d56a53d4f))
(pad "4" smd rect (at 0.45 -0.45) (size 0.5 0.5) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 80adbea6-575e-4731-a991-ccd1c1da6ef1))
(model "${KIPRJMOD}/Libs/SK6805-EC15.pretty/SK6805-EC15.step"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "SK6805-EC15:SK6805-EC15" (layer "F.Cu")
(tstamp 0c990048-7035-4646-8b07-f79fbfddff62)
(at 134 102.5 -90)
(property "JLCPCB_CORRECTION" "0;0;180")
(property "LCSC Part Number" "C2890035")
(property "Sheetfile" "MicroMatrix.kicad_sch")
(property "Sheetname" "")
(path "/2d8def80-109e-459b-acdf-84b875d25671")
(attr smd)
(fp_text reference "D47" (at 0 -1.75 -90 unlocked) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3cb28cc6-03c2-45ad-ac61-5a8fb600b61b)
)
(fp_text value "SK6805" (at 0.05 1.75 -90 unlocked) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 843b6032-c094-4a40-983a-92435b56fe3f)
)
(fp_text user "${REFERENCE}" (at 0.025 0 -90) (layer "F.Fab")
(effects (font (size 0.3 0.3) (thickness 0.05)))
(tstamp 6b83500b-3a24-41ba-a762-bcc6007025ea)
)
(fp_line (start -0.85 -0.85) (end -0.2 -0.85)
(stroke (width 0.1) (type solid)) (layer "F.SilkS") (tstamp 891b9ba3-aa38-4253-8d18-9f77e639b6d1))
(fp_line (start -0.85 -0.2) (end -0.85 -0.85)
(stroke (width 0.1) (type solid)) (layer "F.SilkS") (tstamp 0d193392-87f7-4acd-8d77-e6569eaf2b9d))
(fp_line (start -1 -1) (end 1 -1)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 8a581ff0-4765-439c-bb96-dbaa278d7a2a))
(fp_line (start -1 1) (end -1 -1)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 493fd560-1f64-415b-ab19-d71aee89b358))
(fp_line (start 1 -1) (end 1 1)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 5103eea8-2b3f-4878-9d76-f09c6e23dbbc))
(fp_line (start 1 1) (end -1 1)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c2054b9c-abd1-4ed9-93b7-453bfa77ea3e))
(fp_line (start -0.75 -0.75) (end 0.75 -0.75)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp bd4420cb-3e0f-4390-98be-914f42bbfdb4))
(fp_line (start -0.75 0.75) (end -0.75 -0.75)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9a7779dc-0b2c-49fb-bd71-728146deb3b0))
(fp_line (start 0.75 -0.75) (end 0.75 0.75)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ce50ea90-4cd3-402a-a795-963d0b94031d))
(fp_line (start 0.75 0.75) (end -0.75 0.75)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d3610290-819b-4f90-b91f-3133ec80e1e1))
(fp_poly
(pts
(xy 0.15 0.25)
(xy -0.15 0.45)
(xy 0.15 0.65)
)
(stroke (width 0.1) (type solid)) (fill solid) (layer "F.Fab") (tstamp cb5e984d-3c2e-4e64-a17d-e4d0043fcfd7))
(pad "1" smd rect (at -0.45 -0.45 270) (size 0.5 0.5) (layers "F.Cu" "F.Paste" "F.Mask")
(net 49 "Net-(D46-DOUT)") (pinfunction "DIN") (pintype "input") (tstamp a2f87fd0-52e3-4870-8a35-5e49f9e6a054))
(pad "2" smd rect (at -0.45 0.45 270) (size 0.5 0.5) (layers "F.Cu" "F.Paste" "F.Mask")
(net 4 "+5V") (pinfunction "VDD") (pintype "power_in") (tstamp 8c3450e5-848f-469e-9894-916133b9cbd3))
(pad "3" smd rect (at 0.45 0.45 270) (size 0.5 0.5) (layers "F.Cu" "F.Paste" "F.Mask")
(net 50 "Net-(D47-DOUT)") (pinfunction "DOUT") (pintype "output") (tstamp d787408c-a70a-4c79-a638-5be9dfb2ebd3))
(pad "4" smd rect (at 0.45 -0.45 270) (size 0.5 0.5) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 899d26c7-d3bd-412a-89ef-bff65ba206b3))
(model "${KIPRJMOD}/Libs/SK6805-EC15.pretty/SK6805-EC15.step"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "SK6805-EC15:SK6805-EC15" (layer "F.Cu")
(tstamp 0d0df2ac-f3f7-482e-ba7c-5f666b048a62)
(at 146.5 95)
(property "JLCPCB_CORRECTION" "0;0;180")
(property "LCSC Part Number" "C2890035")
(property "Sheetfile" "MicroMatrix.kicad_sch")
(property "Sheetname" "")
(path "/774ebd64-f5a8-4e86-93d6-3afca4efd9d7")
(attr smd)
(fp_text reference "D23" (at 0 -1.75 unlocked) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 78634268-3c58-41ba-9570-1212dee79140)
)
(fp_text value "SK6805" (at 0.05 1.75 unlocked) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ea20c42b-6964-4c4b-aa09-6aebf17892dd)
)
(fp_text user "${REFERENCE}" (at 0.025 0) (layer "F.Fab")
(effects (font (size 0.3 0.3) (thickness 0.05)))
(tstamp fbcd76b4-2116-48dd-b7a8-865c20fb7ee4)
)
(fp_line (start -0.85 -0.85) (end -0.2 -0.85)
(stroke (width 0.1) (type solid)) (layer "F.SilkS") (tstamp 7bd57b01-5ad8-465e-b97d-a6752f170102))
(fp_line (start -0.85 -0.2) (end -0.85 -0.85)
(stroke (width 0.1) (type solid)) (layer "F.SilkS") (tstamp 1005eda0-e67d-4b8b-ba6d-d04a6451411b))
(fp_line (start -1 -1) (end 1 -1)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 42ef472f-6592-4e19-994f-4097d9e820ba))
(fp_line (start -1 1) (end -1 -1)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 7ef02426-7b24-4883-ad9f-a262ad85453f))
(fp_line (start 1 -1) (end 1 1)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 88488265-2733-45a1-aa8b-378d95c1bfc0))
(fp_line (start 1 1) (end -1 1)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d96b5e94-6160-49f3-9f82-886481460780))
(fp_line (start -0.75 -0.75) (end 0.75 -0.75)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 55e512fb-39ae-4258-bc0d-35e198b99e4e))
(fp_line (start -0.75 0.75) (end -0.75 -0.75)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7d68cc23-b3f4-4dcc-96f9-9e38c62f6dcd))
(fp_line (start 0.75 -0.75) (end 0.75 0.75)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e1ee3c00-57ad-4fa8-b6f4-9249dffb3426))
(fp_line (start 0.75 0.75) (end -0.75 0.75)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 84ef4c4b-c2a9-431b-b40c-80fded763774))
(fp_poly
(pts
(xy 0.15 0.25)
(xy -0.15 0.45)
(xy 0.15 0.65)
)
(stroke (width 0.1) (type solid)) (fill solid) (layer "F.Fab") (tstamp 0ad585dd-41c1-4759-8f5b-545235d227b4))
(pad "1" smd rect (at -0.45 -0.45) (size 0.5 0.5) (layers "F.Cu" "F.Paste" "F.Mask")
(net 25 "Net-(D22-DOUT)") (pinfunction "DIN") (pintype "input") (tstamp f2b623f4-2326-4326-8d19-d469fa105033))
(pad "2" smd rect (at -0.45 0.45) (size 0.5 0.5) (layers "F.Cu" "F.Paste" "F.Mask")
(net 4 "+5V") (pinfunction "VDD") (pintype "power_in") (tstamp a8f2949b-2b2a-4de1-980a-b151f7c7eaee))
(pad "3" smd rect (at 0.45 0.45) (size 0.5 0.5) (layers "F.Cu" "F.Paste" "F.Mask")
(net 26 "Net-(D23-DOUT)") (pinfunction "DOUT") (pintype "output") (tstamp 2700491b-f5ae-4110-84e8-0ad2687df2d8))
(pad "4" smd rect (at 0.45 -0.45) (size 0.5 0.5) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 9bedfdaf-e874-410a-87cd-4e41e232fb20))
(model "${KIPRJMOD}/Libs/SK6805-EC15.pretty/SK6805-EC15.step"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "" (layer "F.Cu")
(tstamp 0e0b47d5-39d6-4f9f-b034-44d261f628b2)
(at 147.5 95.5)
(fp_text reference "" (at 0 0) (layer "F.SilkS")
(effects (font (size 1.27 1.27) (thickness 0.15)))
(tstamp d618158f-4184-4754-aa33-65a98e706342)
)
(fp_text value "" (at 0 0) (layer "F.SilkS")
(effects (font (size 1.27 1.27) (thickness 0.15)))
(tstamp f84570f0-8f86-40f4-8c85-4d0ad12444b2)
)
(pad "1" smd rect (at 0 0) (size 5.08 2.54) (layers "B.Cu" "B.Paste" "B.Mask")
(net 4 "+5V") (tstamp b8e9717b-c8d9-44dd-9eb5-d37e3b2c2fb5))
)
(footprint "SK6805-EC15:SK6805-EC15" (layer "F.Cu")
(tstamp 0f924090-ddb0-4e05-904c-8a63a32e091d)
(at 146.5 97.5 -90)
(property "JLCPCB_CORRECTION" "0;0;180")
(property "LCSC Part Number" "C2890035")
(property "Sheetfile" "MicroMatrix.kicad_sch")
(property "Sheetname" "")
(path "/ed42612d-8959-4461-b1b9-422a42047810")
(attr smd)
(fp_text reference "D26" (at 0 -1.75 -90 unlocked) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 98835e09-1452-4769-96e5-e522be399de6)
)
(fp_text value "SK6805" (at 0.05 1.75 -90 unlocked) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 97388b18-b318-4820-9705-50998051c2ee)
)
(fp_text user "${REFERENCE}" (at 0.025 0 -90) (layer "F.Fab") hide
(effects (font (size 0.3 0.3) (thickness 0.05)))
(tstamp ac6f4dd8-190a-4622-96dc-db5e69df483e)
)
(fp_line (start -0.85 -0.85) (end -0.2 -0.85)
(stroke (width 0.1) (type solid)) (layer "F.SilkS") (tstamp 036f4dc6-3a03-4f1f-ae7e-a728268291ea))
(fp_line (start -0.85 -0.2) (end -0.85 -0.85)
(stroke (width 0.1) (type solid)) (layer "F.SilkS") (tstamp e2943a56-8611-41a2-a76a-55b40a067ed3))
(fp_line (start -1 -1) (end 1 -1)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a9dc815e-92a1-47d4-92b7-36b0a4c384f4))
(fp_line (start -1 1) (end -1 -1)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d045dee4-db0f-4bd1-8b54-99da49769c6f))
(fp_line (start 1 -1) (end 1 1)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 931497b4-929c-40ae-8118-4db7c9bf6fff))
(fp_line (start 1 1) (end -1 1)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 6910956a-ca71-459c-a171-237c7cbc584b))
(fp_line (start -0.75 -0.75) (end 0.75 -0.75)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 6409b08d-58eb-4436-b1bc-405b11762269))
(fp_line (start -0.75 0.75) (end -0.75 -0.75)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 36127e57-50c1-4249-92ef-ff433505760f))
(fp_line (start 0.75 -0.75) (end 0.75 0.75)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 20f5393c-1f91-47e1-831c-2731073cdba5))
(fp_line (start 0.75 0.75) (end -0.75 0.75)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c75dfbb6-3c57-4ee9-a670-3797d0ad694e))
(fp_poly
(pts
(xy 0.15 0.25)
(xy -0.15 0.45)
(xy 0.15 0.65)
)
(stroke (width 0.1) (type solid)) (fill solid) (layer "F.Fab") (tstamp 205bcda2-d1ba-40c2-b0e2-4aeafd189a7b))
(pad "1" smd rect (at -0.45 -0.45 270) (size 0.5 0.5) (layers "F.Cu" "F.Paste" "F.Mask")
(net 28 "Net-(D25-DOUT)") (pinfunction "DIN") (pintype "input") (tstamp a67c7861-0eec-4cf9-abde-90758d876acf))
(pad "2" smd rect (at -0.45 0.45 270) (size 0.5 0.5) (layers "F.Cu" "F.Paste" "F.Mask")
(net 4 "+5V") (pinfunction "VDD") (pintype "power_in") (tstamp fcd030f2-4bb4-4313-84e6-95100cfac571))
(pad "3" smd rect (at 0.45 0.45 270) (size 0.5 0.5) (layers "F.Cu" "F.Paste" "F.Mask")
(net 29 "Net-(D26-DOUT)") (pinfunction "DOUT") (pintype "output") (tstamp 7622d12b-713c-46f1-ba03-0e1007b17d66))
(pad "4" smd rect (at 0.45 -0.45 270) (size 0.5 0.5) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (pinfunction "GND") (pintype "power_in") (tstamp c0678ca8-a7cb-4d0c-bb78-3ff4d36ac6ad))
(model "${KIPRJMOD}/Libs/SK6805-EC15.pretty/SK6805-EC15.step"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "SK6805-EC15:SK6805-EC15" (layer "F.Cu")
(tstamp 135e3642-358a-4af8-829a-e9d8d5db6f15)
(at 149 105)
(property "JLCPCB_CORRECTION" "0;0;180")
(property "LCSC Part Number" "C2890035")
(property "Sheetfile" "MicroMatrix.kicad_sch")
(property "Sheetname" "")
(path "/8f29ef71-6c3f-491a-bc08-a02b93908bab")
(attr smd)
(fp_text reference "D56" (at 0 -1.75 unlocked) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 858a6757-471e-423f-a0db-85674ce2979f)
)
(fp_text value "SK6805" (at 0.05 1.75 unlocked) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 91eca312-4c3a-4cb1-a708-0dd4ddc668b5)
)
(fp_text user "${REFERENCE}" (at 0.025 0) (layer "F.Fab")
(effects (font (size 0.3 0.3) (thickness 0.05)))
(tstamp 5026c3d6-d37c-45b7-a176-d902d8a1cad8)
)
(fp_line (start -0.85 -0.85) (end -0.2 -0.85)
(stroke (width 0.1) (type solid)) (layer "F.SilkS") (tstamp a0da44d7-697e-4b9a-8f69-7159e237b8eb))
(fp_line (start -0.85 -0.2) (end -0.85 -0.85)
(stroke (width 0.1) (type solid)) (layer "F.SilkS") (tstamp 062f674f-e58b-48a8-80fa-9d7c609a2ba1))
(fp_line (start -1 -1) (end 1 -1)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 2ddcaa19-6f74-4551-aefa-655a36863645))
(fp_line (start -1 1) (end -1 -1)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp fe30b46c-af36-4d92-9696-787f3522cf96))
(fp_line (start 1 -1) (end 1 1)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp fc02376b-e69a-4884-a935-51c03707d9a7))
(fp_line (start 1 1) (end -1 1)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 97d0d9f7-388c-458c-a05f-533794891743))
(fp_line (start -0.75 -0.75) (end 0.75 -0.75)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ed212676-2df8-48ab-b449-dc19d3637080))
(fp_line (start -0.75 0.75) (end -0.75 -0.75)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8ea90b8c-31e5-42ea-a574-d7445dbadb05))
(fp_line (start 0.75 -0.75) (end 0.75 0.75)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 66d86e23-c87f-4682-a493-66f6eb2c3861))
(fp_line (start 0.75 0.75) (end -0.75 0.75)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 1a32ef3e-82cf-4d39-a5f8-9b3ed666152c))
(fp_poly
(pts
(xy 0.15 0.25)
(xy -0.15 0.45)
(xy 0.15 0.65)
)
(stroke (width 0.1) (type solid)) (fill solid) (layer "F.Fab") (tstamp 3f57b099-b275-493b-8b5a-6201fc294d5a))
(pad "1" smd rect (at -0.45 -0.45) (size 0.5 0.5) (layers "F.Cu" "F.Paste" "F.Mask")
(net 58 "Net-(D55-DOUT)") (pinfunction "DIN") (pintype "input") (tstamp a2f3e48c-2d6f-4ce2-986d-5fbe248f7294))
(pad "2" smd rect (at -0.45 0.45) (size 0.5 0.5) (layers "F.Cu" "F.Paste" "F.Mask")
(net 4 "+5V") (pinfunction "VDD") (pintype "power_in") (tstamp 70066b46-e52a-4ece-b120-541b3cecccfc))
(pad "3" smd rect (at 0.45 0.45) (size 0.5 0.5) (layers "F.Cu" "F.Paste" "F.Mask")
(net 59 "Net-(D56-DOUT)") (pinfunction "DOUT") (pintype "output") (tstamp 5d6dfffe-4652-4c2d-9c76-7f50d1f3485d))
(pad "4" smd rect (at 0.45 -0.45) (size 0.5 0.5) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (pinfunction "GND") (pintype "power_in") (tstamp e3f4403c-9986-4530-a236-0ad97375a36c))
(model "${KIPRJMOD}/Libs/SK6805-EC15.pretty/SK6805-EC15.step"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "SK6805-EC15:SK6805-EC15" (layer "F.Cu")
(tstamp 1be57cee-9843-43f2-b029-ce77e4d23583)
(at 146.5 105)
(property "JLCPCB_CORRECTION" "0;0;180")
(property "LCSC Part Number" "C2890035")
(property "Sheetfile" "MicroMatrix.kicad_sch")
(property "Sheetname" "")
(path "/438c8179-ad01-44e1-8f8a-8b5a935681dd")
(attr smd)
(fp_text reference "D55" (at 0 -1.75 unlocked) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp dd20645c-9835-445e-88d5-94b828187bd0)
)
(fp_text value "SK6805" (at 0.05 1.75 unlocked) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b5aedfb7-46a9-4771-918e-86d78e2c341c)
)
(fp_text user "${REFERENCE}" (at 0.025 0) (layer "F.Fab")
(effects (font (size 0.3 0.3) (thickness 0.05)))
(tstamp 53355b86-4f37-44ae-840a-c433071ea60d)
)
(fp_line (start -0.85 -0.85) (end -0.2 -0.85)
(stroke (width 0.1) (type solid)) (layer "F.SilkS") (tstamp 3b984642-1a1e-4d8d-8613-bce3859a5188))
(fp_line (start -0.85 -0.2) (end -0.85 -0.85)
(stroke (width 0.1) (type solid)) (layer "F.SilkS") (tstamp 7fe3fe34-10c0-4aa0-bdb5-a6edd8b40ee4))
(fp_line (start -1 -1) (end 1 -1)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 8ae7083a-f610-48cd-bc9d-b0451200df29))
(fp_line (start -1 1) (end -1 -1)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp bc42c760-3f70-42b6-bba3-91900dea8e2e))
(fp_line (start 1 -1) (end 1 1)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 7d65a980-facc-49cf-8f8f-06f5f597de68))
(fp_line (start 1 1) (end -1 1)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 7ec07c10-03cf-436f-9072-0dc503a03c33))
(fp_line (start -0.75 -0.75) (end 0.75 -0.75)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3a999be0-80b6-4c87-876a-fa08ccf79750))
(fp_line (start -0.75 0.75) (end -0.75 -0.75)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp fec138ad-90b2-4854-b783-df54e67a32d3))
(fp_line (start 0.75 -0.75) (end 0.75 0.75)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c1835db7-6193-4681-b87d-fb73f0cff40b))
(fp_line (start 0.75 0.75) (end -0.75 0.75)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e2f71521-712b-4fc0-ae47-e15ba4033672))
(fp_poly
(pts
(xy 0.15 0.25)
(xy -0.15 0.45)
(xy 0.15 0.65)
)
(stroke (width 0.1) (type solid)) (fill solid) (layer "F.Fab") (tstamp 254afcbb-e993-4d05-89c3-53259fc3f43c))
(pad "1" smd rect (at -0.45 -0.45) (size 0.5 0.5) (layers "F.Cu" "F.Paste" "F.Mask")
(net 57 "Net-(D54-DOUT)") (pinfunction "DIN") (pintype "input") (tstamp 101e0d83-1146-4a9d-bdea-6a1c4284c684))
(pad "2" smd rect (at -0.45 0.45) (size 0.5 0.5) (layers "F.Cu" "F.Paste" "F.Mask")
(net 4 "+5V") (pinfunction "VDD") (pintype "power_in") (tstamp 40a3f7af-fe7d-4b37-bad4-23f86f2fa63b))
(pad "3" smd rect (at 0.45 0.45) (size 0.5 0.5) (layers "F.Cu" "F.Paste" "F.Mask")
(net 58 "Net-(D55-DOUT)") (pinfunction "DOUT") (pintype "output") (tstamp 8d275021-dafb-4170-87c5-7f0467dff1b6))
(pad "4" smd rect (at 0.45 -0.45) (size 0.5 0.5) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (pinfunction "GND") (pintype "power_in") (tstamp fe24af51-ad14-4309-a943-dae796efc4cd))
(model "${KIPRJMOD}/Libs/SK6805-EC15.pretty/SK6805-EC15.step"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "SK6805-EC15:SK6805-EC15" (layer "F.Cu")
(tstamp 22c5ec8c-92fa-43bc-955a-ac62de3d0d1e)
(at 139 102.5 -90)
(property "JLCPCB_CORRECTION" "0;0;180")
(property "LCSC Part Number" "C2890035")
(property "Sheetfile" "MicroMatrix.kicad_sch")
(property "Sheetname" "")
(path "/8de0d646-e954-4efa-a633-c5ecd17db06f")
(attr smd)
(fp_text reference "D45" (at 0 -1.75 -90 unlocked) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e83fe289-512b-45a5-ba7c-c612a60ae2df)
)
(fp_text value "SK6805" (at 0.05 1.75 -90 unlocked) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ab2fb9f6-0146-4d94-a2d8-4732f1bfde1b)
)
(fp_text user "${REFERENCE}" (at 0.025 0 -90) (layer "F.Fab")
(effects (font (size 0.3 0.3) (thickness 0.05)))
(tstamp 436c922d-200b-4dc0-bf26-bac9d88ef4c3)
)
(fp_line (start -0.85 -0.85) (end -0.2 -0.85)
(stroke (width 0.1) (type solid)) (layer "F.SilkS") (tstamp f1e2a4ad-3474-41eb-a772-0a90ffcea2c4))
(fp_line (start -0.85 -0.2) (end -0.85 -0.85)
(stroke (width 0.1) (type solid)) (layer "F.SilkS") (tstamp 91f9e978-f0f1-4f93-9c2b-0688202d26f7))
(fp_line (start -1 -1) (end 1 -1)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a3c2f716-ec73-4b91-9d41-6a5785758387))
(fp_line (start -1 1) (end -1 -1)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 5a7422c6-1e16-4e27-8ace-cb8cf96a856d))
(fp_line (start 1 -1) (end 1 1)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp dd9c48e3-12b5-4883-8738-0321ee90acb6))
(fp_line (start 1 1) (end -1 1)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 6b8b0d5a-4dea-413d-80d6-c13d786cab37))
(fp_line (start -0.75 -0.75) (end 0.75 -0.75)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 790ef79c-25e8-4a7a-a494-9f0b43776f01))
(fp_line (start -0.75 0.75) (end -0.75 -0.75)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0bc035ed-adbf-4e3c-909b-57e7cf9a11c6))
(fp_line (start 0.75 -0.75) (end 0.75 0.75)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 1edd3f8a-3ba5-456a-9782-59153fd216c0))
(fp_line (start 0.75 0.75) (end -0.75 0.75)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a815fb77-d35f-4b43-a679-10944d651d89))
(fp_poly
(pts
(xy 0.15 0.25)
(xy -0.15 0.45)
(xy 0.15 0.65)
)
(stroke (width 0.1) (type solid)) (fill solid) (layer "F.Fab") (tstamp c7a4bd76-b74a-4c12-ae91-28918dca285e))
(pad "1" smd rect (at -0.45 -0.45 270) (size 0.5 0.5) (layers "F.Cu" "F.Paste" "F.Mask")
(net 47 "Net-(D44-DOUT)") (pinfunction "DIN") (pintype "input") (tstamp 6b1b27f3-39d3-4296-9880-5b3463ea28a8))
(pad "2" smd rect (at -0.45 0.45 270) (size 0.5 0.5) (layers "F.Cu" "F.Paste" "F.Mask")
(net 4 "+5V") (pinfunction "VDD") (pintype "power_in") (tstamp ead9f9f9-9cc5-44c8-979b-eda11c16aeda))
(pad "3" smd rect (at 0.45 0.45 270) (size 0.5 0.5) (layers "F.Cu" "F.Paste" "F.Mask")
(net 48 "Net-(D45-DOUT)") (pinfunction "DOUT") (pintype "output") (tstamp 9cf27d76-1815-4eba-b650-c1d217d4d082))
(pad "4" smd rect (at 0.45 -0.45 270) (size 0.5 0.5) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (pinfunction "GND") (pintype "power_in") (tstamp bc271054-b6fc-4ba3-aba2-0e8506e51cfe))
(model "${KIPRJMOD}/Libs/SK6805-EC15.pretty/SK6805-EC15.step"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "SK6805-EC15:SK6805-EC15" (layer "F.Cu")
(tstamp 2501f8af-64a4-4048-910a-af6739d92186)
(at 131.5 97.5 -90)
(property "JLCPCB_CORRECTION" "0;0;180")
(property "LCSC Part Number" "C2890035")
(property "Sheetfile" "MicroMatrix.kicad_sch")
(property "Sheetname" "")
(path "/e260055c-476f-487e-94f6-057af6a9a357")
(attr smd)
(fp_text reference "D32" (at 0 -1.75 -90 unlocked) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f251d50a-4a4e-4e90-83d2-5dec7eb797fd)
)
(fp_text value "SK6805" (at 0.05 1.75 -90 unlocked) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c4bc8f31-dd39-4b42-a5cf-b7bd8c0ad1f9)
)
(fp_text user "${REFERENCE}" (at 0.025 0 -90) (layer "F.Fab") hide
(effects (font (size 0.3 0.3) (thickness 0.05)))
(tstamp 6875adfb-6388-44cb-87e7-9fc511a1e5ab)
)
(fp_line (start -0.85 -0.85) (end -0.2 -0.85)
(stroke (width 0.1) (type solid)) (layer "F.SilkS") (tstamp 0708af1b-c454-49b0-9b48-12fc1f6ab773))
(fp_line (start -0.85 -0.2) (end -0.85 -0.85)
(stroke (width 0.1) (type solid)) (layer "F.SilkS") (tstamp a9857dcd-64d0-4e3b-a2cc-509dc19e6213))
(fp_line (start -1 -1) (end 1 -1)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 0150bcc1-c716-4ddb-b0b2-b9e1e08b0806))
(fp_line (start -1 1) (end -1 -1)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 8ef18963-342d-4243-ac1b-9415f16f5853))
(fp_line (start 1 -1) (end 1 1)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp f1ed951a-4576-44ee-9b25-f1f1f1dc10ec))
(fp_line (start 1 1) (end -1 1)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 9c81a72f-3a7c-4401-897b-ed9e3058f72f))
(fp_line (start -0.75 -0.75) (end 0.75 -0.75)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 55bd9c42-7ee9-4908-8b5e-d95eb31629da))
(fp_line (start -0.75 0.75) (end -0.75 -0.75)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 760538bd-b90e-43e2-8f66-b5c6d6a20b58))
(fp_line (start 0.75 -0.75) (end 0.75 0.75)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 64168e65-5edf-4891-b763-d0314a6dac9b))
(fp_line (start 0.75 0.75) (end -0.75 0.75)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 34d6cefb-c5c9-4ba3-af84-a9d4506b9e55))
(fp_poly
(pts
(xy 0.15 0.25)
(xy -0.15 0.45)
(xy 0.15 0.65)
)
(stroke (width 0.1) (type solid)) (fill solid) (layer "F.Fab") (tstamp 1f674581-e4da-486e-8348-a9a0e014c351))
(pad "1" smd rect (at -0.45 -0.45 270) (size 0.5 0.5) (layers "F.Cu" "F.Paste" "F.Mask")
(net 34 "Net-(D31-DOUT)") (pinfunction "DIN") (pintype "input") (tstamp bbf0d76e-7f17-4347-b9d0-98b4aaee02d9))
(pad "2" smd rect (at -0.45 0.45 270) (size 0.5 0.5) (layers "F.Cu" "F.Paste" "F.Mask")
(net 4 "+5V") (pinfunction "VDD") (pintype "power_in") (tstamp 193ae2ba-bdd9-42ff-9acf-808b252589b0))
(pad "3" smd rect (at 0.45 0.45 270) (size 0.5 0.5) (layers "F.Cu" "F.Paste" "F.Mask")
(net 35 "Net-(D32-DOUT)") (pinfunction "DOUT") (pintype "output") (tstamp 75ac790b-5e9d-4afd-a5f7-04bfb6f4fbc2))
(pad "4" smd rect (at 0.45 -0.45 270) (size 0.5 0.5) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 2020e2cf-6c60-4942-9da3-daa5b3ad0475))
(model "${KIPRJMOD}/Libs/SK6805-EC15.pretty/SK6805-EC15.step"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "SK6805-EC15:SK6805-EC15" (layer "F.Cu")
(tstamp 29052f11-eb52-41b4-aa3f-c148433f61d5)
(at 136.5 100)
(property "JLCPCB_CORRECTION" "0;0;180")
(property "LCSC Part Number" "C2890035")
(property "Sheetfile" "MicroMatrix.kicad_sch")
(property "Sheetname" "")
(path "/0b120fa6-5c30-439f-a740-5330b9f6d4da")
(attr smd)
(fp_text reference "D35" (at 0 -1.75 unlocked) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1a361c6d-e947-45e1-b669-c4b18d503510)
)
(fp_text value "SK6805" (at 0.05 1.75 unlocked) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 779591d6-cda1-463b-8fa6-d76a245d46a1)
)
(fp_text user "${REFERENCE}" (at 0.025 0) (layer "F.Fab")
(effects (font (size 0.3 0.3) (thickness 0.05)))
(tstamp 9194e323-7747-4ac6-8e4b-6bc11703dcb0)
)
(fp_line (start -0.85 -0.85) (end -0.2 -0.85)
(stroke (width 0.1) (type solid)) (layer "F.SilkS") (tstamp 4d88e9b0-53b9-4495-b4cd-05fe64b65069))
(fp_line (start -0.85 -0.2) (end -0.85 -0.85)
(stroke (width 0.1) (type solid)) (layer "F.SilkS") (tstamp 960a5420-458c-4e9d-b41c-274edd7577ee))
(fp_line (start -1 -1) (end 1 -1)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 43e435bf-7f64-4258-aa9b-4de29b238809))
(fp_line (start -1 1) (end -1 -1)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 6aa583e0-706d-429c-8087-626858da5882))
(fp_line (start 1 -1) (end 1 1)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c47366f8-d52a-4237-a6b6-e6b9443afd5d))
(fp_line (start 1 1) (end -1 1)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp df1d356f-df23-43d3-b3c0-182891e6ad4e))
(fp_line (start -0.75 -0.75) (end 0.75 -0.75)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 21df85cf-9352-4196-b4e9-51b7c157865c))
(fp_line (start -0.75 0.75) (end -0.75 -0.75)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 6c797c79-b1b5-44f8-b203-d9bca17cfe55))
(fp_line (start 0.75 -0.75) (end 0.75 0.75)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4a543579-12e5-444c-a740-a289170e1e70))
(fp_line (start 0.75 0.75) (end -0.75 0.75)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 496cc3fd-f492-4df6-9eab-23fba3f8b310))
(fp_poly
(pts
(xy 0.15 0.25)
(xy -0.15 0.45)
(xy 0.15 0.65)
)
(stroke (width 0.1) (type solid)) (fill solid) (layer "F.Fab") (tstamp 9efccd1a-5fc2-415c-a9a5-0de74d53267d))
(pad "1" smd rect (at -0.45 -0.45) (size 0.5 0.5) (layers "F.Cu" "F.Paste" "F.Mask")
(net 37 "Net-(D34-DOUT)") (pinfunction "DIN") (pintype "input") (tstamp 28388de8-3c15-4b9e-b97d-265045b0e7f3))
(pad "2" smd rect (at -0.45 0.45) (size 0.5 0.5) (layers "F.Cu" "F.Paste" "F.Mask")
(net 4 "+5V") (pinfunction "VDD") (pintype "power_in") (tstamp 66248d2e-fb87-4e67-afac-6a532d6bb7c1))
(pad "3" smd rect (at 0.45 0.45) (size 0.5 0.5) (layers "F.Cu" "F.Paste" "F.Mask")
(net 38 "Net-(D35-DOUT)") (pinfunction "DOUT") (pintype "output") (tstamp c518e1b8-96a4-4ab7-a485-865e08e3e434))
(pad "4" smd rect (at 0.45 -0.45) (size 0.5 0.5) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 41aed3c6-6ddd-48e0-b5f5-5d4b7586f22c))
(model "${KIPRJMOD}/Libs/SK6805-EC15.pretty/SK6805-EC15.step"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "SK6805-EC15:SK6805-EC15" (layer "F.Cu")
(tstamp 296e8eb3-22ac-4c85-9e99-1eac29f38629)
(at 141.5 102.5 -90)
(property "JLCPCB_CORRECTION" "0;0;180")
(property "LCSC Part Number" "C2890035")
(property "Sheetfile" "MicroMatrix.kicad_sch")
(property "Sheetname" "")
(path "/2d72fe9a-9e82-4e96-9d36-edb4740e9e80")
(attr smd)
(fp_text reference "D44" (at 0 -1.75 -90 unlocked) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 96a4a9d1-9f00-496c-9192-99d061ab114d)
)
(fp_text value "SK6805" (at 0.05 1.75 -90 unlocked) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a56741f2-bb61-402a-b0c1-f905540a0841)
)
(fp_text user "${REFERENCE}" (at 0.025 0 -90) (layer "F.Fab")
(effects (font (size 0.3 0.3) (thickness 0.05)))
(tstamp 4064ff78-d63e-4847-ba0a-703a5344bea6)
)
(fp_line (start -0.85 -0.85) (end -0.2 -0.85)
(stroke (width 0.1) (type solid)) (layer "F.SilkS") (tstamp 37f9a6c1-6f3f-423e-a43d-1c041d23e801))
(fp_line (start -0.85 -0.2) (end -0.85 -0.85)
(stroke (width 0.1) (type solid)) (layer "F.SilkS") (tstamp 5ebf989c-d737-4b8a-aaf2-450cf7709c87))
(fp_line (start -1 -1) (end 1 -1)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp bb717e8c-6332-4c43-b998-cbbd9d39719c))
(fp_line (start -1 1) (end -1 -1)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 4cd041b8-5dd4-42ca-85f6-f066fcb6004f))
(fp_line (start 1 -1) (end 1 1)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b49c3295-e64c-43ba-96dc-ab38844c820a))
(fp_line (start 1 1) (end -1 1)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e94cabf2-e168-44f5-a337-cd969c878151))
(fp_line (start -0.75 -0.75) (end 0.75 -0.75)