/* Task that monitors the accelerometer and temperature sensor do detect when * we are out & moving. * * While the task is running, it assumes control over the accelerometer and * the ADC. */ #pragma once void sensors_start(); void sensors_stop(); // Get current movement estimate, as a value 0 to 100 %. int sensors_movement(); // Get current movement raw filter value (0 to approx. 1000). int sensors_raw_movement(); // Get current estimate how likely it is that we are at outdoors temperature, // as a value 0 to 100%. int sensors_temperature(); // Get current raw temperature, in millicelcius. int sensors_raw_temperature();