const int czujnik = A0; void setup() { Serial.begin(9600); // put your setup code here, to run once: } void loop() { int odczyt = analogRead(czujnik); float temperatura = (odczyt*500) / 1023; Serial.print( " temperatura------> "); Serial.print(temperatura); Serial.println(); }