Skip to content

Instantly share code, notes, and snippets.

@bootrino
Created February 12, 2019 08:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bootrino/75a2f4f8fdaebd62861eb4cc83f2fcab to your computer and use it in GitHub Desktop.
Save bootrino/75a2f4f8fdaebd62861eb4cc83f2fcab to your computer and use it in GitHub Desktop.
Print the data_out buffer
int x = 0;
for (int i = 0; i < buffSize; i++)
{
x = i % 32;
if (x == 0)
{
Serial.print("\n");
}
Serial.printf("%02X: ", data_out[i]);
Serial.flush();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment