This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

DLPLIGHTCRAFTER: dlp 3000

Part Number: DLPLIGHTCRAFTER

Hello to everyone...

I have used Jan winter's code to communicate dlp3000 matlab...I am able to send image and project it but when i rerun the programm never change the image at projection,to project the new one....Can anyone help me??

Thank you in advance!

tcpObject = tcpip('192.168.1.106',21845)
fopen(tcpObject)

%talk to the device
L=LightCrafter();
L.connect();

% %check the connection status, "open"
L.tcpConnection;


imFile1 = fopen( 'Name_image.bmp' );
imData1 = fread( imFile1 );
%
L.setBMPImage( imData1, tcpObject );

fclose(tcpObject);
L.disconnect();