Skip to content

Instantly share code, notes, and snippets.

@Happsson
Created November 8, 2016 23:14
Show Gist options
  • Save Happsson/e466091192c4c8816a5efb2be5300d14 to your computer and use it in GitHub Desktop.
Save Happsson/e466091192c4c8816a5efb2be5300d14 to your computer and use it in GitHub Desktop.
LED_STATIC_TABLE
public static class LED_STATIC_TABLE{
public static int[] BLACK = {0,0,0};
public static int[] RED = {255, 0 ,0 };
public static int[] BLUE = {0,0,255};
public static int[] GREEN = {0,255,0};
public static int[] YELLOW = {255, 255, 0};
public static int[] PINK = {255,0,255};
public static int[] GREENBLUE = {0,255,255};
public static int[] WHITE = {255,255,255};
public static int[][] lixels = {{0,16,32},
{48,64,80},
{96,112,128},
{1,17,33},
{49,65,81},
{97,113,129},
{2,18,34},
{50,66,82},
{98,114,130},
{3,19,35},
{51,67,83},
{99,115,131},
{4,20,36},
{52,68,84},
{100,116,132},
{5,21,37},
{53,69,85},
{101,117,133},
{6,22,38},
{54,70,86},
{102,118,134},
{7,23,39},
{55,71,87},
{103,119,135},
{8,24,40},
{56,72,88},
{104,120,136},
{9,25,41},
{57,73,89},
{105,121,137},
{10,26,42},
{58,74,90},
{106,122,138},
{11,27,43},
{59,75,91},
{107,123,139},
{12,28,44},
{60,76,92},
{108,124,140},
{13,29,45},
{61,77,93},
{109,125,141},
{14,30,46},
{62,78,94},
{110,126,142},
{15,31,47},
{63,79,95},
{111,127,143}
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment