BedJet: expose the outlet temperature on the climate and as a sensor (#6633)

This commit is contained in:
Alex Boyd
2024-05-15 17:31:08 -06:00
committed by GitHub
parent 1f29023c92
commit 773951d85e
12 changed files with 168 additions and 9 deletions
+8
View File
@@ -40,6 +40,14 @@ enum BedjetHeatMode {
HEAT_MODE_EXTENDED,
};
// Which temperature to use as the climate entity's current temperature reading
enum BedjetTemperatureSource {
// Use the temperature of the air the BedJet is putting out
TEMPERATURE_SOURCE_OUTLET,
// Use the ambient temperature of the room the BedJet is in
TEMPERATURE_SOURCE_AMBIENT
};
enum BedjetButton : uint8_t {
/// Turn BedJet off
BTN_OFF = 0x1,