I am working on a watchface that records accelerometer data. It would be super-cool if I could use just javascript (no native app) to datalog, and sync to a remote server. I am playing with PouchDB (#55) which has other issues, but might be ideal. If the DataLogging API is more efficient & fault tolerant, than I would much prefer it to AppMessages.
I might recommend code that looks like this, on the javascript side:
Pebble.addEventListener("datalog", function(e) {
// do something with e.data, which is an array of new ints
});
Since the official Pebble app is not open-source, I am unsure of how I can contribute this functionality, but I would love using it!
I am working on a watchface that records accelerometer data. It would be super-cool if I could use just javascript (no native app) to datalog, and sync to a remote server. I am playing with PouchDB (#55) which has other issues, but might be ideal. If the DataLogging API is more efficient & fault tolerant, than I would much prefer it to AppMessages.
I might recommend code that looks like this, on the javascript side:
Since the official Pebble app is not open-source, I am unsure of how I can contribute this functionality, but I would love using it!