Fork of the official mbed C/C++ SDK provides the software platform and libraries to build your applications. The fork has the documentation converted to Doxygen format

Dependents:   NervousPuppySprintOne NervousPuppySprint2602 Robot WarehouseBot1 ... more

Fork of mbed by mbed official

Revision:
4:5d1359a283bc
Parent:
3:aefd12a1f1c5
Child:
5:62573be585e9
--- a/DigitalOut.h	Fri Nov 14 15:25:20 2008 +0000
+++ b/DigitalOut.h	Thu Nov 27 16:23:24 2008 +0000
@@ -25,7 +25,7 @@
 	 * Variables:
 	 *  pin - DigitalOut pin to connect to (5-30)
 	 */
-	DigitalOut(int pin);
+	DigitalOut(int pin, const char* name = NULL);
 
 	/* Group: Access Methods */
 		
@@ -46,7 +46,9 @@
 	 *      0 for logical 0 (0v) and 1 for logical 1 (3.3v)
 	 */
     int read();
-   
+
+    virtual const struct rpc_method *rpc_methods();
+
    	/* Group: Access Method Shorthand */
    	 
 	/* Function: operator=