Skip to content

Instantly share code, notes, and snippets.

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 jeremyherbert/43e103bf147c3d5f2edbbf9120cd73ab to your computer and use it in GitHub Desktop.
Save jeremyherbert/43e103bf147c3d5f2edbbf9120cd73ab to your computer and use it in GitHub Desktop.
set/clear pins
PORTB |= (1 << 2); // set pin 2
PORTB &= ~(1 << 2); // clear pin 2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment