Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@JeffersGlass
Created April 26, 2020 20:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save JeffersGlass/7ae59891d270ce37fe5703be0da2a16b to your computer and use it in GitHub Desktop.
Save JeffersGlass/7ae59891d270ce37fe5703be0da2a16b to your computer and use it in GitHub Desktop.
char grid[4][4] = {{'a', 'b', 'c', 'd'},
{'e', 'f', 'g', 'h'},
{'i', 'j', 'k', 'l'},
{'m', 'n', 'o', 'p'}};
void setup() {
// put your setup code here, to run once:
Serial.begin(115200);
}
void loop() {
// put your main code here, to run repeatedly:
Serial.println(grid[1][2]);
delay(1000);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment