Skip to content

ESP8266 Compatible IR Blaster that accepts HTTP commands for use with services like Amazon Echo

Notifications You must be signed in to change notification settings

seco/ESP8266-HTTP-IR-Blaster

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

40 Commits
 
 
 
 

Repository files navigation

ESP8266-HTTP-IR-Blaster V2

============== ESP8266 Compatible IR Blaster that accepts HTTP commands for use with services like Amazon Echo

img_0706

The purpose of this project was to create a Wi-Fi enabled IR blaster that could be controlled with Amazon Alexa and IFTTT This program uses the ESP8266 board and the ESP8266Basic firmware to achieve these goals with minimal coding overhead

Version 2 of the project aims to increase the reliability and expand the functionality to include many different types of devices in addition to transmitting RAW formatted codes and more complex combination of codes

Supported Signals

  • NEC
  • Sony
  • Panasonic
  • JVC
  • Samsung
  • Sharp
  • Coolix
  • Dish
  • Wynter
  • Roomba
  • RC5/RC6
  • RAW

Hardware

V2 of the hardware includes the 2N2222 transistor for increased current and pulls directly off the USB port via the VIN pin (5V supply) to increase the overall current delivery to the IR LED to improve brightness and range. Appropriate current limiting resistors are also shown. V1 hardware still works with the new code but V2 is recommended for better performance and prolonged lifespan of your ESP8266 and LED.

irblaster

These are just quick Amazon references. Parts can likely be purchased cheaper elsewhere

Drivers

Install the NodeMCU drivers for your respective operating system if they are not autodetected

https://www.silabs.com/products/mcu/Pages/USBtoUARTBridgeVCPDrivers.aspx

Setup

  1. Install Arduino IDE
  2. Install ESP8266 Arduino Core
  3. Install the following libraries from the Arduino IDE Library Manager: ESP8266WebServer ESP8266WiFi ArduinoJson
  4. Manually install the IRremoteESP8266 library
  5. Load the IRController.ino blueprint from this repository
  6. Customize your WiFi settings, ports, IP address, and passcode at the top of the blueprint
  7. Upload blueprint to your ESP8266. Monitor via serial at 115200 baud rate
  8. Forward whichever port your ESP8266 web server is running on so that it can be accessed from outside your local network
  9. Create an IFTTT trigger using the Maker channel using the URL format below

Capturing Codes

While connected to the ESP via USB and monitoring via serial at 115200 baud, scan your remote code you wish to emulate. Most codes will be recognized and displayed in the format A90:SONY:12. Make a note of the code displayed in the serial output as you will need it for your maker channel URL. If your code is not recognized scroll down the JSON section of this read me.

Simple URL

For sending simple commands such as a single button press, or a repeating sequence of the same button press, use the logic below. This is unchanged from version 1. Parameters

  • pass - password required to execute IR command sending
  • code - IR code such as A90:SONY:12
  • pulse - (optional) Repeat a signal rapidly. Default 1. Sony based codes will not be recognized unless pulsed at least twice
  • pdelay - (optional) Delay between pulses in milliseconds. Default 100
  • repeat - (optional) Number of times to send the signal. Default 1. Useful for emulating multiple button presses for functions like large volume adjustments or sleep timer
  • rdelay - (optional) Delay between repeats in milliseconds. Default 1000
  • out - (optional) Set which IRsend present to transmit over. Default 1. Choose between 1-4. Corresponding output pins set in the blueprint. Useful for a single ESP8266 that needs multiple LEDs pointed in different directions to trigger different devices

Example: http://xxx.xxx.xxx.xxx/msg?code=A90:SONY:12&pulse=2&repeat=5&pass=yourpass

JSON

For more complicated sequences of buttons, such a multiple button presses or sending RAW IR commands, you may do an HTTP POST with a JSON object that contains an array of commands which the receiver will parse and transmit. Payload must be a JSON array of JSON objects. Password should still be specified as the URL parameter pass.

Parameters

  • data - IR code data, may be simple HEX code such as "A90" or an array of int values when transmitting a RAW sequence
  • type - Type of signal transmitted. Example "SONY", "RAW", "Delay" or "Roomba" (and many others)
  • length - (conditional) Bit length, example 12. Parameter does not need to be specified for RAW or Roomba signals
  • pulse - (optional) Repeat a signal rapidly. Default 1. Sony based codes will not be recognized unless pulsed at least twice
  • pdelay - (optional) Delay between pulses in milliseconds. Default 100
  • repeat - (optional) Number of times to send the signal. Default 1. Useful for emulating multiple button presses for functions like large volume adjustments or sleep timer
  • rdelay - (optional) Delay between repeats in milliseconds. Default 1000
  • khz - (conditional) Transmission frequency in kilohertz. Default 38. Only required when transmitting RAW signal
  • out - (optional) Set which IRsend present to transmit over. Default 1. Choose between 1-4. Corresponding output pins set in the blueprint. Useful for a single ESP8266 that needs multiple LEDs pointed in different directions to trigger different devices.

3 Button Sequence Example JSON

[
    {
        "type":"nec",
        "data":"FF827D",
        "length":32,
        "repeat":3,
        "rdelay":800
    },
    {
        "type":"nec",
        "data":"FFA25D",
        "length":32,
        "repeat":3,
        "rdelay":800
    },
    {
        "type":"nec",
        "data":"FF12ED",
        "length":32,
        "rdelay": 1000
    }
]

Raw Example

[
    {
    "type":"raw",
    "data":[2450,600, 1300,600, 700,550, 1300,600, 700,550, 1300,550, 700,550, 700,600, 1300,600, 700,550, 700,550, 700,550, 700],
    "khz":38,
    "pulse":3
    }
]

Multiple LED Setup

If you are setting up your ESP8266 IR Controller to handle multiple devices, for example in a home theater setup, and the IR receivers are in different directions, you may use the out parameter to transmit codes with different LEDs which can be arranged to face different directions. Simply wire additional LEDs to a different GPIO pin on the ESP8266 in a similar fashion to the default transmitting pin and set the corresponding pin to the irsend1-4 objects created at the top of the blueprint. For example if you wired an additional LED to the GPIO0 pin and you wanted to send a signal via that LED instead of the primary, you would modify irsend2 in the blueprint to IRsend irsend2(0) corresponding to the GPIO0 pin. Then when sending your signal via the url simply add &out=2 and the signal will be sent via irsend2 instead of the primary irsend1.

JSON and IFTTT

While the JSON functionality works fine with a command line based HTTP request like CURL, IFTTT's maker channel is not as robust. To send the signal using the IFTTT Maker channel, simply take your JSON payload and remove spaces and line breaks so that entire packet is on a single line, then added it to the URL using the plain argument.

Sample URL using the same 3 button JSON sequence as above

http://xxx.xxx.xxx.xxx/json?pass=yourpass&plain=[{"type":"nec","data":"FF827D","length":32,"repeat":3,"rdelay":800},{"type":"nec","data":"FFA25D","length":32,"repeat":3,"rdelay":800},{"type":"nec","data":"FF12ED","length":32,"rdelay":1000}]

Roku

The Roku device supports sending commands via an API to simulate remote button presses over HTTP, but only allows connections via a local IP address. This blueprint supports sending these commands and acts as a bridge between IFTTT/Alexa to control the Roku with basic commands

Roku commands require 3 parameters that can be sent as a Simple URL or part of a JSON collection. Parameters include:

  • data - Roku code
  • type - Type of signal transmitted. Must be set to roku
  • ip - Local IP address of your Roku device

Example Roku command to simulate pressing play button on a Roku with local IP 10.0.1.3

http://xxx.xxx.xxx.xxx/msg?pass=yourpass&type=roku&data=keypress/play&ip=10.0.1.3

About

ESP8266 Compatible IR Blaster that accepts HTTP commands for use with services like Amazon Echo

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Other 100.0%