FAQ
Cover
This is the archive Discourse for the Processing (ALPHA) software.
Please visit the new Processing forum for current information.

   Processing 1.0 _ALPHA_
   Topics & Contributions
   Tangible Computing
(Moderator: REAS)
   serial with c-control
« Previous topic | Next topic »

Pages: 1 
   Author  Topic: serial with c-control  (Read 559 times)
reti


serial with c-control
« on: Nov 14th, 2003, 4:10pm »

i am NOT using the well-known BX-24, but a small unit called "c-control", provided by the german electronics vendor called "conrad".
 
i am able to see serial data sent by the unit in the hyperterminal window (windows 2000). for the hyperterminal i am using exact the same settings as in processing: COM1, 9600, 8, 1, N
 
however, i am not able to receive any data within the processing platform, which is actually quite frustrating...
 
here my code:
 
 
 
 
 
void setup()  
{  
  beginSerial();  
}  
 
void loop()  
{  
 background(255);
}  
 
void serialEvent()  
{  
    print(serial);  
}  
 
 
REAS


WWW
Re: serial with c-control
« Reply #1 on: Nov 14th, 2003, 7:43pm »

Do you have COM1 selected from the Sketch > Serial Port menu?
 
reti


Re: serial with c-control
« Reply #2 on: Nov 15th, 2003, 6:58pm »

thanks, REAS:
 
through your hint, i was able to find out that something is wrong with my version of PROCESSING:
 
i needed to change the location of the javax.comm.properties from processing/lib into processing/java/lib
 
who knows why...
 
Pages: 1 

« Previous topic | Next topic »