readVoltage() reading only 0 or 5

11 vues (au cours des 30 derniers jours)
Gun Min Song
Gun Min Song le 7 Nov 2018
From an Arduino Mega I am outputting 0,1,2,3,4 volts using writePWMVoltage function (at D13), then I connected D13 to A0 for readVoltage. In theory, I am supposed to get 0,1,2,3,4V from A0, but I am only getting values 0 or 5 from A0. I already checked D13 is outputting correct values by measuring with DMM.
Am I wiring something wrong? Why is this happening? Any help is appreciated :)
  2 commentaires
Gun Min Song
Gun Min Song le 7 Nov 2018
This is the code I used for this experiment ----------------------------------------------
clear
clc
a = arduino
for i=0:4
writePWMVoltage(a,'D13',i)
voltage(i+1) = readVoltage(a,'A0')
pause
end
writePWMVoltage(a,'D13',0)
voltage(6) = readVoltage(a,'A0')
Walter Roberson
Walter Roberson le 8 Nov 2018
https://www.mathworks.com/help/supportpkg/arduinoio/ref/writepwmdutycycle.html
Try setting the duty cycle higher in case it is returning to base before you can read it.

Connectez-vous pour commenter.

Réponses (1)

Rohan Kale
Rohan Kale le 14 Fév 2020
In my understanding you are trying to read the DC voltages from the PWM waveforms generated on D13. Your code sequence seems to be alright. However, the hardware setup is where the problem is originating. In theory, the DC i.e. mean voltage, can be changed by changing the PWM duty cycle. I think the readVoltage API is just picking up the instances where the waveform is either a LOW or a HIGH, that's why you are reading either 0V or 5V. In order to read DC voltages correctly from the waveform, you may want to insert an RC filter between the PWM and analog pins. The RC filter will essentially increase the decay time as the capacitor would now discharge slowly. Try varying time constant of the circuit, may be keep it as 0.1 seconds. This should probably solve your issue.
  1 commentaire
Álvaro Aparicio Serna
Álvaro Aparicio Serna le 25 Sep 2020
Very helpful answer, thank you very much.

Connectez-vous pour commenter.

Catégories

En savoir plus sur Arduino Hardware dans Help Center et File Exchange

Produits


Version

R2018b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by