<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%