Beantwortet
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...

fast 5 Jahre vor | 0

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

fast 5 Jahre vor | 1

Beantwortet
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...

fast 5 Jahre vor | 0

Beantwortet
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...

fast 5 Jahre vor | 0

Beantwortet
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...

fast 5 Jahre vor | 0

Beantwortet
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 ...

fast 5 Jahre vor | 0

Beantwortet
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...

fast 5 Jahre vor | 0

Beantwortet
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...

fast 5 Jahre vor | 0

Beantwortet
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...

etwa 5 Jahre vor | 0

Beantwortet
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...

etwa 5 Jahre vor | 1

Beantwortet
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. ...

etwa 5 Jahre vor | 1

| akzeptiert

Beantwortet
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,...

etwa 5 Jahre vor | 0

| akzeptiert

Gelöst


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

mehr als 5 Jahre vor

Gelöst


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

mehr als 5 Jahre vor

Gelöst


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

mehr als 5 Jahre vor

Gelöst


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

mehr als 5 Jahre vor

Gelöst


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

mehr als 5 Jahre vor

Gelöst


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

mehr als 5 Jahre vor