-
Notifications
You must be signed in to change notification settings - Fork 0
/
level_shifting.kicad_sch
1195 lines (1158 loc) · 46.3 KB
/
level_shifting.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 b9c725fd-a928-4243-b92b-74debd6aa474)
(paper "A4")
(lib_symbols
(symbol "prius_gen2-rescue:+5V-power-prius_gen2-rescue" (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-power-prius_gen2-rescue" (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)
)
(symbol "+5V-power-prius_gen2-rescue_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-power-prius_gen2-rescue_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 "prius_gen2-rescue:C-Device-prius_gen2-rescue" (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-Device-prius_gen2-rescue" (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_fp_filters" "C_*" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "C-Device-prius_gen2-rescue_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-Device-prius_gen2-rescue_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 "prius_gen2-rescue:GND-power-prius_gen2-rescue" (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-power-prius_gen2-rescue" (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)
)
(symbol "GND-power-prius_gen2-rescue_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-power-prius_gen2-rescue_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 "prius_gen2-rescue:MCP602-Amplifier_Operational-prius_gen2-rescue" (pin_names (offset 0.127)) (in_bom yes) (on_board yes)
(property "Reference" "U" (id 0) (at 0 5.08 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "MCP602-Amplifier_Operational-prius_gen2-rescue" (id 1) (at 0 -5.08 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_locked" "" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)))
)
(property "ki_fp_filters" "SOIC*3.9x4.9mm*P1.27mm* DIP*W7.62mm* TO*99* OnSemi*Micro8* TSSOP*3x3mm*P0.65mm* TSSOP*4.4x3mm*P0.65mm* MSOP*3x3mm*P0.65mm* SSOP*3.9x4.9mm*P0.635mm* LFCSP*2x2mm*P0.5mm* *SIP* SOIC*5.3x6.2mm*P1.27mm*" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "MCP602-Amplifier_Operational-prius_gen2-rescue_1_1"
(polyline
(pts
(xy -5.08 5.08)
(xy 5.08 0)
(xy -5.08 -5.08)
(xy -5.08 5.08)
)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type background))
)
(pin output line (at 7.62 0 180) (length 2.54)
(name "~" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin input line (at -7.62 -2.54 0) (length 2.54)
(name "-" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin input line (at -7.62 2.54 0) (length 2.54)
(name "+" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
)
(symbol "MCP602-Amplifier_Operational-prius_gen2-rescue_2_1"
(polyline
(pts
(xy -5.08 5.08)
(xy 5.08 0)
(xy -5.08 -5.08)
(xy -5.08 5.08)
)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type background))
)
(pin input line (at -7.62 2.54 0) (length 2.54)
(name "+" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
(pin input line (at -7.62 -2.54 0) (length 2.54)
(name "-" (effects (font (size 1.27 1.27))))
(number "6" (effects (font (size 1.27 1.27))))
)
(pin output line (at 7.62 0 180) (length 2.54)
(name "~" (effects (font (size 1.27 1.27))))
(number "7" (effects (font (size 1.27 1.27))))
)
)
(symbol "MCP602-Amplifier_Operational-prius_gen2-rescue_3_1"
(pin power_in line (at -2.54 -7.62 90) (length 3.81)
(name "V-" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at -2.54 7.62 270) (length 3.81)
(name "V+" (effects (font (size 1.27 1.27))))
(number "8" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "prius_gen2-rescue:R-Device-prius_gen2-rescue" (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-Device-prius_gen2-rescue" (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_fp_filters" "R_*" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "R-Device-prius_gen2-rescue_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-Device-prius_gen2-rescue_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))))
)
)
)
)
(junction (at 137.795 105.41) (diameter 0) (color 0 0 0 0)
(uuid 01d86ab3-6388-4eab-afd0-84a793d9ee63)
)
(junction (at 156.21 64.77) (diameter 0) (color 0 0 0 0)
(uuid 111e85be-5a8e-4020-9140-b56f83759961)
)
(junction (at 122.555 105.41) (diameter 0) (color 0 0 0 0)
(uuid 1d09a1b5-69df-43f9-ac35-3ee725b507ed)
)
(junction (at 112.395 78.105) (diameter 0) (color 0 0 0 0)
(uuid 2fa03a6d-4d1a-409c-8ca3-979e1ee025da)
)
(junction (at 100.33 137.16) (diameter 0) (color 0 0 0 0)
(uuid 406c57a7-71da-461a-b736-8dc6152d5216)
)
(junction (at 113.665 94.615) (diameter 0) (color 0 0 0 0)
(uuid 560414a7-ee22-4280-8431-f6f76e0bc472)
)
(junction (at 156.21 97.155) (diameter 0) (color 0 0 0 0)
(uuid 5f029b86-861c-40be-acff-dbbf00ab04ca)
)
(junction (at 137.795 73.025) (diameter 0) (color 0 0 0 0)
(uuid 740d231b-44a3-43b0-9b9f-68917ad2a64f)
)
(junction (at 154.94 136.525) (diameter 0) (color 0 0 0 0)
(uuid 79c4c7d3-5ff8-4129-9069-f19bc321a24f)
)
(junction (at 154.94 125.095) (diameter 0) (color 0 0 0 0)
(uuid 90b827a0-d9e0-420a-abc2-92edf65a1c98)
)
(junction (at 100.33 125.73) (diameter 0) (color 0 0 0 0)
(uuid 96d60b17-dfcc-455f-8d8a-d7a4fd1c9a68)
)
(junction (at 109.22 125.73) (diameter 0) (color 0 0 0 0)
(uuid ba73684e-7e3e-4595-8750-5f46cf022442)
)
(junction (at 121.285 73.025) (diameter 0) (color 0 0 0 0)
(uuid c592c922-635b-4a65-a72c-aa6f35ecbe15)
)
(junction (at 113.665 100.965) (diameter 0) (color 0 0 0 0)
(uuid c598ea55-ca5b-4e93-87bd-22b9222ec79d)
)
(junction (at 122.555 94.615) (diameter 0) (color 0 0 0 0)
(uuid d545b557-ef2c-4b57-998c-ff80d9337ff1)
)
(junction (at 112.395 62.23) (diameter 0) (color 0 0 0 0)
(uuid e0c86627-873c-4247-9a89-6dda5b681a14)
)
(junction (at 121.285 62.23) (diameter 0) (color 0 0 0 0)
(uuid e5ca1439-050e-4fc7-8d7c-894ebe7aae00)
)
(junction (at 112.395 68.58) (diameter 0) (color 0 0 0 0)
(uuid e6a1e38d-303f-481d-a474-9887f78b5503)
)
(junction (at 113.665 111.125) (diameter 0) (color 0 0 0 0)
(uuid ea83da85-65ae-4ed7-b91c-9448c6390b5a)
)
(junction (at 163.83 125.095) (diameter 0) (color 0 0 0 0)
(uuid fa1c99b1-cee8-4719-b525-188c96fac1d5)
)
(wire (pts (xy 102.235 93.345) (xy 95.25 93.345))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 026bb49d-f478-4392-8585-6f0f13610173)
)
(wire (pts (xy 121.285 73.025) (xy 121.285 71.755))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 04bfa1f6-c834-483a-a079-3a26b56a1670)
)
(wire (pts (xy 100.33 128.27) (xy 100.33 125.73))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0556ea0a-74d8-40bd-91e6-f8a16959269a)
)
(wire (pts (xy 156.21 99.06) (xy 156.21 97.155))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0c3fe06e-d312-4480-b8a8-57b9895d51a5)
)
(wire (pts (xy 139.7 94.615) (xy 122.555 94.615))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0c4a6def-5ee0-4423-af06-095c7d5611b6)
)
(wire (pts (xy 121.285 62.23) (xy 139.7 62.23))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0d13c682-f3ff-4612-98d9-a6aed3e44f45)
)
(wire (pts (xy 112.395 79.375) (xy 112.395 78.105))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1080b16c-54c8-4bb1-9aed-b8ba9b5dc3d8)
)
(wire (pts (xy 156.21 97.155) (xy 154.94 97.155))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 114c52f3-3459-4c61-9ba6-d05daa452e00)
)
(wire (pts (xy 139.7 67.31) (xy 137.795 67.31))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 15f55ff7-cb6f-458e-8436-51849c1ed276)
)
(wire (pts (xy 113.665 94.615) (xy 113.665 93.345))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1fd7d0aa-f8b0-41c8-bb47-5ea8f198af75)
)
(wire (pts (xy 82.55 125.73) (xy 89.535 125.73))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1fed32cc-10fd-4ddb-9b36-a9be86a5c7dc)
)
(wire (pts (xy 136.525 105.41) (xy 137.795 105.41))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 24b64d14-b5d0-4fc5-9d6d-bbf09c654950)
)
(wire (pts (xy 180.34 81.28) (xy 180.34 83.185))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2f87fe14-2d6e-40ef-8e26-9b238c548198)
)
(wire (pts (xy 121.285 64.135) (xy 121.285 62.23))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 302387ce-7c71-4a12-aa47-6e3f51472c32)
)
(wire (pts (xy 122.555 111.125) (xy 122.555 105.41))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 30e633ff-b761-4b18-956a-a2454e0d2540)
)
(wire (pts (xy 109.855 100.965) (xy 113.665 100.965))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 38cd08a2-c26c-4a61-acc6-d66550e38289)
)
(wire (pts (xy 121.285 60.96) (xy 121.285 62.23))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 40f26e17-e305-4c1b-b58c-c03a2b43c3ba)
)
(wire (pts (xy 137.16 125.095) (xy 144.145 125.095))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 446ca6b5-8933-4e38-9fe7-05197a30c60f)
)
(wire (pts (xy 137.795 107.95) (xy 156.21 107.95))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 469bf77d-0874-4904-90dd-59dff7bd07de)
)
(wire (pts (xy 112.395 68.58) (xy 112.395 62.23))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 484e1d0f-aa2a-4070-adc4-aec6d1258290)
)
(wire (pts (xy 137.795 74.93) (xy 137.795 73.025))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4c1810aa-0c61-4df4-83b1-5bc6d4c80125)
)
(wire (pts (xy 95.25 100.965) (xy 102.235 100.965))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4f76ec3c-1613-4690-808e-31f9c0546459)
)
(wire (pts (xy 163.83 136.525) (xy 154.94 136.525))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 51940b9b-cf21-4a26-add7-74fa4d56dbb5)
)
(wire (pts (xy 113.665 111.125) (xy 113.665 109.855))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5caec18a-9579-483a-aced-6df339714c9b)
)
(wire (pts (xy 137.795 99.695) (xy 137.795 105.41))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5f4c1f98-c2b1-4e60-846d-831770408ba3)
)
(wire (pts (xy 154.94 127.635) (xy 154.94 125.095))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 666a1e10-4557-4f2a-b485-94d81672c78d)
)
(wire (pts (xy 156.21 64.77) (xy 154.94 64.77))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 67e9bc02-0016-43de-ae1a-a6c37d9fd4d6)
)
(wire (pts (xy 173.355 125.095) (xy 163.83 125.095))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 67fbfb7b-2e57-4496-94ff-b86457e4526a)
)
(wire (pts (xy 156.21 74.93) (xy 137.795 74.93))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 6b56a06f-1b8c-4474-8011-1ec45f74160a)
)
(wire (pts (xy 112.395 68.58) (xy 112.395 69.85))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 6c92ab52-cddc-4e12-98d9-790f3de03d30)
)
(wire (pts (xy 156.21 107.95) (xy 156.21 106.68))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 6dbf037d-f9a8-46a5-b326-ba1c5fcc1b7f)
)
(wire (pts (xy 113.665 100.965) (xy 113.665 102.235))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 721d5102-12e0-403c-8f13-6a5e6bbf7842)
)
(wire (pts (xy 113.665 100.965) (xy 113.665 94.615))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 72d2997f-b0d1-474c-9f48-1bdce150a721)
)
(wire (pts (xy 100.33 125.73) (xy 109.22 125.73))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 758b6dad-fe9c-4b23-afa9-e3d569470578)
)
(wire (pts (xy 112.395 60.96) (xy 108.585 60.96))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 7783bb21-a2a9-44e6-b249-fc92f4920ace)
)
(wire (pts (xy 122.555 94.615) (xy 122.555 95.885))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 78cd53cb-379a-49bd-a853-d81f4b0df57b)
)
(wire (pts (xy 137.795 67.31) (xy 137.795 73.025))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 821d92c4-97b5-4587-9bc6-8ae108edccb6)
)
(wire (pts (xy 163.83 125.095) (xy 163.83 127.635))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 82778903-072b-48a2-8229-866556fbafa9)
)
(wire (pts (xy 121.285 52.07) (xy 121.285 53.34))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8354b816-a5c0-4e75-8e1e-4b92f3801f32)
)
(wire (pts (xy 113.665 93.345) (xy 109.855 93.345))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 881f5988-d8f9-4de0-87ed-42bbc1e154fd)
)
(wire (pts (xy 122.555 93.345) (xy 122.555 94.615))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8966c135-1b08-4c77-922b-9c071949b21b)
)
(wire (pts (xy 162.56 64.77) (xy 156.21 64.77))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8ab4871b-ba1b-4c95-a0cd-eca1fc20fc44)
)
(wire (pts (xy 109.22 135.89) (xy 109.22 137.16))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8b130a32-00f7-410b-bbd5-de9e06a3ec90)
)
(wire (pts (xy 100.965 60.96) (xy 95.25 60.96))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8b831e81-e483-4cd2-92aa-1ded8666889b)
)
(wire (pts (xy 112.395 62.23) (xy 121.285 62.23))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8dd28740-e249-4e7f-a7e9-0f2993482af2)
)
(wire (pts (xy 151.765 125.095) (xy 154.94 125.095))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8eaca335-3328-42cf-a756-9f0314f0c434)
)
(wire (pts (xy 109.22 125.73) (xy 109.22 128.27))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 9b1fdc83-6e0d-435e-b2b4-4ff0ceeb9f67)
)
(wire (pts (xy 100.33 137.16) (xy 100.33 135.89))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 9e74b8ab-c414-4d34-902f-2edc82207efd)
)
(wire (pts (xy 163.83 135.255) (xy 163.83 136.525))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a30885a0-e47c-419c-82c5-a311a393b249)
)
(wire (pts (xy 154.94 136.525) (xy 154.94 135.255))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a3406acb-b647-42b3-b8af-f0c442cc425a)
)
(wire (pts (xy 112.395 78.105) (xy 121.285 78.105))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a760ef7b-334d-4135-9d02-71d96664c776)
)
(wire (pts (xy 112.395 62.23) (xy 112.395 60.96))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid abfcdf79-d7c9-4f14-a54d-8d311bbf07c8)
)
(wire (pts (xy 95.25 68.58) (xy 100.965 68.58))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid aca84d4f-c147-4ed5-a676-acbb17e4ae48)
)
(wire (pts (xy 97.155 125.73) (xy 100.33 125.73))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b1310f72-4289-4e8d-9a4e-5731b645522e)
)
(wire (pts (xy 100.33 138.43) (xy 100.33 137.16))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b3f35e00-2607-42df-a8a0-923bce94911d)
)
(wire (pts (xy 122.555 84.455) (xy 122.555 85.725))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b4deca8d-554b-49ba-aeed-e2a3260d65d6)
)
(wire (pts (xy 156.21 66.04) (xy 156.21 64.77))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid ba6be73d-b6fc-48ec-91d1-620253a265a9)
)
(wire (pts (xy 154.94 137.795) (xy 154.94 136.525))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c0b2433d-93bc-4e3e-bff4-192185c9613f)
)
(wire (pts (xy 121.285 78.105) (xy 121.285 73.025))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c662e9a9-27dc-44c7-9327-8c43d3d28528)
)
(wire (pts (xy 118.745 125.73) (xy 109.22 125.73))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c9c2ad9a-ec1c-48ad-ad6b-2982c94abb5a)
)
(wire (pts (xy 136.525 73.025) (xy 137.795 73.025))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid cc677f00-cc46-4b3f-9b10-43e9119d34ae)
)
(wire (pts (xy 112.395 78.105) (xy 112.395 77.47))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid cc72e87b-62a8-4cb7-840a-f70998c85a59)
)
(wire (pts (xy 122.555 103.505) (xy 122.555 105.41))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid d13e7936-7138-48d6-9083-ea523ba16053)
)
(wire (pts (xy 108.585 68.58) (xy 112.395 68.58))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid d17fdd06-4228-45a7-9251-7b11c33463c6)
)
(wire (pts (xy 156.21 73.66) (xy 156.21 74.93))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid d8d05405-a1f6-4dac-a709-244840eae75e)
)
(wire (pts (xy 113.665 111.125) (xy 122.555 111.125))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid d9cb1333-dccc-4779-ae79-af920d0d447f)
)
(wire (pts (xy 122.555 105.41) (xy 128.905 105.41))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid da1f0243-4299-407d-b96d-d688da4f1e61)
)
(wire (pts (xy 137.795 105.41) (xy 137.795 107.95))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid daacd1f1-1d9a-4002-9550-2887b48e8c92)
)
(wire (pts (xy 180.34 100.965) (xy 180.34 98.425))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid def4672b-80a8-4bb5-a38d-53fdf9097b02)
)
(wire (pts (xy 109.22 137.16) (xy 100.33 137.16))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid e078bb02-4afc-48e0-b2e6-a1f501c72ddf)
)
(wire (pts (xy 113.665 111.76) (xy 113.665 111.125))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid e26ad7b9-c59b-4431-8605-d49c44a23355)
)
(wire (pts (xy 121.285 73.025) (xy 128.905 73.025))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid e752ff05-5516-40eb-80ba-3e6ce23ea62d)
)
(wire (pts (xy 154.94 125.095) (xy 163.83 125.095))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid e7c2de21-0981-4dd1-937c-566eb9a14a49)
)
(wire (pts (xy 113.665 94.615) (xy 122.555 94.615))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid e9bb6fd7-c85f-4867-a52f-4623c6eec300)
)
(wire (pts (xy 139.7 99.695) (xy 137.795 99.695))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid eb886f64-1435-4f7d-abd3-91ade3c47577)
)
(wire (pts (xy 162.56 97.155) (xy 156.21 97.155))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid f6402e27-bc4a-4c4f-9659-25b799827fb3)
)
(hierarchical_label "MIVA" (shape input) (at 95.25 68.58 180)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 041b7562-3c61-43ed-a16c-be40896c304a)
)
(hierarchical_label "ADC8" (shape input) (at 162.56 97.155 0)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 0d1fc7b7-5d78-4c49-ba97-d379c737fdea)
)
(hierarchical_label "MIVT" (shape input) (at 82.55 125.73 180)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 11c4e356-43e9-4cfd-a58f-c727cfbad62b)
)
(hierarchical_label "VH" (shape input) (at 137.16 125.095 180)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 58ccd70c-2370-4c59-a44e-8f42772b3e01)
)
(hierarchical_label "ADC13" (shape input) (at 173.355 125.095 0)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 5a27d78e-a121-4360-8bde-81a143eca551)
)
(hierarchical_label "ADC14" (shape input) (at 118.745 125.73 0)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 73017fae-ff98-460b-9011-8f035a83a126)
)
(hierarchical_label "GIVA" (shape input) (at 95.25 60.96 180)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 8075a51c-2c3b-4dfd-8eaf-a4ca42c37f1b)
)
(hierarchical_label "GIWA" (shape input) (at 95.25 93.345 180)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 89dd8d9b-6fa3-4ced-b974-9c4799a88608)
)
(hierarchical_label "ADC5" (shape input) (at 162.56 64.77 0)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 8c3aae97-1606-4e75-bcc2-a401a6a7c0b0)
)
(hierarchical_label "MIWA" (shape input) (at 95.25 100.965 180)
(effects (font (size 1.27 1.27)) (justify right))
(uuid ba63c5da-b9ff-44a4-b387-4ad2c92f8d1c)
)
(symbol (lib_id "prius_gen2-rescue:MCP602-Amplifier_Operational-prius_gen2-rescue") (at 147.32 64.77 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-00006111f5bf)
(property "Reference" "U?" (id 0) (at 147.32 55.4482 0))
(property "Value" "" (id 1) (at 147.32 57.7596 0))
(property "Footprint" "" (id 2) (at 147.32 64.77 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "http://ww1.microchip.com/downloads/en/DeviceDoc/21314g.pdf" (id 3) (at 147.32 64.77 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 32de4596-e6a3-4192-aa87-2d7ee43e8f34))
(pin "2" (uuid 43af8dbf-8d9e-407e-b49e-50069ee42961))
(pin "3" (uuid 3fb2ad5d-206e-4b38-a4c9-a8a51d9f3ffa))
(pin "5" (uuid d8ac5425-bf9f-4605-9fc3-787973d0a0d7))
(pin "6" (uuid da63b422-c14a-4ddb-8c8a-7daef2f20cc2))
(pin "7" (uuid 2ab50de3-353a-4ca9-b8f5-336e702e4ff5))
(pin "4" (uuid 081e564f-3175-477b-860b-7ad9b09ab053))
(pin "8" (uuid 14a0d2f3-586f-43de-aa3b-5f691915384c))
)
(symbol (lib_id "prius_gen2-rescue:MCP602-Amplifier_Operational-prius_gen2-rescue") (at 147.32 97.155 0) (unit 2)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-00006111f5c5)
(property "Reference" "U?" (id 0) (at 147.32 87.8332 0))
(property "Value" "" (id 1) (at 147.32 90.1446 0))
(property "Footprint" "" (id 2) (at 147.32 97.155 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "http://ww1.microchip.com/downloads/en/DeviceDoc/21314g.pdf" (id 3) (at 147.32 97.155 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 231fdaee-fe99-4794-ae87-db0acd103245))
(pin "2" (uuid f124939f-174a-4717-befe-0db1b3a8e456))
(pin "3" (uuid 9bf1ce8d-94fa-475a-a7f8-36adcb387f0c))
(pin "5" (uuid a49fcf95-443f-4693-b2ab-533f553ca88f))
(pin "6" (uuid 8f163ec1-ae10-4c53-a24a-11db593cda70))
(pin "7" (uuid f39a39a3-6c37-4cfc-91db-bf9349dcdd28))
(pin "4" (uuid 4fb78bd1-f486-4058-9853-1119602c9082))
(pin "8" (uuid 482105c7-d100-40fe-bc82-b5eb45cfa5a1))
)
(symbol (lib_id "prius_gen2-rescue:MCP602-Amplifier_Operational-prius_gen2-rescue") (at 182.88 90.805 0) (unit 3)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-00006111f5cb)
(property "Reference" "U?" (id 0) (at 181.8132 89.6366 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "" (id 1) (at 181.8132 91.948 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (id 2) (at 182.88 90.805 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "http://ww1.microchip.com/downloads/en/DeviceDoc/21314g.pdf" (id 3) (at 182.88 90.805 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid bc4f30ab-9678-4c19-ae8d-df27c198a4a4))
(pin "2" (uuid 4e058335-39cc-4854-a1e4-582812b84c00))
(pin "3" (uuid 7884c180-75bb-4024-bc0a-435642448142))
(pin "5" (uuid 94849b8c-9921-452e-8f03-466476620590))
(pin "6" (uuid 00b723a0-d794-454e-84c0-dc926f5c1eae))
(pin "7" (uuid f578729c-3678-498d-84e8-5a9fe7d390f6))
(pin "4" (uuid 1e8d7295-3312-49bb-b696-f46cbef863f1))
(pin "8" (uuid 4a10d4e1-a9d4-4ad9-8ef1-20bb506d632d))
)
(symbol (lib_id "prius_gen2-rescue:+5V-power-prius_gen2-rescue") (at 180.34 81.28 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-00006111f5d1)
(property "Reference" "#PWR?" (id 0) (at 180.34 85.09 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "" (id 1) (at 180.721 76.8858 0))
(property "Footprint" "" (id 2) (at 180.34 81.28 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 180.34 81.28 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 2cdc3766-8b5c-4d59-b4cb-0d707a1bec74))
)
(symbol (lib_id "prius_gen2-rescue:GND-power-prius_gen2-rescue") (at 180.34 100.965 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-00006111f5d7)
(property "Reference" "#PWR?" (id 0) (at 180.34 107.315 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "" (id 1) (at 180.467 105.3592 0))
(property "Footprint" "" (id 2) (at 180.34 100.965 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 180.34 100.965 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 5c2d462a-6b1d-417b-8168-ed7bcb0dd210))
)
(symbol (lib_id "prius_gen2-rescue:R-Device-prius_gen2-rescue") (at 121.285 57.15 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-00006111f5e3)
(property "Reference" "R?" (id 0) (at 123.063 55.9816 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "" (id 1) (at 123.063 58.293 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (id 2) (at 119.507 57.15 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 121.285 57.15 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 6816d023-5b2e-47cd-a6b9-7cb2f82ae9a0))
(pin "2" (uuid 0cbb584b-b03a-40c9-bae0-a2ab568b276b))
)
(symbol (lib_id "prius_gen2-rescue:R-Device-prius_gen2-rescue") (at 104.775 60.96 270) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-00006111f5eb)
(property "Reference" "R?" (id 0) (at 104.775 55.7022 90))
(property "Value" "" (id 1) (at 104.775 58.0136 90))
(property "Footprint" "" (id 2) (at 104.775 59.182 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 104.775 60.96 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 4f7bc913-bb4d-4e99-b6f6-592964ca617c))
(pin "2" (uuid aec69892-d60c-4b76-933e-8659104418dd))
)
(symbol (lib_id "prius_gen2-rescue:R-Device-prius_gen2-rescue") (at 104.775 68.58 270) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-00006111f5f1)
(property "Reference" "R?" (id 0) (at 104.775 63.3222 90))
(property "Value" "" (id 1) (at 104.775 65.6336 90))
(property "Footprint" "" (id 2) (at 104.775 66.802 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 104.775 68.58 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 1d6eab26-0dfd-40f1-a255-c3f0329ebd4c))
(pin "2" (uuid 4b953afc-807f-4f2d-b496-20726f6a5c3c))
)
(symbol (lib_id "prius_gen2-rescue:C-Device-prius_gen2-rescue") (at 112.395 73.66 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-00006111f5fd)
(property "Reference" "C?" (id 0) (at 115.316 72.4916 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "" (id 1) (at 115.316 74.803 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (id 2) (at 113.3602 77.47 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 112.395 73.66 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 0d2c8a66-e6d0-40c0-9334-28aea5fd2f88))
(pin "2" (uuid 8b96149f-679f-4f6e-b3ac-e895bf7bd9a1))
)
(symbol (lib_id "prius_gen2-rescue:GND-power-prius_gen2-rescue") (at 112.395 79.375 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-00006111f603)
(property "Reference" "#PWR?" (id 0) (at 112.395 85.725 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "" (id 1) (at 112.522 83.7692 0))
(property "Footprint" "" (id 2) (at 112.395 79.375 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 112.395 79.375 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 67c3b9ef-f561-461b-ad73-0408f40543ce))
)
(symbol (lib_id "prius_gen2-rescue:R-Device-prius_gen2-rescue") (at 121.285 67.945 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-00006111f60d)
(property "Reference" "R?" (id 0) (at 123.063 66.7766 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "" (id 1) (at 123.063 69.088 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (id 2) (at 119.507 67.945 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 121.285 67.945 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 7b635959-b268-4296-a10b-591e5b33527f))
(pin "2" (uuid 2f6aa5a5-dd78-4939-9750-49ac9c262a09))
)
(symbol (lib_id "prius_gen2-rescue:R-Device-prius_gen2-rescue") (at 132.715 73.025 270) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-00006111f618)
(property "Reference" "R?" (id 0) (at 132.715 67.7672 90))
(property "Value" "" (id 1) (at 132.715 70.0786 90))
(property "Footprint" "" (id 2) (at 132.715 71.247 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 132.715 73.025 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 7692bb67-8ff5-4a7d-8298-a4c6918bd2fc))
(pin "2" (uuid 56662da3-cd79-42d6-9dc1-aa6e623ffe1d))
)
(symbol (lib_id "prius_gen2-rescue:R-Device-prius_gen2-rescue") (at 156.21 69.85 180) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-00006111f624)
(property "Reference" "R?" (id 0) (at 157.988 68.6816 0)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Value" "" (id 1) (at 157.988 70.993 0)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Footprint" "" (id 2) (at 157.988 69.85 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 156.21 69.85 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 3a43bdbd-c85f-4e0e-8fc8-292dec4ff925))
(pin "2" (uuid 3c7ea024-05d5-4705-8502-aef9b2ceaf3d))
)
(symbol (lib_id "prius_gen2-rescue:+5V-power-prius_gen2-rescue") (at 121.285 52.07 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-00006111f632)
(property "Reference" "#PWR?" (id 0) (at 121.285 55.88 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "" (id 1) (at 121.666 47.6758 0))
(property "Footprint" "" (id 2) (at 121.285 52.07 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 121.285 52.07 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid f6376b77-71c8-4184-ace5-5440113660ca))
)
(symbol (lib_id "prius_gen2-rescue:R-Device-prius_gen2-rescue") (at 156.21 102.87 180) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-00006111f63d)
(property "Reference" "R?" (id 0) (at 157.988 101.7016 0)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Value" "" (id 1) (at 157.988 104.013 0)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Footprint" "" (id 2) (at 157.988 102.87 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 156.21 102.87 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 0b8571fb-125d-4af7-aeba-e85b60c60fb2))
(pin "2" (uuid af2209f3-a89b-490c-856f-1e2e8fb7f420))
)
(symbol (lib_id "prius_gen2-rescue:R-Device-prius_gen2-rescue") (at 132.715 105.41 270) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-00006111f643)
(property "Reference" "R?" (id 0) (at 132.715 100.1522 90))
(property "Value" "" (id 1) (at 132.715 102.4636 90))
(property "Footprint" "" (id 2) (at 132.715 103.632 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 132.715 105.41 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid efde2630-7adb-4817-a4ed-94e58e184f8f))
(pin "2" (uuid 84160c84-d51f-41ab-9339-bb00f4376e0d))
)
(symbol (lib_id "prius_gen2-rescue:R-Device-prius_gen2-rescue") (at 122.555 99.695 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-00006111f649)
(property "Reference" "R?" (id 0) (at 124.333 98.5266 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "" (id 1) (at 124.333 100.838 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (id 2) (at 120.777 99.695 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 122.555 99.695 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid e328d658-0fed-4db3-bc72-581e2421c88e))
(pin "2" (uuid cda58595-5e58-449f-b07f-e08b8bde3f6f))
)
(symbol (lib_id "prius_gen2-rescue:R-Device-prius_gen2-rescue") (at 122.555 89.535 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-00006111f64f)
(property "Reference" "R?" (id 0) (at 124.333 88.3666 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "" (id 1) (at 124.333 90.678 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (id 2) (at 120.777 89.535 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 122.555 89.535 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 26c30ab3-9d48-4b9f-ac53-495a8a1e128a))
(pin "2" (uuid 2edd802f-d6bc-4f24-823c-57beb1af4ed6))
)
(symbol (lib_id "prius_gen2-rescue:R-Device-prius_gen2-rescue") (at 106.045 93.345 270) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-00006111f663)
(property "Reference" "R?" (id 0) (at 106.045 88.0872 90))
(property "Value" "" (id 1) (at 106.045 90.3986 90))
(property "Footprint" "" (id 2) (at 106.045 91.567 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 106.045 93.345 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 687e96c1-0f69-46e6-abc3-2b9f3a4e30e8))
(pin "2" (uuid ad665c6b-c835-46d6-948a-6b2b7a1872b9))
)
(symbol (lib_id "prius_gen2-rescue:R-Device-prius_gen2-rescue") (at 106.045 100.965 270) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-00006111f669)
(property "Reference" "R?" (id 0) (at 106.045 95.7072 90))
(property "Value" "" (id 1) (at 106.045 98.0186 90))
(property "Footprint" "" (id 2) (at 106.045 99.187 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 106.045 100.965 0)