No appropriate method, property, or field 'analogRead' for class 'arduino'.
3 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
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 Commenti
Risposte (2)
Walter Roberson
il 18 Mag 2015
analogRead() needs to be done in the code on the arduino side, not on the MATLAB side. See some sample code
5 Commenti
Walter Roberson
il 19 Mag 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
il 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
il 19 Ott 2018
Modificato: Manohar Patel
il 19 Ott 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 Commenti
Vedere anche
Categorie
Scopri di più su MATLAB Support Package for Arduino Hardware in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!