Arduino例程解读与实验(3.DigitalReadSerial 串口显示数字管脚电平)

/*
DigitalReadSerial
//串口显示数字管脚电平
Reads a digital input on pin 2, prints the result to the Serial Monitor
//读取数字管脚2上的输入电平,结果显示在串口监视器上
This example code is in the public domain.
//例程代码见以下网址
http://www.arduino.cc/en/Tutorial/DigitalReadSerial
*/

// digital pin 2 has a pushbutton attached to it. Give it a name:
int pushButton = 2;
//数字管脚2上外接有一个按钮,把该管脚命名为pushButton
// the setup routine runs once when you press reset:
//按下复位键后setup()只运行一次
void setup() {
// initialize serial communication at 9600 bits per second:
//以9600 波特率初始化串口通讯
Serial.begin(9600);
// make the pushbutton’s pin an input:
//设置pushButton为输入模式
pinMode(pushButton, INPUT);
}

// the loop routine runs over and over again forever:
//loop()为无限循环
void loop() {
// read the input pin:
//读取输入管脚上的电平
int buttonState = digitalRead(pushButton);
// print out the state of the button:
Serial.println(buttonState);
//输出输入管脚上的电平到串口监视器
delay(1); // delay in between reads for stability
}

  • 0
    点赞
  • 3
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值