implementing a matlab function in simulink to get the distance from an ultrasonic sensor
2 次查看(过去 30 天)
显示 更早的评论
I am trying to use the matlab function block in simulink to get the distance from an ultrasonic , I used the HC-SR04 Add-On Library for Arduino this was my function
function [distance,time_c] = ultrasonic(trig,echo)
a = arduino('COM13','Uno','libraries','JRodrigoTech/HCSR04');
sensor = addon(a,'JRodrigoTech/HCSR04',trig,echo);
time_c = readTravelTime(sensor);
distance = readDistance(sensor);
end
however it seems that I can't build the arduinon object inside the function how can I achive that ?
I am new to this , if you have a link that can help
0 个评论
回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Modeling 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!