Arduino (C/C++) Code To Display Contents of Array on LCD -
i've tried researching before posting this, new programming, general ignorance @ point preventing me being able know how ask right questions. current goals: building array stores 50+ english words/phrases; access array on arduino, , have individual words/phrases display on lcd; and toggle through words/phrases clicking button on arduino. hardware specs: sainsmart unor3, lcd based on hd44780 issue: writing code display new word when push button. code "hello, world!" lcd void setup() { // set lcd's number of columns , rows: lcd.begin(16, 2); // print message lcd. lcd.print("hello, world!"); } void loop() { // set cursor column 0, line 1 // (note: line 1 second row, since counting begins 0): lcd.setcursor(0, 1); // print number of seconds since reset: lcd.print(millis()/1000); } code random string array #include <stdio.h> #include <stdlib.h> int main() { const char *messages[] = { "hello!...