Skip to content
This repository has been archived by the owner on Jul 19, 2022. It is now read-only.

Commit

Permalink
Adapted demo app emg output to printing byte data and raised the vers…
Browse files Browse the repository at this point in the history
…ion.
  • Loading branch information
d4rken committed Sep 4, 2015
1 parent c602f92 commit cf6506c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions exampleapp/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ android {
applicationId "eu.darken.myolib.exampleapp"
minSdkVersion 18
targetSdkVersion 22
versionCode 1
versionName "1.0"
versionCode 2
versionName "1.1"
}
buildTypes {
release {
Expand All @@ -27,7 +27,7 @@ repositories {
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support:appcompat-v7:22.2.1'
compile 'eu.darken.myolib:myolib:0.0.2'
// compile 'eu.darken.myolib:myolib:0.0.2'
// Change to use local library
// compile project(':myolib')
compile project(':myolib')
}
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ public void onNewEmgData(final EmgData emgData) {
getHandler().post(new Runnable() {
@Override
public void run() {
mEmgData.setText("Emg: " + emgData.toString() + "\n" + (mEmgProcessor.getPacketCounter() * 2) + " EMG/s");
mEmgData.setText("Emg:\n" + emgData.toString() + "\n" + (mEmgProcessor.getPacketCounter() * 2) + " EMG/s");
}
});
mLastEmgUpdate = System.currentTimeMillis();
Expand Down

0 comments on commit cf6506c

Please sign in to comment.