Also der Code funktioniert bei mir super

Code:
void aktPWM(){
	OCR0=100;
	OCR1A=100;
	OCR1B=100;
}
void initPWM(void){
	DDRB=0xff;
	DDRD=0xff;
	TCCR0=(1<<WGM00)|(1<<COM01)|(1<<CS01);
	TCCR1A = (1<<WGM10)|(1<<COM1A1)|(1<<COM1B1);
	TCCR1B = (1<<CS10);
}