Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Doxygen-ate all the protocols beginning with D #1165

Merged
merged 9 commits into from
Jun 3, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/ir_Argo.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -311,7 +311,7 @@ uint8_t IRArgoAC::convertFan(const stdAc::fanspeed_t speed) {
}
}

/// Convert a tdAc::swingv_t enum into it's native setting.
/// Convert a stdAc::swingv_t enum into it's native setting.
/// @param[in] position The enum to be converted.
/// @return The native equivilant of the enum.
uint8_t IRArgoAC::convertSwingV(const stdAc::swingv_t position) {
Expand Down
2 changes: 1 addition & 1 deletion src/ir_Carrier.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -292,7 +292,7 @@ void IRCarrierAc64::setTemp(const uint8_t temp) {
}

/// Get the current temperature from the internal state.
/// @return The current temperatue in Celsius.
/// @return The current temperature in Celsius.
uint8_t IRCarrierAc64::getTemp(void) {
return GETBITS64(remote_state, kCarrierAc64TempOffset, kCarrierAc64TempSize) +
kCarrierAc64MinTemp;
Expand Down
2 changes: 1 addition & 1 deletion src/ir_Corona.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -297,7 +297,7 @@ void IRCoronaAc::setTemp(const uint8_t temp) {
}

/// Get the current temperature from the internal state.
/// @return The current temperatue in Celsius.
/// @return The current temperature in Celsius.
uint8_t IRCoronaAc::getTemp(void) {
return GETBITS8(remote_state[kCoronaAcSectionData1Pos], kCoronaAcTempOffset,
kCoronaAcTempSize) + kCoronaAcMinTemp - 1;
Expand Down
Loading