summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKeith Packard <keithp@keithp.com>2011-07-17 16:44:10 -0700
committerKeith Packard <keithp@keithp.com>2011-07-17 16:44:10 -0700
commit6795d353be91df96a571cebc237e6a54a065a380 (patch)
treeab3e3250af426a0d9ce1bbb45904aad5c49e422a
parent7f6cce5749724dbb836aaa27bbeedf977106f6f3 (diff)
altosui: Change continutity colors to yellow/magenta
Makes them stand apart from the accel/speed lines Signed-off-by: Keith Packard <keithp@keithp.com>
-rw-r--r--altosui/AltosGraphUI.java7
1 files changed, 5 insertions, 2 deletions
diff --git a/altosui/AltosGraphUI.java b/altosui/AltosGraphUI.java
index 03aae652..a27aa37f 100644
--- a/altosui/AltosGraphUI.java
+++ b/altosui/AltosGraphUI.java
@@ -23,6 +23,9 @@ public class AltosGraphUI extends JFrame
static final private Color green = new Color(31,194,31);
static final private Color blue = new Color(31,31,194);
static final private Color black = new Color(31,31,31);
+ static final private Color yellow = new Color(194,194,31);
+ static final private Color cyan = new Color(31,194,194);
+ static final private Color magenta = new Color(194,31,194);
static private class OverallGraphs {
AltosGraphTime.Element height =
@@ -71,7 +74,7 @@ public class AltosGraphUI extends JFrame
};
AltosGraphTime.Element drogue_voltage =
- new AltosGraphTime.TimeSeries("Voltage (V)", "Drogue Continuity", blue)
+ new AltosGraphTime.TimeSeries("Voltage (V)", "Drogue Continuity", yellow)
{
public void gotTimeData(double time, AltosDataPoint d) {
double v = d.drogue_voltage();
@@ -81,7 +84,7 @@ public class AltosGraphUI extends JFrame
};
AltosGraphTime.Element main_voltage =
- new AltosGraphTime.TimeSeries("Voltage (V)", "Main Continuity", green)
+ new AltosGraphTime.TimeSeries("Voltage (V)", "Main Continuity", magenta)
{
public void gotTimeData(double time, AltosDataPoint d) {
double v = d.main_voltage();