Skip to content

Commit

Permalink
add model h5105
Browse files Browse the repository at this point in the history
  • Loading branch information
William C Bonner committed Feb 1, 2024
1 parent b12ed51 commit e9c5cd6
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions goveebttemplogger.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -225,6 +225,7 @@ enum class ThermometerType
H5074 = 5074,
H5075 = 5075,
H5100 = 5100,
H5105 = 5105,
H5174 = 5174,
H5177 = 5177,
H5179 = 5179,
Expand Down Expand Up @@ -403,6 +404,8 @@ ThermometerType Govee_Temp::SetModel(const std::string& Name)
Model = ThermometerType::H5177;
else if (0 == Name.substr(0, 8).compare("GVH5100_"))
Model = ThermometerType::H5100;
else if (0 == Name.substr(0, 8).compare("GVH5105_"))
Model = ThermometerType::H5105;
else if (0 == Name.substr(0, 8).compare("GVH5174_"))
Model = ThermometerType::H5174;
else if (0 == Name.substr(0, 12).compare("Govee_H5179_"))
Expand Down

0 comments on commit e9c5cd6

Please sign in to comment.