Freedom Seeed Grove Relay Example

Dependencies:   mbed

Fork of frdm_Grove_Relay_Example by Freescale

Simply Import this Program into your mbed compiler
Select Compile to generate the binary file
Plug the Grove Shield v2 on the top of your FRDM-K64F
Connect on end of the 4-pin Grove cable to the Relay module and the other end to the port D6 of the Grove Adapter.

/media/uploads/GregC/relay1.jpg

Drag n drop the frdm_Grove_Relay_Example_K64F.bin into the mbed drive from your file explorer
Wait for download to complete
Press the Reset/SW1 button of your FRDM-K64F board to launch the program

The relay should now switch On and Off each time you press the SW2 button of your FRDM-K64F (see picture below)!!

/media/uploads/GregC/relay2.jpg

Files at this revision

API Documentation at this revision

Comitter:
GregC
Date:
Fri Jan 01 16:33:29 2016 +0000
Commit message:
Freedom Seeed Grove Relay Example

Changed in this revision

main.cpp Show annotated file Show diff for this revision Revisions of this file
mbed.bld Show annotated file Show diff for this revision Revisions of this file
diff -r 000000000000 -r 3b9b4fce896e main.cpp
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/main.cpp	Fri Jan 01 16:33:29 2016 +0000
@@ -0,0 +1,16 @@
+#include "mbed.h"
+
+DigitalOut relay(D6);
+InterruptIn sw2(SW2);
+
+void sw2_release(void)
+{
+    relay = !relay;
+}
+
+int main()
+{
+    sw2.rise(&sw2_release);
+    while (true) {
+    }
+}
\ No newline at end of file
diff -r 000000000000 -r 3b9b4fce896e mbed.bld
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/mbed.bld	Fri Jan 01 16:33:29 2016 +0000
@@ -0,0 +1,1 @@
+http://mbed.org/users/mbed_official/code/mbed/builds/9327015d4013
\ No newline at end of file