matlab error while trying to connect servo motor through arduino
1 回表示 (過去 30 日間)
古いコメントを表示
if true
a = arduino('com24', 'uno', 'Libraries', 'Servo');
s = servo(a, 'D8')
end
when i run this code i get an error Invalid pin format. Pin number must be a scalar integer.
i am using r2014a version.
Pls help me solve this error
2 件のコメント
回答 (2 件)
Duaner
2016 年 7 月 2 日
I had the same error when trying to read voltage output readVoltage(a,'A1') Invalid pin format. Pin number must be a scalar integer. after messing around i found this to work: readVoltage(a,1)
ans =
4.9951
PRIYA RANJAN PATTANAIK
2017 年 3 月 4 日
編集済み: PRIYA RANJAN PATTANAIK
2017 年 3 月 4 日
Try s = servo(a, 8)
0 件のコメント
コミュニティ
その他の回答 パワー エレクトロニクス コミュニティ
参考
カテゴリ
Help Center および File Exchange で Servo Motors についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!