小編給大家分享一下Arduino中analogWrite()怎么用,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!
成都創(chuàng)新互聯(lián)為企業(yè)級客戶提高一站式互聯(lián)網(wǎng)+設(shè)計服務(wù),主要包括做網(wǎng)站、網(wǎng)站建設(shè)、成都App定制開發(fā)、重慶小程序開發(fā)、宣傳片制作、LOGO設(shè)計等,幫助客戶快速提升營銷能力和企業(yè)形象,創(chuàng)新互聯(lián)各部門都有經(jīng)驗豐富的經(jīng)驗,可以確保每一個作品的質(zhì)量和創(chuàng)作周期,同時每年都有很多新員工加入,為我們帶來大量新的創(chuàng)意。
程序例子:
int ledPin = 3; int sum = 255; void setup() { // put your setup code here, to run once: //pinMode(ledPin,OUTPUT); Serial.begin(9600); } void loop() { // put your main code here, to run repeatedly: for(int i = sum;i > 0;i--){ analogWrite(ledPin,i); Serial.println(i); } }
在上面的例子中,pinMode可以被注釋,因為使用analogWrite時可以省略。
在ATmega328芯片上,支持analogWrite的pin有3,5,6,9,10,11,但是5和6產(chǎn)生的PWM會比設(shè)置的占空比高
analogWrite(pin,value),pin為引腳編號,value的取值從0到255,0時關(guān)閉占空比,255時為最大占空比,如果你接5v輸出,0就是5v,255就是為0v。
下面的程序所用電路:
參考下面的程序:
int ledPin = 3; int sum = 255; void setup() { // put your setup code here, to run once: //pinMode(ledPin,OUTPUT); //Serial.begin(9600); } void loop() { // put your main code here, to run repeatedly: analogWrite(ledPin,0); }
此時接上的led就會常亮
int ledPin = 3; int sum = 255; void setup() { // put your setup code here, to run once: //pinMode(ledPin,OUTPUT); //Serial.begin(9600); } void loop() { // put your main code here, to run repeatedly: analogWrite(ledPin,255); }
這個例子中,led不亮。
以上是“Arduino中analogWrite()怎么用”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內(nèi)容對大家有所幫助,如果還想學(xué)習(xí)更多知識,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道!