Hey,

ok verstehe.

Doch wenn ich nun den Code hier uploade:

#include <math.h>
int y,x;
int sensorbreite = 14.9;
int brennweite = 70;
int a = sensorbreite/2/brennweite;

void setup(){
Serial.begin(9600);
}

void loop(){
y = atan(a);
x = 2*y*45/atan(1);
Serial.println(x);
}

Dann den Serialmonitor anschaue... werden, im Gegensatz zum Beispiel (20), nur Nullen ausgegeben...

was habe ich da falsch gemacht?