Skip to content
Snippets Groups Projects
Commit 8c64f5e3 authored by yuichitamiya's avatar yuichitamiya
Browse files

fix tips bit

parent 7b9284e9
No related branches found
No related tags found
No related merge requests found
Pipeline #290790 passed
......@@ -210,7 +210,7 @@ void loop() {
delay(500);
PORTA.OUT |= 0b00010000; //Set PA4 to HIGH...(2)
delay(500);
PORTA.OUT &= ~0b00000001; //Set PA0 to LOW....(3)
PORTA.OUT &= ~0b00000001; //Set PA0 to LOW ( Remaining PA4 setting )....(3)
}
```
### What to work in (1)(2)(3)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment