-
Notifications
You must be signed in to change notification settings - Fork 0
/
floppy-adapter-2.kicad_sch
994 lines (981 loc) · 37.5 KB
/
floppy-adapter-2.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
(kicad_sch (version 20230121) (generator eeschema)
(uuid 0d35483a-0b12-46cc-b9f2-896fd6831779)
(paper "A4")
(lib_symbols
(symbol "Connector:TestPoint" (pin_numbers hide) (pin_names (offset 0.762) hide) (in_bom yes) (on_board yes)
(property "Reference" "TP" (at 0 6.858 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "TestPoint" (at 0 5.08 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 5.08 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 5.08 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "test point tp" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "test point" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "Pin* Test*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "TestPoint_0_1"
(circle (center 0 3.302) (radius 0.762)
(stroke (width 0) (type default))
(fill (type none))
)
)
(symbol "TestPoint_1_1"
(pin passive line (at 0 0 90) (length 2.54)
(name "1" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Connector_Generic:Conn_02x17_Odd_Even" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
(property "Reference" "J" (at 1.27 22.86 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "Conn_02x17_Odd_Even" (at 1.27 -22.86 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" "connector" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Generic connector, double row, 02x17, odd/even pin numbering scheme (row 1 odd numbers, row 2 even numbers), script generated (kicad-library-utils/schlib/autogen/connector/)" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "Connector*:*_2x??_*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "Conn_02x17_Odd_Even_1_1"
(rectangle (start -1.27 -20.193) (end 0 -20.447)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start -1.27 -17.653) (end 0 -17.907)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start -1.27 -15.113) (end 0 -15.367)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start -1.27 -12.573) (end 0 -12.827)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start -1.27 -10.033) (end 0 -10.287)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start -1.27 -7.493) (end 0 -7.747)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start -1.27 -4.953) (end 0 -5.207)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start -1.27 -2.413) (end 0 -2.667)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start -1.27 0.127) (end 0 -0.127)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start -1.27 2.667) (end 0 2.413)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start -1.27 5.207) (end 0 4.953)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start -1.27 7.747) (end 0 7.493)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start -1.27 10.287) (end 0 10.033)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start -1.27 12.827) (end 0 12.573)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start -1.27 15.367) (end 0 15.113)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start -1.27 17.907) (end 0 17.653)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start -1.27 20.447) (end 0 20.193)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start -1.27 21.59) (end 3.81 -21.59)
(stroke (width 0.254) (type default))
(fill (type background))
)
(rectangle (start 3.81 -20.193) (end 2.54 -20.447)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start 3.81 -17.653) (end 2.54 -17.907)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start 3.81 -15.113) (end 2.54 -15.367)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start 3.81 -12.573) (end 2.54 -12.827)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start 3.81 -10.033) (end 2.54 -10.287)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start 3.81 -7.493) (end 2.54 -7.747)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start 3.81 -4.953) (end 2.54 -5.207)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start 3.81 -2.413) (end 2.54 -2.667)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start 3.81 0.127) (end 2.54 -0.127)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start 3.81 2.667) (end 2.54 2.413)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start 3.81 5.207) (end 2.54 4.953)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start 3.81 7.747) (end 2.54 7.493)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start 3.81 10.287) (end 2.54 10.033)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start 3.81 12.827) (end 2.54 12.573)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start 3.81 15.367) (end 2.54 15.113)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start 3.81 17.907) (end 2.54 17.653)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start 3.81 20.447) (end 2.54 20.193)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(pin passive line (at -5.08 20.32 0) (length 3.81)
(name "Pin_1" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 7.62 10.16 180) (length 3.81)
(name "Pin_10" (effects (font (size 1.27 1.27))))
(number "10" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 7.62 0) (length 3.81)
(name "Pin_11" (effects (font (size 1.27 1.27))))
(number "11" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 7.62 7.62 180) (length 3.81)
(name "Pin_12" (effects (font (size 1.27 1.27))))
(number "12" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 5.08 0) (length 3.81)
(name "Pin_13" (effects (font (size 1.27 1.27))))
(number "13" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 7.62 5.08 180) (length 3.81)
(name "Pin_14" (effects (font (size 1.27 1.27))))
(number "14" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 2.54 0) (length 3.81)
(name "Pin_15" (effects (font (size 1.27 1.27))))
(number "15" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 7.62 2.54 180) (length 3.81)
(name "Pin_16" (effects (font (size 1.27 1.27))))
(number "16" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 0 0) (length 3.81)
(name "Pin_17" (effects (font (size 1.27 1.27))))
(number "17" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 7.62 0 180) (length 3.81)
(name "Pin_18" (effects (font (size 1.27 1.27))))
(number "18" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 -2.54 0) (length 3.81)
(name "Pin_19" (effects (font (size 1.27 1.27))))
(number "19" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 7.62 20.32 180) (length 3.81)
(name "Pin_2" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 7.62 -2.54 180) (length 3.81)
(name "Pin_20" (effects (font (size 1.27 1.27))))
(number "20" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 -5.08 0) (length 3.81)
(name "Pin_21" (effects (font (size 1.27 1.27))))
(number "21" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 7.62 -5.08 180) (length 3.81)
(name "Pin_22" (effects (font (size 1.27 1.27))))
(number "22" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 -7.62 0) (length 3.81)
(name "Pin_23" (effects (font (size 1.27 1.27))))
(number "23" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 7.62 -7.62 180) (length 3.81)
(name "Pin_24" (effects (font (size 1.27 1.27))))
(number "24" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 -10.16 0) (length 3.81)
(name "Pin_25" (effects (font (size 1.27 1.27))))
(number "25" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 7.62 -10.16 180) (length 3.81)
(name "Pin_26" (effects (font (size 1.27 1.27))))
(number "26" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 -12.7 0) (length 3.81)
(name "Pin_27" (effects (font (size 1.27 1.27))))
(number "27" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 7.62 -12.7 180) (length 3.81)
(name "Pin_28" (effects (font (size 1.27 1.27))))
(number "28" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 -15.24 0) (length 3.81)
(name "Pin_29" (effects (font (size 1.27 1.27))))
(number "29" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 17.78 0) (length 3.81)
(name "Pin_3" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 7.62 -15.24 180) (length 3.81)
(name "Pin_30" (effects (font (size 1.27 1.27))))
(number "30" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 -17.78 0) (length 3.81)
(name "Pin_31" (effects (font (size 1.27 1.27))))
(number "31" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 7.62 -17.78 180) (length 3.81)
(name "Pin_32" (effects (font (size 1.27 1.27))))
(number "32" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 -20.32 0) (length 3.81)
(name "Pin_33" (effects (font (size 1.27 1.27))))
(number "33" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 7.62 -20.32 180) (length 3.81)
(name "Pin_34" (effects (font (size 1.27 1.27))))
(number "34" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 7.62 17.78 180) (length 3.81)
(name "Pin_4" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 15.24 0) (length 3.81)
(name "Pin_5" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 7.62 15.24 180) (length 3.81)
(name "Pin_6" (effects (font (size 1.27 1.27))))
(number "6" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 12.7 0) (length 3.81)
(name "Pin_7" (effects (font (size 1.27 1.27))))
(number "7" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 7.62 12.7 180) (length 3.81)
(name "Pin_8" (effects (font (size 1.27 1.27))))
(number "8" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 10.16 0) (length 3.81)
(name "Pin_9" (effects (font (size 1.27 1.27))))
(number "9" (effects (font (size 1.27 1.27))))
)
)
)
)
(junction (at 120.65 93.345) (diameter 0) (color 0 0 0 0)
(uuid 18593091-9e03-4f21-bab3-44c5d90284ac)
)
(junction (at 119.38 98.425) (diameter 0) (color 0 0 0 0)
(uuid 2052a983-a116-4bc4-9831-a5107958a43b)
)
(junction (at 120.015 95.885) (diameter 0) (color 0 0 0 0)
(uuid fc0faf42-7f34-4df2-bc6a-f8f0b265814d)
)
(wire (pts (xy 76.835 116.205) (xy 97.155 116.205))
(stroke (width 0) (type default))
(uuid 0088d107-13d8-496c-8da6-7bbeb9d096b0)
)
(wire (pts (xy 116.205 133.985) (xy 57.785 133.985))
(stroke (width 0) (type default))
(uuid 0147f16a-c952-4891-8f53-a9fb8cddeb8d)
)
(wire (pts (xy 109.855 118.745) (xy 112.395 118.745))
(stroke (width 0) (type default))
(uuid 03d88a85-11fd-47aa-954c-c318bb15294a)
)
(wire (pts (xy 97.155 83.185) (xy 76.835 83.185))
(stroke (width 0) (type default))
(uuid 0867287d-2e6a-4d69-a366-c29f88198f2b)
)
(wire (pts (xy 109.855 103.505) (xy 118.11 103.505))
(stroke (width 0) (type default))
(uuid 0a3cc030-c9dd-4d74-9d50-715ed2b361a2)
)
(wire (pts (xy 64.135 106.045) (xy 57.15 106.045))
(stroke (width 0) (type default))
(uuid 0d0bb7b2-a6e5-46d2-9492-a1aa6e5a7b2f)
)
(wire (pts (xy 112.395 131.445) (xy 60.96 131.445))
(stroke (width 0) (type default))
(uuid 0dcdf1b8-13c6-48b4-bd94-5d26038ff231)
)
(wire (pts (xy 76.835 90.805) (xy 97.155 90.805))
(stroke (width 0) (type default))
(uuid 0f41a909-27c4-4be2-9d5e-9ae2108c8ff5)
)
(wire (pts (xy 52.705 139.065) (xy 122.555 139.065))
(stroke (width 0) (type default))
(uuid 10109f84-4940-47f8-8640-91f185ac9bc1)
)
(wire (pts (xy 109.855 113.665) (xy 114.935 113.665))
(stroke (width 0) (type default))
(uuid 120a7b0f-ddfd-4447-85c1-35665465acdb)
)
(wire (pts (xy 109.855 123.825) (xy 109.855 130.175))
(stroke (width 0) (type default))
(uuid 128e34ce-eee7-477d-b905-a493e98db783)
)
(wire (pts (xy 59.69 132.08) (xy 114.3 132.08))
(stroke (width 0) (type default))
(uuid 13475e15-f37c-4de8-857e-1722b0c39513)
)
(wire (pts (xy 55.88 135.89) (xy 55.88 100.965))
(stroke (width 0) (type default))
(uuid 13abf99d-5265-4779-8973-e94370fd18ff)
)
(wire (pts (xy 117.475 134.62) (xy 117.475 106.045))
(stroke (width 0) (type default))
(uuid 15875808-74d5-4210-b8ca-aa8fbc04ae21)
)
(wire (pts (xy 56.515 103.505) (xy 64.135 103.505))
(stroke (width 0) (type default))
(uuid 1860e030-7a36-4298-b7fc-a16d48ab15ba)
)
(wire (pts (xy 112.395 118.745) (xy 112.395 131.445))
(stroke (width 0) (type default))
(uuid 1a2f72d1-0b36-4610-afc4-4ad1660d5d3b)
)
(wire (pts (xy 97.155 88.265) (xy 76.835 88.265))
(stroke (width 0) (type default))
(uuid 1b54105e-6590-4d26-a763-ecfcf81eedc4)
)
(wire (pts (xy 120.65 93.345) (xy 139.065 93.345))
(stroke (width 0) (type default))
(uuid 1ba5bfbd-0c3d-484e-a0d8-cc91db479bd1)
)
(wire (pts (xy 119.38 98.425) (xy 109.855 98.425))
(stroke (width 0) (type default))
(uuid 23bb2798-d93a-4696-a962-c305c4298a0c)
)
(wire (pts (xy 114.3 132.08) (xy 114.3 116.205))
(stroke (width 0) (type default))
(uuid 2732632c-4768-42b6-bf7f-14643424019e)
)
(wire (pts (xy 64.135 130.175) (xy 64.135 123.825))
(stroke (width 0) (type default))
(uuid 3172f2e2-18d2-4a80-ae30-5707b3409798)
)
(wire (pts (xy 118.745 100.965) (xy 118.745 135.89))
(stroke (width 0) (type default))
(uuid 32667662-ae86-4904-b198-3e95f11851bf)
)
(wire (pts (xy 76.835 95.885) (xy 97.155 95.885))
(stroke (width 0) (type default))
(uuid 35354519-a28c-40c4-befd-0943e98dea53)
)
(wire (pts (xy 97.155 98.425) (xy 76.835 98.425))
(stroke (width 0) (type default))
(uuid 38f2d955-ea7a-4a21-aba6-02ae23f1bd4a)
)
(wire (pts (xy 120.65 93.345) (xy 109.855 93.345))
(stroke (width 0) (type default))
(uuid 3f5fe6b7-98fc-4d3e-9567-f9f7202d1455)
)
(wire (pts (xy 76.835 111.125) (xy 97.155 111.125))
(stroke (width 0) (type default))
(uuid 417f13e4-c121-485a-a6b5-8b55e70350b8)
)
(wire (pts (xy 51.435 83.185) (xy 51.435 140.335))
(stroke (width 0) (type default))
(uuid 44d8279a-9cd1-4db6-856f-0363131605fc)
)
(wire (pts (xy 55.245 98.425) (xy 55.245 136.525))
(stroke (width 0) (type default))
(uuid 46918595-4a45-48e8-84c0-961b4db7f35f)
)
(wire (pts (xy 123.19 85.725) (xy 123.19 139.7))
(stroke (width 0) (type default))
(uuid 47baf4b1-0938-497d-88f9-671136aa8be7)
)
(wire (pts (xy 114.935 132.715) (xy 59.055 132.715))
(stroke (width 0) (type default))
(uuid 48f827a8-6e22-4a2e-abdc-c2a03098d883)
)
(wire (pts (xy 115.57 111.125) (xy 109.855 111.125))
(stroke (width 0) (type default))
(uuid 4e3d7c0d-12e3-42f2-b944-e4bcdbbcac2a)
)
(wire (pts (xy 52.07 85.725) (xy 64.135 85.725))
(stroke (width 0) (type default))
(uuid 4fb02e58-160a-4a39-9f22-d0c75e82ee72)
)
(wire (pts (xy 111.125 121.285) (xy 109.855 121.285))
(stroke (width 0) (type default))
(uuid 51c4dc0a-5b9f-4edf-a83f-4a12881e42ef)
)
(wire (pts (xy 122.555 139.065) (xy 122.555 88.265))
(stroke (width 0) (type default))
(uuid 55e740a3-0735-4744-896e-2bf5437093b9)
)
(wire (pts (xy 60.96 118.745) (xy 64.135 118.745))
(stroke (width 0) (type default))
(uuid 58dc14f9-c158-4824-a84e-24a6a482a7a4)
)
(wire (pts (xy 58.42 133.35) (xy 115.57 133.35))
(stroke (width 0) (type default))
(uuid 5b2b5c7d-f943-4634-9f0a-e9561705c49d)
)
(wire (pts (xy 120.65 137.795) (xy 120.65 93.345))
(stroke (width 0) (type default))
(uuid 5cbb5968-dbb5-4b84-864a-ead1cacf75b9)
)
(wire (pts (xy 143.51 72.39) (xy 143.51 95.885))
(stroke (width 0) (type default))
(uuid 607390a8-50a3-4f0e-9814-fedacecb2775)
)
(wire (pts (xy 64.135 93.345) (xy 53.975 93.345))
(stroke (width 0) (type default))
(uuid 62c076a3-d618-44a2-9042-9a08b3576787)
)
(wire (pts (xy 97.155 93.345) (xy 76.835 93.345))
(stroke (width 0) (type default))
(uuid 632acde9-b7fd-4f04-8cb4-d2cbb06b3595)
)
(wire (pts (xy 123.825 140.335) (xy 123.825 83.185))
(stroke (width 0) (type default))
(uuid 66116376-6967-4178-9f23-a26cdeafc400)
)
(wire (pts (xy 97.155 123.825) (xy 76.835 123.825))
(stroke (width 0) (type default))
(uuid 67621f9e-0a6a-4778-ad69-04dcf300659c)
)
(wire (pts (xy 109.855 100.965) (xy 118.745 100.965))
(stroke (width 0) (type default))
(uuid 67f6e996-3c99-493c-8f6f-e739e2ed5d7a)
)
(wire (pts (xy 76.835 121.285) (xy 97.155 121.285))
(stroke (width 0) (type default))
(uuid 68e09be7-3bbc-4443-a838-209ce20b2bef)
)
(wire (pts (xy 116.205 108.585) (xy 116.205 133.985))
(stroke (width 0) (type default))
(uuid 6a44418c-7bb4-4e99-8836-57f153c19721)
)
(wire (pts (xy 97.155 118.745) (xy 76.835 118.745))
(stroke (width 0) (type default))
(uuid 6a780180-586a-4241-a52d-dc7a5ffcc966)
)
(wire (pts (xy 121.285 138.43) (xy 53.34 138.43))
(stroke (width 0) (type default))
(uuid 6a955fc7-39d9-4c75-9a69-676ca8c0b9b2)
)
(wire (pts (xy 119.38 98.425) (xy 147.32 98.425))
(stroke (width 0) (type default))
(uuid 6b106209-f296-4912-9059-db23538ad232)
)
(wire (pts (xy 76.835 100.965) (xy 97.155 100.965))
(stroke (width 0) (type default))
(uuid 6b25f522-8e2d-4cd8-9d5d-a2b80f60133b)
)
(wire (pts (xy 120.015 95.885) (xy 120.015 137.16))
(stroke (width 0) (type default))
(uuid 6e105729-aba0-497c-a99e-c32d2b3ddb6d)
)
(wire (pts (xy 64.135 121.285) (xy 62.865 121.285))
(stroke (width 0) (type default))
(uuid 712d6a7d-2b62-464f-b745-fd2a6b0187f6)
)
(wire (pts (xy 52.705 88.265) (xy 52.705 139.065))
(stroke (width 0) (type default))
(uuid 71c31975-2c45-4d18-a25a-18e07a55d11e)
)
(wire (pts (xy 64.135 88.265) (xy 52.705 88.265))
(stroke (width 0) (type default))
(uuid 746ba970-8279-4e7b-aed3-f28687777c21)
)
(wire (pts (xy 123.825 83.185) (xy 109.855 83.185))
(stroke (width 0) (type default))
(uuid 749dfe75-c0d6-4872-9330-29c5bbcb8ff8)
)
(wire (pts (xy 123.19 139.7) (xy 52.07 139.7))
(stroke (width 0) (type default))
(uuid 77ed3941-d133-4aef-a9af-5a39322d14eb)
)
(wire (pts (xy 109.855 95.885) (xy 120.015 95.885))
(stroke (width 0) (type default))
(uuid 78cbdd6c-4878-4cc5-9a58-0e506478e37d)
)
(wire (pts (xy 57.15 134.62) (xy 117.475 134.62))
(stroke (width 0) (type default))
(uuid 81bbc3ff-3938-49ac-8297-ce2bcc9a42bd)
)
(wire (pts (xy 118.11 103.505) (xy 118.11 135.255))
(stroke (width 0) (type default))
(uuid 8322f275-268c-4e87-a69f-4cfbf05e747f)
)
(wire (pts (xy 111.125 130.81) (xy 111.125 121.285))
(stroke (width 0) (type default))
(uuid 842e430f-0c35-45f3-a0b5-95ae7b7ae388)
)
(wire (pts (xy 114.3 116.205) (xy 109.855 116.205))
(stroke (width 0) (type default))
(uuid 854dd5d4-5fd2-4730-bd49-a9cd8299a065)
)
(wire (pts (xy 114.935 113.665) (xy 114.935 132.715))
(stroke (width 0) (type default))
(uuid 8d55e186-3e11-40e8-a65e-b36a8a00069e)
)
(wire (pts (xy 119.38 136.525) (xy 119.38 98.425))
(stroke (width 0) (type default))
(uuid 94c158d1-8503-4553-b511-bf42f506c2a8)
)
(wire (pts (xy 120.015 137.16) (xy 54.61 137.16))
(stroke (width 0) (type default))
(uuid 983c426c-24e0-4c65-ab69-1f1824adc5c6)
)
(wire (pts (xy 62.865 130.81) (xy 111.125 130.81))
(stroke (width 0) (type default))
(uuid 98e81e80-1f85-4152-be3f-99785ea97751)
)
(wire (pts (xy 64.135 111.125) (xy 58.42 111.125))
(stroke (width 0) (type default))
(uuid 9c8ccb2a-b1e9-4f2c-94fe-301b5975277e)
)
(wire (pts (xy 55.245 136.525) (xy 119.38 136.525))
(stroke (width 0) (type default))
(uuid 9ccf03e8-755a-4cd9-96fc-30e1d08fa253)
)
(wire (pts (xy 97.155 108.585) (xy 76.835 108.585))
(stroke (width 0) (type default))
(uuid 9dab0cb7-2557-4419-963b-5ae736517f62)
)
(wire (pts (xy 58.42 111.125) (xy 58.42 133.35))
(stroke (width 0) (type default))
(uuid a03e565f-d8cd-4032-aae3-b7327d4143dd)
)
(wire (pts (xy 118.745 135.89) (xy 55.88 135.89))
(stroke (width 0) (type default))
(uuid a05d7640-f2f6-4ba7-8c51-5a4af431fc13)
)
(wire (pts (xy 55.88 100.965) (xy 64.135 100.965))
(stroke (width 0) (type default))
(uuid a7520ad3-0f8b-4788-92d4-8ffb277041e6)
)
(wire (pts (xy 64.135 98.425) (xy 55.245 98.425))
(stroke (width 0) (type default))
(uuid a795f1ba-cdd5-4cc5-9a52-08586e982934)
)
(wire (pts (xy 147.32 72.39) (xy 147.32 98.425))
(stroke (width 0) (type default))
(uuid a809bb13-1273-47e7-8005-d5b78402cd84)
)
(wire (pts (xy 109.855 108.585) (xy 116.205 108.585))
(stroke (width 0) (type default))
(uuid aa02e544-13f5-4cf8-a5f4-3e6cda006090)
)
(wire (pts (xy 120.015 95.885) (xy 143.51 95.885))
(stroke (width 0) (type default))
(uuid ac80593f-3e3c-4918-926c-38f959d38225)
)
(wire (pts (xy 53.975 137.795) (xy 120.65 137.795))
(stroke (width 0) (type default))
(uuid afb8e687-4a13-41a1-b8c0-89a749e897fe)
)
(wire (pts (xy 76.835 85.725) (xy 97.155 85.725))
(stroke (width 0) (type default))
(uuid afd3dbad-e7a8-4e4c-b77c-4065a69aefa2)
)
(wire (pts (xy 57.15 106.045) (xy 57.15 134.62))
(stroke (width 0) (type default))
(uuid b1169a2d-8998-4b50-a48d-c520bcc1b8e1)
)
(wire (pts (xy 62.865 121.285) (xy 62.865 130.81))
(stroke (width 0) (type default))
(uuid b3d08afa-f296-4e3b-8825-73b6331d35bf)
)
(wire (pts (xy 118.11 135.255) (xy 56.515 135.255))
(stroke (width 0) (type default))
(uuid b6270a28-e0d9-4655-a18a-03dbf007b940)
)
(wire (pts (xy 59.69 116.205) (xy 59.69 132.08))
(stroke (width 0) (type default))
(uuid b635b16e-60bb-4b3e-9fc3-47d34eef8381)
)
(wire (pts (xy 109.855 90.805) (xy 121.285 90.805))
(stroke (width 0) (type default))
(uuid bb7f0588-d4d8-44bf-9ebf-3c533fe4d6ae)
)
(wire (pts (xy 109.855 85.725) (xy 123.19 85.725))
(stroke (width 0) (type default))
(uuid c022004a-c968-410e-b59e-fbab0e561e9d)
)
(wire (pts (xy 54.61 137.16) (xy 54.61 95.885))
(stroke (width 0) (type default))
(uuid c1d83899-e380-49f9-a87d-8e78bc089ebf)
)
(wire (pts (xy 97.155 113.665) (xy 76.835 113.665))
(stroke (width 0) (type default))
(uuid c201e1b2-fc01-4110-bdaa-a33290468c83)
)
(wire (pts (xy 115.57 133.35) (xy 115.57 111.125))
(stroke (width 0) (type default))
(uuid c70d9ef3-bfeb-47e0-a1e1-9aeba3da7864)
)
(wire (pts (xy 109.855 130.175) (xy 64.135 130.175))
(stroke (width 0) (type default))
(uuid c801d42e-dd94-493e-bd2f-6c3ddad43f55)
)
(wire (pts (xy 59.055 113.665) (xy 64.135 113.665))
(stroke (width 0) (type default))
(uuid cef6f603-8a0b-4dd0-af99-ebfbef7d1b4b)
)
(wire (pts (xy 139.065 72.39) (xy 139.065 93.345))
(stroke (width 0) (type default))
(uuid d08ca9f9-96f6-4fa5-80db-536b9e275122)
)
(wire (pts (xy 57.785 133.985) (xy 57.785 108.585))
(stroke (width 0) (type default))
(uuid d1262c4d-2245-4c4f-8f35-7bb32cd9e21e)
)
(wire (pts (xy 57.785 108.585) (xy 64.135 108.585))
(stroke (width 0) (type default))
(uuid d22e95aa-f3db-4fbc-a331-048a2523233e)
)
(wire (pts (xy 53.975 93.345) (xy 53.975 137.795))
(stroke (width 0) (type default))
(uuid da469d11-a8a4-414b-9449-d151eeaf4853)
)
(wire (pts (xy 97.155 103.505) (xy 76.835 103.505))
(stroke (width 0) (type default))
(uuid dabe541b-b164-4180-97a4-5ca761b86800)
)
(wire (pts (xy 117.475 106.045) (xy 109.855 106.045))
(stroke (width 0) (type default))
(uuid dd00c2e1-6027-4717-b312-4fab3ee52002)
)
(wire (pts (xy 60.96 131.445) (xy 60.96 118.745))
(stroke (width 0) (type default))
(uuid dde3dba8-1b81-466c-93a3-c284ff4da1ef)
)
(wire (pts (xy 53.34 90.805) (xy 64.135 90.805))
(stroke (width 0) (type default))
(uuid e10b5627-3247-4c86-b9f6-ef474ca11543)
)
(wire (pts (xy 76.835 106.045) (xy 97.155 106.045))
(stroke (width 0) (type default))
(uuid e12e827e-36be-4503-8eef-6fc7e8bc5d49)
)
(wire (pts (xy 52.07 139.7) (xy 52.07 85.725))
(stroke (width 0) (type default))
(uuid e615f7aa-337e-474d-9615-2ad82b1c44ca)
)
(wire (pts (xy 53.34 138.43) (xy 53.34 90.805))
(stroke (width 0) (type default))
(uuid e8314017-7be6-4011-9179-37449a29b311)
)
(wire (pts (xy 59.055 132.715) (xy 59.055 113.665))
(stroke (width 0) (type default))
(uuid e877bf4a-4210-4bd3-b7b0-806eb4affc5b)
)
(wire (pts (xy 54.61 95.885) (xy 64.135 95.885))
(stroke (width 0) (type default))
(uuid e9bb29b2-2bb9-4ea2-acd9-2bb3ca677a12)
)
(wire (pts (xy 51.435 140.335) (xy 123.825 140.335))
(stroke (width 0) (type default))
(uuid eb667eea-300e-4ca7-8a6f-4b00de80cd45)
)
(wire (pts (xy 64.135 83.185) (xy 51.435 83.185))
(stroke (width 0) (type default))
(uuid ef8fe2ac-6a7f-4682-9418-b801a1b10a3b)
)
(wire (pts (xy 121.285 90.805) (xy 121.285 138.43))
(stroke (width 0) (type default))
(uuid f1830a1b-f0cc-47ae-a2c9-679c82032f14)
)
(wire (pts (xy 56.515 135.255) (xy 56.515 103.505))
(stroke (width 0) (type default))
(uuid f3490fa5-5a27-423b-af60-53609669542c)
)
(wire (pts (xy 122.555 88.265) (xy 109.855 88.265))
(stroke (width 0) (type default))
(uuid f4f99e3d-7269-4f6a-a759-16ad2a258779)
)
(wire (pts (xy 64.135 116.205) (xy 59.69 116.205))
(stroke (width 0) (type default))
(uuid f976e2cc-36f9-4479-a816-2c74d1d5da6f)
)
(text "TODO: while we're at it, why not make a DS jumper?\nhow does the existing one even work?"
(at 76.835 145.415 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 3dcc657b-55a1-48e0-9667-e01e7b6b08b5)
)
(label "DriveSelect1" (at 125.095 95.885 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 0cecc6f2-13bf-4f97-8c35-81c0a2be4ffb)
)
(label "DriveSelect2" (at 125.095 98.425 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 9b1af2fc-bec5-4642-bac2-2d7db7216e09)
)
(label "DriveSelect0" (at 125.095 93.345 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid c0aa5491-c139-4caa-a325-d857e9b35a87)
)
(symbol (lib_id "Connector_Generic:Conn_02x17_Odd_Even") (at 102.235 103.505 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 00000000-0000-0000-0000-00006007ade3)
(property "Reference" "J2" (at 103.505 77.6732 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "Edge Connector" (at 103.505 79.9846 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "EdgeConnectors:FloppyEdge" (at 102.235 103.505 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 102.235 103.505 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 19a4e55b-bef5-4b8e-a8cb-f21d84bcf738))
(pin "10" (uuid 1dd7e11e-43e2-490d-b80a-72ae7a1e8bc8))
(pin "11" (uuid c43cbf1b-8636-4086-a009-2ead27837232))
(pin "12" (uuid eafafa71-871e-4e08-a0ad-415cc5927655))
(pin "13" (uuid 5012e427-2605-4ef6-8acf-e8763ef0a984))
(pin "14" (uuid 7f280c56-2afd-45c5-b3ee-e6225c105eda))
(pin "15" (uuid c1344181-1d9e-48c4-b279-ab0e274e51f6))
(pin "16" (uuid c358d6d3-3fc1-4255-889b-dd8456b5bf5d))
(pin "17" (uuid b0901133-9ac8-4fae-b1c3-23a5c59648f4))
(pin "18" (uuid 76f0ae03-8a81-4e03-82cc-697b8a2d3dc9))
(pin "19" (uuid 4a6f7f58-ffa1-4ce0-84a4-a43028bdaf25))
(pin "2" (uuid 50b3c388-70c2-40f0-bcab-91360d921fbd))
(pin "20" (uuid 56d30706-3bc3-4351-80e6-e342c04c34e6))
(pin "21" (uuid 6ff6dbdb-8494-4d96-9edf-cb4316c92b89))
(pin "22" (uuid a3299ab5-3dc3-46bd-84ec-03bef122851b))
(pin "23" (uuid 1c359650-9720-4ff5-b7eb-b9ba37db5887))
(pin "24" (uuid 9608f371-5068-4dfe-bc11-cbcdf54d5e25))
(pin "25" (uuid d9ecd9ae-ef0a-439f-b17a-557e46b82925))
(pin "26" (uuid de88ea3f-d699-4a70-9d06-d3f653a880a1))
(pin "27" (uuid e408af70-9a3d-4b30-a91f-1a69c4a24a80))
(pin "28" (uuid c5d90d50-8815-42b3-bdfe-855c387da089))
(pin "29" (uuid 63622b85-ffc5-43a3-94fb-f01b29a8acd4))
(pin "3" (uuid 66bacf32-932b-40ed-a996-33703e38cc32))
(pin "30" (uuid 0963774c-b376-4594-a90e-ed8e9692b9ea))
(pin "31" (uuid aa662617-353d-45f8-8bab-007a7f6b3467))
(pin "32" (uuid de853116-f19f-4819-861d-91762ab22b12))
(pin "33" (uuid c7c0e390-c203-4145-83d2-d45b2a38bf27))
(pin "34" (uuid 482345a1-5db6-4976-998d-99689809f8b9))
(pin "4" (uuid 708ae4a5-cc3f-4ad0-be7f-b39e38a69ee8))
(pin "5" (uuid cfa6ece6-c4c2-463e-8243-39f87684a7cc))
(pin "6" (uuid 2b94326e-f7bf-4dbf-8a23-87f97d0455b1))
(pin "7" (uuid e73ce984-61c1-440b-8d6a-e6928e7cdf0d))
(pin "8" (uuid c1819ec4-16c4-4ca2-a3c6-660ab0af6d34))
(pin "9" (uuid bd8ee00d-ca1d-429c-904e-a26bd6cdb80f))
(instances
(project "floppy-adapter-2"
(path "/0d35483a-0b12-46cc-b9f2-896fd6831779"
(reference "J2") (unit 1)
)
)
)
)
(symbol (lib_id "Connector_Generic:Conn_02x17_Odd_Even") (at 71.755 103.505 0) (mirror y) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 00000000-0000-0000-0000-00006007de1b)
(property "Reference" "J1" (at 70.485 77.6732 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "Female Floppy Connector" (at 70.485 79.9846 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_2x17_P2.54mm_Vertical" (at 71.755 103.505 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 71.755 103.505 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 743d8da9-eb43-4371-8313-505007abb989))
(pin "10" (uuid f220da3f-d9e9-4b5a-81e2-bb395123fe5f))
(pin "11" (uuid 48ced388-1009-47c0-9121-927d687fa0e0))
(pin "12" (uuid 0978854b-7f2d-4e70-81ad-b8366855ab91))
(pin "13" (uuid 520ddf64-73f0-4767-8391-a2c8400d2889))
(pin "14" (uuid b2b23386-d0d5-4278-8953-0c9c0e5e73f7))
(pin "15" (uuid 61a51970-fbbc-4b1e-a7ae-feb21648f6ac))
(pin "16" (uuid ab5fd570-a8ed-41be-bdc9-9bca7f01f72f))
(pin "17" (uuid 6f6fc535-e6ac-4715-a245-11d18639fbe6))
(pin "18" (uuid cdbebb5e-a816-472c-9169-2f89317f1f2a))
(pin "19" (uuid df8ca82e-d7eb-4065-8722-73c6f9311432))
(pin "2" (uuid 7807c7b7-7ef2-4f78-b820-a3d80a6a5558))
(pin "20" (uuid 36570266-ac30-48fb-a957-d39c502c9460))
(pin "21" (uuid 5886e575-b80c-446f-a435-0b4c9526c94e))
(pin "22" (uuid 91696539-77c4-4a75-8e58-8ed056557991))
(pin "23" (uuid 1fe1971a-7016-45bb-8345-401820ae3862))
(pin "24" (uuid 4eab55a2-5545-47a3-b9b3-c4c469a39d25))
(pin "25" (uuid 45d618f3-0545-4d5c-a6f7-7ee5fa0492ef))
(pin "26" (uuid 9d453394-41fe-4db3-b0fe-cea1cb3ca116))
(pin "27" (uuid df154a3d-4d9b-4d06-bc5a-30761ca45e87))
(pin "28" (uuid bb1d3653-b63a-47c0-b6f8-d8d1da193c13))
(pin "29" (uuid bd512a59-de1d-4b9c-8048-3f49a128aa46))
(pin "3" (uuid ebea8197-c54e-40e2-8f7c-9c38868b752b))
(pin "30" (uuid 4ffe5bcf-0c88-4572-bce0-1f107418dadd))
(pin "31" (uuid 6f18111c-9199-4bc4-a095-8b2401c5db4d))
(pin "32" (uuid b16db6aa-eff9-4560-94eb-8f1df0edf71a))
(pin "33" (uuid 7a96ea12-e031-49a1-a3a0-24202e6db0ee))
(pin "34" (uuid 5afe4b7c-7943-440d-a704-8132adeb11dc))
(pin "4" (uuid a0290bb0-8002-4580-9c7c-ebe9c45ebb67))
(pin "5" (uuid 5c7cb454-2c18-4846-afaf-f5e10d93d187))
(pin "6" (uuid 2d94d2df-1163-40ce-8f54-de182726b53d))
(pin "7" (uuid dd659b7b-4940-46bf-97d1-c3029ed22f43))
(pin "8" (uuid 7c9fbd78-5e0a-42f8-8001-887b5652b295))
(pin "9" (uuid f7436f03-26d9-479c-aab0-e11def7d02be))
(instances
(project "floppy-adapter-2"
(path "/0d35483a-0b12-46cc-b9f2-896fd6831779"
(reference "J1") (unit 1)
)
)
)
)
(symbol (lib_id "Connector:TestPoint") (at 139.065 72.39 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 10471b72-4fce-4d30-bc81-ff53c2ec57db)
(property "Reference" "TP10" (at 132.715 69.215 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "TestPoint" (at 134.62 66.675 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "Footprint" "TestPoint:TestPoint_Pad_3.0x3.0mm" (at 144.145 72.39 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 144.145 72.39 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 005ca83f-6d02-42a9-b2ed-ec9ac12507b3))
(instances
(project "floppy-adapter-2"
(path "/0d35483a-0b12-46cc-b9f2-896fd6831779"
(reference "TP10") (unit 1)
)
)
)
)
(symbol (lib_id "Connector:TestPoint") (at 143.51 72.39 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 98321f45-4358-4e49-9b8c-bccf7fa7bbc1)
(property "Reference" "TP12" (at 141.605 66.04 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "TestPoint" (at 140.335 63.5 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "Footprint" "TestPoint:TestPoint_Pad_3.0x3.0mm" (at 148.59 72.39 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 148.59 72.39 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 6cc384be-b31d-448a-aee6-5d3f8761455c))
(instances
(project "floppy-adapter-2"
(path "/0d35483a-0b12-46cc-b9f2-896fd6831779"
(reference "TP12") (unit 1)
)
)
)
)
(symbol (lib_id "Connector:TestPoint") (at 147.32 72.39 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid f0860951-1e0b-4d1b-b64d-aa189f64f013)
(property "Reference" "TP14" (at 149.86 69.0879 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "TestPoint" (at 149.86 70.3579 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "Footprint" "TestPoint:TestPoint_Pad_3.0x3.0mm" (at 152.4 72.39 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 152.4 72.39 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 781329f7-56ca-4278-af60-3cb3d686706c))
(instances
(project "floppy-adapter-2"
(path "/0d35483a-0b12-46cc-b9f2-896fd6831779"
(reference "TP14") (unit 1)
)
)
)
)
(sheet_instances
(path "/" (page "1"))
)
)