mbedデバイスから直接gluinサーバに接続するサンプルです。サーボモータをGluinに接続します。メモリの関係から現在、Ethernet専用になっています。

Dependencies:   DxClinet EthernetInterface WebSocketClient mbed-rtos mbed

Fork of PwmOut_HelloWorld by mbed official

Files at this revision

API Documentation at this revision

Comitter:
mbed_official
Date:
Tue Feb 12 15:10:53 2013 +0000
Child:
1:200a677fb4c5
Commit message:
PwmOut HelloWorld

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
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/main.cpp	Tue Feb 12 15:10:53 2013 +0000
@@ -0,0 +1,12 @@
+#include "mbed.h"
+ 
+PwmOut led(LED1);
+ 
+int main() {
+    while(1) {
+        for(float p = 0.0f; p < 1.0f; p += 0.1f) {
+            led = p;
+            wait(0.1);
+        }
+    }
+}
\ No newline at end of file
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/mbed.bld	Tue Feb 12 15:10:53 2013 +0000
@@ -0,0 +1,1 @@
+http://mbed.org/users/mbed_official/code/mbed/builds/0954ebd79f59
\ No newline at end of file