diff --git a/Tasks/Task-101-Blinky/main.cpp b/Tasks/Task-101-Blinky/main.cpp index 991256c9..2d0038bc 100644 --- a/Tasks/Task-101-Blinky/main.cpp +++ b/Tasks/Task-101-Blinky/main.cpp @@ -19,13 +19,13 @@ int main() // Turn onboard LED ON greenLED = 1; - // Wait 0.2 second (1 million microseconds) + // Wait 0.1 second (1 hundred thousand microseconds) wait_us(100000); // Turn LED OFF greenLED = 0; - // Wait 0.2 second + // Wait 0.1 second wait_us(100000); } } \ No newline at end of file diff --git a/Tasks/Task-103-HelloWorld/main.cpp b/Tasks/Task-103-HelloWorld/main.cpp index a78ebbda..b61af6b0 100644 --- a/Tasks/Task-103-HelloWorld/main.cpp +++ b/Tasks/Task-103-HelloWorld/main.cpp @@ -31,7 +31,7 @@ int main() lcd.locate(1, 0); //Row 1, Col 0 lcd.printf("ELEC143"); - // This is a variable (not an oject as it has no functions) that stores a whole number (integer) in memory + // This is a variable (not an object as it has no functions) that stores a whole number (integer) in memory // (I used the keyword volatile to force it to use memory... long story and one for later) volatile int counter = 0;