Hrs3300: changed default gain to x8

This commit is contained in:
hatmajster 2022-01-24 20:28:05 +01:00
parent 26ae828e39
commit b4e956227e

View File

@ -36,8 +36,8 @@ void Hrs3300::Init() {
// HRS and ALS both in 16-bit mode // HRS and ALS both in 16-bit mode
WriteRegister(static_cast<uint8_t>(Registers::Res), 0x88); WriteRegister(static_cast<uint8_t>(Registers::Res), 0x88);
// 64x gain // 8x gain, non default, reduced value for better readings
WriteRegister(static_cast<uint8_t>(Registers::Hgain), 0x10); WriteRegister(static_cast<uint8_t>(Registers::Hgain), 0xc);
} }
void Hrs3300::Enable() { void Hrs3300::Enable() {