Beginner0001
New Member
I have 4 switches and 4 LEDs. I want to turn off the first LED with the first switch, the second one with the second switch, and so on. When I turn off the switch, LED should turn on. All switches connected to PORTA, all LEDs to PORTB. Initially, all LEDs are on. Will this code do the job?
Code:
PORTB=0b00001111;
if (PINA & (1<<n))
{
PORTB = PORTB & ~(1 << n)
}
else
{
PORTB = PORTB | (1 << n);
}