blob: bb9e87be42faec5f75e35d75983dd2d3199a4bd9 (
plain)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
|
(kicad_sch (version 20211123) (generator eeschema)
(uuid b3d08afa-f296-4e3b-8825-73b6331d35bf)
(paper "A4")
(title_block
(title "74HC4094 sniffer")
(date "26 jan 2010")
(rev "1")
(company "(C) 2010 Michael Buesch")
)
(lib_symbols
(symbol "Connector:Conn_01x01_Male" (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" "Conn_01x01_Male" (id 1) (at 0 -2.54 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, single row, 01x01, 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*:*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "Conn_01x01_Male_1_1"
(polyline
(pts
(xy 1.27 0)
(xy 0.8636 0)
)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start 0.8636 0.127) (end 0 -0.127)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type outline))
)
(pin passive line (at 5.08 0 180) (length 3.81)
(name "Pin_1" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Device:C" (pin_numbers hide) (pin_names (offset 0.254)) (in_bom yes) (on_board yes)
(property "Reference" "C" (id 0) (at 0.635 2.54 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "C" (id 1) (at 0.635 -2.54 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (id 2) (at 0.9652 -3.81 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" "cap capacitor" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Unpolarized capacitor" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "C_*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "C_0_1"
(polyline
(pts
(xy -2.032 -0.762)
(xy 2.032 -0.762)
)
(stroke (width 0.508) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -2.032 0.762)
(xy 2.032 0.762)
)
(stroke (width 0.508) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "C_1_1"
(pin passive line (at 0 3.81 270) (length 2.794)
(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 2.794)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Interface_UART:MAX232" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
(property "Reference" "U" (id 0) (at -2.54 28.575 0)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Value" "MAX232" (id 1) (at -2.54 26.67 0)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Footprint" "" (id 2) (at 1.27 -26.67 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "Datasheet" "http://www.ti.com/lit/ds/symlink/max232.pdf" (id 3) (at 0 2.54 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "rs232 uart transceiver line-driver" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Dual RS232 driver/receiver, 5V supply, 120kb/s, 0C-70C" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "SOIC*P1.27mm* DIP*W7.62mm* TSSOP*4.4x5mm*P0.65mm*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "MAX232_0_0"
(text "LOGIC" (at -11.43 -22.86 0)
(effects (font (size 1.27 1.27)))
)
(text "RS232" (at 11.43 -22.86 0)
(effects (font (size 1.27 1.27)))
)
)
(symbol "MAX232_0_1"
(rectangle (start -15.24 -25.4) (end 15.24 25.4)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type background))
)
(circle (center -2.54 -17.78) (radius 0.635)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
(circle (center -2.54 -12.7) (radius 0.635)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -3.81 -7.62)
(xy -8.255 -7.62)
)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -3.81 -2.54)
(xy -8.255 -2.54)
)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -3.175 -17.78)
(xy -8.255 -17.78)
)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -3.175 -12.7)
(xy -8.255 -12.7)
)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 1.27 -7.62)
(xy 6.35 -7.62)
)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 1.27 -2.54)
(xy 6.35 -2.54)
)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 1.905 -17.78)
(xy 6.35 -17.78)
)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 1.905 -12.7)
(xy 6.35 -12.7)
)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -3.81 -5.715)
(xy -3.81 -9.525)
(xy 0 -7.62)
(xy -3.81 -5.715)
)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -3.81 -0.635)
(xy -3.81 -4.445)
(xy 0 -2.54)
(xy -3.81 -0.635)
)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 1.905 -15.875)
(xy 1.905 -19.685)
(xy -1.905 -17.78)
(xy 1.905 -15.875)
)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 1.905 -10.795)
(xy 1.905 -14.605)
(xy -1.905 -12.7)
(xy 1.905 -10.795)
)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
(circle (center 0.635 -7.62) (radius 0.635)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
(circle (center 0.635 -2.54) (radius 0.635)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "MAX232_1_1"
(pin passive line (at -20.32 22.86 0) (length 5.08)
(name "C1+" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin input line (at -20.32 -7.62 0) (length 5.08)
(name "T2IN" (effects (font (size 1.27 1.27))))
(number "10" (effects (font (size 1.27 1.27))))
)
(pin input line (at -20.32 -2.54 0) (length 5.08)
(name "T1IN" (effects (font (size 1.27 1.27))))
(number "11" (effects (font (size 1.27 1.27))))
)
(pin output line (at -20.32 -12.7 0) (length 5.08)
(name "R1OUT" (effects (font (size 1.27 1.27))))
(number "12" (effects (font (size 1.27 1.27))))
)
(pin input line (at 20.32 -12.7 180) (length 5.08)
(name "R1IN" (effects (font (size 1.27 1.27))))
(number "13" (effects (font (size 1.27 1.27))))
)
(pin output line (at 20.32 -2.54 180) (length 5.08)
(name "T1OUT" (effects (font (size 1.27 1.27))))
(number "14" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 0 -30.48 90) (length 5.08)
(name "GND" (effects (font (size 1.27 1.27))))
(number "15" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 0 30.48 270) (length 5.08)
(name "VCC" (effects (font (size 1.27 1.27))))
(number "16" (effects (font (size 1.27 1.27))))
)
(pin power_out line (at 20.32 10.16 180) (length 5.08)
(name "VS+" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -20.32 15.24 0) (length 5.08)
(name "C1-" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 20.32 22.86 180) (length 5.08)
(name "C2+" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 20.32 15.24 180) (length 5.08)
(name "C2-" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
(pin power_out line (at 20.32 2.54 180) (length 5.08)
(name "VS-" (effects (font (size 1.27 1.27))))
(number "6" (effects (font (size 1.27 1.27))))
)
(pin output line (at 20.32 -7.62 180) (length 5.08)
(name "T2OUT" (effects (font (size 1.27 1.27))))
(number "7" (effects (font (size 1.27 1.27))))
)
(pin input line (at 20.32 -17.78 180) (length 5.08)
(name "R2IN" (effects (font (size 1.27 1.27))))
(number "8" (effects (font (size 1.27 1.27))))
)
(pin output line (at -20.32 -17.78 0) (length 5.08)
(name "R2OUT" (effects (font (size 1.27 1.27))))
(number "9" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "atmega8:ATMEGA8" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
(property "Reference" "U" (id 0) (at 0 -21.0058 0)
(effects (font (size 1.524 1.524)))
)
(property "Value" "ATMEGA8" (id 1) (at 0 21.0058 0)
(effects (font (size 1.524 1.524)))
)
(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)
)
(symbol "ATMEGA8_0_1"
(rectangle (start -21.59 19.05) (end 21.59 -19.05)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "ATMEGA8_1_1"
(pin unspecified line (at -29.21 16.51 0) (length 7.62)
(name "RST_PC6" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin unspecified line (at -29.21 -6.35 0) (length 7.62)
(name "X2_PB7" (effects (font (size 1.27 1.27))))
(number "10" (effects (font (size 1.27 1.27))))
)
(pin unspecified line (at -29.21 -8.89 0) (length 7.62)
(name "T1_PD5" (effects (font (size 1.27 1.27))))
(number "11" (effects (font (size 1.27 1.27))))
)
(pin unspecified line (at -29.21 -11.43 0) (length 7.62)
(name "AIN0_PD6" (effects (font (size 1.27 1.27))))
(number "12" (effects (font (size 1.27 1.27))))
)
(pin unspecified line (at -29.21 -13.97 0) (length 7.62)
(name "AIN1_PD7" (effects (font (size 1.27 1.27))))
(number "13" (effects (font (size 1.27 1.27))))
)
(pin unspecified line (at -29.21 -16.51 0) (length 7.62)
(name "ICP_PB0" (effects (font (size 1.27 1.27))))
(number "14" (effects (font (size 1.27 1.27))))
)
(pin unspecified line (at 29.21 -16.51 180) (length 7.62)
(name "OC1A_PB1" (effects (font (size 1.27 1.27))))
(number "15" (effects (font (size 1.27 1.27))))
)
(pin unspecified line (at 29.21 -13.97 180) (length 7.62)
(name "SS/OC1B_PB2" (effects (font (size 1.27 1.27))))
(number "16" (effects (font (size 1.27 1.27))))
)
(pin unspecified line (at 29.21 -11.43 180) (length 7.62)
(name "MOSI/OC2_PB3" (effects (font (size 1.27 1.27))))
(number "17" (effects (font (size 1.27 1.27))))
)
(pin unspecified line (at 29.21 -8.89 180) (length 7.62)
(name "MISO_PB4" (effects (font (size 1.27 1.27))))
(number "18" (effects (font (size 1.27 1.27))))
)
(pin unspecified line (at 29.21 -6.35 180) (length 7.62)
(name "SCK_PB5" (effects (font (size 1.27 1.27))))
(number "19" (effects (font (size 1.27 1.27))))
)
(pin unspecified line (at -29.21 13.97 0) (length 7.62)
(name "RXD_PD0" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin unspecified line (at 29.21 -3.81 180) (length 7.62)
(name "AVCC" (effects (font (size 1.27 1.27))))
(number "20" (effects (font (size 1.27 1.27))))
)
(pin unspecified line (at 29.21 -1.27 180) (length 7.62)
(name "AREF" (effects (font (size 1.27 1.27))))
(number "21" (effects (font (size 1.27 1.27))))
)
(pin unspecified line (at 29.21 1.27 180) (length 7.62)
(name "AGND" (effects (font (size 1.27 1.27))))
(number "22" (effects (font (size 1.27 1.27))))
)
(pin unspecified line (at 29.21 3.81 180) (length 7.62)
(name "ADC0_PC0" (effects (font (size 1.27 1.27))))
(number "23" (effects (font (size 1.27 1.27))))
)
(pin unspecified line (at 29.21 6.35 180) (length 7.62)
(name "ADC1_PC1" (effects (font (size 1.27 1.27))))
(number "24" (effects (font (size 1.27 1.27))))
)
(pin unspecified line (at 29.21 8.89 180) (length 7.62)
(name "ADC2_PC2" (effects (font (size 1.27 1.27))))
(number "25" (effects (font (size 1.27 1.27))))
)
(pin unspecified line (at 29.21 11.43 180) (length 7.62)
(name "ADC3_PC3" (effects (font (size 1.27 1.27))))
(number "26" (effects (font (size 1.27 1.27))))
)
(pin unspecified line (at 29.21 13.97 180) (length 7.62)
(name "ADC4/SDA_PC4" (effects (font (size 1.27 1.27))))
(number "27" (effects (font (size 1.27 1.27))))
)
(pin unspecified line (at 29.21 16.51 180) (length 7.62)
(name "ADC5/SCL_PC5" (effects (font (size 1.27 1.27))))
(number "28" (effects (font (size 1.27 1.27))))
)
(pin unspecified line (at -29.21 11.43 0) (length 7.62)
(name "TXD_PD1" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin unspecified line (at -29.21 8.89 0) (length 7.62)
(name "INT0_PD2" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin unspecified line (at -29.21 6.35 0) (length 7.62)
(name "INT1_PD3" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
(pin unspecified line (at -29.21 3.81 0) (length 7.62)
(name "XCK/TO_PD4" (effects (font (size 1.27 1.27))))
(number "6" (effects (font (size 1.27 1.27))))
)
(pin unspecified line (at -29.21 1.27 0) (length 7.62)
(name "VCC" (effects (font (size 1.27 1.27))))
(number "7" (effects (font (size 1.27 1.27))))
)
(pin unspecified line (at -29.21 -1.27 0) (length 7.62)
(name "GND" (effects (font (size 1.27 1.27))))
(number "8" (effects (font (size 1.27 1.27))))
)
(pin unspecified line (at -29.21 -3.81 0) (length 7.62)
(name "X1_PB6" (effects (font (size 1.27 1.27))))
(number "9" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "crystalosc:CRYSTALOSC" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
(property "Reference" "X" (id 0) (at 0 -7.62 0)
(effects (font (size 1.524 1.524)))
)
(property "Value" "CRYSTALOSC" (id 1) (at 0 0 0)
(effects (font (size 1.524 1.524)))
)
(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)
)
(symbol "CRYSTALOSC_0_1"
(arc (start -10.16 6.35) (mid -11.0488 5.9766) (end -11.43 5.08)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -10.16 6.35)
(xy 10.16 6.35)
(xy 10.16 6.35)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 11.43 5.08)
(xy 11.43 -5.08)
(xy 11.43 -5.08)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -11.43 5.08)
(xy -11.43 -6.35)
(xy 10.16 -6.35)
(xy 10.16 -6.35)
(xy 10.16 -6.35)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(arc (start 10.16 -6.35) (mid 11.0746 -5.9871) (end 11.43 -5.08)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(arc (start 11.43 5.08) (mid 10.9449 5.8649) (end 10.16 6.35)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "CRYSTALOSC_1_1"
(pin input line (at -17.78 -3.81 0) (length 7.62)
(name "NC" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin input line (at -17.78 3.81 0) (length 7.62)
(name "Vcc" (effects (font (size 1.27 1.27))))
(number "14" (effects (font (size 1.27 1.27))))
)
(pin input line (at 17.78 -3.81 180) (length 7.62)
(name "GND" (effects (font (size 1.27 1.27))))
(number "7" (effects (font (size 1.27 1.27))))
)
(pin input line (at 17.78 3.81 180) (length 7.62)
(name "Out" (effects (font (size 1.27 1.27))))
(number "8" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "power:+5V" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "#PWR" (id 0) (at 0 -3.81 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "+5V" (id 1) (at 0 3.556 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 \"+5V\"" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "+5V_0_1"
(polyline
(pts
(xy -0.762 1.27)
(xy 0 2.54)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 0)
(xy 0 2.54)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 2.54)
(xy 0.762 1.27)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "+5V_1_1"
(pin power_in line (at 0 0 90) (length 0) hide
(name "+5V" (effects (font (size 1.27 1.27))))
(number "1" (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 109.22 60.96) (diameter 0) (color 0 0 0 0)
(uuid 8e2bb2e1-f66a-4d9c-9bfb-95fa9c8bd421)
)
(no_connect (at 55.88 85.09) (uuid 62c076a3-d618-44a2-9042-9a08b3576787))
(no_connect (at 96.52 85.09) (uuid c1d83899-e380-49f9-a87d-8e78bc089ebf))
(no_connect (at 69.85 138.43) (uuid d42427d9-8287-4e08-91bc-91fe6d5e47cf))
(no_connect (at 121.92 120.65) (uuid d42427d9-8287-4e08-91bc-91fe6d5e47cf))
(no_connect (at 121.92 123.19) (uuid d42427d9-8287-4e08-91bc-91fe6d5e47cf))
(no_connect (at 121.92 133.35) (uuid d42427d9-8287-4e08-91bc-91fe6d5e47cf))
(no_connect (at 121.92 135.89) (uuid d42427d9-8287-4e08-91bc-91fe6d5e47cf))
(no_connect (at 121.92 138.43) (uuid d42427d9-8287-4e08-91bc-91fe6d5e47cf))
(no_connect (at 121.92 140.97) (uuid d42427d9-8287-4e08-91bc-91fe6d5e47cf))
(no_connect (at 121.92 143.51) (uuid d42427d9-8287-4e08-91bc-91fe6d5e47cf))
(no_connect (at 121.92 110.49) (uuid d42427d9-8287-4e08-91bc-91fe6d5e47cf))
(no_connect (at 121.92 118.11) (uuid d42427d9-8287-4e08-91bc-91fe6d5e47cf))
(no_connect (at 180.34 110.49) (uuid d42427d9-8287-4e08-91bc-91fe6d5e47cf))
(no_connect (at 180.34 113.03) (uuid d42427d9-8287-4e08-91bc-91fe6d5e47cf))
(no_connect (at 180.34 115.57) (uuid d42427d9-8287-4e08-91bc-91fe6d5e47cf))
(no_connect (at 180.34 125.73) (uuid d42427d9-8287-4e08-91bc-91fe6d5e47cf))
(no_connect (at 180.34 128.27) (uuid d42427d9-8287-4e08-91bc-91fe6d5e47cf))
(no_connect (at 180.34 130.81) (uuid d42427d9-8287-4e08-91bc-91fe6d5e47cf))
(no_connect (at 180.34 133.35) (uuid d42427d9-8287-4e08-91bc-91fe6d5e47cf))
(no_connect (at 180.34 135.89) (uuid d42427d9-8287-4e08-91bc-91fe6d5e47cf))
(no_connect (at 180.34 138.43) (uuid d42427d9-8287-4e08-91bc-91fe6d5e47cf))
(no_connect (at 180.34 140.97) (uuid d42427d9-8287-4e08-91bc-91fe6d5e47cf))
(no_connect (at 180.34 143.51) (uuid d42427d9-8287-4e08-91bc-91fe6d5e47cf))
(no_connect (at 55.88 74.93) (uuid da469d11-a8a4-414b-9449-d151eeaf4853))
(no_connect (at 96.52 74.93) (uuid e9bb29b2-2bb9-4ea2-acd9-2bb3ca677a12))
(wire (pts (xy 109.22 57.15) (xy 109.22 60.96))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 01aa1221-32f2-4d72-9b5f-279d32c59519)
)
(wire (pts (xy 53.34 80.01) (xy 53.34 113.03))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 03d88a85-11fd-47aa-954c-c318bb15294a)
)
(wire (pts (xy 76.2 97.79) (xy 76.2 99.06))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 09987cb6-a072-4fe3-b300-2a513145c1f8)
)
(wire (pts (xy 133.35 82.55) (xy 133.35 69.85))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0a3cc030-c9dd-4d74-9d50-715ed2b361a2)
)
(wire (pts (xy 48.26 52.07) (xy 55.88 52.07))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0d0bb7b2-a6e5-46d2-9492-a1aa6e5a7b2f)
)
(wire (pts (xy 227.33 129.54) (xy 227.33 120.65))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 120a7b0f-ddfd-4447-85c1-35665465acdb)
)
(wire (pts (xy 50.8 115.57) (xy 50.8 69.85))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 15875808-74d5-4210-b8ca-aa8fbc04ae21)
)
(wire (pts (xy 96.52 64.77) (xy 100.33 64.77))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 16a22a5b-7fa7-46c6-89e7-ff310fe16371)
)
(wire (pts (xy 53.34 113.03) (xy 121.92 113.03))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1a2f72d1-0b36-4610-afc4-4ad1660d5d3b)
)
(wire (pts (xy 107.95 57.15) (xy 109.22 57.15))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 28c16a9f-6e25-409d-83e3-b43bc84b2bf3)
)
(wire (pts (xy 109.22 60.96) (xy 111.76 60.96))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 30830011-d03e-4fec-a71b-080a86a41e0f)
)
(wire (pts (xy 120.65 80.01) (xy 120.65 82.55))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3fd4b9a3-0d9b-40b2-98b2-d5d07e8370c7)
)
(wire (pts (xy 67.31 130.81) (xy 69.85 130.81))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 48f827a8-6e22-4a2e-abdc-c2a03098d883)
)
(wire (pts (xy 243.84 129.54) (xy 243.84 118.11))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4e3d7c0d-12e3-42f2-b944-e4bcdbbcac2a)
)
(wire (pts (xy 96.52 44.45) (xy 104.14 44.45))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5ac177a2-7339-4326-b6db-92317ca5bcfa)
)
(wire (pts (xy 180.34 123.19) (xy 210.82 123.19))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5b2b5c7d-f943-4634-9f0a-e9561705c49d)
)
(wire (pts (xy 121.92 115.57) (xy 50.8 115.57))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 81bbc3ff-3938-49ac-8297-ce2bcc9a42bd)
)
(wire (pts (xy 133.35 69.85) (xy 96.52 69.85))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8322f275-268c-4e87-a69f-4cfbf05e747f)
)
(wire (pts (xy 96.52 57.15) (xy 100.33 57.15))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8b550d8b-3c0e-4760-8ac6-b9ac1b5efadc)
)
(wire (pts (xy 227.33 120.65) (xy 180.34 120.65))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8d55e186-3e11-40e8-a65e-b36a8a00069e)
)
(wire (pts (xy 76.2 35.56) (xy 76.2 36.83))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8fd98965-2660-4371-97d2-8edec6768615)
)
(wire (pts (xy 53.34 80.01) (xy 55.88 80.01))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 9975d93b-998d-4725-bcb4-5c892d30bd5a)
)
(wire (pts (xy 109.22 64.77) (xy 107.95 64.77))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 9bf2d0e2-c82c-4586-a029-351ade7240e1)
)
(wire (pts (xy 119.38 125.73) (xy 121.92 125.73))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 9c8ccb2a-b1e9-4f2c-94fe-301b5975277e)
)
(wire (pts (xy 105.41 138.43) (xy 107.95 138.43))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a03e565f-d8cd-4032-aae3-b7327d4143dd)
)
(wire (pts (xy 243.84 118.11) (xy 180.34 118.11))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid aa02e544-13f5-4cf8-a5f4-3e6cda006090)
)
(wire (pts (xy 210.82 123.19) (xy 210.82 129.54))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c70d9ef3-bfeb-47e0-a1e1-9aeba3da7864)
)
(wire (pts (xy 96.52 52.07) (xy 104.14 52.07))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid cd5449a3-07e3-442a-adb3-611d1be347cb)
)
(wire (pts (xy 105.41 130.81) (xy 121.92 130.81))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid cef6f603-8a0b-4dd0-af99-ebfbef7d1b4b)
)
(wire (pts (xy 50.8 69.85) (xy 55.88 69.85))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid dd00c2e1-6027-4717-b312-4fab3ee52002)
)
(wire (pts (xy 48.26 44.45) (xy 55.88 44.45))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid dde3dba8-1b81-466c-93a3-c284ff4da1ef)
)
(wire (pts (xy 118.11 128.27) (xy 121.92 128.27))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid e877bf4a-4210-4bd3-b7b0-806eb4affc5b)
)
(wire (pts (xy 109.22 60.96) (xy 109.22 64.77))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid f878d668-f0a8-43a7-832b-54bb0acc5ffe)
)
(wire (pts (xy 96.52 80.01) (xy 120.65 80.01))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid f8e4d3c2-330e-4143-9369-6cf0ab8506f4)
)
(symbol (lib_id "atmega8:ATMEGA8") (at 151.13 127 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-00004b5eff10)
(property "Reference" "U2" (id 0) (at 151.13 148.0058 0)
(effects (font (size 1.524 1.524)))
)
(property "Value" "ATMEGA8" (id 1) (at 151.13 105.9942 0)
(effects (font (size 1.524 1.524)))
)
(property "Footprint" "" (id 2) (at 151.13 127 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 151.13 127 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 1a6d2848-e78e-49fe-8978-e1890f07836f))
(pin "10" (uuid 7d34f6b1-ab31-49be-b011-c67fe67a8a56))
(pin "11" (uuid 12422a89-3d0c-485c-9386-f77121fd68fd))
(pin "12" (uuid 8e06ba1f-e3ba-4eb9-a10e-887dffd566d6))
(pin "13" (uuid 40165eda-4ba6-4565-9bb4-b9df6dbb08da))
(pin "14" (uuid 7e023245-2c2b-4e2b-bfb9-5d35176e88f2))
(pin "15" (uuid 4780a290-d25c-4459-9579-eba3f7678762))
(pin "16" (uuid df68c26a-03b5-4466-aecf-ba34b7dce6b7))
(pin "17" (uuid babeabf2-f3b0-4ed5-8d9e-0215947e6cf3))
(pin "18" (uuid e8c50f1b-c316-4110-9cce-5c24c65a1eaa))
(pin "19" (uuid d7269d2a-b8c0-422d-8f25-f79ea31bf75e))
(pin "2" (uuid aca4de92-9c41-4c2b-9afa-540d02dafa1c))
(pin "20" (uuid c43663ee-9a0d-4f27-a292-89ba89964065))
(pin "21" (uuid c830e3bc-dc64-4f65-8f47-3b106bae2807))
(pin "22" (uuid 25d545dc-8f50-4573-922c-35ef5a2a3a19))
(pin "23" (uuid 1e8701fc-ad24-40ea-846a-e3db538d6077))
(pin "24" (uuid d5641ac9-9be7-46bf-90b3-6c83d852b5ba))
(pin "25" (uuid c25a772d-af9c-4ebc-96f6-0966738c13a8))
(pin "26" (uuid 8c514922-ffe1-4e37-a260-e807409f2e0d))
(pin "27" (uuid 40976bf0-19de-460f-ad64-224d4f51e16b))
(pin "28" (uuid e21aa84b-970e-47cf-b64f-3b55ee0e1b51))
(pin "3" (uuid c8c79177-94d4-43e2-a654-f0a5554fbb68))
(pin "4" (uuid a15a7506-eae4-4933-84da-9ad754258706))
(pin "5" (uuid d3c11c8f-a73d-4211-934b-a6da255728ad))
(pin "6" (uuid 639c0e59-e95c-4114-bccd-2e7277505454))
(pin "7" (uuid 8ca3e20d-bcc7-4c5e-9deb-562dfed9fecb))
(pin "8" (uuid 03caada9-9e22-4e2d-9035-b15433dfbb17))
(pin "9" (uuid 1f3003e6-dce5-420f-906b-3f1e92b67249))
)
(symbol (lib_id "crystalosc:CRYSTALOSC") (at 87.63 134.62 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-00004b5eff4f)
(property "Reference" "X1" (id 0) (at 87.63 142.24 0)
(effects (font (size 1.524 1.524)))
)
(property "Value" "16 MHz" (id 1) (at 87.63 134.62 0)
(effects (font (size 1.524 1.524)))
)
(property "Footprint" "" (id 2) (at 87.63 134.62 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 87.63 134.62 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 85b7594c-358f-454b-b2ad-dd0b1d67ed76))
(pin "14" (uuid 16bd6381-8ac0-4bf2-9dce-ecc20c724b8d))
(pin "7" (uuid a5cd8da1-8f7f-4f80-bb23-0317de562222))
(pin "8" (uuid 4f66b314-0f62-4fb6-8c3c-f9c6a75cd3ec))
)
(symbol (lib_id "power:+5V") (at 67.31 130.81 90) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-00004b5eff66)
(property "Reference" "#PWR1" (id 0) (at 65.024 130.81 0)
(effects (font (size 0.508 0.508)) hide)
)
(property "Value" "+5V" (id 1) (at 63.5 130.81 0)
(effects (font (size 0.762 0.762)))
)
(property "Footprint" "" (id 2) (at 67.31 130.81 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 67.31 130.81 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 87e2e7ef-4213-4a3c-a8d1-3d732c40338e))
)
(symbol (lib_id "power:+5V") (at 119.38 125.73 90) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-00004b5eff6b)
(property "Reference" "#PWR6" (id 0) (at 117.094 125.73 0)
(effects (font (size 0.508 0.508)) hide)
)
(property "Value" "+5V" (id 1) (at 115.57 125.73 0)
(effects (font (size 0.762 0.762)))
)
(property "Footprint" "" (id 2) (at 119.38 125.73 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 119.38 125.73 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid ca039237-750b-4be6-b02a-31d66072212e))
)
(symbol (lib_id "power:GND") (at 118.11 128.27 270) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-00004b5effc9)
(property "Reference" "#PWR5" (id 0) (at 118.11 128.27 0)
(effects (font (size 0.762 0.762)) hide)
)
(property "Value" "GND" (id 1) (at 116.332 128.27 0)
(effects (font (size 0.762 0.762)) hide)
)
(property "Footprint" "" (id 2) (at 118.11 128.27 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 118.11 128.27 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 5e361ed3-3a10-4775-add8-f70a72b9000d))
)
(symbol (lib_id "power:GND") (at 107.95 138.43 90) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-00004b5effd6)
(property "Reference" "#PWR4" (id 0) (at 107.95 138.43 0)
(effects (font (size 0.762 0.762)) hide)
)
(property "Value" "GND" (id 1) (at 109.728 138.43 0)
(effects (font (size 0.762 0.762)) hide)
)
(property "Footprint" "" (id 2) (at 107.95 138.43 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 107.95 138.43 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 4191ef53-102f-4cd9-8f99-b7e26e6d4541))
)
(symbol (lib_id "Connector:Conn_01x01_Male") (at 210.82 134.62 90) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-00004b5efffa)
(property "Reference" "P3" (id 0) (at 205.74 134.62 0)
(effects (font (size 1.016 1.016)))
)
(property "Value" "4094 CP" (id 1) (at 208.28 134.62 0)
(effects (font (size 0.762 0.762)))
)
(property "Footprint" "" (id 2) (at 210.82 134.62 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 210.82 134.62 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 3f6d185e-f550-440a-899d-361dc95bf216))
)
(symbol (lib_id "Connector:Conn_01x01_Male") (at 227.33 134.62 90) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-00004b5f0002)
(property "Reference" "P4" (id 0) (at 222.25 134.62 0)
(effects (font (size 1.016 1.016)))
)
(property "Value" "4094 DATA" (id 1) (at 224.79 134.62 0)
(effects (font (size 0.762 0.762)))
)
(property "Footprint" "" (id 2) (at 227.33 134.62 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 227.33 134.62 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 49bd3f68-3a49-47ec-9de3-67ffc0c3183c))
)
(symbol (lib_id "Connector:Conn_01x01_Male") (at 243.84 134.62 90) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-00004b5f0044)
(property "Reference" "P5" (id 0) (at 238.76 134.62 0)
(effects (font (size 1.016 1.016)))
)
(property "Value" "4094 STROBE" (id 1) (at 241.3 134.62 0)
(effects (font (size 0.762 0.762)))
)
(property "Footprint" "" (id 2) (at 243.84 134.62 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 243.84 134.62 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid c947d341-044e-4a95-90db-024433f36611))
)
(symbol (lib_id "Interface_UART:MAX232") (at 76.2 67.31 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-00004b5f0087)
(property "Reference" "U1" (id 0) (at 76.2 45.72 0)
(effects (font (size 1.778 1.778)))
)
(property "Value" "MAX232" (id 1) (at 76.2 88.9 0)
(effects (font (size 1.778 1.778)))
)
(property "Footprint" "" (id 2) (at 77.47 93.98 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "Datasheet" "http://www.ti.com/lit/ds/symlink/max232.pdf" (id 3) (at 76.2 64.77 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid d6253298-0ab5-41d2-bbf6-e6701ed26688))
(pin "10" (uuid c5ef805e-7ee8-49ee-b400-57aead073c71))
(pin "11" (uuid 1c3385d9-f941-4399-a0fd-f7e68f617b38))
(pin "12" (uuid 56d44ab6-e63b-4d23-aed5-745875aff1b8))
(pin "13" (uuid ccd5dc07-e957-4e6a-b102-3ea3c95cfb8e))
(pin "14" (uuid f7578c43-cf64-4bb0-91c5-92a2420ddc56))
(pin "15" (uuid ae8ffd1f-b09c-4877-ad01-ccb3fb0a0efc))
(pin "16" (uuid f74ae44b-26ed-4dfb-9277-0a6ab6ea3bdc))
(pin "2" (uuid b1816f0d-055c-4452-8d35-df258a41189c))
(pin "3" (uuid a8bd65c7-2e8b-4b48-b3f3-ac8dfb6e8b22))
(pin "4" (uuid fecf2170-09e6-4ecd-b2d2-843e3f3c6356))
(pin "5" (uuid 1b426a5c-5962-42a5-90a9-e9beff2a83b7))
(pin "6" (uuid 1560abd3-82b8-47b3-8a71-c7983ddb54c7))
(pin "7" (uuid 8a41d974-3869-4159-a02c-512761350f11))
(pin "8" (uuid 0f6ad095-f03c-4328-8827-f80a0ca8101b))
(pin "9" (uuid a4bbd522-8189-4f01-81bf-de57d340179b))
)
(symbol (lib_id "Device:C") (at 48.26 48.26 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-00004b5f0094)
(property "Reference" "C1" (id 0) (at 49.53 45.72 0))
(property "Value" "C" (id 1) (at 49.53 50.8 0))
(property "Footprint" "" (id 2) (at 49.2252 52.07 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 48.26 48.26 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 6a7969b2-ddb4-4dd1-a1f2-8eb5be9e80dd))
(pin "2" (uuid 9d9d14fa-b439-460e-8143-dbb5e1e8ed8b))
)
(symbol (lib_id "Device:C") (at 104.14 48.26 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-00004b5f009a)
(property "Reference" "C2" (id 0) (at 105.41 45.72 0))
(property "Value" "C" (id 1) (at 105.41 50.8 0))
(property "Footprint" "" (id 2) (at 105.1052 52.07 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 104.14 48.26 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid b9e42457-3488-454c-91f0-513fe888c092))
(pin "2" (uuid cc181095-ccb9-4f2a-b094-7476f3b1d0e6))
)
(symbol (lib_id "Device:C") (at 104.14 57.15 90) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-00004b5f00a0)
(property "Reference" "C3" (id 0) (at 101.6 55.88 0))
(property "Value" "C" (id 1) (at 106.68 55.88 0))
(property "Footprint" "" (id 2) (at 107.95 56.1848 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 104.14 57.15 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid d72f1388-183b-4aea-b6f4-3ced835d328f))
(pin "2" (uuid 7785a74b-e58e-4bb2-b638-b676297b7a3b))
)
(symbol (lib_id "Device:C") (at 104.14 64.77 90) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-00004b5f00ab)
(property "Reference" "C4" (id 0) (at 101.6 63.5 0))
(property "Value" "C" (id 1) (at 106.68 63.5 0))
(property "Footprint" "" (id 2) (at 107.95 63.8048 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 104.14 64.77 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid a9bcb1ea-0adb-457d-977f-1eb95764dc86))
(pin "2" (uuid 1de7d69f-a910-4281-b9db-78b5f5c42db1))
)
(symbol (lib_id "power:GND") (at 111.76 60.96 90) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-00004b5f00c4)
(property "Reference" "#PWR3" (id 0) (at 111.76 60.96 0)
(effects (font (size 0.762 0.762)) hide)
)
(property "Value" "GND" (id 1) (at 113.538 60.96 0)
(effects (font (size 0.762 0.762)) hide)
)
(property "Footprint" "" (id 2) (at 111.76 60.96 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 111.76 60.96 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid e09d5a18-c59f-4b1f-aeb1-4b1d195e672d))
)
(symbol (lib_id "power:+5V") (at 76.2 35.56 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-00004b5f00cd)
(property "Reference" "#PWR2" (id 0) (at 76.2 33.274 0)
(effects (font (size 0.508 0.508)) hide)
)
(property "Value" "+5V" (id 1) (at 76.2 31.75 0)
(effects (font (size 0.762 0.762)))
)
(property "Footprint" "" (id 2) (at 76.2 35.56 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 76.2 35.56 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid ce8f6e9e-1b54-4367-84bf-b781a5d65a1f))
)
(symbol (lib_id "Connector:Conn_01x01_Male") (at 133.35 87.63 90) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-00004b5f00f7)
(property "Reference" "P2" (id 0) (at 128.27 87.63 0)
(effects (font (size 1.016 1.016)))
)
(property "Value" "RS232 TX" (id 1) (at 130.81 87.63 0)
(effects (font (size 0.762 0.762)))
)
(property "Footprint" "" (id 2) (at 133.35 87.63 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 133.35 87.63 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 94159dc6-e2f8-4a1e-b8f9-e43a4939abe7))
)
(symbol (lib_id "Connector:Conn_01x01_Male") (at 120.65 87.63 90) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-00004b5f010a)
(property "Reference" "P1" (id 0) (at 115.57 87.63 0)
(effects (font (size 1.016 1.016)))
)
(property "Value" "RS232 RX" (id 1) (at 118.11 87.63 0)
(effects (font (size 0.762 0.762)))
)
(property "Footprint" "" (id 2) (at 120.65 87.63 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 120.65 87.63 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid dd3479b7-66ee-40e9-9a84-14d0334668f7))
)
(symbol (lib_id "power:GND") (at 76.2 99.06 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid f7cfdce2-4149-4970-8a70-3b7797744b28)
(property "Reference" "#PWR?" (id 0) (at 76.2 99.06 0)
(effects (font (size 0.762 0.762)) hide)
)
(property "Value" "GND" (id 1) (at 76.2 100.838 0)
(effects (font (size 0.762 0.762)) hide)
)
(property "Footprint" "" (id 2) (at 76.2 99.06 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 76.2 99.06 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 67c8f530-f688-433f-b58e-a088c8e25f21))
)
(sheet_instances
(path "/" (page "1"))
)
(symbol_instances
(path "/00000000-0000-0000-0000-00004b5eff66"
(reference "#PWR1") (unit 1) (value "+5V") (footprint "")
)
(path "/00000000-0000-0000-0000-00004b5f00cd"
(reference "#PWR2") (unit 1) (value "+5V") (footprint "")
)
(path "/00000000-0000-0000-0000-00004b5f00c4"
(reference "#PWR3") (unit 1) (value "GND") (footprint "")
)
(path "/00000000-0000-0000-0000-00004b5effd6"
(reference "#PWR4") (unit 1) (value "GND") (footprint "")
)
(path "/00000000-0000-0000-0000-00004b5effc9"
(reference "#PWR5") (unit 1) (value "GND") (footprint "")
)
(path "/00000000-0000-0000-0000-00004b5eff6b"
(reference "#PWR6") (unit 1) (value "+5V") (footprint "")
)
(path "/f7cfdce2-4149-4970-8a70-3b7797744b28"
(reference "#PWR?") (unit 1) (value "GND") (footprint "")
)
(path "/00000000-0000-0000-0000-00004b5f0094"
(reference "C1") (unit 1) (value "C") (footprint "")
)
(path "/00000000-0000-0000-0000-00004b5f009a"
(reference "C2") (unit 1) (value "C") (footprint "")
)
(path "/00000000-0000-0000-0000-00004b5f00a0"
(reference "C3") (unit 1) (value "C") (footprint "")
)
(path "/00000000-0000-0000-0000-00004b5f00ab"
(reference "C4") (unit 1) (value "C") (footprint "")
)
(path "/00000000-0000-0000-0000-00004b5f010a"
(reference "P1") (unit 1) (value "RS232 RX") (footprint "")
)
(path "/00000000-0000-0000-0000-00004b5f00f7"
(reference "P2") (unit 1) (value "RS232 TX") (footprint "")
)
(path "/00000000-0000-0000-0000-00004b5efffa"
(reference "P3") (unit 1) (value "4094 CP") (footprint "")
)
(path "/00000000-0000-0000-0000-00004b5f0002"
(reference "P4") (unit 1) (value "4094 DATA") (footprint "")
)
(path "/00000000-0000-0000-0000-00004b5f0044"
(reference "P5") (unit 1) (value "4094 STROBE") (footprint "")
)
(path "/00000000-0000-0000-0000-00004b5f0087"
(reference "U1") (unit 1) (value "MAX232") (footprint "")
)
(path "/00000000-0000-0000-0000-00004b5eff10"
(reference "U2") (unit 1) (value "ATMEGA8") (footprint "")
)
(path "/00000000-0000-0000-0000-00004b5eff4f"
(reference "X1") (unit 1) (value "16 MHz") (footprint "")
)
)
)
|