void setup()
{
// put your setup code here, to run once:
DDRB=32; //00100000 sets PB5 as output
}
void loop()
{
PORTB=32; // put your main code here, to run repeatedly:
delay(3000);
PORTB=0;
delay(1000);
}
void setup()
{
// put your setup code here, to run once:
DDRB=32; //00100000 sets PB5 as output
}
void loop()
{
PORTB=32; // put your main code here, to run repeatedly:
delay(3000);
PORTB=0;
delay(1000);
}