Automatic blind hooked up to existing projector screen using Arduino

Arduino automatic blind hooked up

Hello my name is Chipsy,
I’m French, reading instructables since at least 2 years, it is the first entry i make on this website.

Why i made this project :

I have a small homecinema system in my living room, with a projector and a commercial motorized projector screen.

I have a big mirror on the left wall, it makes the room brigther, but when watching a movie you want a dark room, and we could see reflections of the movie in it (very annoying) so i installed a grey/black blind i found in a DIY shop, it was a great fix.

Now i had to get it down then up every time by hand, so i tough “why not motorize it?Arduino automatic blind hooked up

Why i didn’t just remove the mirror ?
The mirror is embedded in the wall, and it is nice when not watching a movie, it expands the living room. So i wanted to keep it, but still be able to watch a movie without seeing the reflections in the mirror.

Step 1: “Reverse” engineering the projector screen motor controller

The existing controller for the projector screen is an integrated circuit that drives the screen motor.
It is controlled via an RF remote.

I grabbed my multimeter, and was able to find 12V on the relay coils.
So i soldered one wire to each relay coil (the terminal that gets down to 0V when the relay is “OFF”), plus one wire for GND.

Step 2: High level shifting ( 12V detection circuit with arduino )

The idea with this circuit is being able to “sense” with the Arduino weither the projector screen is going UP or going DOWN.

This circuit works like this :
– When current is provided on the base of the transistor, the current flows from Arduino 5V to GND, the Arduino INPUT is then HIGH.
– When NO current is provided on the base of the transistor, the Arduino INPUT is connected to GND, and then the INPUT is LOW.

I used two transistors (TIP122), one for each relay of the projector screen.

Now i am able to know when the projector screen is going down, or is going up.

Step 3: Motor controller ( H-bridge using relays )

To control the motor, i will be using an H-bridge with a DPDT relay like you can see on this schematic below.

If you want more details, look on this page :
http://oomlout.com/a/products/ardx/circ-11/Arduino automatic blind hooked up circuit

This circuit allows the motor to run in forward and reverse weither we set the Arduino pin HIGH or LOW.
The problem with this circuit is that it doesn’t allow us to stop the motor *gasp*

In order to stop the motor when we want it, we will need to unplug one of the motor wires, and plug it into another bit of circuit with a kind of Switch hooked up to another Arduino pin.

I did that by inserting another relay in my circuit ( an SPST or SPDT relay will do fine ), controlled by another transistor ( hooked up to another Arduino pin set on OUTPUT )

I tested the circuit with two LEDs :

Step 4: Determine the LIMITS for the Blind

Okay, so now we can tell the blind motor to go DOWN when the projector screen is going DOWN,
We can tell him to go UP when the projector screen is going UP.

But how do we know when to STOP?

When the instruction to go down is launched, I use a “delay(18000)” 18 seconds delay so that the blind is covering roughly the bottom of the mirror. Everytime it will go down, i tested it, it will arrive at the same position, but NOT exact, 1 or 2 cm different each time.

Because the position it arrives is different each time, we cannot do this when going UP, because after 2 or 3 times everything will be completely out of phase !

So we will use what is called a magnetic switch, to go UP while we didn’t detect the switch closing.

Read more: Automatic blind hooked up to existing projector screen using Arduino

Leave a Comment

Your email address will not be published. Required fields are marked *