We closed this forum 18 June 2010. It has served us well since 2005 as the ALPHA forum did before it from 2002 to 2005. New discussions are ongoing at the new URL http://forum.processing.org. You'll need to sign up and get a new user account. We're sorry about that inconvenience, but we think it's better in the long run. The content on this forum will remain online.
Page Index Toggle Pages: 1
colorkinetics java sdk (Read 1246 times)
colorkinetics java sdk
Jul 31st, 2007, 1:58am
 
Hi, anyone has experience on controlling colorkinetics iplayer 2 (usb interface)?

i have written some code, but it gives errors.

i have the processing sketch and a code folder, and under that code folder there is CKController.jar.

the sdk resides here:
http://www.colorkinetics.com/support/downloads/files/CKController.zip

any help much appreciated,
alp

============================================
com.colorkinetics.controller.DevException

com.colorkinetics.controller.DevException

at com.colorkinetics.controller.CKController.<init>(CKController.java)

31

============================================
import com.colorkinetics.controller.*;

CKController ctl;


void setup(){
try{
  ctl = new CKController();
  ctl.printDevID();

}catch(DevException e){
  System.out.println(e.toString());
  e.printStackTrace();
  System.out.println(e.getExceptionValue());

}
}
============================================
Re: colorkinetics java sdk
Reply #1 - Aug 19th, 2007, 3:22am
 
ok so the 31 corresponds to a missing component error which also means Unable to load a library component so I am not sure what is going on here yet. It would be nice to know what component can't be loaded.
Re: colorkinetics java sdk
Reply #2 - Aug 19th, 2007, 11:32pm
 
I have now tested this setup in windows and it appears the problem is being caused by the dll not being found. Anyone now how/if this can be solved. Basically the setup is a java object that loads a dll for the functionality.
Page Index Toggle Pages: 1