Answered
How can I read the button state of a joystick (ARD-358) using Arduino with Simulink?
Hi, The only difference between your arduino sketch and the generated code is the the pin configuration. With arduino sketch, t...

4 years ago | 0

Answered
Arduino Interrupts
Hi, You can use the following block to implement ISR for external interrupts: https://in.mathworks.com/help/supportpkg/arduino...

4 years ago | 1

Answered
Read and Write CAN protocol messages using SPI through an Arduino Uno
Hi, Support for sending and receiving CAN messages from Arduino using MCP2515 is available in R2019b. Use these blocks to se...

4 years ago | 0

Answered
Adding delay between serial packets while programming through simulink.
Hi, You can add delay by changing Sample time of the source block. In your case, the source block is "Constant" block. If you c...

4 years ago | 0

Answered
how to change the default frequency of aurdiuno pwm block of simulink support package for aurdiuno?
Hi, Use this library to change the PWM frequency on arduino: https://in.mathworks.com/matlabcentral/fileexchange/62702-renss...

4 years ago | 0

Answered
Using Servo Block with Simulink IO
Hi Jeff, With Simulink IO, it is not possible to change the PWM frequency. But for changing PWM frequency in external mode or ...

4 years ago | 0

Answered
BNO055 Usage Problem | Serial Read Problem
Try this workaround: https://in.mathworks.com/matlabcentral/answers/345567-why-am-i-unable-to-connect-to-arduino-in-external-mo...

4 years ago | 0

Answered
Mismatches in acquired digital signal in Simulink using Arduino Due
Hi, I think the issue is due to the operating voltages. Due is ARM based board and works at 3.3V while Uno(and other AVR boar...

4 years ago | 0

Answered
Simulink S-Function MPU6050
Hi Philip Harris, Simulink external mode uses arduino Serial port 0 to communicate with the target. In the example, the targe...

5 years ago | 0

Answered
Simulink support for Arduino receiving radio frequency
Hi Kiat Nern Yeo, As such there is no support for RF shields but you can easily create device driver for the shield in MATLAB...

5 years ago | 1

Answered
How to plot the real time data from arduino?
Hi Tommy, Your observation is correct. When you do a=arduino, an arduino server is built and is deployed to the hardware. ...

5 years ago | 1

| accepted

Answered
HSC pressure sensors via SPI Arduino
Hi Viacheslav, What I understood from your question is that you want to read data from a SPI device using arduino. To do this,...

5 years ago | 0

| accepted

Solved


Find the sum of all the numbers of the input vector
Find the sum of all the numbers of the input vector x. Examples: Input x = [1 2 3 5] Output y is 11 Input x ...

5 years ago

Solved


Select every other element of a vector
Write a function which returns every other element of the vector passed in. That is, it returns the all odd-numbered elements, s...

5 years ago

Solved


Determine if input is odd
Given the input n, return true if n is odd or false if n is even.

5 years ago

Solved


Add two numbers
Given a and b, return the sum a+b in c.

5 years ago

Solved


Times 2 - START HERE
Try out this test problem first. Given the variable x as your input, multiply it by two and put the result in y. Examples:...

5 years ago

Solved


Make the vector [1 2 3 4 5 6 7 8 9 10]
In MATLAB, you create a vector by enclosing the elements in square brackets like so: x = [1 2 3 4] Commas are optional, s...

5 years ago