-
Notifications
You must be signed in to change notification settings - Fork 1
/
peripherals.kicad_sch-bak
4659 lines (4503 loc) · 178 KB
/
peripherals.kicad_sch-bak
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
(kicad_sch (version 20211123) (generator eeschema)
(uuid 3635400d-476f-4fd5-bb9c-718f11528601)
(paper "A4")
(lib_symbols
(symbol "Device:C" (pin_numbers hide) (pin_names (offset 0.254)) (in_bom yes) (on_board yes)
(property "Reference" "C" (id 0) (at 0.635 2.54 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "C" (id 1) (at 0.635 -2.54 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (id 2) (at 0.9652 -3.81 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "cap capacitor" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Unpolarized capacitor" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "C_*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "C_0_1"
(polyline
(pts
(xy -2.032 -0.762)
(xy 2.032 -0.762)
)
(stroke (width 0.508) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -2.032 0.762)
(xy 2.032 0.762)
)
(stroke (width 0.508) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "C_1_1"
(pin passive line (at 0 3.81 270) (length 2.794)
(name "~" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -3.81 90) (length 2.794)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Device:LED" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
(property "Reference" "D" (id 0) (at 0 2.54 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "LED" (id 1) (at 0 -2.54 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "LED diode" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Light emitting diode" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "LED* LED_SMD:* LED_THT:*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "LED_0_1"
(polyline
(pts
(xy -1.27 -1.27)
(xy -1.27 1.27)
)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -1.27 0)
(xy 1.27 0)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 1.27 -1.27)
(xy 1.27 1.27)
(xy -1.27 0)
(xy 1.27 -1.27)
)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -3.048 -0.762)
(xy -4.572 -2.286)
(xy -3.81 -2.286)
(xy -4.572 -2.286)
(xy -4.572 -1.524)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -1.778 -0.762)
(xy -3.302 -2.286)
(xy -2.54 -2.286)
(xy -3.302 -2.286)
(xy -3.302 -1.524)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "LED_1_1"
(pin passive line (at -3.81 0 0) (length 2.54)
(name "K" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 3.81 0 180) (length 2.54)
(name "A" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Device:R" (pin_numbers hide) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "R" (id 0) (at 2.032 0 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "R" (id 1) (at 0 0 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at -1.778 0 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "R res resistor" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Resistor" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "R_*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "R_0_1"
(rectangle (start -1.016 -2.54) (end 1.016 2.54)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "R_1_1"
(pin passive line (at 0 3.81 270) (length 1.27)
(name "~" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -3.81 90) (length 1.27)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Memory_Flash:W25Q128JVS" (in_bom yes) (on_board yes)
(property "Reference" "U" (id 0) (at -8.89 8.89 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "W25Q128JVS" (id 1) (at 7.62 8.89 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Package_SO:SOIC-8_5.23x5.23mm_P1.27mm" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "http://www.winbond.com/resource-files/w25q128jv_dtr%20revc%2003272018%20plus.pdf" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "flash memory SPI QPI DTR" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "128Mb Serial Flash Memory, Standard/Dual/Quad SPI, SOIC-8" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "SOIC*5.23x5.23mm*P1.27mm*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "W25Q128JVS_0_1"
(rectangle (start -10.16 7.62) (end 10.16 -7.62)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type background))
)
)
(symbol "W25Q128JVS_1_1"
(pin input line (at -12.7 2.54 0) (length 2.54)
(name "~{CS}" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 12.7 2.54 180) (length 2.54)
(name "DO(IO1)" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 12.7 -2.54 180) (length 2.54)
(name "IO2" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 0 -10.16 90) (length 2.54)
(name "GND" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 12.7 5.08 180) (length 2.54)
(name "DI(IO0)" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
(pin input line (at -12.7 -2.54 0) (length 2.54)
(name "CLK" (effects (font (size 1.27 1.27))))
(number "6" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 12.7 -5.08 180) (length 2.54)
(name "IO3" (effects (font (size 1.27 1.27))))
(number "7" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 0 10.16 270) (length 2.54)
(name "VCC" (effects (font (size 1.27 1.27))))
(number "8" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Security:ATECC608A-SSHDA" (in_bom yes) (on_board yes)
(property "Reference" "U" (id 0) (at 3.81 6.35 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "ATECC608A-SSHDA" (id 1) (at 10.16 -6.35 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Package_SO:SOIC-8_3.9x4.9mm_P1.27mm" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "http://ww1.microchip.com/downloads/en/DeviceDoc/ATECC608A-CryptoAuthentication-Device-Summary-Data-Sheet-DS40001977B.pdf" (id 3) (at 3.81 6.35 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "Cryptographic coprocessor" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Cryptographic Co-Processor with Secure Hardware-based 16 Key Storage, ECDSA and ECDH support, I2C, SOIC-8" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "SOIC*8*3.9x4.9mm*P1.27mm*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "ATECC608A-SSHDA_0_1"
(rectangle (start -5.08 5.08) (end 5.08 -5.08)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type background))
)
)
(symbol "ATECC608A-SSHDA_1_1"
(pin power_in line (at 0 -7.62 90) (length 2.54)
(name "GND" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 7.62 2.54 180) (length 2.54)
(name "SDA" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
(pin input line (at 7.62 -2.54 180) (length 2.54)
(name "SCL" (effects (font (size 1.27 1.27))))
(number "6" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 0 7.62 270) (length 2.54)
(name "VCC" (effects (font (size 1.27 1.27))))
(number "8" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Switch:SW_Push" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
(property "Reference" "SW" (id 0) (at 1.27 2.54 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "SW_Push" (id 1) (at 0 -1.524 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 0 5.08 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 0 5.08 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "switch normally-open pushbutton push-button" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Push button switch, generic, two pins" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "SW_Push_0_1"
(circle (center -2.032 0) (radius 0.508)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 1.27)
(xy 0 3.048)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 2.54 1.27)
(xy -2.54 1.27)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(circle (center 2.032 0) (radius 0.508)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(pin passive line (at -5.08 0 0) (length 2.54)
(name "1" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 5.08 0 180) (length 2.54)
(name "2" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "pico-card:WS2812C" (in_bom yes) (on_board yes)
(property "Reference" "L" (id 0) (at -2.032 1.524 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "WS2812C" (id 1) (at 4.318 -7.112 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)
)
(symbol "WS2812C_0_0"
(text "RGB" (at 3.556 -3.937 0)
(effects (font (size 0.762 0.762)))
)
)
(symbol "WS2812C_0_1"
(rectangle (start -2.54 0.254) (end 10.922 -5.588)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 2.54 -3.302)
(xy 3.048 -3.302)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 2.54 -2.286)
(xy 3.048 -2.286)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 5.969 -3.302)
(xy 3.937 -3.302)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 3.556 -2.286)
(xy 2.54 -3.302)
(xy 2.54 -2.794)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 3.556 -1.27)
(xy 2.54 -2.286)
(xy 2.54 -1.778)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 4.953 -0.762)
(xy 4.953 -3.302)
(xy 4.953 -3.81)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 5.969 -1.27)
(xy 3.937 -1.27)
(xy 4.953 -3.302)
(xy 5.969 -1.27)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "WS2812C_1_1"
(pin output line (at 13.462 -3.81 180) (length 2.54)
(name "DO" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 13.462 -1.27 180) (length 2.54)
(name "GND" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin input line (at -5.08 -1.27 0) (length 2.54)
(name "DI" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at -5.08 -3.81 0) (length 2.54)
(name "VDD" (effects (font (size 1.27 1.27))))
(number "4" (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 165.481 92.075) (diameter 0) (color 0 0 0 0)
(uuid 119afea8-2cc8-4698-84e7-fff6c58b1ea7)
)
(junction (at 143.891 34.29) (diameter 0) (color 0 0 0 0)
(uuid 195ad883-48f6-4d06-8030-cb8edbd80037)
)
(junction (at 82.296 111.125) (diameter 0) (color 0 0 0 0)
(uuid 23134ee7-8358-49b3-ab87-a1debd5c1caa)
)
(junction (at 100.711 92.075) (diameter 0) (color 0 0 0 0)
(uuid 2958a529-f479-4bf3-8510-008e4ad8885b)
)
(junction (at 165.481 53.34) (diameter 0) (color 0 0 0 0)
(uuid 2caf236e-b317-4b58-b3cc-14d03f8c6255)
)
(junction (at 230.251 111.125) (diameter 0) (color 0 0 0 0)
(uuid 2cf1c1da-2ed1-4b01-adb0-7518293026ea)
)
(junction (at 129.54 154.94) (diameter 0) (color 0 0 0 0)
(uuid 2e5eb6b2-e47e-4c62-860b-aeb458f6638e)
)
(junction (at 187.071 72.39) (diameter 0) (color 0 0 0 0)
(uuid 2ff06ddb-14ce-481b-b5ed-4376b732513e)
)
(junction (at 100.711 111.125) (diameter 0) (color 0 0 0 0)
(uuid 3133a6fb-80ee-472c-9fdc-6371c473ba31)
)
(junction (at 122.301 34.29) (diameter 0) (color 0 0 0 0)
(uuid 42ff0b89-52fb-48f4-8ca4-2a8836ddc8a0)
)
(junction (at 208.661 111.125) (diameter 0) (color 0 0 0 0)
(uuid 44a2744b-edc4-42dc-8db1-66e6e10b95ba)
)
(junction (at 33.655 80.01) (diameter 0) (color 0 0 0 0)
(uuid 50666613-f608-4602-8f5c-da5a4eff4353)
)
(junction (at 82.296 92.075) (diameter 0) (color 0 0 0 0)
(uuid 545326a1-2449-4246-9e83-7341a5c2f7ad)
)
(junction (at 187.071 111.125) (diameter 0) (color 0 0 0 0)
(uuid 56319d65-ff47-4051-9214-5ba75306412e)
)
(junction (at 82.296 72.39) (diameter 0) (color 0 0 0 0)
(uuid 6215717f-ca38-4bd6-9c3a-56c564469c33)
)
(junction (at 122.301 111.125) (diameter 0) (color 0 0 0 0)
(uuid 6cc85b11-b207-4195-8e1c-69519c76f356)
)
(junction (at 86.741 34.29) (diameter 0) (color 0 0 0 0)
(uuid 6d323687-e14b-43b2-b0f1-76b4d040a8e2)
)
(junction (at 230.251 72.39) (diameter 0) (color 0 0 0 0)
(uuid 6de690f0-0286-428b-abb7-dd6e17b26dd5)
)
(junction (at 122.301 53.34) (diameter 0) (color 0 0 0 0)
(uuid 7385f2ae-2409-4799-964a-eb94ad127195)
)
(junction (at 165.481 111.125) (diameter 0) (color 0 0 0 0)
(uuid 73fbcc30-9b3e-4753-af40-c356cc97c56d)
)
(junction (at 208.661 92.075) (diameter 0) (color 0 0 0 0)
(uuid 7d44383c-6a01-4256-bf7d-f8cccfc6b10c)
)
(junction (at 100.711 34.29) (diameter 0) (color 0 0 0 0)
(uuid 7ef971cf-2e11-44cc-899e-cae388e84fcb)
)
(junction (at 230.251 92.075) (diameter 0) (color 0 0 0 0)
(uuid 82cfc68e-b23c-4e2e-8ac1-cf16a740c65a)
)
(junction (at 143.891 53.34) (diameter 0) (color 0 0 0 0)
(uuid 8b6fcd71-0c91-4e45-a57c-51534b5f6311)
)
(junction (at 143.891 111.125) (diameter 0) (color 0 0 0 0)
(uuid 8f5b75b8-1760-4823-a21e-aa2d159b7145)
)
(junction (at 187.071 34.29) (diameter 0) (color 0 0 0 0)
(uuid 94e12785-7507-45ed-b8d6-4057cbd13a41)
)
(junction (at 208.661 72.39) (diameter 0) (color 0 0 0 0)
(uuid 99ec3752-8b4c-4ed5-ac12-ea73638b353d)
)
(junction (at 165.481 72.39) (diameter 0) (color 0 0 0 0)
(uuid 99f27f43-e9ea-4c45-8fdc-7145e83cb701)
)
(junction (at 122.301 72.39) (diameter 0) (color 0 0 0 0)
(uuid 9ee0468a-442f-4263-a619-6fe9044733b9)
)
(junction (at 100.711 72.39) (diameter 0) (color 0 0 0 0)
(uuid b1d88c60-4795-4aec-bee6-bd2184773892)
)
(junction (at 82.296 34.29) (diameter 0) (color 0 0 0 0)
(uuid b3e9a854-7780-4e8e-a3e4-043a5855e627)
)
(junction (at 230.251 34.29) (diameter 0) (color 0 0 0 0)
(uuid b452ba2d-1803-4daa-8fb9-dc12c29f6d3c)
)
(junction (at 129.54 147.955) (diameter 0) (color 0 0 0 0)
(uuid bb6bd14b-ed4b-4eaf-bf58-75ae5de142b3)
)
(junction (at 208.661 53.34) (diameter 0) (color 0 0 0 0)
(uuid ca22eb42-2f25-4695-8cac-9ed7815dd0c4)
)
(junction (at 100.457 53.34) (diameter 0) (color 0 0 0 0)
(uuid cd9cb47a-504f-4329-b6b1-73a253e3fbc7)
)
(junction (at 143.891 92.075) (diameter 0) (color 0 0 0 0)
(uuid d1b48915-ef0c-4f0a-bfbb-0dda8117b1d0)
)
(junction (at 208.661 34.29) (diameter 0) (color 0 0 0 0)
(uuid d737770b-8d1f-4a06-aa88-aa47576fe367)
)
(junction (at 113.665 170.18) (diameter 0) (color 0 0 0 0)
(uuid d743975c-fc5f-46d2-bc15-ace69fe48e68)
)
(junction (at 143.891 72.39) (diameter 0) (color 0 0 0 0)
(uuid dbc427a3-c373-43e9-b46b-019b99519ad8)
)
(junction (at 82.296 53.34) (diameter 0) (color 0 0 0 0)
(uuid e44f0747-3537-46b0-ab6e-f6871e07a74b)
)
(junction (at 187.071 92.075) (diameter 0) (color 0 0 0 0)
(uuid e5f947d4-dcf4-4f9d-a997-261152927ee2)
)
(junction (at 122.301 92.075) (diameter 0) (color 0 0 0 0)
(uuid ecccfda5-fe2b-4701-a935-4895d7397153)
)
(junction (at 187.071 53.34) (diameter 0) (color 0 0 0 0)
(uuid f67376cf-6471-488e-bc41-e1bc4bfd30d8)
)
(junction (at 165.481 34.29) (diameter 0) (color 0 0 0 0)
(uuid f7361467-8a8b-4987-871a-8ec5cec25d37)
)
(junction (at 230.251 53.34) (diameter 0) (color 0 0 0 0)
(uuid f94c96c9-9d5f-41df-b177-a13403efec3a)
)
(no_connect (at 270.891 107.315) (uuid cba016ff-a994-49a1-8916-c962199c9ac1))
(wire (pts (xy 230.251 49.53) (xy 230.251 53.34))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 00cc0b8c-cabf-4357-8605-bb43b9ef6d9b)
)
(wire (pts (xy 122.301 107.315) (xy 122.301 111.125))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 01097a4f-4ae7-47b7-af88-76e4713f2b47)
)
(polyline (pts (xy 62.23 72.39) (xy 62.23 89.535))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 014ac525-f97b-4505-83ca-1d59cfe94c49)
)
(wire (pts (xy 31.115 31.75) (xy 41.91 31.75))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 015a5176-e6de-48a1-9280-18207a17afc7)
)
(wire (pts (xy 82.296 92.075) (xy 100.711 92.075))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 016eab56-ea28-438e-8215-6465382a6eeb)
)
(wire (pts (xy 207.772 49.53) (xy 206.121 49.53))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 01721fe9-b223-4d34-8abc-f9236241f514)
)
(polyline (pts (xy 16.51 118.11) (xy 16.51 152.4))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 01cde65e-4213-4cb4-9cd6-c92668f2ae99)
)
(wire (pts (xy 144.399 85.725) (xy 143.383 85.725))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 01d7e812-0c24-4a90-bde9-32c0e461ccb9)
)
(wire (pts (xy 250.444 27.94) (xy 250.444 35.56))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 04015590-0c4d-4eee-bed0-95a927bfb7c9)
)
(wire (pts (xy 165.989 104.775) (xy 164.973 104.775))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 05400ca1-7990-4e0f-a710-820349d7941f)
)
(wire (pts (xy 250.444 104.775) (xy 250.444 112.395))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 05bd685a-3628-475d-ba56-0b960bf37a63)
)
(wire (pts (xy 129.54 154.94) (xy 129.54 162.56))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 05f47982-3fd5-41de-9c3d-4abd7efac837)
)
(wire (pts (xy 76.581 88.265) (xy 76.581 92.075))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0731fc42-cc44-4d9e-ad74-99af5215d48f)
)
(wire (pts (xy 227.838 66.04) (xy 228.854 66.04))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0888dc71-d04a-4f3d-a350-be5f84515fd5)
)
(wire (pts (xy 186.69 104.775) (xy 186.69 107.315))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 08f1c78b-9936-4128-9a99-534cb8a7c085)
)
(wire (pts (xy 141.351 85.725) (xy 142.367 85.725))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 09815148-3aa3-421d-96c6-72986d49e0b5)
)
(wire (pts (xy 252.349 46.99) (xy 251.079 46.99))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0a5c1b3a-5ca7-40d8-9cd5-585edb6dadb6)
)
(wire (pts (xy 251.079 30.48) (xy 249.428 30.48))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0a6b4c99-25b9-4839-a864-e6199293f343)
)
(wire (pts (xy 186.69 27.94) (xy 186.69 30.48))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0bc1bbd9-a1a9-4b61-88a3-58c2abd28599)
)
(wire (pts (xy 186.69 46.99) (xy 186.69 49.53))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0c3a6f3e-accd-4536-9c5b-d3aa4ea4c487)
)
(wire (pts (xy 93.726 60.96) (xy 93.726 66.04))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0cfbbf50-9b1a-4ea1-aee3-985ebe3194d3)
)
(wire (pts (xy 207.772 85.725) (xy 207.772 88.265))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0d5a1920-5bdf-4ff4-9a02-b5eca742f34a)
)
(wire (pts (xy 185.547 85.725) (xy 185.547 93.345))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0d663b6c-b819-4785-978d-0b20b8342cf8)
)
(wire (pts (xy 37.465 144.145) (xy 37.465 145.415))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0ec2fcf3-b5f2-4d37-b12c-2d13862b3e81)
)
(wire (pts (xy 82.296 53.34) (xy 82.296 54.61))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0ec80a96-e509-4fd3-80a8-c34c278aa53b)
)
(wire (pts (xy 252.349 68.58) (xy 251.841 68.58))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0fd5b5c1-45c1-4b1e-9e4b-b499070b37c5)
)
(wire (pts (xy 251.079 88.265) (xy 249.428 88.265))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 104ee693-36d3-4e5e-aa12-b74a37f63fec)
)
(wire (pts (xy 186.69 66.04) (xy 186.69 68.58))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 10602065-0274-4652-a2bb-b3feffd16863)
)
(wire (pts (xy 228.854 85.725) (xy 228.854 93.345))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 109e954a-b544-41e8-aafb-964f827cfb00)
)
(wire (pts (xy 82.296 43.18) (xy 82.296 44.45))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 10a1345a-68fc-4906-9aeb-ad7cdcf89ff7)
)
(wire (pts (xy 119.761 88.265) (xy 121.412 88.265))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 10fee009-67d3-4c80-bcda-01dbdc246610)
)
(wire (pts (xy 82.296 72.39) (xy 100.711 72.39))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 115f4d6e-20ea-4bb1-bfdc-9a3337174726)
)
(wire (pts (xy 31.115 41.91) (xy 41.91 41.91))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 12012152-45ae-4628-a764-a7100ec3035c)
)
(wire (pts (xy 31.115 39.37) (xy 41.91 39.37))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 123cf753-0fc4-40d2-a57b-c5cf2e0e5763)
)
(wire (pts (xy 141.351 27.94) (xy 142.367 27.94))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 13c8520e-4867-4f68-ad51-bc581a16b57f)
)
(wire (pts (xy 33.655 78.74) (xy 33.655 80.01))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 15e3b98a-b739-47c7-8cbd-16d0380ebbd9)
)
(wire (pts (xy 187.071 72.39) (xy 208.661 72.39))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1607f1d1-3b71-455f-b460-c87d37075b76)
)
(wire (pts (xy 187.071 30.48) (xy 187.579 30.48))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1639eb85-48a6-401b-a625-613ba6d5eee1)
)
(wire (pts (xy 252.349 30.48) (xy 251.841 30.48))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 167e373d-32f9-4b90-8d41-9c04fcbae96c)
)
(wire (pts (xy 119.761 49.53) (xy 121.412 49.53))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 172348b1-c47e-4d5a-bedc-22cc56b71f20)
)
(wire (pts (xy 270.891 66.04) (xy 275.59 66.04))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 17511825-1bd5-4263-9fe0-ca3a492c17e7)
)
(wire (pts (xy 270.891 46.99) (xy 275.59 46.99))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 19243202-f324-4c18-b20b-7a00cdcab3e0)
)
(wire (pts (xy 228.854 66.04) (xy 228.854 73.66))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1b354c5b-db2e-45e2-8667-12e30fd62b63)
)
(wire (pts (xy 272.796 88.265) (xy 272.796 99.695))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1c0019e3-b4a3-481b-8280-62ec614c0bee)
)
(wire (pts (xy 251.079 27.94) (xy 251.079 30.48))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1cd2858d-be64-48b9-bc3c-6ad9c4a3b4cb)
)
(wire (pts (xy 101.219 68.58) (xy 100.711 68.58))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1d0e636e-d4e4-435d-bcd6-107204355cd6)
)
(wire (pts (xy 31.115 44.45) (xy 41.91 44.45))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1de69c49-d705-4e04-b01c-7ca1724c8fe1)
)
(wire (pts (xy 252.349 88.265) (xy 251.841 88.265))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1df2c3ba-c979-4f72-aa46-eac8df2b5616)
)
(wire (pts (xy 251.841 49.53) (xy 251.841 53.34))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1e7eb0bd-c9d9-4ed1-8fcb-3813335e653e)
)
(wire (pts (xy 252.349 27.94) (xy 251.079 27.94))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1eda2474-091a-4b3b-9a58-71a57df0aeaf)
)
(wire (pts (xy 31.115 34.29) (xy 41.91 34.29))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1f6512cb-7062-4df3-b4df-d0e087139cfc)
)
(wire (pts (xy 36.83 170.18) (xy 39.37 170.18))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 208e873e-85d4-4792-8be1-5bc8e32c8999)
)
(wire (pts (xy 227.838 68.58) (xy 229.489 68.58))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 210b905f-1696-4297-b681-b898991ff26b)
)
(wire (pts (xy 208.661 49.53) (xy 208.661 53.34))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 231c11fb-1da0-4bfc-9809-ea1ead076034)
)
(wire (pts (xy 120.777 46.99) (xy 120.777 54.61))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 23e190fb-4e45-48b8-a2a5-917bd5a60a71)
)
(wire (pts (xy 120.777 104.775) (xy 120.777 112.395))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 23fe875a-972d-4498-804f-2e8bba2bf5f9)
)
(wire (pts (xy 252.349 49.53) (xy 251.841 49.53))
(stroke (width 0) (type default) (color 0 0 0 0))