Core Base Classes for the Light Endpoints

Dependencies:   BufferedSerial

Dependents:   mbed_mqtt_endpoint_ublox_ethernet mbed_mqtt_endpoint_ublox_cellular mbed_nsp_endpoint_ublox_cellular mbed_nsp_endpoint_ublox_ethernet ... more

Revision:
106:e2be56eadda8
Parent:
60:76728655fa12
Child:
135:7f3f963cd159
--- a/MBEDio.cpp	Sun Mar 16 04:35:20 2014 +0000
+++ b/MBEDio.cpp	Sun Mar 16 05:59:35 2014 +0000
@@ -29,7 +29,7 @@
  MBEDio::~MBEDio() {
  }
  
- // get the float value
+ // get the float value (refreshes the value)
  float MBEDio::floatValue() { 
     this->update(); 
     float floatValue = 0.0;
@@ -37,7 +37,7 @@
     return floatValue; 
  }
  
- // get the int value
+ // get the int value (refreshes the value)
  int MBEDio::intValue() { 
     this->update();  
     int intValue = 0;
@@ -45,7 +45,7 @@
     return intValue;  
  }
  
- // get the string value
+ // get the string value (refreshes the value)
  char *MBEDio::stringValue() { 
     if (this->resource() != NULL) {
         this->update();