4 * Copyright (c) 2014 Samsung Electronics Co., Ltd.
6 * Licensed under the Apache License, Version 2.0 (the "License");
7 * you may not use this file except in compliance with the License.
8 * You may obtain a copy of the License at
10 * http://www.apache.org/licenses/LICENSE-2.0
12 * Unless required by applicable law or agreed to in writing, software
13 * distributed under the License is distributed on an "AS IS" BASIS,
14 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 * See the License for the specific language governing permissions and
16 * limitations under the License.
20 #ifndef _AUTO_ROTATION_SENSOR_H_
21 #define _AUTO_ROTATION_SENSOR_H_
23 #include <virtual_sensor.h>
24 #include <sensor_types.h>
25 #include <auto_rotation_alg.h>
27 class auto_rotation_sensor : public virtual_sensor {
29 auto_rotation_sensor();
30 virtual ~auto_rotation_sensor();
32 /* initialize sensor */
36 virtual sensor_type_t get_type(void);
37 virtual unsigned int get_event_type(void);
38 virtual const char* get_name(void);
40 virtual bool get_sensor_info(sensor_info &info);
42 /* synthesize event */
43 virtual void synthesize(const sensor_event_t& event);
46 virtual int get_data(sensor_data_t **data, int *length);
48 sensor_base *m_accel_sensor;
49 auto_rotation_alg *m_alg;
52 unsigned int m_interval;
53 unsigned long long m_rotation_time;
55 virtual bool set_interval(unsigned long interval);
56 virtual bool set_batch_latency(unsigned long latency);
57 virtual bool set_wakeup(int wakeup);
59 virtual bool on_start(void);
60 virtual bool on_stop(void);
62 auto_rotation_alg *get_alg();
65 #endif /* _AUTO_ROTATION_SENSOR_H_ */