Uploading sensor data (voltage divider, MAX4172, INA219) over Ethernet to Thing Speak service. Uses old mbed revision that is compatible with NetServices library. I2C communication is made with I2CR library.

Dependencies:   C12832 I2CR INA219 NetServices mbed

Fork of NetServices_HelloWorld by Segundo Equipo

Sensor.h

Committer:
tbjazic
Date:
2015-11-29
Revision:
8:9b35ac104ab7
Parent:
7:1da0a084cd69

File content as of revision 8:9b35ac104ab7:

#ifndef _SENSOR_H
#define SENSOR_H  
#include "mbed.h"

/** Simple class for sensor with linear otuput. Made for later upgrading, to avarage values from ADC
 * Example:
 * @code
 * #include "mbed.h"
 * #include "Sensor.h"
 * #include "INA219_reg.h"
 *
 * Sensor voltageDivider(p20,5);
 * float value;
 *
 * int main() {
 *     value = voltageDivider.read();
 * }
 * @endcode

*/
class Sensor {
     
     public:
    /**
     * @param: PinName of ADC to which sensor is connected
     *        float value for multiplifing with raw value from ADC to get real value
    */    
    Sensor(PinName, float);    
    /** Read real messured value
     * return: float real messured value 
     *
    **/                               
        float read();                                   
                                       
     private:
     
        AnalogIn sensorInput;           
        float readVal[], realVal, K;
};

#endif