22 lines
291 B
C
Executable file
22 lines
291 B
C
Executable file
/*
|
|
* controletptestxddd.c
|
|
*
|
|
* Created: 04/04/2021 15:10:52
|
|
* Author : Alzyohan
|
|
*/
|
|
|
|
#include <avr/io.h>
|
|
void timer0_init();
|
|
|
|
int main(void)
|
|
{
|
|
DDRB|=(1<<PB3);
|
|
timer0_init();
|
|
return 0;
|
|
}
|
|
|
|
void timer0_init()
|
|
{
|
|
OCR0=153;
|
|
TCCR0|=(1<<CS01)|(1<<WGM01)|(1<<COM00);
|
|
}
|