LM 35
Sensor simples de temperatura. Para converter a saída do mesmo (Vout) em ºC basta multiplicar a leitura por 5 (saída máxima 5V) e dividir por 1024 (resolução da porta analógica) e como cada 10mV corresponde a 1ºC dividir por 0,01
leitura do sensor x (5/1024) : 0,01
Sensor lm35
Ligação do lm35 no Arduíno
Código
const int LM35 =A0; float temp = 0; int lido = 0; void setup() { // put your setup code here, to run once: Serial.begin(9600); } void loop() { // put your main code here, to run repeatedly: temp = (float(analogRead(LM35))*5/(1023))/0.01; //lido = analogRead(LM35); //temp = (lido*5/1023); //temp = temp/0.01; Serial.print("Temperatura: "); Serial.println(temp); delay(2000); }
Page last modified on March 19, 2019, at 04:13 PM