代码拉取完成,页面将自动刷新
#include <math.h>
void setup() {
// put your setup code here, to run once:
pinMode(A0, INPUT);
Serial.begin(9600);
}
void loop() {
// put your main code here, to run repeatedly:
short int T0 = 10;
short int a0 = 815;
short int T1 = 60;
short int a1 = 397;
short int a = analogRead(A0);
short int T = convert_adc2temperature(a,a0, a1,T0, T1);
Serial.println(a);
Serial.println(T);
delay(1000);
}
short int convert_adc2temperature(short int ax,short int a0,short int a1,short int temp0, short int temp1)
{
short int tempx;
tempx = temp0+(ax-a0)*(temp1-temp0)/(a1-a0);
return tempx - 20;
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。