From d5b1113eb90034983d0a109f42c9ac3a926e69e0 Mon Sep 17 00:00:00 2001 From: Kenneth van Ewijk Date: Mon, 20 Oct 2014 16:29:56 +0200 Subject: [PATCH] Reduced console output when drawing graphs --- GUIboard.java | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/GUIboard.java b/GUIboard.java index aa72dcf..fa6df1c 100644 --- a/GUIboard.java +++ b/GUIboard.java @@ -204,22 +204,12 @@ public class GUIboard { { y = (int) ( (diff-max) / valpix); y = 31 - y; - System.out.println("Y: " + y); } for(int x2 = 0; x2 < 128; x2++) { IO.writeShort(0x42, 1 << 12 | x2 << 5 | y ); } } - - /* - x = 0; - - for(int y2 = 0; y2 < 32; y2++) - { - IO.writeShort(0x42, 1 << 12 | x << 5 | y2 ); - } - */ } private static ArrayList normalizeData(ArrayList data2 , double margin){