-
Notifications
You must be signed in to change notification settings - Fork 1
/
triggers.kicad_sch
1088 lines (1060 loc) · 41.2 KB
/
triggers.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 830aee7f-dfce-42cd-85ef-6370f6dc02f5)
(paper "A4")
(lib_symbols
(symbol "Device:C" (pin_numbers hide) (pin_names (offset 0.254)) (in_bom yes) (on_board yes)
(property "Reference" "C" (id 0) (at 0.635 2.54 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "C" (id 1) (at 0.635 -2.54 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (id 2) (at 0.9652 -3.81 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "cap capacitor" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Unpolarized capacitor" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "C_*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "C_0_1"
(polyline
(pts
(xy -2.032 -0.762)
(xy 2.032 -0.762)
)
(stroke (width 0.508) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -2.032 0.762)
(xy 2.032 0.762)
)
(stroke (width 0.508) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "C_1_1"
(pin passive line (at 0 3.81 270) (length 2.794)
(name "~" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -3.81 90) (length 2.794)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Device:R" (pin_numbers hide) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "R" (id 0) (at 2.032 0 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "R" (id 1) (at 0 0 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at -1.778 0 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "R res resistor" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Resistor" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "R_*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "R_0_1"
(rectangle (start -1.016 -2.54) (end 1.016 2.54)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "R_1_1"
(pin passive line (at 0 3.81 270) (length 1.27)
(name "~" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -3.81 90) (length 1.27)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Jumper:Jumper_3_Bridged12" (pin_names (offset 0) hide) (in_bom yes) (on_board yes)
(property "Reference" "JP" (id 0) (at -2.54 -2.54 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "Jumper_3_Bridged12" (id 1) (at 0 2.794 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "Jumper SPDT" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Jumper, 3-pole, pins 1+2 closed/bridged" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "Jumper* TestPoint*3Pads* TestPoint*Bridge*" (id 6) (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) (color 0 0 0 0))
(fill (type none))
)
(circle (center 0 0) (radius 0.508)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(circle (center 3.302 0) (radius 0.508)
(stroke (width 0) (type default) (color 0 0 0 0))
(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) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 -1.27)
(xy 0 -0.508)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(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" (id 0) (at 0 1.905 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "DNP" (id 1) (at 0 0 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Simon:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder" (id 2) (at 0 1.778 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 "LCSC" "DNP" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "R res resistor" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Resistor" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "R_*" (id 7) (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) (color 0 0 0 0))
(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" (id 0) (at 5.08 -12.065 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "MAX9924" (id 1) (at 5.715 11.43 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Package_SO:MSOP-10_3x3mm_P0.5mm" (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 "LCSC" "N/A" (id 4) (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) (color 0 0 0 0))
(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:GND" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "#PWR" (id 0) (at 0 -6.35 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (id 1) (at 0 -3.81 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "power-flag" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Power symbol creates a global label with name \"GND\" , ground" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "GND_0_1"
(polyline
(pts
(xy 0 0)
(xy 0 -1.27)
(xy 1.27 -1.27)
(xy 0 -2.54)
(xy -1.27 -1.27)
(xy 0 -1.27)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "GND_1_1"
(pin power_in line (at 0 0 270) (length 0) hide
(name "GND" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "power:PWR_FLAG" (power) (pin_numbers hide) (pin_names (offset 0) hide) (in_bom yes) (on_board yes)
(property "Reference" "#FLG" (id 0) (at 0 1.905 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "PWR_FLAG" (id 1) (at 0 3.81 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "power-flag" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Special symbol for telling ERC where power comes from" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "PWR_FLAG_0_0"
(pin power_out line (at 0 0 90) (length 0)
(name "pwr" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
(symbol "PWR_FLAG_0_1"
(polyline
(pts
(xy 0 0)
(xy 0 1.27)
(xy -1.016 1.905)
(xy 0 2.54)
(xy 1.016 1.905)
(xy 0 1.27)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
)
)
(junction (at 154.94 97.79) (diameter 0) (color 0 0 0 0)
(uuid 0de14282-7cc2-409b-815a-75b607af007c)
)
(junction (at 130.81 74.93) (diameter 0) (color 0 0 0 0)
(uuid 13e8e380-bb40-46bc-912c-5187318727c6)
)
(junction (at 152.4 97.79) (diameter 0) (color 0 0 0 0)
(uuid 31775690-cfcb-4af8-897e-d3015c6f5459)
)
(junction (at 138.4319 106.7956) (diameter 0) (color 0 0 0 0)
(uuid 3fada296-287e-4c5d-a2d7-b65eae35a9a0)
)
(junction (at 140.97 97.79) (diameter 0) (color 0 0 0 0)
(uuid 50de7b78-1241-4aff-aa2a-e2a6a574c6e1)
)
(junction (at 130.81 85.09) (diameter 0) (color 0 0 0 0)
(uuid 5515c735-5cb5-48e5-bfca-e781b067d2d6)
)
(junction (at 170.815 80.01) (diameter 0) (color 0 0 0 0)
(uuid 5e15e811-18a6-4e9a-bae3-583b1634311b)
)
(junction (at 172.085 87.63) (diameter 0) (color 0 0 0 0)
(uuid 628e4825-a201-48a3-bbe8-55f8491fa40d)
)
(junction (at 185.42 94.615) (diameter 0) (color 0 0 0 0)
(uuid 748562be-75d1-4cbd-8a32-4d6038fc58db)
)
(junction (at 123.19 74.93) (diameter 0) (color 0 0 0 0)
(uuid 8804ac3b-c636-4dd9-97bf-f0c4cc720a24)
)
(junction (at 123.19 85.09) (diameter 0) (color 0 0 0 0)
(uuid b1ad82d0-2183-4ca4-a24e-3ac758773af4)
)
(junction (at 138.43 92.71) (diameter 0) (color 0 0 0 0)
(uuid b963fd24-0780-4680-8614-fe86ef253063)
)
(junction (at 128.27 97.79) (diameter 0) (color 0 0 0 0)
(uuid e95a429f-c83b-4168-bba7-25223e15fe91)
)
(junction (at 138.43 100.8213) (diameter 0) (color 0 0 0 0)
(uuid ed0b182c-31e1-4e75-8726-ffb5b665ed77)
)
(junction (at 154.94 109.22) (diameter 0) (color 0 0 0 0)
(uuid f00a234f-0cbe-4c47-b1db-c5205f5a2df7)
)
(wire (pts (xy 135.255 83.82) (xy 135.255 85.09))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 03748331-c066-4d57-aa54-2f8ca06e3f46)
)
(wire (pts (xy 128.27 92.71) (xy 128.27 97.79))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 05675298-f097-41c3-8937-48a11a15ac73)
)
(wire (pts (xy 167.64 87.63) (xy 172.085 87.63))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0af1a926-bb30-402c-9d54-638d8c54193e)
)
(wire (pts (xy 135.255 74.93) (xy 135.255 76.2))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0b554465-cee0-4999-8e47-2d412a5279f9)
)
(wire (pts (xy 130.81 76.2) (xy 130.81 74.93))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0ec7133e-8c30-425e-8403-04abe0096bde)
)
(wire (pts (xy 170.815 78.105) (xy 170.815 80.01))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0fa8f216-7976-445e-819d-2f4ec93065a6)
)
(wire (pts (xy 170.815 83.185) (xy 170.815 80.01))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1075c308-b5bb-44bc-847a-178364e5c8cd)
)
(wire (pts (xy 185.42 94.615) (xy 193.675 94.615))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 143d115d-e778-46ad-8fed-91280a580039)
)
(wire (pts (xy 135.255 76.2) (xy 142.24 76.2))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 15d7c1c2-3ecd-4ea8-bfca-561eed051a79)
)
(wire (pts (xy 138.43 100.8213) (xy 138.43 92.71))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1b52a85f-b15f-4c4d-ab80-4ac1d5208a46)
)
(wire (pts (xy 135.89 100.8213) (xy 138.43 100.8213))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 21139fd5-2600-4f3b-8ffa-de1972f9dc50)
)
(wire (pts (xy 130.81 74.93) (xy 123.19 74.93))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 258de434-d2cc-4a44-b904-8aface1fef16)
)
(wire (pts (xy 168.91 92.71) (xy 167.64 92.71))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 260e2857-264e-40f6-b494-86d2c0a31cac)
)
(wire (pts (xy 185.42 97.79) (xy 185.42 94.615))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 26f368d8-2102-429b-a147-30a383c7326c)
)
(wire (pts (xy 138.43 92.71) (xy 142.24 92.71))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 271a687d-6e40-45ad-a78d-7ba93ae31c78)
)
(wire (pts (xy 101.6 74.93) (xy 104.775 74.93))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2d2f9f7d-9764-40cf-a453-54a13a06e69d)
)
(wire (pts (xy 170.815 80.01) (xy 167.64 80.01))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3518ac00-2f60-497f-8308-410458bf3d8a)
)
(wire (pts (xy 121.92 74.93) (xy 123.19 74.93))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 364f7b23-ab38-42e3-8bd0-064129274306)
)
(wire (pts (xy 140.97 72.39) (xy 154.94 72.39))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3be4a727-cf9d-4071-a50b-9aed8be691c6)
)
(wire (pts (xy 123.19 85.09) (xy 130.81 85.09))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3cb812ba-4ad3-4778-8cc9-4019323407ef)
)
(wire (pts (xy 101.6 85.09) (xy 104.775 85.09))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 48ccc125-1fd1-4b05-8325-d0f67f178687)
)
(wire (pts (xy 172.085 95.25) (xy 174.625 95.25))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4a7e4791-edf0-487d-b443-67f42be455e7)
)
(wire (pts (xy 189.23 83.185) (xy 170.815 83.185))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4be2886c-3881-4e63-a4c5-fe28538180f1)
)
(wire (pts (xy 138.4319 106.7956) (xy 138.43 100.8213))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4bff636d-052c-438c-8f4e-729ee9ca63d5)
)
(wire (pts (xy 136.0945 106.7956) (xy 138.4319 106.7956))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4f106ff8-2030-4763-94ba-b1802af46823)
)
(wire (pts (xy 189.23 109.22) (xy 189.23 83.185))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5343ca9c-d9ff-43c8-9a8d-12552e1e3e99)
)
(wire (pts (xy 152.4 97.79) (xy 154.94 97.79))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 57901b86-9efa-4978-853a-8cc09a5cb55f)
)
(wire (pts (xy 140.97 97.79) (xy 152.4 97.79))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 581f870d-f595-426d-bfc8-d3eb60b872e4)
)
(wire (pts (xy 128.27 97.79) (xy 140.97 97.79))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 590c0aad-8e62-41b8-a678-a8f37764a7d5)
)
(wire (pts (xy 114.3 74.93) (xy 112.395 74.93))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 61031825-272e-475d-b44c-751c11268842)
)
(wire (pts (xy 112.395 85.09) (xy 114.3 85.09))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 68f768e1-4e42-4d17-901f-c69d96aac222)
)
(wire (pts (xy 154.94 97.79) (xy 185.42 97.79))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 6c25f788-d023-43c6-972d-921ca935381c)
)
(wire (pts (xy 185.42 94.615) (xy 185.42 88.9))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 70b3126b-e649-4ba4-898c-3d45c5cf3039)
)
(wire (pts (xy 123.19 85.09) (xy 123.19 83.82))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 732cb27a-cda2-4dbd-af9a-c7e37be31c19)
)
(wire (pts (xy 135.89 92.71) (xy 138.43 92.71))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 79dc4381-2998-4ec9-bf33-afd0bdb9ed08)
)
(wire (pts (xy 121.92 85.09) (xy 123.19 85.09))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 7a21cf52-bc7e-4c89-94eb-b71c65517b55)
)
(wire (pts (xy 138.43 109.22) (xy 141.605 109.22))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 7ad537cf-dda4-4a2f-9bde-b5257107fc81)
)
(wire (pts (xy 140.97 97.79) (xy 140.97 72.39))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8c699524-c6b7-4d78-9fe1-e18ff5c968df)
)
(wire (pts (xy 175.26 80.01) (xy 170.815 80.01))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8cc4f397-ab78-4e14-a97c-05b690408803)
)
(wire (pts (xy 123.19 74.93) (xy 123.19 76.2))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 99c87c50-f570-4c85-9931-dd105d5ed283)
)
(wire (pts (xy 100.33 97.79) (xy 128.27 97.79))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 9d51954e-0e17-4a72-b736-81822ab2f3c5)
)
(wire (pts (xy 130.81 85.09) (xy 130.81 83.82))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 9e7261cc-a4c8-4301-8211-695eb9c7446d)
)
(wire (pts (xy 165.1 109.22) (xy 189.23 109.22))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a11ea8f7-3b1d-466a-a03d-fdf0b7a8fceb)
)
(wire (pts (xy 168.91 94.615) (xy 168.91 92.71))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a72b9da8-589b-45ae-a2e0-4bd5e50dc3c5)
)
(wire (pts (xy 130.81 74.93) (xy 135.255 74.93))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid afa25061-bb52-43e1-a5b3-a722efaf77f2)
)
(wire (pts (xy 135.255 85.09) (xy 130.81 85.09))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid bc3ef0f4-d764-419d-8573-993d31d31445)
)
(wire (pts (xy 172.085 87.63) (xy 172.085 95.25))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c198679c-717b-42fa-a250-be10c0e3d36c)
)
(wire (pts (xy 154.94 109.22) (xy 149.225 109.22))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c7ff73d3-f293-41ab-bad7-02b95ed6e695)
)
(wire (pts (xy 154.94 97.79) (xy 154.94 109.22))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid daa13f1b-36b7-4a22-8f52-39fbec364b66)
)
(wire (pts (xy 157.48 109.22) (xy 154.94 109.22))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid dad439de-33a4-447a-9b7b-f2bdb1ed7e9e)
)
(wire (pts (xy 185.42 88.9) (xy 178.435 88.9))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid db0a9233-0bbb-462b-b74e-776e2f9eae47)
)
(wire (pts (xy 138.4319 106.7956) (xy 138.43 109.22))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid ea4a6025-382c-4179-8ca9-70e2cc2b67ca)
)
(wire (pts (xy 142.24 83.82) (xy 135.255 83.82))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid eff49e9a-1a9f-4054-8716-80eeef1f6959)
)
(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 105.41 115.57 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 2504c67e-dcac-43ef-acf5-010fbf8e275e)
)
(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 100.33 63.5 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 25891a7d-5ca8-485e-8d76-29a8b6e1dae0)
)
(hierarchical_label "+5V" (shape input) (at 100.33 97.79 180)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 18cf09e9-8eea-4046-a208-9d67414b34fd)
)
(hierarchical_label "+3.3V" (shape input) (at 170.815 70.485 180)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 34037a18-4ee2-483d-b051-db3ed74a9a26)
)
(hierarchical_label "VR1+" (shape input) (at 101.6 74.93 180)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 749b5e84-2b7a-4238-975d-a97e552ab8fc)
)
(hierarchical_label "VR1_OUT" (shape output) (at 175.26 80.01 0)
(effects (font (size 1.27 1.27)) (justify left))
(uuid dd4b7ff6-8e1f-4972-872e-c0fdf79dbf59)
)
(hierarchical_label "VR1-" (shape input) (at 101.6 85.09 180)
(effects (font (size 1.27 1.27)) (justify right))
(uuid f67cfab7-8943-4f59-bbfb-0ab68a4d7c0d)
)
(symbol (lib_id "Device:R") (at 108.585 85.09 270) (unit 1)
(in_bom yes) (on_board yes)
(uuid 0bd3ae06-c7a4-4c40-ac96-165de2196200)
(property "Reference" "R2" (id 0) (at 108.585 79.8322 90))
(property "Value" "4.7k" (id 1) (at 108.585 85.09 90))
(property "Footprint" "Resistor_SMD:R_0805_2012Metric" (id 2) (at 108.585 83.312 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 108.585 85.09 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "PN" "" (id 4) (at 108.585 85.09 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "LCSC" "C17673" (id 5) (at 108.585 85.09 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "LCSC_ext" "0" (id 6) (at 108.585 85.09 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 0cc20d10-da49-4751-8aec-79279d1ad7ad))
(pin "2" (uuid cbcb43ee-5371-462b-81af-dd558facec61))
)
(symbol (lib_id "Device:C") (at 132.2845 106.7956 270) (unit 1)
(in_bom yes) (on_board yes)
(uuid 2c8e825d-6b3d-41c0-a78b-d002906b71c4)
(property "Reference" "C2" (id 0) (at 127.2045 109.9706 90))
(property "Value" "1u" (id 1) (at 132.2845 109.9706 90))
(property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 128.4745 107.7608 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 132.2845 106.7956 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "LCSC" "C15849" (id 4) (at 132.2845 106.7956 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "LCSC_ext" "0" (id 5) (at 132.2845 106.7956 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 1f70f301-365b-4bf3-883c-59357e017501))
(pin "2" (uuid 5d3109c3-af88-4052-91c9-ebca37e2bef0))
)
(symbol (lib_id "Jumper:Jumper_3_Bridged12") (at 178.435 95.25 270) (unit 1)
(in_bom yes) (on_board yes)
(uuid 667e58fd-638b-48d8-8590-5f335cf78584)
(property "Reference" "JP1" (id 0) (at 180.1368 94.0816 90)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "Jumper_3_Bridged12" (id 1) (at 180.1368 96.393 90)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "Footprint" "Jumper:SolderJumper-3_P1.3mm_Bridged12_RoundedPad1.0x1.5mm" (id 2) (at 178.435 95.25 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 178.435 95.25 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "LCSC" "N/A" (id 4) (at 178.435 95.25 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 534142b8-d373-48eb-958c-60fc068c911e))
(pin "2" (uuid 109311f9-482a-44da-9bfd-3b160d0a5996))
(pin "3" (uuid dae4bd12-ba86-4a9b-983d-8878b694f71e))
)
(symbol (lib_id "Device:R") (at 108.585 74.93 270) (unit 1)
(in_bom yes) (on_board yes)
(uuid 68ba3686-54f3-42b1-847b-d7576a207bac)
(property "Reference" "R1" (id 0) (at 108.585 69.6722 90))
(property "Value" "4.7k" (id 1) (at 108.585 74.93 90))
(property "Footprint" "Resistor_SMD:R_0805_2012Metric" (id 2) (at 108.585 73.152 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 108.585 74.93 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "PN" "" (id 4) (at 108.585 74.93 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "LCSC" "C17673" (id 5) (at 108.585 74.93 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "LCSC_ext" "0" (id 6) (at 108.585 74.93 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 17a37dc2-1fc7-4198-bc2d-40147f9021f4))
(pin "2" (uuid f2eeb289-74f8-46da-801f-0aafb6af9995))
)
(symbol (lib_id "Device:R") (at 132.08 100.8213 90) (unit 1)
(in_bom yes) (on_board yes)
(uuid 6c347053-8fc9-4fd0-999a-80cd1d05ea04)
(property "Reference" "R7" (id 0) (at 132.08 98.9163 90))
(property "Value" "1k" (id 1) (at 132.08 100.8213 90))
(property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 132.08 102.5993 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 132.08 100.8213 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "LCSC" "C11702" (id 4) (at 132.08 100.8213 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "LCSC_ext" "0" (id 5) (at 132.08 100.8213 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 052e1588-3d10-4882-8522-7ef5c69d2fb5))
(pin "2" (uuid 3134b71b-94df-4d19-a697-2cd2ff759022))
)
(symbol (lib_id "Simon:DNP") (at 145.415 109.22 270) (unit 1)
(in_bom yes) (on_board yes)
(uuid 721b1f22-9dad-4fec-aa7e-f78787746a2d)
(property "Reference" "R8" (id 0) (at 145.415 107.315 90))
(property "Value" "DNP" (id 1) (at 145.415 109.22 90))
(property "Footprint" "Simon:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder" (id 2) (at 147.193 109.22 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 145.415 109.22 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "LCSC" "DNP" (id 4) (at 145.415 109.22 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid cd9dbe8a-6e02-485e-bb92-264485524ca1))
(pin "2" (uuid 514d1196-0c67-46cf-9eec-193cce1f7130))
)
(symbol (lib_id "Device:R") (at 118.11 74.93 270) (unit 1)
(in_bom yes) (on_board yes)
(uuid 742a7ad1-ff35-45ea-8556-9feb2169b805)
(property "Reference" "R3" (id 0) (at 118.11 69.6722 90))
(property "Value" "4.7k" (id 1) (at 118.11 74.93 90))
(property "Footprint" "Resistor_SMD:R_0805_2012Metric" (id 2) (at 118.11 73.152 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 118.11 74.93 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "PN" "" (id 4) (at 118.11 74.93 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "LCSC" "C17673" (id 5) (at 118.11 74.93 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "LCSC_ext" "0" (id 6) (at 118.11 74.93 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 3c0ba1db-bd1b-4aef-8d74-7186055f3568))
(pin "2" (uuid fa04002d-f93d-4686-9017-aa8b66517b3c))
)
(symbol (lib_id "power:PWR_FLAG") (at 172.085 87.63 270) (unit 1)
(in_bom yes) (on_board yes)
(uuid 767373bd-c2c9-4d54-9ac3-95d1709e757f)
(property "Reference" "#FLG0101" (id 0) (at 173.99 87.63 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "PWR_FLAG" (id 1) (at 175.3362 87.63 90)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "Footprint" "" (id 2) (at 172.085 87.63 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 172.085 87.63 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid fec5faf5-4b19-4889-a5df-cba009403282))
)
(symbol (lib_id "power:GND") (at 178.435 101.6 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 7a04f607-c4ad-4b98-b148-b939321ba50b)
(property "Reference" "#PWR0135" (id 0) (at 178.435 107.95 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (id 1) (at 178.562 104.8512 90)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Footprint" "" (id 2) (at 178.435 101.6 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 178.435 101.6 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 4eb1d63e-52ef-475e-9022-de2d499cbfe0))
)
(symbol (lib_id "Device:R") (at 170.815 74.295 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 8ad0abdd-510b-4c4f-a57a-6c5afce9c440)
(property "Reference" "R10" (id 0) (at 172.593 73.1266 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "4.7k" (id 1) (at 172.593 75.438 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Resistor_SMD:R_0805_2012Metric" (id 2) (at 169.037 74.295 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 170.815 74.295 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "LCSC" "C17673" (id 4) (at 170.815 74.295 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "LCSC_ext" "0" (id 5) (at 170.815 74.295 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid cd9195dd-a68c-478b-8741-ec54579fc077))
(pin "2" (uuid 55b007b2-b41c-4c26-b61d-32a56c124d58))
)
(symbol (lib_id "power:GND") (at 128.27 100.8213 270) (unit 1)
(in_bom yes) (on_board yes)
(uuid 917af90a-cc50-46da-b231-04af48f69962)
(property "Reference" "#PWR0142" (id 0) (at 121.92 100.8213 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (id 1) (at 125.0188 100.9483 90)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Footprint" "" (id 2) (at 128.27 100.8213 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 128.27 100.8213 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 6cb0bfd5-1840-4256-829b-0a434e9cc4da))
)
(symbol (lib_id "power:GND") (at 193.675 102.235 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 9c425f96-c2ac-4da2-ad66-d65c0751c5c0)
(property "Reference" "#PWR0137" (id 0) (at 193.675 108.585 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (id 1) (at 193.802 106.6292 0))
(property "Footprint" "" (id 2) (at 193.675 102.235 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 193.675 102.235 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 0f868636-a9fe-43d0-9ab7-ed1184116232))
)
(symbol (lib_id "Device:C") (at 123.19 80.01 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid a4e22a47-8081-427b-a284-fdb057c6b905)
(property "Reference" "C1" (id 0) (at 126.111 78.8416 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "1n" (id 1) (at 126.111 81.153 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 124.1552 83.82 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 123.19 80.01 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "LCSC" "C1588" (id 4) (at 123.19 80.01 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "LCSC_ext" "0" (id 5) (at 123.19 80.01 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid c0aaa70c-2395-4a81-b073-0153c71920cd))
(pin "2" (uuid d2f04405-65c1-4258-934f-0b1cdd01c737))
)
(symbol (lib_id "Simon:MAX9924") (at 154.94 85.09 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid a97e3852-3c1c-4464-84aa-d5b041acfe72)
(property "Reference" "U3" (id 0) (at 160.02 97.155 0))
(property "Value" "MAX9924" (id 1) (at 160.655 73.66 0))
(property "Footprint" "Package_SO:MSOP-10_3x3mm_P0.5mm" (id 2) (at 154.94 85.09 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 154.94 85.09 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "LCSC" "N/A" (id 4) (at 154.94 85.09 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 1dcdb473-7f98-4824-b563-5b06102857b1))
(pin "10" (uuid 09d9e456-47bb-412d-9874-8dc8d76c4c82))
(pin "2" (uuid f35bf569-4e2c-4d1f-9729-56be15c3c55c))
(pin "3" (uuid 260a686d-0ea4-4710-9271-42afe4aaf251))
(pin "4" (uuid 9e68c8e7-e8fd-4977-b9c3-edc67daa54e6))
(pin "5" (uuid 1f632f76-572a-4ead-87d0-6570205fa141))
(pin "6" (uuid 402c2f01-4ade-43d0-ad54-88dba343ebc1))
(pin "7" (uuid 906d436e-f9a5-4903-b1fb-3eb672bf2619))
(pin "8" (uuid 94062c5c-0205-48cd-835d-0cc87df473b9))
(pin "9" (uuid d064e49a-99d5-44e3-81f6-bd8a4b4642cf))
)
(symbol (lib_id "Device:R") (at 132.08 92.71 90) (unit 1)
(in_bom yes) (on_board yes)
(uuid ad412018-57e9-4c1a-8093-eaaacdcc98d0)
(property "Reference" "R6" (id 0) (at 132.08 90.805 90))
(property "Value" "1k" (id 1) (at 132.08 92.71 90))
(property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 132.08 94.488 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 132.08 92.71 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "LCSC" "C11702" (id 4) (at 132.08 92.71 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "LCSC_ext" "0" (id 5) (at 132.08 92.71 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 1b1d0345-1365-4862-a6df-51ce483281a8))
(pin "2" (uuid 7657c0e2-b07d-42b9-81ed-d40564fcfa90))
)
(symbol (lib_id "Device:C") (at 193.675 98.425 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid bca65c75-129f-4eae-b34d-c5596dd8827c)
(property "Reference" "C3" (id 0) (at 196.596 97.2566 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "100n" (id 1) (at 196.596 99.568 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 194.6402 102.235 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 193.675 98.425 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "LCSC" "C14663" (id 4) (at 193.675 98.425 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "LCSC_ext" "0" (id 5) (at 193.675 98.425 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid f352bf7e-78ab-4a15-b4ad-143e63eb07cf))
(pin "2" (uuid 73020f4e-0646-42c6-9c58-c614b043f9c4))
)
(symbol (lib_id "Simon:DNP") (at 161.29 109.22 270) (unit 1)
(in_bom yes) (on_board yes)
(uuid c06812c5-3b15-4311-991a-17fa7eaf1d24)
(property "Reference" "R9" (id 0) (at 161.29 107.315 90))
(property "Value" "DNP" (id 1) (at 161.29 109.22 90))
(property "Footprint" "Simon:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder" (id 2) (at 163.068 109.22 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 161.29 109.22 0)
(effects (font (size 1.27 1.27)) hide)
)