-
Notifications
You must be signed in to change notification settings - Fork 1
/
VR conditioner.kicad_sch
1520 lines (1485 loc) · 52.3 KB
/
VR conditioner.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 20230121) (generator eeschema)
(uuid 78900880-d341-4a86-9988-a0d819373d20)
(paper "A4")
(title_block
(title "Polygonus Universal 88p")
(date "2023-11-12")
(rev "v1.0")
(company "FutureProofPerformance.com")
)
(lib_symbols
(symbol "Device:C" (pin_numbers hide) (pin_names (offset 0.254)) (in_bom yes) (on_board yes)
(property "Reference" "C" (at 0.635 2.54 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "C" (at 0.635 -2.54 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (at 0.9652 -3.81 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "cap capacitor" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Unpolarized capacitor" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "C_*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "C_0_1"
(polyline
(pts
(xy -2.032 -0.762)
(xy 2.032 -0.762)
)
(stroke (width 0.508) (type default))
(fill (type none))
)
(polyline
(pts
(xy -2.032 0.762)
(xy 2.032 0.762)
)
(stroke (width 0.508) (type default))
(fill (type none))
)
)
(symbol "C_1_1"
(pin passive line (at 0 3.81 270) (length 2.794)
(name "~" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -3.81 90) (length 2.794)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Device:R" (pin_numbers hide) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "R" (at 2.032 0 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "R" (at 0 0 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at -1.778 0 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "R res resistor" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Resistor" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "R_*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "R_0_1"
(rectangle (start -1.016 -2.54) (end 1.016 2.54)
(stroke (width 0.254) (type default))
(fill (type none))
)
)
(symbol "R_1_1"
(pin passive line (at 0 3.81 270) (length 1.27)
(name "~" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -3.81 90) (length 1.27)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "GND_1" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "#PWR" (at 0 -6.35 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND_1" (at 0 -3.81 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "global power" (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" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "GND_1_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))
(fill (type none))
)
)
(symbol "GND_1_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 "Jumper:Jumper_3_Bridged12" (pin_names (offset 0) hide) (in_bom yes) (on_board yes)
(property "Reference" "JP" (at -2.54 -2.54 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "Jumper_3_Bridged12" (at 0 2.794 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "Jumper SPDT" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Jumper, 3-pole, pins 1+2 closed/bridged" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "Jumper* TestPoint*3Pads* TestPoint*Bridge*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "Jumper_3_Bridged12_0_0"
(circle (center -3.302 0) (radius 0.508)
(stroke (width 0) (type default))
(fill (type none))
)
(circle (center 0 0) (radius 0.508)
(stroke (width 0) (type default))
(fill (type none))
)
(circle (center 3.302 0) (radius 0.508)
(stroke (width 0) (type default))
(fill (type none))
)
)
(symbol "Jumper_3_Bridged12_0_1"
(arc (start -0.254 0.508) (mid -1.651 0.9912) (end -3.048 0.508)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0 -1.27)
(xy 0 -0.508)
)
(stroke (width 0) (type default))
(fill (type none))
)
)
(symbol "Jumper_3_Bridged12_1_1"
(pin passive line (at -6.35 0 0) (length 2.54)
(name "A" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin input line (at 0 -3.81 90) (length 2.54)
(name "C" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 6.35 0 180) (length 2.54)
(name "B" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Simon:DNP" (pin_numbers hide) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "R8" (at 0 1.905 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "DNP" (at 0 0 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Simon:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder" (at 0 1.778 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "LCSC" "DNP" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "R res resistor" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Resistor" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "R_*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "DNP_0_1"
(rectangle (start -1.016 -2.54) (end 1.016 2.54)
(stroke (width 0.254) (type default))
(fill (type none))
)
)
(symbol "DNP_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 "Simon:MAX9924" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
(property "Reference" "U3" (at 5.08 -12.065 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "MAX9924" (at 5.715 11.43 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Package_SO:MSOP-10_3x3mm_P0.5mm" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "LCSC" "N/A" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "MAX9924_0_1"
(rectangle (start -10.16 10.16) (end 10.16 -10.16)
(stroke (width 0) (type default))
(fill (type none))
)
)
(symbol "MAX9924_1_1"
(pin input line (at -12.7 1.27 0) (length 2.54)
(name "IN+" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 0 12.7 270) (length 2.54)
(name "VCC" (effects (font (size 1.27 1.27))))
(number "10" (effects (font (size 1.27 1.27))))
)
(pin input line (at -12.7 8.89 0) (length 2.54)
(name "IN-" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin no_connect line (at 0 -5.08 0) (length 2.54) hide
(name "~" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin input line (at -12.7 -7.62 0) (length 2.54)
(name "BIAS" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 12.7 -7.62 180) (length 2.54)
(name "GND" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
(pin input line (at 12.7 -2.54 180) (length 2.54)
(name "ZERO_EN" (effects (font (size 1.27 1.27))))
(number "6" (effects (font (size 1.27 1.27))))
)
(pin output line (at 12.7 5.08 180) (length 2.54)
(name "COUT" (effects (font (size 1.27 1.27))))
(number "7" (effects (font (size 1.27 1.27))))
)
(pin input line (at 0 -12.7 90) (length 2.54)
(name "EXT" (effects (font (size 1.27 1.27))))
(number "8" (effects (font (size 1.27 1.27))))
)
(pin input line (at -2.54 -12.7 90) (length 2.54)
(name "INT_THRS" (effects (font (size 1.27 1.27))))
(number "9" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "power:+3.3V" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "#PWR" (at 0 -3.81 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "+3.3V" (at 0 3.556 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "global power" (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\"" (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))
(fill (type none))
)
(polyline
(pts
(xy 0 0)
(xy 0 2.54)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0 2.54)
(xy 0.762 1.27)
)
(stroke (width 0) (type default))
(fill (type none))
)
)
(symbol "+3.3V_1_1"
(pin power_in line (at 0 0 90) (length 0) hide
(name "+3.3V" (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" (at 0 -3.81 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "+5V" (at 0 3.556 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "global power" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Power symbol creates a global label with name \"+5V\"" (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))
(fill (type none))
)
(polyline
(pts
(xy 0 0)
(xy 0 2.54)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0 2.54)
(xy 0.762 1.27)
)
(stroke (width 0) (type default))
(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:PWR_FLAG" (power) (pin_numbers hide) (pin_names (offset 0) hide) (in_bom yes) (on_board yes)
(property "Reference" "#FLG" (at 0 1.905 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "PWR_FLAG" (at 0 3.81 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "power-flag" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Special symbol for telling ERC where power comes from" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "PWR_FLAG_0_0"
(pin power_out line (at 0 0 90) (length 0)
(name "pwr" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
(symbol "PWR_FLAG_0_1"
(polyline
(pts
(xy 0 0)
(xy 0 1.27)
(xy -1.016 1.905)
(xy 0 2.54)
(xy 1.016 1.905)
(xy 0 1.27)
)
(stroke (width 0) (type default))
(fill (type none))
)
)
)
)
(junction (at 125.73 90.17) (diameter 0) (color 0 0 0 0)
(uuid 08adbd1b-997b-4a65-87e2-f7349abffd26)
)
(junction (at 149.86 114.3) (diameter 0) (color 0 0 0 0)
(uuid 10cc7796-4b5f-4694-abe5-80ed94953cd1)
)
(junction (at 118.11 80.01) (diameter 0) (color 0 0 0 0)
(uuid 172aedf3-0770-44b7-9356-d345b8db116a)
)
(junction (at 167.005 92.71) (diameter 0) (color 0 0 0 0)
(uuid 198cbafa-c5fc-4154-b2e2-1d41d7935188)
)
(junction (at 133.35 103.505) (diameter 0) (color 0 0 0 0)
(uuid 739f6d08-0e40-4f0b-ba1a-5b2a0155de65)
)
(junction (at 125.73 80.01) (diameter 0) (color 0 0 0 0)
(uuid 9c277f01-d799-41b8-985b-cd1ebcc40fa4)
)
(junction (at 133.35 97.79) (diameter 0) (color 0 0 0 0)
(uuid 9cf00f3c-b37a-43cb-ba04-d3ad820f237a)
)
(junction (at 165.735 85.09) (diameter 0) (color 0 0 0 0)
(uuid a3ba8da1-1dde-4a31-9c89-2fa1725ae2fe)
)
(junction (at 133.35 109.855) (diameter 0) (color 0 0 0 0)
(uuid ca60038b-2321-44f2-adba-9c4993891dea)
)
(junction (at 118.11 90.17) (diameter 0) (color 0 0 0 0)
(uuid e38537bb-725e-439c-aee3-980541954432)
)
(wire (pts (xy 133.35 109.855) (xy 133.35 103.505))
(stroke (width 0) (type default))
(uuid 0269bc29-d4ad-4183-9113-54603517786d)
)
(wire (pts (xy 130.81 109.855) (xy 133.35 109.855))
(stroke (width 0) (type default))
(uuid 178d9254-ddf7-4b2e-94fb-10244c8f9dd0)
)
(wire (pts (xy 184.15 88.265) (xy 165.735 88.265))
(stroke (width 0) (type default))
(uuid 1a60829b-b697-42f5-8c51-c0969a7e1ba2)
)
(wire (pts (xy 170.18 85.09) (xy 165.735 85.09))
(stroke (width 0) (type default))
(uuid 1dccad49-2be8-4f89-986f-f36828ef7a06)
)
(wire (pts (xy 130.81 97.79) (xy 133.35 97.79))
(stroke (width 0) (type default))
(uuid 204e4afb-4689-4102-b213-41c24728fcb5)
)
(wire (pts (xy 152.4 114.3) (xy 149.86 114.3))
(stroke (width 0) (type default))
(uuid 23620b43-a1d9-476f-824a-5880a4c6b3ef)
)
(wire (pts (xy 130.81 103.505) (xy 133.35 103.505))
(stroke (width 0) (type default))
(uuid 34dae9d5-50b7-42dc-9b2e-6e3675799702)
)
(wire (pts (xy 133.35 103.505) (xy 133.35 97.79))
(stroke (width 0) (type default))
(uuid 467393d6-c9e2-46a2-b231-c6f69f89b233)
)
(wire (pts (xy 165.735 88.265) (xy 165.735 85.09))
(stroke (width 0) (type default))
(uuid 46a12471-1eac-45ca-af28-85c98a1ac7ef)
)
(wire (pts (xy 116.84 80.01) (xy 118.11 80.01))
(stroke (width 0) (type default))
(uuid 6231b3d1-0367-47cc-8a52-78bb8b37adab)
)
(wire (pts (xy 125.73 81.28) (xy 125.73 80.01))
(stroke (width 0) (type default))
(uuid 6fac87f3-0f87-425e-bf72-f80beb171f79)
)
(wire (pts (xy 184.15 114.3) (xy 184.15 88.265))
(stroke (width 0) (type default))
(uuid 74ee00d8-f59d-47af-81d9-fe6a2e1af2c8)
)
(wire (pts (xy 130.175 88.9) (xy 130.175 90.17))
(stroke (width 0) (type default))
(uuid 76c3f02c-7fcf-4ab6-8f9b-7a87c1ccaf0c)
)
(wire (pts (xy 130.175 81.28) (xy 137.16 81.28))
(stroke (width 0) (type default))
(uuid 78e900d5-76e1-4ee6-a858-63c18f32ee3e)
)
(wire (pts (xy 130.175 90.17) (xy 125.73 90.17))
(stroke (width 0) (type default))
(uuid 79a3fdd8-4c74-41bb-bd90-d601b329a4f2)
)
(wire (pts (xy 165.735 85.09) (xy 162.56 85.09))
(stroke (width 0) (type default))
(uuid 80f140f5-6465-44bc-8a86-e18d2be0d850)
)
(wire (pts (xy 96.52 80.01) (xy 99.695 80.01))
(stroke (width 0) (type default))
(uuid 84eabc9a-c71b-4261-84c3-42607ec6034d)
)
(wire (pts (xy 125.73 80.01) (xy 118.11 80.01))
(stroke (width 0) (type default))
(uuid 8f29423a-18a9-43d4-9662-4a85824a5ef3)
)
(wire (pts (xy 149.86 114.3) (xy 144.145 114.3))
(stroke (width 0) (type default))
(uuid 9e2dea57-78e9-49b3-a32b-c02840bfcd31)
)
(wire (pts (xy 133.35 97.79) (xy 137.16 97.79))
(stroke (width 0) (type default))
(uuid 9f8dc4d9-f6c9-40c3-bb8b-66cb8610db70)
)
(wire (pts (xy 163.83 97.79) (xy 162.56 97.79))
(stroke (width 0) (type default))
(uuid 9fa53db1-9e3b-475f-b76c-a29b1df900b9)
)
(wire (pts (xy 109.22 80.01) (xy 107.315 80.01))
(stroke (width 0) (type default))
(uuid a3246bca-92ea-495c-b6f5-aa4bf30db196)
)
(wire (pts (xy 162.56 92.71) (xy 167.005 92.71))
(stroke (width 0) (type default))
(uuid a5bc8112-8b9a-4129-9704-f6b42267b1bd)
)
(wire (pts (xy 133.35 114.3) (xy 136.525 114.3))
(stroke (width 0) (type default))
(uuid a78a157d-1df8-4d5b-9146-56495a3ecba3)
)
(wire (pts (xy 125.73 90.17) (xy 125.73 88.9))
(stroke (width 0) (type default))
(uuid a9b3721a-3329-487c-ac01-089eed5f2eee)
)
(wire (pts (xy 125.73 80.01) (xy 130.175 80.01))
(stroke (width 0) (type default))
(uuid b184d2f9-8ed6-455c-a687-93c28b4a2f2e)
)
(wire (pts (xy 149.86 102.87) (xy 149.86 114.3))
(stroke (width 0) (type default))
(uuid b5d485c2-a78b-4c76-a915-0d12f6924b00)
)
(wire (pts (xy 165.735 83.185) (xy 165.735 85.09))
(stroke (width 0) (type default))
(uuid b6e256aa-83b7-49fa-9694-d1228bba00e6)
)
(wire (pts (xy 133.35 109.855) (xy 133.35 114.3))
(stroke (width 0) (type default))
(uuid b8f2d016-87fd-4cd2-b143-6fc68bacca65)
)
(wire (pts (xy 163.83 99.695) (xy 163.83 97.79))
(stroke (width 0) (type default))
(uuid b9229a26-e186-4c96-92dc-694bc8fd0045)
)
(wire (pts (xy 118.11 90.17) (xy 125.73 90.17))
(stroke (width 0) (type default))
(uuid c086b5e7-c85e-460a-95e1-54c6d633aa05)
)
(wire (pts (xy 118.11 80.01) (xy 118.11 81.28))
(stroke (width 0) (type default))
(uuid c58c0c71-b52f-4ee9-8294-03e277b4555e)
)
(wire (pts (xy 188.595 97.79) (xy 188.595 99.695))
(stroke (width 0) (type default))
(uuid d0f2813f-decb-4d73-b3ca-c8645fc455d7)
)
(wire (pts (xy 116.84 90.17) (xy 118.11 90.17))
(stroke (width 0) (type default))
(uuid d4384e92-797d-453c-8b0c-9b3ccd7d5393)
)
(wire (pts (xy 167.005 92.71) (xy 167.005 100.33))
(stroke (width 0) (type default))
(uuid d61ea397-87f6-4bfb-80a8-689933e3152e)
)
(wire (pts (xy 160.02 114.3) (xy 184.15 114.3))
(stroke (width 0) (type default))
(uuid e5313d4b-b7a9-4885-8a93-5b92ab7c8844)
)
(wire (pts (xy 167.005 100.33) (xy 169.545 100.33))
(stroke (width 0) (type default))
(uuid e90a893c-f19f-40a6-b8a0-1137b740c21a)
)
(wire (pts (xy 107.315 90.17) (xy 109.22 90.17))
(stroke (width 0) (type default))
(uuid ea994ce6-cbd2-4821-9720-60623831bb10)
)
(wire (pts (xy 96.52 90.17) (xy 99.695 90.17))
(stroke (width 0) (type default))
(uuid eab6d27c-7ceb-4585-ab07-017a26d2b91a)
)
(wire (pts (xy 130.175 80.01) (xy 130.175 81.28))
(stroke (width 0) (type default))
(uuid ef957fd2-205a-4513-9ac1-26f1ffa5cbc6)
)
(wire (pts (xy 137.16 88.9) (xy 130.175 88.9))
(stroke (width 0) (type default))
(uuid f55d9a9a-8e9a-472a-8596-3091d85bb774)
)
(wire (pts (xy 118.11 90.17) (xy 118.11 88.9))
(stroke (width 0) (type default))
(uuid f9d58e4a-4ba0-44ac-bf00-90707557bbd9)
)
(text "Optional setting in Mode C for no adaptive threshold timeout - See MAX9924 Datasheet\nComponents as specified put chip in mode A1. Flip jumper and install R1219+R2020 for mode C."
(at 101.6 121.92 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 04d97b87-8cdb-4ebd-b43b-59c851039dcb)
)
(text "Yes, we know that the polarity is flipped going in to the VR interface chips.\nWhile originally on accident, it’s no big deal since they invert anyway:\nWhen VR+ transitions to a higher voltage than VR-, VR_OUT will output a rising edge.\n\nSee issue https://github.com/mck1117/proteus/issues/57 for more detail"
(at 96.52 69.85 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 247869fc-c6d2-41da-b3d8-74ac7ebac75d)
)
(hierarchical_label "VR1_OUT" (shape output) (at 170.18 85.09 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid c2db18b3-1dc1-41ae-8aad-f04d2861ce13)
)
(hierarchical_label "VR1-" (shape input) (at 96.52 90.17 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid f52179fc-2548-4de2-a8e2-83c521440339)
)
(hierarchical_label "VR1+" (shape input) (at 96.52 80.01 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid ff62f738-d24c-4537-859e-db65a5e953c5)
)
(symbol (lib_name "GND_1") (lib_id "power:GND") (at 188.595 107.315 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 0c08a4b3-2b3f-430d-bb38-2b1518949ed8)
(property "Reference" "#PWR070" (at 188.595 113.665 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (at 188.595 112.395 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Footprint" "" (at 188.595 107.315 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 188.595 107.315 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 53f9c6e6-bec4-4afb-80ff-10a8a01d05e2))
(instances
(project "Polygonus-Universal-Base"
(path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55"
(reference "#PWR070") (unit 1)
)
(path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/2889b04e-b195-449f-8a75-049e865cc173"
(reference "#PWR080") (unit 1)
)
(path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/10870bd0-e7b2-41e0-a73b-86c976bc9253"
(reference "#PWR081") (unit 1)
)
(path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/76f66c7e-94ea-4f9a-aa2e-a01725934e38"
(reference "#PWR032") (unit 1)
)
)
)
)
(symbol (lib_id "power:+5V") (at 147.32 102.87 180) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 0cb51846-3786-406c-9c01-83bd3bd7d53a)
(property "Reference" "#PWR024" (at 147.32 99.06 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "+5V" (at 147.32 107.315 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 147.32 102.87 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 147.32 102.87 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 21253d35-2f25-4198-8527-169f06e10db7))
(instances
(project "Polygonus-Universal-Base"
(path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/76f66c7e-94ea-4f9a-aa2e-a01725934e38"
(reference "#PWR024") (unit 1)
)
)
)
)
(symbol (lib_id "Device:R") (at 103.505 80.01 270) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 10c0a7f9-ef7c-4d3a-a58a-6561a231d48a)
(property "Reference" "R2" (at 103.505 74.7522 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "4.7k" (at 103.505 80.01 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Resistor_SMD:R_0805_2012Metric" (at 103.505 78.232 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 103.505 80.01 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "PN" "" (at 103.505 80.01 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "LCSC" "C17673" (at 103.505 80.01 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "LCSC_ext" "0" (at 103.505 80.01 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 34654827-7615-4786-9506-292004dd4cc2))
(pin "2" (uuid 1aaa35b6-97e7-4510-8160-dddc1b5be94a))
(instances
(project "Polygonus-Universal-Base"
(path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/76f66c7e-94ea-4f9a-aa2e-a01725934e38"
(reference "R2") (unit 1)
)
)
)
)
(symbol (lib_id "power:+3.3V") (at 165.735 75.565 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 1a79262c-fe32-43de-bf6f-db45e0a02169)
(property "Reference" "#PWR037" (at 165.735 79.375 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "+3.3V" (at 165.735 71.755 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 165.735 75.565 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 165.735 75.565 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid fefa82b9-f8bb-4644-8b86-f40a5cc1b2b0))
(instances
(project "Polygonus-Universal-Base"
(path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/76f66c7e-94ea-4f9a-aa2e-a01725934e38"
(reference "#PWR037") (unit 1)
)
)
)
)
(symbol (lib_name "GND_1") (lib_id "power:GND") (at 173.355 106.68 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 269ac792-a8a4-44cb-a977-7ec304ff9c7e)
(property "Reference" "#PWR070" (at 173.355 113.03 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (at 173.355 111.76 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Footprint" "" (at 173.355 106.68 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 173.355 106.68 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid ad72e13c-e362-4246-a274-5b54cef2c0f8))
(instances
(project "Polygonus-Universal-Base"
(path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55"
(reference "#PWR070") (unit 1)
)
(path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/2889b04e-b195-449f-8a75-049e865cc173"
(reference "#PWR080") (unit 1)
)
(path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/10870bd0-e7b2-41e0-a73b-86c976bc9253"
(reference "#PWR081") (unit 1)
)
(path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/76f66c7e-94ea-4f9a-aa2e-a01725934e38"
(reference "#PWR033") (unit 1)
)
)
)
)
(symbol (lib_id "Device:C") (at 118.11 85.09 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 2a9a27cc-9173-448c-b423-1215ecbd5d18)
(property "Reference" "C4" (at 121.031 83.9216 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "1n" (at 121.031 86.233 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Capacitor_SMD:C_0805_2012Metric" (at 119.0752 88.9 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 118.11 85.09 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "LCSC" "C46653" (at 118.11 85.09 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "LCSC_ext" "0" (at 118.11 85.09 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 28ed7ab7-9e7b-44a4-a083-0a0ae0729d4c))
(pin "2" (uuid db603106-ba39-4546-8062-7c1db4011d42))
(instances
(project "Polygonus-Universal-Base"
(path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/76f66c7e-94ea-4f9a-aa2e-a01725934e38"
(reference "C4") (unit 1)
)
)
)
)
(symbol (lib_id "Jumper:Jumper_3_Bridged12") (at 173.355 100.33 270) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 38c8f4bf-7da4-4ddf-9b99-e5b84c691b4b)
(property "Reference" "JP2" (at 175.0568 99.1616 90)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "Jumper_3_Bridged12" (at 175.0568 101.473 90)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "Footprint" "Jumper:SolderJumper-3_P1.3mm_Bridged12_RoundedPad1.0x1.5mm" (at 173.355 100.33 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 173.355 100.33 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "LCSC" "N/A" (at 173.355 100.33 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid b78b45b4-0855-4650-9434-8f13f0a0a196))
(pin "2" (uuid bdad2d49-1d52-4fff-a11a-55a5212b3d05))
(pin "3" (uuid 374c457c-ac5e-4b57-b233-74ad7fc1cbf2))
(instances
(project "Polygonus-Universal-Base"
(path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/76f66c7e-94ea-4f9a-aa2e-a01725934e38"
(reference "JP2") (unit 1)
)
)
)
)
(symbol (lib_name "GND_1") (lib_id "power:GND") (at 123.19 109.855 270) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 3fc1a086-b9f1-45cb-84d7-8f362616fc66)
(property "Reference" "#PWR070" (at 116.84 109.855 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (at 118.11 109.855 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Footprint" "" (at 123.19 109.855 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 123.19 109.855 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid c9b94aa9-df7e-409c-aa69-2278d1b99923))
(instances
(project "Polygonus-Universal-Base"
(path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55"
(reference "#PWR070") (unit 1)
)
(path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/2889b04e-b195-449f-8a75-049e865cc173"
(reference "#PWR080") (unit 1)
)
(path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/10870bd0-e7b2-41e0-a73b-86c976bc9253"
(reference "#PWR081") (unit 1)
)
(path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/76f66c7e-94ea-4f9a-aa2e-a01725934e38"
(reference "#PWR035") (unit 1)
)
)
)
)
(symbol (lib_id "Device:R") (at 113.03 90.17 270) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 41badf65-56f7-4a0e-bfd3-938f5b249e14)
(property "Reference" "R5" (at 113.03 84.9122 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "4.7k" (at 113.03 90.17 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Resistor_SMD:R_0805_2012Metric" (at 113.03 88.392 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 113.03 90.17 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "PN" "" (at 113.03 90.17 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "LCSC" "C17673" (at 113.03 90.17 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "LCSC_ext" "0" (at 113.03 90.17 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid a8da2145-5072-47f0-af46-4f6fa8f4a00f))
(pin "2" (uuid 0d88bd36-1361-4ce8-bb03-b0039fbbbd61))
(instances
(project "Polygonus-Universal-Base"
(path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/76f66c7e-94ea-4f9a-aa2e-a01725934e38"
(reference "R5") (unit 1)
)
)
)
)
(symbol (lib_id "Device:R") (at 125.73 85.09 180) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 53d394fd-9fda-4789-b6b3-9add904107e8)
(property "Reference" "R6" (at 130.9878 85.09 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "DNP" (at 125.73 85.09 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Resistor_SMD:R_0805_2012Metric" (at 127.508 85.09 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 125.73 85.09 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "PN" "603-RC0402FR-075KL" (at 125.73 85.09 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "LCSC" "DNP" (at 125.73 85.09 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 91dd0515-7dbd-41b5-82a1-073dd5818a7d))
(pin "2" (uuid d3a9aa37-1c76-49cc-a306-686770e90ae4))
(instances
(project "Polygonus-Universal-Base"
(path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/76f66c7e-94ea-4f9a-aa2e-a01725934e38"
(reference "R6") (unit 1)
)
)
)