Skip to content

Instantly share code, notes, and snippets.

@AngeloStavrow
Last active October 29, 2015 19:00
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 AngeloStavrow/cb416941104a13a2bbb0 to your computer and use it in GitHub Desktop.
Save AngeloStavrow/cb416941104a13a2bbb0 to your computer and use it in GitHub Desktop.
Handy Arduino snippets. Obviously.
// Get the number of elements in an array.
// From Arduino FAQ:
// http://arduino.land/FAQ/content/6/29/en/how-to-get-the-size-of-an-array.html
#define elementsInArray(x) (sizeof(x) / sizeof(*x))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment