I am trying to get data from an incremental rotary encoder by using Simulink and Workspace.
Mostrar comentarios más antiguos
Hi there, I am using a incremental rotary encoder and trying to read position changes in time. I have tried several ways to do it Simulink by using memory and compare blocks but it did not work as I was expected. Then I tried the rotary encoder tutorial from MATLAB Support Package for Arduino Hardware and it worked flawlessly. After that, I decided to use the realtime Workspace data in Simulink by using simin block. Unfortunately, I couldn't find any ways to read realtime workspace data by using simin block. If there are any ways to read realtime data from workspace, or rotary encoder directly by using Simulink, that would really help me. I shared the tutorial code below.
clear all
a = arduino('COM5','Mega2560','Libraries','RotaryEncoder');
channelA = 'D2';
channelB = 'D3';
encoder = rotaryEncoder(a,channelA,channelB);
resetCount(encoder);
while(1)
count = readCount(encoder);
pos = mod(count,180);
fprintf('Current knob position: %d\n',pos);
pause(0.01);
posvar=pos;
end
3 comentarios
SCOTT HARDING
el 30 de Jul. de 2019
Editada: SCOTT HARDING
el 30 de Jul. de 2019
If this question has been answered, can you please share it? I have the same problem.
Jason Wang
el 28 de Mzo. de 2020
I have the same problem
Hasan Falah
el 2 de Mayo de 2020
I have same problem, could you please share the answar of this problem.
Respuestas (1)
Kamlesh Vaghela
el 3 de Ag. de 2018
0 votos
how to install rotaryEncoder library in matlab?
Categorías
Más información sobre Arduino Hardware en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!