No appropriate method, property, or field 'analogRead' for class 'arduino'.

5 views (last 30 days)
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

Answers (2)

Walter Roberson
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
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:
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.

Sign in to comment.


Manohar Patel
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.

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!