mirror of https://github.com/arendst/Tasmota.git
72 lines
2.5 KiB
Arduino
72 lines
2.5 KiB
Arduino
|
/* Copyright 2017 David Conran
|
||
|
*
|
||
|
* An IR LED circuit *MUST* be connected to ESP8266 pin 4 (D2).
|
||
|
*
|
||
|
* TL;DR: The IR LED needs to be driven by a transistor for a good result.
|
||
|
*
|
||
|
* Suggested circuit:
|
||
|
* https://github.com/markszabo/IRremoteESP8266/wiki#ir-sending
|
||
|
*
|
||
|
* Common mistakes & tips:
|
||
|
* * Don't just connect the IR LED directly to the pin, it won't
|
||
|
* have enough current to drive the IR LED effectively.
|
||
|
* * Make sure you have the IR LED polarity correct.
|
||
|
* See: https://learn.sparkfun.com/tutorials/polarity/diode-and-led-polarity
|
||
|
* * Typical digital camera/phones can be used to see if the IR LED is flashed.
|
||
|
* Replace the IR LED with a normal LED if you don't have a digital camera
|
||
|
* when debugging.
|
||
|
* * Avoid using the following pins unless you really know what you are doing:
|
||
|
* * Pin 0/D3: Can interfere with the boot/program mode & support circuits.
|
||
|
* * Pin 1/TX/TXD0: Any serial transmissions from the ESP8266 will interfere.
|
||
|
* * Pin 3/RX/RXD0: Any serial transmissions to the ESP8266 will interfere.
|
||
|
* * ESP-01 modules are tricky. We suggest you use a module with more GPIOs
|
||
|
* for your first time. e.g. ESP-12 etc.
|
||
|
*/
|
||
|
#ifndef UNIT_TEST
|
||
|
#include <Arduino.h>
|
||
|
#endif
|
||
|
#include <IRremoteESP8266.h>
|
||
|
#include <IRsend.h>
|
||
|
#include <ir_Mitsubishi.h>
|
||
|
|
||
|
IRMitsubishiAC mitsubir(D2); // An IR LED is controlled by GPIO pin 4 (D2)
|
||
|
|
||
|
void printState() {
|
||
|
// Display the settings.
|
||
|
Serial.println("Mitsubishi A/C remote is in the following state:");
|
||
|
Serial.printf(" Power: %d, Mode: %d, Temp: %dC, Fan Speed: %d," \
|
||
|
" Vane Mode: %d\n",
|
||
|
mitsubir.getPower(), mitsubir.getMode(), mitsubir.getTemp(),
|
||
|
mitsubir.getFan(), mitsubir.getVane());
|
||
|
// Display the encoded IR sequence.
|
||
|
unsigned char* ir_code = mitsubir.getRaw();
|
||
|
Serial.print("IR Code: 0x");
|
||
|
for (uint8_t i = 0; i < MITSUBISHI_AC_STATE_LENGTH; i++)
|
||
|
Serial.printf("%02X", ir_code[i]);
|
||
|
Serial.println();
|
||
|
}
|
||
|
|
||
|
void setup() {
|
||
|
mitsubir.begin();
|
||
|
Serial.begin(115200);
|
||
|
delay(200);
|
||
|
|
||
|
// Set up what we want to send. See ir_Mitsubishi.cpp for all the options.
|
||
|
Serial.println("Default state of the remote.");
|
||
|
printState();
|
||
|
Serial.println("Setting desired state for A/C.");
|
||
|
mitsubir.on();
|
||
|
mitsubir.setFan(1);
|
||
|
mitsubir.setMode(MITSUBISHI_AC_COOL);
|
||
|
mitsubir.setTemp(26);
|
||
|
mitsubir.setVane(MITSUBISHI_AC_VANE_AUTO);
|
||
|
}
|
||
|
|
||
|
void loop() {
|
||
|
// Now send the IR signal.
|
||
|
Serial.println("Sending IR command to A/C ...");
|
||
|
mitsubir.send();
|
||
|
printState();
|
||
|
delay(5000);
|
||
|
}
|