Advertisement
pleasedontcode

Temperature Logger rev_05

Nov 25th, 2024
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. /********* Pleasedontcode.com **********
  2.  
  3.     Pleasedontcode thanks you for automatic code generation! Enjoy your code!
  4.  
  5.     - Terms and Conditions:
  6.     You have a non-exclusive, revocable, worldwide, royalty-free license
  7.     for personal and commercial use. Attribution is optional; modifications
  8.     are allowed, but you're responsible for code maintenance. We're not
  9.     liable for any loss or damage. For full terms,
  10.     please visit pleasedontcode.com/termsandconditions.
  11.  
  12.     - Project: Temperature Logger
  13.     - Source Code compiled for: Arduino Uno
  14.     - Source Code created on: 2024-11-25 11:09:00
  15.  
  16. ********* Pleasedontcode.com **********/
  17.  
  18. /****** SYSTEM REQUIREMENTS *****/
  19. /****** SYSTEM REQUIREMENT 1 *****/
  20.     /* The project must implement the LM35 sensor for */
  21.     /* continuous temperature monitoring, with readings */
  22.     /* taken from analog pin A0. The setup should include */
  23.     /* necessary error handling for sensor malfunctions. */
  24. /****** END SYSTEM REQUIREMENTS *****/
  25.  
  26.  
  27. /* START CODE */
  28.  
  29. /****** DEFINITION OF LIBRARIES *****/
  30. #include <LM35.h>   //https://github.com/wilmouths/LM35
  31.  
  32. /****** FUNCTION PROTOTYPES *****/
  33. void setup(void);
  34. void loop(void);
  35.  
  36. /***** DEFINITION OF ANALOG INPUT PINS *****/
  37. const uint8_t temp_LM35_Vout_PIN_A0 = A0;
  38.  
  39. /****** DEFINITION OF LIBRARIES CLASS INSTANCES*****/
  40. LM35 lm35(temp_LM35_Vout_PIN_A0); // Instantiate the LM35 object
  41.  
  42. void setup(void)
  43. {
  44.     // put your setup code here, to run once:
  45.     pinMode(temp_LM35_Vout_PIN_A0, INPUT);
  46.     Serial.begin(9600); // Initialize serial communication for debugging
  47. }
  48.  
  49. void loop(void)
  50. {
  51.     // put your main code here, to run repeatedly:
  52.     double temperature = lm35.getTemp(); // Get temperature in Celsius
  53.  
  54.     // Check for sensor malfunction
  55.     if (temperature < -40 || temperature > 125) { // LM35 range
  56.         Serial.println("Error: Sensor malfunction or out of range.");
  57.     } else {
  58.         Serial.print("Temperature: ");
  59.         Serial.print(temperature);
  60.         Serial.println(" °C");
  61.     }
  62.  
  63.     delay(1000); // Delay for 1 second before the next reading
  64. }
  65.  
  66. /* END CODE */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement