-
Notifications
You must be signed in to change notification settings - Fork 208
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
BPM is giving way too high value #90
Comments
@msaibhvani Please support the makers of Pulse Sensor and only purchase legitimate Original Pulse Sensor products. |
@sreenu926 Please support the makers of Pulse Sensor and only purchase legitimate Original Pulse Sensor products. |
Thank you so much Joel.
I told the same to ROBU.in guys and they apologized and promised me to send
new Legit sensor.
Thank you for helping people like me. May God bless you with his grace and
peace, AMEN.
…On Tue, Aug 17, 2021, 7:46 PM Joel Murphy ***@***.***> wrote:
@sreenu926 <https://github.com/sreenu926>
Thanks for showing the pic of your sensor. You are not using a legit Pulse
Sensor. What you have is a clone. Since we don't know what is on that
hardware, we can't troubleshoot it for you.
Please support the makers of Pulse Sensor and only purchase legitimate
Original Pulse Sensor products.
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#90 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AVHQRRU6SRZ64LEJ5O6LP5DT5JVLLANCNFSM4LADQQSQ>
.
Triage notifications on the go with GitHub Mobile for iOS
<https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675>
or Android
<https://play.google.com/store/apps/details?id=com.github.android&utm_campaign=notification-email>
.
|
I am using the STM32f103c8 microcontroller using Arduino software with a pulse sensor and the value its showing is way too high it's going from 2000 to 4000. I am attaching my code here.
// Variables
int PulseSensorPin = PA0;
unsigned long int mybpm = 0;
int i;
int Sam_mybpm;
void setup() {
Serial.begin(115200);
}
void loop() {
mybpm = 0;
for (i=1;i<=1000;i++)
{
mybpm = mybpm+analogRead(PulseSensorPin);
Serial.print(mybpm);
}
Sam_mybpm = mybpm/1000;
Serial.print("Sam_mybpm");
Serial.println(Sam_mybpm);
delay(1000);
}
The picture of my pulse sensor
The text was updated successfully, but these errors were encountered: