Skip to content
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
4 changes: 2 additions & 2 deletions src/IRsend.h
Original file line number Diff line number Diff line change
Expand Up @@ -172,10 +172,10 @@ enum sharp_ac_remote_model_t {
A903 = 3, // 820 too
};

/// TCL A/C model numbers
/// TCL (& Teknopoint) A/C model numbers
enum tcl_ac_remote_model_t {
TAC09CHSD = 1,
GZ055BE1 = 2,
GZ055BE1 = 2, // Also Teknopoint GZ01-BEJ0-000
};

/// Voltas A/C model numbers
Expand Down
6 changes: 6 additions & 0 deletions src/ir_Teknopoint.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
// Supports:
// Brand: Teknopoint, Model: Allegro SSA-09H A/C
// Brand: Teknopoint, Model: GZ-055B-E1 remote
// Brand: Teknopoint, Model: GZ01-BEJ0-000 remote

#include "IRrecv.h"
#include "IRsend.h"
Expand Down Expand Up @@ -73,3 +74,8 @@ bool IRrecv::decodeTeknopoint(decode_results *results, uint16_t offset,
return true;
}
#endif // DECODE_TEKNOPOINT

// Looking for the IRTeknopoint/IRTeknopointAc class?
// It doesn't exist, it is instead part of the `IRTcl112Ac` class.
// i.e. use `IRTcl112Ac::setModel(tcl_ac_remote_model_t::GZ055BE1);` for
// Teknopoint A/Cs.