返回列表 發帖

analogRead()



  1. int sensorPin=A0;
  2. int sensorValue;
  3. int buzzerPin=13;
  4. //int temp;

  5. void setup()
  6. {
  7.   Serial.begin(9600);
  8.   pinMode(buzzerPin,OUTPUT);
  9. }

  10. void loop()
  11. {
  12.   sensorValue=analogRead(sensorPin);
  13.   Serial.println(sensorValue);
  14.   //temp=166*((float)(sensorValue-19)/339)-41;
  15.   //Serial.println(temp);
  16.   if(sensorValue>300)
  17.     digitalWrite(buzzerPin,HIGH);
  18.   else
  19.     digitalWrite(buzzerPin,LOW);
  20.   delay(100);
  21. }
複製代碼
附件: 您需要登錄才可以下載或查看附件。沒有帳號?註冊

返回列表