虫虫首页| 资源下载| 资源专辑| 精品软件
登录| 注册

Half-Wavelength

  • Arduino学习笔记4_Arduino软件模拟PWM

    注:1.这篇文章断断续续写了很久,画图技术也不精,难免错漏,大家凑合看.有问题可以留言.      2.论坛排版把我的代码缩进全弄没了,大家将代码粘贴到arduino编译器,然后按ctrl+T重新格式化代码格式即可看的舒服. 一、什么是PWM PWM 即Pulse Wavelength Modulation 脉宽调制波,通过调整输出信号占空比,从而达到改 变输出平均电压的目的。相信Arduino 的PWM 大家都不陌生,在Arduino Duemilanove 2009 中,有6 个8 位精度PWM 引脚,分别是3, 5, 6, 9, 10, 11 脚。我们可以使用analogWrite()控 制PWM 脚输出频率大概在500Hz 的左右的PWM 调制波。分辨率8 位即2 的8 次方等于 256 级精度。但是有时候我们会觉得6 个PWM 引脚不够用。比如我们做一个10 路灯调光, 就需要有10 个PWM 脚。Arduino Duemilanove 2009 有13 个数字输出脚,如果它们都可以 PWM 的话,就能满足条件了。于是本文介绍用软件模拟PWM。 二、Arduino 软件模拟PWM Arduino PWM 调压原理:PWM 有好几种方法。而Arduino 因为电源和实现难度限制,一般 使用周期恒定,占空比变化的单极性PWM。 通过调整一个周期里面输出脚高/低电平的时间比(即是占空比)去获得给一个用电器不同 的平均功率。 如图所示,假设PWM 波形周期1ms(即1kHz),分辨率1000 级。那么需要一个信号时间 精度1ms/1000=1us 的信号源,即1MHz。所以说,PWM 的实现难点在于需要使用很高频的 信号源,才能获得快速与高精度。下面先由一个简单的PWM 程序开始: const int PWMPin = 13; int bright = 0; void setup() { pinMode(PWMPin, OUTPUT); } void loop() { if((bright++) == 255) bright = 0; for(int i = 0; i < 255; i++) { if(i < bright) { digitalWrite(PWMPin, HIGH); delayMicroseconds(30); } else { digitalWrite(PWMPin, LOW); delayMicroseconds(30); } } } 这是一个软件PWM 控制Arduino D13 引脚的例子。只需要一块Arduino 即可测试此代码。 程序解析:由for 循环可以看出,完成一个PWM 周期,共循环255 次。 假设bright=100 时候,在第0~100 次循环中,i 等于1 到99 均小于bright,于是输出PWMPin 高电平; 然后第100 到255 次循环里面,i 等于100~255 大于bright,于是输出PWMPin 低电平。无 论输出高低电平都保持30us。 那么说,如果bright=100 的话,就有100 次循环是高电平,155 次循环是低电平。 如果忽略指令执行时间的话,这次的PWM 波形占空比为100/255,如果调整bright 的值, 就能改变接在D13 的LED 的亮度。 这里设置了每次for 循环之后,将bright 加一,并且当bright 加到255 时归0。所以,我们 看到的最终效果就是LED 慢慢变亮,到顶之后然后突然暗回去重新变亮。 这是最基本的PWM 方法,也应该是大家想的比较多的想法。 然后介绍一个简单一点的。思维风格完全不同。不过对于驱动一个LED 来说,效果与上面 的程序一样。 const int PWMPin = 13; int bright = 0; void setup() { pinMode(PWMPin, OUTPUT); } void loop() { digitalWrite(PWMPin, HIGH); delayMicroseconds(bright*30); digitalWrite(PWMPin, LOW); delayMicroseconds((255 - bright)*30); if((bright++) == 255) bright = 0; } 可以看出,这段代码少了一个For 循环。它先输出一个高电平,然后维持(bright*30)us。然 后输出一个低电平,维持时间((255-bright)*30)us。这样两次高低就能完成一个PWM 周期。 分辨率也是255。 三、多引脚PWM Arduino 本身已有PWM 引脚并且运行起来不占CPU 时间,所以软件模拟一个引脚的PWM 完全没有实用意义。我们软件模拟的价值在于:他能将任意的数字IO 口变成PWM 引脚。 当一片Arduino 要同时控制多个PWM,并且没有其他重任务的时候,就要用软件PWM 了。 多引脚PWM 有一种下面的方式: int brights[14] = {0}; //定义14个引脚的初始亮度,可以随意设置 int StartPWMPin = 0, EndPWMPin = 13; //设置D0~D13为PWM 引脚 int PWMResolution = 255; //设置PWM 占空比分辨率 void setup() { //定义所有IO 端输出 for(int i = StartPWMPin; i <= EndPWMPin; i++) { pinMode(i, OUTPUT); //随便定义个初始亮度,便于观察 brights[ i ] = random(0, 255); } } void loop() { //这for 循环是为14盏灯做渐亮的。每次Arduino loop()循环, //brights 自增一次。直到brights=255时候,将brights 置零重新计数。 for(int i = StartPWMPin; i <= EndPWMPin; i++) { if((brights[i]++) == PWMResolution) brights[i] = 0; } for(int i = 0; i <= PWMResolution; i++) //i 是计数一个PWM 周期 { for(int j = StartPWMPin; j <= EndPWMPin; j++) //每个PWM 周期均遍历所有引脚 { if(i < brights[j])\   所以我们要更改PWM 周期的话,我们将精度(代码里面的变量:PWMResolution)降低就行,比如一般调整LED 亮度的话,我们用64 级精度就行。这样速度就是2x32x64=4ms。就不会闪了。

    标签: Arduino PWM 软件模拟

    上传时间: 2013-10-23

    上传用户:mqien

  • *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** ** RELEASE NOTES *** *** *

    *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** ** RELEASE NOTES *** *** *** *** ***** *** *** *** *** *** *** *** *** *** *** *** *** *** 1) RELEASE NOTES: --- --- ---- The release notes are now provided in PDF format in the file: \SOFTWARE\uCOS-II\DOC\RelV251.PDF 2) FEATURES SINCE V2.00: --- --- --- ----- All the features added since V2.00 are described in the PDF file: \SOFTWARE\uCOS-II\DOC\NewV251.PDF 3) EVENT FLAGS: -------------- Event Flags are discussed in AN-1007 (see www.Micrium.com/app_notes.htm) 4) QUICK REFERENCE CHART: ------------------------ A Quick Reference Chart for all the functions in V2.51 is provided in the following .PDF files: \SOFTWARE\uCOS-II\DOC\QuickRefChartV251-Color.PDF Once printed, simply FOLD the page in half and if you have a LAMINATION machine, you can protect the chart by laminating it.

    标签: RELEASE NOTES

    上传时间: 2015-04-06

    上传用户:zq70996813

  • computes the eigenvalues of a symmetric tridiagonal * matrix T. The user may ask for all eigenvalue

    computes the eigenvalues of a symmetric tridiagonal * matrix T. The user may ask for all eigenvalues, all eigenvalues in the half-open interval (VL, VU], or the IL-th through IU-th eigenvalues.

    标签: T. eigenvalues tridiagonal eigenvalue

    上传时间: 2014-01-21

    上传用户:CSUSheep

  • The Rayleigh Integral Method is useful in computing the acoustic properties of a flat panel radiatin

    The Rayleigh Integral Method is useful in computing the acoustic properties of a flat panel radiating into a half space.

    标签: properties computing Rayleigh Integral

    上传时间: 2015-12-07

    上传用户:youmo81

  • Linux内核进程管理 1、linux进程管理的模块组织框架 2、相关数据结构。 3、进程调度原则

    Linux内核进程管理 1、linux进程管理的模块组织框架 2、相关数据结构。 3、进程调度原则,调度算法,。 4、进程的创建和运行管理。 5、进程间通讯。 6、更多的技术 进程调度和中断处理交接 进程管理涉及的内核机制:bottom-half处理,等待队列 Linux/SMP的进程管理和调度技术 7、概述2.4的新特点

    标签: Linux linux 进程 内核

    上传时间: 2013-12-29

    上传用户:ZJX5201314

  • 将数字时间转换为英语口语表达形式

    将数字时间转换为英语口语表达形式,控制台形式。其实核心代码为一个类,可以自己修改输出形式。 比如输入 8 15 10 45 5 30 2 20 2 40 0 0 就能转换为: It s twenty past eight It s a quarter past eight It s a quarter to eleven It s half past five It s twenty past two It s twenty to three 注意: 输入 0 0 后结束并显示结果 方式为每行两个数,中间用空格空开 第一个数0到12表示小时,第二个数0到59表示分钟

    标签: 数字 时间转换 英语

    上传时间: 2013-12-09

    上传用户:大融融rr

  • simulates coin tossing. Let the program toss a coin each time the user chooses the “Toss Coin” menu

    simulates coin tossing. Let the program toss a coin each time the user chooses the “Toss Coin” menu option. Count the number of times each side of the coin appears. Display the results. The program should call a separate method flip that takes no arguments and returns false for tails and true for heads. [ Note: If the program realistically simulates coin tossing, each side of the coin should appear approximately half the time.]

    标签: the coin simulates chooses

    上传时间: 2014-08-30

    上传用户:pompey

  • This program uses the HF flag of a FIFO to trigger reads, guaranteeing that the FIFO is never blocke

    This program uses the HF flag of a FIFO to trigger reads, guaranteeing that the FIFO is never blocked for the writer, giving high throughput for the reader (bursts of D/2 = 128) and guaranteeing that the the reader will not be stuck in the top half of the FIFO.

    标签: FIFO guaranteeing the program

    上传时间: 2016-05-05

    上传用户:784533221

  • the geometry of a diffraction grating, a common illustration in textbooks of optics, spectroscopy,

    the geometry of a diffraction grating, a common illustration in textbooks of optics, spectroscopy, and analytical chemistry. Sliders on the figures allow real-time interactive control of the incidence angle, grating ruling density (lines/mm), wavelength, and diffraction order.

    标签: illustration spectroscopy diffraction textbooks

    上传时间: 2016-06-04

    上传用户:极客

  • DESCRIPTION =========== This example project shows how to use the IAR Embedded Workbench for ARM

    DESCRIPTION =========== This example project shows how to use the IAR Embedded Workbench for ARM to develop code for the Atmel AT91SAM9261 evaluation boards. It shows basic use of parallel I/O, timer and the interrupt controller. It starts by showing different patterns on the LED s separated by half second. COMPATIBILITY ============= The project is compatible with the AT91SAM9261-EK board.

    标签: DESCRIPTION Workbench Embedded example

    上传时间: 2016-10-16

    上传用户:yzy6007