RPC over HTTP example.

Dependencies:   EthernetInterface HTTPServer mbed-rpc mbed-rtos mbed

Fork of RPC_HTTP by Michael Walker

This is a working example of using RPC over HTTP. This uses an ethernet connection. The program attaches an RPC handler to LED1. You can use a client program to send commands to this LED, addressing it as "led1".

Files at this revision

API Documentation at this revision

Comitter:
sarahmarshy
Date:
Mon Jun 15 16:33:43 2015 +0000
Parent:
3:6cfcccfe3995
Child:
5:5322cbfd7c01
Commit message:
Changed to use LED1.

Changed in this revision

HTTP_RPC.cpp Show annotated file Show diff for this revision Revisions of this file
--- a/HTTP_RPC.cpp	Mon Jun 15 16:31:27 2015 +0000
+++ b/HTTP_RPC.cpp	Mon Jun 15 16:33:43 2015 +0000
@@ -24,19 +24,15 @@
 #include "HTTPServer.h"
 #include "mbed_rpc.h"
 
-RpcDigitalOut led2(LED2,"led2");
-RpcDigitalOut led3(LED3,"led3");
-RpcDigitalOut led4(LED4, "led4");
+RpcDigitalOut led1(LED1,"led1");
 
 
 EthernetInterface eth;  
 HTTPServer svr;
 
 int main() {
-  //Turn the LEDs off
-  led2.write(1);
-  led3.write(1);
-  led4.write(1);
+  //Turn the LED off
+  led1.write(1)
   
   RPC::add_rpc_class<RpcDigitalOut>();