Page 7 of 21

Re: Remote Control Signal Over Lan?

Posted: Wed Sep 01, 2010 10:02 pm
by erdem_ua
AFAIK there is no Wake On Lan on B series. Also telnet is closed... So you cannot send WakeOnLan signal... Also TV doesn't support WakeOnLan signal.

Re: Remote Control Signal Over Lan?

Posted: Thu Oct 28, 2010 3:30 pm
by erdem_ua
I think TV don't listen and power of the ethernet port while it's closed (due power saving). So no way to do that if ethernet doesn't support "wake on lan"

Remote LAN Control (v0.01) - Desktop PC AutoIt app

Posted: Sun Jan 02, 2011 6:16 pm
by moras86
I create visual interface for automate sending keycodes from PC to TV via telnet.

For work you need download Remote LAN Control from
And run it at TV (using Content Library > Game menu).


Next download my app from: HERE :P

Unpack archive and start onec time PuTTy.exe for configuration.
Image
Set:
1. You TV IP adress
2. For port set: 2345
3. Connection type: Raw
4. As saved session put name, eg.: Samsung B650
5. Next click Save
6. Click Cancel for close PuTTy


Now you can start my application Remote LAN Control.exe and click keys like on remote.
Image

All keys for my remote include. Also add some extra keys, and key sequence action (DVB signal check).


Know errors:
- after click any button don't use any keys and mouse for 1-2 seconds :!:
- GUIDE key don't work - I'm can't find key code for it :|
- some Direct Source may don't work (depends of TV models plug available)


PS: Create with AutoIt and source include.

Re: Remote Control Signal Over Lan?

Posted: Sun Jan 02, 2011 7:58 pm
by juusso
I remember, here is possible to change button colors in AutoIt and attach nice picture (samsungs RC?) for GUI background, for a long time i played with it too :)
And where is game for content library to download from? Oh, ok, i found.
Thank you, first impression is very good! Let`s try... :)

Re: Remote Control Signal Over Lan?

Posted: Sun Jan 02, 2011 9:03 pm
by sbav1
Nice work, thank you!

I think "putty method" for sending keycodes can be possibly replaced with AutoIt function like this:

Code: Select all

Func SendKeycode($keycode)
    Local $sc

    TCPStartup()
    While 1
        $sc = TCPConnect($IPaddr, 2345)
        If @error Then
		   MsgBox(4112, "Error", "TCPConnect failed with WSA error: " & @error)
           ExitLoop
        Endif
        TCPSend($sc, $keycode & @LF)
        TCPCloseSocket($sc)
        ExitLoop
    WEnd
    TCPShutdown()
EndFunc
Working script sample attached (IP address stored in .ini file).
"GUIDE" key code is 79 (0x4f).