// 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 { /// /// Controls the inactive duration in normal mode. /// public enum StandbyTime : byte { /// /// 0.5 ms. /// Ms0_5 = 0b000, /// /// 62.5 ms. /// Ms62_5 = 0b001, /// /// 125 ms. /// Ms125 = 0b010, /// /// 250 ms. /// Ms250 = 0b011, /// /// 500 ms. /// Ms500 = 0b100, /// /// 1,000 ms. /// Ms1000 = 0b101, /// /// 10 ms. /// Ms10 = 0b110, /// /// 20 ms. /// Ms20 = 0b111, } }