第1步:您需要做的事情
對于本教程,您將需要以下內容:
1x熱敏電阻(10k或100k:我在這里使用10k)
1個10k電阻器
1x面包板
少量跳線
第2步:Schmatics
電路非常簡單,因此請根據schmatics中的顯示進行連接,一切都會好起來的。
您還可以參考我在實驗板上連接的圖像。
步驟3:代碼
復制以下代碼并將其上傳到arduino:
#include Thermister(int data)
{
double temp;
temp = log(10000.0 *((1024.0/data-1)));
temp = 1/(0.001129148+(0.000234125+(0.0000000876741 * temp * temp))* temp);
temp = temp-273.15;
Serial.println(“”);
Serial.print (temp);
Serial.print(“ Celcius”);
temp =(temp * 9.0)/5.0+32.0;
Serial.println(“”);
Serial.print(temp );
Serial.print(“華氏度”);
Serial.println(“”);
Serial.println(“ 。..。..。..。..。..。. 。..。..。..。..。..。.“);
}
void setup()
{
Serial.begin(9600);
}
int i;
void loop()
{
Thermister(i);
delay(1000);
}
步驟4:獲取溫度在串行監視器上
上傳代碼后,打開串行監視器,就可以在我獲得串行監視器時獲取熱敏電阻的溫度,參考提供的圖像即可會好起來的。
-
Arduino
+關注
關注
188文章
6472瀏覽量
187322
發布評論請先 登錄
相關推薦
評論