Microcontroller › AVR › l293d › yes… you need to play with
July 23, 2011 at 6:19 am
#6504
dagakshay
Participant
yes… you need to play with io pins there
eg:
while(1)
{
PORTA=(1<<PA0);
_delay_ms(1);
PORTA=~(1<<PA0);
_delay_ms(1);
}
this will lead to generate PWM adn reduce the motor speed by half…