-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathreface_midi_pcb.kicad_sch
1385 lines (1360 loc) · 54.8 KB
/
reface_midi_pcb.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 20211123) (generator eeschema)
(uuid e63e39d7-6ac0-4ffd-8aa3-1841a4541b55)
(paper "A4")
(lib_symbols
(symbol "Connector:Screw_Terminal_01x02" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
(property "Reference" "J" (id 0) (at 0 2.54 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "Screw_Terminal_01x02" (id 1) (at 0 -5.08 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "screw terminal" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Generic screw terminal, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "TerminalBlock*:*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "Screw_Terminal_01x02_1_1"
(rectangle (start -1.27 1.27) (end 1.27 -3.81)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type background))
)
(circle (center 0 -2.54) (radius 0.635)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -0.5334 -2.2098)
(xy 0.3302 -3.048)
)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -0.5334 0.3302)
(xy 0.3302 -0.508)
)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -0.3556 -2.032)
(xy 0.508 -2.8702)
)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -0.3556 0.508)
(xy 0.508 -0.3302)
)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(circle (center 0 0) (radius 0.635)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(pin passive line (at -5.08 0 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 -5.08 -2.54 0) (length 3.81)
(name "Pin_2" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Connector:Screw_Terminal_01x03" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
(property "Reference" "J" (id 0) (at 0 5.08 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "Screw_Terminal_01x03" (id 1) (at 0 -5.08 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "screw terminal" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Generic screw terminal, single row, 01x03, script generated (kicad-library-utils/schlib/autogen/connector/)" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "TerminalBlock*:*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "Screw_Terminal_01x03_1_1"
(rectangle (start -1.27 3.81) (end 1.27 -3.81)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type background))
)
(circle (center 0 -2.54) (radius 0.635)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -0.5334 -2.2098)
(xy 0.3302 -3.048)
)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -0.5334 0.3302)
(xy 0.3302 -0.508)
)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -0.5334 2.8702)
(xy 0.3302 2.032)
)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -0.3556 -2.032)
(xy 0.508 -2.8702)
)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -0.3556 0.508)
(xy 0.508 -0.3302)
)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -0.3556 3.048)
(xy 0.508 2.2098)
)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(circle (center 0 0) (radius 0.635)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(circle (center 0 2.54) (radius 0.635)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(pin passive line (at -5.08 2.54 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 -5.08 0 0) (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 -5.08 -2.54 0) (length 3.81)
(name "Pin_3" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Connector_Generic:Conn_02x05_Odd_Even" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
(property "Reference" "J" (id 0) (at 1.27 7.62 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "Conn_02x05_Odd_Even" (id 1) (at 1.27 -7.62 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "connector" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Generic connector, double row, 02x05, odd/even pin numbering scheme (row 1 odd numbers, row 2 even numbers), script generated (kicad-library-utils/schlib/autogen/connector/)" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "Connector*:*_2x??_*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "Conn_02x05_Odd_Even_1_1"
(rectangle (start -1.27 -4.953) (end 0 -5.207)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start -1.27 -2.413) (end 0 -2.667)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start -1.27 0.127) (end 0 -0.127)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start -1.27 2.667) (end 0 2.413)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start -1.27 5.207) (end 0 4.953)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start -1.27 6.35) (end 3.81 -6.35)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type background))
)
(rectangle (start 3.81 -4.953) (end 2.54 -5.207)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start 3.81 -2.413) (end 2.54 -2.667)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start 3.81 0.127) (end 2.54 -0.127)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start 3.81 2.667) (end 2.54 2.413)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start 3.81 5.207) (end 2.54 4.953)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(pin passive line (at -5.08 5.08 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 -5.08 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 7.62 5.08 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 -5.08 2.54 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 2.54 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 0 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 0 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 -2.54 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 -2.54 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 -5.08 0) (length 3.81)
(name "Pin_9" (effects (font (size 1.27 1.27))))
(number "9" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Device:R" (pin_numbers hide) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "R" (id 0) (at 2.032 0 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "R" (id 1) (at 0 0 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at -1.778 0 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "R res resistor" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Resistor" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "R_*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "R_0_1"
(rectangle (start -1.016 -2.54) (end 1.016 2.54)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "R_1_1"
(pin passive line (at 0 3.81 270) (length 1.27)
(name "~" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -3.81 90) (length 1.27)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Diode:1N4148" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
(property "Reference" "D" (id 0) (at 0 2.54 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "1N4148" (id 1) (at 0 -2.54 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Diode_THT:D_DO-35_SOD27_P7.62mm_Horizontal" (id 2) (at 0 -4.445 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "https://assets.nexperia.com/documents/data-sheet/1N4148_1N4448.pdf" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "diode" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "100V 0.15A standard switching diode, DO-35" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "D*DO?35*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "1N4148_0_1"
(polyline
(pts
(xy -1.27 1.27)
(xy -1.27 -1.27)
)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 1.27 0)
(xy -1.27 0)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 1.27 1.27)
(xy 1.27 -1.27)
(xy -1.27 0)
(xy 1.27 1.27)
)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "1N4148_1_1"
(pin passive line (at -3.81 0 0) (length 2.54)
(name "K" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 3.81 0 180) (length 2.54)
(name "A" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Isolator:H11L1" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
(property "Reference" "U" (id 0) (at 1.27 8.89 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "H11L1" (id 1) (at 1.27 6.35 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (id 2) (at -2.286 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "https://www.onsemi.com/pub/Collateral/H11L3M-D.PDF" (id 3) (at -2.286 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "High Speed Schmitt Optocoupler" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Schmitt Trigger Output Optocoupler, High Speed, DIP-6, 1.6mA turn on threshold" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "DIP*W7.62mm* DIP*W10.16mm* SMDIP*W9.53mm*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "H11L1_0_1"
(rectangle (start -5.08 5.08) (end 5.08 -5.08)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type background))
)
(polyline
(pts
(xy -4.445 -0.635)
(xy -3.175 -0.635)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 2.54)
(xy 0 5.08)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 -2.54)
(xy 0 -5.08)
(xy 0 -3.81)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -5.08 -2.54)
(xy -3.81 -2.54)
(xy -3.81 2.54)
(xy -5.08 2.54)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -3.81 -0.635)
(xy -4.445 0.635)
(xy -3.175 0.635)
(xy -3.81 -0.635)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 1.27 -2.54)
(xy -1.27 -2.54)
(xy -1.27 2.54)
(xy 1.27 2.54)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -2.794 -0.508)
(xy -1.524 -0.508)
(xy -1.905 -0.635)
(xy -1.905 -0.381)
(xy -1.524 -0.508)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -2.794 0.508)
(xy -1.524 0.508)
(xy -1.905 0.381)
(xy -1.905 0.635)
(xy -1.524 0.508)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(arc (start 1.27 -2.54) (mid 3.81 0) (end 1.27 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "H11L1_1_1"
(pin passive line (at -7.62 2.54 0) (length 2.54)
(name "~" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -7.62 -2.54 0) (length 2.54)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin no_connect line (at -5.08 0 0) (length 2.54) hide
(name "~" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin output inverted (at 7.62 0 180) (length 3.81)
(name "~" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 0 -7.62 90) (length 2.54)
(name "~" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 0 7.62 270) (length 2.54)
(name "~" (effects (font (size 1.27 1.27))))
(number "6" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "MCU_Module:Arduino_Nano_v2.x" (in_bom yes) (on_board yes)
(property "Reference" "A" (id 0) (at -10.16 23.495 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
)
(property "Value" "Arduino_Nano_v2.x" (id 1) (at 5.08 -24.13 0)
(effects (font (size 1.27 1.27)) (justify left top))
)
(property "Footprint" "Module:Arduino_Nano" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27) italic) hide)
)
(property "Datasheet" "https://www.arduino.cc/en/uploads/Main/ArduinoNanoManual23.pdf" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "Arduino nano microcontroller module USB" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Arduino Nano v2.x" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "Arduino*Nano*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "Arduino_Nano_v2.x_0_1"
(rectangle (start -10.16 22.86) (end 10.16 -22.86)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type background))
)
)
(symbol "Arduino_Nano_v2.x_1_1"
(pin bidirectional line (at -12.7 12.7 0) (length 2.54)
(name "D1/TX" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -12.7 -2.54 0) (length 2.54)
(name "D7" (effects (font (size 1.27 1.27))))
(number "10" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -12.7 -5.08 0) (length 2.54)
(name "D8" (effects (font (size 1.27 1.27))))
(number "11" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -12.7 -7.62 0) (length 2.54)
(name "D9" (effects (font (size 1.27 1.27))))
(number "12" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -12.7 -10.16 0) (length 2.54)
(name "D10" (effects (font (size 1.27 1.27))))
(number "13" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -12.7 -12.7 0) (length 2.54)
(name "D11" (effects (font (size 1.27 1.27))))
(number "14" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -12.7 -15.24 0) (length 2.54)
(name "D12" (effects (font (size 1.27 1.27))))
(number "15" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -12.7 -17.78 0) (length 2.54)
(name "D13" (effects (font (size 1.27 1.27))))
(number "16" (effects (font (size 1.27 1.27))))
)
(pin power_out line (at 2.54 25.4 270) (length 2.54)
(name "3V3" (effects (font (size 1.27 1.27))))
(number "17" (effects (font (size 1.27 1.27))))
)
(pin input line (at 12.7 5.08 180) (length 2.54)
(name "AREF" (effects (font (size 1.27 1.27))))
(number "18" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 12.7 0 180) (length 2.54)
(name "A0" (effects (font (size 1.27 1.27))))
(number "19" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -12.7 15.24 0) (length 2.54)
(name "D0/RX" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 12.7 -2.54 180) (length 2.54)
(name "A1" (effects (font (size 1.27 1.27))))
(number "20" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 12.7 -5.08 180) (length 2.54)
(name "A2" (effects (font (size 1.27 1.27))))
(number "21" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 12.7 -7.62 180) (length 2.54)
(name "A3" (effects (font (size 1.27 1.27))))
(number "22" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 12.7 -10.16 180) (length 2.54)
(name "A4" (effects (font (size 1.27 1.27))))
(number "23" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 12.7 -12.7 180) (length 2.54)
(name "A5" (effects (font (size 1.27 1.27))))
(number "24" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 12.7 -15.24 180) (length 2.54)
(name "A6" (effects (font (size 1.27 1.27))))
(number "25" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 12.7 -17.78 180) (length 2.54)
(name "A7" (effects (font (size 1.27 1.27))))
(number "26" (effects (font (size 1.27 1.27))))
)
(pin power_out line (at 5.08 25.4 270) (length 2.54)
(name "+5V" (effects (font (size 1.27 1.27))))
(number "27" (effects (font (size 1.27 1.27))))
)
(pin input line (at 12.7 15.24 180) (length 2.54)
(name "~{RESET}" (effects (font (size 1.27 1.27))))
(number "28" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 2.54 -25.4 90) (length 2.54)
(name "GND" (effects (font (size 1.27 1.27))))
(number "29" (effects (font (size 1.27 1.27))))
)
(pin input line (at 12.7 12.7 180) (length 2.54)
(name "~{RESET}" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at -2.54 25.4 270) (length 2.54)
(name "VIN" (effects (font (size 1.27 1.27))))
(number "30" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 0 -25.4 90) (length 2.54)
(name "GND" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -12.7 10.16 0) (length 2.54)
(name "D2" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -12.7 7.62 0) (length 2.54)
(name "D3" (effects (font (size 1.27 1.27))))
(number "6" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -12.7 5.08 0) (length 2.54)
(name "D4" (effects (font (size 1.27 1.27))))
(number "7" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -12.7 2.54 0) (length 2.54)
(name "D5" (effects (font (size 1.27 1.27))))
(number "8" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -12.7 0 0) (length 2.54)
(name "D6" (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" (id 0) (at 0 -6.35 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (id 1) (at 0 -3.81 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "power-flag" (id 4) (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" (id 5) (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) (color 0 0 0 0))
(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 62.865 42.545) (diameter 0) (color 0 0 0 0)
(uuid 248b2cb2-7b8d-4743-a5be-36e3eca395ed)
)
(junction (at 127.635 50.8) (diameter 0) (color 0 0 0 0)
(uuid 7a317287-1c34-4767-8b83-f51fef35eb59)
)
(junction (at 122.555 112.395) (diameter 0) (color 0 0 0 0)
(uuid ed1f9aaf-248b-4aca-850e-84d3dd6e7871)
)
(junction (at 62.865 34.925) (diameter 0) (color 0 0 0 0)
(uuid fce9bdfc-f59b-4802-b264-ae5bd39f3a88)
)
(no_connect (at 34.925 37.465) (uuid aeee7a19-a484-49a2-8dd1-3304e6bdcff4))
(no_connect (at 135.255 99.695) (uuid ca3c3e5d-7b9e-4b86-8dcb-0721bba7a104))
(no_connect (at 135.255 102.235) (uuid ca3c3e5d-7b9e-4b86-8dcb-0721bba7a104))
(no_connect (at 135.255 69.215) (uuid ca3c3e5d-7b9e-4b86-8dcb-0721bba7a104))
(no_connect (at 135.255 71.755) (uuid ca3c3e5d-7b9e-4b86-8dcb-0721bba7a104))
(no_connect (at 135.255 79.375) (uuid ca3c3e5d-7b9e-4b86-8dcb-0721bba7a104))
(no_connect (at 135.255 84.455) (uuid ca3c3e5d-7b9e-4b86-8dcb-0721bba7a104))
(no_connect (at 135.255 97.155) (uuid ca3c3e5d-7b9e-4b86-8dcb-0721bba7a104))
(no_connect (at 135.255 94.615) (uuid ca3c3e5d-7b9e-4b86-8dcb-0721bba7a104))
(no_connect (at 135.255 92.075) (uuid ca3c3e5d-7b9e-4b86-8dcb-0721bba7a104))
(no_connect (at 135.255 89.535) (uuid ca3c3e5d-7b9e-4b86-8dcb-0721bba7a104))
(no_connect (at 135.255 86.995) (uuid ca3c3e5d-7b9e-4b86-8dcb-0721bba7a104))
(no_connect (at 125.095 59.055) (uuid ca3c3e5d-7b9e-4b86-8dcb-0721bba7a104))
(no_connect (at 109.855 102.235) (uuid fe3095cd-2a71-4268-b655-2b66c152b551))
(wire (pts (xy 64.135 73.025) (xy 64.135 89.535))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 07df9b23-e314-4260-9a43-62097e6e9aa9)
)
(wire (pts (xy 120.015 54.61) (xy 120.015 59.055))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 083850d9-db42-48ca-8dcc-62fa258a02c8)
)
(wire (pts (xy 109.855 74.295) (xy 99.695 74.295))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 127822b8-ce44-472c-9cb6-eb7af2367cf3)
)
(wire (pts (xy 99.695 111.125) (xy 105.41 111.125))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 14074f1c-c0bc-4fb9-809d-cce87b48e0bd)
)
(wire (pts (xy 83.82 111.125) (xy 92.075 111.125))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1497538f-0f78-4789-a481-2a61bcb0b40a)
)
(wire (pts (xy 66.675 75.565) (xy 66.675 86.995))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1782b146-4809-4794-8488-27d3d73acff1)
)
(wire (pts (xy 109.855 81.915) (xy 93.98 81.915))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 195a4740-6d7f-4f16-91d8-394983f97cd7)
)
(wire (pts (xy 93.98 81.915) (xy 93.98 77.47))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 255676f8-f680-4742-a811-46d9f6abd7d9)
)
(wire (pts (xy 105.41 37.465) (xy 105.41 69.215))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2606ddb8-7b47-4aa9-a4e2-2acb5c9c7ce2)
)
(wire (pts (xy 127.635 25.4) (xy 79.375 25.4))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2c11498f-3a01-4af6-a53e-f2f5aba7d2c2)
)
(wire (pts (xy 61.595 92.075) (xy 75.565 92.075))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 37af83e8-9d38-4882-8882-0c66cf47be98)
)
(wire (pts (xy 120.015 54.61) (xy 158.115 54.61))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3951349e-ff12-4f26-9869-a9d4e7498a4a)
)
(wire (pts (xy 86.995 37.465) (xy 105.41 37.465))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3c3b2809-d101-4a8c-9c30-8950687f6f6c)
)
(wire (pts (xy 127.635 25.4) (xy 127.635 50.8))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 40007234-e1ec-43d5-a4e0-07dc8211188c)
)
(wire (pts (xy 69.215 42.545) (xy 62.865 42.545))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 45f2ae7f-b4bf-4a22-aa5e-e05f8d3438a7)
)
(wire (pts (xy 122.555 112.395) (xy 122.555 114.3))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4bdd2267-4c66-45d7-b968-4d149af8cfb2)
)
(wire (pts (xy 88.265 86.995) (xy 109.855 86.995))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4d275ec7-fa1f-4160-8457-5ad0b41a992d)
)
(wire (pts (xy 61.595 70.485) (xy 61.595 92.075))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4e2be0c9-6924-4b9d-ba4f-d259c310f924)
)
(wire (pts (xy 62.865 34.925) (xy 71.755 34.925))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5472bcbb-346a-46a3-9c9a-85a21883499e)
)
(wire (pts (xy 79.375 62.23) (xy 79.375 65.405))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 555961ec-bb61-445c-8ba4-d0604bd2fce1)
)
(wire (pts (xy 64.135 89.535) (xy 75.565 89.535))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 58635eb3-b6e0-47ac-aa6b-9f8ab1e38a14)
)
(wire (pts (xy 74.295 62.23) (xy 79.375 62.23))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5e01431c-8db0-43b7-b6ab-ecfb1ccdefda)
)
(wire (pts (xy 105.41 99.695) (xy 109.855 99.695))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 6bf340d9-68cc-460f-b3e1-0a218bb83fed)
)
(wire (pts (xy 88.265 92.075) (xy 109.855 92.075))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 78793214-990c-4fef-acd6-dbf6c64f702f)
)
(wire (pts (xy 66.675 86.995) (xy 75.565 86.995))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 7c60ff29-6fa2-493c-a63d-baf2c9286365)
)
(wire (pts (xy 88.265 59.69) (xy 96.52 59.69))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 7fa71094-6652-4c1a-86b8-74a1862d1e1c)
)
(wire (pts (xy 83.82 113.665) (xy 86.995 113.665))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 83626e1b-0681-45a3-b7da-6d28743fda64)
)
(wire (pts (xy 34.925 40.005) (xy 50.165 40.005))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 836458b2-8d84-4a41-add2-9328c9c9667a)
)
(wire (pts (xy 125.095 109.855) (xy 125.095 112.395))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 83c7f25b-1cc8-493f-9de8-32512c09c872)
)
(wire (pts (xy 96.52 50.8) (xy 127.635 50.8))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8c5fc51b-95b6-478d-a37f-2c7c4055b56d)
)
(wire (pts (xy 34.925 34.925) (xy 43.815 34.925))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 9385a9d3-a64c-4d82-96a0-c3bca992aa78)
)
(wire (pts (xy 109.855 79.375) (xy 95.885 79.375))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 9558c774-aead-4273-ab60-9bf5a65ac495)
)
(wire (pts (xy 50.165 42.545) (xy 62.865 42.545))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 958363c9-4e7e-47b4-88b6-002cec8a9803)
)
(wire (pts (xy 69.215 77.47) (xy 69.215 84.455))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 9c27daca-78d6-485d-b6a3-b40fc8191987)
)
(wire (pts (xy 74.295 64.77) (xy 104.14 64.77))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 9cd31aaf-7586-4fa3-8ac4-d4de5674331e)
)
(wire (pts (xy 105.41 69.215) (xy 109.855 69.215))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 9d0cea92-1d2e-45ff-90cd-09db9e51685e)
)
(wire (pts (xy 97.79 73.025) (xy 64.135 73.025))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a0a86c71-9503-4c80-ad79-a9d6f2992181)
)
(wire (pts (xy 95.885 75.565) (xy 66.675 75.565))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a0c8514a-77d5-483f-bfb7-d62e4e9fc8e3)
)
(wire (pts (xy 153.035 57.15) (xy 153.035 57.785))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a742a77f-365b-43f2-ae00-87ebdf147028)
)
(wire (pts (xy 88.265 89.535) (xy 109.855 89.535))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid ac968ca6-d0a5-47e9-8d51-817604fd69ea)
)
(wire (pts (xy 96.52 59.69) (xy 96.52 50.8))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid ad98d773-d146-4de3-a16d-48e6fad0145c)
)
(wire (pts (xy 97.79 76.835) (xy 97.79 73.025))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b1838941-1443-4128-99b7-671f4b4223b0)
)
(wire (pts (xy 127.635 50.8) (xy 127.635 59.055))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b2becda4-0f66-4197-97eb-51d672de3c91)
)
(wire (pts (xy 69.215 40.005) (xy 69.215 42.545))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b2df2079-aea0-479b-860b-00adc29ce36d)
)
(wire (pts (xy 95.885 79.375) (xy 95.885 75.565))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b4201c82-e800-41be-9c4e-62102adb5fce)
)
(wire (pts (xy 125.095 112.395) (xy 122.555 112.395))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b6bfa848-93db-414b-98a5-86ef35e33cd1)
)
(wire (pts (xy 79.375 25.4) (xy 79.375 29.845))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b872c814-1161-4381-a423-c13758c7b6fe)
)
(wire (pts (xy 71.755 40.005) (xy 69.215 40.005))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b8e5bcf5-f14c-4b20-98a7-c957789ec51c)
)
(wire (pts (xy 88.265 84.455) (xy 109.855 84.455))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b9894b1a-2b9a-4d26-b561-cbb2fce9f4d5)
)
(wire (pts (xy 122.555 109.855) (xy 122.555 112.395))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c4dff11f-1c93-43e3-84ad-ce4d2e3ad395)
)
(wire (pts (xy 99.695 70.485) (xy 61.595 70.485))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c58cd5eb-fbb6-4a4c-9bd4-623401b5c6f9)
)
(wire (pts (xy 88.265 94.615) (xy 109.855 94.615))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid d0492d46-0243-4c19-919f-9feed649a80e)
)
(wire (pts (xy 93.98 77.47) (xy 69.215 77.47))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid d3799884-5c15-48d5-acc7-b4e77b2d2ad0)
)
(wire (pts (xy 68.58 94.615) (xy 75.565 94.615))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid d6e0924c-b184-4eb7-aee7-cfd21d13512a)
)
(wire (pts (xy 74.295 59.69) (xy 80.645 59.69))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid db87089b-6373-4ba3-a2ff-5a1e38ab7c68)
)
(wire (pts (xy 79.375 45.085) (xy 79.375 48.26))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid e6e5c0e5-84f9-4e7f-a1e8-caeb617b7413)
)
(wire (pts (xy 104.14 64.77) (xy 104.14 71.755))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid e87f4aeb-a6dd-4586-9402-3061a259d24e)
)
(wire (pts (xy 99.695 74.295) (xy 99.695 70.485))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid e9fcc3af-4654-4727-9bd0-457941c43f0a)
)
(wire (pts (xy 51.435 34.925) (xy 62.865 34.925))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid ec655eb4-f895-4433-82e3-4dcbc8aa0f0e)
)
(wire (pts (xy 158.115 57.15) (xy 153.035 57.15))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid f0a82102-c266-4989-aef9-478c9e72f0c1)
)
(wire (pts (xy 104.14 71.755) (xy 109.855 71.755))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid f1bf141a-c08e-4df2-9319-74ceb46652b6)
)
(wire (pts (xy 50.165 40.005) (xy 50.165 42.545))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid f24da779-9650-4216-82b5-7b2ba8921b5f)
)
(wire (pts (xy 109.855 76.835) (xy 97.79 76.835))