Adafruit_AHRS/Adafruit_Sensor_Set.h
2014-08-01 02:22:11 -07:00

14 lines
338 B
C++

#ifndef __ADAFRUIT_SENSOR_SET_H__
#define __ADAFRUIT_SENSOR_SET_H__
#include <Adafruit_Sensor.h>
// Interface for a device that has multiple sensors that can be queried by type.
class Adafruit_Sensor_Set
{
public:
virtual ~Adafruit_Sensor_Set() {}
virtual Adafruit_Sensor* getSensor(sensors_type_t type) { return NULL; }
};
#endif