025: Arduino Glossary

Welcome to my Arduino Glossary Page.  It is a subpage of my main Embedded Systems page at: Hatsudoki's Embedded Systems Blog.

Arduino sketches are built around two hard-wired procedure names:

  • One for initialisation: setup() //this just runs once, at the start of sketch processing
  • One for continuous operation: loop() //this runs continuously, until interrupted