-
Notifications
You must be signed in to change notification settings - Fork 88
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
#27 - Added graphical indication of goal achievement to animated watch.
Evaluate currently executing goal only when workout timer is running.
- Loading branch information
John Wolfe
committed
Jul 16, 2014
1 parent
5e91382
commit a1eb4d2
Showing
29 changed files
with
680 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
/lib | ||
/library | ||
/uidatatypes | ||
/uiinterfaces |
Binary file modified
BIN
+0 Bytes
(100%)
applications/gps/GPS Watch/bin/lib/GuiBridge$GuiConnection.class
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
applications/gps/GPS Watch/bin/lib/WatchGui$ApplicationConnection$1.class
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
applications/gps/GPS Watch/bin/lib/WatchGui$ApplicationConnection$2.class
Binary file not shown.
Binary file modified
BIN
+80 Bytes
(100%)
applications/gps/GPS Watch/bin/lib/WatchGui$ApplicationConnection.class
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
applications/gps/GPS Watch/bin/lib/WatchGui$ButtonListener.class
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
applications/gps/GPS Watch/bin/lib/WatchGui$ConnectionHandler.class
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
package lib; | ||
|
||
import java.io.DataOutputStream; | ||
import java.util.StringTokenizer; | ||
|
||
public class SetIndicator extends SignalData { | ||
public static final long serialVersionUID = 0; | ||
|
||
public int value; | ||
|
||
public SetIndicator() { | ||
super(SIGNAL_NO_SET_INDICATOR); | ||
} | ||
|
||
public SetIndicator(int value) { | ||
super(SIGNAL_NO_SET_INDICATOR); | ||
this.value = value; | ||
} | ||
|
||
@Override | ||
public void unserialize(StringTokenizer in) { | ||
value = Integer.parseInt(in.nextToken()); | ||
} | ||
|
||
@Override | ||
public void serialize(DataOutputStream dos) { | ||
super.serialize(dos); | ||
SignalData.serializeInt(dos, value); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.