Gree timing constants
Posted: Tue Dec 26, 2017 8:29 am
I use this link to send and control gree A/C https://github.com/ToniA/arduino-heatpumpir
and change to
and use this link to decode IR https://github.com/ToniA/Raw-IR-decoder-for-Arduino
for mode: heat temp:25 swing:off sleep:off
remote Gree control decode and NEC is:
and IR sender is:
they NEC are different and Gree A/C doesn't work with IR sender ,what's the problem? how should I change the time constants in this https://github.com/ToniA/arduino-heatpu ... atpumpIR.h ??
and change
Code: Select all
#define GREE_AIRCON1_MSG_SPACE 19000
Code: Select all
#define GREE_AIRCON1_MSG_SPACE 20000
for mode: heat temp:25 swing:off sleep:off
remote Gree control decode and NEC is:
Code: Select all
Symbols:
Hh00110000100100000000011000001010010W00000000000001000000000000001000
Bytes:
0C,09,60,50,00,20,00,10
Timings (in us):
PAUSE SPACE: 20480
HEADER MARK: 9340
HEADER SPACE: 4500
BIT MARK: 680
ZERO SPACE: 460
ONE SPACE: 1606
Decoded NEC: 3090060A (32 bits)
Code: Select all
Symbols:
Hh00110000100100000000000000000000010W00000000000001000000000000000000
Bytes:
0C,09,00,00,00,20,00,00
Timings (in us):
PAUSE SPACE: 20500
HEADER MARK: 9400
HEADER SPACE: 4120
BIT MARK: 611
ZERO SPACE: 480
ONE SPACE: 1609
Decoded NEC: 30900A00 (32 bits)
they NEC are different and Gree A/C doesn't work with IR sender ,what's the problem? how should I change the time constants in this https://github.com/ToniA/arduino-heatpu ... atpumpIR.h ??