#include byte intVar_OC4 = 61; void timer4_ctc_init(void); void setup() { // put your setup code here, to run once: Serial.begin(115200); Serial.println(F("HALLO")); pinMode(13,OUTPUT); digitalWrite(13,LOW); delay(1000); digitalWrite(13,HIGH); delay(1000); digitalWrite(13,LOW); delay(1000); digitalWrite(13,HIGH); timer4_ctc_init(); } void loop() { // put your main code here, to run repeatedly: if (Serial.available()>0) intVar_OC4 =Serial.parseInt(); OCR4C= intVar_OC4; Serial.println(intVar_OC4); delay(500); } void timer4_ctc_init(void) { PLLCSR=(1<