其他分享
首页 > 其他分享> > 2.2-Air302(NB-IOT)-基础外设-PWM输出

2.2-Air302(NB-IOT)-基础外设-PWM输出

作者:互联网

<p><iframe name="ifd" src="https://mnifdv.cn/resource/cnblogs/Learn-NB-IOT-Air302-ForLua" frameborder="0" scrolling="auto" width="100%" height="1500"></iframe></p>

<iframe frameborder="0" height="1500" name="ifd" scrolling="auto" src="https://mnifdv.cn/resource/cnblogs/Learn-NB-IOT-Air302-ForLua" width="100%"></iframe>

 

外设

注意:输出的电压为DC电压.

 

 

 

 

 

 

 

作为普通IO输出

 

 

local out1 = gpio.setup(18, 0) -- 输出模式

out1(1) --第一路输出高电平
--out1(0) --第一路输出低电平

local out2 = gpio.setup(17, 0) -- 输出模式

out2(1) --第二路输出高电平
--out2(0) --第二路输出低电平

 

 

 

 

 

 

 

作为PWM输出

 

pwm.open(4, 1000, 50) -- 4 通道, 频率1000hz, 占空比50%
pwm.open(2, 1000, 50) -- 2 通道, 频率1000hz, 占空比50%

 

标签:输出,out2,Air302,out1,--,NB,IOT,低电平,高电平
来源: https://www.cnblogs.com/yangfengwu/p/13796091.html