Posts: 52
Joined: Sep 2007
Reputation:
0
Yes, I just noticed the same problem. I am not sure when this cropped up, but it used to be okay. I am looking in to it right now.
Posts: 20
Joined: Jan 2013
Reputation:
0
Which link is for the latest build of the driver?
Posts: 1
Joined: Dec 2013
Reputation:
0
2013-12-12, 17:46
(This post was last modified: 2013-12-12, 17:48 by Ronny_Adeo.)
Hi all,
I'm testing this driver with a generic XBMC media player, I need to change the port to 80 but now the response in Control4 is:
On Timer Expired
Attempting to reconnect to XBMC...
On Timer Expired
XBMC: polltimer test
Emit: {"id":137,"jsonrpc":"2.0","method":"Player.GetActivePlayers"}
On Timer Expired
SendToNetwork:{"id":137,"jsonrpc":"2.0","method":"Player.GetActivePlayers"}
On Timer Expired
On Timer Expired
XBMC: polltimer test
Emit: {"id":138,"jsonrpc":"2.0","method":"Player.GetActivePlayers"}
On Timer Expired
SendToNetwork:{"id":138,"jsonrpc":"2.0","method":"Player.GetActivePlayers"}
On Timer Expired
On Timer Expired
XBMC: polltimer test
XBMC: OnConnectionStatusChanged[6001 (80)]: OFFLINE
XBMC: not connected.
Failed to receive poll responses from XBMC... Disconnecting...
XBMC: OnConnectionStatusChanged[6001 (80)]: ONLINE
Connected to XBMC...
Posts: 1
Joined: Jan 2014
Reputation:
0
having same issues as jbmedia. Driver is flawless in menus but once a movie starts it all goes haywire. clicking right or left after bringing up the OSD will step forward and backward rather than moving through the menu controls
Posts: 26
Joined: Oct 2011
Reputation:
0
2014-01-04, 05:54
(This post was last modified: 2014-01-04, 07:52 by Polonda.)
Driver seems to be working well, however I can only get WOL to send the pc to standby, it won't wake it back up. All Bios settings and network card settings have been checked. Any thoughts?
Update:I'm able to wake the computer from an app on my phone as well as with a Utility on my laptop. SO it appears the pc is configured correctly and the issue is on the C4 side of things. I tried the MAC address with and without the : .
Posts: 26
Joined: Oct 2011
Reputation:
0
@WOL: I have the same problem; the device shuts down, but does not wake up anymore. I did packet sniffing and can verify the magic packet is sent by control 4, but xbmc does not respond to it.
Other WOL programs did work however (Motherbord is supporting WOL) and even with this Control4 Driver i can wake up XBMC, but only in 1 of 30 cases which is not satisfying..
If anyone have a solution to this please let me know.
[/quote]
If anyone can help with the WOL issue I would it would be GREATLY appreciated.
Posts: 2
Joined: Feb 2012
Reputation:
0
Does anyone have the WOL fully working? I have the same problem listed here, PC sleeps but doesn't wake. It worked the very first time that I set it all up but since then I am using the android app to wake. I love this driver, it does everything I need and a big thanks for making it free. Having the WOL working would be the icing on the cake.
Posts: 15
Joined: Apr 2012
Reputation:
1
2014-01-25, 17:43
(This post was last modified: 2014-01-25, 17:44 by Craig P.)
i have WOL working perfectly. This is the code snippet for the driver i created...
MAC = ""
C4:CreateNetworkConnection (6001, "255.255.255.255", 9)
C4:NetConnect(6001, 9, "UDP")
function ExecuteCommand(strCommand, tParams)
for i=1, 30 do
if (strCommand == "LUA_ACTION") then
if (tParams.ACTION == "Test MAC " .. i .." WOL") then
print("Test MAC " .. i .. " WOL")
MAC = Properties["MAC Address " .. i]
end
end
if (strCommand == "Send MAC " .. i .. " WOL") then
print("Send MAC " .. i .. " WOL")
MAC = Properties["MAC Address " .. i]
end
end
MAC = MAC:gsub(":", "") -- Remove any colons in the entered MAC addresses
MAC = MAC:gsub("-", "") -- Remove any dashes in the entered MAC addresses
MAC = tohex(MAC) -- Convert to HEX
packet = string.rep(string.char(255), 6) .. string.rep(MAC, 16) -- Build 'magic packet'.
hexdump (packet)
C4:SendToNetwork (6001, 9, packet)
C4:SendToNetwork (6001, 9, packet)
end
Posts: 2
Joined: Feb 2012
Reputation:
0
2014-01-25, 23:27
(This post was last modified: 2014-01-26, 01:17 by chris6128.)
I gave up with it and found a free homemation WOL driver that I have programmed to wake my PC when "watch xbmc" is selected. Works a charm :)