
130 Make: Wearable Electronics
Comments
These are lines or blocks of text meant to be read by humans but not by the
microcontroller. You will see comments both at the start of the program to
provide notes, date, and attribution and throughout the program to explain
what is happening along the way. Comments can also be used to remove
lines of code that are not in use.
A single-line comment is preceded by two backslashes:
// This comment is on one line.
A multiline comment falls between a backslash and asterisk and an
asterisk and backslash.:
/*
This comment
is on
multiple lines!
*/
Two great resources for better understanding the Arduino environment and ...