می خواستم با ترمیستور دما رو اندازه اندازه گیری کند و این نمونه برداری دما در هر 1500 میلی ثانیه است و این اطلاعات رو در (دمای اندازه گیری شده، زمان اندازه گیری شده)در کارت حافظه به صورت اکسل ذخیر کنه و همچنین روی ال سی دی نمایش بده ممنون میشم راهنمایی کنید.
کد مورد استفاده برای اندازه گیری
#include <thermistor.h> //Donwload it here: https://electronoobs.com/eng_arduino_thermistor.php
thermistor therm1(A0,0); //Connect thermistor on A0, 0 represents TEMP_SENSOR_0 ( configuration.h for more)
void setup() {
// put your setup code here, to run once:
Serial.begin(9600); //initialize port serial at 9600 Bauds.
}
void loop() {
// All thermistor temperature is in degrade.
double temp1 = therm1.analog2temp(); // read temperature
//Print temperature in port serial
Serial.print("Thermistor temperature: "

Serial.println((String)temp1);
Serial.print("----------------------"

delay(200); //wait 200 mS for next measure
}