Added more significant delay so that the LEDs being toggled are visible

This commit is contained in:
William Miceli
2021-05-25 14:23:15 -04:00
parent c8a8f6b528
commit 82a5c368c0

View File

@@ -33,6 +33,8 @@ int main(void) {
while(1) while(1)
{ {
P8OUT ^= LEDY0 | LEDY1; // Toggle both yellow LEDs P8OUT ^= LEDY0 | LEDY1; // Toggle both yellow LEDs
delay(); for(i = 1000; i > 0; i--){
delay();
}
} }
} }