Arduino Esplora 温度传感器例程

发布于: 27 January, 2014
分享:

/* @Author: http://tonylabs.taobao.com @Date: 2013.03.13 */ #include

void setup() {  Serial.begin(9600);      //@初始化串口 }

void loop() {  //@读取 TMP36 温度传感器温度数值,并返回摄氏度  int celsius = Esplora.readTemperature(DEGREES_C);  //@读取 TMP36 温度传感器温度数值,并返回华氏度  int fahrenheit = Esplora.readTemperature(DEGREES_F);

 //@输出结果  Serial.print("Temperature is: ");  Serial.print(celsius);  Serial.print(" degrees Celsius, or ");  Serial.print(fahrenheit);  Serial.println(" degrees Fahrenheit.");  Serial.println(" Fahrenheit = (9/5 * Celsius) + 32");

 //@延时 1 秒  delay(1000); }  

分享:

0 留言

留言

您的留言将被人工审核,请勿发表色情、反动言论。