This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
### Keybase proof | |
I hereby claim: | |
* I am chriskvik on github. | |
* I am chriskvik (https://keybase.io/chriskvik) on keybase. | |
* I have a public key whose fingerprint is 1E88 20B6 E279 B97A 5961 D1E0 AC77 98AE 897E B873 | |
To claim this, I am signing this object: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <avr/io.h> | |
int main(void) | |
{ | |
// Set Port B pins as all outputs | |
DDRB = 0xff; | |
// Set all Port B pins as HIGH | |
PORTB = 0xff; |