Skip to content

Commit

Permalink
updated example
Browse files Browse the repository at this point in the history
  • Loading branch information
voidplus committed Dec 9, 2014
1 parent 387ee54 commit 2b3071a
Showing 1 changed file with 11 additions and 3 deletions.
14 changes: 11 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ Myo hardware device:

Myo SDK version:

- **0.7.1b**
- **0.7.0b**
- [0.6.0b](https://github.com/voidplus/myo-processing/releases/tag/v0.6.1b)
- [0.5.1b](https://github.com/voidplus/myo-processing/releases/tag/v0.5b)

Expand Down Expand Up @@ -135,6 +135,14 @@ void myoOnArmSync(Myo myo, long timestamp, Arm arm) {
}
}

void myoOnLock(Myo myo, long timestamp){
println("Sketch: myoOnLock");
}

void myoOnUnLock(Myo myo, long timestamp){
println("Sketch: myoOnUnLock");
}

void myoOnArmUnsync(Myo myo, long timestamp) {
println("Sketch: myoOnArmUnsync");
}
Expand All @@ -152,8 +160,8 @@ void myoOnPose(Myo myo, long timestamp, Pose pose) {
case FINGERS_SPREAD:
println("Pose: FINGERS_SPREAD");
break;
case THUMB_TO_PINKY:
println("Pose: THUMB_TO_PINKY");
case DOUBLE_TAP:
println("Pose: DOUBLE_TAP");
break;
case WAVE_IN:
println("Pose: WAVE_IN");
Expand Down

0 comments on commit 2b3071a

Please sign in to comment.