這是一個簡單的方波發生器,主要使用TimerOne庫,可讓您在引腳9產生PWM信號。
硬件部件:
Arduino Nano R3 × 1個
Adafruit標準LCD-16x2藍色白色× 1個
按鈕開關,瞬間 × 3
單圈電位器-10k歐姆× 1個
軟件應用程序和在線服務:
Arduino IDE
這是一個簡單的方波發生器,主要使用TimerOne庫,使您可以在引腳9處生成PWM信號,范圍約為5Hz至1 Mhz,并且可以將占空比從0調整到100%。
原理圖:
設備非常易于構建,僅包含幾個組件:
Arduino Nano微控制器
液晶顯示器
三個上拉電阻
三個按鈕
脈沖發生器可以使用連接到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(“ ”);
}
責任編輯:pj
-
微控制器
+關注
關注
48文章
7487瀏覽量
151042 -
發生器
+關注
關注
4文章
1362瀏覽量
61621 -
PWM信號
+關注
關注
3文章
93瀏覽量
20130
發布評論請先 登錄
相關推薦
評論