Controlling Nanotec N5 motor controller using matlab webread and webwrite commands
조회 수: 1 (최근 30일)
이전 댓글 표시
I am using Nanotec N5 motor controller that is shipped with a built in web interface called NanoIP.
Using this interface I can query data from the controller object dictionary using webread. For example
>> webread('http://169.254.58.57/od/6060/00')
ans =
02
Now I would like to write values as well, however, each time I try I fail and get an error messages. For example if I input the data as characters:
>> webwrite('http://169.254.58.57/od/6060/00','01')
I get this error:
Error using readContentFromWebService (line 45)
The server returned the status 400 with message "BAD REQUEST" in response to the request to URL http://169.254.58.57/od/6060/00.
Error in webwrite (line 132)
[varargout{1:nargout}] = readContentFromWebService(connection, options);
and if I input data as numbers:
>> webwrite('http://169.254.58.57/od/6060/00',1)
I get this error:
Error using webwrite (line 126)
The media type 'application/x-www-form-urlencoded' is not permissible for numeric or logical data.
Am I doing something wrong here? Should I use different data type?
댓글 수: 0
답변 (1개)
Mohammad Moataz
2019년 1월 28일
댓글 수: 2
Chris
2020년 12월 2일
Hello,
firstly thanks for your information’s! They are really helpful for me! I use the Nanotec controller N5-2-3 and the function "webread" works fine but for "webwrite" I always get an error "Time out after 5 seconds". I try a lot of things e.g. change the header but the problem still existed. May you have an idea?
Thanks a lost!
커뮤니티
더 많은 답변 보기: Power Electronics Community
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!