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

Committer:
ansond
Date:
Fri Sep 26 05:16:07 2014 +0000
Revision:
192:54b758a8eaaa
Parent:
135:7f3f963cd159
updates to new logger name

Who changed what in which revision?

UserRevisionLine numberNew contents of line
ansond 126:3e63174bcbc6 1 /* Copyright C2013 Doug Anson, MIT License
ansond 126:3e63174bcbc6 2 *
ansond 126:3e63174bcbc6 3 * Permission is hereby granted, free of charge, to any person obtaining a copy of this software
ansond 126:3e63174bcbc6 4 * and associated documentation files the "Software", to deal in the Software without restriction,
ansond 126:3e63174bcbc6 5 * including without limitation the rights to use, copy, modify, merge, publish, distribute,
ansond 126:3e63174bcbc6 6 * sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is
ansond 126:3e63174bcbc6 7 * furnished to do so, subject to the following conditions:
ansond 126:3e63174bcbc6 8 *
ansond 126:3e63174bcbc6 9 * The above copyright notice and this permission notice shall be included in all copies or
ansond 126:3e63174bcbc6 10 * substantial portions of the Software.
ansond 126:3e63174bcbc6 11 *
ansond 126:3e63174bcbc6 12 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING
ansond 126:3e63174bcbc6 13 * BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
ansond 126:3e63174bcbc6 14 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
ansond 126:3e63174bcbc6 15 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
ansond 126:3e63174bcbc6 16 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
ansond 126:3e63174bcbc6 17 */
ansond 126:3e63174bcbc6 18
ansond 126:3e63174bcbc6 19 #ifndef _MBED_RSSI_H_
ansond 126:3e63174bcbc6 20 #define _MBED_RSSI_H_
ansond 126:3e63174bcbc6 21
ansond 126:3e63174bcbc6 22 #include "MBEDio.h"
ansond 126:3e63174bcbc6 23
ansond 126:3e63174bcbc6 24 class MBEDrssi : public MBEDio {
ansond 126:3e63174bcbc6 25 public:
ansond 192:54b758a8eaaa 26 MBEDrssi(Logger *logger,Resource *resource);
ansond 135:7f3f963cd159 27 virtual ~MBEDrssi();
ansond 126:3e63174bcbc6 28
ansond 126:3e63174bcbc6 29 virtual void update();
ansond 126:3e63174bcbc6 30 };
ansond 126:3e63174bcbc6 31
ansond 126:3e63174bcbc6 32 #endif // _MBED_RSSI_H_