aboutsummaryrefslogtreecommitdiff
path: root/sensor_als.hpp
blob: a010f2d7916801b949c317aabe37b315a56d3bb6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//Chris Xiong 2018
//3-Clause BSD License
#ifndef SENSOR_ALS_HPP
#define SENSOR_ALS_HPP
#include "sensors.hpp"
class SensorALS:public SensorBase
{
	private:
		float value;
	protected:
		void enable_scan_elements();
	public:
		void update_values();
		float get_value();
};
#endif