Simulink arduino library missing analog input as digital output block

1 view (last 30 days)
Hi,
I need to use Arduino analog input pins A2 and A3 as digital output, which is possible in Uno (https://www.arduino.cc/reference/en/language/functions/digital-io/digitalwrite/). This is so that I could accommodate the MCP4725 DAC breakout board https://learn.sparkfun.com/tutorials/mcp4725-digital-to-analog-converter-hookup-guide. However, the Simulink Arduino library only has digital output block for digital pins. Please advise. Thanks.

Accepted Answer

Bhaskar Vundurthy
Bhaskar Vundurthy on 9 Jan 2020
As of 2019b, the digital output block can only handle the digital output pins (D0-D13). Any value greater than 13, representing A0-A5, throws an error during build.
The analog pins A0-A5 are however accessible via MATLAB.
a = arduino();
writeDigitalPin(a, 'A0', 1);

More Answers (0)

Categories

Find more on Arduino Hardware in Help Center and File Exchange

Products


Release

R2019a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!