Schlagwort: IR Remote

  • Playing Elden Ring with a TV remote

    Playing Elden Ring with a TV remote

    Reading Time: 2 minutes

    Arduino TeamApril 1st, 2022

    In case you’ve been living under a rock and haven’t heard of it, Elden Ring is currently the hottest game in the world. It’s an open world RPG made by From Software — the same company that is infamous for making the incredibly difficult Demon’s SoulsDark Souls, and Bloodborne games. Elden Ring is no less difficult, which is why it is amazing that ZiedYT was able to play using a TV remote converted into video game controller with an Arduino.

    While some modern remotes for smart TVs utilize Bluetooth or WiFi connections, traditional remotes work via infrared. These remotes contain an infrared emitter that pulses an invisible light in a specific pattern corresponding to a command, which the TV reads with a built-in infrared receiver. The “volume up” button, for example, will cause the remote to emit an infrared code distinct from the “channel down” button, and so on. While the code is modulated as a very rapid sequence of flashes, it is still a relatively slow process—something that spells death in any “Soulsborne” game.

    To use a TV remote for gaming, ZiedYT first needed a way to read the unique infrared codes corresponding to each button. For that, he used an Arduino Uno paired with an infrared receiver. Several libraries exist for this purpose and make it easy to decipher infrared codes. The Arduino then tells the connected computer via Serial which button was pressed. ZiedYT wrote a script to read that Serial data and then simulate the proper button press on an emulated gamepad. As far as Elden Ring is concerned, ZiedYT is playing with a standard controller.

    This setup lets ZiedYT move his character around, slash with his sword, drink Estus flasks (ehm, or Flasks of Crimson Tears, that is), and everything else. Of course, it also makes the game even harder to play than normal, so only the most masochistic gamers will want to perform this hack themselves.

    Website: LINK

  • Controlling any IR device with a remote and some hacking

    Controlling any IR device with a remote and some hacking

    Reading Time: 2 minutes

    Arduino TeamFebruary 12th, 2022

    All too often, people run into the issue of having many remotely controlled devices scattered around their house, with each requiring its own unique controller. The idea behind how they operate is simple: a single action corresponds to a number and pressing a button on the controller causes that number, along with some extra data, to be modulated via an infrared LED which reaches the device’s receiver. Finally, this value is decoded and the action is executed. 

    In order to combine all of these differing code patterns into a single place, YouTuber Endpoint101 decided to use an Arduino Nano plus an infrared receiver and separate emitter to act as a translator for an Amazon Fire TV remote, creating a truly universal remote control. Whenever a new device is being added, he must first press the button on the target device’s controller, which can be anything from a direction, media playback, or a volume adjustment, where it’s then read by the Nano and stored. The last step is essentially creating a map between the already known codes from the Fire TV remote and setting them equal to the desired code. 

    With this system, Endpoint101 can now activate any device he wants with just a single remote controller rather than having to search endlessly for the right one. To see more about this project, watch the video below!

    Website: LINK