-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsegapad2usb.kicad_sch
1732 lines (1696 loc) · 60.2 KB
/
segapad2usb.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 9890052f-5a4a-495b-813f-d3d89c2a3096)
(paper "A4")
(title_block
(title "segapad2usb")
(rev "0.1")
(company "mistepien")
)
(lib_symbols
(symbol "Connector:DB9_Male" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
(property "Reference" "J" (at 0 13.97 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "DB9_Male" (at 0 -14.605 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 male D-SUB" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "9-pin male D-SUB connector" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "DSUB*Male*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "DB9_Male_0_1"
(circle (center -1.778 -10.16) (radius 0.762)
(stroke (width 0) (type default))
(fill (type outline))
)
(circle (center -1.778 -5.08) (radius 0.762)
(stroke (width 0) (type default))
(fill (type outline))
)
(circle (center -1.778 0) (radius 0.762)
(stroke (width 0) (type default))
(fill (type outline))
)
(circle (center -1.778 5.08) (radius 0.762)
(stroke (width 0) (type default))
(fill (type outline))
)
(circle (center -1.778 10.16) (radius 0.762)
(stroke (width 0) (type default))
(fill (type outline))
)
(polyline
(pts
(xy -3.81 -10.16)
(xy -2.54 -10.16)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy -3.81 -7.62)
(xy 0.508 -7.62)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy -3.81 -5.08)
(xy -2.54 -5.08)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy -3.81 -2.54)
(xy 0.508 -2.54)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy -3.81 0)
(xy -2.54 0)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy -3.81 2.54)
(xy 0.508 2.54)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy -3.81 5.08)
(xy -2.54 5.08)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy -3.81 7.62)
(xy 0.508 7.62)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy -3.81 10.16)
(xy -2.54 10.16)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy -3.81 -13.335)
(xy -3.81 13.335)
(xy 3.81 9.525)
(xy 3.81 -9.525)
(xy -3.81 -13.335)
)
(stroke (width 0.254) (type default))
(fill (type background))
)
(circle (center 1.27 -7.62) (radius 0.762)
(stroke (width 0) (type default))
(fill (type outline))
)
(circle (center 1.27 -2.54) (radius 0.762)
(stroke (width 0) (type default))
(fill (type outline))
)
(circle (center 1.27 2.54) (radius 0.762)
(stroke (width 0) (type default))
(fill (type outline))
)
(circle (center 1.27 7.62) (radius 0.762)
(stroke (width 0) (type default))
(fill (type outline))
)
)
(symbol "DB9_Male_1_1"
(pin passive line (at -7.62 -10.16 0) (length 3.81)
(name "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 0) (length 3.81)
(name "2" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -7.62 0 0) (length 3.81)
(name "3" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -7.62 5.08 0) (length 3.81)
(name "4" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -7.62 10.16 0) (length 3.81)
(name "5" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -7.62 -7.62 0) (length 3.81)
(name "6" (effects (font (size 1.27 1.27))))
(number "6" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -7.62 -2.54 0) (length 3.81)
(name "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 0) (length 3.81)
(name "8" (effects (font (size 1.27 1.27))))
(number "8" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -7.62 7.62 0) (length 3.81)
(name "9" (effects (font (size 1.27 1.27))))
(number "9" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Connector_Generic:Conn_02x04_Odd_Even" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
(property "Reference" "J" (at 1.27 5.08 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "Conn_02x04_Odd_Even" (at 1.27 -7.62 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, 02x04, 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_02x04_Odd_Even_1_1"
(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 3.81) (end 3.81 -6.35)
(stroke (width 0.254) (type default))
(fill (type background))
)
(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))
)
(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 7.62 2.54 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 0 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 0 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 -2.54 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 -2.54 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 -5.08 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 -5.08 180) (length 3.81)
(name "Pin_8" (effects (font (size 1.27 1.27))))
(number "8" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Device:LED" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
(property "Reference" "D" (at 0 2.54 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "LED" (at 0 -2.54 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" "LED diode" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Light emitting diode" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "LED* LED_SMD:* LED_THT:*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "LED_0_1"
(polyline
(pts
(xy -1.27 -1.27)
(xy -1.27 1.27)
)
(stroke (width 0.254) (type default))
(fill (type none))
)
(polyline
(pts
(xy -1.27 0)
(xy 1.27 0)
)
(stroke (width 0) (type default))
(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))
(fill (type none))
)
(polyline
(pts
(xy -3.048 -0.762)
(xy -4.572 -2.286)
(xy -3.81 -2.286)
(xy -4.572 -2.286)
(xy -4.572 -1.524)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy -1.778 -0.762)
(xy -3.302 -2.286)
(xy -2.54 -2.286)
(xy -3.302 -2.286)
(xy -3.302 -1.524)
)
(stroke (width 0) (type default))
(fill (type none))
)
)
(symbol "LED_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 "Device:R" (pin_numbers hide) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "R" (at 2.032 0 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "R" (at 0 0 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at -1.778 0 90)
(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" "R res resistor" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Resistor" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "R_*" (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))
(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 "Mechanical:MountingHole" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
(property "Reference" "H" (at 0 5.08 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "MountingHole" (at 0 3.175 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" "mounting hole" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Mounting Hole without connection" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "MountingHole*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "MountingHole_0_1"
(circle (center 0 0) (radius 1.27)
(stroke (width 1.27) (type default))
(fill (type none))
)
)
)
(symbol "Misc:Arduino_Pro_Micro" (in_bom yes) (on_board yes)
(property "Reference" "U" (at -12.7 44.45 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
)
(property "Value" "Arduino_Pro_Micro" (at 2.54 -44.45 0)
(effects (font (size 1.27 1.27)) (justify left top))
)
(property "Footprint" "Package_DIP:DIP-24_W15.24mm_Socket" (at 1.27 -62.23 0)
(effects (font (size 1.27 1.27) italic) hide)
)
(property "Datasheet" "" (at 1.27 -55.88 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "AVR 8bit Microcontroller MegaAVR USB" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "16MHz, 32kB Flash, 1.25kB SRAM, 512B EEPROM, USB 2.0, DIP-24" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "QFN*1EP*7x7mm*P0.5mm*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "Arduino_Pro_Micro_0_1"
(rectangle (start -12.7 -43.18) (end 12.7 43.18)
(stroke (width 0.254) (type default))
(fill (type background))
)
)
(symbol "Arduino_Pro_Micro_1_1"
(pin bidirectional line (at 15.24 0 180) (length 2.54)
(name "Digital1/PD3" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 15.24 -12.7 180) (length 2.54)
(name "Digital7/PE6" (effects (font (size 1.27 1.27))))
(number "10" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 15.24 27.94 180) (length 2.54)
(name "Digital8/PB4" (effects (font (size 1.27 1.27))))
(number "11" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 15.24 25.4 180) (length 2.54)
(name "Digital9/PB5" (effects (font (size 1.27 1.27))))
(number "12" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 15.24 22.86 180) (length 2.54)
(name "Digital10/PB6" (effects (font (size 1.27 1.27))))
(number "13" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 15.24 33.02 180) (length 2.54)
(name "Digital16/PB2" (effects (font (size 1.27 1.27))))
(number "14" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 15.24 30.48 180) (length 2.54)
(name "Digital14/PB3" (effects (font (size 1.27 1.27))))
(number "15" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 15.24 35.56 180) (length 2.54)
(name "Digital15/PB1" (effects (font (size 1.27 1.27))))
(number "16" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 15.24 -30.48 180) (length 2.54)
(name "Digital18/PF7" (effects (font (size 1.27 1.27))))
(number "17" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 15.24 -26.67 180) (length 2.54)
(name "Digital19/PF6" (effects (font (size 1.27 1.27))))
(number "18" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 15.24 -22.86 180) (length 2.54)
(name "Digital20/PF5" (effects (font (size 1.27 1.27))))
(number "19" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 15.24 2.54 180) (length 2.54)
(name "Digital0/PD2" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 15.24 -19.05 180) (length 2.54)
(name "Digital21/PF4" (effects (font (size 1.27 1.27))))
(number "20" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 0 45.72 270) (length 2.54)
(name "VCC" (effects (font (size 1.27 1.27))))
(number "21" (effects (font (size 1.27 1.27))))
)
(pin input line (at -15.24 38.1 0) (length 2.54)
(name "~{RESET}" (effects (font (size 1.27 1.27))))
(number "22" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 0 -45.72 90) (length 2.54)
(name "GND" (effects (font (size 1.27 1.27))))
(number "23" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at -15.24 30.48 0) (length 2.54)
(name "RAW" (effects (font (size 1.27 1.27))))
(number "24" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at -7.62 -45.72 90) (length 2.54)
(name "GND" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at -3.81 -45.72 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 15.24 5.08 180) (length 2.54)
(name "Digital2/PD1" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 15.24 7.62 180) (length 2.54)
(name "Digital3/PD0" (effects (font (size 1.27 1.27))))
(number "6" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 15.24 -2.54 180) (length 2.54)
(name "Digital4/PD4" (effects (font (size 1.27 1.27))))
(number "7" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 15.24 15.24 180) (length 2.54)
(name "Digital5/PC6" (effects (font (size 1.27 1.27))))
(number "8" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 15.24 -5.08 180) (length 2.54)
(name "Digital6/PD7" (effects (font (size 1.27 1.27))))
(number "9" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Switch:SW_SPST" (pin_names (offset 0) hide) (in_bom yes) (on_board yes)
(property "Reference" "SW" (at 0 3.175 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "SW_SPST" (at 0 -2.54 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" "switch lever" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Single Pole Single Throw (SPST) switch" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "SW_SPST_0_0"
(circle (center -2.032 0) (radius 0.508)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy -1.524 0.254)
(xy 1.524 1.778)
)
(stroke (width 0) (type default))
(fill (type none))
)
(circle (center 2.032 0) (radius 0.508)
(stroke (width 0) (type default))
(fill (type none))
)
)
(symbol "SW_SPST_1_1"
(pin passive line (at -5.08 0 0) (length 2.54)
(name "A" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 5.08 0 180) (length 2.54)
(name "B" (effects (font (size 1.27 1.27))))
(number "2" (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" "power-flag" (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))))
)
)
)
(symbol "power:PWR_FLAG" (power) (pin_numbers hide) (pin_names (offset 0) hide) (in_bom yes) (on_board yes)
(property "Reference" "#FLG" (at 0 1.905 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "PWR_FLAG" (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" "power-flag" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Special symbol for telling ERC where power comes from" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "PWR_FLAG_0_0"
(pin power_out line (at 0 0 90) (length 0)
(name "pwr" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
(symbol "PWR_FLAG_0_1"
(polyline
(pts
(xy 0 0)
(xy 0 1.27)
(xy -1.016 1.905)
(xy 0 2.54)
(xy 1.016 1.905)
(xy 0 1.27)
)
(stroke (width 0) (type default))
(fill (type none))
)
)
)
(symbol "power:VCC" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "#PWR" (at 0 -3.81 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "VCC" (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" "power-flag" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Power symbol creates a global label with name \"VCC\"" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "VCC_0_1"
(polyline
(pts
(xy -0.762 1.27)
(xy 0 2.54)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0 0)
(xy 0 2.54)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0 2.54)
(xy 0.762 1.27)
)
(stroke (width 0) (type default))
(fill (type none))
)
)
(symbol "VCC_1_1"
(pin power_in line (at 0 0 90) (length 0) hide
(name "VCC" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
)
(junction (at 219.075 111.125) (diameter 0) (color 0 0 0 0)
(uuid 1323f49a-c98d-44b8-bea1-5a8265f7662e)
)
(junction (at 158.115 132.08) (diameter 0) (color 0 0 0 0)
(uuid 34ab1659-7e59-4e0f-b4c6-02eee9aa3e40)
)
(junction (at 219.075 106.045) (diameter 0) (color 0 0 0 0)
(uuid 66f1433b-90cc-40d0-9bc5-7571aae97204)
)
(junction (at 219.075 108.585) (diameter 0) (color 0 0 0 0)
(uuid a606072a-1d03-442f-a608-78748e264615)
)
(junction (at 154.305 132.08) (diameter 0) (color 0 0 0 0)
(uuid d035c97b-1d26-45b0-b34d-1ea37ca0762d)
)
(no_connect (at 173.355 86.36) (uuid 1068dd54-db7a-4a92-b916-ffeb89271e9e))
(no_connect (at 142.875 55.88) (uuid 73b94a3b-0c74-46de-8a31-148651c13f23))
(no_connect (at 173.355 83.82) (uuid de096376-306c-47b2-88a8-679bf02a82a1))
(no_connect (at 173.355 88.9) (uuid ecb113d7-e3b5-457e-8dff-f65dc6772b07))
(no_connect (at 173.355 71.12) (uuid f5d79f5d-0e2d-4a50-8f91-a5282b35200d))
(wire (pts (xy 232.41 53.34) (xy 252.73 53.34))
(stroke (width 0) (type default))
(uuid 0a0c29e9-54d4-4e3f-9d85-33cda4f63f8b)
)
(wire (pts (xy 219.075 103.505) (xy 219.075 106.045))
(stroke (width 0) (type default))
(uuid 0b2199f2-22da-447c-acf2-a1246ddd4870)
)
(wire (pts (xy 219.075 111.125) (xy 219.075 114.935))
(stroke (width 0) (type default))
(uuid 0e4370f6-d53f-4c5b-a050-be70712a3f95)
)
(wire (pts (xy 255.905 106.68) (xy 258.445 106.68))
(stroke (width 0) (type default))
(uuid 115fe206-423a-4476-bf57-6b572d005a8d)
)
(wire (pts (xy 273.558 123.444) (xy 278.638 123.444))
(stroke (width 0) (type default))
(uuid 1636638a-9553-4b23-8e8f-8d8f22b01942)
)
(wire (pts (xy 241.3 45.72) (xy 241.3 38.1))
(stroke (width 0) (type default))
(uuid 1a8ca46c-07eb-4742-811a-c86c9e7c2f01)
)
(wire (pts (xy 132.715 36.83) (xy 132.715 33.02))
(stroke (width 0) (type default))
(uuid 456b938d-4e66-4c3c-823b-87bfa6b8b1d7)
)
(wire (pts (xy 158.115 34.925) (xy 158.115 40.64))
(stroke (width 0) (type default))
(uuid 57bbe2da-c607-4dbe-a55a-30b3e1c2b03e)
)
(wire (pts (xy 248.92 34.29) (xy 248.92 43.18))
(stroke (width 0) (type default))
(uuid 58ab5744-19ec-4751-8e92-c264fb32f342)
)
(wire (pts (xy 154.305 132.08) (xy 158.115 132.08))
(stroke (width 0) (type default))
(uuid 595be281-c413-4b36-bab8-fba893b50b2f)
)
(wire (pts (xy 241.3 45.72) (xy 252.73 45.72))
(stroke (width 0) (type default))
(uuid 5c95a7c5-4e42-418a-af93-328ddee33563)
)
(wire (pts (xy 219.075 108.585) (xy 219.075 111.125))
(stroke (width 0) (type default))
(uuid 615df63e-8103-4028-b449-a8aa1acf864c)
)
(wire (pts (xy 232.41 50.8) (xy 252.73 50.8))
(stroke (width 0) (type default))
(uuid 635be744-8155-4868-ac7c-bf4aa56359d6)
)
(wire (pts (xy 234.95 48.26) (xy 252.73 48.26))
(stroke (width 0) (type default))
(uuid 6b8f2c56-d53d-40a0-93cc-ef3f3f4cee9d)
)
(wire (pts (xy 236.22 58.42) (xy 252.73 58.42))
(stroke (width 0) (type default))
(uuid 6bfe9586-18fe-4767-8843-e50f18a4dd55)
)
(wire (pts (xy 255.778 123.444) (xy 258.318 123.444))
(stroke (width 0) (type default))
(uuid 72d253ec-496a-4c91-a9b9-482317686e17)
)
(wire (pts (xy 229.87 55.88) (xy 229.87 62.23))
(stroke (width 0) (type default))
(uuid 7a8463ad-12a1-4b87-8637-a2f796de8ac4)
)
(wire (pts (xy 274.32 142.24) (xy 279.4 142.24))
(stroke (width 0) (type default))
(uuid 88da0da5-ad9c-44dd-8f11-3757d0cff450)
)
(wire (pts (xy 219.075 106.045) (xy 219.075 108.585))
(stroke (width 0) (type default))
(uuid 908bab8b-ff69-4c3f-9e99-d8b8c50827b2)
)
(wire (pts (xy 236.22 58.42) (xy 236.22 68.58))
(stroke (width 0) (type default))
(uuid 9bb48166-e58b-4516-85f1-bfadd815b965)
)
(wire (pts (xy 81.28 191.77) (xy 92.71 191.77))
(stroke (width 0) (type default))
(uuid ad7c9376-6a5e-4feb-989b-4bc9e09cf1f5)
)
(wire (pts (xy 273.685 106.68) (xy 278.765 106.68))
(stroke (width 0) (type default))
(uuid c1a4ee32-d121-4049-9e49-950c857f6417)
)
(wire (pts (xy 252.73 30.48) (xy 252.73 40.64))
(stroke (width 0) (type default))
(uuid c8da1278-cca7-4545-ae61-aa59e913155d)
)
(wire (pts (xy 256.54 142.24) (xy 259.08 142.24))
(stroke (width 0) (type default))
(uuid ca96ce9d-edca-48b9-a5c0-9184dde7434a)
)
(wire (pts (xy 150.495 132.08) (xy 154.305 132.08))
(stroke (width 0) (type default))
(uuid ccb5baaa-af2d-4538-a226-8c6c730b30f8)
)
(wire (pts (xy 107.95 191.77) (xy 119.38 191.77))
(stroke (width 0) (type default))
(uuid d795d708-4dda-48e7-bf46-7cffe6e62e2d)
)
(wire (pts (xy 252.73 43.18) (xy 248.92 43.18))
(stroke (width 0) (type default))
(uuid dc21dc11-fa08-4178-97fb-bedb774239bc)
)
(wire (pts (xy 241.3 60.96) (xy 252.73 60.96))
(stroke (width 0) (type default))
(uuid dc311ccf-db5b-4f85-956a-d4411708fd36)
)
(wire (pts (xy 241.3 68.58) (xy 241.3 60.96))
(stroke (width 0) (type default))
(uuid ded47d25-bf13-43c4-a36d-c6518fa0aad0)
)
(wire (pts (xy 229.87 55.88) (xy 252.73 55.88))
(stroke (width 0) (type default))
(uuid f1dff9e6-8e8c-4ba6-8fa9-491af4c8566a)
)
(label "DB9_PIN_6" (at 173.355 60.96 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 02e94200-2769-4e1a-94dc-ec870964bf87)
)
(label "DB9_PIN_2" (at 173.355 53.34 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 1166f46f-f5f3-40cb-aba1-f84a397da823)
)
(label "PF6" (at 173.355 113.03 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 1198769e-026f-411c-8bef-6484c4fb2876)
)
(label "STATUSLED" (at 255.778 123.444 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 1ae4032c-45c0-46e0-a098-4ee58bbdc059)
)
(label "PF7" (at 206.375 111.125 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 24fba57b-2048-4f03-90b9-74f9c0211103)
)
(label "MODELED" (at 256.54 142.24 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 25f6e1cb-2fc4-449b-820a-2e14a481292e)
)
(label "DB9_PIN_1" (at 241.3 68.58 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 2fd8a8c9-a2d8-4082-ad9d-1d588a73dcfc)
)
(label "DB9_PIN_2" (at 229.87 62.23 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 3b693a79-31e5-4164-8432-bee9ba70d498)
)
(label "STATUSLED" (at 173.355 99.06 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 3ccaae5f-7871-46d9-bbed-169981f8d9b9)
)
(label "PF4" (at 173.355 105.41 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 4196f116-fa1e-43b1-9d91-0ed69762336a)
)
(label "DB9_SELECT_PIN" (at 232.41 53.34 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 47e23439-5e86-4535-ab15-b2348be63dbd)
)
(label "MODELED" (at 173.355 81.28 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 5a78dbfe-350e-420d-9490-5f7c733bf240)
)
(label "DB9_PIN_9" (at 173.355 63.5 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 625feb8a-fb79-4f02-826d-055846b22b60)
)
(label "CTL-LED" (at 255.905 106.68 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 76a6210c-63ef-4247-b7c9-efb7654531d6)
)
(label "DB9_PIN_3" (at 173.355 55.88 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 7b312088-a716-4011-b802-bde7bc96013c)
)
(label "RST" (at 122.555 33.02 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 7d96c6a2-2eb2-4718-932f-9a95bc6f3866)
)
(label "DB9_PIN_1" (at 173.355 50.8 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 7ef350f6-0904-456d-968e-680f762ccd1e)
)
(label "RST" (at 142.875 48.26 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 819a1d77-7a67-4328-9c60-4e3088ce6511)
)
(label "DB9_PIN_3" (at 232.41 50.8 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 82cb3dcb-0e84-4cee-adde-91142648de36)
)
(label "DB9_PIN_4" (at 241.3 38.1 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 8aab594b-1406-4795-aeda-73bd8ea899b5)
)
(label "DB9_PIN_9" (at 248.92 34.29 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid a685f334-8cc5-4d97-9552-1ed2bc60fc80)
)
(label "DB9_PIN_4" (at 173.355 58.42 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid aaad9899-f1b4-4125-8a60-ffaa26618044)
)
(label "DB9_SELECT_PIN" (at 173.355 91.44 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid b2d1e136-3eee-4a74-97ba-dff1bfb5844c)
)
(label "PF5" (at 206.375 106.045 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid b94ea225-feca-471a-b400-6bf02c8ce081)
)
(label "PF4" (at 206.375 103.505 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid c1bc7248-7110-41d2-99f5-24f3dccdcfce)
)
(label "DB9_PIN_6" (at 236.22 68.58 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid d2d878f8-d92d-4aa8-a991-2d1a82810e8e)
)
(label "PF7" (at 173.355 116.84 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid f1e5f48f-79f1-406b-b675-2db9aff03a1b)
)
(label "PF6" (at 206.375 108.585 180) (fields_autoplaced)