-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathyuricable.kicad_sch
1846 lines (1794 loc) · 62.9 KB
/
yuricable.kicad_sch
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
(kicad_sch (version 20230121) (generator eeschema)
(uuid ba4eb250-f119-45e3-ad24-ac49a29038eb)
(paper "A4")
(lib_symbols
(symbol "Connector:Conn_ARM_JTAG_SWD_10" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
(property "Reference" "J" (at -2.54 16.51 0)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Value" "Conn_ARM_JTAG_SWD_10" (at -2.54 13.97 0)
(effects (font (size 1.27 1.27)) (justify right bottom))
)
(property "Footprint" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "http://infocenter.arm.com/help/topic/com.arm.doc.ddi0314h/DDI0314H_coresight_components_trm.pdf" (at -8.89 -31.75 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "Cortex Debug Connector ARM SWD JTAG" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Cortex Debug Connector, standard ARM Cortex-M SWD and JTAG interface" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "PinHeader?2x05?P1.27mm*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "Conn_ARM_JTAG_SWD_10_0_1"
(rectangle (start -10.16 12.7) (end 10.16 -12.7)
(stroke (width 0.254) (type default))
(fill (type background))
)
(rectangle (start -2.794 -12.7) (end -2.286 -11.684)
(stroke (width 0) (type default))
(fill (type none))
)
(rectangle (start -0.254 -12.7) (end 0.254 -11.684)
(stroke (width 0) (type default))
(fill (type none))
)
(rectangle (start -0.254 12.7) (end 0.254 11.684)
(stroke (width 0) (type default))
(fill (type none))
)
(rectangle (start 9.144 2.286) (end 10.16 2.794)
(stroke (width 0) (type default))
(fill (type none))
)
(rectangle (start 10.16 -2.794) (end 9.144 -2.286)
(stroke (width 0) (type default))
(fill (type none))
)
(rectangle (start 10.16 -0.254) (end 9.144 0.254)
(stroke (width 0) (type default))
(fill (type none))
)
(rectangle (start 10.16 7.874) (end 9.144 7.366)
(stroke (width 0) (type default))
(fill (type none))
)
)
(symbol "Conn_ARM_JTAG_SWD_10_1_1"
(rectangle (start 9.144 -5.334) (end 10.16 -4.826)
(stroke (width 0) (type default))
(fill (type none))
)
(pin power_in line (at 0 15.24 270) (length 2.54)
(name "VTref" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin open_collector line (at 12.7 7.62 180) (length 2.54)
(name "~{RESET}" (effects (font (size 1.27 1.27))))
(number "10" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 12.7 0 180) (length 2.54)
(name "SWDIO/TMS" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 0 -15.24 90) (length 2.54)
(name "GND" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin output line (at 12.7 2.54 180) (length 2.54)
(name "SWCLK/TCK" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -15.24 90) (length 2.54) hide
(name "GND" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
(pin input line (at 12.7 -2.54 180) (length 2.54)
(name "SWO/TDO" (effects (font (size 1.27 1.27))))
(number "6" (effects (font (size 1.27 1.27))))
)
(pin no_connect line (at -10.16 0 0) (length 2.54) hide
(name "KEY" (effects (font (size 1.27 1.27))))
(number "7" (effects (font (size 1.27 1.27))))
)
(pin output line (at 12.7 -5.08 180) (length 2.54)
(name "NC/TDI" (effects (font (size 1.27 1.27))))
(number "8" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -2.54 -15.24 90) (length 2.54)
(name "GNDDetect" (effects (font (size 1.27 1.27))))
(number "9" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "power:GND" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "#PWR" (at 0 -6.35 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (at 0 -3.81 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "global power" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Power symbol creates a global label with name \"GND\" , ground" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "GND_0_1"
(polyline
(pts
(xy 0 0)
(xy 0 -1.27)
(xy 1.27 -1.27)
(xy 0 -2.54)
(xy -1.27 -1.27)
(xy 0 -1.27)
)
(stroke (width 0) (type default))
(fill (type none))
)
)
(symbol "GND_1_1"
(pin power_in line (at 0 0 270) (length 0) hide
(name "GND" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
)
(junction (at 43.18 69.85) (diameter 0) (color 0 0 0 0)
(uuid 07325fc8-e961-4d10-8a58-3683fd878dc7)
)
(junction (at 74.93 69.85) (diameter 0) (color 0 0 0 0)
(uuid 73f7a914-eb23-4431-97b3-2b6d9d4cb60d)
)
(wire (pts (xy 110.49 24.13) (xy 107.95 24.13))
(stroke (width 0) (type default))
(uuid 0365be4d-6798-4e53-a788-d5baf3be6032)
)
(wire (pts (xy 123.19 57.15) (xy 120.65 57.15))
(stroke (width 0) (type default))
(uuid 0b0b047b-075f-4419-84b9-05846c933be6)
)
(wire (pts (xy 77.47 39.37) (xy 72.39 39.37))
(stroke (width 0) (type default))
(uuid 0ba8815c-066c-4023-a5a3-5ce34f47d9c4)
)
(wire (pts (xy 74.93 54.61) (xy 72.39 54.61))
(stroke (width 0) (type default))
(uuid 0fa4cc9d-4199-46e2-b097-7788507bcacf)
)
(wire (pts (xy 72.39 46.99) (xy 74.93 46.99))
(stroke (width 0) (type default))
(uuid 10511ee3-d88b-475d-a9bb-d6293c819b46)
)
(wire (pts (xy 40.64 41.91) (xy 43.18 41.91))
(stroke (width 0) (type default))
(uuid 10dd2b92-c2b4-4947-af80-cc6b2389db4d)
)
(wire (pts (xy 72.39 24.13) (xy 74.93 24.13))
(stroke (width 0) (type default))
(uuid 11ece51f-26b2-4de7-a830-5336f6fa24f6)
)
(wire (pts (xy 74.93 69.85) (xy 74.93 71.12))
(stroke (width 0) (type default))
(uuid 17b22106-dbc5-4a66-a7df-b523382a8b2b)
)
(wire (pts (xy 43.18 69.85) (xy 43.18 71.12))
(stroke (width 0) (type default))
(uuid 1e96bbc6-e4f6-4b78-9025-71688158ddc0)
)
(wire (pts (xy 170.18 21.59) (xy 172.72 21.59))
(stroke (width 0) (type default))
(uuid 204db6af-f930-4c89-ac8b-ba2ccf8f949a)
)
(wire (pts (xy 123.19 49.53) (xy 120.65 49.53))
(stroke (width 0) (type default))
(uuid 2940078e-5f53-47a4-8a8e-d078e82a311f)
)
(wire (pts (xy 120.65 46.99) (xy 123.19 46.99))
(stroke (width 0) (type default))
(uuid 2be9c680-bc19-4d4b-ab5e-014cdaa6db33)
)
(wire (pts (xy 40.64 57.15) (xy 43.18 57.15))
(stroke (width 0) (type default))
(uuid 2e4c94c8-38bb-495a-a17f-a2b08143e953)
)
(wire (pts (xy 107.95 31.75) (xy 110.49 31.75))
(stroke (width 0) (type default))
(uuid 32cb9f72-e67b-4255-a41c-f56d2b66f65b)
)
(wire (pts (xy 107.95 21.59) (xy 110.49 21.59))
(stroke (width 0) (type default))
(uuid 368d9a65-f1f9-496d-ae79-894fe9249594)
)
(wire (pts (xy 43.18 59.69) (xy 40.64 59.69))
(stroke (width 0) (type default))
(uuid 3e34c473-bb57-4af7-b12d-ca819dede9b6)
)
(wire (pts (xy 187.96 26.67) (xy 190.5 26.67))
(stroke (width 0) (type default))
(uuid 3f6fe99e-3d95-4b1f-84d7-9169d3802a1f)
)
(wire (pts (xy 74.93 67.31) (xy 72.39 67.31))
(stroke (width 0) (type default))
(uuid 3fbf1ed1-638d-4c5c-a992-de9d7c5fd3be)
)
(wire (pts (xy 74.93 59.69) (xy 72.39 59.69))
(stroke (width 0) (type default))
(uuid 433f7f09-8289-4169-ae27-6699e913fab6)
)
(wire (pts (xy 74.93 49.53) (xy 72.39 49.53))
(stroke (width 0) (type default))
(uuid 4638025d-6b7d-43f0-a99f-e795f89b9420)
)
(wire (pts (xy 72.39 29.21) (xy 77.47 29.21))
(stroke (width 0) (type default))
(uuid 4c2c82ca-200d-407e-8eb1-ad6987f67c75)
)
(wire (pts (xy 110.49 40.64) (xy 107.95 40.64))
(stroke (width 0) (type default))
(uuid 4cd9fa3a-643c-4c98-86ca-413d97fa70a1)
)
(wire (pts (xy 151.13 26.67) (xy 153.67 26.67))
(stroke (width 0) (type default))
(uuid 4e190144-5385-4c6b-8f56-69ecf15f5952)
)
(wire (pts (xy 72.39 57.15) (xy 74.93 57.15))
(stroke (width 0) (type default))
(uuid 55bf3e5e-6b8c-4388-973a-004bff39e993)
)
(wire (pts (xy 45.72 39.37) (xy 40.64 39.37))
(stroke (width 0) (type default))
(uuid 5708a664-e8e3-45a7-ae7e-62c113d3e937)
)
(wire (pts (xy 77.47 26.67) (xy 72.39 26.67))
(stroke (width 0) (type default))
(uuid 597d5d1b-b4d3-4adc-a283-6690dad0525a)
)
(wire (pts (xy 45.72 26.67) (xy 40.64 26.67))
(stroke (width 0) (type default))
(uuid 5b99e07d-ae52-4af4-a524-0081434014bf)
)
(wire (pts (xy 187.96 31.75) (xy 190.5 31.75))
(stroke (width 0) (type default))
(uuid 5ed58f6d-5960-49e0-99a2-d4a6dd4e0217)
)
(wire (pts (xy 40.64 29.21) (xy 45.72 29.21))
(stroke (width 0) (type default))
(uuid 6064210d-07ec-4c61-99c4-12fbb38c62c7)
)
(wire (pts (xy 72.39 69.85) (xy 74.93 69.85))
(stroke (width 0) (type default))
(uuid 60af433d-d7c1-4522-af49-c2c2a183467a)
)
(wire (pts (xy 40.64 69.85) (xy 43.18 69.85))
(stroke (width 0) (type default))
(uuid 61445b47-4efa-412e-9fda-1a55a4c7d239)
)
(wire (pts (xy 134.62 24.13) (xy 137.16 24.13))
(stroke (width 0) (type default))
(uuid 682124b1-df56-410e-b6d2-1f512da08952)
)
(wire (pts (xy 43.18 49.53) (xy 40.64 49.53))
(stroke (width 0) (type default))
(uuid 6ff658d2-4720-42e7-993a-a6bee64ef21a)
)
(wire (pts (xy 134.62 29.21) (xy 137.16 29.21))
(stroke (width 0) (type default))
(uuid 75b0b1d8-c357-4b2e-8d53-e73b656974ad)
)
(wire (pts (xy 123.19 54.61) (xy 120.65 54.61))
(stroke (width 0) (type default))
(uuid 7db379f1-8d4e-41af-97da-1c6e8ff7ee14)
)
(wire (pts (xy 170.18 24.13) (xy 172.72 24.13))
(stroke (width 0) (type default))
(uuid 7dd88082-8f8c-40cb-857c-63dba29b9c10)
)
(wire (pts (xy 134.62 31.75) (xy 137.16 31.75))
(stroke (width 0) (type default))
(uuid 8058a68f-a39a-4e30-94d4-c0baa11b4f6f)
)
(wire (pts (xy 204.47 24.13) (xy 207.01 24.13))
(stroke (width 0) (type default))
(uuid 80d6da08-6c56-45b1-a64c-a46cba057de9)
)
(wire (pts (xy 204.47 26.67) (xy 207.01 26.67))
(stroke (width 0) (type default))
(uuid 830133ec-62b0-43b7-92e9-2d3040d0ffa6)
)
(wire (pts (xy 40.64 36.83) (xy 45.72 36.83))
(stroke (width 0) (type default))
(uuid 8adad79d-7da3-40cf-ac25-e6b82372af7b)
)
(wire (pts (xy 187.96 24.13) (xy 190.5 24.13))
(stroke (width 0) (type default))
(uuid 8e04e25a-7ded-4cab-9318-b83df71d16f4)
)
(wire (pts (xy 77.47 31.75) (xy 72.39 31.75))
(stroke (width 0) (type default))
(uuid 8f2b1ae8-404c-494e-a941-90f2a29f7758)
)
(wire (pts (xy 72.39 36.83) (xy 77.47 36.83))
(stroke (width 0) (type default))
(uuid 90385970-39fb-472c-bef9-7793b7818804)
)
(wire (pts (xy 110.49 34.29) (xy 107.95 34.29))
(stroke (width 0) (type default))
(uuid 9344e9b4-3d08-4ca0-9f59-fb074a1354b2)
)
(wire (pts (xy 151.13 29.21) (xy 153.67 29.21))
(stroke (width 0) (type default))
(uuid 93527beb-dc50-4f9d-816d-c1674a04376e)
)
(wire (pts (xy 107.95 26.67) (xy 110.49 26.67))
(stroke (width 0) (type default))
(uuid 959e3e5d-6fb2-4935-8978-c867bb6d5976)
)
(wire (pts (xy 204.47 21.59) (xy 207.01 21.59))
(stroke (width 0) (type default))
(uuid 987700e3-5744-49c4-aa25-e7a16fed24fd)
)
(wire (pts (xy 72.39 64.77) (xy 77.47 64.77))
(stroke (width 0) (type default))
(uuid 9de9e869-af84-41cb-a3b4-ada7f7a70e0a)
)
(wire (pts (xy 187.96 29.21) (xy 190.5 29.21))
(stroke (width 0) (type default))
(uuid 9ff7aac7-8fae-4544-803e-07ed7143314f)
)
(wire (pts (xy 170.18 31.75) (xy 172.72 31.75))
(stroke (width 0) (type default))
(uuid a1645149-8ecf-40af-af83-ba2097e820d6)
)
(wire (pts (xy 45.72 62.23) (xy 40.64 62.23))
(stroke (width 0) (type default))
(uuid a1d5050b-8bbf-4dc3-adad-9bce2cbf6a7b)
)
(wire (pts (xy 170.18 26.67) (xy 172.72 26.67))
(stroke (width 0) (type default))
(uuid a3ffec16-6799-42ed-abf2-fe27a7db0d14)
)
(wire (pts (xy 110.49 29.21) (xy 107.95 29.21))
(stroke (width 0) (type default))
(uuid a5eff01d-6888-42b3-9fa7-1b3e62ad0b4e)
)
(wire (pts (xy 204.47 29.21) (xy 207.01 29.21))
(stroke (width 0) (type default))
(uuid a630ff80-18b4-4968-b3e9-0373a2e0de3b)
)
(wire (pts (xy 134.62 26.67) (xy 137.16 26.67))
(stroke (width 0) (type default))
(uuid ab151230-1870-4004-9405-31a87e945b6e)
)
(wire (pts (xy 40.64 24.13) (xy 43.18 24.13))
(stroke (width 0) (type default))
(uuid ac2de443-f30c-47a0-b0ba-49888b4baff3)
)
(wire (pts (xy 45.72 31.75) (xy 40.64 31.75))
(stroke (width 0) (type default))
(uuid b62b4fe4-43c5-4868-84c5-e509f680e72a)
)
(wire (pts (xy 170.18 29.21) (xy 172.72 29.21))
(stroke (width 0) (type default))
(uuid b6b9504c-0535-4eb9-81ae-fbbe7bacebe1)
)
(wire (pts (xy 151.13 31.75) (xy 153.67 31.75))
(stroke (width 0) (type default))
(uuid b6f1f7f3-4466-4339-9345-7e675230fbd5)
)
(wire (pts (xy 40.64 64.77) (xy 45.72 64.77))
(stroke (width 0) (type default))
(uuid b96ff6f4-6572-4503-ba6d-cc56d7ed10a6)
)
(wire (pts (xy 74.93 34.29) (xy 72.39 34.29))
(stroke (width 0) (type default))
(uuid bed9e2ca-111d-4165-9c40-ad3b9115c686)
)
(wire (pts (xy 40.64 52.07) (xy 43.18 52.07))
(stroke (width 0) (type default))
(uuid c0108ded-eafd-4257-b005-c904f6e95c4f)
)
(wire (pts (xy 72.39 52.07) (xy 74.93 52.07))
(stroke (width 0) (type default))
(uuid c27c1fac-8e4c-423d-af45-b8614840a64d)
)
(wire (pts (xy 77.47 69.85) (xy 74.93 69.85))
(stroke (width 0) (type default))
(uuid c3e3bc85-a9a5-4ab7-a9db-5ec3726ed14c)
)
(wire (pts (xy 120.65 52.07) (xy 123.19 52.07))
(stroke (width 0) (type default))
(uuid c64a3555-70f2-459b-9cf4-68d935f2f6ac)
)
(wire (pts (xy 107.95 38.1) (xy 110.49 38.1))
(stroke (width 0) (type default))
(uuid cacdca25-033d-416c-ad01-83cb1ceace0c)
)
(wire (pts (xy 204.47 31.75) (xy 207.01 31.75))
(stroke (width 0) (type default))
(uuid d1d8e711-7eb6-45c7-83d4-166fc234cb0d)
)
(wire (pts (xy 134.62 21.59) (xy 137.16 21.59))
(stroke (width 0) (type default))
(uuid d620aaa3-1cd1-4da4-bd9d-b250c60c6cd5)
)
(wire (pts (xy 43.18 54.61) (xy 40.64 54.61))
(stroke (width 0) (type default))
(uuid da401b74-e0a3-47b3-ace5-20ff639dde5b)
)
(wire (pts (xy 151.13 24.13) (xy 153.67 24.13))
(stroke (width 0) (type default))
(uuid da5eca45-e099-4178-bf70-0075940a3e75)
)
(wire (pts (xy 43.18 34.29) (xy 40.64 34.29))
(stroke (width 0) (type default))
(uuid dd166135-f930-4d4f-bfd5-84e2f043c3bd)
)
(wire (pts (xy 45.72 69.85) (xy 43.18 69.85))
(stroke (width 0) (type default))
(uuid ec3220cc-d316-4de5-aed4-72e86d7eb8f6)
)
(wire (pts (xy 43.18 67.31) (xy 40.64 67.31))
(stroke (width 0) (type default))
(uuid ee9d178a-3580-4056-b956-e4a8071b8952)
)
(wire (pts (xy 72.39 41.91) (xy 74.93 41.91))
(stroke (width 0) (type default))
(uuid f4fb1bfa-551f-4a27-ab7e-8308957697c6)
)
(wire (pts (xy 151.13 21.59) (xy 153.67 21.59))
(stroke (width 0) (type default))
(uuid f753fce7-8b4f-47f9-8555-822c2ed2d44a)
)
(wire (pts (xy 40.64 46.99) (xy 43.18 46.99))
(stroke (width 0) (type default))
(uuid f797c3e1-16b0-4c96-a05b-ea6cb859756d)
)
(wire (pts (xy 77.47 62.23) (xy 72.39 62.23))
(stroke (width 0) (type default))
(uuid f82d24f9-19d9-461d-b09b-9c817a937969)
)
(wire (pts (xy 187.96 21.59) (xy 190.5 21.59))
(stroke (width 0) (type default))
(uuid fda36ced-fb92-45cf-8ddf-2b78c1b39438)
)
(text "Макетка" (at 101.6 54.61 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid ab8ceca2-4eb8-4c7f-aa1c-2dbee8933db9)
)
(label "PB2" (at 110.49 31.75 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 020a58f6-b4c2-47fa-a38f-e02b5116a7d2)
)
(label "5V" (at 137.16 29.21 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 066a3c2c-ead8-40c7-9d18-b733db11ddd8)
)
(label "PA7" (at 77.47 26.67 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 07a4775b-d32b-4658-ba0d-ea53b4cfa99b)
)
(label "GND" (at 207.01 31.75 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 0870425c-f14d-481b-939a-a33faa1aa83f)
)
(label "PC1" (at 45.72 62.23 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 08c74c58-fad1-467b-9c62-188d85041fbb)
)
(label "PB14" (at 74.93 67.31 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 0d335ad2-42e9-4b47-8282-d626ee635fbc)
)
(label "GND" (at 207.01 26.67 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 0e3229b4-0cf0-4a84-bbbc-7608684748c4)
)
(label "GND" (at 207.01 24.13 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 14cd70cc-0ead-4097-b446-898d1e8ebe53)
)
(label "SWCLK" (at 74.93 49.53 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 16d7ca66-40f7-4c3c-86cd-45f560decce3)
)
(label "GND" (at 207.01 29.21 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 24521695-ef2a-400e-9815-c4c198874191)
)
(label "GND" (at 172.72 24.13 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 279584e3-a900-4f56-a1d7-f626521f0783)
)
(label "3.3V" (at 153.67 31.75 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 391a0b9b-787f-4d87-bd24-a4c8f2a271cf)
)
(label "PA6" (at 77.47 29.21 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 40f2c787-8679-4bb5-979d-e6ae6c4be4c3)
)
(label "PB14" (at 43.18 67.31 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 4c83f909-bc43-4c16-816c-700d453f19c3)
)
(label "GND" (at 43.18 41.91 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 531fdad3-d5e7-43df-834f-d6c700f58eb3)
)
(label "GND" (at 74.93 52.07 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 5b0f233b-95f2-4461-9a42-68f0559b4e28)
)
(label "PC3" (at 110.49 34.29 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 5f7ffa15-8359-4ae2-936c-9c6ec583df37)
)
(label "SWCLK" (at 123.19 49.53 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 634132c7-a2e8-4f3f-bec8-ec22583c1661)
)
(label "PC1" (at 77.47 62.23 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 670fb7fa-1f9b-4ca4-afb9-8095ef0d4f09)
)
(label "PC3" (at 77.47 39.37 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 67e6dc0f-1481-4827-ab19-801566626d07)
)
(label "3.3V" (at 153.67 26.67 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 68f4e8fc-cd68-4ca3-ad88-b7cbfde2c903)
)
(label "SWCLK" (at 43.18 49.53 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 6b31e562-d1d1-4a04-8e70-63b9d3abbb08)
)
(label "GND" (at 190.5 24.13 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 6c5a5033-c542-43ad-99a6-bd6abcfd3442)
)
(label "PA7" (at 45.72 26.67 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 6cb70abd-4149-45ef-8d5b-25b6641224f6)
)
(label "SWO" (at 74.93 34.29 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 6cf71a44-630e-4ae4-b6d3-3aa3eff13b82)
)
(label "SWDIO" (at 74.93 54.61 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 6e4052e1-2f90-4515-aef0-4ce5aa589f37)
)
(label "3.3V" (at 153.67 24.13 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 73d4dd55-31b5-4f1c-bd12-f633919e1d2e)
)
(label "SWDIO" (at 43.18 54.61 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 73eec664-66c3-49fd-b656-c201a425c3d2)
)
(label "GND" (at 172.72 31.75 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 76559e2d-56fa-4928-9416-6940d6601088)
)
(label "5V" (at 137.16 24.13 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 77840211-4d15-47fe-8296-1b15a1067abe)
)
(label "UART_TX" (at 74.93 57.15 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 79939a40-a716-4a1b-bb03-cbd3dcb530d2)
)
(label "UART_RX" (at 74.93 59.69 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 799efc8d-f4f4-404c-b169-3ad13728abbb)
)
(label "UART_TX" (at 43.18 57.15 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 7d0539f0-2429-4e1f-8780-b82aa2915e2e)
)
(label "GND" (at 190.5 29.21 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 7e420ab1-3919-41c1-b58e-a04763d73e4e)
)
(label "SWO" (at 43.18 34.29 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 810227cd-695f-4aed-8f5b-b17b28f40890)
)
(label "GND" (at 172.72 21.59 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 816192a5-a5b1-46d2-a836-35de7fcbfc97)
)
(label "PA7" (at 110.49 21.59 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 84b4ba44-b7fc-485d-a1ec-93509ca3bff8)
)
(label "GND" (at 172.72 26.67 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 88c1d787-6605-4130-a63c-5a535605d3d0)
)
(label "5V" (at 74.93 24.13 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 8b269a7c-c7a9-4d28-a5a2-1a75fbe945fc)
)
(label "PC1" (at 110.49 38.1 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 8dbd4e48-d04b-43e1-afdb-e45168ab6b5b)
)
(label "3.3V" (at 153.67 21.59 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 8e963cb5-f220-4f7e-b045-5ca63a88403b)
)
(label "PC0" (at 110.49 40.64 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 9895d2c7-8b16-421c-b51e-8228b4ddf736)
)
(label "PB2" (at 45.72 36.83 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 9a67efbe-60fb-4d3e-b4ca-de1a4f69a438)
)
(label "PC0" (at 45.72 64.77 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid a0d80d0d-c519-4491-a938-f80582b442f3)
)
(label "GND" (at 190.5 31.75 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid a13ee4c2-5adb-4043-b3dd-511f1feacd1b)
)
(label "GND" (at 190.5 21.59 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid a4c909a5-5d0d-4563-9ce3-ad42ffa3af23)
)
(label "PA4" (at 45.72 31.75 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid a56248d6-9e6b-436d-8e60-8169a8bfa82f)
)
(label "UART_RX" (at 43.18 59.69 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid a8005dde-05eb-4d4b-be66-c01437d87711)
)
(label "3.3V" (at 74.93 46.99 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid aa5a7ae1-5f0e-47eb-b22b-3ed2260eb582)
)
(label "5V" (at 137.16 26.67 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid ad55c0d4-8a01-42b0-a884-516c5ba464f1)
)
(label "PA6" (at 45.72 29.21 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid c076ab9a-553d-4590-9efc-b903dea0dd16)
)
(label "5V" (at 137.16 21.59 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid c6e7e9b0-51ad-4279-a452-98fd57a81552)
)
(label "PC0" (at 77.47 64.77 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid c7f95c07-b1ca-4e0e-b348-27220e77a3a0)
)
(label "3.3V" (at 153.67 29.21 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid cae26cee-531a-43b1-abc4-2df5fe528397)
)
(label "SWDIO" (at 123.19 46.99 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid cca05603-4ceb-4950-9740-1d6a252c7911)
)
(label "PA6" (at 110.49 24.13 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid ccba3ca2-23f0-4ed9-8a17-440c2c858d5a)
)
(label "GND" (at 207.01 21.59 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid cf75762d-7bf0-4369-8097-4c443a016e4d)
)
(label "GND" (at 172.72 29.21 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid d16a94dd-934f-4413-bd43-4eb251e8a4e9)
)
(label "3.3V" (at 43.18 46.99 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid d706d3a7-9e81-49d4-a1ff-9cbcb5b9cd7c)
)
(label "5V" (at 43.18 24.13 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid d7746ae9-61a8-4881-a531-bc468bdcf82f)
)
(label "PB14" (at 123.19 57.15 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid da93f32f-d2e9-491e-9c6f-0b8dd1efb23b)
)
(label "UART_RX" (at 123.19 54.61 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid dd3e00f0-8237-40c5-8257-e9dd4496da81)
)
(label "PA4" (at 110.49 26.67 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid dd53da05-b250-404a-993b-154dddadcda1)
)
(label "PB2" (at 77.47 36.83 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid ddbfa135-aa29-4eb1-9e82-78eba6605faf)
)
(label "GND" (at 45.72 69.85 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid e5a3ac07-c843-4386-b610-3183d72a34da)
)
(label "SWO" (at 110.49 29.21 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid ec38ce71-fd98-4f2d-a280-3cc2ed807f93)
)
(label "GND" (at 77.47 69.85 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid f5f85e7d-8cdb-453e-939d-1b6c5426835d)
)
(label "PC3" (at 45.72 39.37 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid f62ba2ac-846f-496e-a1d2-b4140f193b9c)
)
(label "GND" (at 43.18 52.07 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid f687c675-1cd4-4153-bae7-82ead8b7fee8)
)
(label "PA4" (at 77.47 31.75 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid f912844b-b4bb-4026-896b-a28f1da04aa6)
)
(label "GND" (at 190.5 26.67 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid fbb4c36d-8f1f-49df-9713-5152419c0f0d)
)
(label "GND" (at 74.93 41.91 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid fc8e2c98-1fce-4fcd-87f4-ad69f87007b4)
)
(label "5V" (at 137.16 31.75 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid feedca4d-a922-4464-9283-f182357636e9)
)
(label "UART_TX" (at 123.19 52.07 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid ff174cfd-edfd-4106-a03e-860a5f3dc030)
)
(symbol (lib_id "lomalkin_kicad_symbols:SolderPad") (at 106.68 55.88 180) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 00000000-0000-0000-0000-00005fe7b9e9)
(property "Reference" "X1" (at 104.9528 58.3692 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "SolderPad" (at 105.41 54.61 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Footprint" "lomalkin_kicad_footprints:Flipper-SolderPad" (at 106.68 55.88 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 106.68 55.88 0)
(effects (font (size 1.27 1.27)) hide)
)
(instances
(project "yuricable"
(path "/ba4eb250-f119-45e3-ad24-ac49a29038eb"
(reference "X1") (unit 1)
)
)
)
)
(symbol (lib_id "lomalkin_kicad_symbols:FlipperZero") (at 30.48 48.26 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 00000000-0000-0000-0000-00005fe856cf)
(property "Reference" "U1" (at 31.2674 17.399 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "FlipperZero" (at 31.2674 19.7104 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "lomalkin_kicad_footprints:FlipperZero" (at 29.21 45.72 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 29.21 45.72 0)
(effects (font (size 1.27 1.27)) hide)
)
(instances
(project "yuricable"
(path "/ba4eb250-f119-45e3-ad24-ac49a29038eb"
(reference "U1") (unit 1)
)
)
)
)
(symbol (lib_id "power:GND") (at 43.18 71.12 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 00000000-0000-0000-0000-00005fe86052)
(property "Reference" "#PWR0101" (at 43.18 77.47 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (at 43.307 75.5142 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 43.18 71.12 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 43.18 71.12 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 4d2bfcee-3daa-4675-ad87-bea10bba9e3b))
(instances
(project "yuricable"
(path "/ba4eb250-f119-45e3-ad24-ac49a29038eb"
(reference "#PWR0101") (unit 1)
)
)
)
)
(symbol (lib_id "lomalkin_kicad_symbols:SolderPad") (at 120.65 46.99 180) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 00000000-0000-0000-0000-00005fed9a41)
(property "Reference" "X20" (at 114.3 46.99 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "SolderPad" (at 119.38 45.72 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Footprint" "lomalkin_kicad_footprints:Flipper-SolderPad" (at 120.65 46.99 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 120.65 46.99 0)
(effects (font (size 1.27 1.27)) hide)
)
(instances
(project "yuricable"
(path "/ba4eb250-f119-45e3-ad24-ac49a29038eb"
(reference "X20") (unit 1)
)
)
)
)
(symbol (lib_id "lomalkin_kicad_symbols:SolderPad") (at 120.65 49.53 180) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 00000000-0000-0000-0000-00005fed9ab3)
(property "Reference" "X26" (at 114.3 49.53 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "SolderPad" (at 119.38 48.26 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Footprint" "lomalkin_kicad_footprints:Flipper-SolderPad" (at 120.65 49.53 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 120.65 49.53 0)
(effects (font (size 1.27 1.27)) hide)
)
(instances
(project "yuricable"
(path "/ba4eb250-f119-45e3-ad24-ac49a29038eb"
(reference "X26") (unit 1)
)
)
)
)
(symbol (lib_id "lomalkin_kicad_symbols:SolderPad") (at 120.65 52.07 180) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 00000000-0000-0000-0000-00005fed9b09)
(property "Reference" "X32" (at 114.3 52.07 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "SolderPad" (at 119.38 50.8 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Footprint" "lomalkin_kicad_footprints:Flipper-SolderPad" (at 120.65 52.07 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 120.65 52.07 0)
(effects (font (size 1.27 1.27)) hide)
)
(instances
(project "yuricable"
(path "/ba4eb250-f119-45e3-ad24-ac49a29038eb"
(reference "X32") (unit 1)
)
)
)
)
(symbol (lib_id "lomalkin_kicad_symbols:SolderPad") (at 120.65 54.61 180) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 00000000-0000-0000-0000-00005fed9b5d)
(property "Reference" "X33" (at 114.3 54.61 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "SolderPad" (at 119.38 53.34 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Footprint" "lomalkin_kicad_footprints:Flipper-SolderPad" (at 120.65 54.61 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 120.65 54.61 0)
(effects (font (size 1.27 1.27)) hide)
)
(instances
(project "yuricable"
(path "/ba4eb250-f119-45e3-ad24-ac49a29038eb"
(reference "X33") (unit 1)
)
)
)
)
(symbol (lib_id "lomalkin_kicad_symbols:SolderPad") (at 120.65 57.15 180) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 00000000-0000-0000-0000-00005fee15d0)
(property "Reference" "X34" (at 114.3 57.15 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "SolderPad" (at 119.38 55.88 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Footprint" "lomalkin_kicad_footprints:Flipper-SolderPad" (at 120.65 57.15 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 120.65 57.15 0)
(effects (font (size 1.27 1.27)) hide)
)
(instances
(project "yuricable"
(path "/ba4eb250-f119-45e3-ad24-ac49a29038eb"
(reference "X34") (unit 1)
)
)
)
)
(symbol (lib_id "lomalkin_kicad_symbols:SolderPad") (at 204.47 21.59 180) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 00000000-0000-0000-0000-00005fee176d)
(property "Reference" "X35" (at 198.12 21.59 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "SolderPad" (at 203.2 20.32 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Footprint" "lomalkin_kicad_footprints:Flipper-SolderPad" (at 204.47 21.59 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 204.47 21.59 0)
(effects (font (size 1.27 1.27)) hide)
)
(instances
(project "yuricable"
(path "/ba4eb250-f119-45e3-ad24-ac49a29038eb"
(reference "X35") (unit 1)
)
)
)
)
(symbol (lib_id "lomalkin_kicad_symbols:SolderPad") (at 204.47 24.13 180) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 00000000-0000-0000-0000-00005fee1775)
(property "Reference" "X36" (at 198.12 24.13 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "SolderPad" (at 203.2 22.86 0)
(effects (font (size 1.27 1.27)) hide)
)