tanakamasayuki / I2C_MPU6886

Library to control I2C MPU6886
Creative Commons Zero v1.0 Universal
11 stars 4 forks source link

Turn off the MPU 6886 #1

Open lilalukas opened 4 years ago

lilalukas commented 4 years ago

Hi,

in my M5Stick-C application I do need to save a lot of power so I would like to turn off the MPU6886. In the documentation they say: image

Unfortunately I could not sense any differences in power consumption with my code:

Wire1.beginTransmission(MPU6886_ADDRESS);
Wire1.write(MPU6886_PWR_MGMT_1);
Wire1.write((0x01 << 6));
Wire1.endTransmission();

Maybe you can add, verify and test a possibility to shut the MPU off

Thanks

tanakamasayuki commented 4 years ago

Thank you. I hope to add it in the next release.