[How-To] Remote Control Signal Over Lan?
- erdem_ua
- SamyGO Admin
- Posts: 3126
- Joined: Thu Oct 01, 2009 6:02 am
- Location: Istanbul, Turkey
- Contact:
Re: Remote Control Signal Over Lan?
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.
- erdem_ua
- SamyGO Admin
- Posts: 3126
- Joined: Thu Oct 01, 2009 6:02 am
- Location: Istanbul, Turkey
- Contact:
Re: Remote Control Signal Over Lan?
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"
-
- Official SamyGO Developer
- Posts: 180
- Joined: Sun Feb 21, 2010 3:18 pm
- Location: Poland
- Contact:
Remote LAN Control (v0.01) - Desktop PC AutoIt app
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
Unpack archive and start onec time PuTTy.exe for configuration.

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.

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.
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

Unpack archive and start onec time PuTTy.exe for configuration.

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.

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.


TV LCD: Samsung LE40B651T3W (CI) | Internet@TV | fw: 2005 (patched: SamyGO v0.24 + GMT2, ArFIX2, ADFIX) | matrix: SQ04
BluRay: Samsung BD-D5300-ZF | SamsungApps | fw: 1013
Android-Box: Zidoo X8 | Realtek RTD1295 64bit (QuadCore), Mali-T820 GPU, 2 GB RAM, HDMI IN record, Android 6.0 | ZDMC 17.1
my projects: Remote LAN Control - Desktop app (v0.8) | Signal checker for DVB-T (v0.3)
Re: Remote Control Signal Over Lan?
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...

And where is game for content library to download from? Oh, ok, i found.
Thank you, first impression is very good! Let`s try...

LE40B653T5W,UE40D6750,UE65Q8C
Have questions? Read SamyGO Wiki, Search on forum first!
FFB (v0.8), FFB for CI+ . Get root on: C series, D series, E series, F series, H series. rooting K series, exeDSP/exeTV patches[C/D/E/F/H]
DO NOT EVER INSTALL FIRMWARE UPGRADE
Have questions? Read SamyGO Wiki, Search on forum first!
FFB (v0.8), FFB for CI+ . Get root on: C series, D series, E series, F series, H series. rooting K series, exeDSP/exeTV patches[C/D/E/F/H]
DO NOT EVER INSTALL FIRMWARE UPGRADE
Re: Remote Control Signal Over Lan?
Nice work, thank you!
I think "putty method" for sending keycodes can be possibly replaced with AutoIt function like this:
Working script sample attached (IP address stored in .ini file).
"GUIDE" key code is 79 (0x4f).
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
"GUIDE" key code is 79 (0x4f).
You do not have the required permissions to view the files attached to this post.