Advertisement
RuiViana

Testa_LM335

Jan 22nd, 2017
298
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.17 KB | None | 0 0
  1. unsigned int celsius = 0;
  2.  
  3. void setup()
  4. {
  5.   Serial.begin(9600);
  6. }
  7.  
  8. void loop()
  9. {
  10.  
  11.   celsius = analogRead(0);
  12.   Serial.println(celsius);
  13.   delay(1000);
  14.  
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement