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.
IndexProgramming Questions & HelpOther Libraries › I need help with a Switchboard error
Page Index Toggle Pages: 1
I need help with a Switchboard error (Read 376 times)
I need help with a Switchboard error
Apr 19th, 2008, 6:20am
 
Hello, I am starting to use the switchboard api, but for some reason i am getting an error when I try to use it. My code is the following:

import org.switchboard.*;

Switchboard board;

void setup() {
 board = new Switchboard(this);
}

void resultReceived() {

}

And the error that I get is the following:

endOfResults() was not found in class Temporary_2363_2397
You will not be notified when a service is finished.
status() was not found in class Temporary_2363_2397
You will not be receive status messages.

Can anybody help me with this?

Thanks
Re: I need help with a Switchboard error
Reply #1 - Apr 19th, 2008, 10:43am
 
It's telling you that you need to create an endOfResults() function, and a status() function in your sketch.
Page Index Toggle Pages: 1