Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created October 3, 2019 15:54
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 parzibyte/fe12c57bbdc4d5435357cc3f6e128b37 to your computer and use it in GitHub Desktop.
Save parzibyte/fe12c57bbdc4d5435357cc3f6e128b37 to your computer and use it in GitHub Desktop.
void imprimirByte(byte b){
for(byte x = 0; x < 8; x++) Serial.print(bitRead(b, x));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment