int mq3_analogPin = A0; // connected to the output pin of MQ3
void setup()
{
Serial.begin(9600); // open serial at 9600 bps
}
void loop()
{
//give ample warmup time for readings to stabilize
int mq3_value = analogRead(mq3_analogPin);
Serial.println(mq3_value);
delay(100); //Just here to slow down the output.
}
Arduino + MQ3 酒精传感器之代码实现
发布于: 27 January, 2014
分享:
0 留言
留言
您的留言将被人工审核,请勿发表色情、反动言论。
您可能感兴趣
如何测试 Arduino GSM Shield 调制解调器
本文介绍如何使用GSM Shield测试调制解调器功能。通过Arduino和GSM Shield,您可以发送和接收短信、拨打电...