Part Number: DLP3000
Hello,
I've used Jan Winter's MATLAB code to connect to the DLP3000. While I can establish a connection to the DLP, I cannot create any changes to the mirror configuration on the device.
I tried running:
L=LightCrafter()
L.connect()
tcpobject = tcpip('192.168.1.100', 21845)
tcpObject.BytesAvailableFcn = @instrcallback
tcpObject.BytesAvailableFcnCount = 7;
tcpObject.BytesAvailableFcnMode = 'byte';
fopen(tcpObject)
%The next three commands can be used to create display patterns
%L.setBMPImage( imData1, tcpObject )
%L.setStaticColor( 'FF', 'FF', 'FF', tcpObject )
L.setPattern('0A', tcpObject)
The code runs perfectly, but the DLP doesn't respond in any way. I was wondering if this would be an issue with the code, or if there may be a firmware/device issue that I may not have accounted for. Any help would be appreciated.