-
Notifications
You must be signed in to change notification settings - Fork 0
/
inputfilter.kicad_sch
1645 lines (1591 loc) · 63.6 KB
/
inputfilter.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 bd438bc4-b008-43b3-86c8-1c48db9ec8f4)
(paper "A4")
(lib_symbols
(symbol "prius_gen2-rescue:+12V-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" "+12V-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 "+12V-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 "+12V-power-prius_gen2-rescue_1_1"
(pin power_in line (at 0 0 90) (length 0) hide
(name "+12V" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
(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: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))))
)
)
)
(symbol "prius_gen2-rescue:SolderJumper_2_Open-Jumper-prius_gen2-rescue" (pin_names (offset 0) hide) (in_bom yes) (on_board yes)
(property "Reference" "JP" (id 0) (at 0 2.032 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "SolderJumper_2_Open-Jumper-prius_gen2-rescue" (id 1) (at 0 -2.54 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "SolderJumper*Open*" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "SolderJumper_2_Open-Jumper-prius_gen2-rescue_0_1"
(arc (start -0.254 1.016) (mid -1.27 0) (end -0.254 -1.016)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(arc (start -0.254 1.016) (mid -1.27 0) (end -0.254 -1.016)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type outline))
)
(polyline
(pts
(xy -0.254 1.016)
(xy -0.254 -1.016)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0.254 1.016)
(xy 0.254 -1.016)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(arc (start 0.254 -1.016) (mid 1.27 0) (end 0.254 1.016)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(arc (start 0.254 -1.016) (mid 1.27 0) (end 0.254 1.016)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type outline))
)
)
(symbol "SolderJumper_2_Open-Jumper-prius_gen2-rescue_1_1"
(pin passive line (at -3.81 0 0) (length 2.54)
(name "A" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 3.81 0 180) (length 2.54)
(name "B" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
)
(junction (at 240.03 95.25) (diameter 0) (color 0 0 0 0)
(uuid 0596e6af-5d3b-44d8-b1a7-422012adbe14)
)
(junction (at 37.465 156.845) (diameter 0) (color 0 0 0 0)
(uuid 05a43d08-c2ce-4ca6-b52a-738594b5a594)
)
(junction (at 251.46 138.43) (diameter 0) (color 0 0 0 0)
(uuid 0c4da0df-4f29-4a24-9a81-0125f03efdcf)
)
(junction (at 251.46 106.045) (diameter 0) (color 0 0 0 0)
(uuid 1a65ce03-2a4e-4a9f-a0f2-8ff27918f2d4)
)
(junction (at 158.115 41.91) (diameter 0) (color 0 0 0 0)
(uuid 204b4f18-17a6-4042-a12e-06be52fd5f6b)
)
(junction (at 158.115 64.135) (diameter 0) (color 0 0 0 0)
(uuid 24ca9695-b9d7-474d-a3b9-ac301f72b847)
)
(junction (at 58.42 156.845) (diameter 0) (color 0 0 0 0)
(uuid 280a2782-7959-49f9-93ec-10007897df1b)
)
(junction (at 240.03 138.43) (diameter 0) (color 0 0 0 0)
(uuid 2c0d6ab9-fe05-4c51-bca4-94cf6d5b76f5)
)
(junction (at 142.24 75.565) (diameter 0) (color 0 0 0 0)
(uuid 2e84fab5-034d-490d-a13a-dc5a2ea0a285)
)
(junction (at 110.49 64.135) (diameter 0) (color 0 0 0 0)
(uuid 44f99fcd-76cd-4311-ac7c-c2a523c3970f)
)
(junction (at 142.24 64.135) (diameter 0) (color 0 0 0 0)
(uuid 4b158d25-1667-4923-aa27-ec88f025c13d)
)
(junction (at 126.365 64.135) (diameter 0) (color 0 0 0 0)
(uuid 5012d99d-6272-4a99-9772-2356f92a86be)
)
(junction (at 251.46 147.955) (diameter 0) (color 0 0 0 0)
(uuid 562d1d72-6159-44f6-bc6d-963539bca40f)
)
(junction (at 58.42 119.38) (diameter 0) (color 0 0 0 0)
(uuid 56994209-e36d-43f5-af88-800515795dd6)
)
(junction (at 37.465 119.38) (diameter 0) (color 0 0 0 0)
(uuid 6924a4ac-fcf8-4d0d-8f20-d2cad8bbee81)
)
(junction (at 240.03 116.84) (diameter 0) (color 0 0 0 0)
(uuid 6ec26c74-f224-4ee1-a650-799827b8c42f)
)
(junction (at 118.11 75.565) (diameter 0) (color 0 0 0 0)
(uuid 87353d9b-4f9b-42fc-bac1-2da6d2455116)
)
(junction (at 158.115 75.565) (diameter 0) (color 0 0 0 0)
(uuid 9a8e50fe-be2a-46c5-a10c-e3209aee7c8b)
)
(junction (at 110.49 59.055) (diameter 0) (color 0 0 0 0)
(uuid a72d60c9-1d2a-46d1-82d7-e928d0cc1d04)
)
(junction (at 126.365 75.565) (diameter 0) (color 0 0 0 0)
(uuid ab7fd90e-8b20-4d6f-ae36-0609d4a88add)
)
(junction (at 149.86 75.565) (diameter 0) (color 0 0 0 0)
(uuid aeb69791-baac-4ad7-ab42-a4256c78b874)
)
(junction (at 165.735 75.565) (diameter 0) (color 0 0 0 0)
(uuid ba4e95d9-9843-4c18-943a-93dc96ad6542)
)
(junction (at 110.49 75.565) (diameter 0) (color 0 0 0 0)
(uuid bb984cd8-8011-4bf0-9ef9-5d754177b14a)
)
(junction (at 173.99 35.56) (diameter 0) (color 0 0 0 0)
(uuid bc68c9f4-fa58-4096-8f84-0c27678c58b4)
)
(junction (at 142.24 47.625) (diameter 0) (color 0 0 0 0)
(uuid bc856147-43d4-44f9-9505-49177716bb80)
)
(junction (at 126.365 53.34) (diameter 0) (color 0 0 0 0)
(uuid cc7f7564-33ac-45e5-a4be-726bfb92b56b)
)
(junction (at 133.985 75.565) (diameter 0) (color 0 0 0 0)
(uuid ce569baf-b8d6-4d3a-8ba1-d9bbe5053aee)
)
(junction (at 251.46 95.25) (diameter 0) (color 0 0 0 0)
(uuid d43734e0-960a-4ba9-a041-f7ddc24c6ca1)
)
(junction (at 251.46 116.84) (diameter 0) (color 0 0 0 0)
(uuid d9ce5d50-99e5-48a4-8b3a-10a4c6d039db)
)
(junction (at 173.99 64.135) (diameter 0) (color 0 0 0 0)
(uuid dadd0b30-81e3-4fe0-ac8e-4210b2246b06)
)
(junction (at 251.46 127.635) (diameter 0) (color 0 0 0 0)
(uuid eb09fecf-6bbd-4e48-8b0c-5f2e998a8b85)
)
(junction (at 173.99 75.565) (diameter 0) (color 0 0 0 0)
(uuid f70dcebc-9253-4c96-ad23-9ceeac5b8d49)
)
(wire (pts (xy 240.03 118.745) (xy 240.03 116.84))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 05e818b6-cb34-4708-96fb-0cbb5e0447f5)
)
(wire (pts (xy 158.115 64.135) (xy 165.735 64.135))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 077ed6e0-8573-443f-a383-ba84a6ed9c53)
)
(wire (pts (xy 251.46 104.775) (xy 251.46 106.045))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 08d64410-2734-4a37-af97-933b5c896277)
)
(polyline (pts (xy 15.875 86.36) (xy 82.55 86.36))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 09b7dee1-6d4b-476b-88b1-63e7d38d9ddf)
)
(wire (pts (xy 37.465 156.845) (xy 29.21 156.845))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0aca67ac-b0ee-4b2f-b9be-206d19e84b00)
)
(wire (pts (xy 58.42 119.38) (xy 52.705 119.38))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0dbfd70e-c7c3-4132-8715-1c5261966431)
)
(wire (pts (xy 181.61 75.565) (xy 181.61 73.66))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0e12a215-e597-49cb-b5bd-c2a31c12717a)
)
(wire (pts (xy 255.905 138.43) (xy 251.46 138.43))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 10eead1a-5132-47cc-a1e4-05f7e38c3a6d)
)
(wire (pts (xy 240.03 95.25) (xy 241.935 95.25))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 11548290-a0b9-4c27-8d42-af2b8e12b8b7)
)
(wire (pts (xy 255.27 85.725) (xy 255.27 86.995))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 11aff088-e9b0-4423-b3f4-d1040ce5bf01)
)
(wire (pts (xy 238.125 138.43) (xy 240.03 138.43))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1aea350c-13ec-4bd1-8612-fa57fd23178c)
)
(wire (pts (xy 240.03 140.335) (xy 240.03 138.43))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1f5c9448-5ec3-483e-bd96-b3bebc325793)
)
(wire (pts (xy 96.52 47.625) (xy 142.24 47.625))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 23b88be3-6c8c-4956-9a84-c13e4733e715)
)
(wire (pts (xy 173.99 35.56) (xy 173.99 64.135))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 23e2bd53-132f-4dfc-9863-26ce2cd5339f)
)
(wire (pts (xy 112.395 59.055) (xy 110.49 59.055))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 24dcd03e-c300-4a4d-a7dd-8d443feba510)
)
(wire (pts (xy 240.03 116.84) (xy 241.935 116.84))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 26e0a429-07b3-4e72-88ac-9ee1e1f8a3da)
)
(wire (pts (xy 88.9 41.91) (xy 84.455 41.91))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2a91de28-b464-46de-8a96-3ec49e2f1e74)
)
(wire (pts (xy 110.49 59.055) (xy 96.52 59.055))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2d30a52a-259a-49af-8436-d19c372540ea)
)
(wire (pts (xy 108.585 75.565) (xy 110.49 75.565))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3108aa3e-c2ec-44bb-adaf-4365bd603f94)
)
(wire (pts (xy 158.115 75.565) (xy 165.735 75.565))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 344af9a6-c88a-45ee-b3aa-beec70df8344)
)
(wire (pts (xy 173.99 64.135) (xy 181.61 64.135))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3492aefa-b2d3-48ff-ac9d-fc3141540754)
)
(polyline (pts (xy 15.875 180.975) (xy 15.875 86.36))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 35833af6-dbf4-477d-ad95-adc14fdca9b9)
)
(wire (pts (xy 88.9 53.34) (xy 84.455 53.34))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4004878e-13de-4f06-a2f8-c675aba2019a)
)
(wire (pts (xy 58.42 158.115) (xy 58.42 156.845))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 43281784-5ebe-4f0e-a0b2-143e26551884)
)
(wire (pts (xy 37.465 119.38) (xy 45.085 119.38))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 440a8e30-e2ef-4129-b858-d8e4a360fc27)
)
(wire (pts (xy 240.03 138.43) (xy 241.935 138.43))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 450edda9-9552-4d42-b2c2-fc9e2ff8cac7)
)
(wire (pts (xy 238.125 95.25) (xy 240.03 95.25))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 46bf5dec-562e-4e78-b2b3-e2adb61e9e5c)
)
(wire (pts (xy 165.735 75.565) (xy 173.99 75.565))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 494a2602-3f3a-44ff-98fb-fe4185c2e2b3)
)
(wire (pts (xy 175.895 35.56) (xy 173.99 35.56))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 49fa5be6-2ee7-4de2-ac27-9e2273ab2eff)
)
(wire (pts (xy 118.11 73.66) (xy 118.11 75.565))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4a4224b3-2532-4eec-9d15-a5d53f736804)
)
(wire (pts (xy 255.27 86.995) (xy 249.555 86.995))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4a46fe5c-7b0d-4344-9711-070e664e7d2c)
)
(wire (pts (xy 37.465 144.145) (xy 37.465 147.32))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4a598484-7cec-46a7-b3d7-17431686410d)
)
(wire (pts (xy 110.49 64.135) (xy 118.11 64.135))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4bae1a33-d771-46ba-a687-52152a87acf6)
)
(wire (pts (xy 251.46 128.905) (xy 251.46 127.635))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4e0a16fa-659e-4eab-9d4f-ee12d28fac74)
)
(wire (pts (xy 251.46 106.045) (xy 251.46 107.315))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 51703a44-4217-4c75-95ff-59ba863e3ec5)
)
(wire (pts (xy 251.46 138.43) (xy 251.46 140.335))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 542f3efc-e2a9-4230-ba79-2c6000a2e406)
)
(wire (pts (xy 251.46 127.635) (xy 251.46 126.365))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 54b5e2a0-354b-4f81-bdcd-e210c96766b6)
)
(wire (pts (xy 110.49 64.135) (xy 110.49 59.055))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 54f326f3-151e-40a3-9683-c336ddcda801)
)
(wire (pts (xy 37.465 156.845) (xy 45.085 156.845))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5b537b7a-9ba7-4792-9289-f670ce25f1e5)
)
(wire (pts (xy 249.555 95.25) (xy 251.46 95.25))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5ba209ff-a797-4695-938b-efb48f53d6f8)
)
(wire (pts (xy 149.86 75.565) (xy 158.115 75.565))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5d90ee28-2578-4a89-9791-afb513499ec5)
)
(wire (pts (xy 126.365 73.66) (xy 126.365 75.565))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 6588286a-5a5e-4a24-bd20-b718f76cba08)
)
(wire (pts (xy 126.365 53.34) (xy 96.52 53.34))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 69183474-8a45-489d-ba18-8d483a33c4ce)
)
(wire (pts (xy 241.935 86.995) (xy 238.125 86.995))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 69b4bcc4-9126-4ed0-a3e7-671df8c6dd80)
)
(wire (pts (xy 165.735 75.565) (xy 165.735 73.66))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 6c46028c-2450-4cc0-b434-8f84b20f9a91)
)
(wire (pts (xy 126.365 53.34) (xy 126.365 64.135))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 6d95979d-9dfb-492a-bbe8-5e0e306a8bb6)
)
(wire (pts (xy 251.46 150.495) (xy 251.46 147.955))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 6fbc97bf-934b-457b-a773-771bb369fa7b)
)
(wire (pts (xy 58.42 130.175) (xy 58.42 128.27))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 6fde1adb-86ec-4dee-a649-d7bf1592507f)
)
(wire (pts (xy 251.46 127.635) (xy 240.03 127.635))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 71da8a54-e9a1-4a95-9dcd-2c73852c5f45)
)
(wire (pts (xy 158.115 41.91) (xy 158.115 64.135))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 7349b828-78be-4872-ab25-ab72eaec99b3)
)
(wire (pts (xy 142.24 66.04) (xy 142.24 64.135))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 758508e6-4d3e-44bc-b9e0-ef28182c5e87)
)
(wire (pts (xy 149.86 64.135) (xy 149.86 66.04))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 7b7ca556-0383-431a-afda-d19dd1b5c267)
)
(wire (pts (xy 37.465 117.475) (xy 37.465 119.38))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 7c2d8499-8bed-4356-b3a0-2b79b275c5ec)
)
(wire (pts (xy 142.24 47.625) (xy 142.24 64.135))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 82cc33be-7eb9-4abe-9a35-de73f9037aa9)
)
(wire (pts (xy 142.24 73.66) (xy 142.24 75.565))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8a0b2491-8a98-4814-a130-e60e9baf35b7)
)
(wire (pts (xy 255.905 95.25) (xy 251.46 95.25))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8aaf8a6c-576d-4a43-ae80-9a42897166c5)
)
(wire (pts (xy 58.42 120.65) (xy 58.42 119.38))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8b44b1b2-1748-4dde-a308-d8634a7e9aa2)
)
(wire (pts (xy 84.455 59.055) (xy 88.9 59.055))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8da6f05b-b8c7-43c6-9e37-e3985fcca3ef)
)
(wire (pts (xy 84.455 47.625) (xy 88.9 47.625))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8ec29e6a-4b5f-4d4b-820c-a4c8cb41b433)
)
(wire (pts (xy 62.865 156.845) (xy 58.42 156.845))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 90d0dc5c-dd8d-400a-b6c4-6008ce3ce1ca)
)
(polyline (pts (xy 82.55 180.975) (xy 15.875 180.975))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 93694922-08bf-454c-9e17-c7c6d6a3dc82)
)
(wire (pts (xy 173.99 66.04) (xy 173.99 64.135))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 95113088-c58f-4d3d-b969-19f0ca98e671)
)
(wire (pts (xy 165.735 64.135) (xy 165.735 66.04))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 97e173a6-ca8a-4780-8e6f-09e381e17e93)
)
(wire (pts (xy 142.24 64.135) (xy 149.86 64.135))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 98395c3e-b272-4aba-b952-9e6140a18e14)
)
(wire (pts (xy 133.985 75.565) (xy 142.24 75.565))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 995c7bbf-c805-485e-ae79-c071244647f2)
)
(wire (pts (xy 240.03 97.155) (xy 240.03 95.25))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 9a80be14-0a56-4f3d-a01b-b64a712a0781)
)
(wire (pts (xy 255.905 116.84) (xy 251.46 116.84))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 9c616ba2-2267-4953-ba6c-059d0fb19f4c)
)
(wire (pts (xy 37.465 119.38) (xy 29.21 119.38))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 9cb6615d-f7c8-4919-927e-590339bfb325)
)
(wire (pts (xy 251.46 116.84) (xy 251.46 118.745))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 9def4d58-33a0-4c70-8d2e-7feacdad3591)
)
(wire (pts (xy 37.465 133.985) (xy 37.465 136.525))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 9fe27900-d9e0-46b8-a29b-fca1ac43ccb2)
)
(wire (pts (xy 110.49 75.565) (xy 118.11 75.565))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a0caf0a9-31c4-4005-ba43-2e190e38b989)
)
(wire (pts (xy 249.555 138.43) (xy 251.46 138.43))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a4721dcd-1205-4a35-b783-a682fa4b3f17)
)
(wire (pts (xy 144.145 47.625) (xy 142.24 47.625))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a4c66a7b-2fd2-4fa5-89fe-df46f8c1367e)
)
(wire (pts (xy 62.865 119.38) (xy 58.42 119.38))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a7bd93f6-9aa4-41f4-a642-60f6b69b6bf7)
)
(wire (pts (xy 160.02 41.91) (xy 158.115 41.91))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a98e01de-61b0-4fba-aba0-57efb2ebbf3e)
)
(wire (pts (xy 126.365 75.565) (xy 133.985 75.565))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid abe7b17e-4731-4ce9-8d55-95b3005d539f)
)
(wire (pts (xy 158.115 73.66) (xy 158.115 75.565))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid aca7391d-0d83-4117-acc3-79d1d6a46850)
)
(wire (pts (xy 37.465 106.68) (xy 37.465 109.855))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid ad8f784b-1530-426a-b625-52571f468d98)
)
(wire (pts (xy 251.46 106.045) (xy 240.03 106.045))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b437fb35-0e58-4856-b65f-0c2b50d4588e)
)
(wire (pts (xy 126.365 64.135) (xy 133.985 64.135))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b4553d0b-0b14-4832-9bdf-5a4b6ba41ad4)
)
(wire (pts (xy 181.61 64.135) (xy 181.61 66.04))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b9620fe3-a8a6-4fbd-b3ee-40654dacca3a)
)
(wire (pts (xy 37.465 96.52) (xy 37.465 99.06))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid bbdde12e-14df-4362-928f-46d15e1a53d0)
)
(wire (pts (xy 240.03 127.635) (xy 240.03 126.365))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c12586e3-b772-459f-87ce-7f8840406b68)
)
(polyline (pts (xy 82.55 86.36) (xy 82.55 180.975))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c24df2f2-1a82-4121-9c6b-44e130329e0d)
)
(wire (pts (xy 173.99 75.565) (xy 181.61 75.565))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c43d3f70-6e3c-4e66-9606-20d6e8189e68)
)
(wire (pts (xy 240.03 106.045) (xy 240.03 104.775))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c5c0ebce-9ad9-4bfc-8aa1-4e5048c0874e)
)
(wire (pts (xy 37.465 154.94) (xy 37.465 156.845))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c68744ed-869b-48bd-a58b-e8a88ee20a3f)
)
(wire (pts (xy 118.11 64.135) (xy 118.11 66.04))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c985aa6e-0f77-45ac-8e4e-739e88f18edd)
)
(wire (pts (xy 110.49 66.04) (xy 110.49 64.135))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c9e0c240-2a3f-45a7-a95b-8740102ce3a0)
)
(wire (pts (xy 58.42 156.845) (xy 52.705 156.845))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid cc64d5f7-c588-4576-a55f-be6cdb163042)
)
(wire (pts (xy 249.555 116.84) (xy 251.46 116.84))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid cd3935bb-203e-47bf-9adb-6196f007dd2e)
)
(wire (pts (xy 251.46 147.955) (xy 240.03 147.955))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid cd6a095e-108f-44a9-a803-9724b24ecb21)
)
(wire (pts (xy 81.28 35.56) (xy 88.9 35.56))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid ce7b6e5f-c786-4328-a070-0bed8cee30c2)
)
(wire (pts (xy 133.985 75.565) (xy 133.985 73.66))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid d0ca2c39-479d-4d1b-a672-bc93bc0f1844)
)
(wire (pts (xy 96.52 41.91) (xy 158.115 41.91))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid d3567160-fab1-4c3e-96cc-b9045003bb69)
)
(wire (pts (xy 133.985 64.135) (xy 133.985 66.04))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid d9b52866-155f-4414-a389-62a8107004d4)
)
(wire (pts (xy 173.99 73.66) (xy 173.99 75.565))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid daa3e168-fb9e-4bc2-a816-8f4d4da698e1)
)
(wire (pts (xy 142.24 75.565) (xy 149.86 75.565))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid de509a74-8016-4815-ab01-422457861925)
)
(wire (pts (xy 238.125 116.84) (xy 240.03 116.84))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid e4312e63-0441-4c69-8261-172dd81a0a6d)
)
(wire (pts (xy 126.365 66.04) (xy 126.365 64.135))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid e5a499ee-5af9-4afd-ae39-2ca723c79866)
)
(wire (pts (xy 58.42 167.64) (xy 58.42 165.735))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid edc17d02-98c6-4937-b5fb-63ad95d662a7)
)
(wire (pts (xy 110.49 73.66) (xy 110.49 75.565))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid ee07236f-0808-440e-b633-6f22d99658cc)
)
(wire (pts (xy 118.11 75.565) (xy 126.365 75.565))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid ef448f1f-8a96-4b4e-826f-da5e0d9b37e6)
)
(wire (pts (xy 96.52 35.56) (xy 173.99 35.56))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid f1a49ca9-ce5c-4f5b-a7cd-9251122baaf8)
)
(wire (pts (xy 108.585 76.835) (xy 108.585 75.565))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid f4fdcd36-36be-4267-b97c-8de464858fff)
)
(wire (pts (xy 251.46 95.25) (xy 251.46 97.155))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid f6c7d165-ed39-4a48-b9cc-8fd59c93c359)
)
(wire (pts (xy 158.115 66.04) (xy 158.115 64.135))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid f910c669-d0a6-49a8-bfcf-cdcb96782554)
)
(wire (pts (xy 149.86 75.565) (xy 149.86 73.66))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid fcf85bf9-5a76-4b50-a65b-1cfd1623e656)
)
(wire (pts (xy 128.27 53.34) (xy 126.365 53.34))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid feca90ed-8e41-4388-b62a-777b46e4b203)
)
(text "*Close both jumpers for AB encoder" (at 21.59 177.8 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 3aab35e7-d8ef-4be5-ac7d-f12429835ed1)
)
(text "Encoder" (at 17.145 88.9 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 4a9c6950-be33-47b0-bb9b-c385fccb79ad)
)
(hierarchical_label "ADC2" (shape input) (at 144.145 47.625 0)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 33191ce7-9362-44ba-b402-7f5ef6cc807a)
)
(hierarchical_label "TIM3_CH2" (shape input) (at 62.865 119.38 0)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 3e9c384b-ef17-4259-aac1-4a0e08c7fc9d)
)
(hierarchical_label "SIG_BRAKE" (shape input) (at 84.455 47.625 180)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 450288d4-3b7b-4972-b4c7-e967e34b0bc4)
)
(hierarchical_label "THROTTLE2" (shape input) (at 238.125 138.43 180)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 469526cb-bec5-4010-a4be-bfed0abd2880)
)
(hierarchical_label "ENC_A" (shape input) (at 29.21 156.845 180)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 5582d80c-b7e4-46b5-9fb6-93e0020449c2)
)
(hierarchical_label "ADC11" (shape input) (at 255.905 116.84 0)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 58a22bd8-0e5c-4a2b-bbce-e4503413d421)
)
(hierarchical_label "MTEMP-" (shape input) (at 238.125 95.25 180)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 650deada-2da8-4c74-a211-f1585c7c5ccc)
)
(hierarchical_label "ENC_B" (shape input) (at 29.21 119.38 180)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 66989f64-ac82-4da3-8e68-562158ffb30d)
)
(hierarchical_label "ADC10" (shape input) (at 255.905 138.43 0)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 78f14d14-6885-4bed-900f-be28e9c07dec)
)
(hierarchical_label "SIG_START" (shape input) (at 84.455 41.91 180)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 78faed51-e386-44f5-8242-54c34895f48d)
)
(hierarchical_label "MTEMP+" (shape input) (at 238.125 86.995 180)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 7df6731f-4d3e-4693-906b-5a6eb0f65b9b)
)
(hierarchical_label "ADC12" (shape input) (at 255.905 95.25 0)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 9379c0d8-a2ba-4b57-826f-effe7c7feb2a)
)
(hierarchical_label "TIM3_CH1" (shape input) (at 62.865 156.845 0)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 99e672ab-62ad-46ad-918f-43ed95e2a372)
)
(hierarchical_label "THROTTLE1" (shape input) (at 238.125 116.84 180)
(effects (font (size 1.27 1.27)) (justify right))
(uuid a4fe537d-7e67-4d0f-80b6-f196e9a1be63)
)
(hierarchical_label "REV" (shape input) (at 112.395 59.055 0)
(effects (font (size 1.27 1.27)) (justify left))
(uuid c6e993c8-c519-4bd8-964d-cab27446c3cb)
)
(hierarchical_label "ADC3" (shape input) (at 175.895 35.56 0)
(effects (font (size 1.27 1.27)) (justify left))
(uuid cb000489-1af7-40e8-96ae-f8a743917a4b)
)
(hierarchical_label "SIG_REV" (shape input) (at 84.455 59.055 180)
(effects (font (size 1.27 1.27)) (justify right))
(uuid ce6aa671-e91d-4416-ae5d-f140a49fd5f4)
)
(hierarchical_label "TIM4_CH1" (shape input) (at 160.02 41.91 0)
(effects (font (size 1.27 1.27)) (justify left))
(uuid d948bf38-f2f4-487f-8179-b28ac2ecfa26)
)
(hierarchical_label "SIG_FWD" (shape input) (at 84.455 53.34 180)
(effects (font (size 1.27 1.27)) (justify right))
(uuid db3c9cb7-a5ad-4d59-b32f-aecd9c5b5455)
)
(hierarchical_label "ADC4" (shape input) (at 128.27 53.34 0)
(effects (font (size 1.27 1.27)) (justify left))
(uuid f102439c-05e3-4271-8014-8d36acce958d)
)
(symbol (lib_id "prius_gen2-rescue:R-Device-prius_gen2-rescue") (at 92.71 41.91 90) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-000061112451)
(property "Reference" "R46" (id 0) (at 90.17 40.005 90))
(property "Value" "3.3k" (id 1) (at 96.52 40.005 90))
(property "Footprint" "Resistor_SMD:R_0603_1608Metric" (id 2) (at 92.71 43.688 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 92.71 41.91 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 485507af-995a-4f8a-bbc0-d6236493a4ce))
(pin "2" (uuid a0e5521b-400a-4573-9e42-d62055232ec5))
)
(symbol (lib_id "prius_gen2-rescue:R-Device-prius_gen2-rescue") (at 92.71 47.625 90) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-00006111262b)
(property "Reference" "R47" (id 0) (at 90.17 45.72 90))
(property "Value" "3.3k" (id 1) (at 96.52 45.72 90))
(property "Footprint" "Resistor_SMD:R_0603_1608Metric" (id 2) (at 92.71 49.403 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 92.71 47.625 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 8c7adcf6-10ad-4450-a4ea-03fdd967db4d))
(pin "2" (uuid 137680ce-4858-49a6-b764-358dbdf4d895))
)
(symbol (lib_id "prius_gen2-rescue:R-Device-prius_gen2-rescue") (at 92.71 53.34 90) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-000061112888)
(property "Reference" "R48" (id 0) (at 90.17 51.435 90))
(property "Value" "3.3k" (id 1) (at 96.52 51.435 90))
(property "Footprint" "Resistor_SMD:R_0603_1608Metric" (id 2) (at 92.71 55.118 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 92.71 53.34 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 4e48e0bd-6fca-4b45-927d-8f03b1e4a649))
(pin "2" (uuid 90f0fa9b-c7ca-4dd4-809d-2cd7ae03ccba))
)
(symbol (lib_id "prius_gen2-rescue:R-Device-prius_gen2-rescue") (at 92.71 59.055 90) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-000061112a98)
(property "Reference" "R49" (id 0) (at 90.17 57.15 90))
(property "Value" "3.3k" (id 1) (at 96.52 57.15 90))
(property "Footprint" "Resistor_SMD:R_0603_1608Metric" (id 2) (at 92.71 60.833 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 92.71 59.055 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 989dc841-a90d-4a3e-82b2-7558a429a9fe))
(pin "2" (uuid e867b6a8-30f7-4f49-a398-5692a24be998))
)
(symbol (lib_id "prius_gen2-rescue:C-Device-prius_gen2-rescue") (at 110.49 69.85 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-000061116e18)
(property "Reference" "C45" (id 0) (at 113.411 68.6816 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "1u" (id 1) (at 113.411 70.993 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 111.4552 73.66 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 110.49 69.85 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 0a2386bf-102d-4bc2-a8e1-5317490f9187))
(pin "2" (uuid 5e873ae9-22a8-4a5d-b218-86abddda9077))
)
(symbol (lib_id "prius_gen2-rescue:R-Device-prius_gen2-rescue") (at 118.11 69.85 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-00006111700f)
(property "Reference" "R50" (id 0) (at 119.888 68.6816 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "1.2k" (id 1) (at 119.888 70.993 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Resistor_SMD:R_0603_1608Metric" (id 2) (at 116.332 69.85 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 118.11 69.85 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 7c1980c5-9715-43f6-9b6d-c7103592665d))
(pin "2" (uuid 554797d9-1f08-4fe2-858a-eeb52c3c7272))
)