No appropriate method, property, or field 'analogRead' for class 'arduino'.
5 views (last 30 days)
Show older comments
I connect my arduion to matlab and everything is fine but when I tried to read the values that is come from LM32 sensor which I connect to port A0 by using analogRead(a,0) I get this error No appropriate method, property, or field 'analogRead' for class 'arduino'. **I am using matlab 2015 a
0 Comments
Answers (2)
Walter Roberson
on 18 May 2015
analogRead() needs to be done in the code on the arduino side, not on the MATLAB side. See some sample code
5 Comments
Walter Roberson
on 19 May 2015
The LM32 does not output analog signals. The LM32 outputs digital signals on its SWD pin. The Master (arduino in this case) must signal the LM32 that it wants to read, and there is a protocol. See http://pdf.datasheetcatalog.com/datasheet2/a/0s6d7g5uzse6i36klqax64y9lcpy.pdf
I would suggest that what you were looking at was instructions for an LM35 sensor, as LM35 sensors encode their readings as voltage outputs.
There is a possibility that one of these will be of assistance to you:
- http://www.hacktronics.com/Tutorials/arduino-1-wire-tutorial.html
- http://playground.arduino.cc/Learning/OneWire
Before I do any more research, please confirm that you are using an LM32 Temperature Sensor, from National Semiconductor. There are a number of different temperature sensors from different manufacturers and will similar names, but which have quite different interfaces.
Walter Roberson
on 9 Apr 2018
It turns out that analogRead() did exist, but it was for the Legacy arduino package. https://www.mathworks.com/matlabcentral/fileexchange/32374-legacy-matlab-and-simulink-support-for-arduino
Manohar Patel
on 19 Oct 2018
Edited: Manohar Patel
on 19 Oct 2018
Hii @Mohammed Al-Mostafa your error is "No appropriate method, property, or field 'analogRead' for class 'arduino'". please 'analogRead' swap with 'readVoltage'. because some attributes are change in matlab2015.
0 Comments
See Also
Categories
Find more on MATLAB Support Package for Arduino Hardware in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!