Samsung ME series and WOL
I am controlling a Samsung ME55C via TCP and since Samsung unit shuts down the LAN port when its powered off, there is no option to turn it on. I know wake up on lan works for other series of Samsung but i am not able to do the same with this series. I have tried the following ports 40000, 7001(magicinfolite server port) and 6000( after scanning the ports).
Has anyone got this unit to turn on ?
Has anyone got this unit to turn on ?
1
Comments
DEFINE_FUNCTION INTEGER Generate_Magic_Packet(CHAR sMAC[], CHAR sMagicPacket[]) { STACK_VAR INTEGER Count IF (LENGTH_STRING(sMAC) == 6 AND MAX_LENGTH_STRING(sMagicPacket) >= 102) { sMagicPacket = "$FF,$FF,$FF,$FF,$FF,$FF" FOR (Count = 1; Count <= 16; Count++) { sMagicPacket = "sMagicPacket, sMAC" } RETURN TRUE } RETURN FALSE }Also make sure you are using IP_UDP in your IP_CLIENT_OPEN for WOL, and IP_TCP for your IP_CLIENT_OPEN for the control connection.Perhaps post this code snippet for us to look at...
Apart from screen firmware, you may also want to ensure the client network policies/routers allow WoL.
WoL can sometimes be a funny old fish.
That's pretty normal - it's part of a very low network layer.
Anyhow, hope it helps.
If all else fails, i will post the code.
cSamsung_MAC1 = "$F4,$7B,$5E,$61,$0F,$18"
IP_CLIENT_OPEN (dvSamsung1_UDP.PORT,'255.255.255.255',7676,2)
Wait 5
{
SEND_STRING dvSamsung1_UDP,"$FF,$FF,$FF,$FF,$FF,$FF,cSamsung_MAC1,
cSamsung_MAC1,
cSamsung_MAC1,
cSamsung_MAC1,
cSamsung_MAC1,
cSamsung_MAC1,
cSamsung_MAC1,
cSamsung_MAC1,
cSamsung_MAC1,
cSamsung_MAC1,
cSamsung_MAC1,
cSamsung_MAC1,
cSamsung_MAC1,
cSamsung_MAC1,
cSamsung_MAC1,
cSamsung_MAC1"
nDisplay_Standby[5] = 1
WAIT 200
{
IP_CLIENT_CLOSE(dvSamsung1_UDP.PORT)
Wait 200
{
IP_CLIENT_OPEN(dvDisplay5.PORT,'10.242.142.123',1515,1)
nDisplay_Connect[5] = 1
}
}
}
Please find the working code, used port 2304,7406,9,7 and broadcast ip of 255.255.255.255.