This article details the basic syntax for defining constants, including libraries, making comments, and using punctuation in your Arduino programs. Defining constants: #define The #define syntax allows the programmer to give a name to a constant value before the program is compiled, allowing any references to the constant to be replaced with the defined value when the program is running. However, although convenient, using #define presents a few things to watch out for: First