Arduino PWM signal from PID controller
12 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
I am working on a project using Arduino Leonardo to control the brightness of an LED ring based on the brightness of the environment which is detected by a webcam as a sensor. My end goal is to have 8 independent zones on the ring that control their own brightnesses. However, as a trial this attached code has only 4 zones working. I have attached my matlab file below and I get the following error when I run the code:
"Operands to the || and && operators must be convertible to logical scalar values.
Error in Untitled44 (line 101)
elseif ((0 < PIDGLg(i)) && (PIDGLg(i) < 1)) "
I wanted to know how to convert this to a logical scalar value and also use this similar scalar value in the WritePWMVoltage function for the Arudino.
I am new to MATLAB and would really appreciate the help!!
0 commentaires
Réponses (2)
Pranav Verma
le 11 Nov 2020
Hi Dechao,
In line 102, you are accessing the index using 'i' in PIDGLg after incrementing it. So in the last iteration, the index will go out of bounds. You can try incrementing 'i' (Line 94) at the end of the loop instead.
Thanks
0 commentaires
Daniel Velazquez
le 6 Juil 2021
How about doing this PID with Simulink? You would still use the Arduino board
Attached is the example
0 commentaires
Voir également
Catégories
En savoir plus sur Arduino Hardware dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!