-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMAX30102.kicad_sch
1038 lines (1016 loc) · 36.6 KB
/
MAX30102.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 c9a9e729-1580-4a31-a340-e7c3acfe3352)
(paper "A4")
(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 "Regulator_Linear:AP2127K-1.8" (pin_names (offset 0.254)) (in_bom yes) (on_board yes)
(property "Reference" "U" (at -5.08 5.715 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "AP2127K-1.8" (at 0 5.715 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Package_TO_SOT_SMD:SOT-23-5" (at 0 8.255 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "https://www.diodes.com/assets/Datasheets/AP2127.pdf" (at 0 2.54 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "linear regulator ldo fixed positive" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "300mA low dropout linear regulator, shutdown pin, 2.5V-6V input voltage, 1.8V fixed positive output, SOT-23-5" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "SOT?23?5*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "AP2127K-1.8_0_1"
(rectangle (start -5.08 4.445) (end 5.08 -5.08)
(stroke (width 0.254) (type default))
(fill (type background))
)
)
(symbol "AP2127K-1.8_1_1"
(pin power_in line (at -7.62 2.54 0) (length 2.54)
(name "VIN" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 0 -7.62 90) (length 2.54)
(name "GND" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin input line (at -7.62 0 0) (length 2.54)
(name "EN" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin no_connect line (at 5.08 0 180) (length 2.54) hide
(name "NC" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin power_out line (at 7.62 2.54 180) (length 2.54)
(name "VOUT" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Sensor:MAX30102" (in_bom yes) (on_board yes)
(property "Reference" "U" (at 7.62 15.24 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "MAX30102" (at 7.62 12.7 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "OptoDevice:Maxim_OLGA-14_3.3x5.6mm_P0.8mm" (at 0 -2.54 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "https://datasheets.maximintegrated.com/en/ds/MAX30102.pdf" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "Heart Rate" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Heart Rate Sensor, 14-OLGA" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "Maxim*OLGA*3.3x5.6mm*P0.8mm*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "MAX30102_0_1"
(rectangle (start -7.62 10.16) (end 7.62 -10.16)
(stroke (width 0.254) (type default))
(fill (type background))
)
)
(symbol "MAX30102_1_1"
(pin no_connect line (at -7.62 5.08 0) (length 2.54) hide
(name "NC" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 12.7 270) (length 2.54) hide
(name "VLED+" (effects (font (size 1.27 1.27))))
(number "10" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at -5.08 12.7 270) (length 2.54)
(name "VDD" (effects (font (size 1.27 1.27))))
(number "11" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 2.54 -12.7 90) (length 2.54)
(name "GND" (effects (font (size 1.27 1.27))))
(number "12" (effects (font (size 1.27 1.27))))
)
(pin output line (at 10.16 0 180) (length 2.54)
(name "~{INT}" (effects (font (size 1.27 1.27))))
(number "13" (effects (font (size 1.27 1.27))))
)
(pin no_connect line (at 7.62 2.54 180) (length 2.54) hide
(name "NC" (effects (font (size 1.27 1.27))))
(number "14" (effects (font (size 1.27 1.27))))
)
(pin input line (at -10.16 2.54 0) (length 2.54)
(name "SCL" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -10.16 0 0) (length 2.54)
(name "SDA" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at -2.54 -12.7 90) (length 2.54)
(name "PGND" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin no_connect line (at 7.62 -7.62 180) (length 2.54) hide
(name "NC" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
(pin no_connect line (at 7.62 -5.08 180) (length 2.54) hide
(name "NC" (effects (font (size 1.27 1.27))))
(number "6" (effects (font (size 1.27 1.27))))
)
(pin no_connect line (at -7.62 -2.54 0) (length 2.54) hide
(name "NC" (effects (font (size 1.27 1.27))))
(number "7" (effects (font (size 1.27 1.27))))
)
(pin no_connect line (at 7.62 5.08 180) (length 2.54) hide
(name "NC" (effects (font (size 1.27 1.27))))
(number "8" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 0 12.7 270) (length 2.54)
(name "VLED+" (effects (font (size 1.27 1.27))))
(number "9" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "power:+1V8" (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" "+1V8" (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 \"+1V8\"" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "+1V8_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 "+1V8_1_1"
(pin power_in line (at 0 0 90) (length 0) hide
(name "+1V8" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "power:+3V3" (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" "+3V3" (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 \"+3V3\"" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "+3V3_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 "+3V3_1_1"
(pin power_in line (at 0 0 90) (length 0) hide
(name "+3V3" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "power:GND" (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" (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_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"
(pin power_in line (at 0 0 270) (length 0) hide
(name "GND" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
)
(junction (at 113.03 102.87) (diameter 0) (color 0 0 0 0)
(uuid 092971dd-b2d0-4b3e-9f72-4b0fee422d46)
)
(junction (at 209.55 106.68) (diameter 0) (color 0 0 0 0)
(uuid 34044a92-e302-4823-be5b-d897129b5304)
)
(junction (at 161.29 104.14) (diameter 0) (color 0 0 0 0)
(uuid 3650bb30-6576-431f-8eec-fd00c8a7de8d)
)
(junction (at 119.38 113.03) (diameter 0) (color 0 0 0 0)
(uuid 4b0c4fb5-afa5-4729-9916-4b1a4bbe63ef)
)
(junction (at 191.77 120.65) (diameter 0) (color 0 0 0 0)
(uuid 7f935c2c-bc71-448d-874d-5a767f2a4ecd)
)
(junction (at 181.61 106.68) (diameter 0) (color 0 0 0 0)
(uuid 9828e065-53cc-4208-992b-d99d2d39f8a5)
)
(junction (at 91.44 102.87) (diameter 0) (color 0 0 0 0)
(uuid ae07c10c-1fba-42c8-bb95-ce9201b674b8)
)
(junction (at 181.61 104.14) (diameter 0) (color 0 0 0 0)
(uuid df87efa0-d30d-48ac-8cf4-39458abceb9b)
)
(junction (at 125.73 102.87) (diameter 0) (color 0 0 0 0)
(uuid e6885d90-73a6-4eb1-bc95-7154f93efcb3)
)
(wire (pts (xy 91.44 105.41) (xy 91.44 102.87))
(stroke (width 0) (type default))
(uuid 0adce031-1873-474e-8180-85d71cd39ddd)
)
(wire (pts (xy 181.61 113.03) (xy 181.61 106.68))
(stroke (width 0) (type default))
(uuid 0b8b90ff-04e7-47bb-9e96-de9d3629a4e7)
)
(wire (pts (xy 119.38 113.03) (xy 125.73 113.03))
(stroke (width 0) (type default))
(uuid 2586d101-aef1-4d38-84d2-c648b81a109f)
)
(wire (pts (xy 113.03 113.03) (xy 119.38 113.03))
(stroke (width 0) (type default))
(uuid 2f7f9e99-1fd5-4b66-88f7-b7435d193f52)
)
(wire (pts (xy 92.71 105.41) (xy 91.44 105.41))
(stroke (width 0) (type default))
(uuid 309edc89-7a92-4523-99ff-60bea36073b5)
)
(wire (pts (xy 85.09 102.87) (xy 91.44 102.87))
(stroke (width 0) (type default))
(uuid 390221c0-65a1-4f69-a89c-908d69ef7f15)
)
(wire (pts (xy 125.73 102.87) (xy 125.73 104.14))
(stroke (width 0) (type default))
(uuid 44e5e15a-525c-46ba-ada5-e7136f5fe0c4)
)
(wire (pts (xy 196.85 120.65) (xy 191.77 120.65))
(stroke (width 0) (type default))
(uuid 45f2dfd7-63ff-48bd-bccc-6d46755a8697)
)
(wire (pts (xy 209.55 105.41) (xy 209.55 106.68))
(stroke (width 0) (type default))
(uuid 50325cca-8474-497e-8a20-959cb8bb1b6d)
)
(wire (pts (xy 113.03 113.03) (xy 113.03 111.76))
(stroke (width 0) (type default))
(uuid 53b52a7c-0f31-491b-a258-4ce14cca28e1)
)
(wire (pts (xy 165.1 104.14) (xy 161.29 104.14))
(stroke (width 0) (type default))
(uuid 54a2cd7d-404f-4d59-aad7-d41d5da70492)
)
(wire (pts (xy 161.29 106.68) (xy 161.29 104.14))
(stroke (width 0) (type default))
(uuid 588bfdcc-2f3b-4bda-8a02-841c1b258ab0)
)
(wire (pts (xy 172.72 104.14) (xy 181.61 104.14))
(stroke (width 0) (type default))
(uuid 5f6e9669-5a62-4fc6-a4fe-abbe03adff95)
)
(wire (pts (xy 209.55 106.68) (xy 204.47 106.68))
(stroke (width 0) (type default))
(uuid 619bf335-852a-4515-b2f6-be122972dfda)
)
(wire (pts (xy 181.61 97.79) (xy 181.61 104.14))
(stroke (width 0) (type default))
(uuid 6561ef7e-75db-47f3-8b1e-d8b619a69b05)
)
(wire (pts (xy 191.77 120.65) (xy 191.77 119.38))
(stroke (width 0) (type default))
(uuid 6957a01e-45cd-4d4a-b85f-045d3457e57d)
)
(wire (pts (xy 119.38 115.57) (xy 119.38 113.03))
(stroke (width 0) (type default))
(uuid 6ccfc442-cd9a-4252-90c3-065b4831631a)
)
(wire (pts (xy 129.54 102.87) (xy 125.73 102.87))
(stroke (width 0) (type default))
(uuid 70b56be2-c934-475c-b229-11ab4b315866)
)
(wire (pts (xy 181.61 106.68) (xy 184.15 106.68))
(stroke (width 0) (type default))
(uuid 92fdbc7c-ed40-4b9b-85d1-4aa84e57e542)
)
(wire (pts (xy 113.03 102.87) (xy 107.95 102.87))
(stroke (width 0) (type default))
(uuid 95ab69a5-c4b6-45e8-872b-7381abe290fc)
)
(wire (pts (xy 161.29 104.14) (xy 161.29 100.33))
(stroke (width 0) (type default))
(uuid 966e329c-5f81-4848-a658-f721d163d855)
)
(wire (pts (xy 179.07 97.79) (xy 181.61 97.79))
(stroke (width 0) (type default))
(uuid 9727a885-c092-40f6-a763-062bc3c4a130)
)
(wire (pts (xy 196.85 119.38) (xy 196.85 120.65))
(stroke (width 0) (type default))
(uuid 97f6e932-c6e3-4b8b-985b-ce8a3cc550ea)
)
(wire (pts (xy 113.03 102.87) (xy 125.73 102.87))
(stroke (width 0) (type default))
(uuid 9b214f37-d7b0-4e3c-ae55-2efcc33f3c89)
)
(wire (pts (xy 180.34 113.03) (xy 181.61 113.03))
(stroke (width 0) (type default))
(uuid a0586717-110d-4820-a590-8ffe4ae49fc9)
)
(wire (pts (xy 91.44 102.87) (xy 92.71 102.87))
(stroke (width 0) (type default))
(uuid ae2be402-02f6-40a8-8688-04b8c90d2cde)
)
(wire (pts (xy 113.03 104.14) (xy 113.03 102.87))
(stroke (width 0) (type default))
(uuid b1dbf804-a874-484f-99af-a9eedd979954)
)
(wire (pts (xy 172.72 106.68) (xy 181.61 106.68))
(stroke (width 0) (type default))
(uuid cb4f8913-1cb3-4872-b20b-76662a9e55da)
)
(wire (pts (xy 209.55 106.68) (xy 215.9 106.68))
(stroke (width 0) (type default))
(uuid ce27bbb0-d784-42a4-908f-fa75def5a7ad)
)
(wire (pts (xy 100.33 113.03) (xy 100.33 115.57))
(stroke (width 0) (type default))
(uuid d60ea92a-8da0-4729-a434-d143c71b8207)
)
(wire (pts (xy 191.77 120.65) (xy 191.77 121.92))
(stroke (width 0) (type default))
(uuid df12c157-d798-40eb-9e54-a42522e703b6)
)
(wire (pts (xy 194.31 90.17) (xy 194.31 93.98))
(stroke (width 0) (type default))
(uuid e0dd2824-fba5-4371-88e3-f3e55f733f02)
)
(wire (pts (xy 189.23 90.17) (xy 189.23 93.98))
(stroke (width 0) (type default))
(uuid ed1e91c8-81cf-4e14-9031-9d178e3e9537)
)
(wire (pts (xy 125.73 113.03) (xy 125.73 111.76))
(stroke (width 0) (type default))
(uuid ef4af6e8-cdb9-4bf8-a175-15850ef3ac11)
)
(wire (pts (xy 209.55 96.52) (xy 209.55 97.79))
(stroke (width 0) (type default))
(uuid efb8afec-3b30-4be5-b3cd-53d26bde3d9e)
)
(wire (pts (xy 181.61 104.14) (xy 184.15 104.14))
(stroke (width 0) (type default))
(uuid f35da45a-e575-4139-b5b1-353502146b54)
)
(wire (pts (xy 161.29 106.68) (xy 165.1 106.68))
(stroke (width 0) (type default))
(uuid fbd1cf75-fc91-4e49-ae92-881a51173b03)
)
(global_label "Heart_rate_INT" (shape input) (at 215.9 106.68 0) (fields_autoplaced)
(effects (font (size 1 1)) (justify left))
(uuid 140efaf2-e814-4883-9ab7-1ad625fef311)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 228.9496 106.68 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "MAX30102_SDA" (shape input) (at 180.34 113.03 180) (fields_autoplaced)
(effects (font (size 1 1) (color 192 99 255 1)) (justify right))
(uuid e84103d1-9472-48bf-ad6f-754ab6e162a5)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 166.7663 113.03 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "MAX30102_SCL" (shape input) (at 179.07 97.79 180) (fields_autoplaced)
(effects (font (size 1 1) (color 192 99 255 1)) (justify right))
(uuid e992df73-e67f-4bef-a1dd-b72c849110ea)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 165.5439 97.79 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(symbol (lib_id "Device:C") (at 113.03 107.95 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 1803d1ac-c853-4b2f-9429-67f0cf126b67)
(property "Reference" "C20" (at 116.84 107.315 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "0.1uF" (at 116.84 109.855 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Capacitor_SMD:C_0402_1005Metric_Pad0.74x0.62mm_HandSolder" (at 113.9952 111.76 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 113.03 107.95 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid e982fa04-bd45-433f-a522-235f5bd5c998))
(pin "2" (uuid f4cfebd5-4b60-45ed-a816-b9e69fb9eb21))
(instances
(project "RP2040_SOS_band"
(path "/1d911b84-17e1-4d47-ac8f-a730104b53ed/d354c91b-03e4-4b78-829b-33cd8f15be96"
(reference "C20") (unit 1)
)
)
)
)
(symbol (lib_id "power:+3V3") (at 209.55 96.52 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 1f8d26d4-2cef-4ebc-9e93-1eb5de1c51c5)
(property "Reference" "#PWR08" (at 209.55 100.33 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "+3V3" (at 210.82 92.71 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 209.55 96.52 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 209.55 96.52 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 66c17c8c-dc46-46fc-9b2e-b76c63e86070))
(instances
(project "RP2040_SOS_band"
(path "/1d911b84-17e1-4d47-ac8f-a730104b53ed"
(reference "#PWR08") (unit 1)
)
(path "/1d911b84-17e1-4d47-ac8f-a730104b53ed/892de33d-264e-4bda-a61c-c8174f81e463"
(reference "#PWR06") (unit 1)
)
(path "/1d911b84-17e1-4d47-ac8f-a730104b53ed/d354c91b-03e4-4b78-829b-33cd8f15be96"
(reference "#PWR041") (unit 1)
)
)
)
)
(symbol (lib_id "Regulator_Linear:AP2127K-1.8") (at 100.33 105.41 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 34394019-0669-47a0-8aae-7e817c07787f)
(property "Reference" "U9" (at 100.33 96.52 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "AP2127K-1.8" (at 100.33 99.06 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Package_TO_SOT_SMD:SOT-23-5" (at 100.33 97.155 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "https://www.diodes.com/assets/Datasheets/AP2127.pdf" (at 100.33 102.87 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 1dd198e3-4d39-4106-8107-11cc84c13899))
(pin "2" (uuid ced7eb44-aa39-4d02-b9fd-56644a5486d9))
(pin "3" (uuid 7a722814-ea4b-428f-8e36-d5a6d2acde0b))
(pin "4" (uuid e8574c48-7476-4c81-809b-facc0af317df))
(pin "5" (uuid 93615044-fbf1-43e5-b35d-4c338039a697))
(instances
(project "RP2040_SOS_band"
(path "/1d911b84-17e1-4d47-ac8f-a730104b53ed/892de33d-264e-4bda-a61c-c8174f81e463"
(reference "U9") (unit 1)
)
(path "/1d911b84-17e1-4d47-ac8f-a730104b53ed/d354c91b-03e4-4b78-829b-33cd8f15be96"
(reference "U7") (unit 1)
)
)
)
)
(symbol (lib_id "power:+3V3") (at 194.31 90.17 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 374e9168-3edb-4e42-8fad-0bb7676332e1)
(property "Reference" "#PWR08" (at 194.31 93.98 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "+3V3" (at 195.58 86.36 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 194.31 90.17 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 194.31 90.17 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 744cd301-9fd8-440c-a30a-bd10b4984e13))
(instances
(project "RP2040_SOS_band"
(path "/1d911b84-17e1-4d47-ac8f-a730104b53ed"
(reference "#PWR08") (unit 1)
)
(path "/1d911b84-17e1-4d47-ac8f-a730104b53ed/892de33d-264e-4bda-a61c-c8174f81e463"
(reference "#PWR06") (unit 1)
)
(path "/1d911b84-17e1-4d47-ac8f-a730104b53ed/d354c91b-03e4-4b78-829b-33cd8f15be96"
(reference "#PWR036") (unit 1)
)
)
)
)
(symbol (lib_id "power:+1V8") (at 189.23 90.17 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 59e409b2-eecc-4c6b-8068-7acad66ed66b)
(property "Reference" "#PWR040" (at 189.23 93.98 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "+1V8" (at 189.23 86.36 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 189.23 90.17 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 189.23 90.17 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 6752ed57-d180-4da5-a9f0-e5c9a37b634d))
(instances
(project "RP2040_SOS_band"
(path "/1d911b84-17e1-4d47-ac8f-a730104b53ed/d354c91b-03e4-4b78-829b-33cd8f15be96"
(reference "#PWR040") (unit 1)
)
)
)
)
(symbol (lib_id "power:+1V8") (at 129.54 102.87 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 6319a9bb-a5f5-4e1e-8313-e6e833098719)
(property "Reference" "#PWR039" (at 129.54 106.68 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "+1V8" (at 129.54 99.06 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 129.54 102.87 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 129.54 102.87 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 2e675246-d4cd-4c9c-b9d1-c4860a94c7d1))
(instances
(project "RP2040_SOS_band"
(path "/1d911b84-17e1-4d47-ac8f-a730104b53ed/d354c91b-03e4-4b78-829b-33cd8f15be96"
(reference "#PWR039") (unit 1)
)
)
)
)
(symbol (lib_id "power:GND") (at 119.38 115.57 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 6e13eaa7-f0be-49f0-b6f8-fcbe75e6659c)
(property "Reference" "#PWR031" (at 119.38 121.92 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (at 119.38 120.65 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Footprint" "" (at 119.38 115.57 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 119.38 115.57 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 2b0d7a03-d873-490e-a9c5-6579c5d9e828))
(instances
(project "RP2040_SOS_band"
(path "/1d911b84-17e1-4d47-ac8f-a730104b53ed/afb52c89-42a1-49e5-9806-4765b2ea4612"
(reference "#PWR031") (unit 1)
)
(path "/1d911b84-17e1-4d47-ac8f-a730104b53ed/d354c91b-03e4-4b78-829b-33cd8f15be96"
(reference "#PWR032") (unit 1)
)
)
)
)
(symbol (lib_id "Device:R") (at 168.91 106.68 90) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 7acdc1bd-8051-425b-a9e7-24945462b830)
(property "Reference" "R15" (at 168.91 109.22 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "5.1k" (at 168.91 106.68 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Resistor_SMD:R_0402_1005Metric_Pad0.72x0.64mm_HandSolder" (at 168.91 108.458 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 168.91 106.68 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 5bbd3629-1e3f-4272-9a9a-7ec19298ee86))
(pin "2" (uuid 3cdf28b2-357d-4c2f-8c71-1bd6f9329c05))
(instances
(project "RP2040_SOS_band"
(path "/1d911b84-17e1-4d47-ac8f-a730104b53ed/d354c91b-03e4-4b78-829b-33cd8f15be96"
(reference "R15") (unit 1)
)
)
)
)
(symbol (lib_id "power:+3V3") (at 161.29 100.33 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 7d075511-1f51-4d3a-a64e-d66c06053b5e)
(property "Reference" "#PWR08" (at 161.29 104.14 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "+3V3" (at 161.29 95.25 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 161.29 100.33 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 161.29 100.33 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid e570eefe-fc55-44f6-be05-30f7cb4b87f4))
(instances
(project "RP2040_SOS_band"
(path "/1d911b84-17e1-4d47-ac8f-a730104b53ed"
(reference "#PWR08") (unit 1)
)
(path "/1d911b84-17e1-4d47-ac8f-a730104b53ed/892de33d-264e-4bda-a61c-c8174f81e463"
(reference "#PWR06") (unit 1)
)
(path "/1d911b84-17e1-4d47-ac8f-a730104b53ed/d354c91b-03e4-4b78-829b-33cd8f15be96"
(reference "#PWR037") (unit 1)
)
)
)
)
(symbol (lib_id "Device:R") (at 168.91 104.14 90) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 87d8e06c-98f0-4958-b13d-34906ad54463)
(property "Reference" "R16" (at 168.91 101.6 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "5.1k" (at 168.91 104.14 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Resistor_SMD:R_0402_1005Metric_Pad0.72x0.64mm_HandSolder" (at 168.91 105.918 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 168.91 104.14 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid d907a895-06c0-45a2-a7e6-58ea5b0a23e2))
(pin "2" (uuid cc21c57e-9a9d-4843-8ecd-98bb83da88d5))
(instances
(project "RP2040_SOS_band"
(path "/1d911b84-17e1-4d47-ac8f-a730104b53ed/d354c91b-03e4-4b78-829b-33cd8f15be96"
(reference "R16") (unit 1)
)
)
)
)
(symbol (lib_id "Device:R") (at 209.55 101.6 180) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 9322307e-7cff-40c5-bb72-7742d879242f)
(property "Reference" "R14" (at 215.9 101.6 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "5.1k" (at 209.55 99.06 90)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Resistor_SMD:R_0402_1005Metric_Pad0.72x0.64mm_HandSolder" (at 211.328 101.6 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 209.55 101.6 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid d3a044df-9f5e-4c04-8c7d-5b10cc35635d))
(pin "2" (uuid 0e22fb64-9bac-44f4-a7eb-f4cd5c5e68cb))
(instances
(project "RP2040_SOS_band"
(path "/1d911b84-17e1-4d47-ac8f-a730104b53ed/d354c91b-03e4-4b78-829b-33cd8f15be96"
(reference "R14") (unit 1)
)
)
)
)
(symbol (lib_id "Sensor:MAX30102") (at 194.31 106.68 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 9a689f55-10a6-46d5-a672-21d665c0a1b4)
(property "Reference" "U4" (at 199.39 95.25 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "MAX30102" (at 203.2 118.11 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "OptoDevice:Maxim_OLGA-14_3.3x5.6mm_P0.8mm" (at 194.31 109.22 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "https://datasheets.maximintegrated.com/en/ds/MAX30102.pdf" (at 194.31 106.68 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid dba04f5e-c392-410e-a118-3423969ce04e))
(pin "10" (uuid 339a1bf7-d628-4bfc-bc1a-119ea12ce2b0))
(pin "11" (uuid c975f558-5324-429d-bb82-317be9d4b3a6))
(pin "12" (uuid 9baf999a-b42d-408f-b6c9-2727bbfee0bf))
(pin "13" (uuid 99d0e6dd-6995-45b4-9b56-9d1b48bae1ba))
(pin "14" (uuid c3a7523a-d8de-4d8e-81de-77bb20ac83ea))
(pin "2" (uuid 7b2bfb83-2c45-4843-ad38-f9d901a9565c))
(pin "3" (uuid 999c46a2-5e10-486d-97d9-4c822f7b5680))
(pin "4" (uuid 00758443-23fc-4464-beed-3591ce8c9486))
(pin "5" (uuid 7fa2e0b0-0197-4825-b7d9-bc20877527db))
(pin "6" (uuid 31b46a45-729f-47b2-a7db-de59f9ba578b))
(pin "7" (uuid 1d69b8ba-82cd-4b8d-81ce-487fa8024e42))
(pin "8" (uuid d79370ff-677f-41ce-8d16-0d1f3a5d29de))
(pin "9" (uuid 1bd158d1-bcf1-4c56-aade-c163ff49c03e))
(instances
(project "RP2040_SOS_band"
(path "/1d911b84-17e1-4d47-ac8f-a730104b53ed/d354c91b-03e4-4b78-829b-33cd8f15be96"
(reference "U4") (unit 1)
)
)
)
)
(symbol (lib_id "Device:C") (at 125.73 107.95 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid aa35ce2d-c977-424e-8cf3-e0d96b03cb05)
(property "Reference" "C21" (at 129.54 107.315 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "10uF" (at 129.54 109.855 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Capacitor_SMD:C_0402_1005Metric_Pad0.74x0.62mm_HandSolder" (at 126.6952 111.76 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 125.73 107.95 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 91e59c61-7707-4856-8327-b922ad532a91))
(pin "2" (uuid 2bfccf37-b3e8-4a11-8e16-c9d93fc60462))
(instances
(project "RP2040_SOS_band"
(path "/1d911b84-17e1-4d47-ac8f-a730104b53ed/d354c91b-03e4-4b78-829b-33cd8f15be96"
(reference "C21") (unit 1)
)
)
)
)
(symbol (lib_id "power:GND") (at 100.33 115.57 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid adeccbd4-4bdb-4565-8e94-6e1a906b90ad)
(property "Reference" "#PWR031" (at 100.33 121.92 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (at 100.33 120.65 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Footprint" "" (at 100.33 115.57 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 100.33 115.57 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid b2e2380b-e43c-4bec-9c7c-58b96f59f74d))
(instances
(project "RP2040_SOS_band"
(path "/1d911b84-17e1-4d47-ac8f-a730104b53ed/afb52c89-42a1-49e5-9806-4765b2ea4612"
(reference "#PWR031") (unit 1)
)
(path "/1d911b84-17e1-4d47-ac8f-a730104b53ed/d354c91b-03e4-4b78-829b-33cd8f15be96"
(reference "#PWR035") (unit 1)
)
)
)
)
(symbol (lib_id "power:GND") (at 191.77 121.92 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid de3e99d5-b0f7-4546-b805-6faefd013ae9)
(property "Reference" "#PWR031" (at 191.77 128.27 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (at 191.77 127 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Footprint" "" (at 191.77 121.92 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 191.77 121.92 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 5330a937-e114-4b59-a457-5597d0de6aa3))
(instances
(project "RP2040_SOS_band"
(path "/1d911b84-17e1-4d47-ac8f-a730104b53ed/afb52c89-42a1-49e5-9806-4765b2ea4612"
(reference "#PWR031") (unit 1)
)