-
Notifications
You must be signed in to change notification settings - Fork 0
/
spi-flash-breakout.kicad_sch
1354 lines (1310 loc) · 51.4 KB
/
spi-flash-breakout.kicad_sch
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
(kicad_sch (version 20211123) (generator eeschema)
(uuid b85f6e7e-d792-496c-ad82-28250aee6108)
(paper "A4")
(title_block
(title "SPI Flash Breakout")
(date "2022-04-03")
(rev "A")
(company "Michal Potrzebicz")
)
(lib_symbols
(symbol "Connector_Generic:Conn_01x04" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
(property "Reference" "J" (id 0) (at 0 5.08 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "Conn_01x04" (id 1) (at 0 -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, single row, 01x04, 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*:*_1x??_*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "Conn_01x04_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 3.81) (end 1.27 -6.35)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type background))
)
(pin passive line (at -5.08 2.54 0) (length 3.81)
(name "Pin_1" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 0 0) (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 -5.08 -5.08 0) (length 3.81)
(name "Pin_4" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Connector_Generic:Conn_02x04_Odd_Even" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
(property "Reference" "J" (id 0) (at 1.27 5.08 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "Conn_02x04_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, 02x04, 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_02x04_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 3.81) (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))
)
(pin passive line (at -5.08 2.54 0) (length 3.81)
(name "Pin_1" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 7.62 2.54 180) (length 3.81)
(name "Pin_2" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 0 0) (length 3.81)
(name "Pin_3" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 7.62 0 180) (length 3.81)
(name "Pin_4" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 -2.54 0) (length 3.81)
(name "Pin_5" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 7.62 -2.54 180) (length 3.81)
(name "Pin_6" (effects (font (size 1.27 1.27))))
(number "6" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 -5.08 0) (length 3.81)
(name "Pin_7" (effects (font (size 1.27 1.27))))
(number "7" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 7.62 -5.08 180) (length 3.81)
(name "Pin_8" (effects (font (size 1.27 1.27))))
(number "8" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Device: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: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 "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))
)
)
)
(symbol "power:VCC" (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" "VCC" (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 \"VCC\"" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "VCC_0_1"
(polyline
(pts
(xy -0.762 1.27)
(xy 0 2.54)
)
(stroke (width 0) (type default) (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 "VCC_1_1"
(pin power_in line (at 0 0 90) (length 0) hide
(name "VCC" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
)
(junction (at 132.08 87.63) (diameter 0) (color 0 0 0 0)
(uuid 09e5a236-39af-419c-ad15-3a94a799c793)
)
(junction (at 69.85 97.79) (diameter 0) (color 0 0 0 0)
(uuid 2be2817e-203e-4bca-950c-4cde4d9608bb)
)
(junction (at 114.3 87.63) (diameter 0) (color 0 0 0 0)
(uuid 2c80fb3a-0990-4332-b80d-5e5a74625151)
)
(junction (at 132.08 110.49) (diameter 0) (color 0 0 0 0)
(uuid 36d23c76-3e03-449c-a9a0-1a759975a5e6)
)
(junction (at 140.97 113.03) (diameter 0) (color 0 0 0 0)
(uuid 83644e3d-27d1-439b-823a-fc7ac6b9a7a7)
)
(junction (at 99.06 105.41) (diameter 0) (color 0 0 0 0)
(uuid 995d81bc-5551-4afe-b046-d33477589249)
)
(junction (at 69.85 87.63) (diameter 0) (color 0 0 0 0)
(uuid a126c83e-63c5-4afa-a20d-908d6ad91d71)
)
(junction (at 82.55 87.63) (diameter 0) (color 0 0 0 0)
(uuid c8c30e0a-7c88-4d04-b638-1e2ca9fbdea8)
)
(junction (at 99.06 87.63) (diameter 0) (color 0 0 0 0)
(uuid d55a1b2c-622b-47de-9976-350c51dbccd6)
)
(no_connect (at 215.9 135.89) (uuid 56adcc63-9ab3-430c-84e5-f8d14cbeed5a))
(no_connect (at 203.2 135.89) (uuid c1c3fba9-8509-48d0-8ca8-5c9f00dd1b6b))
(wire (pts (xy 140.97 113.03) (xy 140.97 96.52))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0febf67e-5f32-4144-b561-aa34e8ff8ff6)
)
(wire (pts (xy 99.06 105.41) (xy 99.06 96.52))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 13252ee7-2b70-4d90-a70c-0654aeb703d2)
)
(wire (pts (xy 140.97 88.9) (xy 140.97 87.63))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1460489b-8b5f-418d-9774-df0d764bc56a)
)
(wire (pts (xy 82.55 87.63) (xy 99.06 87.63))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 14c29d36-5eba-4ba7-954f-69d94744ad26)
)
(wire (pts (xy 101.6 110.49) (xy 91.44 110.49))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1877ca6c-b7ad-4681-acd8-0f86d893ad31)
)
(wire (pts (xy 114.3 118.11) (xy 114.3 124.46))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 19238b4d-4e57-4d62-bf2f-76f9d8bb3793)
)
(polyline (pts (xy 241.3 160.02) (xy 177.8 160.02))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1caa9588-be35-475c-ab82-6c4659b951a9)
)
(wire (pts (xy 132.08 115.57) (xy 132.08 110.49))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1ebf52bb-51c9-4251-bfbe-c67d3ebf277d)
)
(wire (pts (xy 67.31 97.79) (xy 69.85 97.79))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1ecc4c89-2823-47c6-98e1-585933d2cc77)
)
(polyline (pts (xy 177.8 114.3) (xy 241.3 114.3))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1fd8b20e-2298-4592-8f50-b22a7b20222b)
)
(wire (pts (xy 127 105.41) (xy 149.86 105.41))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 230aca2e-6737-4dfd-993d-b4081570d690)
)
(wire (pts (xy 231.14 133.35) (xy 237.49 133.35))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 25989799-6496-4c2a-9f86-f0e1e0916e63)
)
(wire (pts (xy 69.85 87.63) (xy 82.55 87.63))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2ad00657-797d-4e6e-9455-c4321b40efdc)
)
(wire (pts (xy 69.85 97.79) (xy 69.85 99.06))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2de8c8fb-411f-437b-8833-177267802743)
)
(wire (pts (xy 191.77 81.28) (xy 184.15 81.28))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2f7c9762-6e55-4265-8367-151e454030a6)
)
(wire (pts (xy 231.14 130.81) (xy 237.49 130.81))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 31761123-9181-44a0-8c71-61809245c52d)
)
(polyline (pts (xy 241.3 114.3) (xy 241.3 160.02))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 321f6acf-4020-4df2-bb20-702684fc7aee)
)
(wire (pts (xy 191.77 83.82) (xy 190.5 83.82))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 32c4615e-e9c0-468b-840b-4cccdd1a52a1)
)
(polyline (pts (xy 241.3 96.52) (xy 177.8 96.52))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 339e7fa0-b2c4-4916-b8ef-b28d78820ffd)
)
(wire (pts (xy 140.97 87.63) (xy 132.08 87.63))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 36215f5a-f38c-4996-ad88-227611aa5491)
)
(wire (pts (xy 132.08 88.9) (xy 132.08 87.63))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3bf82ecb-0898-4a14-bef0-d88c4f838b87)
)
(wire (pts (xy 191.77 133.35) (xy 185.42 133.35))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3f2d5c26-c8e8-47f1-b42b-2ef5c121ba91)
)
(wire (pts (xy 101.6 105.41) (xy 99.06 105.41))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 415f8cbf-1543-4dea-9365-14a5706895b5)
)
(wire (pts (xy 132.08 110.49) (xy 132.08 96.52))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 469a55b6-66c0-4d83-b671-5c047ca7bf04)
)
(polyline (pts (xy 177.8 96.52) (xy 177.8 63.5))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4a66f376-93db-4446-a247-0e3535d8495b)
)
(wire (pts (xy 201.93 128.27) (xy 201.93 127))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4a97ef00-74c7-48f8-bbb9-45cb38bbebfc)
)
(wire (pts (xy 219.71 78.74) (xy 213.36 78.74))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4af9fdc7-f3ff-4465-8683-c73ebb294a0a)
)
(wire (pts (xy 219.71 81.28) (xy 213.36 81.28))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4b4eac9f-27c5-44c4-b95c-6f191ec0b447)
)
(wire (pts (xy 127 113.03) (xy 140.97 113.03))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 573d575c-17ea-4825-9928-a33c4415d1e6)
)
(wire (pts (xy 114.3 87.63) (xy 114.3 97.79))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5bf5e658-02dc-4878-be4a-4080a49014d6)
)
(wire (pts (xy 69.85 88.9) (xy 69.85 87.63))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5c9bbccf-ed21-4456-bdbf-6fe8b2b79c00)
)
(wire (pts (xy 127 102.87) (xy 149.86 102.87))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5e813023-f164-4a19-bc58-3eafdf40bdee)
)
(wire (pts (xy 127 110.49) (xy 132.08 110.49))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5f90097f-80ce-43b5-84c6-9249f1d8b40b)
)
(wire (pts (xy 67.31 87.63) (xy 69.85 87.63))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 618b0020-6276-482e-8861-11c88b77e402)
)
(wire (pts (xy 132.08 87.63) (xy 114.3 87.63))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 61e1b904-8021-473d-a121-5b981dbe8bee)
)
(wire (pts (xy 132.08 123.19) (xy 132.08 124.46))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 64e581cd-f342-4b6e-b66c-b33c2b9550f7)
)
(wire (pts (xy 191.77 78.74) (xy 184.15 78.74))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 67fe2e9d-ca14-4b81-8966-874b293a14cd)
)
(wire (pts (xy 99.06 87.63) (xy 114.3 87.63))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 7076bd80-b559-4624-a298-c38500db90fb)
)
(wire (pts (xy 203.2 128.27) (xy 201.93 128.27))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 81ffad0a-f494-41a6-bbf2-335092014d71)
)
(polyline (pts (xy 177.8 63.5) (xy 241.3 63.5))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 896a131c-ff27-4c70-bfeb-81d287a0318e)
)
(wire (pts (xy 199.39 133.35) (xy 203.2 133.35))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 901db633-6cd2-4486-a435-c664d9afe4ce)
)
(wire (pts (xy 82.55 96.52) (xy 82.55 99.06))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 93fe6e52-2736-4706-a9c2-bc6359e96ac2)
)
(wire (pts (xy 215.9 133.35) (xy 223.52 133.35))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 96b58b7d-7114-4de2-be51-4b4186c5cbe3)
)
(wire (pts (xy 191.77 130.81) (xy 185.42 130.81))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 9867a058-355f-421a-821f-ce2cc045a62b)
)
(wire (pts (xy 219.71 76.2) (xy 218.44 76.2))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a48d595b-d3a6-4d70-9b1d-4731d8b8b407)
)
(wire (pts (xy 140.97 113.03) (xy 149.86 113.03))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a873631d-6fb8-495a-8fde-b6ba4ee57fe9)
)
(wire (pts (xy 215.9 130.81) (xy 223.52 130.81))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid ab28fe50-8613-4cca-af6b-21a97c9b7827)
)
(wire (pts (xy 199.39 130.81) (xy 203.2 130.81))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid ac732da3-cf72-4e46-97e1-87e3c79db8c0)
)
(wire (pts (xy 82.55 88.9) (xy 82.55 87.63))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid acdf2bae-82d9-4fe8-a511-026d1bb283b5)
)
(wire (pts (xy 191.77 76.2) (xy 184.15 76.2))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b2be8508-b166-45d2-a26a-a573dd6bb292)
)
(wire (pts (xy 99.06 88.9) (xy 99.06 87.63))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c2a453fc-09f5-4fb8-9cec-a4ec59096adb)
)
(wire (pts (xy 69.85 85.09) (xy 69.85 87.63))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c2ace39f-0a27-4c25-8150-aef1657a15c3)
)
(wire (pts (xy 219.71 83.82) (xy 213.36 83.82))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid d7cc9b46-c215-4449-acc4-06f853e76326)
)
(polyline (pts (xy 177.8 160.02) (xy 177.8 114.3))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid d873b872-9a03-4cc9-b5be-869bca30656a)
)
(wire (pts (xy 215.9 128.27) (xy 218.44 128.27))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid dea1c5fc-f346-4c20-9efd-c077b89b1c14)
)
(wire (pts (xy 69.85 96.52) (xy 69.85 97.79))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid e7aa4c3e-f94b-40e5-ba02-d0c69155ee68)
)
(wire (pts (xy 218.44 76.2) (xy 218.44 74.93))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid f032aeb0-fe1e-4ec7-aaee-3337c673594b)
)
(wire (pts (xy 132.08 110.49) (xy 149.86 110.49))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid f380980f-80e9-4fe6-a486-6feb2904a0eb)
)
(polyline (pts (xy 241.3 63.5) (xy 241.3 96.52))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid f38fa778-16be-43df-b7b2-c3b27aeabba6)
)
(wire (pts (xy 190.5 83.82) (xy 190.5 85.09))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid f9e307e6-3dd1-4610-83f2-b27e78ef584c)
)
(wire (pts (xy 99.06 105.41) (xy 91.44 105.41))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid fa9aa5e4-b61f-4a04-b576-5b06f9fd3c52)
)
(wire (pts (xy 218.44 128.27) (xy 218.44 138.43))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid fd369f2a-2c0e-4ed7-9b1c-acc5938c6035)
)
(text "U1 can be replaced with any\npin-compatible SPI Flash chip\ndepending on the desired VCC,\ncapacity and max. SPI clock"
(at 78.74 129.54 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 04d52b21-2339-427c-ae8b-0427a165b87a)
)
(text "VCC: 1.8V or 3.3V - depending on the Flash chip" (at 76.2 86.36 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 678eb142-af35-4439-af11-51bd1b3f47da)
)
(text "1 - VCC\n2 - GND\n3 - ~{CS\n4} - SCLK\n5 - MISO\n6 - MOSI\n7,8 - Not connected "
(at 185.42 156.21 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid a6963c3b-3e86-43c7-a283-004ae7f206c2)
)
(text "Test connectors" (at 179.07 66.04 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid a7b482f9-0e57-4ff3-b705-a0826bd09e4d)
)
(text "Programming connector" (at 179.07 116.84 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid f92d8966-65be-4719-80c1-621ea5809c02)
)
(label "SCLK" (at 91.44 110.49 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 17643c9e-ea69-4ff9-af8f-baa87867ba99)
)
(label "MOSI" (at 237.49 133.35 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 40504e79-6ab9-4c17-af2d-fbe5d71a56e8)
)
(label "~{CS}" (at 185.42 130.81 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 428b05ed-5f10-458e-9de1-43e8dfd6af39)
)
(label "MOSI" (at 213.36 83.82 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 43a32344-4035-41ae-bf5f-3d3a6c9684a9)
)
(label "~{WP}" (at 184.15 81.28 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 4eda017e-44ca-447d-9bec-4fefbfd27b3f)
)
(label "MISO" (at 184.15 78.74 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 58ad77ee-0ed7-406d-805f-62fccea0883c)
)
(label "MISO" (at 185.42 133.35 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 6d88c462-5ae1-4cb5-9e38-5a159eab54b0)
)
(label "~{CS}" (at 91.44 105.41 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 7ed6c2d6-8ca0-49fd-b163-e8728f903858)
)
(label "MISO" (at 149.86 105.41 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 83e909e3-5415-43cd-b32f-1ee7481afe37)
)
(label "~{CS}" (at 184.15 76.2 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 8e54bb9f-bf46-4152-a1a4-f478ea9ffd67)
)
(label "SCLK" (at 237.49 130.81 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 8f0acc0b-79d0-40ea-8948-88ef2556d35c)
)
(label "~{WP}" (at 149.86 110.49 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 92cb044d-0d05-4bb8-9560-1ba1b1cb2197)
)
(label "~{HOLD}" (at 213.36 78.74 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid cf794e69-a61b-4d23-9c0b-f8bf9a0e96d3)
)
(label "SCLK" (at 213.36 81.28 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid e1b819be-4581-4053-813c-35068e6eaaab)
)
(label "~{HOLD}" (at 149.86 113.03 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid ee600682-4583-4a9f-aa8e-f8dcbce7057d)
)
(label "MOSI" (at 149.86 102.87 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid f2b6e32b-edf2-4804-861b-99e72f72470c)
)
(symbol (lib_id "Memory_Flash:W25Q128JVS") (at 114.3 107.95 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-00005f96ea3e)
(property "Reference" "U1" (id 0) (at 105.41 99.06 0))
(property "Value" "MX25U12835FM2I-10G" (id 1) (at 100.33 116.84 0))
(property "Footprint" "Package_SO:SOIC-8_5.23x5.23mm_P1.27mm" (id 2) (at 114.3 107.95 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 114.3 107.95 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 4eafb906-9252-4b54-9f89-b8e9536a4eb3))
(pin "2" (uuid f7b6012b-247d-47f2-9282-60f2c74f6410))
(pin "3" (uuid 1469aa91-f31a-4152-866d-38ff8448b18b))
(pin "4" (uuid a90ea4ee-84d5-43ab-b229-d1b1cc2731af))
(pin "5" (uuid 43fce5c3-c7a5-4811-9637-3d3ebd646e25))
(pin "6" (uuid 5d641701-ae71-47e2-b2b5-1195fb39dac2))
(pin "7" (uuid c04a157c-b2cc-401d-a361-08484aea24c3))
(pin "8" (uuid 511f1f51-9702-4fca-9690-7d999766aea8))
)
(symbol (lib_id "Connector_Generic:Conn_02x04_Odd_Even") (at 208.28 130.81 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-00005f96fd54)
(property "Reference" "J1" (id 0) (at 209.55 122.7582 0))
(property "Value" "Prog" (id 1) (at 209.55 125.0696 0))
(property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_2x04_P2.54mm_Vertical" (id 2) (at 208.28 130.81 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 208.28 130.81 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 6991a980-01b5-4b07-b4ba-4e70322165c8))
(pin "2" (uuid c07bb8a6-640a-45e3-96a8-3366846ed9af))
(pin "3" (uuid 12b3f282-b27e-422d-8573-a75c93f7618d))
(pin "4" (uuid b7c041e1-69c5-4d56-b9ca-5cb67a769ad6))
(pin "5" (uuid 96066fe1-f77b-478d-9b2d-0f1adc727f12))
(pin "6" (uuid 55e99059-583f-485b-acc8-d5fbdc2a3bc7))
(pin "7" (uuid a5b6c33a-094a-4574-9b54-fc0d49089789))
(pin "8" (uuid 93eb3c54-ebb6-4d69-9073-1bb852b8c0a3))
)
(symbol (lib_id "Device:C") (at 69.85 92.71 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-00005f9733b1)
(property "Reference" "C1" (id 0) (at 72.771 91.5416 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "1u" (id 1) (at 72.771 93.853 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 70.8152 96.52 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 69.85 92.71 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid ccd8375e-4514-4085-b073-9091b5b7d131))
(pin "2" (uuid 7981c0ba-a5a0-4ab9-a2ee-681c264b45da))
)
(symbol (lib_id "Device:C") (at 82.55 92.71 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-00005f973bf8)
(property "Reference" "C2" (id 0) (at 85.471 91.5416 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "100n" (id 1) (at 85.471 93.853 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 83.5152 96.52 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 82.55 92.71 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid db5d3932-5676-4615-9a50-177565f4e30b))
(pin "2" (uuid d8c2dc71-e590-43c1-87e2-f061faeb29ba))
)
(symbol (lib_id "power:GND") (at 82.55 99.06 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-00005f97401d)
(property "Reference" "#PWR03" (id 0) (at 82.55 105.41 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (id 1) (at 82.677 103.4542 0))
(property "Footprint" "" (id 2) (at 82.55 99.06 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 82.55 99.06 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid ae6dcadc-bdd4-42d8-ba10-0e24e6048400))
)
(symbol (lib_id "power:GND") (at 114.3 124.46 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-00005f979b19)
(property "Reference" "#PWR05" (id 0) (at 114.3 130.81 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (id 1) (at 114.427 128.8542 0))
(property "Footprint" "" (id 2) (at 114.3 124.46 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 114.3 124.46 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid f97e22f8-fe4d-45c7-8a25-fe7ddb6ef872))
)
(symbol (lib_id "power:VCC") (at 69.85 85.09 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-00005f97df97)
(property "Reference" "#PWR01" (id 0) (at 69.85 88.9 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "VCC" (id 1) (at 70.231 80.6958 0))
(property "Footprint" "" (id 2) (at 69.85 85.09 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 69.85 85.09 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 8b894d8f-cd92-4721-a3e0-b8fe1b3e67e4))
)
(symbol (lib_id "power:GND") (at 69.85 99.06 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-00005f97f339)
(property "Reference" "#PWR02" (id 0) (at 69.85 105.41 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (id 1) (at 69.977 103.4542 0))
(property "Footprint" "" (id 2) (at 69.85 99.06 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 69.85 99.06 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 73a1f466-eda1-4a24-9138-143adb38dd98))
)
(symbol (lib_id "power:VCC") (at 201.93 127 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-00005f9816c2)
(property "Reference" "#PWR04" (id 0) (at 201.93 130.81 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "VCC" (id 1) (at 202.311 122.6058 0))
(property "Footprint" "" (id 2) (at 201.93 127 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 201.93 127 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 16175764-9ddc-43d3-99d5-2860b2274e3c))
)
(symbol (lib_id "power:GND") (at 218.44 138.43 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-00005f9822fb)
(property "Reference" "#PWR06" (id 0) (at 218.44 144.78 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (id 1) (at 218.567 142.8242 0))
(property "Footprint" "" (id 2) (at 218.44 138.43 0)
(effects (font (size 1.27 1.27)) hide)