Ok, I am working on a program that types in different words in place of common words using the Keyboard features
example:
String normal[] = {
"normal",
"typical",
"regular",
};
for some reason my program quits working and the computer no longer recognizes it as a USB device after I have a certain number of strings in my program even though I still have a lot of space in my sketch.
I believe it is when I have somewhere over 400 strings
so if I continue writing these String vars until I have over 400 strings total, the program quits working and the computer stops recognizing it. Then the only way I can upload a new sketch is to hold the reset until uploading starts then let go and it will put the sketch on.
This happens even if I don't have anything in setup or loop, even if I just declare over 400 string variables this will happen.
Is there some limitation to how many strings you can have?
I don't think they even have to be variables. I think it is just a certain number of strings no matter where they are in the program because I had another sketch that did the same thing and the only way I got past it was to add another arduino and have half the sketch on one and half on the other.
This has been driving me crazy.

