// 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 { /// /// 10 addressable heater profiles stored on the Bme680. /// public enum Bme680HeaterProfile : byte { /// /// Heater Profile 1. /// Profile1 = 0b0000, /// /// Heater Profile 2. /// Profile2 = 0b0001, /// /// Heater Profile 3. /// Profile3 = 0b0010, /// /// Heater Profile 4. /// Profile4 = 0b0011, /// /// Heater Profile 5. /// Profile5 = 0b0100, /// /// Heater Profile 6. /// Profile6 = 0b0101, /// /// Heater Profile 7. /// Profile7 = 0b0110, /// /// Heater Profile 8. /// Profile8 = 0b0111, /// /// Heater Profile 9. /// Profile9 = 0b1000, /// /// Heater Profile 10. /// Profile10 = 0b1001 } }