PDA

View Full Version : Sony VPL-VW100 (Ruby) - TCPIP



Ginsonic
April 3rd, 2006, 01:58 AM
Hi,

I would like to control my new Sony Ruby via TCP/IP commands. In the manual commands are described for example like this: \x02\x0aSONY\x00\x17\x29\x00 , where \x means hexvalues. I tried this lua program with no success:

----------------
function CallBck(p1,p2)
if ( p2 == gip.CONNECTIONCLOSED ) then
print("Sony VPL-VW100 - Connection closed")
return
end

if ( p2 == gip.CONNECTIONESTABLISHED ) then
if ( p1 == 0 ) then
print("Sony VPL-VW100 - Connection opened")
else
print("Sony VPL-VW100 - Connection failed: ", p1)
end
return
end
end

c = gip.Open('192.168.0.22',53484)
c:Callback(2, '\r', 3000, CallBck)
SendData = "020aSONY00172900"
c:Write(SendData)
----------------

So does anybody know, what is wrong here, and if this is the correct way to send the hexvalues to the beamer ?

Many thanks

Promixis
April 3rd, 2006, 10:19 AM
see this thread

http://www.promixis.com/phpBB2/viewtopic.php?t=13886&highlight=sony+tcp

Ginsonic
April 3rd, 2006, 12:26 PM
Oops, did not see this :oops:

Thanks Mike !

Dieter

Promixis
April 3rd, 2006, 04:20 PM
Since that is for NetRemote, if you get it running on G4 would you please post it here :D

Ginsonic
April 4th, 2006, 12:15 AM
I will do my very best :)

Ginsonic
June 28th, 2006, 04:22 AM
Last but not least, I just uploaded a Girder4 lua extension for the Sony.

Have fun ;) !

Promixis
June 28th, 2006, 08:28 AM
thanks !

Promixis
June 28th, 2006, 08:28 AM
thanks !