// 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.Modules.Environment.Bmxx80.PowerMode { /// /// Sensor power mode. /// public enum Bmx280PowerMode : byte { /// /// No operations, all registers accessible, lowest power mode, selected after startup. /// Sleep = 0b00, /// /// Perform one measurement, store results, and return to sleep mode. /// Forced = 0b10, /// /// Perpetual cycling of measurements and inactive periods. /// This interval is determined by the combination of IIR filter and standby time options. /// Normal = 0b11 } }