Your Universal Remote Control Center
RemoteCentral.com
Which Remote Should I Buy? Forum - View Post
Previous section Next section Previous page Next page Up level
Up level
The following page was printed from RemoteCentral.com:

Login:
Pass:
 
 

Page 2 of 2
Topic:
Need universal remote to replace projector remote control, have HEX codes
This thread has 23 replies. Displaying posts 16 through 24.
Post 16 made on Thursday August 18, 2011 at 16:52
AFink
Lurking Member
Joined:
Posts:
August 2011
1
Here are instructions for resetting the Lamp Hours for a Plus U2-1130

Purchase a Harmony 300 Universal Remote (I got mine at Target).

After you completed the normal setup steps for a Plus U2-1130, go into Buttons, and Change or Fix what a Button Does.

There are 5 programmable buttons on the Harmony 300 just below the device selector. Drag and Drop the following Commands from the right hand side into the programmable buttons (Power Off, Help, Enter, Power On). Keep track of where you drag them to. Sync the Remote. Disconnect and go to your Projector.

Click on Aux (assuming you assigned this button to your Plus U2-1130), to tell it you are instructing the Remote to talk to the Plus U2-1130. Now, Use the Power On (programmed button), Press Menu (standard button), use the Arrows (standard buttons) to get to the Power Menu. Press Enter (programmed button), use the arrows to get to the Lamp Hours. Now press and hold the Power On (programmed button) until the Lamp Hours reset.
Post 17 made on Monday April 29, 2013 at 19:42
Pokinatcha91
Lurking Member
Joined:
Posts:
April 2013
2
Would a dish 20.0 IR universal remote work?
Post 18 made on Thursday September 4, 2014 at 10:26
jmeile
Lurking Member
Joined:
Posts:
September 2014
5
Hi DrNeon

I'm just wondering if you have any success with controlling your Plus U2-1130 with Arduino. Right now I'm on the same situation as you: I changed the lamp, but I don't have the remote control and I would like to try doing this with arduino.

If you didn't have any success, then I will buy the remote control.

Best regards
Josef
Post 19 made on Friday September 5, 2014 at 00:42
mdavej
Active Member
Joined:
Posts:
December 2002
627
On September 4, 2014 at 10:26, jmeile said...
Hi DrNeon

I'm just wondering if you have any success with controlling your Plus U2-1130 with Arduino. Right now I'm on the same situation as you: I changed the lamp, but I don't have the remote control and I would like to try doing this with arduino.

If you didn't have any success, then I will buy the remote control.

Best regards
Josef

The Doctor checked out about 5 years ago. Just get a remote. A $3 cable TV remote from ebay will do the job.
Post 20 made on Sunday September 7, 2014 at 06:07
jmeile
Lurking Member
Joined:
Posts:
September 2014
5
Thanks mdavej

Yes, I saw that the post is old; however, this is the only reference I found about the subject. So, who knows, perhaps DrNeon sees this too.

Anyway, I also know that a remote control can be bought for a really low price; however, I would prefer to invest that money on an arduino board and experiment a little bit. Right now I lent some equipment, so, I'm trying the solution to send the codes by using an IR LED. If I succeeded, then I will definitely buy the board. Buying the remote control is my last solution.

Best regards
Josef
Post 21 made on Sunday September 7, 2014 at 12:28
3FG
Select Member
Joined:
Posts:
August 2009
1,861
mdavej,
In this thread, I advised a poster on how to program a RCRP05B to reset the lamp hours, but it didn't actually work.  The recipe to reset the lamp hours includes sending a discrete Power On signal for 10 seconds.  The RCRP05B needed a keymove to provide the Discrete On signal, and it turns out that after a keymove, the remote has small gaps in the train of IR.  Probably this was the reason the lamp resetting didn't work.  Of course, with a $8 JP1 flash cable, it is easy to get uninterrupted IR signals.

In any event very few $3 remotes will have Discrete On included in their setup codes.

Josef,
If a Harmony can reset the lamp, a correctly programmed Arduino can do it also.
Post 22 made on Monday September 8, 2014 at 09:42
jmeile
Lurking Member
Joined:
Posts:
September 2014
5
Dear all

I could figure out what are the codes that I need to send to turn on and off the projector and was able to reset the lamp with my Arduino circuit. Here is how you have to do it:
  1. Download and install the Arduino software
     
  2. Download and install the Multi-Protocol Infrared Remote Library. Just download the files and copy the folder "IRremote" inside the "libraries" folder of your Arduino installation directory.
     
  3. Setup your Arduino board as shown here. You only need One IR diode and a resistance (I didn't have to use the resistance, but you may need it). You don't need the receiver circuit.
     
  4. Open Arduino and put this code on it:
    #include
    #include
    IRsend irsend;
    void setup()
    {
      Serial.begin(9600);
    }
    void loop() {
      if (Serial.read() != -1) {
          Serial.println("Begin Sending");
          time_t t1 = now();
          for (int i = 0; i < 150; i++)
          {
              irsend.sendNEC(0x189710EF, 32); //ON
          }
          time_t t2 = now();
          Serial.println("End Sending");
          Serial.print("Running time: ");
          Serial.print(t2 - t1);
        }
    }
     
  5. Upload the code to your Arduino, then start the "Serial Monitor" and send some character, ie: '1'. It doesn't matter what you send, the software will start sending the signal several times. If the final input you see is: "Running time: 12", then you are done. If not, modify the value of the upper limit of the variable "i" till you get a running time superior to "10", ie: put "i<200". In order to see if the LED is sending something, take a digital camera (the one on a smart phone will work) and point it to it. If you see a blinking white light, then the LED is sending.
     
  6. Point the IR LED from your circuit to the Infrared receiver on the Plus projector.
     
  7. Turn on the projector by pressing the red "POWER" button.
     
  8. Press the "MENU" button, then enter to the "POWER MENU" and highlight "LAMP USAGE".
     
  9. Begin sending the signal from your Arduino.
That's it. You will see "LAMP USAGE: 0"

Anyway, for the interested in knowing how to get the codes, here it is:

First at all, I used the codes posted by 3FG: File - Plus U2 Series Projectors

Then, I tried different combinations of the “on” function (Decimal: 8) as pointed by 3FG. It turns that the custom code is: 1897, which is 18E9 but from right to left, then reversed. So the original binary is:
0001 1000 1110 1001 = 18E9
Then from right to left we get:
1001 0111 0001 1000 = 9718
Then we invert the order of the hexadecimal number and it gave us: 1897

Then to get the function code of the on function (Decimal: 8), we mixed its hexadecimal code with its complement like this: 08F7, then we reversed it as follows:
Original binary: 0000 1000 1111 0111 = 08F7
From right to left: 1110 1111 0001 0000 = EF10

Finally we invert that number and we get the function code: 10EF

So the code we need for the arduino is: irsend.sendNEC(0x189710EF, 32);

Thanks to DrNeon for giving me the idea of the Arduino board and to 3FG for its helpful post.

I also want to thank Mr. "Technical Support" :-) from the Plus company for his help.

Best regards
Josef

Last edited by jmeile on September 12, 2014 02:50.
Post 23 made on Monday September 8, 2014 at 10:21
jmeile
Lurking Member
Joined:
Posts:
September 2014
5
I just joint the whole message into one. See my previous message.

Last edited by jmeile on September 11, 2014 12:09.
Post 24 made on Friday September 12, 2014 at 02:37
jmeile
Lurking Member
Joined:
Posts:
September 2014
5
Bump! Problem solved. See Post 22 from me.
Page 2 of 2


Jump to


Protected Feature Before you can reply to a message...
You must first register for a Remote Central user account - it's fast and free! Or, if you already have an account, please login now.

Please read the following: Unsolicited commercial advertisements are absolutely not permitted on this forum. Other private buy & sell messages should be posted to our Marketplace. For information on how to advertise your service or product click here. Remote Central reserves the right to remove or modify any post that is deemed inappropriate.

Hosting Services by ipHouse