diff --git a/WindDirection.java b/WindDirection.java index 6037120..f827ca9 100644 --- a/WindDirection.java +++ b/WindDirection.java @@ -20,7 +20,14 @@ public class WindDirection extends Grootheid{ public void displayGraph() { - GUIboard.writePageToMatrix("", "West East", ""); + GUIboard.clearBottom(); + char[] charray = " West East".toCharArray(); + + IO.writeShort(0x40, '\n'); + for(char ch : charray) + { + IO.writeShort(0x40, ch); + } int x,y; int radius = 15;