ESP8266iTachEmulator

Send infrared remote control signals via WLAN using an ESP8266

MIT License

Stars
18

ESP8266iTachEmulator Build Status

Send and learn infrared remote control signals via WLAN using an ESP8266

Purpose

Implements sending and receiving/learning of infrared remote control commands using (subsets of)

Compatibility

Known to work with

Example use case

Send and receive/scrutinize infrared remote codes via WLAN from IRScrutinizer

Building

ESP8266iTachEmulatorGUI is the most recent version that should be used. It uses ESP Manager to provide a GUI to set up the WLAN credentials, over-the-air updates, etc.

# Get the libraries
sudo apt-get install -y git
cd $HOME
# rm -rf Arduino/ # Uncomment this if you are sure what you are doing
mkdir -p Arduino/libraries/
cd Arduino/libraries/
git clone -o fee16e8 https://github.com/sebastienwarin/IRremoteESP8266.git
git clone -o 62b9ebf https://github.com/sui77/rc-switch.git
git clone -o 847a608 https://github.com/probonopd/ProntoHex.git
git clone -o 6c902fb https://github.com/sticilface/ESPmanager.git
git clone -o bfde9bc https://github.com/me-no-dev/ESPAsyncWebServer.git
git clone -o 5987225 https://github.com/me-no-dev/ESPAsyncTCP.git
git clone -o 409ca7e https://github.com/bblanchon/ArduinoJson.git

# Get the SPIFFS uploader if you don't have it yet
mkdir $HOME/Arduino/tools
cd $HOME/Arduino/tools
wget -c "https://github.com/esp8266/arduino-esp8266fs-plugin/releases/download/0.2.0/ESP8266FS-0.2.0.zip"
unzip ESP8266FS-0.2.0.zip
rm ESP*.zip
cd -

# Then compile with
Arduino-1.6.11.hourly201608161225.esp497d19d-x86_64.AppImage

# Upload the SPIFFS for the ESP Manager from the ESP Manager sample sketch using the SPIFFS uploader.

Hardware

Minimal hardware needed for sending:

  • NodeMCU 1.0 module (around USD 3 from China shipped) or, if it should fit a small enclosure as shown on the picture, 1 bare ESP12E module (around USD 2 from China shipped; in this case need a matching programming jig too in order to flash it initially, and you need to use the usual minimal circuit to pull up CH_PD and pull down GPIO15)
  • Infrared LED
  • 2N7000 N-channel transistor
  • Resistor to drive the transistor

Circut for sending:

  • To get good range, attach a resistor to pin 12 of the ESP-12E and connect the resistor to the G pin of a 2N7000 transistor
  • If you look at the flat side of the 2N7000 you have S, G, D pins.
  • Connect S to GND, G to the resistor to the MCU, and D to the IR LED short pin.
  • The long pin of the IR LED is connected to +3.3V.
  • I picked the 2N7000 because unlike others it will not pull GPIO2 down which would prevent the chip from booting (if using an ESP-1 module; I prefer ESP-12 now)

Circut for receiving:

  • Most generic infrared receivers have the pins out, gnd, vcc when looking from the front. Connect out to pin D1 of the NodeMCU 1.0 module = GPIO5 of the ESP and connect gnd, vcc.

Improvements regarding the hardware setup welcome!

Issue with this hardware setup:

  • Probably does not use full range potential of the LED; should change the circuit so that it maximizes the allowable burst current of the LED
  • During bootup of the ESP, the LED is lit. If we want to change the circuit so that it maximizes the allowable burst current of the LED, then this must not happen
  • Not using a resistor in series with the LED is not a good idea

Versions of libaries known to work

  • ArduinoJson 409ca7e
  • ESPAsyncTCP 5987225
  • ESPAsyncWebServer bfde9bc
  • ESPmanager 6c902fb
  • IRremoteESP8266 fee16e8
  • ProntoHex 847a608
  • rc-switch 62b9ebf

Debugging

Connect with telnet to port 22 for debug output. I am using this debug port instead of/in addition to a serial line.

TODO

Pull requests welcome!

  • Switch everything to async, e.g., using ESPAsyncUDP
  • Implement learning - ideally we could use the sending LED for this
  • A HTTP GUI for sending codes that are stored in SPIFFS and can be managed using a GUI
  • Implement a GIRS server
  • MQTT

Credits

  • igrr for esp8266/Arduino
  • The authors of the libraries used
  • sticilface for ESPmanager and help while debugging