_.;'^¨'-,.x FOR SCOL x.,-'¨^';._ /----------------------------\ ------------------------* MULTIPLATFORM SENSOR LIB *------------------------ ------------------------* ( ANDROID AND WINDOWS ) *------------------------ ---------------------------- Author: Rémi Laot License: ? ---------------------------------------------------------------------------- \-------------------------/ Purpose: The purpose of this library is to encapsulate sensor handling on android and windows through a simple api. Project architecture: - SensorMath: some basic math library - SensorTypes: sensor types declarations and explanations - aSensor: android part of this library - wSensor: windows part of this library - hSensor: software sensors - opposed to hardware sensor handling - (orientation, etc...) To add new sensors: - add a type to the SSensorType enum in 'SensorTypes.h' (include dir) - add this type in scol bindings in 'scolplugin.cpp' (src dir) - define how to access this sensor's data and store it (c++ lib) in: . 'SWSensor::GetData' for windows, in wSensor.cpp file (src dir) . 'UpdateSensorData' for for android, in aSensor.cpp file (src dir) - define how to access this sensor's data in SCOL in 'scolplugin.cpp' (src dir) If you don't know how to implement new functionnalities in scol, here is some documentation: - http://redmine.scolring.org/projects/tutorials/wiki/Scol_develop (FR) - http://redmine.scolring.org/projects/scol/wiki/ScolPluginsHowTo (EN)