publish

Dependencies:   ThingerWIZnetClient mbed

Files at this revision

API Documentation at this revision

Comitter:
devdori
Date:
Mon Sep 26 07:40:03 2022 +0000
Commit message:
1commit;

Changed in this revision

ThingerWIZnetClient.lib Show annotated file Show diff for this revision Revisions of this file
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
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/ThingerWIZnetClient.lib	Mon Sep 26 07:40:03 2022 +0000
@@ -0,0 +1,1 @@
+https://os.mbed.com/teams/Thingerio/code/ThingerWIZnetClient/#98914de56323
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/main.cpp	Mon Sep 26 07:40:03 2022 +0000
@@ -0,0 +1,19 @@
+#include "mbed.h"
+
+DigitalOut myled(LED1);
+Serial pc(SERIAL_TX, SERIAL_RX);
+ 
+int count_blink = 0;
+ 
+int main() {
+    while(1) {
+        myled = 1;
+        //pc.printf("myled = 1\n");
+        wait(0.2);
+        myled = 0;
+        //pc.printf("myled = 0\n");
+        wait(0.2);
+        count_blink++;
+        pc.printf("The number of blink = %d\n", count_blink);
+    }
+}
\ No newline at end of file
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/mbed.bld	Mon Sep 26 07:40:03 2022 +0000
@@ -0,0 +1,1 @@
+https://os.mbed.com/users/mbed_official/code/mbed/builds/65be27845400
\ No newline at end of file