aboutsummaryrefslogtreecommitdiffhomepage
path: root/hardware/lcd_adapter_pcb/lcd_adapter.kicad_sch
blob: 384eab5c331bd5f6e9697b40f87b3c1f24564e4e (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
(kicad_sch (version 20210621) (generator eeschema)

  (uuid 9d18f126-25a0-4767-9cfe-60845c6d7acd)

  (paper "A4")

  (title_block
    (title "LCD Adapter")
    (date "2021-11-22")
    (rev "V1")
  )

  (lib_symbols
    (symbol "Connector_Generic:Conn_02x05_Odd_Even" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
      (property "Reference" "J" (id 0) (at 1.27 7.62 0)
        (effects (font (size 1.27 1.27)))
      )
      (property "Value" "Conn_02x05_Odd_Even" (id 1) (at 1.27 -7.62 0)
        (effects (font (size 1.27 1.27)))
      )
      (property "Footprint" "" (id 2) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "Datasheet" "~" (id 3) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_keywords" "connector" (id 4) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_description" "Generic connector, double row, 02x05, odd/even pin numbering scheme (row 1 odd numbers, row 2 even numbers), script generated (kicad-library-utils/schlib/autogen/connector/)" (id 5) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_fp_filters" "Connector*:*_2x??_*" (id 6) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (symbol "Conn_02x05_Odd_Even_1_1"
        (rectangle (start -1.27 -4.953) (end 0 -5.207)
          (stroke (width 0.1524) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (rectangle (start -1.27 -2.413) (end 0 -2.667)
          (stroke (width 0.1524) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (rectangle (start -1.27 0.127) (end 0 -0.127)
          (stroke (width 0.1524) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (rectangle (start -1.27 2.667) (end 0 2.413)
          (stroke (width 0.1524) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (rectangle (start -1.27 5.207) (end 0 4.953)
          (stroke (width 0.1524) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (rectangle (start -1.27 6.35) (end 3.81 -6.35)
          (stroke (width 0.254) (type default) (color 0 0 0 0))
          (fill (type background))
        )
        (rectangle (start 3.81 -4.953) (end 2.54 -5.207)
          (stroke (width 0.1524) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (rectangle (start 3.81 -2.413) (end 2.54 -2.667)
          (stroke (width 0.1524) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (rectangle (start 3.81 0.127) (end 2.54 -0.127)
          (stroke (width 0.1524) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (rectangle (start 3.81 2.667) (end 2.54 2.413)
          (stroke (width 0.1524) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (rectangle (start 3.81 5.207) (end 2.54 4.953)
          (stroke (width 0.1524) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (pin passive line (at -5.08 5.08 0) (length 3.81)
          (name "Pin_1" (effects (font (size 1.27 1.27))))
          (number "1" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at 7.62 -5.08 180) (length 3.81)
          (name "Pin_10" (effects (font (size 1.27 1.27))))
          (number "10" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at 7.62 5.08 180) (length 3.81)
          (name "Pin_2" (effects (font (size 1.27 1.27))))
          (number "2" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at -5.08 2.54 0) (length 3.81)
          (name "Pin_3" (effects (font (size 1.27 1.27))))
          (number "3" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at 7.62 2.54 180) (length 3.81)
          (name "Pin_4" (effects (font (size 1.27 1.27))))
          (number "4" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at -5.08 0 0) (length 3.81)
          (name "Pin_5" (effects (font (size 1.27 1.27))))
          (number "5" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at 7.62 0 180) (length 3.81)
          (name "Pin_6" (effects (font (size 1.27 1.27))))
          (number "6" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at -5.08 -2.54 0) (length 3.81)
          (name "Pin_7" (effects (font (size 1.27 1.27))))
          (number "7" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at 7.62 -2.54 180) (length 3.81)
          (name "Pin_8" (effects (font (size 1.27 1.27))))
          (number "8" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at -5.08 -5.08 0) (length 3.81)
          (name "Pin_9" (effects (font (size 1.27 1.27))))
          (number "9" (effects (font (size 1.27 1.27))))
        )
      )
    )
    (symbol "power:+3.3V" (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" "+3.3V" (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 \"+3.3V\"" (id 5) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (symbol "+3.3V_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 "+3.3V_1_1"
        (pin power_in line (at 0 0 90) (length 0) hide
          (name "+3V3" (effects (font (size 1.27 1.27))))
          (number "1" (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))))
        )
      )
    )
    (symbol "power:PWR_FLAG" (power) (pin_numbers hide) (pin_names (offset 0) hide) (in_bom yes) (on_board yes)
      (property "Reference" "#FLG" (id 0) (at 0 1.905 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "Value" "PWR_FLAG" (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" "Special symbol for telling ERC where power comes from" (id 5) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (symbol "PWR_FLAG_0_0"
        (pin power_out line (at 0 0 90) (length 0)
          (name "pwr" (effects (font (size 1.27 1.27))))
          (number "1" (effects (font (size 1.27 1.27))))
        )
      )
      (symbol "PWR_FLAG_0_1"
        (polyline
          (pts
            (xy 0 0)
            (xy 0 1.27)
            (xy -1.016 1.905)
            (xy 0 2.54)
            (xy 1.016 1.905)
            (xy 0 1.27)
          )
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
      )
    )
  )

  (junction (at 86.36 67.31) (diameter 0) (color 0 0 0 0))
  (junction (at 111.76 68.58) (diameter 0) (color 0 0 0 0))
  (junction (at 111.76 163.83) (diameter 0) (color 0 0 0 0))

  (no_connect (at 83.82 83.82) (uuid 0c8099dd-88c1-44e9-adf4-551e153c4bca))
  (no_connect (at 83.82 162.56) (uuid 9c3df188-86f9-4d62-91c2-233607899bba))
  (no_connect (at 101.6 83.82) (uuid 0c8099dd-88c1-44e9-adf4-551e153c4bca))
  (no_connect (at 101.6 162.56) (uuid 9d98c91e-90c7-4aea-bac7-993d64a57f53))
  (no_connect (at 109.22 71.12) (uuid 0c8099dd-88c1-44e9-adf4-551e153c4bca))
  (no_connect (at 109.22 83.82) (uuid 0c8099dd-88c1-44e9-adf4-551e153c4bca))
  (no_connect (at 109.22 149.86) (uuid 18938779-51dc-4b9d-8110-4c3b7e239512))
  (no_connect (at 109.22 162.56) (uuid 3b66c9c8-f458-4d83-bd4d-9d9f94f9c9ad))

  (wire (pts (xy 76.2 67.31) (xy 76.2 71.12))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid a8a89954-cbbc-4bf5-afc1-d7b65dba8de1)
  )
  (wire (pts (xy 76.2 83.82) (xy 76.2 87.63))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 9e66bc8f-4da9-4204-afc6-2542b9826d26)
  )
  (wire (pts (xy 76.2 146.05) (xy 76.2 149.86))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid f1428b42-8cc1-4c05-99d2-5ef24d036b84)
  )
  (wire (pts (xy 76.2 162.56) (xy 76.2 166.37))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid b68b0c33-f5fa-48b7-9570-82051c6ac681)
  )
  (wire (pts (xy 78.74 67.31) (xy 78.74 71.12))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 5cc0962f-7a2a-4b3c-ab0e-fab9a1db9b10)
  )
  (wire (pts (xy 78.74 83.82) (xy 78.74 87.63))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 6d5defcb-c48c-4672-8f14-0b7d867f0c8a)
  )
  (wire (pts (xy 78.74 146.05) (xy 78.74 149.86))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 8fbcdb70-1674-47cc-8eb4-d441e18068bc)
  )
  (wire (pts (xy 78.74 162.56) (xy 78.74 166.37))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid bac6068a-5b02-4960-aeba-33152420af2e)
  )
  (wire (pts (xy 81.28 67.31) (xy 81.28 71.12))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid eb20ff87-dc2c-4bae-ac5b-68d5152cbfcf)
  )
  (wire (pts (xy 81.28 83.82) (xy 81.28 87.63))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid c750933f-9b1d-4393-8367-9cdd7a38ceac)
  )
  (wire (pts (xy 81.28 146.05) (xy 81.28 149.86))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid cdec5e75-08cd-4019-aa59-91302870ac47)
  )
  (wire (pts (xy 81.28 162.56) (xy 81.28 166.37))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid b0386edb-964b-4e93-85bd-c7485f3e8a2d)
  )
  (wire (pts (xy 83.82 67.31) (xy 83.82 71.12))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid a10bb085-0b0b-4fec-86bc-8a1df2325dde)
  )
  (wire (pts (xy 83.82 146.05) (xy 83.82 149.86))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 1713aef9-79e8-48a5-8157-098830d629d7)
  )
  (wire (pts (xy 86.36 67.31) (xy 86.36 71.12))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid b24bd982-ca1d-475f-a0f5-7002b1ac932b)
  )
  (wire (pts (xy 86.36 83.82) (xy 86.36 87.63))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid a57b099b-c5b3-49f0-b073-105f2c7f2f66)
  )
  (wire (pts (xy 86.36 146.05) (xy 86.36 149.86))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 1f16d4fb-18c1-41b7-9dff-88b513f7b974)
  )
  (wire (pts (xy 86.36 162.56) (xy 86.36 166.37))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid c8bde359-e2e9-4dc4-983e-0e96b5fe8005)
  )
  (wire (pts (xy 101.6 67.31) (xy 101.6 71.12))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid bdd2055c-9ae8-481c-aae2-8ddfd340d5c1)
  )
  (wire (pts (xy 101.6 146.05) (xy 101.6 149.86))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 7de18c79-53ab-48dd-bd0a-ed3561a10cf1)
  )
  (wire (pts (xy 104.14 67.31) (xy 104.14 71.12))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 8c478a2a-26b2-4656-aed1-7bb3576361de)
  )
  (wire (pts (xy 104.14 83.82) (xy 104.14 87.63))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 2563f81c-fa9c-4772-9d13-ae32be0307e8)
  )
  (wire (pts (xy 104.14 146.05) (xy 104.14 149.86))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 8a4c3e05-ca1a-4808-b9dd-21266677c30b)
  )
  (wire (pts (xy 104.14 162.56) (xy 104.14 166.37))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 7062e96a-60c4-461b-985e-3f403d522721)
  )
  (wire (pts (xy 106.68 67.31) (xy 106.68 71.12))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 4338bb20-b64c-478d-aa98-167cb2a5d1fe)
  )
  (wire (pts (xy 106.68 83.82) (xy 106.68 87.63))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid ca301b6a-73d4-41b3-9c18-1e794a6637cc)
  )
  (wire (pts (xy 106.68 146.05) (xy 106.68 149.86))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 7262c1ed-c5ea-405f-8a01-1b00ba700c1c)
  )
  (wire (pts (xy 106.68 162.56) (xy 106.68 166.37))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 586273a4-aa9f-4761-b8f9-16563e5f547d)
  )
  (wire (pts (xy 111.76 67.31) (xy 111.76 68.58))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 3a7e96eb-df98-46cc-b3ce-5ffc5879cb57)
  )
  (wire (pts (xy 111.76 68.58) (xy 111.76 71.12))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 3a7e96eb-df98-46cc-b3ce-5ffc5879cb57)
  )
  (wire (pts (xy 111.76 83.82) (xy 111.76 87.63))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 40b8aec6-0c0f-4b83-bd87-ed353dc6ffe2)
  )
  (wire (pts (xy 111.76 146.05) (xy 111.76 149.86))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid ec878b3a-b1bc-4f0c-879b-254077edf566)
  )
  (wire (pts (xy 111.76 162.56) (xy 111.76 163.83))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid d2087307-61dc-4866-ba59-54475926121a)
  )
  (wire (pts (xy 111.76 163.83) (xy 111.76 166.37))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid d2087307-61dc-4866-ba59-54475926121a)
  )
  (polyline (pts (xy 62.23 52.07) (xy 116.84 52.07))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 9368b5c8-5482-4f16-ad9e-a1648b91f09b)
  )
  (polyline (pts (xy 62.23 53.34) (xy 62.23 104.14))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 9368b5c8-5482-4f16-ad9e-a1648b91f09b)
  )
  (polyline (pts (xy 62.23 104.14) (xy 116.84 104.14))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 9368b5c8-5482-4f16-ad9e-a1648b91f09b)
  )
  (polyline (pts (xy 62.23 130.81) (xy 116.84 130.81))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 9eec1da1-f0a1-45e5-8529-aa8c12399709)
  )
  (polyline (pts (xy 62.23 132.08) (xy 62.23 182.88))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 362f7c45-9284-4e3a-9be0-fb743fe7c839)
  )
  (polyline (pts (xy 62.23 182.88) (xy 116.84 182.88))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 72812409-af70-4703-9484-03904cd5d22d)
  )
  (polyline (pts (xy 116.84 104.14) (xy 116.84 52.07))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 9368b5c8-5482-4f16-ad9e-a1648b91f09b)
  )
  (polyline (pts (xy 116.84 182.88) (xy 116.84 130.81))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid f0ce65b4-eebf-40b7-9e3b-6ecef3289513)
  )

  (text "LCD MODULE" (at 64.77 50.8 0)
    (effects (font (size 1.27 1.27)) (justify left bottom))
    (uuid 4675c72b-3e45-4c8e-becb-b575d242003d)
  )
  (text "LCD MODULE" (at 64.77 129.54 0)
    (effects (font (size 1.27 1.27)) (justify left bottom))
    (uuid a476e7db-51e4-4b0d-9e1b-678f81408cb6)
  )

  (global_label "D52" (shape input) (at 76.2 67.31 90) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify left))
    (uuid fb2dd3b6-e795-4b40-9ef0-88f23eb72e45)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 76.1206 61.2079 90)
      (effects (font (size 1.27 1.27)) (justify left) hide)
    )
  )
  (global_label "D50" (shape output) (at 76.2 87.63 270) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid 28285584-1048-42df-8826-65452051e1c6)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 76.1206 93.7321 90)
      (effects (font (size 1.27 1.27)) (justify right) hide)
    )
  )
  (global_label "D52" (shape input) (at 76.2 146.05 90) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify left))
    (uuid 1af1854a-676b-4e8a-abb3-046b8ee9435f)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 76.1206 139.9479 90)
      (effects (font (size 1.27 1.27)) (justify left) hide)
    )
  )
  (global_label "D50" (shape output) (at 76.2 166.37 270) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid 2098071a-52cf-450a-8567-c733d7c7052b)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 76.1206 172.4721 90)
      (effects (font (size 1.27 1.27)) (justify right) hide)
    )
  )
  (global_label "D53" (shape input) (at 78.74 67.31 90) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify left))
    (uuid e08fc5b2-e69f-4618-aa4f-7b0a0c6c8696)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 78.6606 61.2079 90)
      (effects (font (size 1.27 1.27)) (justify left) hide)
    )
  )
  (global_label "D18" (shape input) (at 78.74 87.63 270) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid 5f8fb1d1-3f80-41c5-a37a-6eae7d9fdb8b)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 78.6606 93.7321 90)
      (effects (font (size 1.27 1.27)) (justify right) hide)
    )
  )
  (global_label "D53" (shape input) (at 78.74 146.05 90) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify left))
    (uuid 5313585f-f632-40f1-ae9b-ea9dff75e20b)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 78.6606 139.9479 90)
      (effects (font (size 1.27 1.27)) (justify left) hide)
    )
  )
  (global_label "D18" (shape input) (at 78.74 166.37 270) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid 0b3ea645-24fc-49a7-b7cd-940a704e7d70)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 78.6606 172.4721 90)
      (effects (font (size 1.27 1.27)) (justify right) hide)
    )
  )
  (global_label "D51" (shape input) (at 81.28 67.31 90) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify left))
    (uuid e52e2e37-2b1a-457a-b979-6e2648895250)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 81.2006 61.2079 90)
      (effects (font (size 1.27 1.27)) (justify left) hide)
    )
  )
  (global_label "D19" (shape input) (at 81.28 87.63 270) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid 84fa07b5-98da-4885-baf6-1cc424f45994)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 81.2006 93.7321 90)
      (effects (font (size 1.27 1.27)) (justify right) hide)
    )
  )
  (global_label "D51" (shape input) (at 81.28 146.05 90) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify left))
    (uuid 0aa4cff8-3f3e-436f-b8c4-32c644cab783)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 81.2006 139.9479 90)
      (effects (font (size 1.27 1.27)) (justify left) hide)
    )
  )
  (global_label "D19" (shape input) (at 81.28 166.37 270) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid 17b5e488-2f26-42b5-a35b-4ac22bb5c9f3)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 81.2006 172.4721 90)
      (effects (font (size 1.27 1.27)) (justify right) hide)
    )
  )
  (global_label "RESET" (shape output) (at 83.82 67.31 90) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify left))
    (uuid ed2538a0-e4b6-4c15-bd4b-1c6caef6c11a)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 83.7406 59.1517 90)
      (effects (font (size 1.27 1.27)) (justify left) hide)
    )
  )
  (global_label "RESET" (shape output) (at 83.82 146.05 90) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify left))
    (uuid f36d0e6b-643c-4919-ae3e-2b150495f0ba)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 83.7406 137.8917 90)
      (effects (font (size 1.27 1.27)) (justify left) hide)
    )
  )
  (global_label "D39" (shape input) (at 101.6 67.31 90) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify left))
    (uuid 9e9aeec2-8cb7-4931-a527-6bdd6c82342f)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 101.5206 61.2079 90)
      (effects (font (size 1.27 1.27)) (justify left) hide)
    )
  )
  (global_label "D39" (shape input) (at 101.6 146.05 90) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify left))
    (uuid b5aefa47-9793-49a7-8bac-06d073e1746c)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 101.5206 139.9479 90)
      (effects (font (size 1.27 1.27)) (justify left) hide)
    )
  )
  (global_label "D11" (shape input) (at 104.14 67.31 90) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify left))
    (uuid 06fef573-d9b9-4403-8d98-05f78eb6674c)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 104.0606 61.2079 90)
      (effects (font (size 1.27 1.27)) (justify left) hide)
    )
  )
  (global_label "D12" (shape input) (at 104.14 87.63 270) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid 5eac67c5-6c16-4026-8f40-7dea73d1143f)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 104.0606 93.7321 90)
      (effects (font (size 1.27 1.27)) (justify right) hide)
    )
  )
  (global_label "D11" (shape input) (at 104.14 146.05 90) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify left))
    (uuid f1b37df1-1f65-40e7-9317-167221422519)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 104.0606 139.9479 90)
      (effects (font (size 1.27 1.27)) (justify left) hide)
    )
  )
  (global_label "D12" (shape input) (at 104.14 166.37 270) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid 87263d9e-5589-4d17-b491-edff07c62c5f)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 104.0606 172.4721 90)
      (effects (font (size 1.27 1.27)) (justify right) hide)
    )
  )
  (global_label "D13" (shape input) (at 106.68 67.31 90) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify left))
    (uuid 4d338f96-8bd8-40f2-a7f4-695cc44ef055)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 106.6006 61.2079 90)
      (effects (font (size 1.27 1.27)) (justify left) hide)
    )
  )
  (global_label "D10" (shape input) (at 106.68 87.63 270) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid f922b7f8-4ecc-47f1-8b80-ae3e76818568)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 106.6006 93.7321 90)
      (effects (font (size 1.27 1.27)) (justify right) hide)
    )
  )
  (global_label "D13" (shape input) (at 106.68 146.05 90) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify left))
    (uuid 99de4f07-8626-4542-a365-a19ef83bf5ee)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 106.6006 139.9479 90)
      (effects (font (size 1.27 1.27)) (justify left) hide)
    )
  )
  (global_label "D10" (shape input) (at 106.68 166.37 270) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid ccf81deb-ace7-4cd6-8be0-270f7843fec5)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 106.6006 172.4721 90)
      (effects (font (size 1.27 1.27)) (justify right) hide)
    )
  )

  (symbol (lib_id "power:+3.3V") (at 86.36 67.31 0) (unit 1)
    (in_bom yes) (on_board yes)
    (uuid 91b7f043-5c1b-4051-a624-be62906a96e8)
    (property "Reference" "#PWR01" (id 0) (at 86.36 71.12 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "+3.3V" (id 1) (at 86.36 62.23 90))
    (property "Footprint" "" (id 2) (at 86.36 67.31 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (id 3) (at 86.36 67.31 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid d46b3d6e-bcee-46e0-964d-b09db222790e))
  )

  (symbol (lib_id "power:+3.3V") (at 86.36 146.05 0) (unit 1)
    (in_bom yes) (on_board yes)
    (uuid 6dd3e860-45de-4e1a-973d-96e10dd03056)
    (property "Reference" "#PWR03" (id 0) (at 86.36 149.86 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "+3.3V" (id 1) (at 86.36 140.97 90))
    (property "Footprint" "" (id 2) (at 86.36 146.05 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (id 3) (at 86.36 146.05 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 6bf34d1d-e63d-4faf-8f19-7b48b8a8602d))
  )

  (symbol (lib_id "power:+5V") (at 111.76 67.31 0) (unit 1)
    (in_bom yes) (on_board yes)
    (uuid 30940bc5-cc5b-498e-8590-e4c0754d6ae0)
    (property "Reference" "#PWR05" (id 0) (at 111.76 71.12 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "+5V" (id 1) (at 111.76 62.23 90))
    (property "Footprint" "" (id 2) (at 111.76 67.31 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (id 3) (at 111.76 67.31 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 66a346c4-5643-487f-9937-62d9d8dee0b0))
  )

  (symbol (lib_id "power:+5V") (at 111.76 146.05 0) (unit 1)
    (in_bom yes) (on_board yes)
    (uuid eb52b980-a1c0-408d-8dfd-f94eb77bfb6f)
    (property "Reference" "#PWR07" (id 0) (at 111.76 149.86 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "+5V" (id 1) (at 111.76 140.97 90))
    (property "Footprint" "" (id 2) (at 111.76 146.05 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (id 3) (at 111.76 146.05 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid dd4192ec-e929-4ded-ad2d-ee0762ed63f7))
  )

  (symbol (lib_id "power:PWR_FLAG") (at 86.36 67.31 270) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid 9fa48079-05a8-40ac-b2e7-c1cadc82d82c)
    (property "Reference" "#FLG01" (id 0) (at 88.265 67.31 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "PWR_FLAG" (id 1) (at 90.17 67.3099 90)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Footprint" "" (id 2) (at 86.36 67.31 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (id 3) (at 86.36 67.31 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid a6476f80-f482-4b53-8d7d-788e69128cfe))
  )

  (symbol (lib_id "power:PWR_FLAG") (at 111.76 68.58 270) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid ce48ec79-62dc-49ec-844a-218ccbef6e15)
    (property "Reference" "#FLG02" (id 0) (at 113.665 68.58 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "PWR_FLAG" (id 1) (at 115.57 68.5799 90)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Footprint" "" (id 2) (at 111.76 68.58 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (id 3) (at 111.76 68.58 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid e9b69155-ca61-463f-b61a-072fe705678b))
  )

  (symbol (lib_id "power:PWR_FLAG") (at 111.76 163.83 270) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid 3d0d1128-e717-484a-8437-573b6d46fbae)
    (property "Reference" "#FLG03" (id 0) (at 113.665 163.83 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "PWR_FLAG" (id 1) (at 115.57 163.8299 90)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Footprint" "" (id 2) (at 111.76 163.83 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (id 3) (at 111.76 163.83 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 1276de2e-6005-4984-9dde-b251ecf40ebf))
  )

  (symbol (lib_id "power:GND") (at 86.36 87.63 0) (unit 1)
    (in_bom yes) (on_board yes)
    (uuid a0e5bb20-ac73-4bd5-bec8-439a51902e97)
    (property "Reference" "#PWR02" (id 0) (at 86.36 93.98 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "GND" (id 1) (at 86.36 92.71 90))
    (property "Footprint" "" (id 2) (at 86.36 87.63 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (id 3) (at 86.36 87.63 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 69e61ed3-5359-474c-bae2-1a743c1ecba7))
  )

  (symbol (lib_id "power:GND") (at 86.36 166.37 0) (unit 1)
    (in_bom yes) (on_board yes)
    (uuid 5436fde5-4a5e-4ae1-bac1-0a420196f2cf)
    (property "Reference" "#PWR04" (id 0) (at 86.36 172.72 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "GND" (id 1) (at 86.36 171.45 90))
    (property "Footprint" "" (id 2) (at 86.36 166.37 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (id 3) (at 86.36 166.37 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 6423e178-4535-491c-922f-a3f4894119e9))
  )

  (symbol (lib_id "power:GND") (at 111.76 87.63 0) (unit 1)
    (in_bom yes) (on_board yes)
    (uuid 00dd91a6-1b31-4202-ace1-cb3889c258d0)
    (property "Reference" "#PWR06" (id 0) (at 111.76 93.98 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "GND" (id 1) (at 111.76 92.71 90))
    (property "Footprint" "" (id 2) (at 111.76 87.63 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (id 3) (at 111.76 87.63 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 0d561a8c-9d13-4235-bae6-ceb65e4de9ba))
  )

  (symbol (lib_id "power:GND") (at 111.76 166.37 0) (unit 1)
    (in_bom yes) (on_board yes)
    (uuid 0a8f27d3-9bc6-4d34-bf50-0e4ea3570136)
    (property "Reference" "#PWR08" (id 0) (at 111.76 172.72 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "GND" (id 1) (at 111.76 171.45 90))
    (property "Footprint" "" (id 2) (at 111.76 166.37 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (id 3) (at 111.76 166.37 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 62d97b20-6dec-4db1-9a4b-ed3a31467cc4))
  )

  (symbol (lib_id "Connector_Generic:Conn_02x05_Odd_Even") (at 81.28 76.2 270) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid 414a2720-3a3f-4848-8d28-566ff7dc05c6)
    (property "Reference" "J1" (id 0) (at 88.9 76.1999 90)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Value" "EXP2" (id 1) (at 88.9 78.7399 90)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Footprint" "Connector_IDC:IDC-Header_2x05_P2.54mm_Vertical" (id 2) (at 81.28 76.2 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (id 3) (at 81.28 76.2 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 90c5a4d4-e0c4-48df-a3a3-15111f9246c2))
    (pin "10" (uuid ce9301ab-2bca-414a-a40a-e5225d65e3de))
    (pin "2" (uuid 19fa36c2-e144-476a-927a-31ebc35e3215))
    (pin "3" (uuid 00fd4130-65d6-4b9d-bafa-fe536d0ddf74))
    (pin "4" (uuid 7e717b34-fe03-433d-a217-2c99bb9ebc2f))
    (pin "5" (uuid 13c53ec5-2fa5-40d2-9db9-c0f34b106801))
    (pin "6" (uuid adf6c81a-1b76-47c6-8a67-354e89fefdc7))
    (pin "7" (uuid 8aefff80-2cf4-4d51-9a54-d6172990b3bf))
    (pin "8" (uuid 88251174-078a-4d7f-9bfb-75a516cfd436))
    (pin "9" (uuid 1422552f-e22e-452d-9277-7eb70959ea00))
  )

  (symbol (lib_id "Connector_Generic:Conn_02x05_Odd_Even") (at 81.28 154.94 270) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid 2e12f3b9-ff90-43d0-8348-77ab44005a2c)
    (property "Reference" "J3" (id 0) (at 88.9 154.9399 90)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Value" "EXP2" (id 1) (at 88.9 157.4799 90)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Footprint" "Connector_IDC:IDC-Header_2x05_P2.54mm_Vertical" (id 2) (at 81.28 154.94 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (id 3) (at 81.28 154.94 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 96304340-3f89-4862-a299-9ab91cb8ef4e))
    (pin "10" (uuid ef1e4695-2b7d-4077-93a7-7492a792db25))
    (pin "2" (uuid fbe7245c-7bca-4be8-ba89-1b81aad8e443))
    (pin "3" (uuid f8abf73c-d563-4c9a-a8b8-03d4fae9788f))
    (pin "4" (uuid c4be20d0-227d-45aa-b88c-4788a62e728f))
    (pin "5" (uuid 12cbfdb4-7544-424c-80fe-82753003eb9c))
    (pin "6" (uuid 747c97bf-5461-42dc-b817-9c3bcfe4ea28))
    (pin "7" (uuid 0586024e-16db-4ed6-90cd-cbc8eab1632e))
    (pin "8" (uuid ad08a531-f6ff-414e-a1c7-5834d2d8918f))
    (pin "9" (uuid eaf58e79-9ce2-4c32-9227-f34b57e9b5c7))
  )

  (symbol (lib_id "Connector_Generic:Conn_02x05_Odd_Even") (at 106.68 76.2 270) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid b6b0455f-166e-4511-9c98-9cb4335fab6b)
    (property "Reference" "J2" (id 0) (at 114.3 76.1999 90)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Value" "EXP1" (id 1) (at 114.3 78.7399 90)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Footprint" "Connector_IDC:IDC-Header_2x05_P2.54mm_Vertical" (id 2) (at 106.68 76.2 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (id 3) (at 106.68 76.2 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 46648386-0462-4142-9e6c-05a5c626b260))
    (pin "10" (uuid 4cbba131-ab6d-4a2a-bbfc-e750c5ea550b))
    (pin "2" (uuid d9c3d925-047b-43d8-8299-2b4f185660f5))
    (pin "3" (uuid 3e5a0e7e-b2e9-4d99-b842-f49f8d1703af))
    (pin "4" (uuid 1c612f6c-0689-4995-bb11-8bcd06e0728c))
    (pin "5" (uuid 49912e48-707b-4097-8cf1-d5eac62a3cfb))
    (pin "6" (uuid f0699c2a-5a08-4cf3-b106-1c9d7232cbbe))
    (pin "7" (uuid 5b648c72-258f-442d-8bcb-f8748bf81265))
    (pin "8" (uuid e4f16a4b-4ab5-4032-bd3d-22d0b5781d11))
    (pin "9" (uuid d5884e98-dd9a-485b-9cdd-4671c0346c46))
  )

  (symbol (lib_id "Connector_Generic:Conn_02x05_Odd_Even") (at 106.68 154.94 270) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid 259acbc0-3705-4206-9d6c-978f9f1b8dca)
    (property "Reference" "J4" (id 0) (at 114.3 154.9399 90)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Value" "EXP1" (id 1) (at 114.3 157.4799 90)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Footprint" "Connector_IDC:IDC-Header_2x05_P2.54mm_Vertical" (id 2) (at 106.68 154.94 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (id 3) (at 106.68 154.94 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 5bd9e059-94ca-4420-8adb-4ad50a06dd99))
    (pin "10" (uuid c1858815-7c34-4d1d-b422-8ddcfd0439e5))
    (pin "2" (uuid d6897424-6fee-47ce-a4e8-019acd55b9b3))
    (pin "3" (uuid 372577db-ed0a-491a-b7fe-3055b57d3935))
    (pin "4" (uuid b455f593-53c8-4f78-ac4e-c976c2d54d29))
    (pin "5" (uuid 115206ed-0ebe-45e0-af31-2c8033316bce))
    (pin "6" (uuid 9d65416f-f89b-483b-b8d0-ad0286f7947e))
    (pin "7" (uuid 1aea31d6-8acd-4a8a-b2c0-7745c9416747))
    (pin "8" (uuid 1a35ae7d-e12e-4886-a27b-1e487bb4c01e))
    (pin "9" (uuid 3ae021ba-e424-40c3-9e84-4ac5bd638744))
  )

  (sheet_instances
    (path "/" (page "1"))
  )

  (symbol_instances
    (path "/9fa48079-05a8-40ac-b2e7-c1cadc82d82c"
      (reference "#FLG01") (unit 1) (value "PWR_FLAG") (footprint "")
    )
    (path "/ce48ec79-62dc-49ec-844a-218ccbef6e15"
      (reference "#FLG02") (unit 1) (value "PWR_FLAG") (footprint "")
    )
    (path "/3d0d1128-e717-484a-8437-573b6d46fbae"
      (reference "#FLG03") (unit 1) (value "PWR_FLAG") (footprint "")
    )
    (path "/91b7f043-5c1b-4051-a624-be62906a96e8"
      (reference "#PWR01") (unit 1) (value "+3.3V") (footprint "")
    )
    (path "/a0e5bb20-ac73-4bd5-bec8-439a51902e97"
      (reference "#PWR02") (unit 1) (value "GND") (footprint "")
    )
    (path "/6dd3e860-45de-4e1a-973d-96e10dd03056"
      (reference "#PWR03") (unit 1) (value "+3.3V") (footprint "")
    )
    (path "/5436fde5-4a5e-4ae1-bac1-0a420196f2cf"
      (reference "#PWR04") (unit 1) (value "GND") (footprint "")
    )
    (path "/30940bc5-cc5b-498e-8590-e4c0754d6ae0"
      (reference "#PWR05") (unit 1) (value "+5V") (footprint "")
    )
    (path "/00dd91a6-1b31-4202-ace1-cb3889c258d0"
      (reference "#PWR06") (unit 1) (value "GND") (footprint "")
    )
    (path "/eb52b980-a1c0-408d-8dfd-f94eb77bfb6f"
      (reference "#PWR07") (unit 1) (value "+5V") (footprint "")
    )
    (path "/0a8f27d3-9bc6-4d34-bf50-0e4ea3570136"
      (reference "#PWR08") (unit 1) (value "GND") (footprint "")
    )
    (path "/414a2720-3a3f-4848-8d28-566ff7dc05c6"
      (reference "J1") (unit 1) (value "EXP2") (footprint "Connector_IDC:IDC-Header_2x05_P2.54mm_Vertical")
    )
    (path "/b6b0455f-166e-4511-9c98-9cb4335fab6b"
      (reference "J2") (unit 1) (value "EXP1") (footprint "Connector_IDC:IDC-Header_2x05_P2.54mm_Vertical")
    )
    (path "/2e12f3b9-ff90-43d0-8348-77ab44005a2c"
      (reference "J3") (unit 1) (value "EXP2") (footprint "Connector_IDC:IDC-Header_2x05_P2.54mm_Vertical")
    )
    (path "/259acbc0-3705-4206-9d6c-978f9f1b8dca"
      (reference "J4") (unit 1) (value "EXP1") (footprint "Connector_IDC:IDC-Header_2x05_P2.54mm_Vertical")
    )
  )
)