summaryrefslogtreecommitdiff
path: root/electrical/r2/Microcontroller_BM.kicad_sch
blob: 157e84b3a4f5f5da4f1455354ee54d53771234ab (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
(kicad_sch (version 20211123) (generator eeschema)

  (uuid dd5c3c64-11ce-4733-952b-f4e00f424b45)

  (paper "A4")

  (lib_symbols
    (symbol "Device:Resonator_Small" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
      (property "Reference" "Y" (id 0) (at 3.175 1.905 0)
        (effects (font (size 1.27 1.27)) (justify left))
      )
      (property "Value" "Resonator_Small" (id 1) (at 3.175 0 0)
        (effects (font (size 1.27 1.27)) (justify left))
      )
      (property "Footprint" "" (id 2) (at -0.635 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "Datasheet" "~" (id 3) (at -0.635 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_keywords" "ceramic resonator" (id 4) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_description" "Three pin ceramic resonator, small symbol" (id 5) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_fp_filters" "Filter* Resonator*" (id 6) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (symbol "Resonator_Small_0_1"
        (rectangle (start -3.556 -2.54) (end -1.524 -2.794)
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type outline))
        )
        (rectangle (start -3.556 -1.778) (end -1.524 -2.032)
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type outline))
        )
        (circle (center -2.54 0) (radius 0.254)
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type outline))
        )
        (rectangle (start -0.635 1.905) (end 0.635 -1.905)
          (stroke (width 0.3048) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (circle (center 0 -3.81) (radius 0.254)
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type outline))
        )
        (polyline
          (pts
            (xy -2.54 -1.778)
            (xy -2.54 0)
          )
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (polyline
          (pts
            (xy -2.54 0)
            (xy -1.397 0)
          )
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (polyline
          (pts
            (xy -2.54 1.27)
            (xy -2.54 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)
          )
          (stroke (width 0.381) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (polyline
          (pts
            (xy 1.27 -1.27)
            (xy 1.27 1.27)
          )
          (stroke (width 0.381) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (polyline
          (pts
            (xy 1.27 0)
            (xy 2.54 0)
          )
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (polyline
          (pts
            (xy 2.54 0)
            (xy 2.54 -1.778)
          )
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (polyline
          (pts
            (xy 2.54 1.27)
            (xy 2.54 0)
          )
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (polyline
          (pts
            (xy 2.413 -2.794)
            (xy 2.413 -3.81)
            (xy -2.413 -3.81)
            (xy -2.413 -2.667)
          )
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (rectangle (start 1.524 -2.54) (end 3.556 -2.794)
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type outline))
        )
        (rectangle (start 1.524 -1.778) (end 3.556 -2.032)
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type outline))
        )
        (circle (center 2.54 0) (radius 0.254)
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type outline))
        )
      )
      (symbol "Resonator_Small_1_1"
        (pin passive line (at -2.54 2.54 270) (length 1.27)
          (name "1" (effects (font (size 1.27 1.27))))
          (number "1" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at 0 -5.08 90) (length 1.27)
          (name "2" (effects (font (size 1.27 1.27))))
          (number "2" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at 2.54 2.54 270) (length 1.27)
          (name "3" (effects (font (size 1.27 1.27))))
          (number "3" (effects (font (size 1.27 1.27))))
        )
      )
    )
    (symbol "dk_Embedded-Microcontrollers:ATMEGA328P-AUR" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
      (property "Reference" "U" (id 0) (at -10.16 24.13 0)
        (effects (font (size 1.27 1.27)) (justify left))
      )
      (property "Value" "ATMEGA328P-AUR" (id 1) (at 3.81 -13.97 0)
        (effects (font (size 1.27 1.27)) (justify left))
      )
      (property "Footprint" "digikey-footprints:TQFP-32_7x7mm" (id 2) (at 5.08 5.08 0)
        (effects (font (size 1.524 1.524)) (justify left) hide)
      )
      (property "Datasheet" "http://www.microchip.com/mymicrochip/filehandler.aspx?ddocname=en589968" (id 3) (at 5.08 7.62 0)
        (effects (font (size 1.524 1.524)) (justify left) hide)
      )
      (property "Digi-Key_PN" "ATMEGA328P-AURCT-ND" (id 4) (at 5.08 10.16 0)
        (effects (font (size 1.524 1.524)) (justify left) hide)
      )
      (property "MPN" "ATMEGA328P-AUR" (id 5) (at 5.08 12.7 0)
        (effects (font (size 1.524 1.524)) (justify left) hide)
      )
      (property "Category" "Integrated Circuits (ICs)" (id 6) (at 5.08 15.24 0)
        (effects (font (size 1.524 1.524)) (justify left) hide)
      )
      (property "Family" "Embedded - Microcontrollers" (id 7) (at 5.08 17.78 0)
        (effects (font (size 1.524 1.524)) (justify left) hide)
      )
      (property "DK_Datasheet_Link" "http://www.microchip.com/mymicrochip/filehandler.aspx?ddocname=en589968" (id 8) (at 5.08 20.32 0)
        (effects (font (size 1.524 1.524)) (justify left) hide)
      )
      (property "DK_Detail_Page" "/product-detail/en/microchip-technology/ATMEGA328P-AUR/ATMEGA328P-AURCT-ND/3789455" (id 9) (at 5.08 22.86 0)
        (effects (font (size 1.524 1.524)) (justify left) hide)
      )
      (property "Description" "IC MCU 8BIT 32KB FLASH 32TQFP" (id 10) (at 5.08 25.4 0)
        (effects (font (size 1.524 1.524)) (justify left) hide)
      )
      (property "Manufacturer" "Microchip Technology" (id 11) (at 5.08 27.94 0)
        (effects (font (size 1.524 1.524)) (justify left) hide)
      )
      (property "Status" "Active" (id 12) (at 5.08 30.48 0)
        (effects (font (size 1.524 1.524)) (justify left) hide)
      )
      (property "ki_description" "IC MCU 8BIT 32KB FLASH 32TQFP" (id 13) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (symbol "ATMEGA328P-AUR_0_1"
        (rectangle (start -10.16 22.86) (end 10.16 -12.7)
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type background))
        )
      )
      (symbol "ATMEGA328P-AUR_1_1"
        (pin bidirectional line (at 12.7 12.7 180) (length 2.54)
          (name "PD3" (effects (font (size 1.27 1.27))))
          (number "1" (effects (font (size 1.27 1.27))))
        )
        (pin bidirectional line (at 12.7 5.08 180) (length 2.54)
          (name "PD6" (effects (font (size 1.27 1.27))))
          (number "10" (effects (font (size 1.27 1.27))))
        )
        (pin bidirectional line (at 12.7 2.54 180) (length 2.54)
          (name "PD7" (effects (font (size 1.27 1.27))))
          (number "11" (effects (font (size 1.27 1.27))))
        )
        (pin bidirectional line (at -12.7 12.7 0) (length 2.54)
          (name "PB0" (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 "PB1" (effects (font (size 1.27 1.27))))
          (number "13" (effects (font (size 1.27 1.27))))
        )
        (pin bidirectional line (at -12.7 7.62 0) (length 2.54)
          (name "PB2" (effects (font (size 1.27 1.27))))
          (number "14" (effects (font (size 1.27 1.27))))
        )
        (pin bidirectional line (at -12.7 5.08 0) (length 2.54)
          (name "PB3" (effects (font (size 1.27 1.27))))
          (number "15" (effects (font (size 1.27 1.27))))
        )
        (pin bidirectional line (at -12.7 2.54 0) (length 2.54)
          (name "PB4" (effects (font (size 1.27 1.27))))
          (number "16" (effects (font (size 1.27 1.27))))
        )
        (pin bidirectional line (at -12.7 0 0) (length 2.54)
          (name "PB5" (effects (font (size 1.27 1.27))))
          (number "17" (effects (font (size 1.27 1.27))))
        )
        (pin power_in line (at 2.54 25.4 270) (length 2.54)
          (name "AVCC" (effects (font (size 1.27 1.27))))
          (number "18" (effects (font (size 1.27 1.27))))
        )
        (pin input line (at -12.7 15.24 0) (length 2.54)
          (name "ADC6" (effects (font (size 1.27 1.27))))
          (number "19" (effects (font (size 1.27 1.27))))
        )
        (pin bidirectional line (at 12.7 10.16 180) (length 2.54)
          (name "PD4" (effects (font (size 1.27 1.27))))
          (number "2" (effects (font (size 1.27 1.27))))
        )
        (pin input line (at -12.7 20.32 0) (length 2.54)
          (name "AREF" (effects (font (size 1.27 1.27))))
          (number "20" (effects (font (size 1.27 1.27))))
        )
        (pin power_in line (at -2.54 -15.24 90) (length 2.54)
          (name "GND" (effects (font (size 1.27 1.27))))
          (number "21" (effects (font (size 1.27 1.27))))
        )
        (pin input line (at -12.7 17.78 0) (length 2.54)
          (name "ADC7" (effects (font (size 1.27 1.27))))
          (number "22" (effects (font (size 1.27 1.27))))
        )
        (pin bidirectional line (at -12.7 -7.62 0) (length 2.54)
          (name "PC0" (effects (font (size 1.27 1.27))))
          (number "23" (effects (font (size 1.27 1.27))))
        )
        (pin bidirectional line (at -12.7 -10.16 0) (length 2.54)
          (name "PC1" (effects (font (size 1.27 1.27))))
          (number "24" (effects (font (size 1.27 1.27))))
        )
        (pin bidirectional line (at 12.7 -10.16 180) (length 2.54)
          (name "PC2" (effects (font (size 1.27 1.27))))
          (number "25" (effects (font (size 1.27 1.27))))
        )
        (pin bidirectional line (at 12.7 -7.62 180) (length 2.54)
          (name "PC3" (effects (font (size 1.27 1.27))))
          (number "26" (effects (font (size 1.27 1.27))))
        )
        (pin bidirectional line (at 12.7 -5.08 180) (length 2.54)
          (name "PC4" (effects (font (size 1.27 1.27))))
          (number "27" (effects (font (size 1.27 1.27))))
        )
        (pin bidirectional line (at 12.7 -2.54 180) (length 2.54)
          (name "PC5" (effects (font (size 1.27 1.27))))
          (number "28" (effects (font (size 1.27 1.27))))
        )
        (pin bidirectional line (at 12.7 0 180) (length 2.54)
          (name "PC6" (effects (font (size 1.27 1.27))))
          (number "29" (effects (font (size 1.27 1.27))))
        )
        (pin power_in line (at 0 -15.24 90) (length 2.54)
          (name "GND" (effects (font (size 1.27 1.27))))
          (number "3" (effects (font (size 1.27 1.27))))
        )
        (pin bidirectional line (at 12.7 20.32 180) (length 2.54)
          (name "PD0" (effects (font (size 1.27 1.27))))
          (number "30" (effects (font (size 1.27 1.27))))
        )
        (pin bidirectional line (at 12.7 17.78 180) (length 2.54)
          (name "PD1" (effects (font (size 1.27 1.27))))
          (number "31" (effects (font (size 1.27 1.27))))
        )
        (pin bidirectional line (at 12.7 15.24 180) (length 2.54)
          (name "PD2" (effects (font (size 1.27 1.27))))
          (number "32" (effects (font (size 1.27 1.27))))
        )
        (pin power_in line (at 0 25.4 270) (length 2.54)
          (name "VCC" (effects (font (size 1.27 1.27))))
          (number "4" (effects (font (size 1.27 1.27))))
        )
        (pin power_in line (at 2.54 -15.24 90) (length 2.54)
          (name "GND" (effects (font (size 1.27 1.27))))
          (number "5" (effects (font (size 1.27 1.27))))
        )
        (pin power_in line (at -2.54 25.4 270) (length 2.54)
          (name "VCC" (effects (font (size 1.27 1.27))))
          (number "6" (effects (font (size 1.27 1.27))))
        )
        (pin bidirectional line (at -12.7 -2.54 0) (length 2.54)
          (name "PB6" (effects (font (size 1.27 1.27))))
          (number "7" (effects (font (size 1.27 1.27))))
        )
        (pin bidirectional line (at -12.7 -5.08 0) (length 2.54)
          (name "PB7" (effects (font (size 1.27 1.27))))
          (number "8" (effects (font (size 1.27 1.27))))
        )
        (pin bidirectional line (at 12.7 7.62 180) (length 2.54)
          (name "PD5" (effects (font (size 1.27 1.27))))
          (number "9" (effects (font (size 1.27 1.27))))
        )
      )
    )
    (symbol "mw_ceramic_caps:CGA3E3X7S2A104K080AB" (pin_numbers hide) (pin_names (offset 0.254)) (in_bom yes) (on_board yes)
      (property "Reference" "C" (id 0) (at 3.81 3.81 0)
        (effects (font (size 1.27 1.27)) (justify left))
      )
      (property "Value" "CGA3E3X7S2A104K080AB" (id 1) (at 3.81 -12.7 0)
        (effects (font (size 1.27 1.27)) (justify left) hide)
      )
      (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 3.81 -15.24 0)
        (effects (font (size 1.27 1.27)) (justify left) hide)
      )
      (property "Datasheet" "~" (id 3) (at 0.635 2.54 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "Digikey Part Number" "445-6938-1-ND" (id 4) (at 3.81 -17.78 0)
        (effects (font (size 1.27 1.27)) (justify left) hide)
      )
      (property "Manufacturer" "TDK" (id 5) (at 3.81 -20.32 0)
        (effects (font (size 1.27 1.27)) (justify left) hide)
      )
      (property "Capacitance" "0.1u" (id 6) (at 3.81 1.27 0)
        (effects (font (size 1.27 1.27)) (justify left))
      )
      (property "Class" "X7S" (id 7) (at 3.81 -10.16 0)
        (effects (font (size 1.27 1.27)) (justify left) hide)
      )
      (property "Size" "0603" (id 8) (at 3.81 -3.81 0)
        (effects (font (size 1.27 1.27)) (justify left) hide)
      )
      (property "Voltage Rating" "100V" (id 9) (at 3.81 -1.27 0)
        (effects (font (size 1.27 1.27)) (justify left))
      )
      (property "Part Number" "CGA3E3X7S2A104K080AB" (id 10) (at 3.81 -22.86 0)
        (effects (font (size 1.27 1.27)) (justify left) hide)
      )
      (property "ki_keywords" "cap capacitor ceramic" (id 11) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_description" "cap 0.1u 100V 0603 ceramic X7S AEC-Q200" (id 12) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_fp_filters" "C_*" (id 13) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (symbol "CGA3E3X7S2A104K080AB_0_1"
        (polyline
          (pts
            (xy -2.032 -0.762)
            (xy 2.032 -0.762)
          )
          (stroke (width 0.2032) (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.2032) (type default) (color 0 0 0 0))
          (fill (type none))
        )
      )
      (symbol "CGA3E3X7S2A104K080AB_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 "mw_resistors_smd:RC0402FR-0710KL" (pin_numbers hide) (pin_names (offset 0)) (in_bom yes) (on_board yes)
      (property "Reference" "R" (id 0) (at 3.81 1.27 0)
        (effects (font (size 1.27 1.27)))
      )
      (property "Value" "RC0402FR-0710KL" (id 1) (at 2.54 6.35 0)
        (effects (font (size 1.27 1.27)) (justify left) hide)
      )
      (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 2.54 3.81 0)
        (effects (font (size 1.27 1.27)) (justify left) hide)
      )
      (property "Datasheet" "~" (id 3) (at 2.54 -1.27 90)
        (effects (font (size 1.27 1.27)) (justify left) hide)
      )
      (property "Digikey Part Number" "311-10.0KLRCT-ND" (id 4) (at 2.54 -11.43 0)
        (effects (font (size 1.27 1.27)) (justify left) hide)
      )
      (property "Manufacturer" "Yageo" (id 5) (at 8.89 6.35 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "Part Number" "RC0402FR-0710KL" (id 6) (at 2.54 -8.89 0)
        (effects (font (size 1.27 1.27)) (justify left) hide)
      )
      (property "Tolerance" "1%" (id 7) (at 2.54 -3.81 0)
        (effects (font (size 1.27 1.27)) (justify left) hide)
      )
      (property "Power" "1/16W" (id 8) (at 2.54 -6.35 0)
        (effects (font (size 1.27 1.27)) (justify left) hide)
      )
      (property "Composition" "Thick Film" (id 9) (at 2.54 -16.51 0)
        (effects (font (size 1.27 1.27)) (justify left) hide)
      )
      (property "Temperature Coefficent" "100ppm/degC" (id 10) (at 2.54 -13.97 0)
        (effects (font (size 1.27 1.27)) (justify left) hide)
      )
      (property "Resistance" "10k" (id 11) (at 2.54 -1.27 0)
        (effects (font (size 1.27 1.27)) (justify left))
      )
      (property "ki_keywords" "R res resistor" (id 12) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_description" "Res 10k 0402 1% 0.0625W Yageo" (id 13) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_fp_filters" "R_*" (id 14) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (symbol "RC0402FR-0710KL_0_1"
        (polyline
          (pts
            (xy 0 -2.286)
            (xy 0 -2.54)
          )
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (polyline
          (pts
            (xy 0 2.286)
            (xy 0 2.54)
          )
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (polyline
          (pts
            (xy 0 -0.762)
            (xy 1.016 -1.143)
            (xy 0 -1.524)
            (xy -1.016 -1.905)
            (xy 0 -2.286)
          )
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (polyline
          (pts
            (xy 0 0.762)
            (xy 1.016 0.381)
            (xy 0 0)
            (xy -1.016 -0.381)
            (xy 0 -0.762)
          )
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (polyline
          (pts
            (xy 0 2.286)
            (xy 1.016 1.905)
            (xy 0 1.524)
            (xy -1.016 1.143)
            (xy 0 0.762)
          )
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
      )
      (symbol "RC0402FR-0710KL_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 "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 145.415 80.01) (diameter 0) (color 0 0 0 0)
    (uuid 3179aea1-3e28-4520-b652-93a0dfa92d8d)
  )
  (junction (at 145.415 128.27) (diameter 0) (color 0 0 0 0)
    (uuid 4e475954-4044-4c87-9f2f-c533cadab152)
  )
  (junction (at 174.625 109.22) (diameter 0) (color 0 0 0 0)
    (uuid 761a701e-99f4-49e8-9b56-c9ff1804d814)
  )
  (junction (at 147.955 80.01) (diameter 0) (color 0 0 0 0)
    (uuid b9e06cee-d94c-43e6-b4f4-6e344b3c9a01)
  )
  (junction (at 147.955 65.405) (diameter 0) (color 0 0 0 0)
    (uuid e7960d9e-cb39-4049-b559-212b2c4bb423)
  )
  (junction (at 142.875 128.27) (diameter 0) (color 0 0 0 0)
    (uuid ee64645b-d19d-43c2-9fe1-e504f5aa3695)
  )
  (junction (at 156.845 65.405) (diameter 0) (color 0 0 0 0)
    (uuid f4db4dbc-ba3a-45d7-a31e-e4d3058b67e0)
  )

  (wire (pts (xy 158.115 114.3) (xy 160.655 114.3))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 005a82f2-1b0a-4f6f-a665-1ea2d3a67867)
  )
  (wire (pts (xy 158.115 104.14) (xy 160.655 104.14))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 01c9ea0a-58fc-4e80-af0f-1b9dad437c8a)
  )
  (wire (pts (xy 174.625 107.315) (xy 174.625 109.22))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 09561641-327f-45d7-891d-a1376307fc63)
  )
  (wire (pts (xy 113.665 115.57) (xy 116.205 115.57))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 097c0e85-f59c-4ad4-8be8-fbe76b49d4ea)
  )
  (wire (pts (xy 147.955 65.405) (xy 147.955 80.01))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 0dcbd146-3826-46ee-aaee-a0fab5fb081c)
  )
  (wire (pts (xy 113.665 110.49) (xy 116.205 110.49))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 15f6932c-eff2-4f9b-88c3-11fdc0202a53)
  )
  (wire (pts (xy 169.545 73.025) (xy 169.545 76.2))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 1ff866ed-38dd-446a-9a2d-1a4a1d1498fd)
  )
  (wire (pts (xy 116.205 111.76) (xy 132.715 111.76))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 263d43b6-bf56-4c4e-9df1-cba3e209fc82)
  )
  (wire (pts (xy 158.115 111.76) (xy 160.655 111.76))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 2ad4eb9c-590d-478e-bd00-e3964aa00268)
  )
  (wire (pts (xy 158.115 96.52) (xy 160.655 96.52))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 2c344cb1-a239-4fa9-9de0-743870de6b75)
  )
  (wire (pts (xy 130.175 99.06) (xy 132.715 99.06))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 2e327849-b517-4156-ae11-c58bae16bfc3)
  )
  (wire (pts (xy 130.175 88.9) (xy 132.715 88.9))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 2f186f02-b7f6-4586-b3a7-277d02b5a0c5)
  )
  (wire (pts (xy 116.205 114.3) (xy 132.715 114.3))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 31174116-8e0e-4cd6-86ac-49c232c0ab59)
  )
  (wire (pts (xy 130.175 96.52) (xy 132.715 96.52))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 323d70f7-fd34-41bb-b3f2-b002c2274c6e)
  )
  (wire (pts (xy 130.175 104.14) (xy 132.715 104.14))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 33337d8c-8b42-4b6a-b7c6-03380df77330)
  )
  (wire (pts (xy 156.845 73.025) (xy 156.845 76.2))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 36209207-0c79-45a7-80ff-6a9695f086d4)
  )
  (wire (pts (xy 106.045 113.03) (xy 103.505 113.03))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 370cd66c-8ca7-4a22-a080-9f6920ea80d3)
  )
  (wire (pts (xy 158.115 116.84) (xy 160.655 116.84))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 420449ff-56c6-4745-9e71-c10b6542e07d)
  )
  (wire (pts (xy 142.875 128.27) (xy 142.875 132.08))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 444b781a-72f4-41f3-8b53-a998f817ca52)
  )
  (wire (pts (xy 145.415 128.27) (xy 142.875 128.27))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 4565d84a-f746-41ad-8fec-f221ed6a7ef3)
  )
  (wire (pts (xy 116.205 115.57) (xy 116.205 114.3))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 471e135a-863c-4915-beb7-34e2ed58c7e4)
  )
  (wire (pts (xy 142.875 80.01) (xy 145.415 80.01))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 5194ef21-990a-4211-97bf-4fd4a49d1756)
  )
  (wire (pts (xy 130.175 109.22) (xy 132.715 109.22))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 54ff8686-e5c6-45e9-885d-b27a00f408fa)
  )
  (wire (pts (xy 147.955 65.405) (xy 156.845 65.405))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 5d5fddfa-4f55-4986-a965-3622cdf1193c)
  )
  (wire (pts (xy 103.505 113.03) (xy 103.505 118.11))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 6717f4ca-5211-4516-a7d2-37ef55ad356b)
  )
  (wire (pts (xy 160.655 119.38) (xy 158.115 119.38))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 68ca0d12-4c87-4705-beaf-13b8c9ec6ab2)
  )
  (wire (pts (xy 116.205 110.49) (xy 116.205 111.76))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 72a32344-5d67-4588-bf70-c6e4c5985922)
  )
  (wire (pts (xy 174.625 97.79) (xy 174.625 99.695))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 7c1a4e4a-1ad7-44e5-ae3c-95e58b42baa2)
  )
  (wire (pts (xy 158.115 99.06) (xy 160.655 99.06))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 80b88a7a-ec1d-4d61-a1bb-d2166d6ec733)
  )
  (wire (pts (xy 130.175 101.6) (xy 132.715 101.6))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 8d723634-53d8-46a8-82b2-a12344b7fe8e)
  )
  (wire (pts (xy 158.115 88.9) (xy 160.655 88.9))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 926aac7f-65de-4317-935b-99b41d690930)
  )
  (wire (pts (xy 130.175 119.38) (xy 132.715 119.38))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 9a51d593-861b-4aed-bc02-adcc254a7320)
  )
  (wire (pts (xy 145.415 80.01) (xy 147.955 80.01))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid a017da4e-2f9c-45c9-a0d0-1d80c3bbe204)
  )
  (wire (pts (xy 130.175 116.84) (xy 132.715 116.84))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid a2db1028-681b-49b3-a08d-dc1918e52db9)
  )
  (wire (pts (xy 147.955 80.01) (xy 147.955 83.82))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid a88c424c-aa9a-4cbe-b62c-29d47bcf1ccf)
  )
  (wire (pts (xy 174.625 109.22) (xy 180.34 109.22))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid ab9e4a2f-901d-4b90-94d8-4bafc1ac74ff)
  )
  (wire (pts (xy 147.955 128.27) (xy 145.415 128.27))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid b5f75709-a480-4c4d-a807-69dc0a8a9c80)
  )
  (wire (pts (xy 142.875 124.46) (xy 142.875 128.27))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid bb73d5c4-3393-4df2-ae8f-9059ea92405c)
  )
  (wire (pts (xy 156.845 65.405) (xy 169.545 65.405))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid c0e1664c-f8f1-4908-a5f7-2507a913e6ce)
  )
  (wire (pts (xy 132.715 91.44) (xy 130.175 91.44))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid c3aceb1b-4b44-4207-83a4-a54fdb5d5cc7)
  )
  (wire (pts (xy 158.115 91.44) (xy 160.655 91.44))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid c75d50db-3f0c-44d3-aa5f-9d24e16d91a4)
  )
  (wire (pts (xy 145.415 124.46) (xy 145.415 128.27))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid c795b599-ed4d-4991-8240-dbc44d92a5b3)
  )
  (wire (pts (xy 174.625 109.22) (xy 174.625 111.125))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid cd43b67c-7ee5-4de4-a9d7-f158631149e1)
  )
  (wire (pts (xy 147.955 124.46) (xy 147.955 128.27))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid d1a89808-89e2-499e-90a0-851daae03f60)
  )
  (wire (pts (xy 130.175 106.68) (xy 132.715 106.68))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid d33b15c2-699f-4863-9588-db90c622acce)
  )
  (wire (pts (xy 174.625 118.745) (xy 174.625 120.65))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid d372bca9-7ac6-4e6e-9252-7062b0dadaf0)
  )
  (wire (pts (xy 132.715 93.98) (xy 130.175 93.98))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid dc2ef14e-43f6-43bc-9f6d-0782524a8384)
  )
  (wire (pts (xy 158.115 109.22) (xy 174.625 109.22))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid de860e42-c3e6-4a4d-bc09-a23534d27252)
  )
  (wire (pts (xy 158.115 101.6) (xy 160.655 101.6))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid e134e01a-0d84-4fe3-9b35-57934a0c6afd)
  )
  (wire (pts (xy 145.415 83.82) (xy 145.415 80.01))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid f330189e-cb95-4cec-a9e5-df8f5a86df98)
  )
  (wire (pts (xy 158.115 106.68) (xy 160.655 106.68))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid f3d215f1-cca0-449d-8203-8ab384c4b7bc)
  )
  (wire (pts (xy 158.115 93.98) (xy 160.655 93.98))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid f4ca6c62-d04a-418e-a776-38647f661627)
  )
  (wire (pts (xy 142.875 80.01) (xy 142.875 83.82))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid fd66d46c-330d-40ad-bcca-9f7037cc96a0)
  )
  (wire (pts (xy 147.955 60.325) (xy 147.955 65.405))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid ff511e91-f144-48cc-8a54-0a69a9462e28)
  )

  (hierarchical_label "D1_TX" (shape input) (at 160.655 91.44 0)
    (effects (font (size 1.27 1.27)) (justify left))
    (uuid 0904b1dc-397a-4072-ae29-309c9be430ef)
  )
  (hierarchical_label "D3" (shape input) (at 160.655 96.52 0)
    (effects (font (size 1.27 1.27)) (justify left))
    (uuid 09cece9c-8ecc-482c-ab64-850262527ef1)
  )
  (hierarchical_label "A2" (shape input) (at 160.655 119.38 0)
    (effects (font (size 1.27 1.27)) (justify left))
    (uuid 11026e2d-85d4-42b3-8c30-e1fe178c19df)
  )
  (hierarchical_label "A1" (shape input) (at 130.175 119.38 180)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid 19b46b90-d92f-44b6-8904-d784ab012eaa)
  )
  (hierarchical_label "A7" (shape input) (at 130.175 93.98 180)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid 1e0c9429-cd39-4d1a-a643-039acbd1a882)
  )
  (hierarchical_label "~{RESET}" (shape input) (at 180.34 109.22 0)
    (effects (font (size 1.27 1.27)) (justify left))
    (uuid 28c94c35-1212-49ca-8713-89981c336abd)
  )
  (hierarchical_label "A4" (shape input) (at 160.655 114.3 0)
    (effects (font (size 1.27 1.27)) (justify left))
    (uuid 31b4162c-c041-4619-ba9d-a6a28d4a0186)
  )
  (hierarchical_label "A6" (shape input) (at 130.175 91.44 180)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid 4051d77c-e7e0-4b56-a140-22c0a6408058)
  )
  (hierarchical_label "D11" (shape input) (at 130.175 104.14 180)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid 41c82053-7fce-4009-a8b9-341783c3b383)
  )
  (hierarchical_label "A3" (shape input) (at 160.655 116.84 0)
    (effects (font (size 1.27 1.27)) (justify left))
    (uuid 42ef72ea-a5e8-4e0f-986c-b2f3214e1d3f)
  )
  (hierarchical_label "DTR" (shape input) (at 174.625 120.65 270)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid 4424ef63-838e-4e78-91f6-2f1a76c1b94c)
  )
  (hierarchical_label "D13" (shape input) (at 130.175 109.22 180)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid 6f57e06b-3f9a-46b5-8008-d1427067b0fc)
  )
  (hierarchical_label "D5" (shape input) (at 160.655 101.6 0)
    (effects (font (size 1.27 1.27)) (justify left))
    (uuid 80323f49-b3a9-4547-b0b4-c6ed298ab67e)
  )
  (hierarchical_label "A0" (shape input) (at 130.175 116.84 180)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid 8675cb55-456b-4f43-aa22-ba04dd7c0ebc)
  )
  (hierarchical_label "D8" (shape input) (at 130.175 96.52 180)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid 8f614d21-8948-4fd0-a1b9-8f799ddabb20)
  )
  (hierarchical_label "AREF" (shape input) (at 130.175 88.9 180)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid 91ee0a9a-0388-4e45-b387-06ec61b4aa7e)
  )
  (hierarchical_label "A5" (shape input) (at 160.655 111.76 0)
    (effects (font (size 1.27 1.27)) (justify left))
    (uuid 9209e021-5d6b-4234-add4-e51b9a453085)
  )
  (hierarchical_label "D4" (shape input) (at 160.655 99.06 0)
    (effects (font (size 1.27 1.27)) (justify left))
    (uuid 9813f39a-18ba-469e-a261-efa8e4c680e7)
  )
  (hierarchical_label "+3V3" (shape input) (at 147.955 60.325 90)
    (effects (font (size 1.27 1.27)) (justify left))
    (uuid a2f1f291-ecca-4a3b-9b04-1b8a35cb2f3f)
  )
  (hierarchical_label "D10" (shape input) (at 130.175 101.6 180)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid b1799c07-e72b-4493-baae-b5115978ff01)
  )
  (hierarchical_label "+3V3" (shape input) (at 174.625 97.79 90)
    (effects (font (size 1.27 1.27)) (justify left))
    (uuid bf11fbf7-f821-4879-a06e-9a278921e089)
  )
  (hierarchical_label "D7" (shape input) (at 160.655 106.68 0)
    (effects (font (size 1.27 1.27)) (justify left))
    (uuid c0494f72-6c8e-40c1-9f3d-33c2e97bc483)
  )
  (hierarchical_label "D2" (shape input) (at 160.655 93.98 0)
    (effects (font (size 1.27 1.27)) (justify left))
    (uuid c4fb82f1-89b6-467a-9cf0-ae6d63e80ccb)
  )
  (hierarchical_label "D12" (shape input) (at 130.175 106.68 180)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid d8cbb0ee-245b-40cf-853f-95c7fe075d28)
  )
  (hierarchical_label "D6" (shape input) (at 160.655 104.14 0)
    (effects (font (size 1.27 1.27)) (justify left))
    (uuid df31e002-9ed4-4293-aa4d-78f64d782efa)
  )
  (hierarchical_label "D9" (shape input) (at 130.175 99.06 180)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid e72c64a9-9542-4347-bb1b-2d75cdfc41aa)
  )
  (hierarchical_label "D0_RX" (shape input) (at 160.655 88.9 0)
    (effects (font (size 1.27 1.27)) (justify left))
    (uuid ec96ccda-6066-4e17-8cba-d5edfbe183d4)
  )

  (symbol (lib_id "dk_Embedded-Microcontrollers:ATMEGA328P-AUR") (at 145.415 109.22 0)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid 376ec4a0-ec23-4da7-8a11-8604195fb000)
    (property "Reference" "U?" (id 0) (at 149.9744 82.5205 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Value" "ATMEGA328P-AUR" (id 1) (at 149.9744 85.2956 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Footprint" "digikey-footprints:TQFP-32_7x7mm" (id 2) (at 150.495 104.14 0)
      (effects (font (size 1.524 1.524)) (justify left) hide)
    )
    (property "Datasheet" "http://www.microchip.com/mymicrochip/filehandler.aspx?ddocname=en589968" (id 3) (at 150.495 101.6 0)
      (effects (font (size 1.524 1.524)) (justify left) hide)
    )
    (property "Digi-Key_PN" "ATMEGA328P-AURCT-ND" (id 4) (at 150.495 99.06 0)
      (effects (font (size 1.524 1.524)) (justify left) hide)
    )
    (property "MPN" "ATMEGA328P-AUR" (id 5) (at 150.495 96.52 0)
      (effects (font (size 1.524 1.524)) (justify left) hide)
    )
    (property "Category" "Integrated Circuits (ICs)" (id 6) (at 150.495 93.98 0)
      (effects (font (size 1.524 1.524)) (justify left) hide)
    )
    (property "Family" "Embedded - Microcontrollers" (id 7) (at 150.495 91.44 0)
      (effects (font (size 1.524 1.524)) (justify left) hide)
    )
    (property "DK_Datasheet_Link" "http://www.microchip.com/mymicrochip/filehandler.aspx?ddocname=en589968" (id 8) (at 150.495 88.9 0)
      (effects (font (size 1.524 1.524)) (justify left) hide)
    )
    (property "DK_Detail_Page" "/product-detail/en/microchip-technology/ATMEGA328P-AUR/ATMEGA328P-AURCT-ND/3789455" (id 9) (at 150.495 86.36 0)
      (effects (font (size 1.524 1.524)) (justify left) hide)
    )
    (property "Description" "IC MCU 8BIT 32KB FLASH 32TQFP" (id 10) (at 150.495 83.82 0)
      (effects (font (size 1.524 1.524)) (justify left) hide)
    )
    (property "Manufacturer" "Microchip Technology" (id 11) (at 150.495 81.28 0)
      (effects (font (size 1.524 1.524)) (justify left) hide)
    )
    (property "Status" "Active" (id 12) (at 150.495 78.74 0)
      (effects (font (size 1.524 1.524)) (justify left) hide)
    )
    (pin "1" (uuid 1675f749-02aa-46d7-a15f-74fd92303e86))
    (pin "10" (uuid c41eda92-7f5f-49af-91ba-072682c31b93))
    (pin "11" (uuid 3d232167-ac73-49cd-89ca-fa5530e55ec3))
    (pin "12" (uuid c95357d5-d764-48d6-90b9-f0a852760b1b))
    (pin "13" (uuid e10a77f0-8136-4a32-9c21-de033931ca91))
    (pin "14" (uuid 33ac7dd2-cb24-4cba-82be-f43cbbe26e41))
    (pin "15" (uuid 868c7c80-31ea-4bcc-aa98-3aa39819173e))
    (pin "16" (uuid 1c7d5d30-5931-4b81-b1dc-a8871b7f197a))
    (pin "17" (uuid abc973e5-c1ad-42a4-8087-f81d9b21fdd7))
    (pin "18" (uuid 18e9a999-ae85-4db9-8ff1-6add6cc82afa))
    (pin "19" (uuid b65bf444-7e2c-436d-84cc-1ea87f3f7b0b))
    (pin "2" (uuid 63c932e9-ea05-423a-a4e9-38e17b32f1d0))
    (pin "20" (uuid 30278ab0-e699-4653-ac18-0524f8217303))
    (pin "21" (uuid 0c9b7515-9a58-48f3-b096-67d4f32ff15d))
    (pin "22" (uuid 777d2578-3c4b-4c92-babc-b896eb0b6a49))
    (pin "23" (uuid 068ae1ff-2932-40af-afc0-218d3c0b18f3))
    (pin "24" (uuid 406fa566-db99-4d6f-8d79-46a14bb9cec9))
    (pin "25" (uuid b46d9fbf-a4d4-40a0-a400-86996a87196b))
    (pin "26" (uuid e9b0ba58-82c3-438b-a5bb-fa8e276d0d6f))
    (pin "27" (uuid 324aea90-0b31-4001-97b5-af837cfd4b04))
    (pin "28" (uuid 826e7e4d-1c86-440a-9688-ca9c17218db1))
    (pin "29" (uuid 92e8a4ff-988b-4828-912e-e6916086367c))
    (pin "3" (uuid 4b2fd3d9-6c7c-417d-9a8d-81967b283d03))
    (pin "30" (uuid 5be21ff4-ca84-4c73-910a-6ea7e2cb8b95))
    (pin "31" (uuid ec030930-6e15-4fd6-a896-7b08e44d1c72))
    (pin "32" (uuid 0c729c37-035d-4333-b7aa-908ee511caac))
    (pin "4" (uuid 29fab069-48af-487d-a617-6febc26b20c6))
    (pin "5" (uuid 031051ef-3a05-428d-9287-cfa4581ed2b2))
    (pin "6" (uuid c4a77bbf-365d-4f6b-99e2-1338f4196ac8))
    (pin "7" (uuid 32cfe6e1-3fef-4b92-9c26-eb6e1d107c92))
    (pin "8" (uuid aa86ca10-cefe-4e1e-add6-81e75b2b87ac))
    (pin "9" (uuid 9d426e01-b116-4931-8383-b5d642c48559))
  )

  (symbol (lib_id "Device:Resonator_Small") (at 111.125 113.03 270)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid 37d1d2d2-4972-42b1-b793-6bd86a05d051)
    (property "Reference" "Y?" (id 0) (at 110.1217 105.6345 90))
    (property "Value" "Resonator_Small" (id 1) (at 110.1217 108.4096 90))
    (property "Footprint" "" (id 2) (at 111.125 112.395 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (id 3) (at 111.125 112.395 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid bffd4db8-c5bc-4dff-9908-aa4cc09dbff0))
    (pin "2" (uuid c9c4b6c1-f6fc-40a8-bc64-2de13a7bb544))
    (pin "3" (uuid 33e63632-c66f-4145-804c-2d7b134cc465))
  )

  (symbol (lib_id "power:GND") (at 156.845 76.2 0)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid 455c6884-2985-4ae6-9f1b-d918f265983b)
    (property "Reference" "#PWR?" (id 0) (at 156.845 82.55 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "GND" (id 1) (at 156.845 80.7625 0))
    (property "Footprint" "" (id 2) (at 156.845 76.2 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (id 3) (at 156.845 76.2 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 4b714c92-257a-4985-b8de-30b4c6d801ac))
  )

  (symbol (lib_id "mw_resistors_smd:RC0402FR-0710KL") (at 174.625 103.505 0)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid 625d5676-5fdb-43c0-ba5b-fabc6240a126)
    (property "Reference" "R?" (id 0) (at 176.276 102.5965 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Value" "RC0402FR-0710KL" (id 1) (at 177.165 97.155 0)
      (effects (font (size 1.27 1.27)) (justify left) hide)
    )
    (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 177.165 99.695 0)
      (effects (font (size 1.27 1.27)) (justify left) hide)
    )
    (property "Datasheet" "~" (id 3) (at 177.165 104.775 90)
      (effects (font (size 1.27 1.27)) (justify left) hide)
    )
    (property "Digikey Part Number" "311-10.0KLRCT-ND" (id 4) (at 177.165 114.935 0)
      (effects (font (size 1.27 1.27)) (justify left) hide)
    )
    (property "Manufacturer" "Yageo" (id 5) (at 183.515 97.155 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Part Number" "RC0402FR-0710KL" (id 6) (at 177.165 112.395 0)
      (effects (font (size 1.27 1.27)) (justify left) hide)
    )
    (property "Tolerance" "1%" (id 7) (at 177.165 107.315 0)
      (effects (font (size 1.27 1.27)) (justify left) hide)
    )
    (property "Power" "1/16W" (id 8) (at 177.165 109.855 0)
      (effects (font (size 1.27 1.27)) (justify left) hide)
    )
    (property "Composition" "Thick Film" (id 9) (at 177.165 120.015 0)
      (effects (font (size 1.27 1.27)) (justify left) hide)
    )
    (property "Temperature Coefficent" "100ppm/degC" (id 10) (at 177.165 117.475 0)
      (effects (font (size 1.27 1.27)) (justify left) hide)
    )
    (property "Resistance" "10k" (id 11) (at 176.276 105.3716 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (pin "1" (uuid d4ef52c1-2717-4ea0-8213-af6ca647f8d8))
    (pin "2" (uuid 4ff411d6-0aac-4f77-a97a-fc6c66c22ab3))
  )

  (symbol (lib_id "power:GND") (at 103.505 118.11 0)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid 8b1fad83-3e2e-4930-922f-db79e7896d4b)
    (property "Reference" "#PWR?" (id 0) (at 103.505 124.46 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "GND" (id 1) (at 103.505 122.6725 0))
    (property "Footprint" "" (id 2) (at 103.505 118.11 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (id 3) (at 103.505 118.11 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 39352136-b143-4dfe-bebb-beaafbb346b6))
  )

  (symbol (lib_id "mw_ceramic_caps:CGA3E3X7S2A104K080AB") (at 169.545 69.215 0)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid 9278a8f8-85b5-414d-aee6-8053d23608ef)
    (property "Reference" "C?" (id 0) (at 172.3136 66.9189 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Value" "CGA3E3X7S2A104K080AB" (id 1) (at 173.355 81.915 0)
      (effects (font (size 1.27 1.27)) (justify left) hide)
    )
    (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 173.355 84.455 0)
      (effects (font (size 1.27 1.27)) (justify left) hide)
    )
    (property "Datasheet" "~" (id 3) (at 170.18 66.675 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Digikey Part Number" "445-6938-1-ND" (id 4) (at 173.355 86.995 0)
      (effects (font (size 1.27 1.27)) (justify left) hide)
    )
    (property "Manufacturer" "TDK" (id 5) (at 173.355 89.535 0)
      (effects (font (size 1.27 1.27)) (justify left) hide)
    )
    (property "Capacitance" "0.1u" (id 6) (at 172.3136 69.694 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Class" "X7S" (id 7) (at 173.355 79.375 0)
      (effects (font (size 1.27 1.27)) (justify left) hide)
    )
    (property "Size" "0603" (id 8) (at 173.355 73.025 0)
      (effects (font (size 1.27 1.27)) (justify left) hide)
    )
    (property "Voltage Rating" "100V" (id 9) (at 172.3136 72.4691 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Part Number" "CGA3E3X7S2A104K080AB" (id 10) (at 173.355 92.075 0)
      (effects (font (size 1.27 1.27)) (justify left) hide)
    )
    (pin "1" (uuid 8b608ff9-bdab-4cde-82c6-9a5165f2dd26))
    (pin "2" (uuid 2843a581-4cc0-46af-855f-7ed64fe7a7ab))
  )

  (symbol (lib_id "power:GND") (at 142.875 132.08 0)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid 97e2dd44-011f-48bf-9787-5edc89d06173)
    (property "Reference" "#PWR?" (id 0) (at 142.875 138.43 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "GND" (id 1) (at 142.875 136.6425 0))
    (property "Footprint" "" (id 2) (at 142.875 132.08 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (id 3) (at 142.875 132.08 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 2a2a5c31-d14b-4aa5-9527-05be0a4b431c))
  )

  (symbol (lib_id "mw_ceramic_caps:CGA3E3X7S2A104K080AB") (at 156.845 69.215 0)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid ba9fab04-08d1-4321-91fd-a47bdddd9f79)
    (property "Reference" "C?" (id 0) (at 159.6136 66.9189 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Value" "CGA3E3X7S2A104K080AB" (id 1) (at 160.655 81.915 0)
      (effects (font (size 1.27 1.27)) (justify left) hide)
    )
    (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 160.655 84.455 0)
      (effects (font (size 1.27 1.27)) (justify left) hide)
    )
    (property "Datasheet" "~" (id 3) (at 157.48 66.675 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Digikey Part Number" "445-6938-1-ND" (id 4) (at 160.655 86.995 0)
      (effects (font (size 1.27 1.27)) (justify left) hide)
    )
    (property "Manufacturer" "TDK" (id 5) (at 160.655 89.535 0)
      (effects (font (size 1.27 1.27)) (justify left) hide)
    )
    (property "Capacitance" "0.1u" (id 6) (at 159.6136 69.694 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Class" "X7S" (id 7) (at 160.655 79.375 0)
      (effects (font (size 1.27 1.27)) (justify left) hide)
    )
    (property "Size" "0603" (id 8) (at 160.655 73.025 0)
      (effects (font (size 1.27 1.27)) (justify left) hide)
    )
    (property "Voltage Rating" "100V" (id 9) (at 159.6136 72.4691 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Part Number" "CGA3E3X7S2A104K080AB" (id 10) (at 160.655 92.075 0)
      (effects (font (size 1.27 1.27)) (justify left) hide)
    )
    (pin "1" (uuid 818f7d9d-5a3b-4cd4-b501-67c83df38cc3))
    (pin "2" (uuid 0796013a-1932-40a7-a88a-4f4dcfdf9d05))
  )

  (symbol (lib_id "mw_ceramic_caps:CGA3E3X7S2A104K080AB") (at 174.625 114.935 0)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid f6e63bd9-3ffe-4b33-ba3e-161e7fbbe309)
    (property "Reference" "C?" (id 0) (at 177.3936 112.6389 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Value" "CGA3E3X7S2A104K080AB" (id 1) (at 178.435 127.635 0)
      (effects (font (size 1.27 1.27)) (justify left) hide)
    )
    (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 178.435 130.175 0)
      (effects (font (size 1.27 1.27)) (justify left) hide)
    )
    (property "Datasheet" "~" (id 3) (at 175.26 112.395 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Digikey Part Number" "445-6938-1-ND" (id 4) (at 178.435 132.715 0)
      (effects (font (size 1.27 1.27)) (justify left) hide)
    )
    (property "Manufacturer" "TDK" (id 5) (at 178.435 135.255 0)
      (effects (font (size 1.27 1.27)) (justify left) hide)
    )
    (property "Capacitance" "0.1u" (id 6) (at 177.3936 115.414 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Class" "X7S" (id 7) (at 178.435 125.095 0)
      (effects (font (size 1.27 1.27)) (justify left) hide)
    )
    (property "Size" "0603" (id 8) (at 178.435 118.745 0)
      (effects (font (size 1.27 1.27)) (justify left) hide)
    )
    (property "Voltage Rating" "100V" (id 9) (at 177.3936 118.1891 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Part Number" "CGA3E3X7S2A104K080AB" (id 10) (at 178.435 137.795 0)
      (effects (font (size 1.27 1.27)) (justify left) hide)
    )
    (pin "1" (uuid 250db0cd-04f0-4952-88fc-7bbed1830342))
    (pin "2" (uuid 0808cc1f-52cd-4780-9ce5-605e92dc6605))
  )

  (symbol (lib_id "power:GND") (at 169.545 76.2 0)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid fb0e1365-42ae-4a28-ad46-f85f69f6b98d)
    (property "Reference" "#PWR?" (id 0) (at 169.545 82.55 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "GND" (id 1) (at 169.545 80.7625 0))
    (property "Footprint" "" (id 2) (at 169.545 76.2 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (id 3) (at 169.545 76.2 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 8e30e802-befd-4664-9f05-3c156ce88839))
  )
)