and I just can't find the problem after exhausting the 16 page read. No errors, I just can't get the past the 'trying to find wii' stage when running the sketch. The wiimote never picks up even though I have added it through bluetooth device.
I just don't know what else to try that could be wrong since the thread is over a year old. I desperately need to get it working as I have a project I need to get done in under a week! I have tried to get it working on both my laptop and pc desktop, both with the same problem. Please help!
Hi all, completely new to processing. I'm just trying to do a very basic sketch using two images. I'm using offseting so one of the images goes up and down according to the mouse movement, but I want to restrict how high the images goes up since the image obviously cuts off at some point.
My code is:
PImage a, b;
float offset;
void setup() {
size(965, 725);
a = loadImage("2b.png");
b = loadImage("2c.png");
}