Navigation Menu

Skip to content

Commit

Permalink
accelrec for bangle.js 2
Browse files Browse the repository at this point in the history
  • Loading branch information
gfwilliams committed May 19, 2023
1 parent ef85455 commit 796bfda
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions apps/accelrec/ChangeLog
Expand Up @@ -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
2 changes: 1 addition & 1 deletion apps/accelrec/app.js
Expand Up @@ -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) {
Expand Down
4 changes: 2 additions & 2 deletions apps/accelrec/metadata.json
Expand Up @@ -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": [
Expand Down

0 comments on commit 796bfda

Please sign in to comment.