HELP with Netlinx and Projector VPL-FE200
alexmgillis
Posts: 8
Hi all,
I have been reading your post quiote often and this is my firts time posting a call for help
We have two VPL-FE200 connected to a NI300, previusly they were working alright with PANJA system, but we upgrade and we did nto have access to the previsu code so we pretty much create the code from scratch.
I did contact Sony and they sent me some codes that are currentley not working.
I tryed almost everything:
data_event setting up the prot to different speed, parities,...
wire configuration corss not corss, etc etc
If anybosy has the piece of cod ein netlinx for the vpl 200 i would be very very greatful.
Please help!
I have been reading your post quiote often and this is my firts time posting a call for help
We have two VPL-FE200 connected to a NI300, previusly they were working alright with PANJA system, but we upgrade and we did nto have access to the previsu code so we pretty much create the code from scratch.
I did contact Sony and they sent me some codes that are currentley not working.
I tryed almost everything:
data_event setting up the prot to different speed, parities,...
wire configuration corss not corss, etc etc
If anybosy has the piece of cod ein netlinx for the vpl 200 i would be very very greatful.
Please help!
0
Comments
Thanks a lot for your quick response.
Yes the code that we have are similar to these. A5...5A
However i am not able to make it work through rs232.
Do you or anybody else have a working system?
I am curious if i am missing out something with the communication specs, the wire configuration etc
right now i send_string pretty much the same strings that you send to me....
thanks again!
If you are sending the correct command in code and you're connections are correct, you should be good to go.
You might step through the process one baby step at a time. Check that you are indeed sending the code (Red Light) You also might hook up a laptop's serial cable to the Netlinx output port and make sure the serial port is working properly.
The pin outs for rs-232 ports are 5-Gnd 2 and 3 are used for transmit and recieve. You might try flipping pins 2 and 3.
You can also hook up the laptop to the projector and see if it repsponds to commands from there.
cState = "$A9,$01,$02,$01,$00,$00,$03,$9A"
cHours = "$A9,$01,$13,$01,$00,$00,$13,$9A"
cPowerOn = "$A9,$17,$2E,$01,$00,$17,$3F,$9A"
cPowerOff = "$A9,$17,$2F,$00,$00,$17,$3F,$9A"
cVideo1 = "$A9,$00,$01,$00,$00,$00,$01,$9A"
cVideo2 = "$A9,$00,$01,$00,$00,$01,$01,$9A"
cData1 = "$A9,$00,$01,$00,$00,$02,$03,$9A"
cData2 = "$A9,$00,$01,$00,$00,$03,$03,$9A"
SET BAUD 38400,E,8,1 485 DISABLE
the $A5 was actually the one i needed. Sorry i did take so long to reply back.
Some tips for those who are going towards the same journey of programming a sony vpl200fx
1. be sure that the device ID is 0 or 1
2.. for some reason there is a byte that defines the type of projector and that is quite important for example
from tony de angelo (THANKS)
we have this
SET_PWR_ON [] = {$A5,$01,$00,$01,$00,$01,$03,$00,$01,$00,$01,$17,$00,***$90***,$08,$00,$06,$40,$54,$2E,$00,$00,$00,$B1,$5A}
the highlighted ,***$90*** was really messing with me as from Sony support department and all instructions around they suggest $80 instead $90
After hundreds of combinationas and weird teotries about what was wrong, it turns out that this two things the ID DEvice (it is a dial swhitch on the back of the Projector) and the $90 intead of the $80 was the problem!
I hope this helps and thanks everybody!!!!