Skip to content

Commit

Permalink
Doxygen-ate all the protocols beginning with D (#1165)
Browse files Browse the repository at this point in the history
* Daikin 
  - Commented every method etc ... oh my gawd .. so many comments/methods, took forever!
* Delonghi
* Denon
* Dish
* Doshisha

* Fixed some typos
  • Loading branch information
crankyoldgit authored Jun 3, 2020
1 parent 12735f1 commit 079e962
Show file tree
Hide file tree
Showing 10 changed files with 1,177 additions and 675 deletions.
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

0 comments on commit 079e962

Please sign in to comment.