accelrec for bangle.js 2
parent
ef854552b2
commit
796bfdad63
|
|
@ -2,3 +2,4 @@
|
|||
0.02: Increase record time to 5 second
|
||||
Calculate the time moving in graph display
|
||||
Trigger on 1.04g now, and record 10 samples before trigger
|
||||
0.03: Bangle.js 2 compatibility
|
||||
|
|
@ -102,7 +102,7 @@ function showData() {
|
|||
g.drawString("FINISH",g.getWidth()-4,g.getHeight()/2);
|
||||
setWatch(function() {
|
||||
showMenu();
|
||||
}, BTN2);
|
||||
}, global.BTN2?BTN2:BTN);
|
||||
}
|
||||
|
||||
function showBig(txt) {
|
||||
|
|
|
|||
|
|
@ -2,11 +2,11 @@
|
|||
"id": "accelrec",
|
||||
"name": "Acceleration Recorder",
|
||||
"shortName": "Accel Rec",
|
||||
"version": "0.02",
|
||||
"version": "0.03",
|
||||
"description": "This app puts the Bangle's accelerometer into 100Hz mode and reads 2 seconds worth of data after movement starts. The data can then be exported back to the PC.",
|
||||
"icon": "app.png",
|
||||
"tags": "",
|
||||
"supports": ["BANGLEJS"],
|
||||
"supports": ["BANGLEJS","BANGLEJS2"],
|
||||
"readme": "README.md",
|
||||
"interface": "interface.html",
|
||||
"storage": [
|
||||
|
|
|
|||
Loading…
Reference in New Issue