#include "InitLCD.h"
#include "WordStorage.h";
WordStorage wordStore;
void setup() {
Serial.begin(115200);
InitLCD();
int i =0;
while (wordStore.wordFromCat(3,i)) {
Serial.println(wordStore.word());
lcd.clear();
lcd.print(wordStore.word());
i++;
}
Serial.println(wordStore.numberOfCategories());
}
void loop() {
// put your main code here, to run repeatedly:
}