2017-02-14 13:27:08 +00:00
|
|
|
/*
|
2019-10-27 10:13:24 +00:00
|
|
|
xdrv_05_irremote.ino - infra red support for Tasmota
|
2018-11-20 13:10:32 +00:00
|
|
|
|
2019-12-31 13:23:34 +00:00
|
|
|
Copyright (C) 2020 Heiko Krupp, Lazar Obradovic and Theo Arends
|
2018-11-20 13:10:32 +00:00
|
|
|
|
2017-05-13 12:02:10 +01:00
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
2018-11-20 13:10:32 +00:00
|
|
|
|
2017-05-13 12:02:10 +01:00
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
2018-11-20 13:10:32 +00:00
|
|
|
|
2017-05-13 12:02:10 +01:00
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2017-02-14 13:27:08 +00:00
|
|
|
*/
|
|
|
|
|
2019-08-28 21:01:01 +01:00
|
|
|
#if defined(USE_IR_REMOTE) && !defined(USE_IR_REMOTE_FULL)
|
2017-02-14 13:27:08 +00:00
|
|
|
/*********************************************************************************************\
|
2017-10-06 16:28:00 +01:00
|
|
|
* IR Remote send and receive using IRremoteESP8266 library
|
2017-02-14 13:27:08 +00:00
|
|
|
\*********************************************************************************************/
|
|
|
|
|
2018-11-07 09:30:03 +00:00
|
|
|
#define XDRV_05 5
|
|
|
|
|
2017-10-08 15:51:05 +01:00
|
|
|
#include <IRremoteESP8266.h>
|
2017-11-19 17:02:03 +00:00
|
|
|
|
2019-11-24 11:24:35 +00:00
|
|
|
enum IrErrors { IE_NO_ERROR, IE_INVALID_RAWDATA, IE_INVALID_JSON, IE_SYNTAX_IRSEND };
|
2019-03-31 12:06:42 +01:00
|
|
|
|
2019-11-12 21:41:09 +00:00
|
|
|
const char kIrRemoteCommands[] PROGMEM = "|" D_CMND_IRSEND ;
|
2019-08-02 13:23:41 +01:00
|
|
|
|
2019-11-24 11:24:35 +00:00
|
|
|
// Keep below IrRemoteCommand lines exactly as below as otherwise Arduino IDE prototyping will fail (#6982)
|
|
|
|
void (* const IrRemoteCommand[])(void) PROGMEM = {
|
|
|
|
&CmndIrSend };
|
2018-11-22 16:58:07 +00:00
|
|
|
|
2017-11-19 17:02:03 +00:00
|
|
|
// Based on IRremoteESP8266.h enum decode_type_t
|
2019-11-24 11:24:35 +00:00
|
|
|
static const uint8_t MAX_STANDARD_IR = NEC; // this is the last code mapped to decode_type_t
|
2019-11-12 21:41:09 +00:00
|
|
|
const char kIrRemoteProtocols[] PROGMEM = "UNKNOWN|RC5|RC6|NEC";
|
2017-11-19 17:02:03 +00:00
|
|
|
|
2017-10-08 15:51:05 +01:00
|
|
|
/*********************************************************************************************\
|
|
|
|
* IR Send
|
|
|
|
\*********************************************************************************************/
|
|
|
|
|
2017-11-19 17:02:03 +00:00
|
|
|
#include <IRsend.h>
|
|
|
|
|
2019-03-26 17:26:50 +00:00
|
|
|
IRsend *irsend = nullptr;
|
2019-02-03 17:45:20 +00:00
|
|
|
bool irsend_active = false;
|
2017-02-14 13:27:08 +00:00
|
|
|
|
2017-10-18 17:22:34 +01:00
|
|
|
void IrSendInit(void)
|
2017-02-14 13:27:08 +00:00
|
|
|
{
|
2017-10-08 15:51:05 +01:00
|
|
|
irsend = new IRsend(pin[GPIO_IRSEND]); // an IR led is at GPIO_IRSEND
|
2017-02-14 13:27:08 +00:00
|
|
|
irsend->begin();
|
|
|
|
}
|
|
|
|
|
2017-10-06 16:28:00 +01:00
|
|
|
#ifdef USE_IR_RECEIVE
|
2017-10-08 15:51:05 +01:00
|
|
|
/*********************************************************************************************\
|
|
|
|
* IR Receive
|
|
|
|
\*********************************************************************************************/
|
|
|
|
|
2019-03-31 10:59:04 +01:00
|
|
|
const bool IR_RCV_SAVE_BUFFER = false; // false = do not use buffer, true = use buffer for decoding
|
|
|
|
const uint32_t IR_TIME_AVOID_DUPLICATE = 500; // Milliseconds
|
2017-10-06 16:28:00 +01:00
|
|
|
|
2018-11-21 15:36:10 +00:00
|
|
|
#include <IRrecv.h>
|
2017-10-25 13:27:30 +01:00
|
|
|
|
2019-03-26 17:26:50 +00:00
|
|
|
IRrecv *irrecv = nullptr;
|
2018-11-21 15:36:10 +00:00
|
|
|
|
2017-10-06 16:28:00 +01:00
|
|
|
unsigned long ir_lasttime = 0;
|
|
|
|
|
2019-11-20 19:53:12 +00:00
|
|
|
void IrReceiveUpdateThreshold(void)
|
2019-05-27 10:56:14 +01:00
|
|
|
{
|
2019-07-08 11:24:31 +01:00
|
|
|
if (irrecv != nullptr) {
|
|
|
|
if (Settings.param[P_IR_UNKNOW_THRESHOLD] < 6) { Settings.param[P_IR_UNKNOW_THRESHOLD] = 6; }
|
|
|
|
irrecv->setUnknownThreshold(Settings.param[P_IR_UNKNOW_THRESHOLD]);
|
|
|
|
}
|
2019-05-27 10:56:14 +01:00
|
|
|
}
|
|
|
|
|
2017-10-18 17:22:34 +01:00
|
|
|
void IrReceiveInit(void)
|
2017-10-06 16:28:00 +01:00
|
|
|
{
|
2018-11-21 15:36:10 +00:00
|
|
|
// an IR led is at GPIO_IRRECV
|
|
|
|
irrecv = new IRrecv(pin[GPIO_IRRECV], IR_RCV_BUFFER_SIZE, IR_RCV_TIMEOUT, IR_RCV_SAVE_BUFFER);
|
2019-05-27 10:56:14 +01:00
|
|
|
irrecv->setUnknownThreshold(Settings.param[P_IR_UNKNOW_THRESHOLD]);
|
2017-10-08 15:51:05 +01:00
|
|
|
irrecv->enableIRIn(); // Start the receiver
|
|
|
|
|
2017-10-18 17:22:34 +01:00
|
|
|
// AddLog_P(LOG_LEVEL_DEBUG, PSTR("IrReceive initialized"));
|
2017-10-06 16:28:00 +01:00
|
|
|
}
|
|
|
|
|
2018-11-14 13:32:09 +00:00
|
|
|
void IrReceiveCheck(void)
|
2017-10-08 15:51:05 +01:00
|
|
|
{
|
2019-11-24 11:24:35 +00:00
|
|
|
char sirtype[8]; // Max is UNKNOWN
|
2017-10-08 15:51:05 +01:00
|
|
|
int8_t iridx = 0;
|
2017-02-14 13:27:08 +00:00
|
|
|
|
2017-10-08 15:51:05 +01:00
|
|
|
decode_results results;
|
2017-03-29 17:42:05 +01:00
|
|
|
|
2017-10-08 15:51:05 +01:00
|
|
|
if (irrecv->decode(&results)) {
|
2019-08-28 15:13:19 +01:00
|
|
|
char hvalue[65]; // Max 256 bits
|
2019-09-10 19:45:27 +01:00
|
|
|
|
|
|
|
iridx = results.decode_type;
|
2019-11-24 11:24:35 +00:00
|
|
|
if ((iridx < 0) || (iridx > MAX_STANDARD_IR)) { iridx = 0; } // UNKNOWN
|
2019-09-10 19:45:27 +01:00
|
|
|
|
|
|
|
if (iridx) {
|
|
|
|
if (results.bits > 64) {
|
|
|
|
// This emulates IRutils resultToHexidecimal and may needs a larger IR_RCV_BUFFER_SIZE
|
|
|
|
uint32_t digits2 = results.bits / 8;
|
|
|
|
if (results.bits % 8) { digits2++; }
|
|
|
|
ToHex_P((unsigned char*)results.state, digits2, hvalue, sizeof(hvalue)); // Get n-bit value as hex 56341200
|
|
|
|
} else {
|
2019-09-15 10:10:59 +01:00
|
|
|
Uint64toHex(results.value, hvalue, results.bits); // Get 64bit value as hex 00123456
|
2019-09-10 19:45:27 +01:00
|
|
|
}
|
2019-08-28 15:13:19 +01:00
|
|
|
} else {
|
2019-09-15 10:10:59 +01:00
|
|
|
Uint64toHex(results.value, hvalue, 32); // UNKNOWN is always 32 bits hash
|
2019-08-28 15:13:19 +01:00
|
|
|
}
|
2017-02-17 16:18:41 +00:00
|
|
|
|
2019-08-28 15:13:19 +01:00
|
|
|
AddLog_P2(LOG_LEVEL_DEBUG, PSTR(D_LOG_IRR "Echo %d, RawLen %d, Overflow %d, Bits %d, Value 0x%s, Decode %d"),
|
2019-04-01 14:15:16 +01:00
|
|
|
irsend_active, results.rawlen, results.overflow, results.bits, hvalue, results.decode_type);
|
2017-03-29 17:42:05 +01:00
|
|
|
|
2017-10-08 15:51:05 +01:00
|
|
|
unsigned long now = millis();
|
2018-11-21 15:36:10 +00:00
|
|
|
// if ((now - ir_lasttime > IR_TIME_AVOID_DUPLICATE) && (UNKNOWN != results.decode_type) && (results.bits > 0)) {
|
2019-02-03 17:45:20 +00:00
|
|
|
if (!irsend_active && (now - ir_lasttime > IR_TIME_AVOID_DUPLICATE)) {
|
2017-10-08 15:51:05 +01:00
|
|
|
ir_lasttime = now;
|
2017-03-29 17:42:05 +01:00
|
|
|
|
2019-04-01 14:15:16 +01:00
|
|
|
char svalue[64];
|
2019-11-03 11:33:36 +00:00
|
|
|
if (Settings.flag.ir_receive_decimal) { // SetOption29 - IR receive data format
|
2019-04-01 14:15:16 +01:00
|
|
|
ulltoa(results.value, svalue, 10);
|
2018-06-25 11:33:23 +01:00
|
|
|
} else {
|
2019-08-28 15:13:19 +01:00
|
|
|
snprintf_P(svalue, sizeof(svalue), PSTR("\"0x%s\""), hvalue);
|
2018-06-25 11:33:23 +01:00
|
|
|
}
|
2019-09-10 19:45:27 +01:00
|
|
|
ResponseTime_P(PSTR(",\"" D_JSON_IRRECEIVED "\":{\"" D_JSON_IR_PROTOCOL "\":\"%s\",\"" D_JSON_IR_BITS "\":%d"),
|
|
|
|
GetTextIndexed(sirtype, sizeof(sirtype), iridx, kIrRemoteProtocols), results.bits);
|
|
|
|
if (iridx) {
|
|
|
|
ResponseAppend_P(PSTR(",\"" D_JSON_IR_DATA "\":%s"), svalue);
|
|
|
|
} else {
|
|
|
|
ResponseAppend_P(PSTR(",\"" D_JSON_IR_HASH "\":%s"), svalue);
|
|
|
|
}
|
2018-06-25 11:33:23 +01:00
|
|
|
|
2019-11-03 12:51:22 +00:00
|
|
|
if (Settings.flag3.receive_raw) { // SetOption58 - Add IR Raw data to JSON message
|
2019-03-23 16:00:59 +00:00
|
|
|
ResponseAppend_P(PSTR(",\"" D_JSON_IR_RAWDATA "\":["));
|
2018-11-21 15:36:10 +00:00
|
|
|
uint16_t i;
|
|
|
|
for (i = 1; i < results.rawlen; i++) {
|
2019-03-23 16:00:59 +00:00
|
|
|
if (i > 1) { ResponseAppend_P(PSTR(",")); }
|
2018-11-21 15:36:10 +00:00
|
|
|
uint32_t usecs;
|
|
|
|
for (usecs = results.rawbuf[i] * kRawTick; usecs > UINT16_MAX; usecs -= UINT16_MAX) {
|
2019-03-23 16:00:59 +00:00
|
|
|
ResponseAppend_P(PSTR("%d,0,"), UINT16_MAX);
|
2018-11-21 15:36:10 +00:00
|
|
|
}
|
2019-03-23 16:00:59 +00:00
|
|
|
ResponseAppend_P(PSTR("%d"), usecs);
|
2018-11-21 15:36:10 +00:00
|
|
|
if (strlen(mqtt_data) > sizeof(mqtt_data) - 40) { break; } // Quit if char string becomes too long
|
|
|
|
}
|
|
|
|
uint16_t extended_length = results.rawlen - 1;
|
2019-06-30 15:44:36 +01:00
|
|
|
for (uint32_t j = 0; j < results.rawlen - 1; j++) {
|
2018-11-21 15:36:10 +00:00
|
|
|
uint32_t usecs = results.rawbuf[j] * kRawTick;
|
|
|
|
// Add two extra entries for multiple larger than UINT16_MAX it is.
|
|
|
|
extended_length += (usecs / (UINT16_MAX + 1)) * 2;
|
|
|
|
}
|
2019-03-23 16:00:59 +00:00
|
|
|
ResponseAppend_P(PSTR("],\"" D_JSON_IR_RAWDATA "Info\":[%d,%d,%d]"), extended_length, i -1, results.overflow);
|
2018-11-21 15:36:10 +00:00
|
|
|
}
|
|
|
|
|
2019-09-12 13:19:44 +01:00
|
|
|
ResponseJsonEndEnd();
|
2018-01-18 15:19:28 +00:00
|
|
|
MqttPublishPrefixTopic_P(RESULT_OR_TELE, PSTR(D_JSON_IRRECEIVED));
|
2018-11-21 15:36:10 +00:00
|
|
|
|
2019-10-13 21:16:13 +01:00
|
|
|
XdrvRulesProcess();
|
2017-10-08 15:51:05 +01:00
|
|
|
#ifdef USE_DOMOTICZ
|
2019-10-13 21:16:13 +01:00
|
|
|
if (iridx) {
|
2018-11-21 15:36:10 +00:00
|
|
|
unsigned long value = results.value | (iridx << 28); // [Protocol:4, Data:28]
|
|
|
|
DomoticzSensor(DZ_COUNT, value); // Send data as Domoticz Counter value
|
|
|
|
}
|
2019-10-13 21:16:13 +01:00
|
|
|
#endif // USE_DOMOTICZ
|
2017-04-25 17:24:42 +01:00
|
|
|
}
|
2017-10-08 15:51:05 +01:00
|
|
|
|
|
|
|
irrecv->resume();
|
2017-03-29 17:42:05 +01:00
|
|
|
}
|
2017-02-14 13:27:08 +00:00
|
|
|
}
|
2017-10-08 15:51:05 +01:00
|
|
|
#endif // USE_IR_RECEIVE
|
2017-03-29 17:42:05 +01:00
|
|
|
|
2017-10-08 15:51:05 +01:00
|
|
|
/*********************************************************************************************\
|
|
|
|
* Commands
|
|
|
|
\*********************************************************************************************/
|
|
|
|
|
2019-08-02 13:23:41 +01:00
|
|
|
uint32_t IrRemoteCmndIrSendJson(void)
|
|
|
|
{
|
|
|
|
// ArduinoJSON entry used to calculate jsonBuf: JSON_OBJECT_SIZE(3) + 40 = 96
|
|
|
|
// IRsend { "protocol": "RC5", "bits": 12, "data":"0xC86" }
|
|
|
|
// IRsend { "protocol": "SAMSUNG", "bits": 32, "data": 551502015 }
|
|
|
|
|
2020-01-12 22:31:57 +00:00
|
|
|
char dataBufUc[XdrvMailbox.data_len + 1];
|
2019-08-02 13:23:41 +01:00
|
|
|
UpperCase(dataBufUc, XdrvMailbox.data);
|
|
|
|
RemoveSpace(dataBufUc);
|
|
|
|
if (strlen(dataBufUc) < 8) {
|
|
|
|
return IE_INVALID_JSON;
|
|
|
|
}
|
|
|
|
|
|
|
|
StaticJsonBuffer<140> jsonBuf;
|
|
|
|
JsonObject &root = jsonBuf.parseObject(dataBufUc);
|
|
|
|
if (!root.success()) {
|
|
|
|
return IE_INVALID_JSON;
|
|
|
|
}
|
|
|
|
|
|
|
|
// IRsend { "protocol": "SAMSUNG", "bits": 32, "data": 551502015 }
|
|
|
|
// IRsend { "protocol": "NEC", "bits": 32, "data":"0x02FDFE80", "repeat": 2 }
|
|
|
|
char parm_uc[10];
|
|
|
|
const char *protocol = root[UpperCase_P(parm_uc, PSTR(D_JSON_IR_PROTOCOL))];
|
|
|
|
uint16_t bits = root[UpperCase_P(parm_uc, PSTR(D_JSON_IR_BITS))];
|
|
|
|
uint64_t data = strtoull(root[UpperCase_P(parm_uc, PSTR(D_JSON_IR_DATA))], nullptr, 0);
|
|
|
|
uint16_t repeat = root[UpperCase_P(parm_uc, PSTR(D_JSON_IR_REPEAT))];
|
2019-08-04 11:37:01 +01:00
|
|
|
// check if the IRSend<x> is great than repeat
|
|
|
|
if (XdrvMailbox.index > repeat + 1) {
|
|
|
|
repeat = XdrvMailbox.index - 1;
|
|
|
|
}
|
2019-08-02 13:23:41 +01:00
|
|
|
if (!(protocol && bits)) {
|
|
|
|
return IE_SYNTAX_IRSEND;
|
|
|
|
}
|
|
|
|
|
|
|
|
char protocol_text[20];
|
|
|
|
int protocol_code = GetCommandCode(protocol_text, sizeof(protocol_text), protocol, kIrRemoteProtocols);
|
|
|
|
|
|
|
|
char dvalue[64];
|
2019-08-28 15:13:19 +01:00
|
|
|
char hvalue[20];
|
|
|
|
AddLog_P2(LOG_LEVEL_DEBUG, PSTR("IRS: protocol_text %s, protocol %s, bits %d, data %s (0x%s), repeat %d, protocol_code %d"),
|
2019-09-15 10:10:59 +01:00
|
|
|
protocol_text, protocol, bits, ulltoa(data, dvalue, 10), Uint64toHex(data, hvalue, bits), repeat, protocol_code);
|
2019-08-02 13:23:41 +01:00
|
|
|
|
|
|
|
irsend_active = true;
|
|
|
|
switch (protocol_code) { // Equals IRremoteESP8266.h enum decode_type_t
|
2019-07-21 15:03:20 +01:00
|
|
|
#ifdef USE_IR_SEND_RC5
|
2019-08-02 13:23:41 +01:00
|
|
|
case RC5:
|
|
|
|
irsend->sendRC5(data, bits, repeat); break;
|
2019-07-21 15:03:20 +01:00
|
|
|
#endif
|
|
|
|
#ifdef USE_IR_SEND_RC6
|
2019-08-02 13:23:41 +01:00
|
|
|
case RC6:
|
|
|
|
irsend->sendRC6(data, bits, repeat); break;
|
2019-07-21 15:03:20 +01:00
|
|
|
#endif
|
|
|
|
#ifdef USE_IR_SEND_NEC
|
2019-08-02 13:23:41 +01:00
|
|
|
case NEC:
|
|
|
|
irsend->sendNEC(data, (bits > NEC_BITS) ? NEC_BITS : bits, repeat); break;
|
2019-07-21 15:03:20 +01:00
|
|
|
#endif
|
2019-08-02 13:23:41 +01:00
|
|
|
default:
|
|
|
|
irsend_active = false;
|
2019-08-03 12:01:34 +01:00
|
|
|
ResponseCmndChar(D_JSON_PROTOCOL_NOT_SUPPORTED);
|
2017-10-08 15:51:05 +01:00
|
|
|
}
|
2019-08-02 13:23:41 +01:00
|
|
|
|
|
|
|
return IE_NO_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
void CmndIrSend(void)
|
|
|
|
{
|
|
|
|
uint8_t error = IE_SYNTAX_IRSEND;
|
|
|
|
|
|
|
|
if (XdrvMailbox.data_len) {
|
|
|
|
// error = (strstr(XdrvMailbox.data, "{") == nullptr) ? IrRemoteCmndIrSendRaw() : IrRemoteCmndIrSendJson();
|
|
|
|
if (strstr(XdrvMailbox.data, "{") == nullptr) {
|
2019-11-12 21:41:09 +00:00
|
|
|
error = IE_INVALID_JSON;
|
2019-08-02 13:23:41 +01:00
|
|
|
} else {
|
|
|
|
error = IrRemoteCmndIrSendJson();
|
2017-10-08 15:51:05 +01:00
|
|
|
}
|
2017-10-06 16:28:00 +01:00
|
|
|
}
|
2019-08-02 13:23:41 +01:00
|
|
|
IrRemoteCmndResponse(error);
|
|
|
|
}
|
2018-05-17 10:55:40 +01:00
|
|
|
|
2019-08-02 13:23:41 +01:00
|
|
|
void IrRemoteCmndResponse(uint32_t error)
|
|
|
|
{
|
2019-03-31 12:06:42 +01:00
|
|
|
switch (error) {
|
|
|
|
case IE_INVALID_RAWDATA:
|
2020-03-16 17:55:58 +00:00
|
|
|
ResponseCmndChar_P(PSTR(D_JSON_INVALID_RAWDATA));
|
2019-03-31 12:06:42 +01:00
|
|
|
break;
|
|
|
|
case IE_INVALID_JSON:
|
2020-03-16 17:55:58 +00:00
|
|
|
ResponseCmndChar_P(PSTR(D_JSON_INVALID_JSON));
|
2019-03-31 12:06:42 +01:00
|
|
|
break;
|
|
|
|
case IE_SYNTAX_IRSEND:
|
|
|
|
Response_P(PSTR("{\"" D_CMND_IRSEND "\":\"" D_JSON_NO " " D_JSON_IR_PROTOCOL ", " D_JSON_IR_BITS " " D_JSON_OR " " D_JSON_IR_DATA "\"}"));
|
|
|
|
break;
|
2019-08-02 13:23:41 +01:00
|
|
|
default: // IE_NO_ERROR
|
2019-08-03 12:01:34 +01:00
|
|
|
ResponseCmndDone();
|
2019-03-31 12:06:42 +01:00
|
|
|
}
|
2017-10-06 16:28:00 +01:00
|
|
|
}
|
2018-01-05 11:26:19 +00:00
|
|
|
|
|
|
|
/*********************************************************************************************\
|
|
|
|
* Interface
|
|
|
|
\*********************************************************************************************/
|
|
|
|
|
2019-01-28 13:08:33 +00:00
|
|
|
bool Xdrv05(uint8_t function)
|
2018-01-05 11:26:19 +00:00
|
|
|
{
|
2019-01-28 13:08:33 +00:00
|
|
|
bool result = false;
|
2018-01-05 11:26:19 +00:00
|
|
|
|
|
|
|
if ((pin[GPIO_IRSEND] < 99) || (pin[GPIO_IRRECV] < 99)) {
|
|
|
|
switch (function) {
|
2018-06-04 17:10:38 +01:00
|
|
|
case FUNC_PRE_INIT:
|
2018-01-05 11:26:19 +00:00
|
|
|
if (pin[GPIO_IRSEND] < 99) {
|
|
|
|
IrSendInit();
|
|
|
|
}
|
|
|
|
#ifdef USE_IR_RECEIVE
|
|
|
|
if (pin[GPIO_IRRECV] < 99) {
|
|
|
|
IrReceiveInit();
|
|
|
|
}
|
|
|
|
#endif // USE_IR_RECEIVE
|
|
|
|
break;
|
|
|
|
case FUNC_EVERY_50_MSECOND:
|
|
|
|
#ifdef USE_IR_RECEIVE
|
|
|
|
if (pin[GPIO_IRRECV] < 99) {
|
|
|
|
IrReceiveCheck(); // check if there's anything on IR side
|
|
|
|
}
|
|
|
|
#endif // USE_IR_RECEIVE
|
2019-02-03 17:45:20 +00:00
|
|
|
irsend_active = false; // re-enable IR reception
|
2018-01-05 11:26:19 +00:00
|
|
|
break;
|
|
|
|
case FUNC_COMMAND:
|
|
|
|
if (pin[GPIO_IRSEND] < 99) {
|
2019-08-02 13:23:41 +01:00
|
|
|
result = DecodeCommand(kIrRemoteCommands, IrRemoteCommand);
|
2018-01-05 11:26:19 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2019-08-28 21:01:01 +01:00
|
|
|
#endif // defined(USE_IR_REMOTE) && !defined(USE_IR_REMOTE_FULL)
|