Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: mbed
Fork of Exercise6 by
Diff: main.cpp
- Revision:
- 1:245bc5eb1bbe
- Parent:
- 0:cb7457d7c822
- Child:
- 2:20562827e8dd
--- a/main.cpp Mon Feb 24 13:09:19 2020 +0000
+++ b/main.cpp Mon Feb 24 13:29:48 2020 +0000
@@ -1,12 +1,26 @@
#include "mbed.h"
+/****************************************************************
+In this exercise I would like you to make one function called "ToggleAll"
+this function should switch the state of the led from its current state
+you can figure out the current state by typing "= led1;"
+in this function I expect to see and minimal lines of code as possible
+
+In the main function I expect to see the on and off functions replaced with this new one.
+
+best of luck.
+***************************************************************/
-DigitalOut myled(LED1);
+// these functions initializes the led pins and functions associated with them these are technically c++ but dont worry to much about this yet
+DigitalOut led1(D5);
+DigitalOut led2(D6);
+DigitalOut led3(D7);
+DigitalOut led4(D8);
+DigitalOut led5(D9);
+DigitalOut led6(D10);
+DigitalOut led7(D11);
+DigitalOut led8(D12);
+// this is your main function and is where the code starts good luck!
int main() {
- while(1) {
- myled = 1; // LED is ON
- wait(0.2); // 200 ms
- myled = 0; // LED is OFF
- wait(1.0); // 1 sec
- }
+
}
