diff --git a/C/Sketches/Sketch_01.1_Blink/Sketch_01.1_Blink.ino b/C/Sketches/Sketch_01.1_Blink/Sketch_01.1_Blink.ino index c8edb82..9fb4c01 100644 --- a/C/Sketches/Sketch_01.1_Blink/Sketch_01.1_Blink.ino +++ b/C/Sketches/Sketch_01.1_Blink/Sketch_01.1_Blink.ino @@ -1,13 +1,14 @@ /********************************************************************** * Filename : Blink -* Description : Make an led blinking. +* Description : Make the LED marked with "IO2" led blink. * Auther : www.freenove.com -* Modification: 2022/10/19 +* Modification: 2022/12/06 **********************************************************************/ -#define LED_BUILTIN 32 -// the setup function runs once when you press reset or power the board +#define LED_BUILTIN 2 + +// the setup function runs once when you press reset button or power up the board void setup() { - // initialize digital pin LED_BUILTIN as an output. + // initialize digital pin LED_BUILTIN as an output pin. pinMode(LED_BUILTIN, OUTPUT); }