diff options
author | Keith Packard <keithp@keithp.com> | 2014-05-29 14:36:14 -0700 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2014-05-29 14:36:14 -0700 |
commit | bf684a4c290573a3aa627fd8ddf6f6ebbe5fa057 (patch) | |
tree | a02bccd0d39daaa2cd5ac9bc87ebd4bc6393c552 /altoslib/AltosLib.java | |
parent | f80075be4ebb9c5fe00c24b8c7638fad23267424 (diff) |
telegps: Add graph display
Moved the altosui graph files to altosuilib and fixed things up.
Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'altoslib/AltosLib.java')
-rw-r--r-- | altoslib/AltosLib.java | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/altoslib/AltosLib.java b/altoslib/AltosLib.java index 5e18202f..3aef077a 100644 --- a/altoslib/AltosLib.java +++ b/altoslib/AltosLib.java @@ -479,4 +479,8 @@ public class AltosLib { default: return "unknown"; } } + + public static String ignitor_name(int i) { + return String.format("Ignitor %c", 'A' + i); + } } |