Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
irpair.h
- Committer:
- christine222
- Date:
- 2017-06-02
- Revision:
- 44:85bf2c0cd518
- Parent:
- 33:68ce1f74ab5f
File content as of revision 44:85bf2c0cd518:
#ifndef IRPAIR_H
#define IRPAIR_H
#include "mbed.h"
#define samplesToTake 1000
class IRPair
{
public:
IRPair( PinName pin, PinName rec ) : ir( pin ), recv( rec )
{
calibrateSensor();
}
double getSamples( int samples );
float sensorAvg;
void calibrateSensor();
private:
// internal values
DigitalOut ir;
AnalogIn recv;
};
#endif