Updating server code on board Nano3 (COM5). Please wait. How can I solve this?
13 次查看(过去 30 天)
显示 更早的评论
Hello
When I try to connect to arduino I get this message
>> a=arduino('com5','nano')
Updating server code on board Nano3 (COM5). Please wait.
but after about 10 seconds it connect and give me the details
a =
arduino with properties:
Port: 'COM5'
Board: 'Nano3'
AvailablePins: {'D2-D13', 'A0-A7'}
Libraries: {'I2C', 'SPI', 'Servo'}
whats the problem? Because when I want to read RFID works fine, but where I then want to turn on a green led that shows the same error and stops the RFID reader then I can only turn on the light
I can not read RFID again until I do restart for the Arduino board and load the skitch again.
I tried a lot of proposed solutions but could not find a solution
2 个评论
Madhu Govindarajan
2018-8-13
Can you explain your workflow a little bit for us to be able to understand your situation better and assist?
Here are some points to clarify in the meantime -
1) When you use a = arduino, you are downloading a server sketch from MATLAB to Arduino that will make your arduino respond to a set of functions/methods. It does erase any previous sketch running on the Arduino from Arduino IDE or Simulink support for Arduino.
2) If you want to run a sketch from the Arduino IDE and still be able to communicate with MATLAB, then you must use serial communication which comes with the Instrument Control Toolbox to get full functionality.
HTH, Madhu
回答(1 个)
Madhu Govindarajan
2018-8-17
Create a serial object in MATLAB for the port you are writing data to via your Arduino Sketch. Go through this list of functions to see which one is appropriate to read the type of data you are sending-
https://www.mathworks.com/help/releases/R2018a/matlab/serial-port-devices.html
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Arduino Hardware 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!