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
MBEDBattery.cpp@36:73e343ddca7f, 2014-03-01 (annotated)
- Committer:
- ansond
- Date:
- Sat Mar 01 05:31:26 2014 +0000
- Revision:
- 36:73e343ddca7f
- Child:
- 43:361a61395588
lots of sensor 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 "mbed.h" |
ansond | 36:73e343ddca7f | 20 | |
ansond | 36:73e343ddca7f | 21 | #include "MBEDBattery.h" |
ansond | 36:73e343ddca7f | 22 | |
ansond | 36:73e343ddca7f | 23 | // Battery Simulator |
ansond | 36:73e343ddca7f | 24 | AnalogIn battery_pot(p20); |
ansond | 36:73e343ddca7f | 25 | |
ansond | 36:73e343ddca7f | 26 | // default constructor |
ansond | 36:73e343ddca7f | 27 | MBEDBattery::MBEDBattery(ErrorHandler *error_handler,Resource *resource) : MBEDio(error_handler,resource) { |
ansond | 36:73e343ddca7f | 28 | } |
ansond | 36:73e343ddca7f | 29 | |
ansond | 36:73e343ddca7f | 30 | // destructor |
ansond | 36:73e343ddca7f | 31 | MBEDBattery::~MBEDBattery() { |
ansond | 36:73e343ddca7f | 32 | } |
ansond | 36:73e343ddca7f | 33 | |
ansond | 36:73e343ddca7f | 34 | // update our value |
ansond | 36:73e343ddca7f | 35 | void MBEDBattery::update() { |
ansond | 36:73e343ddca7f | 36 | float bat = battery_pot * 5.0; // Scale 0V - 5.0V |
ansond | 36:73e343ddca7f | 37 | if (this->m_resource != NULL && this->m_resource->getValue() != NULL) sprintf(this->m_resource->getValue(),"%.1f",bat); |
ansond | 36:73e343ddca7f | 38 | } |