Hi,
I have 2 questions:
1 - I'm trying to find a SetPixel method... I tried to use the SetPixels one but there is nothing into the documentation about it. What I want to is to Set a pixel to 1 or 0...
2 - What kind of int[] array the setDisplay method expect?
private static int SCREEN_HEIGHT = 60;
private static int SCREEN_WIDTH = 100;
private int[] fPixels = new int[SCREEN_HEIGHT * SCREEN_WIDTH];
I tried to pass this fPixels array in argument and I got a Java Exception on my NXT (Class:5, Method:2).
