You can upload the microcontroller and test the device
Digital Thermometer with Temperature Logging Assignment Answers Needed
Your Question:
Step By Step Answers with Explanation
Step-by-step instructions on how to build a digital thermometer with temperature logging:
EEPROM chip
Keypad
Soldering iron
Solder
Connect the LCD display to the microcontroller. The LCD display will have different pins depending on the type of display that you are using. Consult the datasheet for your LCD display to determine how to connect it to the microcontroller.
Connect the EEPROM chip to the microcontroller. The EEPROM chip will also have different pins depending on the type of EEPROM that you are using. Consult the datasheet for your EEPROM chip to determine how to connect it to the microcontroller.
Example code:
The following is an example of Arduino code that you can use to build a digital thermometer with temperature logging:
// Define the pins that the hardware is connected to
const int DS18B20_PIN = 10;
const int LCD_D6_PIN = 3;
const int LCD_D7_PIN = 2;
LiquidCrystal lcd(LCD_RS_PIN, LCD_EN_PIN, LCD_D4_PIN, LCD_D5_PIN, LCD_D6_PIN, LCD_D7_PIN);
// Define the logging parameters
lcd.begin(16, 2);
// Start the temperature sensor
temperatureSensor.requestTemperatures();
float temperature = temperatureSensor.getTempCByIndex(0);
lcd.print(" C");
// Log the temperature to the EEPROM


