-
Notifications
You must be signed in to change notification settings - Fork 14
/
sharp_memory_display.kicad_pcb
983 lines (957 loc) · 73.1 KB
/
sharp_memory_display.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
(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)
)
(setup
(pad_to_mask_clearance 0)
(aux_axis_origin 61.912642 64.240389)
(grid_origin 97.422642 85.740389)
(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 0)
(scaleselection 1)
(outputdirectory "Gerber")
)
)
(net 0 "")
(net 1 "VSS")
(net 2 "DISP")
(net 3 "VSSA")
(net 4 "VDDA")
(net 5 "VDD")
(net 6 "SCLK")
(net 7 "SI")
(net 8 "SCS")
(net 9 "EXTMODE")
(net 10 "EXTCOMIN")
(footprint "Connector_PinSocket_2.54mm:PinSocket_1x05_P2.54mm_Vertical" (layer "F.Cu")
(tedit 6231A462) (tstamp 00000000-0000-0000-0000-00006119cc3e)
(at 63.622642 83.790389 180)
(descr "Through hole straight socket strip, 1x05, 2.54mm pitch, single row (from Kicad 4.0.7), script generated")
(tags "Through hole socket strip THT 1x05 2.54mm single row")
(property "Sheetfile" "sharp_memory_display.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-0000611985b1")
(attr through_hole)
(fp_text reference "J1" (at 0 -2.77) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 66e36cb3-5d2d-4960-ab7d-aa1a6fc3fd7d)
)
(fp_text value "Conn_01x05" (at 3.2 5.05 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp bbc6719e-2066-4ed1-b993-4aa08282d4ed)
)
(fp_text user "${REFERENCE}" (at 0 5.08 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6eea3e4a-f870-47c1-92ad-aa58a4d26749)
)
(fp_line (start -1.8 11.9) (end -1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 8b7ca91c-9a25-4d38-b4ff-35f84dfc3716))
(fp_line (start 1.75 11.9) (end -1.8 11.9) (layer "F.CrtYd") (width 0.05) (tstamp 9133286d-f43f-4d06-abdb-2d190af99f69))
(fp_line (start 1.75 -1.8) (end 1.75 11.9) (layer "F.CrtYd") (width 0.05) (tstamp e3f388f6-5f09-4cbb-8594-3af775955a70))
(fp_line (start -1.8 -1.8) (end 1.75 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp f9255ee6-ae78-4d96-b115-121c1a4bb8e7))
(fp_line (start -1.27 11.43) (end -1.27 -1.27) (layer "F.Fab") (width 0.1) (tstamp 3c150087-17e2-49d8-a42e-2d85766fe478))
(fp_line (start 1.27 11.43) (end -1.27 11.43) (layer "F.Fab") (width 0.1) (tstamp 5a948121-1540-4e34-8e7e-712c1bb17810))
(fp_line (start 1.27 -0.635) (end 1.27 11.43) (layer "F.Fab") (width 0.1) (tstamp 838df9cb-bbd7-4586-97b3-582b8e8d782a))
(fp_line (start -1.27 -1.27) (end 0.635 -1.27) (layer "F.Fab") (width 0.1) (tstamp 9c8506d1-7286-4ea8-a860-2f8205155b42))
(fp_line (start 0.635 -1.27) (end 1.27 -0.635) (layer "F.Fab") (width 0.1) (tstamp f76d0303-cf11-4d92-961c-310b4fa55744))
(pad "1" thru_hole rect (at 0 0 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 1 "VSS") (pinfunction "Pin_1") (pintype "passive") (tstamp 2f4577d2-73fe-4851-989c-cfccf51041f9))
(pad "2" thru_hole oval (at 0 2.54 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 5 "VDD") (pinfunction "Pin_2") (pintype "passive") (tstamp dade7e58-c63e-4d2f-b96b-aef5ddbc242e))
(pad "3" thru_hole oval (at 0 5.08 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 8 "SCS") (pinfunction "Pin_3") (pintype "passive") (tstamp f3a2d504-6f21-42e4-a7fc-81d910beb4c3))
(pad "4" thru_hole oval (at 0 7.62 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 7 "SI") (pinfunction "Pin_4") (pintype "passive") (tstamp 1215c837-3604-46b8-8ac1-93a7f2c6ae4a))
(pad "5" thru_hole oval (at 0 10.16 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 6 "SCLK") (pinfunction "Pin_5") (pintype "passive") (tstamp 2825a544-6273-4159-97d5-d4c0cffe033d))
(model "${KIPRJMOD}/lib/memory display v1.step" hide
(offset (xyz 19 14 1))
(scale (xyz 1 1 1))
(rotate (xyz -180 180 0))
)
(model "${KIPRJMOD}/lib/3d/memory display v2.step"
(offset (xyz 18.5 13.5 1.5))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 180))
)
(model "${KIPRJMOD}/lib/3d/BPSC-05.stp"
(offset (xyz 0 0 1.3))
(scale (xyz 1 1 1))
(rotate (xyz 180 0 90))
)
)
(footprint "MountingHole:MountingHole_2.2mm_M2_DIN965_Pad" (layer "F.Cu")
(tedit 56D1B4CB) (tstamp 00000000-0000-0000-0000-0000611a4012)
(at 63.872642 69.740389)
(descr "Mounting Hole 2.2mm, M2, DIN965")
(tags "mounting hole 2.2mm m2 din965")
(property "Sheetfile" "sharp_memory_display.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-0000611caa6b")
(attr exclude_from_pos_files)
(fp_text reference "H2" (at 0 -2.9) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c749fd44-2d67-4a7c-84a5-9ee4b37a6797)
)
(fp_text value "MountingHole" (at 0.05 -3.5) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8159a7f0-e00f-4175-b78f-8f02cba2d537)
)
(fp_text user "${REFERENCE}" (at 0.3 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b5deeece-18d0-4a28-b741-a4ecdfd8b983)
)
(fp_circle (center 0 0) (end 1.9 0) (layer "Cmts.User") (width 0.15) (fill none) (tstamp 27a03d90-7ea9-49b0-9bfa-654a351a6cba))
(fp_circle (center 0 0) (end 2.15 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp a9702c8a-92c3-449c-ae2b-0a8661407026))
(pad "1" thru_hole circle locked (at 0 0) (size 3.8 3.8) (drill 2.2) (layers *.Cu *.Mask) (tstamp 4aa14329-0e2a-4a15-b70a-677d0936ec41))
)
(footprint "MountingHole:MountingHole_2.2mm_M2_DIN965_Pad" (layer "F.Cu")
(tedit 56D1B4CB) (tstamp 00000000-0000-0000-0000-0000611a4022)
(at 95.422642 69.740389)
(descr "Mounting Hole 2.2mm, M2, DIN965")
(tags "mounting hole 2.2mm m2 din965")
(property "Sheetfile" "sharp_memory_display.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-0000611cb254")
(attr exclude_from_pos_files)
(fp_text reference "H4" (at 0 -2.9) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 21fd0afd-f4cc-4467-91bf-0f28ed6dcebd)
)
(fp_text value "MountingHole" (at 0 -3.5) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp bc6bea84-63c5-42fb-b2e0-8f65b4267d50)
)
(fp_text user "${REFERENCE}" (at 0.3 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5ddb86aa-6cf2-4888-81e3-041dfcb403a2)
)
(fp_circle (center 0 0) (end 1.9 0) (layer "Cmts.User") (width 0.15) (fill none) (tstamp 86ada46d-6e7d-4b24-a86f-d7ac4bd5e76c))
(fp_circle (center 0 0) (end 2.15 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp 09311afa-fe9b-4909-8c95-25d7150bbfd1))
(pad "1" thru_hole circle locked (at 0 0) (size 3.8 3.8) (drill 2.2) (layers *.Cu *.Mask) (tstamp 2df60f91-07f5-4eaa-808b-8c7e642e7374))
)
(footprint "MountingHole:MountingHole_2.2mm_M2_DIN965_Pad" (layer "F.Cu")
(tedit 56D1B4CB) (tstamp 00000000-0000-0000-0000-0000611a4f25)
(at 63.872642 87.740389 90)
(descr "Mounting Hole 2.2mm, M2, DIN965")
(tags "mounting hole 2.2mm m2 din965")
(property "Sheetfile" "sharp_memory_display.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-0000611caca4")
(attr exclude_from_pos_files)
(fp_text reference "H3" (at 0 -2.9 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4b35ee81-8b16-4d70-99eb-c7d728da88c3)
)
(fp_text value "MountingHole" (at -3.5 0.05 180) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp fde6b0fb-a14c-4103-9d12-3e86fb12de6a)
)
(fp_text user "${REFERENCE}" (at 0.3 0 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 63c4a747-6f28-4219-aed2-34d57e1670b4)
)
(fp_circle (center 0 0) (end 1.9 0) (layer "Cmts.User") (width 0.15) (fill none) (tstamp 46383dd0-0e9e-4e92-90ba-30475b5e5116))
(fp_circle (center 0 0) (end 2.15 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp d48e55a8-d010-4980-bd8e-c65c16a4ef8a))
(pad "1" thru_hole circle locked (at 0 0 90) (size 3.8 3.8) (drill 2.2) (layers *.Cu *.Mask) (tstamp 99b8dc23-a7a0-43e2-9e75-2a2ffcaa5011))
)
(footprint "MountingHole:MountingHole_2.2mm_M2_DIN965_Pad" (layer "F.Cu")
(tedit 56D1B4CB) (tstamp 00000000-0000-0000-0000-0000611a5e4d)
(at 95.422642 87.740389)
(descr "Mounting Hole 2.2mm, M2, DIN965")
(tags "mounting hole 2.2mm m2 din965")
(property "Sheetfile" "sharp_memory_display.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-0000611cafbe")
(attr exclude_from_pos_files)
(fp_text reference "H1" (at 0 -2.9) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ac7a46d4-6931-43a1-9aab-a7afbee40c61)
)
(fp_text value "MountingHole" (at 0 2.9) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a29d42cd-da56-4935-80a4-6889d159ded8)
)
(fp_text user "${REFERENCE}" (at 0.3 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 345a2d0f-86dc-40c1-b0ca-4d913c074b2c)
)
(fp_circle (center 0 0) (end 1.9 0) (layer "Cmts.User") (width 0.15) (fill none) (tstamp 30029adc-53fc-4434-aed3-3af31af5aafd))
(fp_circle (center 0 0) (end 2.15 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp 38b38970-fcef-42dd-8511-50bd808e5fec))
(pad "1" thru_hole circle locked (at 0 0) (size 3.8 3.8) (drill 2.2) (layers *.Cu *.Mask) (tstamp 47e69cba-9c39-4b6c-a462-3c9868b5665c))
)
(footprint "Keebio-Parts:breakaway-mousebites-three" (layer "F.Cu")
(tedit 611A3242) (tstamp 62c2a848-1485-496f-bc5f-3479ebbb17b3)
(at 95.422642 71.736389 180)
(attr through_hole)
(fp_text reference "REF**" (at 0 -3.048) (layer "Dwgs.User") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ec8eed51-3224-4d4e-af40-287a9177af99)
)
(fp_text value "breakaway-mousebites-three" (at 0 -4.75) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7c9bb66c-9516-492c-8c67-3f2ea98e9539)
)
(fp_line (start -1.524 0) (end 1.524 0) (layer "Dwgs.User") (width 0.15) (tstamp dba074aa-c33e-4ade-8310-a4929e715304))
(pad "" np_thru_hole circle locked (at 1.27 -0.254 180) (size 0.7874 0.7874) (drill 0.7874) (layers *.Cu *.Mask) (tstamp 787ed160-fc09-4132-8b56-c3b8835cf06a))
(pad "" np_thru_hole circle locked (at -1.27 -0.254 180) (size 0.7874 0.7874) (drill 0.7874) (layers *.Cu *.Mask) (tstamp a02afbf6-a4ee-4e60-b879-29de275d4616))
(pad "" np_thru_hole circle locked (at 0 -0.254 180) (size 0.7874 0.7874) (drill 0.7874) (layers *.Cu *.Mask) (tstamp fbc7d7d6-dda0-4f84-8890-94e309d81528))
)
(footprint "Keebio-Parts:breakaway-mousebites-three" (layer "F.Cu")
(tedit 611A3242) (tstamp 64aa127d-7b5e-40da-a5dd-4622c89884bd)
(at 63.852642 85.744389)
(attr through_hole)
(fp_text reference "REF**" (at 0 -3.048 180) (layer "Dwgs.User") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3f62a0a1-7802-45cf-b249-d89632567c71)
)
(fp_text value "breakaway-mousebites-three" (at 0 -4.75 180) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 09a29f33-2a08-4934-b8ad-786ea39e9d9c)
)
(fp_line (start -1.524 0) (end 1.524 0) (layer "Dwgs.User") (width 0.15) (tstamp c52c33b7-24fd-4360-96aa-90f480df93c6))
(pad "" np_thru_hole circle locked (at -1.27 -0.254) (size 0.7874 0.7874) (drill 0.7874) (layers *.Cu *.Mask) (tstamp 0a085e1e-41d5-45d9-92d1-25707057b08a))
(pad "" np_thru_hole circle locked (at 1.27 -0.254) (size 0.7874 0.7874) (drill 0.7874) (layers *.Cu *.Mask) (tstamp c825434b-6985-4d67-9110-1bfd19fa8e7c))
(pad "" np_thru_hole circle locked (at 0 -0.254) (size 0.7874 0.7874) (drill 0.7874) (layers *.Cu *.Mask) (tstamp eb435387-2edf-44d8-8040-968d0023d491))
)
(footprint "Keebio-Parts:breakaway-mousebites-three" (layer "F.Cu")
(tedit 611A3242) (tstamp 869bdb25-b98b-4e80-82e0-d9d9fba68201)
(at 63.892642 71.736389 180)
(attr through_hole)
(fp_text reference "REF**" (at 0 -3.048) (layer "Dwgs.User") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 83df5c93-33de-43f9-b6df-01bc5eebb3cc)
)
(fp_text value "breakaway-mousebites-three" (at 0 -4.75) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 241cc9c0-4154-410c-9a88-9045f326d5d9)
)
(fp_line (start -1.524 0) (end 1.524 0) (layer "Dwgs.User") (width 0.15) (tstamp e46d88ae-330b-4bcc-8ac5-7484df0d2a22))
(pad "" np_thru_hole circle locked (at 1.27 -0.254 180) (size 0.7874 0.7874) (drill 0.7874) (layers *.Cu *.Mask) (tstamp 1240b509-70a4-4a2c-a0e2-55e7459e8e90))
(pad "" np_thru_hole circle locked (at -1.27 -0.254 180) (size 0.7874 0.7874) (drill 0.7874) (layers *.Cu *.Mask) (tstamp 4959a452-e263-4a86-b1b4-9cc43b86dd33))
(pad "" np_thru_hole circle locked (at 0 -0.254 180) (size 0.7874 0.7874) (drill 0.7874) (layers *.Cu *.Mask) (tstamp 4bac6b6e-fdc8-4a74-81d9-fc2abe0cfed5))
)
(footprint "Keebio-Parts:breakaway-mousebites-three" (layer "F.Cu")
(tedit 611A3242) (tstamp 8d0efe36-95d3-4554-8dd7-692f79d53c8d)
(at 95.402642 85.744389)
(attr through_hole)
(fp_text reference "REF**" (at 0 -3.048 180) (layer "Dwgs.User") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f6cbc983-ad9f-4af3-9006-37ebf2060f67)
)
(fp_text value "breakaway-mousebites-three" (at 0 -4.75 180) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a085e06a-dbe4-4819-8149-7f40930521fa)
)
(fp_line (start -1.524 0) (end 1.524 0) (layer "Dwgs.User") (width 0.15) (tstamp 41551adf-c1e3-4c01-91d3-bab3872f5abc))
(pad "" np_thru_hole circle locked (at 0 -0.254) (size 0.7874 0.7874) (drill 0.7874) (layers *.Cu *.Mask) (tstamp 8b2b4000-a667-4f21-8ba8-8fd8ce996334))
(pad "" np_thru_hole circle locked (at 1.27 -0.254) (size 0.7874 0.7874) (drill 0.7874) (layers *.Cu *.Mask) (tstamp ad112840-c1d8-47bf-999c-c4d2c23ce41a))
(pad "" np_thru_hole circle locked (at -1.27 -0.254) (size 0.7874 0.7874) (drill 0.7874) (layers *.Cu *.Mask) (tstamp bf33fad5-b2f5-4712-a481-d39aee8846a1))
)
(footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "B.Cu")
(tedit 5F68FEEE) (tstamp 1aa3fe60-eaca-41cd-ba5a-9665bbbff936)
(at 76.172642 76.015389)
(descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor handsolder")
(property "LCSC" "C25804")
(property "Sheetfile" "sharp_memory_display.kicad_sch")
(property "Sheetname" "")
(path "/c7299834-d1dd-4ac9-96ed-89f2af81c86c")
(attr smd)
(fp_text reference "R3" (at -0.75 -1.775) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp b85b1278-64ba-411d-872f-959e9578461b)
)
(fp_text value "10k" (at 0 -1.43) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 9bbaa7f9-6bef-4288-b4a6-eca114acb5f2)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "B.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)) (justify mirror))
(tstamp f0b56abf-899a-47db-8b9a-dc98c40537a3)
)
(fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) (layer "B.SilkS") (width 0.12) (tstamp 9475b21a-6695-4a1e-947d-fd1340fc4ed1))
(fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) (layer "B.SilkS") (width 0.12) (tstamp ced78025-5a1d-4e81-ac4c-e8ec36118f05))
(fp_line (start 1.65 0.73) (end 1.65 -0.73) (layer "B.CrtYd") (width 0.05) (tstamp 40615fd5-406c-4e77-b078-5059d149965b))
(fp_line (start -1.65 0.73) (end 1.65 0.73) (layer "B.CrtYd") (width 0.05) (tstamp 4ace269f-0e1f-453e-9bfd-a038aa2182c5))
(fp_line (start 1.65 -0.73) (end -1.65 -0.73) (layer "B.CrtYd") (width 0.05) (tstamp 518b8f84-01d7-4684-ba67-b9b2253cb994))
(fp_line (start -1.65 -0.73) (end -1.65 0.73) (layer "B.CrtYd") (width 0.05) (tstamp a3b4abe9-7d24-43ae-ab55-733e83031674))
(fp_line (start -0.8 0.4125) (end 0.8 0.4125) (layer "B.Fab") (width 0.1) (tstamp 2ab227d9-96eb-423e-8c6b-afea5f4bd9d4))
(fp_line (start 0.8 0.4125) (end 0.8 -0.4125) (layer "B.Fab") (width 0.1) (tstamp 47e7b775-1cea-4595-a5ea-a14ff0f0c20d))
(fp_line (start -0.8 -0.4125) (end -0.8 0.4125) (layer "B.Fab") (width 0.1) (tstamp 4b5883fa-c189-40b2-948b-23db0b7eb1a8))
(fp_line (start 0.8 -0.4125) (end -0.8 -0.4125) (layer "B.Fab") (width 0.1) (tstamp a46d32ee-3a5a-4b4d-8266-b71c07127e9b))
(pad "1" smd roundrect (at -0.9125 0) (size 0.975 0.95) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 5 "VDD") (pintype "passive") (tstamp 31b0ac8c-2f9e-4d65-9374-1d53afb0ffe4))
(pad "2" smd roundrect (at 0.9125 0) (size 0.975 0.95) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 2 "DISP") (pintype "passive") (tstamp a5e3ad9d-3776-47e9-a32a-9f115055c881))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (layer "B.Cu")
(tedit 5F68FEEF) (tstamp 1d314067-4999-46e6-94dd-97f4dc55bec7)
(at 77.010142 78.627889 -90)
(descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "capacitor handsolder")
(property "LCSC" "C84721")
(property "Sheetfile" "sharp_memory_display.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-0000611a11bf")
(attr smd)
(fp_text reference "C1" (at -0.8875 3.5875 180) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 7ea84fe9-6968-4676-adf2-ed2f710a4a41)
)
(fp_text value "560pF/680pF" (at 0 -1.43 90) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 24e2c409-3648-4d29-a278-7681e469de87)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "B.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)) (justify mirror))
(tstamp c13453c5-e144-4da3-9a67-40f82eba0fd0)
)
(fp_line (start -0.146267 0.51) (end 0.146267 0.51) (layer "B.SilkS") (width 0.12) (tstamp 2ef06a80-addf-4247-9b29-7105167644ec))
(fp_line (start -0.146267 -0.51) (end 0.146267 -0.51) (layer "B.SilkS") (width 0.12) (tstamp 42a2877b-0778-4417-a2b5-880ca7c0eba2))
(fp_line (start 1.65 -0.73) (end -1.65 -0.73) (layer "B.CrtYd") (width 0.05) (tstamp 3a6aafa2-21a7-4fe3-b39b-77bafdeb192f))
(fp_line (start -1.65 -0.73) (end -1.65 0.73) (layer "B.CrtYd") (width 0.05) (tstamp 80cb6dbe-a3a8-4fff-bfe6-ea87d1b45585))
(fp_line (start 1.65 0.73) (end 1.65 -0.73) (layer "B.CrtYd") (width 0.05) (tstamp e271e97e-822d-420c-a19a-24e463d41cf3))
(fp_line (start -1.65 0.73) (end 1.65 0.73) (layer "B.CrtYd") (width 0.05) (tstamp ef706621-ba24-44fb-8734-e639b289bda4))
(fp_line (start 0.8 0.4) (end 0.8 -0.4) (layer "B.Fab") (width 0.1) (tstamp 05198bcb-b90d-47b5-8abf-caf1cb3549d2))
(fp_line (start -0.8 -0.4) (end -0.8 0.4) (layer "B.Fab") (width 0.1) (tstamp 1381f45b-66e4-466c-85fd-ff29450804d8))
(fp_line (start -0.8 0.4) (end 0.8 0.4) (layer "B.Fab") (width 0.1) (tstamp 617a6940-9482-4b14-8460-c0c9d293a782))
(fp_line (start 0.8 -0.4) (end -0.8 -0.4) (layer "B.Fab") (width 0.1) (tstamp 9b9c3fa1-028f-49ad-a6cf-d92da509b998))
(pad "1" smd roundrect (at -0.8625 0 270) (size 1.075 0.95) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 2 "DISP") (pintype "passive") (tstamp 38fa435f-9edb-486e-a744-49da9efe5e69))
(pad "2" smd roundrect (at 0.8625 0 270) (size 1.075 0.95) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 1 "VSS") (pintype "passive") (tstamp 3fe45a80-7301-4786-a282-081508bbcfee))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0805_2012Metric_Pad1.20x1.40mm_HandSolder" (layer "B.Cu")
(tedit 5F68FEEE) (tstamp 43bce30e-e3e7-46e8-8d71-e13217df9bc6)
(at 80.172642 77.015389 180)
(descr "Resistor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor handsolder")
(property "LCSC" "C1017")
(property "Sheetfile" "sharp_memory_display.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00006119938d")
(attr smd)
(fp_text reference "FB1" (at -3.25 0.025) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp ccb35e1d-9fed-4162-a2a6-b4276dd15709)
)
(fp_text value "Ferrite_Bead_Small" (at 0 -1.65) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp d34b3286-c24c-4b82-a921-2bd21fa1b77b)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "B.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)) (justify mirror))
(tstamp b33e137f-0a95-489e-891d-6ffeeac66f87)
)
(fp_line (start -0.227064 0.735) (end 0.227064 0.735) (layer "B.SilkS") (width 0.12) (tstamp 16b266a0-c3e8-4d16-9bc3-67bf3c1394fd))
(fp_line (start -0.227064 -0.735) (end 0.227064 -0.735) (layer "B.SilkS") (width 0.12) (tstamp 7179b29e-af2d-4825-bc9a-bee0ad66d5b9))
(fp_line (start 1.85 -0.95) (end -1.85 -0.95) (layer "B.CrtYd") (width 0.05) (tstamp 6ca29c76-1029-4020-a3f6-b531c323387e))
(fp_line (start -1.85 -0.95) (end -1.85 0.95) (layer "B.CrtYd") (width 0.05) (tstamp 807e042a-7190-4f94-ab45-367eacc9c0b2))
(fp_line (start 1.85 0.95) (end 1.85 -0.95) (layer "B.CrtYd") (width 0.05) (tstamp 850724b1-0d0a-4ffe-ba3f-a7f6c1a01352))
(fp_line (start -1.85 0.95) (end 1.85 0.95) (layer "B.CrtYd") (width 0.05) (tstamp df04b0e6-928f-4764-a314-0d7bb3191c18))
(fp_line (start 1 0.625) (end 1 -0.625) (layer "B.Fab") (width 0.1) (tstamp 1bc351f8-efa5-404c-b4a4-94bd4342cae3))
(fp_line (start -1 0.625) (end 1 0.625) (layer "B.Fab") (width 0.1) (tstamp 6db835e8-4946-445e-b6e4-9b5a9ade6b02))
(fp_line (start -1 -0.625) (end -1 0.625) (layer "B.Fab") (width 0.1) (tstamp 97ee9ba0-67b2-40e9-ab4f-2ce5b70acbc1))
(fp_line (start 1 -0.625) (end -1 -0.625) (layer "B.Fab") (width 0.1) (tstamp d4c7f8cc-001e-4dfe-8708-0084be26a03f))
(pad "1" smd roundrect (at -1 0 180) (size 1.2 1.4) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.2083333333)
(net 4 "VDDA") (pintype "passive") (tstamp eb938749-7d30-4ad3-9f00-c0332b311d48))
(pad "2" smd roundrect (at 1 0 180) (size 1.2 1.4) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.2083333333)
(net 5 "VDD") (pintype "passive") (tstamp c78ba3e6-73cd-4dc7-b982-72a97964e7bf))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_FFC-FPC:Hirose_FH12-10S-0.5SH_1x10-1MP_P0.50mm_Horizontal" (layer "B.Cu")
(tedit 5D24667B) (tstamp 71d4f2d7-534b-4f8a-9cf3-983fd6f5a3de)
(at 88.722642 78.740389 -90)
(descr "Hirose FH12, FFC/FPC connector, FH12-10S-0.5SH, 10 Pins per row (https://www.hirose.com/product/en/products/FH12/FH12-24S-0.5SH(55)/), generated with kicad-footprint-generator")
(tags "connector Hirose FH12 horizontal")
(property "LCSC" "C506791")
(property "Sheetfile" "sharp_memory_display.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-0000611995dc")
(attr smd)
(fp_text reference "J2" (at 0 -1.7 90) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 943efb16-48a4-4f7a-8d09-e8008c7b0b6a)
)
(fp_text value "Conn_01x10" (at 0 -5.6 90) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp f92119a9-9527-498a-8d3e-8e57f30a6153)
)
(fp_text user "${REFERENCE}" (at 0 -3.7 90) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 1b831742-2183-44c3-a1c9-51569eb9f246)
)
(fp_line (start -4.15 -4.5) (end 4.15 -4.5) (layer "B.SilkS") (width 0.12) (tstamp 10d8c896-1dcb-451a-a53a-55eda1d2aa2f))
(fp_line (start -2.66 1.3) (end -4.15 1.3) (layer "B.SilkS") (width 0.12) (tstamp 40d46e24-3d82-4f56-9400-9659ccc7de7a))
(fp_line (start -4.15 -2.76) (end -4.15 -4.5) (layer "B.SilkS") (width 0.12) (tstamp 56ae26cf-f214-47a8-b85c-0def8f0a5c7d))
(fp_line (start 4.15 -4.5) (end 4.15 -2.76) (layer "B.SilkS") (width 0.12) (tstamp 5dde9820-7d81-4484-a870-9b9e8af4556b))
(fp_line (start -4.15 1.3) (end -4.15 -0.04) (layer "B.SilkS") (width 0.12) (tstamp 946ce67d-77b8-4e7d-b8a9-b930b76bec5d))
(fp_line (start 2.66 1.3) (end 4.15 1.3) (layer "B.SilkS") (width 0.12) (tstamp aa1fd21d-818d-4467-afa0-f63b281270dd))
(fp_line (start 4.15 1.3) (end 4.15 -0.04) (layer "B.SilkS") (width 0.12) (tstamp e4e8c6ac-05fc-476b-845e-9e7942bc7d3f))
(fp_line (start -2.66 1.3) (end -2.66 2.5) (layer "B.SilkS") (width 0.12) (tstamp fbd9b4b7-bc2b-45f7-a049-44d3bdc02f1b))
(fp_line (start -5.55 3) (end -5.55 -4.9) (layer "B.CrtYd") (width 0.05) (tstamp 11db2c21-00e8-4cdf-a544-aa9290d0e784))
(fp_line (start -5.55 -4.9) (end 5.55 -4.9) (layer "B.CrtYd") (width 0.05) (tstamp 45dbe1ec-3cfa-4d04-a30e-aebcc568dabc))
(fp_line (start 5.55 3) (end -5.55 3) (layer "B.CrtYd") (width 0.05) (tstamp 4a3d0db0-8c79-437c-93f6-84bc1dd23521))
(fp_line (start 5.55 -4.9) (end 5.55 3) (layer "B.CrtYd") (width 0.05) (tstamp 5b806ea6-77a8-42b0-bc03-18dc85a05441))
(fp_line (start 3.95 -4.4) (end 0 -4.4) (layer "B.Fab") (width 0.1) (tstamp 11202c5d-7d7f-40d2-a173-f830ed3ef21a))
(fp_line (start 4.05 1.2) (end 4.05 -3.4) (layer "B.Fab") (width 0.1) (tstamp 2712b0d6-009b-4a3d-a78e-635591e2302c))
(fp_line (start -3.95 -3.7) (end -3.95 -4.4) (layer "B.Fab") (width 0.1) (tstamp 3e8d1219-b2eb-4701-9aa5-27cded8892f1))
(fp_line (start 3.95 -3.7) (end 3.95 -4.4) (layer "B.Fab") (width 0.1) (tstamp 4b9ed1cd-1ce5-4741-a2b3-b3b820f0b379))
(fp_line (start -4.05 -3.4) (end -3.45 -3.4) (layer "B.Fab") (width 0.1) (tstamp 7d3e2a66-07e8-4bae-a44a-9f6d2f7c1640))
(fp_line (start 3.45 -3.4) (end 3.45 -3.7) (layer "B.Fab") (width 0.1) (tstamp 87502321-6b42-40f1-9eaf-6ef3782968cd))
(fp_line (start -2.25 0.492893) (end -1.75 1.2) (layer "B.Fab") (width 0.1) (tstamp 939c42f6-6df7-4002-b0b8-f8bc6e3d2f7b))
(fp_line (start -3.95 -4.4) (end 0 -4.4) (layer "B.Fab") (width 0.1) (tstamp 9cc3dca0-4fcc-4f94-a981-db5d54b651cd))
(fp_line (start -4.05 1.2) (end -4.05 -3.4) (layer "B.Fab") (width 0.1) (tstamp a493352a-9fa5-417d-a095-04db34c80199))
(fp_line (start 4.05 -3.4) (end 3.45 -3.4) (layer "B.Fab") (width 0.1) (tstamp b546257c-3b3d-4986-a7c5-9cf8aa687c45))
(fp_line (start 3.45 -3.7) (end 3.95 -3.7) (layer "B.Fab") (width 0.1) (tstamp d388d794-3ae3-4d2d-8aab-f4a0c5a65441))
(fp_line (start 0 1.2) (end -4.05 1.2) (layer "B.Fab") (width 0.1) (tstamp e0b81cd3-2c68-42b6-b731-0dbfb842542c))
(fp_line (start -3.45 -3.7) (end -3.95 -3.7) (layer "B.Fab") (width 0.1) (tstamp f32c6cef-0266-474a-867d-7bb553dc5705))
(fp_line (start -2.75 1.2) (end -2.25 0.492893) (layer "B.Fab") (width 0.1) (tstamp f85f4e9d-b0e5-4afb-8771-616a5b71d2c7))
(fp_line (start 0 1.2) (end 4.05 1.2) (layer "B.Fab") (width 0.1) (tstamp fe0a0dd2-d8d2-4f2f-82a6-461d83463992))
(fp_line (start -3.45 -3.4) (end -3.45 -3.7) (layer "B.Fab") (width 0.1) (tstamp ff201c11-63d9-4443-9259-dc7985636581))
(pad "1" smd rect (at -2.25 1.85 270) (size 0.3 1.3) (layers "B.Cu" "B.Paste" "B.Mask")
(net 6 "SCLK") (pinfunction "Pin_1") (pintype "passive") (tstamp 6044a578-2f70-4992-b7b4-a8471b80af27))
(pad "2" smd rect (at -1.75 1.85 270) (size 0.3 1.3) (layers "B.Cu" "B.Paste" "B.Mask")
(net 7 "SI") (pinfunction "Pin_2") (pintype "passive") (tstamp 9247a848-44ee-44d9-b5ae-ba7c2de84bdd))
(pad "3" smd rect (at -1.25 1.85 270) (size 0.3 1.3) (layers "B.Cu" "B.Paste" "B.Mask")
(net 8 "SCS") (pinfunction "Pin_3") (pintype "passive") (tstamp 472fea3b-3be9-43f3-baf8-d432ed2eba11))
(pad "4" smd rect (at -0.75 1.85 270) (size 0.3 1.3) (layers "B.Cu" "B.Paste" "B.Mask")
(net 10 "EXTCOMIN") (pinfunction "Pin_4") (pintype "passive") (tstamp 967fedac-f4aa-425e-94d5-a4b2351e1d94))
(pad "5" smd rect (at -0.25 1.85 270) (size 0.3 1.3) (layers "B.Cu" "B.Paste" "B.Mask")
(net 2 "DISP") (pinfunction "Pin_5") (pintype "passive") (tstamp dba8059f-b15d-4c34-90bf-cdcd6cb1b73f))
(pad "6" smd rect (at 0.25 1.85 270) (size 0.3 1.3) (layers "B.Cu" "B.Paste" "B.Mask")
(net 4 "VDDA") (pinfunction "Pin_6") (pintype "passive") (tstamp 2ee60488-bec8-4f19-83ae-a2ca1517bbd6))
(pad "7" smd rect (at 0.75 1.85 270) (size 0.3 1.3) (layers "B.Cu" "B.Paste" "B.Mask")
(net 5 "VDD") (pinfunction "Pin_7") (pintype "passive") (tstamp ec2c33ca-9e33-475c-b9f4-ab8aaf782616))
(pad "8" smd rect (at 1.25 1.85 270) (size 0.3 1.3) (layers "B.Cu" "B.Paste" "B.Mask")
(net 9 "EXTMODE") (pinfunction "Pin_8") (pintype "passive") (tstamp 3064338f-b547-4d5d-93dd-018bbc12b9da))
(pad "9" smd rect (at 1.75 1.85 270) (size 0.3 1.3) (layers "B.Cu" "B.Paste" "B.Mask")
(net 1 "VSS") (pinfunction "Pin_9") (pintype "passive") (tstamp 637cf5db-7b08-45ea-a7b5-8f2dd3c243be))
(pad "10" smd rect (at 2.25 1.85 270) (size 0.3 1.3) (layers "B.Cu" "B.Paste" "B.Mask")
(net 3 "VSSA") (pinfunction "Pin_10") (pintype "passive") (tstamp 4858dd90-f4fc-448b-9c04-020338d41e3c))
(pad "MP" smd rect (at -4.15 -1.4 270) (size 1.8 2.2) (layers "B.Cu" "B.Paste" "B.Mask") (tstamp 70284938-2677-4aaf-bb97-03e01f35f3f6))
(pad "MP" smd rect (at 4.15 -1.4 270) (size 1.8 2.2) (layers "B.Cu" "B.Paste" "B.Mask") (tstamp af909e71-5332-46e7-9749-3616fcab6f05))
(model "${KIPRJMOD}/lib/3d/FH12-10S-0.5SH_Ȫ.step"
(offset (xyz -10.7 -2.5 2))
(scale (xyz 1 1 1))
(rotate (xyz 180 90 0))
)
)
(footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "B.Cu")
(tedit 5F68FEEE) (tstamp 9e7c5225-e5f7-4612-b17b-b52b52d2377c)
(at 76.097642 81.265389 180)
(descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor handsolder")
(property "LCSC" "C25804")
(property "Sheetfile" "sharp_memory_display.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-0000611a96b1")
(attr smd)
(fp_text reference "R1" (at 2.675 0.025) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 6368b382-330f-4e2a-91d2-3ed776291418)
)
(fp_text value "10k" (at 0 -1.43) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 99196a0d-3c24-4829-91a4-69e81887bf33)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "B.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)) (justify mirror))
(tstamp b4730ba6-f8c2-4b4f-9c10-f2b2d5404626)
)
(fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) (layer "B.SilkS") (width 0.12) (tstamp 6639221b-cb46-4728-b431-4bd1f92732d2))
(fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) (layer "B.SilkS") (width 0.12) (tstamp aebdaf2b-7420-48fd-9e6c-0c3fc326db0b))
(fp_line (start 1.65 0.73) (end 1.65 -0.73) (layer "B.CrtYd") (width 0.05) (tstamp 3a54bc54-1fad-4e95-86a7-5c483d5cd7b0))
(fp_line (start 1.65 -0.73) (end -1.65 -0.73) (layer "B.CrtYd") (width 0.05) (tstamp 4bc7983e-7cca-47fd-9b48-8d026ab3a420))
(fp_line (start -1.65 0.73) (end 1.65 0.73) (layer "B.CrtYd") (width 0.05) (tstamp 5b2c083f-dde8-4d1d-98e7-093dfd938a47))
(fp_line (start -1.65 -0.73) (end -1.65 0.73) (layer "B.CrtYd") (width 0.05) (tstamp 744d5074-29ee-4974-84ac-2f2b7ee4d3cc))
(fp_line (start 0.8 0.4125) (end 0.8 -0.4125) (layer "B.Fab") (width 0.1) (tstamp 3fc63b1e-f185-40cd-a45e-04991d4f7bbc))
(fp_line (start -0.8 -0.4125) (end -0.8 0.4125) (layer "B.Fab") (width 0.1) (tstamp 4654555d-945a-4ce2-93c3-4dc6667ea007))
(fp_line (start -0.8 0.4125) (end 0.8 0.4125) (layer "B.Fab") (width 0.1) (tstamp 63046c90-fbb3-40a1-8397-3118a1c094c5))
(fp_line (start 0.8 -0.4125) (end -0.8 -0.4125) (layer "B.Fab") (width 0.1) (tstamp 7cdfef61-eb5b-419b-812b-e3eb2c04abe7))
(pad "1" smd roundrect (at -0.9125 0 180) (size 0.975 0.95) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 9 "EXTMODE") (pintype "passive") (tstamp 6696ae31-fc2c-4e3e-8837-ef274799d823))
(pad "2" smd roundrect (at 0.9125 0 180) (size 0.975 0.95) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 1 "VSS") (pintype "passive") (tstamp 77c5e250-c1a4-4e3c-b254-e640afe46acb))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "B.Cu")
(tedit 5F68FEEE) (tstamp b70f0767-0070-4382-bde8-22bba5a9e104)
(at 80.010142 74.990389 180)
(descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor handsolder")
(property "LCSC" "C25804")
(property "Sheetfile" "sharp_memory_display.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-0000611a9b58")
(attr smd)
(fp_text reference "R2" (at 0.0875 1.43) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp d756d44f-a432-4d20-841c-4bfa477983ae)
)
(fp_text value "10k" (at 0 -1.43) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 7d326ca3-df32-4ec3-81cd-2a79986f544d)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "B.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)) (justify mirror))
(tstamp feccaa45-8d2b-4c4f-bfa2-f3090df66a8c)
)
(fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) (layer "B.SilkS") (width 0.12) (tstamp 0dbec12d-6b9e-4288-b428-d73ad92740ea))
(fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) (layer "B.SilkS") (width 0.12) (tstamp 72525270-95ce-4c22-a82e-f6e7f5734e39))
(fp_line (start 1.65 0.73) (end 1.65 -0.73) (layer "B.CrtYd") (width 0.05) (tstamp 392243fc-f27c-46a2-8896-e858d464f40b))
(fp_line (start 1.65 -0.73) (end -1.65 -0.73) (layer "B.CrtYd") (width 0.05) (tstamp 525723ce-3820-4342-b35f-cfc0eee3cf93))
(fp_line (start -1.65 -0.73) (end -1.65 0.73) (layer "B.CrtYd") (width 0.05) (tstamp cd2484c9-3b70-416a-a440-69372d03583e))
(fp_line (start -1.65 0.73) (end 1.65 0.73) (layer "B.CrtYd") (width 0.05) (tstamp d32768ad-1ca0-4753-9d91-bd38b20327cd))
(fp_line (start -0.8 0.4125) (end 0.8 0.4125) (layer "B.Fab") (width 0.1) (tstamp b674f12e-cc1f-47e7-bdcc-68c880731c23))
(fp_line (start 0.8 0.4125) (end 0.8 -0.4125) (layer "B.Fab") (width 0.1) (tstamp de66491a-be31-421f-905d-64ad3c5cf5fa))
(fp_line (start -0.8 -0.4125) (end -0.8 0.4125) (layer "B.Fab") (width 0.1) (tstamp e2c9336f-0cea-4f7e-9572-229f0c9f4d70))
(fp_line (start 0.8 -0.4125) (end -0.8 -0.4125) (layer "B.Fab") (width 0.1) (tstamp eaa23738-921c-4132-ab30-3d7d8003719e))
(pad "1" smd roundrect (at -0.9125 0 180) (size 0.975 0.95) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 10 "EXTCOMIN") (pintype "passive") (tstamp 22a6c91f-b904-46c0-a228-683e3d83789f))
(pad "2" smd roundrect (at 0.9125 0 180) (size 0.975 0.95) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 1 "VSS") (pintype "passive") (tstamp c4b3ffbf-87eb-4e97-a6ee-de5b61cca927))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (layer "B.Cu")
(tedit 5F68FEEF) (tstamp be6ada5c-29f3-4230-ad54-bca000277f82)
(at 75.260142 78.627889 -90)
(descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "capacitor handsolder")
(property "LCSC" "C15849")
(property "Sheetfile" "sharp_memory_display.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00006119e125")
(attr smd)
(fp_text reference "C3" (at 0.8625 1.8375 180) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 2524736c-a24a-44fd-ac8d-b41f4b6fb6ee)
)
(fp_text value "1uF " (at 0 -1.43 90) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp b7077284-bb5c-4872-8e29-441e00d696da)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "B.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)) (justify mirror))
(tstamp 8c044191-19de-4366-a4c6-de1e11515dcf)
)
(fp_line (start -0.146267 -0.51) (end 0.146267 -0.51) (layer "B.SilkS") (width 0.12) (tstamp 1e3ff884-a55a-428c-aeae-f83001e76c5c))
(fp_line (start -0.146267 0.51) (end 0.146267 0.51) (layer "B.SilkS") (width 0.12) (tstamp 5c821279-553b-4dd2-be9e-43f855247591))
(fp_line (start -1.65 0.73) (end 1.65 0.73) (layer "B.CrtYd") (width 0.05) (tstamp 1bc06c3c-e36d-41ea-b319-ae6766f8f331))
(fp_line (start 1.65 -0.73) (end -1.65 -0.73) (layer "B.CrtYd") (width 0.05) (tstamp 3b084b36-af58-4080-a98e-8841585c2981))
(fp_line (start 1.65 0.73) (end 1.65 -0.73) (layer "B.CrtYd") (width 0.05) (tstamp 54bfd701-38aa-4d34-b3fc-8b68ae091e7e))
(fp_line (start -1.65 -0.73) (end -1.65 0.73) (layer "B.CrtYd") (width 0.05) (tstamp abc2b4e2-8927-4ae0-9d59-a07d5c255958))
(fp_line (start -0.8 0.4) (end 0.8 0.4) (layer "B.Fab") (width 0.1) (tstamp 33fcd877-8970-4e17-9e9c-b0307df437d4))
(fp_line (start 0.8 0.4) (end 0.8 -0.4) (layer "B.Fab") (width 0.1) (tstamp 96ee1bd8-7491-4e3d-aa93-989b5f74acdb))
(fp_line (start 0.8 -0.4) (end -0.8 -0.4) (layer "B.Fab") (width 0.1) (tstamp a897235a-ba11-4483-8e2e-3eb3de01211b))
(fp_line (start -0.8 -0.4) (end -0.8 0.4) (layer "B.Fab") (width 0.1) (tstamp d31c7fe9-ff8a-4a02-82fd-6b945a0da289))
(pad "1" smd roundrect (at -0.8625 0 270) (size 1.075 0.95) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 5 "VDD") (pintype "passive") (tstamp cf79cb8f-ff92-4f52-a63a-a71bda72d915))
(pad "2" smd roundrect (at 0.8625 0 270) (size 1.075 0.95) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 1 "VSS") (pintype "passive") (tstamp c5cc08ad-ffe5-46ee-89cc-54933044a6de))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_JST:JST_SH_SM05B-SRSS-TB_1x05-1MP_P1.00mm_Horizontal" (layer "B.Cu")
(tedit 5B78AD87) (tstamp d799896d-3117-4d54-977c-2e01b84b3077)
(at 68.672642 78.740389 90)
(descr "JST SH series connector, SM05B-SRSS-TB (http://www.jst-mfg.com/product/pdf/eng/eSH.pdf), generated with kicad-footprint-generator")
(tags "connector JST SH top entry")
(property "Sheetfile" "sharp_memory_display.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-0000611d01fb")
(attr smd)
(fp_text reference "J3" (at 0 -0.75 90) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 79d23fd8-35ac-41db-a3d9-c9ea15185cd4)
)
(fp_text value "Conn_01x05_Male" (at 0 -3.98 90) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp e4485758-0641-4a4c-81c7-1e0053ffbb1c)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 67d0e6e4-8b54-410c-9de9-a5be0fdebd04)
)
(fp_line (start -3.61 -0.715) (end -3.61 1.785) (layer "B.SilkS") (width 0.12) (tstamp 00a81d0e-38f5-465a-b86f-9c782e4f830a))
(fp_line (start -3.61 1.785) (end -2.56 1.785) (layer "B.SilkS") (width 0.12) (tstamp 08a5313e-da30-4fc8-a03a-504bb3e3f8e6))
(fp_line (start -2.56 1.785) (end -2.56 2.775) (layer "B.SilkS") (width 0.12) (tstamp 279a4e52-95cd-426d-8b7e-724a1adbd9b4))
(fp_line (start -2.44 -2.685) (end 2.44 -2.685) (layer "B.SilkS") (width 0.12) (tstamp 6bb5e1b9-f5c5-4739-a24c-9620cb51d128))
(fp_line (start 3.61 -0.715) (end 3.61 1.785) (layer "B.SilkS") (width 0.12) (tstamp d27a5d4b-c8dd-4780-a27b-549167aaa645))
(fp_line (start 3.61 1.785) (end 2.56 1.785) (layer "B.SilkS") (width 0.12) (tstamp da6238e6-10fa-48a0-bdf5-e122d9da8309))
(fp_line (start 4.4 -3.28) (end 4.4 3.28) (layer "B.CrtYd") (width 0.05) (tstamp 3be792f8-84d0-46d6-9ad5-84975a7b87fe))
(fp_line (start -4.4 3.28) (end -4.4 -3.28) (layer "B.CrtYd") (width 0.05) (tstamp 447f48b1-4952-4010-8bde-a767fc4dad60))
(fp_line (start -4.4 -3.28) (end 4.4 -3.28) (layer "B.CrtYd") (width 0.05) (tstamp 66dc45cb-657d-4ad4-82c3-f3f50a0d20a0))
(fp_line (start 4.4 3.28) (end -4.4 3.28) (layer "B.CrtYd") (width 0.05) (tstamp ee6d95b5-7479-436c-ae8e-94e2c29c0542))
(fp_line (start 3.5 1.675) (end 3.5 -2.575) (layer "B.Fab") (width 0.1) (tstamp 178ffc62-2a59-4253-b216-fdac2144296b))
(fp_line (start -3.5 1.675) (end -3.5 -2.575) (layer "B.Fab") (width 0.1) (tstamp 32fe2c0a-cc45-469a-bf31-fbba1d3a8e25))
(fp_line (start -3.5 1.675) (end 3.5 1.675) (layer "B.Fab") (width 0.1) (tstamp 74ecffb5-85ac-4b3e-b409-808499d6b0ea))
(fp_line (start -2 0.967893) (end -1.5 1.675) (layer "B.Fab") (width 0.1) (tstamp 80d4b861-9bd6-47c3-8582-708909cb0be9))
(fp_line (start -2.5 1.675) (end -2 0.967893) (layer "B.Fab") (width 0.1) (tstamp daab1c9a-a5a1-47a1-87f7-30ed2365c052))
(fp_line (start -3.5 -2.575) (end 3.5 -2.575) (layer "B.Fab") (width 0.1) (tstamp dc0af9b3-5b3c-458f-b99a-d70e59cf5ed2))
(pad "1" smd roundrect (at -2 2 90) (size 0.6 1.55) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 1 "VSS") (pinfunction "Pin_1") (pintype "passive") (tstamp 7dc8a8a6-0f8c-41ea-84f8-f9f5aba1a12d))
(pad "2" smd roundrect (at -1 2 90) (size 0.6 1.55) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 5 "VDD") (pinfunction "Pin_2") (pintype "passive") (tstamp e6617211-a0a5-4066-8d96-c22ae499d0f5))
(pad "3" smd roundrect (at 0 2 90) (size 0.6 1.55) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 8 "SCS") (pinfunction "Pin_3") (pintype "passive") (tstamp f0bb18a4-581d-4314-abc6-196d4f958a2a))
(pad "4" smd roundrect (at 1 2 90) (size 0.6 1.55) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 7 "SI") (pinfunction "Pin_4") (pintype "passive") (tstamp 8938e3ef-eec4-46bf-9b92-dd5f241087cc))
(pad "5" smd roundrect (at 2 2 90) (size 0.6 1.55) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 6 "SCLK") (pinfunction "Pin_5") (pintype "passive") (tstamp 9cb1c71b-bfd7-4507-9403-bbabb02413ed))
(pad "MP" smd roundrect (at 3.3 -1.875 90) (size 1.2 1.8) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.2083333333) (tstamp 0adf133b-2b32-40ae-97aa-dfa9189fc78d))
(pad "MP" smd roundrect (at -3.3 -1.875 90) (size 1.2 1.8) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.2083333333) (tstamp 9746f358-8664-4d77-9dcf-6d64aa3b5bc0))
(model "${KIPRJMOD}/lib/3d/jst sh 05.step"
(offset (xyz 0 1.35 0))
(scale (xyz 1 1 1))
(rotate (xyz -90 0 0))
)
)
(footprint "Resistor_SMD:R_0805_2012Metric_Pad1.20x1.40mm_HandSolder" (layer "B.Cu")
(tedit 5F68FEEE) (tstamp edca06df-d6bd-42d9-8e16-94fc4221ca1d)
(at 80.172642 79.265389)
(descr "Resistor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor handsolder")
(property "LCSC" "C1017")
(property "Sheetfile" "sharp_memory_display.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000061197fb0")
(attr smd)
(fp_text reference "FB2" (at 0 1.975) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp f3be8414-4f65-4809-8187-0d56ae448653)
)
(fp_text value "Ferrite_Bead_Small" (at 0 -1.65) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 7f965053-a686-4238-80bd-971bd147c655)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "B.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)) (justify mirror))
(tstamp 199d002f-c0e1-4740-be21-e85aeee395ff)
)
(fp_line (start -0.227064 0.735) (end 0.227064 0.735) (layer "B.SilkS") (width 0.12) (tstamp 02f7bbe4-3921-4247-b786-e4c98dd48b20))
(fp_line (start -0.227064 -0.735) (end 0.227064 -0.735) (layer "B.SilkS") (width 0.12) (tstamp f161ff16-75bf-4ccf-a6af-6afba763d75c))
(fp_line (start -1.85 -0.95) (end -1.85 0.95) (layer "B.CrtYd") (width 0.05) (tstamp 3e2ad7ea-cc69-40d3-8ace-95ceccaf3211))
(fp_line (start -1.85 0.95) (end 1.85 0.95) (layer "B.CrtYd") (width 0.05) (tstamp bb7af9ec-3627-4ddb-b63c-a45e932a8bfe))
(fp_line (start 1.85 0.95) (end 1.85 -0.95) (layer "B.CrtYd") (width 0.05) (tstamp c904ecbb-f28b-42af-b3f6-c71e0e9acbe5))
(fp_line (start 1.85 -0.95) (end -1.85 -0.95) (layer "B.CrtYd") (width 0.05) (tstamp e3513f48-683d-4b09-b0b2-e6af8e94a792))
(fp_line (start -1 -0.625) (end -1 0.625) (layer "B.Fab") (width 0.1) (tstamp 233e2ae4-ab3b-4556-b73c-87967605362c))
(fp_line (start -1 0.625) (end 1 0.625) (layer "B.Fab") (width 0.1) (tstamp 484aee07-60b5-4b52-adbe-35b4a5a70f63))
(fp_line (start 1 -0.625) (end -1 -0.625) (layer "B.Fab") (width 0.1) (tstamp 69c0e585-37a1-4768-987d-06db12d9093b))
(fp_line (start 1 0.625) (end 1 -0.625) (layer "B.Fab") (width 0.1) (tstamp ceaec298-c12a-410e-b9be-bd03bf88dfa7))
(pad "1" smd roundrect (at -1 0) (size 1.2 1.4) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.2083333333)
(net 1 "VSS") (pintype "passive") (tstamp 86618566-3abb-4df1-bee1-8de56f8e9a3f))
(pad "2" smd roundrect (at 1 0) (size 1.2 1.4) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.2083333333)
(net 3 "VSSA") (pintype "passive") (tstamp 2aa2e169-1d35-404a-a2de-25ad5946e850))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (layer "B.Cu")
(tedit 5F68FEEF) (tstamp fb47e8c6-0e51-4673-a910-c9b69bb8ffe0)
(at 83.172642 79.877889 -90)
(descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "capacitor handsolder")
(property "LCSC" "C15849")
(property "Sheetfile" "sharp_memory_display.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00006119eff4")
(attr smd)
(fp_text reference "C2" (at 2.6125 0 180) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 79400bec-4333-41f3-9131-1dbb7121520a)
)
(fp_text value "1uF" (at 0 -1.43 90) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 575850d9-83c0-4e1c-9fb1-7a90b215a686)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "B.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)) (justify mirror))
(tstamp 3f637640-2b4e-4f0e-80ce-f4553da30b1b)
)
(fp_line (start -0.146267 0.51) (end 0.146267 0.51) (layer "B.SilkS") (width 0.12) (tstamp 329b0873-1dfb-434c-9edf-7db35bcacc51))
(fp_line (start -0.146267 -0.51) (end 0.146267 -0.51) (layer "B.SilkS") (width 0.12) (tstamp 74496dbe-880a-4a49-8949-dfedbe2dbc03))
(fp_line (start -1.65 0.73) (end 1.65 0.73) (layer "B.CrtYd") (width 0.05) (tstamp 112914c0-6a0f-4c34-867c-13d9fdcacd4f))
(fp_line (start 1.65 0.73) (end 1.65 -0.73) (layer "B.CrtYd") (width 0.05) (tstamp 579a489d-57c7-4b7c-8283-96ef4604cff9))
(fp_line (start -1.65 -0.73) (end -1.65 0.73) (layer "B.CrtYd") (width 0.05) (tstamp 7c8ec976-0376-4659-9012-2e24b564fa9e))
(fp_line (start 1.65 -0.73) (end -1.65 -0.73) (layer "B.CrtYd") (width 0.05) (tstamp 92e61962-af31-4953-9df2-52e78f2730c6))
(fp_line (start 0.8 0.4) (end 0.8 -0.4) (layer "B.Fab") (width 0.1) (tstamp 3433a2ea-209a-4303-aa22-7ac021c24788))
(fp_line (start -0.8 -0.4) (end -0.8 0.4) (layer "B.Fab") (width 0.1) (tstamp 95160d51-950b-48fe-9678-640e6bb38405))
(fp_line (start -0.8 0.4) (end 0.8 0.4) (layer "B.Fab") (width 0.1) (tstamp af5c5d4e-7862-4d6a-83ee-d290b4b4799e))
(fp_line (start 0.8 -0.4) (end -0.8 -0.4) (layer "B.Fab") (width 0.1) (tstamp af893b08-820d-4f77-8893-5b2716d62e70))
(pad "1" smd roundrect (at -0.8625 0 270) (size 1.075 0.95) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 4 "VDDA") (pintype "passive") (tstamp 17cd51df-bd1f-4e82-aa09-6b4d6a00295b))
(pad "2" smd roundrect (at 0.8625 0 270) (size 1.075 0.95) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 3 "VSSA") (pintype "passive") (tstamp ab89a4fd-f40e-455c-a7c9-2343d3659023))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(gr_line (start 65.422642 85.740389) (end 61.872642 85.740389) (layer "Dwgs.User") (width 0.2) (tstamp 045eb86b-a5f2-49fb-9b48-b415c84fa806))
(gr_line (start 94.822642 72.040389) (end 65.722642 72.040389) (layer "Dwgs.User") (width 0.2) (tstamp 0789d90a-6802-4e93-88f0-b863a2cdb4a6))
(gr_line (start 97.422642 78.740389) (end 111.052642 78.740389) (layer "Dwgs.User") (width 0.2) (tstamp 0d52575b-3aff-45dc-b890-854b77e1f1f1))
(gr_line (start 97.422642 78.740389) (end 97.422642 83.475389) (layer "Dwgs.User") (width 0.2) (tstamp 18e4ba5f-a3d5-4895-ac52-b09f33615287))
(gr_line (start 96.352641 83.475389) (end 96.352641 74.005389) (layer "Dwgs.User") (width 0.2) (tstamp 1a382cee-37f3-485d-b93a-359af5c2f45b))
(gr_line (start 94.822642 85.440389) (end 94.822642 72.040389) (layer "Dwgs.User") (width 0.2) (tstamp 1dd5541f-86ff-46c7-bfbe-09e82c51e726))
(gr_line (start 106.552642 81.490389) (end 106.552642 75.990389) (layer "Dwgs.User") (width 0.2) (tstamp 1df5a6d2-d919-4be6-8ef3-d53ff842ecb3))
(gr_line (start 67.052642 73.368389) (end 92.332642 73.368389) (layer "Dwgs.User") (width 0.2) (tstamp 2422a258-b697-4263-be6e-854dda2081eb))
(gr_line (start 97.422642 71.740389) (end 97.422642 78.740389) (layer "Dwgs.User") (width 0.2) (tstamp 34896990-0020-46db-b8bf-a111d00ee16d))
(gr_line (start 92.332642 84.112389) (end 67.052642 84.112389) (layer "Dwgs.User") (width 0.2) (tstamp 528c689b-31a9-4e91-82d0-50f0d201d5a8))
(gr_line (start 97.422642 74.005389) (end 97.422642 78.740389) (layer "Dwgs.User") (width 0.2) (tstamp 5801a1a4-1d31-4c3c-bca2-1f35dcf2bcc3))
(gr_line (start 79.692642 73.368389) (end 79.692642 84.112389) (layer "Dwgs.User") (width 0.2) (tstamp 5bf8531c-9e42-4492-8461-11471dcc2e2d))
(gr_line (start 97.422642 83.475389) (end 103.252642 83.475389) (layer "Dwgs.User") (width 0.2) (tstamp 5fae19f1-51a4-4365-97b4-acacca0015ba))
(gr_line (start 65.422642 71.740389) (end 97.422642 71.740389) (layer "Dwgs.User") (width 0.2) (tstamp 61600210-627f-4010-8a74-bff8c0707272))
(gr_line (start 65.422642 71.740389) (end 65.422642 85.740389) (layer "Dwgs.User") (width 0.2) (tstamp 6402a9ef-aa56-4515-acba-c920519c566f))
(gr_line (start 97.422642 83.475389) (end 96.352641 83.475389) (layer "Dwgs.User") (width 0.2) (tstamp 6dac7112-aeda-49cd-adc1-ad07e60a1f88))
(gr_line (start 61.872642 71.740389) (end 65.422642 71.740389) (layer "Dwgs.User") (width 0.2) (tstamp 70996829-f79c-42e6-bd27-2be4fa5c6e19))
(gr_line (start 92.332642 73.368389) (end 79.692642 78.740389) (layer "Dwgs.User") (width 0.2) (tstamp 819f2d06-8cad-47b9-b5e0-95a5d78edd98))
(gr_line (start 94.822642 72.040389) (end 94.822642 71.740389) (layer "Dwgs.User") (width 0.2) (tstamp 8353765c-8462-49ee-a0ab-310b2e70772a))
(gr_line (start 111.052642 78.740389) (end 111.052642 75.990389) (layer "Dwgs.User") (width 0.2) (tstamp 8475114e-6d85-48ff-92aa-8ca9c1cc6cc8))
(gr_line (start 94.822642 85.440389) (end 94.822642 85.740389) (layer "Dwgs.User") (width 0.2) (tstamp 8508f818-fea9-4cb7-b7fe-99586168216c))
(gr_line (start 103.252642 75.990389) (end 103.252642 74.005389) (layer "Dwgs.User") (width 0.2) (tstamp 91334400-4ef3-4dda-b4b6-8c478eb84d07))
(gr_line (start 111.052642 81.490389) (end 103.252642 81.490389) (layer "Dwgs.User") (width 0.2) (tstamp 946102df-47ea-4821-b3e1-a90f73be8aa6))
(gr_line (start 111.052642 75.990389) (end 103.252642 75.990389) (layer "Dwgs.User") (width 0.2) (tstamp 95ba14a7-4894-40c7-93bc-b519bdf94417))
(gr_line (start 65.722642 72.040389) (end 65.722642 85.440389) (layer "Dwgs.User") (width 0.2) (tstamp 9950bf14-ed76-4a5a-88f7-b00adeef2882))
(gr_line (start 111.052642 81.490389) (end 106.552642 81.490389) (layer "Dwgs.User") (width 0.2) (tstamp a0647297-8178-4a64-a5b4-88321e49ae9f))
(gr_line (start 97.422642 74.005389) (end 96.352641 74.005389) (layer "Dwgs.User") (width 0.2) (tstamp a5e324a4-f83c-4223-9b58-520e06530dd4))
(gr_line (start 61.872642 85.740389) (end 61.872642 71.740389) (layer "Dwgs.User") (width 0.2) (tstamp c6ebca42-51d5-407e-9f45-7fd77390668d))
(gr_line (start 103.252642 81.490389) (end 103.252642 83.475389) (layer "Dwgs.User") (width 0.2) (tstamp d4453af5-951f-4bf5-9ac3-1e1526eadfae))
(gr_line (start 97.422642 85.740389) (end 65.422642 85.740389) (layer "Dwgs.User") (width 0.2) (tstamp db2de20b-9914-4fc4-8b44-2bbeba407739))
(gr_line (start 103.252642 74.005389) (end 97.422642 74.005389) (layer "Dwgs.User") (width 0.2) (tstamp e2569d72-9525-4398-8d89-26d78c65bda6))
(gr_line (start 67.052642 84.112389) (end 67.052642 73.368389) (layer "Dwgs.User") (width 0.2) (tstamp e6edb5b8-53a1-4247-a4ff-da83e5b3dc4e))
(gr_line (start 111.052642 78.740389) (end 111.052642 81.490389) (layer "Dwgs.User") (width 0.2) (tstamp e8617fb3-f172-4c86-88ad-bed83069ebf2))
(gr_line (start 92.332642 73.368389) (end 92.332642 84.112389) (layer "Dwgs.User") (width 0.2) (tstamp ec1963b2-8d37-4107-a344-dbf7295faa8d))
(gr_line (start 65.722642 85.440389) (end 94.822642 85.440389) (layer "Dwgs.User") (width 0.2) (tstamp ef7656ce-9f5b-44e1-a19b-bd900a300aaf))
(gr_line (start 79.692642 78.740389) (end 67.052642 84.112389) (layer "Dwgs.User") (width 0.2) (tstamp f30c7c8f-c096-4758-8a09-e2517a0ce4b9))
(gr_line (start 97.422642 78.740389) (end 97.422642 85.740389) (layer "Dwgs.User") (width 0.2) (tstamp f5f92705-d956-48a8-87b2-eb004d97b7da))
(gr_line (start 97.422642 67.740389) (end 93.422642 67.740389) (layer "Edge.Cuts") (width 0.05) (tstamp 02849b28-9262-4b05-abd5-4e2cbeb71993))
(gr_line (start 97.422642 85.740389) (end 97.422642 67.740389) (layer "Edge.Cuts") (width 0.05) (tstamp 028f1df8-8a6e-477a-abc8-350f1bf87441))
(gr_line (start 61.872642 85.740389) (end 61.872642 67.740389) (layer "Edge.Cuts") (width 0.05) (tstamp 1bf6f781-370b-4336-a443-274cdf65edf0))
(gr_line (start 97.422642 89.740389) (end 93.422642 89.740389) (layer "Edge.Cuts") (width 0.05) (tstamp 3a3cdf08-8e52-445d-ba72-0487652ec05d))
(gr_line (start 93.422642 67.740389) (end 93.422642 71.740389) (layer "Edge.Cuts") (width 0.05) (tstamp 4a3f3b02-33dc-4ad4-a7f9-650a5ef2f527))
(gr_line (start 61.872642 67.740389) (end 65.872642 67.740389) (layer "Edge.Cuts") (width 0.05) (tstamp 605d12db-8868-4360-959f-8078724b2308))
(gr_line (start 65.872642 67.740389) (end 65.872642 71.740389) (layer "Edge.Cuts") (width 0.05) (tstamp 695006f0-5ab7-4f7e-97b2-f390f1d0649c))
(gr_line (start 65.872642 89.740389) (end 65.872642 85.740389) (layer "Edge.Cuts") (width 0.05) (tstamp 8e808a8f-b925-4d5e-9edd-b78b414428fc))
(gr_line (start 61.872642 85.740389) (end 61.872642 89.740389) (layer "Edge.Cuts") (width 0.05) (tstamp acec2d1a-cc84-4651-a094-9dd1b7ae6fe2))
(gr_line (start 61.872642 89.740389) (end 65.872642 89.740389) (layer "Edge.Cuts") (width 0.05) (tstamp bb6dd9a7-92c7-41fe-8a53-500cb4233c91))
(gr_line (start 93.422642 89.740389) (end 93.422642 85.740389) (layer "Edge.Cuts") (width 0.05) (tstamp d63d7ea6-d33e-4c2a-93e3-acb23409b905))
(gr_line (start 93.422642 71.740389) (end 65.872642 71.740389) (layer "Edge.Cuts") (width 0.05) (tstamp d7ab25c1-5209-408d-9c68-3a77c8a60769))
(gr_line (start 97.422642 85.740389) (end 97.422642 89.740389) (layer "Edge.Cuts") (width 0.05) (tstamp e0a0256f-a5a7-4480-a6ba-0abd41dda4bd))
(gr_line (start 93.422642 85.740389) (end 65.872642 85.740389) (layer "Edge.Cuts") (width 0.05) (tstamp ef0d82e1-32e2-4a45-a814-1a1f485f3f73))
(gr_text "LS011B7DH03 Sharp Memory Display \nBreakout\n" (at 69.172642 74.990389) (layer "F.SilkS") (tstamp 44743857-f2f4-47c4-b79c-181af6f1498d)
(effects (font (size 0.8 0.8) (thickness 0.15)) (justify left))
)
(gr_text "27 August 2022" (at 69.172642 80.990389) (layer "F.SilkS") (tstamp 91b0ffe9-23d9-4d0a-aa14-f3897643d143)
(effects (font (size 0.8 0.8) (thickness 0.15)) (justify left))
)
(gr_text "CLK\n\nDI\n\nCS\n\n3V3\n\nGND" (at 64.922642 78.740389) (layer "F.SilkS") (tstamp a0895475-6683-41a7-8eb1-f8da61f77665)
(effects (font (size 0.8 0.85) (thickness 0.15)) (justify left))
)
(gr_text "https://github.com/karnadii/\nsharp_memory_display_breakout" (at 69.172642 78.240389) (layer "F.SilkS") (tstamp fcb47151-0bb3-4bf1-b1ad-4883267bd601)
(effects (font (size 0.8 0.8) (thickness 0.15) italic) (justify left))
)
(segment (start 67.622642 83.790389) (end 63.622642 83.790389) (width 0.25) (layer "F.Cu") (net 1) (tstamp 450f681a-63dd-472d-b172-23c0b1de9e85))
(segment (start 77.172642 74.240389) (end 67.622642 83.790389) (width 0.25) (layer "F.Cu") (net 1) (tstamp 67f602f7-0d09-4421-a3b8-aabe75fb4e69))
(via (at 77.172642 74.240389) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 1) (tstamp 0fff9dc4-1793-4cb6-8746-3a8b0278249c))
(segment (start 86.872642 80.490389) (end 87.68596 80.490389) (width 0.25) (layer "B.Cu") (net 1) (tstamp 07207982-bc1a-486d-a6e9-a5f0f6e3d184))
(segment (start 75.260142 81.190389) (end 75.185142 81.265389) (width 0.25) (layer "B.Cu") (net 1) (tstamp 0f3515a0-79b9-42e1-b271-7bb2f56803d9))
(segment (start 75.260142 79.490389) (end 75.260142 81.190389) (width 0.25) (layer "B.Cu") (net 1) (tstamp 2538351d-6322-4440-84ba-8a125ebd9c93))
(segment (start 81.509662 81.602409) (end 79.172642 79.265389) (width 0.25) (layer "B.Cu") (net 1) (tstamp 258e265c-f603-4620-b283-aebd57cdbc85))
(segment (start 87.709644 81.602409) (end 81.509662 81.602409) (width 0.25) (layer "B.Cu") (net 1) (tstamp 2bf79127-448b-477d-a41c-d1bbf0daed14))
(segment (start 79.097642 74.990389) (end 79.097642 75.083409) (width 0.25) (layer "B.Cu") (net 1) (tstamp 39bc854a-1749-4611-8023-9b445870a81b))
(segment (start 87.847153 81.4649) (end 87.709644 81.602409) (width 0.25) (layer "B.Cu") (net 1) (tstamp 4f0c305f-77bc-4e5f-a1d3-3b1962988253))
(segment (start 75.260142 79.490389) (end 77.010142 79.490389) (width 0.25) (layer "B.Cu") (net 1) (tstamp 61259f08-c24e-4a20-b592-24302ae478b7))
(segment (start 63.622642 83.790389) (end 67.622642 83.790389) (width 0.25) (layer "B.Cu") (net 1) (tstamp 68d834ad-8ead-439a-adea-10b8d2ee5fa1))
(segment (start 79.097642 74.990389) (end 77.922642 74.990389) (width 0.25) (layer "B.Cu") (net 1) (tstamp 6f6cad85-b7ce-42e9-b7b6-669e7a6c83bf))
(segment (start 78.947642 79.490389) (end 79.172642 79.265389) (width 0.25) (layer "B.Cu") (net 1) (tstamp 7127727e-ef3c-462c-9d49-7c1e863ab2fc))
(segment (start 77.010142 79.490389) (end 78.947642 79.490389) (width 0.25) (layer "B.Cu") (net 1) (tstamp 7eb29361-e567-4f2c-8aed-3940ebd0619f))
(segment (start 74.660142 80.740389) (end 75.185142 81.265389) (width 0.25) (layer "B.Cu") (net 1) (tstamp 8f8107cd-6d2e-4476-9bc3-b61cfb36bd4a))
(segment (start 87.68596 80.490389) (end 87.847153 80.651582) (width 0.25) (layer "B.Cu") (net 1) (tstamp bf5c743a-1c14-4e9e-a54d-4578b2a75cd6))
(segment (start 77.922642 74.990389) (end 77.172642 74.240389) (width 0.25) (layer "B.Cu") (net 1) (tstamp c68f3964-97ad-434c-9300-0b0c245629c4))
(segment (start 70.672642 80.740389) (end 74.660142 80.740389) (width 0.25) (layer "B.Cu") (net 1) (tstamp cf5d0104-00cf-4815-95f6-c886e6b64094))
(segment (start 87.847153 80.651582) (end 87.847153 81.4649) (width 0.25) (layer "B.Cu") (net 1) (tstamp cf789873-d103-4e9b-88e2-4be11bdfc0b9))
(segment (start 67.622642 83.790389) (end 70.672642 80.740389) (width 0.25) (layer "B.Cu") (net 1) (tstamp f4a07574-3cf0-4a7f-b997-39bd03c1dbc5))
(segment (start 81.722162 75.789909) (end 77.310622 75.789909) (width 0.25) (layer "B.Cu") (net 2) (tstamp 206c0fe2-ac5a-44db-8712-c3934bc3cbfa))
(segment (start 84.422642 78.490389) (end 81.722162 75.789909) (width 0.25) (layer "B.Cu") (net 2) (tstamp 5769e9ce-4275-4f36-93fe-d4199915b688))
(segment (start 86.872642 78.490389) (end 84.422642 78.490389) (width 0.25) (layer "B.Cu") (net 2) (tstamp 7b13de3b-b118-4832-a9f8-665741662522))
(segment (start 77.085142 77.690389) (end 77.010142 77.765389) (width 0.25) (layer "B.Cu") (net 2) (tstamp 9ae3c5ae-6c6e-409b-bdbd-b0b92e1bca7b))
(segment (start 77.085142 76.015389) (end 77.085142 77.690389) (width 0.25) (layer "B.Cu") (net 2) (tstamp 9bf06084-c46d-4059-8524-00c8065656f6))
(segment (start 77.310622 75.789909) (end 77.085142 76.015389) (width 0.25) (layer "B.Cu") (net 2) (tstamp b2236634-9b12-4596-9c9c-991d15317501))
(segment (start 82.647642 80.740389) (end 83.172642 80.740389) (width 0.25) (layer "B.Cu") (net 3) (tstamp 03496be6-e1eb-4328-8db9-20580c92abad))
(segment (start 81.447642 78.990389) (end 81.172642 79.265389) (width 0.25) (layer "B.Cu") (net 3) (tstamp 878f09fc-4eb6-493e-91a6-c0d1e7ebca9c))
(segment (start 86.872642 80.990389) (end 83.422642 80.990389) (width 0.25) (layer "B.Cu") (net 3) (tstamp 9d4dfb4f-9c7c-4547-a1c1-211d6dcd9450))
(segment (start 83.422642 80.990389) (end 83.172642 80.740389) (width 0.25) (layer "B.Cu") (net 3) (tstamp bb2bdbbd-d5c5-4009-8db9-2e80255e1329))
(segment (start 81.172642 79.265389) (end 82.647642 80.740389) (width 0.25) (layer "B.Cu") (net 3) (tstamp bebd17f4-989e-44a6-a3bf-c77189a38443))
(segment (start 83.197642 78.990389) (end 83.172642 79.015389) (width 0.25) (layer "B.Cu") (net 4) (tstamp cf6d0db9-138d-4fc2-9590-d5ec6010f22b))
(segment (start 86.872642 78.990389) (end 83.197642 78.990389) (width 0.25) (layer "B.Cu") (net 4) (tstamp d9026c79-85dc-4a0f-ada7-1ddcac9de453))
(segment (start 83.172642 79.015389) (end 81.172642 77.015389) (width 0.25) (layer "B.Cu") (net 4) (tstamp ef0c23ac-0f81-4fec-9a2f-9ba77d0cf019))
(segment (start 63.622642 81.250389) (end 65.132642 79.740389) (width 0.25) (layer "B.Cu") (net 5) (tstamp 14b82d2a-6b12-4e22-8574-f7aa7172fee9))
(segment (start 77.559662 78.628369) (end 76.123122 78.628369) (width 0.25) (layer "B.Cu") (net 5) (tstamp 1b2e662c-2d44-4c24-b660-f4586f4ef7a0))
(segment (start 76.123122 78.628369) (end 75.260142 77.765389) (width 0.25) (layer "B.Cu") (net 5) (tstamp 1b39acfa-e0bf-4e57-8262-8f0dfc6dbc30))
(segment (start 75.260142 76.015389) (end 75.260142 77.765389) (width 0.25) (layer "B.Cu") (net 5) (tstamp 31823ee5-df4e-4145-b0cb-99df1550873d))
(segment (start 70.672642 79.740389) (end 73.285142 79.740389) (width 0.25) (layer "B.Cu") (net 5) (tstamp 5d1f5d6d-f58c-4503-a4a8-fb00edb0cb1c))
(segment (start 86.872642 79.490389) (end 85.92362 79.490389) (width 0.25) (layer "B.Cu") (net 5) (tstamp 66a5f777-94ed-4f50-bc08-81f87da14cb8))
(segment (start 82.373122 79.548185) (end 82.373122 78.853376) (width 0.25) (layer "B.Cu") (net 5) (tstamp 69b71651-5f06-4a73-ba67-712f9e66cb8c))
(segment (start 82.703306 79.878369) (end 82.373122 79.548185) (width 0.25) (layer "B.Cu") (net 5) (tstamp 6cf559dd-eaae-445a-ab76-67311118297a))
(segment (start 80.197162 78.039909) (end 79.172642 77.015389) (width 0.25) (layer "B.Cu") (net 5) (tstamp 7cf66d1e-f046-4d18-b64a-9c971562d82f))
(segment (start 79.172642 77.015389) (end 77.559662 78.628369) (width 0.25) (layer "B.Cu") (net 5) (tstamp 83716909-2494-41b6-b512-5954ffd43ff3))
(segment (start 65.132642 79.740389) (end 70.672642 79.740389) (width 0.25) (layer "B.Cu") (net 5) (tstamp 84799745-7135-475f-bfe5-84bcb23acddb))
(segment (start 81.559655 78.039909) (end 80.197162 78.039909) (width 0.25) (layer "B.Cu") (net 5) (tstamp 9c9a61af-10d6-4ed7-96a3-ff14cb9e88a7))
(segment (start 85.53564 79.878369) (end 82.703306 79.878369) (width 0.25) (layer "B.Cu") (net 5) (tstamp 9d428efe-ccd3-441c-8872-ce22903061d2))
(segment (start 82.373122 78.853376) (end 81.559655 78.039909) (width 0.25) (layer "B.Cu") (net 5) (tstamp a355c8df-17ac-4d60-9c04-a4853b72e648))
(segment (start 85.92362 79.490389) (end 85.53564 79.878369) (width 0.25) (layer "B.Cu") (net 5) (tstamp cdf1be2e-4071-4454-8cd7-bcbf08de8392))
(segment (start 73.285142 79.740389) (end 75.260142 77.765389) (width 0.25) (layer "B.Cu") (net 5) (tstamp e6bb5120-bca8-4109-bc8a-29c95f22c556))
(segment (start 71.672642 76.740389) (end 70.672642 76.740389) (width 0.25) (layer "B.Cu") (net 6) (tstamp 1ba9e725-a99a-4bf2-a422-47721cac43eb))
(segment (start 86.172642 76.490389) (end 82.023621 72.341368) (width 0.25) (layer "B.Cu") (net 6) (tstamp 45cad235-cbf3-49e3-82ed-0ae0cff29e00))
(segment (start 76.071663 72.341368) (end 71.672642 76.740389) (width 0.25) (layer "B.Cu") (net 6) (tstamp 69b9e95d-d309-411d-814f-b11562c5aea9))
(segment (start 63.622642 73.630389) (end 67.562642 73.630389) (width 0.25) (layer "B.Cu") (net 6) (tstamp 9c017a72-b6b4-4e86-b74d-9e6c0dccf9cb))
(segment (start 76.071663 72.341368) (end 82.023621 72.341368) (width 0.25) (layer "B.Cu") (net 6) (tstamp c2b0f879-17f4-402c-87ef-eee1801e65ec))
(segment (start 86.872642 76.490389) (end 86.172642 76.490389) (width 0.25) (layer "B.Cu") (net 6) (tstamp deb6767b-39dd-42ea-9890-b98673a8986f))
(segment (start 67.562642 73.630389) (end 70.672642 76.740389) (width 0.25) (layer "B.Cu") (net 6) (tstamp eb00617e-c9fa-4ca1-bc95-1939fde3cc7b))
(segment (start 76.257857 72.790878) (end 81.724109 72.790878) (width 0.25) (layer "B.Cu") (net 7) (tstamp 1171c229-8815-470f-92cf-3faf5f28d62c))
(segment (start 85.92362 76.990389) (end 86.872642 76.990389) (width 0.25) (layer "B.Cu") (net 7) (tstamp 2219e574-e509-4a43-8e5f-70a91cb8a34a))
(segment (start 70.672642 77.740389) (end 71.308346 77.740389) (width 0.25) (layer "B.Cu") (net 7) (tstamp 611cecb3-b4d5-4e81-8992-8e82eedf2e63))
(segment (start 65.192642 77.740389) (end 70.672642 77.740389) (width 0.25) (layer "B.Cu") (net 7) (tstamp 61b88ed7-6158-4b38-8659-861131f5e107))
(segment (start 71.308346 77.740389) (end 76.257857 72.790878) (width 0.25) (layer "B.Cu") (net 7) (tstamp 80b26a6b-d588-4a72-8b03-5efc2114fce1))
(segment (start 81.724109 72.790878) (end 85.92362 76.990389) (width 0.25) (layer "B.Cu") (net 7) (tstamp ba01a274-8bf6-4c18-91f7-02df0d6b0827))
(segment (start 63.622642 76.170389) (end 65.192642 77.740389) (width 0.25) (layer "B.Cu") (net 7) (tstamp fa24ffa1-18ff-4faa-98b1-512fa547292a))
(segment (start 70.642642 78.710389) (end 70.672642 78.740389) (width 0.25) (layer "B.Cu") (net 8) (tstamp 048d33ed-2b32-43ae-8e27-721969ad710d))
(segment (start 71.118714 78.740389) (end 76.618714 73.240389) (width 0.25) (layer "B.Cu") (net 8) (tstamp 0cf1bbbc-4c06-4d23-a600-02668e963e60))
(segment (start 81.537916 73.240389) (end 85.787916 77.490389) (width 0.25) (layer "B.Cu") (net 8) (tstamp 1f57d193-6ca1-46b8-a4b9-eb981e6d6e83))
(segment (start 70.672642 78.740389) (end 71.118714 78.740389) (width 0.25) (layer "B.Cu") (net 8) (tstamp 6e9a4711-db9d-4db3-9445-fe4046be8a8b))
(segment (start 63.622642 78.710389) (end 70.642642 78.710389) (width 0.25) (layer "B.Cu") (net 8) (tstamp 943d7413-a225-492a-a03c-57f888b88a2e))
(segment (start 85.787916 77.490389) (end 86.872642 77.490389) (width 0.25) (layer "B.Cu") (net 8) (tstamp 9f4e0907-9ee1-4e26-a6d5-9ae562c49bc0))
(segment (start 76.618714 73.240389) (end 81.537916 73.240389) (width 0.25) (layer "B.Cu") (net 8) (tstamp e62d3398-7b78-460f-84df-60ea899c01a2))
(segment (start 81.422642 82.240389) (end 80.422642 81.240389) (width 0.25) (layer "B.Cu") (net 9) (tstamp 5100b3ca-e232-4280-94d3-a5a60b2f4ebc))
(segment (start 87.707368 82.240389) (end 81.422642 82.240389) (width 0.25) (layer "B.Cu") (net 9) (tstamp 975e6aa7-6024-46c1-a54d-27bd64c7c5d7))
(segment (start 88.296664 81.651093) (end 87.707368 82.240389) (width 0.25) (layer "B.Cu") (net 9) (tstamp 9a6a9721-278e-446e-846e-b596fd0ea4b0))
(segment (start 80.422642 81.240389) (end 77.035142 81.240389) (width 0.25) (layer "B.Cu") (net 9) (tstamp a8e4750c-6ad8-4963-a0b6-b1c5f609b929))
(segment (start 87.821664 79.990389) (end 88.296664 80.465389) (width 0.25) (layer "B.Cu") (net 9) (tstamp cea31b36-82e6-4847-8794-72defeae9c4a))
(segment (start 77.035142 81.240389) (end 77.010142 81.265389) (width 0.25) (layer "B.Cu") (net 9) (tstamp e0c08413-be46-47e0-832a-37a4630a3a54))
(segment (start 88.296664 80.465389) (end 88.296664 81.651093) (width 0.25) (layer "B.Cu") (net 9) (tstamp e1651834-5f0e-42f6-b184-d3ca61208522))
(segment (start 86.872642 79.990389) (end 87.821664 79.990389) (width 0.25) (layer "B.Cu") (net 9) (tstamp f911818f-ca91-4e9e-a78b-40f01f1bd216))
(segment (start 86.872642 77.990389) (end 85.422642 77.990389) (width 0.25) (layer "B.Cu") (net 10) (tstamp 238658d2-ad2f-42fe-ac3b-ce744b087ff2))
(segment (start 85.422642 77.990389) (end 82.422642 74.990389) (width 0.25) (layer "B.Cu") (net 10) (tstamp 4046ed8b-2a19-47e8-9b66-4339333d97f8))
(segment (start 82.422642 74.990389) (end 80.922642 74.990389) (width 0.25) (layer "B.Cu") (net 10) (tstamp afe2d1da-16f7-45b8-ac8f-5976fcfe0498))
(group "" (id f0bf585a-e90c-4ac6-80f3-41947f1889b5)
(members
045eb86b-a5f2-49fb-9b48-b415c84fa806
0789d90a-6802-4e93-88f0-b863a2cdb4a6
0d52575b-3aff-45dc-b890-854b77e1f1f1
18e4ba5f-a3d5-4895-ac52-b09f33615287
1a382cee-37f3-485d-b93a-359af5c2f45b
1dd5541f-86ff-46c7-bfbe-09e82c51e726
1df5a6d2-d919-4be6-8ef3-d53ff842ecb3
2422a258-b697-4263-be6e-854dda2081eb
34896990-0020-46db-b8bf-a111d00ee16d
528c689b-31a9-4e91-82d0-50f0d201d5a8
5801a1a4-1d31-4c3c-bca2-1f35dcf2bcc3
5bf8531c-9e42-4492-8461-11471dcc2e2d
5fae19f1-51a4-4365-97b4-acacca0015ba
61600210-627f-4010-8a74-bff8c0707272
6402a9ef-aa56-4515-acba-c920519c566f
6dac7112-aeda-49cd-adc1-ad07e60a1f88
70996829-f79c-42e6-bd27-2be4fa5c6e19
819f2d06-8cad-47b9-b5e0-95a5d78edd98
8353765c-8462-49ee-a0ab-310b2e70772a
8475114e-6d85-48ff-92aa-8ca9c1cc6cc8
8508f818-fea9-4cb7-b7fe-99586168216c
91334400-4ef3-4dda-b4b6-8c478eb84d07
946102df-47ea-4821-b3e1-a90f73be8aa6
95ba14a7-4894-40c7-93bc-b519bdf94417
9950bf14-ed76-4a5a-88f7-b00adeef2882
a0647297-8178-4a64-a5b4-88321e49ae9f
a5e324a4-f83c-4223-9b58-520e06530dd4
c6ebca42-51d5-407e-9f45-7fd77390668d
d4453af5-951f-4bf5-9ac3-1e1526eadfae
db2de20b-9914-4fc4-8b44-2bbeba407739
e2569d72-9525-4398-8d89-26d78c65bda6
e6edb5b8-53a1-4247-a4ff-da83e5b3dc4e
e8617fb3-f172-4c86-88ad-bed83069ebf2
ec1963b2-8d37-4107-a344-dbf7295faa8d
ef7656ce-9f5b-44e1-a19b-bd900a300aaf
f30c7c8f-c096-4758-8a09-e2517a0ce4b9
f5f92705-d956-48a8-87b2-eb004d97b7da
)
)
)