// 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 { /// /// Oversampling settings. /// /// /// Maximum of x2 is recommended for temperature. /// public enum Sampling : byte { /// /// Skipped (output set to 0x80000). /// Skipped = 0b000, /// /// Oversampling x1. /// UltraLowPower = 0b001, /// /// Oversampling x2. /// LowPower = 0b010, /// /// Oversampling x4. /// Standard = 0b011, /// /// Oversampling x8. /// HighResolution = 0b100, /// /// Oversampling x16. /// UltraHighResolution = 0b101, } }