Introduction: Arduino PowerPoint Pointer

About: I like making things, specially if they can move.

Grab an Arduino and turn it into a Power Point pointer using an IR sensor and your TV remote.

Step 1: Intro

The last time that I had to do an PowerPoint presentation it was very frustrating to be all the time with my mouse in my hand, it was not simple design for this function.

With a new presentation coming up titled "Introduction to Arduino," I thought, what best way to show some of the capabilities of the Arduino board then to build a quick power point presenter tool with it. The first idea that pops has, "Why not use the TV Remote?" Design to be hold in a more ergonomic position that the mouse (for this case).

Step 2: Components

For this project you will need:

  • 1x TV Remote
  • 1x Arduino Leonardo (also possible with UNO but some modifications are needed)
  • 1x IR sensor (my is a VS1838B)
  • Optional - I build a very easy shield using perfboard

Step 3: Assembly

The connection diagram is very easy, simple connect the GND from the sensor to Arduino GND pin, 5V from the sensor to the 5V pin in the Arduino and the Data pin from the sensor to Digital Pin 2 of the Arduino.

Step 4: Software

The code part is divided in two steps. In the fist one, you will need to read the keys that you want to use from your TV Remote. For this you will be able to decode the IR signal send out from the remote.

The second step, you will use the information from step one, and assign the keys to there new functions as PowerPointer pointers.

Step One

Start by downloading the IRremote Arduino Library and install it in the correct folder. You can downloaded from there:

IR Sensor Library Download

Do not forget to follow installation procedure recommend in the github page.

Download Code 1 from my GitHub page where:

Code 1 Download

Upload the Code 1 to your Arduino. Open a Serial Monitor window, if everything is ok, you should start to different numbers every time you press on key in the TV remote.

Store the numbers corresponding to the keys that you want to use. In my case, I used the central forward and backward keys in my TV remote

.

Step Two

Download Code 2 from my GitHub page where:

Code 2 Download

Replace the numbers that you find in Code 1 in the "If" structures in the Code 2 and upload.

If you are using the Arduino Leonardo, after the upload, every time that you press the selected TV remote keys, they will act as the forward and backward arrows from your keyboard.(I used the arrow keys for pushing the slides forward or backward)

On PowerPoint
Now open your presentation and if you are in "Slide Mode", the slides will change back and forward every time that you press previous selected keys from your TV remote.

Step 5: ​Other Arduino Board

If you are using other Arduino boards, I think that is also possible to build this project however some changes need to be done. The big difference is that the Atmega8U2 or equivalent chip, responsible for the communication between the ATmega328 and the computer, needs to be flashed. I did not had the need to do this, because with the Arduino Leonardo, Zero and DUE appear as native keyboard or mouses when defined and connected to your computer. There are some support regarding this subject in the forum.arduino.cc.

If you do this change please tell me or post this information in this project page in order for other users to be informed also :)

As normal, please write me if you found any mistake or if you have any suggestion/improvement or questions. Thanks for reading.

Hugo Gomes

Arduino Contest 2016

Participated in the
Arduino Contest 2016