GZ01-BEJ0-000 remote ("TEKNOPOINT" protocol) Decode Results Explored #1728
Blend3rman
started this conversation in
General
Replies: 1 comment 1 reply
-
Yep. See #1486 |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
I was able to decode the mentioned remote model using the IRrecvDumpV3.ino example. The results showed up as follows:
Unfortunately theSending the state array as-is throughIRac
class does not have support for building up aTEKNOPOINT
IR message through the object.IRsend::sendTeknopoint()
is confirmed to work.Conducting further searching, I came across this issue for a "Telefunken" AC on a heatpump IR library. It seems they have support for the same remote under the brand name "Fuego". Ref:
FuegoHeatpumpIR.cpp
|FuegoHeatpumpIR.h
This remote model seems to be used by several companies, the particular one I tested this on was a Hyundai AC.
Here are the notes I compiled on the
state[14]
array, from my own decoding and from this post:Next step: I would like to contribute to this library by adding support for this AC control viaIRac
class, using the arduino-heatpumpir library's code as a starting point. Working on it currently, but I would like to know some general rules wrt style (converting#defines
toconsts
is one I've seen) and contribution guidelines to create aIRTeknopointAc
class.TIA.
EDIT: Found the
IRTcl112Ac
class, seems to support this remote. Will test this out further and update the discussion later.Beta Was this translation helpful? Give feedback.
All reactions