Skip to content

Commit

Permalink
Expose speed factor
Browse files Browse the repository at this point in the history
also changed icon to have white background
  • Loading branch information
jrlandau committed Jun 13, 2018
1 parent d429c82 commit 0a7d306
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
Binary file added res/android/hdpi previous.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified res/android/hdpi.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions www/js/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -1400,12 +1400,12 @@ function stopRobot () {

function fasterBot () {
speedFactor *= 1.5;
addLog ("Speed factor is " + myNamespace.round (speedFactor, 2);
addLog ("Speed factor is " + myNamespace.round (speedFactor, 2));
}

function slowerBot () {
speedFactor /= 1.5;
addLog ("Speed factor is " + myNamespace.round (speedFactor, 2);
addLog ("Speed factor is " + myNamespace.round (speedFactor, 2));
}

function sendMarker () { //(atPose) {
Expand Down

0 comments on commit 0a7d306

Please sign in to comment.