Browse over 10,000 Electronics Projects

Skill Sunday: Arrays

Skill Sunday: Arrays

This week on Skill Sunday we will be learning about using arrays with Arduino. Using arrays in your code can make your code faster and much more readable. For example, rather than defining a new variable for each pin used in your Arduino code, having an array allows you to assign these all to one array. To access each pin in the array you simply define which address of the array you would like to access. If you would like a more thorough explanation of how Arduino arrays work to implement them in your code make sure you checkout the following link.

 


Top