Skip to content

Instantly share code, notes, and snippets.

@futureshocked
Last active December 9, 2020 22:36
Show Gist options
  • Save futureshocked/6117638a32dc36e0127c1cfd4d0fe935 to your computer and use it in GitHub Desktop.
Save futureshocked/6117638a32dc36e0127c1cfd4d0fe935 to your computer and use it in GitHub Desktop.
byte encodebool(boolean* arr)
{
byte val = 0;
for (int i = 0; i<4; i++)
{
val <<= 1;
if (arr[i]) val |= 1;
}
return val;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment