Hello
I would like to know if it is possible to simulate Oximeter MAX 30100 in any program.
I can simulate a temperature sensor, for example, and other sensors with Tinker CAD, but there is no MAX 30100 in Tinker CAD.
Is there any software or website where I can simulate it?
You could create a function to print (or return) values simulating heart rate and SpO2 (each second).
void setup() {
}
void loop() {
pulsox();
}
void pulsox () {
Serial.print("Heart rate:");
Serial.print(pox.getHeartRate());
Serial.print("bpm SpO2:");
Serial.print(pox.getSpO2());
Serial.println("%");
}
This topic was automatically closed 180 days after the last reply. New replies are no longer allowed.