Hi,
my app (ElevationTracker) is not working since Tizen 3.0 update. Problem is, that tizen.humanactivitymonitor.readRecorderData is not giving me array of value anymore. It only gives one entry in array, the last one. I didn't find any difference in API reference.
This piece of code is returning array of hundrets of items (one per minute in selected interval) in Tizen 2.3, but only last value in Tizen 3.0. I just can't find any clue why is this happening. Samsung destroyed my app and didn't say anything about changes in this functions :(
var type = 'PRESSURE';
var query = {
startTime: startTime / 1000,
anchorTime: anchorTime / 1000,
interval: 1 // One minute
};
tizen.humanactivitymonitor.readRecorderData(type, query, onread, onerror);
function onread(data) {
console.log(data.lenght); //Since Tizen 3.0, this has always only one entry. It used to be array in the Tizen 2.3.
}
|
Do you have any clue how to work with historical pressure values in Tizen 3.0 ?
Thank you!