In this project, I recorded the ambient temperature of my room for 24 hours. I used a thermistor to measure the ambient temperature. The way the program works is that it reads the thermistor data once per minute, and once it gets 10 readings, it saves that as a data point in degrees Celsius alongside time. After 144 readings, we get 24 hours of temperature data. To calculate the temperature, we took the reading and plugged it into the Steinhart-hart formula with values that were calculated before recording. To get these values, I matched the thermistor readings with the outdoor temperature, and used MATLAB to calculate the constants for the formula. The code also has a few functions, like the ability to print the last recorded data point in the serial monitor as well as print a list of all of the recorded points since the start of the program. It ends itself by entering a while 0 == 0 loop as to stop recording more data, and prints out the final list of data. Video: https://drive.google.com/file/d/1MzNlZAm9dPqXklsQ35XdaRxgiZvCtMvO/view?usp=sharing