2D string search code

Thread Starter

Dumken

Joined Oct 7, 2014
31
Good day everyone. Please can someone help me with an arduino code that will display each of the string character below on the arduino serial monitor

const char *churchCalender[][ROW][CHAR] PROGMEM = {
{"01/01" , "sunday" , "white" , "Van", "R1 num.6.22-27 R2 Gal.4.4-7 Gos.Lk.2.16-21"},
{"02/01" , "monday" , "white" , "Beat", "R1 1Jn.2:22-28 Gosp.Jn.1.19-28"},
{"03/01" , "tuesday" , "white" , "Not", "R1 1Jn.2:29-3:6 Gosp.Jn.1:29-34"},
{"04/01" , "wednesday" , "white" , "take", "R1 1Jn.3:7-10 Gosp.Jn.1:35-42"}
};
 
Top