You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I develop simple temperature reading using Protocentral_MAX30205 with arduino nano, I try to consume my current consumption using shutdown mode function but MAX30205 doesn't go to sleep mode It's maintain 2mA current every time so please help me how to put sleep mode in MAX 30205
I develop simple temperature reading using Protocentral_MAX30205 with arduino nano, I try to consume my current consumption using shutdown mode function but MAX30205 doesn't go to sleep mode It's maintain 2mA current every time so please help me how to put sleep mode in MAX 30205
this is my code
#include <Wire.h>
#include "Protocentral_MAX30205.h"
MAX30205 tempSensor;
void setup() {
// put your setup code here, to run once:
Wire.begin();
Serial.begin(9600);
tempSensor.begin(); // set continuos mode, active mode
}
void loop() {
tempSensor.shutdown();
delay(1000);
}
The text was updated successfully, but these errors were encountered: