// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
namespace NucuCar.Sensors.Environment.Bmxx80.PowerMode
{
///
/// Sensor power mode.
///
///
/// Section 3.1 in the datasheet.
///
public enum Bme680PowerMode : byte
{
///
/// No measurements are performed.
///
///
/// Minimal power consumption.
///
Sleep = 0b00,
///
/// Single TPHG cycle is performed.
///
///
/// Sensor automatically returns to sleep mode afterwards.
/// Gas sensor heater only operates during gas measurement.
///
Forced = 0b01
}
}