
I've got an nds program that is working ok so far, but I really need too add a virtual keyboard to it.
Not having much luck so far working out how to make use of the stuff in examples/nds/input/keyboard
I'm setting up my screens like this:
PrintConsole topScreen;
PrintConsole bottomScreen;
videoSetMode(MODE_0_2D);
videoSetModeSub(MODE_0_2D);
vramSetBankA(VRAM_A_MAIN_BG);
vramSetBankC(VRAM_C_SUB_BG);
consoleInit(&topScreen, 3,BgType_Text4bpp, BgSize_T_256x256, 31, 0, true, true);
consoleInit(&bottomScreen, 3,BgType_Text4bpp, BgSize_T_256x256, 31, 0, false, true);
Any suggestions how to get started setting up a virtual keyboard (on the bottom screen) would be appreciated !