本网页已闲置超过3分钟,按键盘任意键或点击空白处,即可回到网页
最热资讯


亲,“电路城”已合并升级到更全、更大、更强的「新与非网」。点击查看「新与非网」
这是一个简单的方波发生器,主要使用TimerOne库,可让您在引脚9产生PWM信号。
硬件部件:
软件应用程序和在线服务:
这是一个简单的方波发生器,主要使用TimerOne库,使您可以在引脚9处生成PWM信号,范围约为5Hz至1 Mhz,并且可以将占空比从0调整到100%。
原理图:
设备非常易于构建,仅包含几个组件:
脉冲发生器可以使用连接到Arduino数字输入6和7的按钮来调整脉冲重复周期。13个输入引脚可让您调整占空比。持续时间和占空比读数显示在LCD 16×2指示器的第一行中,频率读数显示在第二行中。调整脉冲重复周期的最小步长是1μs,因此频率将离散变化,例如1μs是1 MHz,2μs是500 kHz,3μs是333.333 Hz,依此类推,并且随着频率的降低,其调整的平滑度增加。这在较高的频率上是不切实际的,但这就是简化的代价。
为了可视化输出信号,我使用了小型单通道示波器。最后,将设备安装在合适的盒子中,这是电子实验室中的另一个有用工具。
源码:
#include <TimerOne.h>
#include <LiquidCrystal.h>
LiquidCrystal lcd(12, 11, 5, 4, 3, 2);// RS,E,D4,D5,D6,D7
unsigned long t=1000,f,k=512;// default 1000 μs (1000 Hz), meander, pulse duration is equal to duty cycle k = 512 (50%)
byte k1,kn,kn1,kn2;
int drive,drive0;
void setup()
{
lcd.begin(16, 2);// LCD 16X2
pinMode(10, OUTPUT);
pinMode(6,INPUT);// button at input 6
pinMode(7,INPUT);// button at input 7
pinMode(13,INPUT);// button at input 13
}
void loop()
{
Timer1.initialize(t); // period
Timer1.pwm(9, k); // k - fill factor 0-1023. We remove the signal from the output 9
kn=digitalRead(6);// button input 6 (- pulse period)
kn1=digitalRead(7);// button input 7 (+ pulse period)
kn2=digitalRead(13);// button input 13 (+ circle fill factor)
if(kn==HIGH){ // decreasing the period
drive++;
if(drive<30){
t=t-1;
}
// if the button is held for a long time, the correction of the pulse period x10 x100 x1000 is accelerated
else if(drive>30 && drive<60 ){
t=t-10;
}
else if(drive>=60 && drive<100){
t=t-100;
}
else if(drive>=100){
t=t-1000;
}
}
else{
drive=0;
}
if(kn1==HIGH){// adding a period
drive0++;
if(drive0<30){
t=t+1;
// if the button is held for a long time, the correction of the period x10 x100 x1000 is accelerated
}
else if(drive0>30 && drive0<60 ){
t=t+10;
}
else if(drive0>=60 && drive0<100){
t=t+100;
}
else if(drive0>=100){
t=t+1000;
}
}
else{
drive0=0;
}
if(t==0 || t>300000){ // limiting the pulse duration to the minimum, if 0 μs or more than 300 ms (3.33 Hz), then the period is 1 μs
t=1;
}
if(t>200000 && t<300000){ // limiting the pulse duration to the maximum, if more than 200 ms, but less than 300 ms (3.33 Hz), then the period is 200 ms (5 Hz)
t=200000;
}
f=1000000/t; // calculate the frequency
k1=k*100/1024; // calculate% fill factor
if(kn2==HIGH){// button for adjusting the fill factor (in a circle from 50 to 100%, then from 0 to 100%)
k=k+16;// step 16 out of 1024 (you can do 8 for smoother adjustment)
}
if(k==1024){
k=0;
}
// displaying information on the indicator
lcd.setCursor(0,0);
lcd.print("T=");
lcd.print(t);
lcd.print(" us");
lcd.setCursor(12,0);
lcd.print(k1);
lcd.print(" %");
lcd.setCursor(0,1);
lcd.print("F=");
lcd.print(f);
lcd.print(" Hz");
delay(300);
lcd.setCursor(0,0);
lcd.print(" ");
lcd.setCursor(0,1);
lcd.print(" ");
}
如何有效控制DDS的幅度?
2019-06-11
一款便携式的简易波形发生器电路设计
2019-06-24
基于EPLD器件MAX7256ATC144-6简化任意波形发生器SDRAM控制器设计方案
2020-05-21
基于EPLD器件MAX7256ATC144-6简化任意波形发生器SDRAM控制器方案设计
2020-05-22
基于 Arduino Nano R3 的COVID-19 紧急呼吸机
2021-11-26
讨论