-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathSensors & Peripherals.kicad_sch
2420 lines (2360 loc) · 98.6 KB
/
Sensors & Peripherals.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 ec501d33-cdfc-4bc7-bc80-d08a85a4dfdc)
(paper "A4")
(lib_symbols
(symbol "BMP388:BMP388" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
(property "Reference" "U?" (id 0) (at 0 20.828 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "BMP388" (id 1) (at 0 18.288 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "PQFN50P200X200X80-10N" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) (justify bottom) hide)
)
(property "Datasheet" "" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "PARTREV" "1.1" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) (justify bottom) hide)
)
(property "STANDARD" "IPC 7351B" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) (justify bottom) hide)
)
(property "MANUFACTURER" "BOSCH" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) (justify bottom) hide)
)
(symbol "BMP388_0_0"
(rectangle (start -7.62 -12.7) (end 7.62 15.24)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type background))
)
(pin power_in line (at 12.7 10.16 180) (length 5.08)
(name "VDDIO" (effects (font (size 1.016 1.016))))
(number "1" (effects (font (size 1.016 1.016))))
)
(pin power_in line (at 12.7 12.7 180) (length 5.08)
(name "VDD" (effects (font (size 1.016 1.016))))
(number "10" (effects (font (size 1.016 1.016))))
)
(pin input clock (at -12.7 2.54 0) (length 5.08)
(name "SCK" (effects (font (size 1.016 1.016))))
(number "2" (effects (font (size 1.016 1.016))))
)
(pin power_in line (at 12.7 -6.096 180) (length 5.08)
(name "VSS" (effects (font (size 1.016 1.016))))
(number "3" (effects (font (size 1.016 1.016))))
)
(pin bidirectional line (at -12.7 -2.54 0) (length 5.08)
(name "SDI" (effects (font (size 1.016 1.016))))
(number "4" (effects (font (size 1.016 1.016))))
)
(pin bidirectional line (at -12.7 -5.08 0) (length 5.08)
(name "SDO" (effects (font (size 1.016 1.016))))
(number "5" (effects (font (size 1.016 1.016))))
)
(pin input line (at -12.7 5.08 0) (length 5.08)
(name "CSB" (effects (font (size 1.016 1.016))))
(number "6" (effects (font (size 1.016 1.016))))
)
(pin output line (at 12.7 5.08 180) (length 5.08)
(name "INT" (effects (font (size 1.016 1.016))))
(number "7" (effects (font (size 1.016 1.016))))
)
(pin power_in line (at 12.7 -8.128 180) (length 5.08)
(name "VSS" (effects (font (size 1.016 1.016))))
(number "8" (effects (font (size 1.016 1.016))))
)
(pin power_in line (at 12.7 -10.16 180) (length 5.08)
(name "VSS" (effects (font (size 1.016 1.016))))
(number "9" (effects (font (size 1.016 1.016))))
)
)
)
(symbol "Device:C_Small" (pin_numbers hide) (pin_names (offset 0.254) hide) (in_bom yes) (on_board yes)
(property "Reference" "C" (id 0) (at 0.254 1.778 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "C_Small" (id 1) (at 0.254 -2.032 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(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" "capacitor cap" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Unpolarized capacitor, small symbol" (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_Small_0_1"
(polyline
(pts
(xy -1.524 -0.508)
(xy 1.524 -0.508)
)
(stroke (width 0.3302) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -1.524 0.508)
(xy 1.524 0.508)
)
(stroke (width 0.3048) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "C_Small_1_1"
(pin passive line (at 0 2.54 270) (length 2.032)
(name "~" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -2.54 90) (length 2.032)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Device:Crystal_GND24" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
(property "Reference" "Y" (id 0) (at 3.175 5.08 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "Crystal_GND24" (id 1) (at 3.175 3.175 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(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" "quartz ceramic resonator oscillator" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Four pin crystal, GND on pins 2 and 4" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "Crystal*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "Crystal_GND24_0_1"
(rectangle (start -1.143 2.54) (end 1.143 -2.54)
(stroke (width 0.3048) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -2.54 0)
(xy -2.032 0)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -2.032 -1.27)
(xy -2.032 1.27)
)
(stroke (width 0.508) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 -3.81)
(xy 0 -3.556)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 3.556)
(xy 0 3.81)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 2.032 -1.27)
(xy 2.032 1.27)
)
(stroke (width 0.508) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 2.032 0)
(xy 2.54 0)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -2.54 -2.286)
(xy -2.54 -3.556)
(xy 2.54 -3.556)
(xy 2.54 -2.286)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -2.54 2.286)
(xy -2.54 3.556)
(xy 2.54 3.556)
(xy 2.54 2.286)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "Crystal_GND24_1_1"
(pin passive line (at -3.81 0 0) (length 1.27)
(name "1" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 5.08 270) (length 1.27)
(name "2" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 3.81 0 180) (length 1.27)
(name "3" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -5.08 90) (length 1.27)
(name "4" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Device:R_Small_US" (pin_numbers hide) (pin_names (offset 0.254) hide) (in_bom yes) (on_board yes)
(property "Reference" "R" (id 0) (at 0.762 0.508 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "R_Small_US" (id 1) (at 0.762 -1.016 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(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" "r resistor" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Resistor, small US symbol" (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_Small_US_1_1"
(polyline
(pts
(xy 0 0)
(xy 1.016 -0.381)
(xy 0 -0.762)
(xy -1.016 -1.143)
(xy 0 -1.524)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 1.524)
(xy 1.016 1.143)
(xy 0 0.762)
(xy -1.016 0.381)
(xy 0 0)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(pin passive line (at 0 2.54 270) (length 1.016)
(name "~" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -2.54 90) (length 1.016)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "ICM-42688-P:ICM-42688-P" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
(property "Reference" "U" (id 0) (at -20.32 16.002 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
)
(property "Value" "ICM-42688-P" (id 1) (at -20.32 -20.32 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
)
(property "Footprint" "PQFN50P300X250X97-14N" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) (justify bottom) hide)
)
(property "Datasheet" "" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "PARTREV" "1.2" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) (justify bottom) hide)
)
(property "STANDARD" "IPC-7351B" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) (justify bottom) hide)
)
(property "MAXIMUM_PACKAGE_HEIGHT" "0.97mm" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) (justify bottom) hide)
)
(property "MANUFACTURER" "TDK InvenSense" (id 7) (at 0 0 0)
(effects (font (size 1.27 1.27)) (justify bottom) hide)
)
(symbol "ICM-42688-P_0_0"
(rectangle (start -20.32 -17.78) (end 20.32 15.24)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type background))
)
(pin bidirectional line (at -25.4 -7.62 0) (length 5.08)
(name "AP_SDO/AP_AD0" (effects (font (size 1.016 1.016))))
(number "1" (effects (font (size 1.016 1.016))))
)
(pin passive line (at 25.4 -5.08 180) (length 5.08)
(name "RESV_10" (effects (font (size 1.016 1.016))))
(number "10" (effects (font (size 1.016 1.016))))
)
(pin passive line (at 25.4 -7.62 180) (length 5.08)
(name "RESV_11" (effects (font (size 1.016 1.016))))
(number "11" (effects (font (size 1.016 1.016))))
)
(pin input line (at -25.4 0 0) (length 5.08)
(name "AP_CS" (effects (font (size 1.016 1.016))))
(number "12" (effects (font (size 1.016 1.016))))
)
(pin input clock (at -25.4 -2.54 0) (length 5.08)
(name "AP_SCL/AP_SCLK" (effects (font (size 1.016 1.016))))
(number "13" (effects (font (size 1.016 1.016))))
)
(pin bidirectional line (at -25.4 -5.08 0) (length 5.08)
(name "AP_SDA/AP_SDIO/AP_SDI" (effects (font (size 1.016 1.016))))
(number "14" (effects (font (size 1.016 1.016))))
)
(pin passive line (at 25.4 0 180) (length 5.08)
(name "RESV_2" (effects (font (size 1.016 1.016))))
(number "2" (effects (font (size 1.016 1.016))))
)
(pin passive line (at 25.4 -2.54 180) (length 5.08)
(name "RESV_3" (effects (font (size 1.016 1.016))))
(number "3" (effects (font (size 1.016 1.016))))
)
(pin output line (at 25.4 5.08 180) (length 5.08)
(name "INT1/INT" (effects (font (size 1.016 1.016))))
(number "4" (effects (font (size 1.016 1.016))))
)
(pin power_in line (at 25.4 10.16 180) (length 5.08)
(name "VDDIO" (effects (font (size 1.016 1.016))))
(number "5" (effects (font (size 1.016 1.016))))
)
(pin power_in line (at 25.4 -15.24 180) (length 5.08)
(name "GND" (effects (font (size 1.016 1.016))))
(number "6" (effects (font (size 1.016 1.016))))
)
(pin passive line (at 25.4 -10.16 180) (length 5.08)
(name "RESV_7" (effects (font (size 1.016 1.016))))
(number "7" (effects (font (size 1.016 1.016))))
)
(pin power_in line (at 25.4 12.7 180) (length 5.08)
(name "VDD" (effects (font (size 1.016 1.016))))
(number "8" (effects (font (size 1.016 1.016))))
)
(pin bidirectional line (at -25.4 5.08 0) (length 5.08)
(name "INT2/FSYNC/CLKIN" (effects (font (size 1.016 1.016))))
(number "9" (effects (font (size 1.016 1.016))))
)
)
)
(symbol "MAX7456EUI_:MAX7456EUI+" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
(property "Reference" "U?" (id 0) (at 0.0245 28.702 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "AT7456E" (id 1) (at 0.0245 26.162 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "SOP65P637X110-28N" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) (justify bottom) hide)
)
(property "Datasheet" "" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "MAX7456EUI+_0_0"
(rectangle (start -12.7 -22.86) (end 12.7 22.86)
(stroke (width 0.41) (type default) (color 0 0 0 0))
(fill (type background))
)
(pin input clock (at -17.78 -2.54 0) (length 5.08)
(name "SCLK" (effects (font (size 1.016 1.016))))
(number "10" (effects (font (size 1.016 1.016))))
)
(pin output line (at 17.78 -2.54 180) (length 5.08)
(name "SDOUT" (effects (font (size 1.016 1.016))))
(number "11" (effects (font (size 1.016 1.016))))
)
(pin output line (at 17.78 0 180) (length 5.08)
(name "LOS" (effects (font (size 1.016 1.016))))
(number "12" (effects (font (size 1.016 1.016))))
)
(pin output line (at 17.78 5.08 180) (length 5.08)
(name "~{VSYNC}" (effects (font (size 1.016 1.016))))
(number "17" (effects (font (size 1.016 1.016))))
)
(pin output line (at 17.78 7.62 180) (length 5.08)
(name "~{HSYNC}" (effects (font (size 1.016 1.016))))
(number "18" (effects (font (size 1.016 1.016))))
)
(pin input line (at -17.78 5.08 0) (length 5.08)
(name "~{RESET}" (effects (font (size 1.016 1.016))))
(number "19" (effects (font (size 1.016 1.016))))
)
(pin power_in line (at 17.78 -12.7 180) (length 5.08)
(name "AGND" (effects (font (size 1.016 1.016))))
(number "20" (effects (font (size 1.016 1.016))))
)
(pin power_in line (at 17.78 17.78 180) (length 5.08)
(name "AVDD" (effects (font (size 1.016 1.016))))
(number "21" (effects (font (size 1.016 1.016))))
)
(pin input line (at -17.78 -7.62 0) (length 5.08)
(name "VIN" (effects (font (size 1.016 1.016))))
(number "22" (effects (font (size 1.016 1.016))))
)
(pin power_in line (at 17.78 -17.78 180) (length 5.08)
(name "PGND" (effects (font (size 1.016 1.016))))
(number "23" (effects (font (size 1.016 1.016))))
)
(pin power_in line (at 17.78 12.7 180) (length 5.08)
(name "PVDD" (effects (font (size 1.016 1.016))))
(number "24" (effects (font (size 1.016 1.016))))
)
(pin input line (at 17.78 -7.62 180) (length 5.08)
(name "SAG" (effects (font (size 1.016 1.016))))
(number "25" (effects (font (size 1.016 1.016))))
)
(pin output line (at 17.78 -5.08 180) (length 5.08)
(name "VOUT" (effects (font (size 1.016 1.016))))
(number "26" (effects (font (size 1.016 1.016))))
)
(pin power_in line (at 17.78 -20.32 180) (length 5.08)
(name "EP" (effects (font (size 1.016 1.016))))
(number "29" (effects (font (size 1.016 1.016))))
)
(pin power_in line (at 17.78 15.24 180) (length 5.08)
(name "DVDD" (effects (font (size 1.016 1.016))))
(number "3" (effects (font (size 1.016 1.016))))
)
(pin power_in line (at 17.78 -15.24 180) (length 5.08)
(name "DGND" (effects (font (size 1.016 1.016))))
(number "4" (effects (font (size 1.016 1.016))))
)
(pin input clock (at -17.78 2.54 0) (length 5.08)
(name "CLKIN" (effects (font (size 1.016 1.016))))
(number "5" (effects (font (size 1.016 1.016))))
)
(pin output line (at -17.78 0 0) (length 5.08)
(name "XFB" (effects (font (size 1.016 1.016))))
(number "6" (effects (font (size 1.016 1.016))))
)
(pin output clock (at 17.78 2.54 180) (length 5.08)
(name "CLKOUT" (effects (font (size 1.016 1.016))))
(number "7" (effects (font (size 1.016 1.016))))
)
(pin input line (at -17.78 7.62 0) (length 5.08)
(name "~{CS}" (effects (font (size 1.016 1.016))))
(number "8" (effects (font (size 1.016 1.016))))
)
(pin input line (at -17.78 -5.08 0) (length 5.08)
(name "SDIN" (effects (font (size 1.016 1.016))))
(number "9" (effects (font (size 1.016 1.016))))
)
)
)
(symbol "W25Q256JVEIQ:W25Q256JVEIQ" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
(property "Reference" "U?" (id 0) (at 0 27.686 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "W25Q256JVEIQ" (id 1) (at 0 25.146 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "W25Q256JVEIQ:SON127P600X800X80-9N" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) (justify bottom) hide)
)
(property "Datasheet" "" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Manufacturer" "Winbond Electronics" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) (justify bottom) hide)
)
(property "Package" "SON127P600X800X80-9N" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) (justify bottom) hide)
)
(symbol "W25Q256JVEIQ_0_0"
(rectangle (start -12.7 -22.86) (end 12.7 22.86)
(stroke (width 0.41) (type default) (color 0 0 0 0))
(fill (type background))
)
(pin bidirectional line (at -17.78 10.16 0) (length 5.08)
(name "CS" (effects (font (size 1.016 1.016))))
(number "1" (effects (font (size 1.016 1.016))))
)
(pin bidirectional line (at -17.78 0 0) (length 5.08)
(name "DO/IO1" (effects (font (size 1.016 1.016))))
(number "2" (effects (font (size 1.016 1.016))))
)
(pin bidirectional line (at -17.78 -15.24 0) (length 5.08)
(name "WP/IO2" (effects (font (size 1.016 1.016))))
(number "3" (effects (font (size 1.016 1.016))))
)
(pin power_in line (at 17.78 -20.32 180) (length 5.08)
(name "GND" (effects (font (size 1.016 1.016))))
(number "4" (effects (font (size 1.016 1.016))))
)
(pin bidirectional line (at -17.78 5.08 0) (length 5.08)
(name "DI/IO0" (effects (font (size 1.016 1.016))))
(number "5" (effects (font (size 1.016 1.016))))
)
(pin input clock (at -17.78 15.24 0) (length 5.08)
(name "CLOCK" (effects (font (size 1.016 1.016))))
(number "6" (effects (font (size 1.016 1.016))))
)
(pin bidirectional line (at -17.78 -10.16 0) (length 5.08)
(name "HOLD/IO3" (effects (font (size 1.016 1.016))))
(number "7" (effects (font (size 1.016 1.016))))
)
(pin power_in line (at 17.78 20.32 180) (length 5.08)
(name "VCC" (effects (font (size 1.016 1.016))))
(number "8" (effects (font (size 1.016 1.016))))
)
(pin bidirectional line (at 17.78 -16.764 180) (length 5.08)
(name "EP" (effects (font (size 1.016 1.016))))
(number "9" (effects (font (size 1.016 1.016))))
)
)
)
(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))))
)
)
)
)
(junction (at 94.488 72.39) (diameter 0) (color 0 0 0 0)
(uuid 14d9133f-7dd0-4ebf-9caa-ba5c4d40bf6c)
)
(junction (at 211.074 145.796) (diameter 0) (color 0 0 0 0)
(uuid 22256d37-df03-4669-ba04-744fa05329b2)
)
(junction (at 114.3 120.396) (diameter 0) (color 0 0 0 0)
(uuid 3c707aed-ad86-4c49-903e-b095f11de225)
)
(junction (at 216.408 118.872) (diameter 0) (color 0 0 0 0)
(uuid 5a8b5082-f2c9-41dd-9f95-e650f169414a)
)
(junction (at 119.38 114.3) (diameter 0) (color 0 0 0 0)
(uuid 60030c27-112d-4ee2-bff7-e0cffe0b7268)
)
(junction (at 132.08 52.324) (diameter 0) (color 0 0 0 0)
(uuid 625bf40a-ef8d-450d-8f0b-60eebe40e343)
)
(junction (at 112.522 45.72) (diameter 0) (color 0 0 0 0)
(uuid 629239c1-dd6a-4399-bff4-a9e6b2c347ac)
)
(junction (at 114.3 117.856) (diameter 0) (color 0 0 0 0)
(uuid 754da61d-018a-4a44-a580-abbb6e7acb71)
)
(junction (at 94.996 44.45) (diameter 0) (color 0 0 0 0)
(uuid 7b09d741-bb24-4641-869b-15db7cde186b)
)
(junction (at 242.062 81.788) (diameter 0) (color 0 0 0 0)
(uuid 7d79ba3a-72bd-4f65-89bc-2616c5698c69)
)
(junction (at 140.462 122.174) (diameter 0) (color 0 0 0 0)
(uuid 8da06c4d-615f-41e8-b056-9e9b879d162e)
)
(junction (at 129.794 122.174) (diameter 0) (color 0 0 0 0)
(uuid 8e0d20b2-d356-4ba6-adbc-8d925ae26572)
)
(junction (at 67.818 143.256) (diameter 0) (color 0 0 0 0)
(uuid 8e15be67-4fe2-4e73-a8bc-8b09d99a0de8)
)
(junction (at 23.368 147.066) (diameter 0) (color 0 0 0 0)
(uuid 9265fb86-f779-4304-97a8-43a94c7d2edb)
)
(junction (at 46.228 147.066) (diameter 0) (color 0 0 0 0)
(uuid a27aafc0-87bc-4386-ae22-8fa8a4acb724)
)
(junction (at 178.816 59.944) (diameter 0) (color 0 0 0 0)
(uuid b2d4f949-358c-4768-80be-7014de7eee7b)
)
(junction (at 122.682 45.72) (diameter 0) (color 0 0 0 0)
(uuid baef9d92-3883-4ca1-84c5-478024c3379a)
)
(junction (at 122.682 52.324) (diameter 0) (color 0 0 0 0)
(uuid c77626a8-754e-4d3f-b336-d483380d33d0)
)
(junction (at 114.046 153.416) (diameter 0) (color 0 0 0 0)
(uuid c82344dd-c269-410b-9dab-d20b98429d71)
)
(junction (at 114.046 155.956) (diameter 0) (color 0 0 0 0)
(uuid cb3aec33-8a01-4876-ad0c-160a5c39fbcb)
)
(junction (at 222.758 118.872) (diameter 0) (color 0 0 0 0)
(uuid d0302726-e499-4c4c-9157-902ce424d12d)
)
(junction (at 34.798 159.766) (diameter 0) (color 0 0 0 0)
(uuid d121db91-9a9a-4351-b84f-775aa0f6afbb)
)
(junction (at 211.074 147.828) (diameter 0) (color 0 0 0 0)
(uuid d7570949-1d82-4bdf-b38b-764c778155bf)
)
(junction (at 114.3 114.3) (diameter 0) (color 0 0 0 0)
(uuid de35e753-04f3-4669-887b-087b909a25b1)
)
(junction (at 129.794 114.3) (diameter 0) (color 0 0 0 0)
(uuid dec02cf7-1cd9-4aa5-bd0e-b2bc3f1a00bc)
)
(junction (at 126.746 140.716) (diameter 0) (color 0 0 0 0)
(uuid ecc046c1-9f33-4025-a3f7-405d9d6feab5)
)
(junction (at 114.046 150.876) (diameter 0) (color 0 0 0 0)
(uuid f0573796-4977-4e60-a313-b5b1388f7b11)
)
(junction (at 241.808 41.148) (diameter 0) (color 0 0 0 0)
(uuid f2f1aa14-9e11-45b2-a32b-7541b65ac5df)
)
(no_connect (at 91.44 62.23) (uuid 035cf782-6319-48bb-89ea-3f7d96514d27))
(no_connect (at 91.44 67.31) (uuid 035cf782-6319-48bb-89ea-3f7d96514d28))
(no_connect (at 91.44 57.15) (uuid 035cf782-6319-48bb-89ea-3f7d96514d29))
(no_connect (at 91.44 64.77) (uuid 035cf782-6319-48bb-89ea-3f7d96514d2a))
(no_connect (at 109.474 128.016) (uuid 26c96803-ab8f-4ed5-955a-56503be2108c))
(no_connect (at 109.474 130.556) (uuid 26c96803-ab8f-4ed5-955a-56503be2108d))
(no_connect (at 40.64 52.07) (uuid 30c9f8d1-6270-4c18-a2b6-c43a30582ae1))
(no_connect (at 109.474 133.096) (uuid 6785d6b5-ed4f-46fc-9e10-3648158d0056))
(no_connect (at 109.474 135.636) (uuid c672bcfc-b58f-45f5-8f10-99b989b192a8))
(wire (pts (xy 109.474 155.956) (xy 114.046 155.956))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0574dce3-7dfa-4056-9ac1-967750181980)
)
(wire (pts (xy 112.522 45.72) (xy 122.682 45.72))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 07bc69dc-4149-415f-94bf-24ec4f65b351)
)
(wire (pts (xy 241.808 41.148) (xy 241.808 44.196))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0947f824-d650-4c05-99d9-2f6a9817220e)
)
(wire (pts (xy 231.648 118.872) (xy 235.458 118.872))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0ecfe18c-11f3-483c-a01b-6caea0adc527)
)
(wire (pts (xy 258.826 57.658) (xy 258.826 60.706))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 13ddd9e1-6215-4ece-8f1a-95fb786f62b3)
)
(wire (pts (xy 122.682 45.72) (xy 132.08 45.72))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 14491313-c362-4522-af8c-f043f102cbc2)
)
(wire (pts (xy 109.474 150.876) (xy 114.046 150.876))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 14a9bd07-381a-4bf2-be1b-58a1f3087a59)
)
(wire (pts (xy 129.794 114.3) (xy 140.462 114.3))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 16adfb4f-bf12-4a00-9c0f-67fb0124898d)
)
(wire (pts (xy 91.44 59.69) (xy 94.488 59.69))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1b50ed60-c46f-45c7-a03c-079cdf5bc6b9)
)
(wire (pts (xy 180.848 132.588) (xy 182.88 132.588))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 219daebf-7b7c-4833-b4f4-444b1ad07096)
)
(wire (pts (xy 67.818 143.256) (xy 73.914 143.256))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 21a00e11-8bf4-4d32-a66b-f25f495cd1bc)
)
(wire (pts (xy 216.408 116.332) (xy 216.408 118.872))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 268f5414-0857-446e-aa2a-7444983f16f0)
)
(wire (pts (xy 140.462 115.57) (xy 140.462 114.3))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 280404e4-49aa-4841-ad65-884ebc4c239a)
)
(wire (pts (xy 67.818 144.78) (xy 67.818 143.256))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 28cae60c-e281-4546-8d62-e9a9fc416448)
)
(wire (pts (xy 132.08 52.324) (xy 132.08 51.562))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2d43e50b-1458-418b-9ec9-aaa78002d7e0)
)
(wire (pts (xy 23.368 159.766) (xy 34.798 159.766))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2f21e7a0-bb1c-48cb-aa23-a4dd4a0358a9)
)
(wire (pts (xy 180.086 71.628) (xy 202.692 71.628))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 30dc5f87-b927-46c7-a13c-fbf28710c9c9)
)
(wire (pts (xy 112.522 51.562) (xy 112.522 52.324))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 33b9f2d4-6921-4ced-af33-a5a739fe5ec4)
)
(wire (pts (xy 94.996 46.99) (xy 94.996 44.45))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 34bab252-8ea5-4c47-8b44-62a0a3d1bce2)
)
(wire (pts (xy 122.682 51.562) (xy 122.682 52.324))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 35598e04-7861-4418-8bd4-8686e5129c85)
)
(wire (pts (xy 135.382 140.716) (xy 137.668 140.716))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 371006d9-3531-4688-8f33-678ebb7e9b2a)
)
(wire (pts (xy 182.88 142.748) (xy 180.086 142.748))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 380ebea1-fc77-45ec-bcf3-161b0e153870)
)
(wire (pts (xy 34.798 139.446) (xy 34.798 141.986))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 38769f68-a39b-463f-878d-b4efaee354e0)
)
(wire (pts (xy 46.228 159.766) (xy 46.228 155.956))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 39cffd58-b124-4a4c-b09b-4c82280499d4)
)
(wire (pts (xy 177.546 67.564) (xy 177.546 76.708))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3c3da3e9-ea20-422d-865b-0ff6fb561727)
)
(wire (pts (xy 211.074 147.828) (xy 211.074 151.638))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3f738738-a877-46bb-aae1-42db39d33279)
)
(wire (pts (xy 180.086 59.944) (xy 178.816 59.944))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3fef9432-4b5b-4d48-af51-f103a9e256e6)
)
(wire (pts (xy 91.44 72.39) (xy 94.488 72.39))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4174bc47-1b20-4b6a-8fcb-82c579613766)
)
(wire (pts (xy 114.3 120.396) (xy 114.3 122.936))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4206bf23-cfb7-4ab9-a8f8-c0bd55ac4fcd)
)
(wire (pts (xy 112.522 52.324) (xy 122.682 52.324))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4448d7e9-c20c-4211-890e-e9caf11189fc)
)
(wire (pts (xy 211.074 143.764) (xy 211.074 145.796))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 46eb3cc2-f897-4f21-a284-19679ed505b9)
)
(wire (pts (xy 241.808 41.148) (xy 238.252 41.148))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 47715ec7-f6d7-45c2-9d57-dfdbeaa99b36)
)
(wire (pts (xy 242.062 78.232) (xy 242.062 81.788))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4a92503e-6305-4081-91f0-283aad078335)
)
(wire (pts (xy 242.062 81.788) (xy 242.062 85.852))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4f174147-d6f7-48e1-9e3f-a2423b2de302)
)
(wire (pts (xy 177.546 62.484) (xy 177.546 59.944))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 51bbc843-594e-4bb7-aa70-1a0e5534df9b)
)
(wire (pts (xy 119.38 120.904) (xy 119.38 122.174))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 521b7021-59bf-4e65-825a-7be4e132aa9a)
)
(wire (pts (xy 94.996 39.878) (xy 94.996 44.45))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5568eaa6-86dd-44b6-869a-9d1ef8726874)
)
(wire (pts (xy 235.458 118.872) (xy 235.458 117.602))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 562a3556-bc95-4ca8-8ab1-3f698acda944)
)
(wire (pts (xy 34.798 159.766) (xy 46.228 159.766))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 57912056-601d-4548-9413-fda0642b5d21)
)
(wire (pts (xy 23.368 147.066) (xy 30.988 147.066))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 57939e28-e93b-4103-b252-502948a59337)
)
(wire (pts (xy 241.808 49.276) (xy 241.808 51.562))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 599676c6-4c06-4f8d-84da-7fc78c8beac3)
)
(wire (pts (xy 112.522 46.482) (xy 112.522 45.72))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5a7e5e4b-0f2c-4c71-9d32-45cf0732b0c3)
)
(wire (pts (xy 222.758 127.508) (xy 222.758 118.872))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5ad2730e-aee2-45ad-a3d9-faa185077487)
)
(wire (pts (xy 208.28 147.828) (xy 211.074 147.828))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5cb7a38a-d612-48bc-9ed8-69c8a3bdb203)
)
(wire (pts (xy 114.3 122.936) (xy 109.474 122.936))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5e579d6f-5528-4e1a-a33d-1ec3f7433e53)
)
(wire (pts (xy 125.476 143.256) (xy 126.746 143.256))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5e60aa76-cc99-435d-97f7-9f37c25d57b4)
)
(wire (pts (xy 126.746 140.716) (xy 130.302 140.716))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 6016438c-f04d-4f19-a75b-5d96f8b5d7a6)
)
(wire (pts (xy 129.794 115.824) (xy 129.794 114.3))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 63edb5df-7a26-4dd0-a5f7-3cab49d464c3)
)
(wire (pts (xy 238.252 81.788) (xy 242.062 81.788))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 6449c6ff-6fed-4877-a9a4-b50123020738)
)
(wire (pts (xy 180.848 117.094) (xy 180.848 132.588))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 65de3af2-f485-4251-bb04-291f567713e6)
)
(wire (pts (xy 94.488 72.39) (xy 94.488 74.168))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 6669741f-39f7-4eed-b287-2a8d208f506b)
)
(wire (pts (xy 114.046 155.956) (xy 114.046 160.274))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 6b09de81-685d-4ff5-b507-aca0f1f4e401)
)