arduino执行digitalwrite,digitalread,analogread,dela
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了arduino执行digitalwrite,digitalread,analogread,dela相关的知识,希望对你有一定的参考价值。
arduino执行digitalwrite,digitalread,analogread,delay(0)的用时
1,digitalWrite(pin,value)函数它的作用是设置引脚的输出的电压为高电平或低电平。注意:在使用digitalWrite(pin, value)函数设置引脚之前,需要将引脚设置为OUTPUT模式。
2,digitalRead(pin)函数用在引脚为输入的情况下,可以获取引脚的电压情况—HIGH(高电平)或LOW(低电平),参数pin表示所要获取电压值的引脚,该函数返回值为int型,表示引脚的电压情况。
3,analogRead(pin)函数用于读取引脚的模拟量电压值,每读一次需要花100ms的时间。参数pin表示所要获取模拟量电压值的引脚,该函数返回值为int型,表示引脚的模拟量电压值,范围在0~1023。 参考技术A 很短,按你懂的说法说吧。大概几个节拍就完了。而arduino uno的节拍是16m。本回答被提问者采纳
dig常用命令
Dig
是域信息搜索器的简称(Domain Information Groper
),使用dig命令可以执行查询域名相关的任务。
###1. 理解dig的输出结果
$ dig chenrongrong.info
1 ; <<>> DiG 9.9.5-3ubuntu0.1-Ubuntu <<>> chenrongrong.info
2 ;; global options: +cmd
3 ;; Got answer:
4 ;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 22752
5 ;; flags: qr rd ra; QUERY: 1, ANSWER: 1, AUTHORITY: 2, ADDITIONAL: 1
7 ;; OPT PSEUDOSECTION:
8 ; EDNS: version: 0, flags:; udp: 4096
9 ;; QUESTION SECTION:
10 ;chenrongrong.info. IN A
11 ;; ANSWER SECTION:
12 chenrongrong.info. 600 IN A 103.245.222.133
13 ;; AUTHORITY SECTION:
14 chenrongrong.info. 600 IN NS f1g1ns2.dnspod.net.
15 chenrongrong.info. 600 IN NS f1g1ns1.dnspod.net.
16 ;; Query time: 183 msec
17 ;; SERVER: 127.0.1.1#53(127.0.1.1)
18 ;; WHEN: Thu Dec 25 16:04:51 CST 2014
19 ;; MSG SIZE rcvd: 116
1~8: 显示了dig的基本设置信息,e.g. java -version
9-10: 显示了查询内容,这里查询的是域名chenrongrong.info的A
记录
11-12: 显示了查询结果,域名chenrongrong.info的A
记录是103.245.222.133
(A
(Address
) 记录是用来指定主机名(或域名)对应的IP
地址记)
13-15: 授权信息,域名chenrongrong.info的NS(nameserver)是dnspod
的域名服务器
16-19: 统计信息
上述选项都可以通过对应选项选择是否输出,+[no]question,+[no]answer,+[no]authority,+[no]stat
,当然+short
更加简洁
###2. 显示特定的输出结果
+[no]comments – Turn off the comment lines
+[no]authority – Turn off the authority section
+[no]additional – Turn off the additional section
+[no]stats – Turn off the stats section
+[no]answer – Turn off the answer section (Of course, you wouldn’t want to turn off the answer section)
###3. 查询MX记录 MX(Mail Exchanger)
记录查询:
$ dig redhat.com MX +noall +answer
or
$ dig -t MX redhat.com +noall +answer 后者`-t`代表查询类型,可以是`A`,`MX`,`NS`等,`+noall` 代表清除所有显示的选项
###4. 查询域名服务器
$ dig -t NS chenrongrong.info +noall +answer
###5. 查询所有DNS
记录
$ dig -t ANY chenrongrong.info +answer
; <<>> DiG 9.9.5-3ubuntu0.1-Ubuntu <<>> -t ANY chenrongrong.info +noall +answer
;; global options: +cmd
chenrongrong.info. 568 IN A 103.245.222.133
chenrongrong.info. 568 IN NS f1g1ns2.dnspod.net.
chenrongrong.info. 568 IN NS f1g1ns1.dnspod.net.
chenrongrong.info. 568 IN SOA f1g1ns1.dnspod.net.freednsadmin.dnspod.com. 1417233166 3600 180 1209600 180
###6. 简洁显示+short
+short
参数只显示nameserver
$ dig -t NS chenrongrong.info +short
f1g1ns2.dnspod.net.
f1g1ns1.dnspod.net.
###7. DNS反向解析dig -x
我们一般所说的DNS域名解析指的是正向解析即从域名解析到相应的IP,反之从IP解析到对应的DNS服务器就是反向解析,8.8.8.8
是google的一个公共DNS服务器,我们可以通过dig -x
查找该ip对应的DNS服务器
$ dig -x 8.8.8.8 +short
google-public-dns-a.google.com.
8.显示域名的CNAME
记录
CNAME
记录,即:别名记录。这种记录允许您将多个名字映射到同一台计算机.
dig cname www.baidu.com +short
www.a.shifen.com.
dig
可以使我们更好的理解DNS解析的过程,dig -h
列出了更多详细的命令参数可供我们使用,这也是学习命令有效方式:
Ask Itself,Ask Manpage
以上是关于arduino执行digitalwrite,digitalread,analogread,dela的主要内容,如果未能解决你的问题,请参考以下文章
怎么用电池给arduino板供电? 我想把arduino板独立出来不接电脑电源实现功能 太受限制了