updated holo-color-picker

removed some debug out
This commit is contained in:
2016-05-01 22:03:22 +02:00
parent ab2c219dca
commit 9d043c21a3
6 changed files with 7 additions and 13 deletions

View File

@@ -232,7 +232,6 @@ public class LedDHelper {
JSONObject json = new JSONObject(response.getResult().toString());
JSONArray hsv = json.getJSONArray("color");
if (hsv.length() == 3) {
System.out.println(hsv);
ledStripe.setColor(new HSV(hsv.getDouble(0), hsv.getDouble(1), hsv.getDouble(2)));
callback.onColorReceived(ledStripe);
} else {