Core Base Classes for the Light Endpoints
Dependents: mbed_mqtt_endpoint_ublox_ethernet mbed_mqtt_endpoint_ublox_cellular mbed_nsp_endpoint_ublox_cellular mbed_nsp_endpoint_ublox_ethernet ... more
MBEDio.cpp@135:7f3f963cd159, 2014-03-28 (annotated)
- Committer:
- ansond
- Date:
- Fri Mar 28 17:49:10 2014 +0000
- Revision:
- 135:7f3f963cd159
- Parent:
- 106:e2be56eadda8
- Child:
- 192:54b758a8eaaa
updates
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
ansond | 36:73e343ddca7f | 1 | /* Copyright C2013 Doug Anson, MIT License |
ansond | 36:73e343ddca7f | 2 | * |
ansond | 36:73e343ddca7f | 3 | * Permission is hereby granted, free of charge, to any person obtaining a copy of this software |
ansond | 36:73e343ddca7f | 4 | * and associated documentation files the "Software", to deal in the Software without restriction, |
ansond | 36:73e343ddca7f | 5 | * including without limitation the rights to use, copy, modify, merge, publish, distribute, |
ansond | 36:73e343ddca7f | 6 | * sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is |
ansond | 36:73e343ddca7f | 7 | * furnished to do so, subject to the following conditions: |
ansond | 36:73e343ddca7f | 8 | * |
ansond | 36:73e343ddca7f | 9 | * The above copyright notice and this permission notice shall be included in all copies or |
ansond | 36:73e343ddca7f | 10 | * substantial portions of the Software. |
ansond | 36:73e343ddca7f | 11 | * |
ansond | 36:73e343ddca7f | 12 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING |
ansond | 36:73e343ddca7f | 13 | * BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND |
ansond | 36:73e343ddca7f | 14 | * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, |
ansond | 36:73e343ddca7f | 15 | * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
ansond | 36:73e343ddca7f | 16 | * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. |
ansond | 36:73e343ddca7f | 17 | */ |
ansond | 36:73e343ddca7f | 18 | |
ansond | 36:73e343ddca7f | 19 | #include "MBEDio.h" |
ansond | 36:73e343ddca7f | 20 | |
ansond | 36:73e343ddca7f | 21 | // default constructor |
ansond | 135:7f3f963cd159 | 22 | MBEDio::MBEDio(ErrorHandler *error_handler,Resource *resource) : BaseClass(error_handler,resource) { |
ansond | 40:eae89a487d86 | 23 | if (resource != NULL) resource->setIO(this); |
ansond | 36:73e343ddca7f | 24 | } |
ansond | 36:73e343ddca7f | 25 | |
ansond | 36:73e343ddca7f | 26 | // destructor |
ansond | 36:73e343ddca7f | 27 | MBEDio::~MBEDio() { |
ansond | 36:73e343ddca7f | 28 | } |
ansond | 36:73e343ddca7f | 29 | |
ansond | 106:e2be56eadda8 | 30 | // get the float value (refreshes the value) |
ansond | 36:73e343ddca7f | 31 | float MBEDio::floatValue() { |
ansond | 36:73e343ddca7f | 32 | this->update(); |
ansond | 36:73e343ddca7f | 33 | float floatValue = 0.0; |
ansond | 56:604a75f111fd | 34 | if (this->resource() != NULL && this->resource()->getValuePointer() != NULL) sscanf(this->resource()->getValuePointer(),"%f",&floatValue); |
ansond | 36:73e343ddca7f | 35 | return floatValue; |
ansond | 36:73e343ddca7f | 36 | } |
ansond | 36:73e343ddca7f | 37 | |
ansond | 106:e2be56eadda8 | 38 | // get the int value (refreshes the value) |
ansond | 36:73e343ddca7f | 39 | int MBEDio::intValue() { |
ansond | 36:73e343ddca7f | 40 | this->update(); |
ansond | 36:73e343ddca7f | 41 | int intValue = 0; |
ansond | 56:604a75f111fd | 42 | if (this->resource() != NULL && this->resource()->getValuePointer() != NULL) sscanf(this->resource()->getValuePointer(),"%d",&intValue); |
ansond | 36:73e343ddca7f | 43 | return intValue; |
ansond | 36:73e343ddca7f | 44 | } |
ansond | 36:73e343ddca7f | 45 | |
ansond | 106:e2be56eadda8 | 46 | // get the string value (refreshes the value) |
ansond | 36:73e343ddca7f | 47 | char *MBEDio::stringValue() { |
ansond | 60:76728655fa12 | 48 | if (this->resource() != NULL) { |
ansond | 60:76728655fa12 | 49 | this->update(); |
ansond | 60:76728655fa12 | 50 | return this->resource()->getValuePointer(); |
ansond | 60:76728655fa12 | 51 | } |
ansond | 60:76728655fa12 | 52 | else { |
ansond | 60:76728655fa12 | 53 | this->logger()->log("stringValue: returning NULL - no resource bound to me"); |
ansond | 60:76728655fa12 | 54 | return NULL; |
ansond | 60:76728655fa12 | 55 | } |
ansond | 36:73e343ddca7f | 56 | } |
ansond | 135:7f3f963cd159 | 57 | |
ansond | 135:7f3f963cd159 | 58 | // get the Resource (held in BaseClass as endpoint()...) |
ansond | 135:7f3f963cd159 | 59 | Resource *MBEDio::resource() { return (Resource *)this->getEndpoint(); } |