In this tutorial you will learn various ways to control a Servo Motor using Simulink and Arduino. This tutorial can be helpful for learning mathematical modeling, algorithm development and arduino code for motor generation where servo motor is used. In order to drive a servo motor, signal is required. Here we illustrate how you can use various signal generators like Pulse generator, Repeating sequence, Sine Wave in Simulink and Potentiometer to control a servo motor in real time.
A servo motor is basically a DC motor with gear, shaft and arm whose angle can be precisely controlled. Hence it is used in application area where precise position of motor arm is important. Servo motors are used in robotics, industrial and manufacturing automation etc.
Simulink is Matlab software based graphical programming language where you can use mathematical component with hardware blocks to create dynamical model of systems and simulate, view outputs and tune parameters. With Simulink Support Package for Arduino Hardware library you can use Arduino hardware blocks to design a model, test algorithms, simulate in real time with real world data, generate graph based arduino code for motor and then program Arduino.
Configuring Simulink Modeling Environment for Arduino Simulation
A. Install Simulink Support Package for Arduino Hardware
To model and program Arduino control of Servo Motors using Simulink, you need to first install Simulink Support Package for Arduino Hardware. How to install this package is explained in the Programming Arduino using Matlab/Simulink Setup tutorial.
Once you have the the library installed, create a new simulink model, open the library browser and go to the Simulink Support Package for Arduino Hardware. Within it go to the common library section and you will see various hardware blocks supported by simulink for arduino. In this tutorial we will mainly using the Standard Servo Write block, Analog Input block and the PWM block.
B. Sources and Sinks
We will also be using various inputs blocks like Pulse Generator block, Repeating Sequence block, Sine wave generator block which you can find in the Simlink > Sources section in the simulink library as shown below.
C. Hardware Setting/ Arduino Board Configuration
To run/deploy the simulink model onto the Arduino, you have to configure the which Arduino board you are going to use and what COM port your Arduino board is connected to. For this go to the HARDWARE Tab, then double click on the Hardware Settings. In the window that pops up, select Hardware Implementation and then select the Hardware Board you want to use. In this tutorial we are using Arduino Uno. After selecting the board, click on the Target hardware resources and set the COM port number to which your board is connected in the Host-board connection option. In our case as shown in the figure below, the Host-board connection > Set host COM port is set to Automatically. If any error occurs regarding COM port connection, check this setting. You can also optionally set the COM port manually.
Example 1: Servo motor control using Pulse Generator
The first example of controlling a Servo Motor is using the Pulse Generator block. As already mentioned the Pulse Generator block is found in Simulink> Sources in the simulink library.
Servo Motor Simulink Model
Create a new simulink model, save it with some name and place the Pulse Generator block into the model. Also place the Standard Servo Write block found in Simulink Support Package for Arduino Hardware > Common library section and the Time Scope and Display blocks found in Simulink>Sinks library into the newly created model. Then interconnect the blocks and create the servo simulink model as shown in the figure below.
Configure the Pulse Generator as shown in the picture below.
The pulse we generated is of amplitude 180 degree, with period of 10 samples and pulse width of 5 samples. The sample time is 0.1 seconds. Hence in terms of time, the period is 10 samples*0.1 seconds/samples = 1 second and pulse width is half the pulse period so the pulse width is 0.5 seconds.
Interfacing Arduino with Servo Motor
Before you start the simulation, the Arduino and the Servo motor should be connected. This is as shown in the figure below. The ground and power supply pin of the Servo Motor should be connected to the ground and +5V of the Arduino UNO. The signal pin of the Servo Motor should be connected to the digital PWM pin 10 of the Arduino UNO.
Simulation and Code Deployment to Arduino
Monitor & Tune
To start servo motor simulation in real time without deploying permanently the program code into Arduino Board you can use the Monitor & Tune button in the HARDWARE tap. Click on it to start the real time simulation on Arduino board.
The process of building the model, initialization process internal to simulink will start. A code generation report for the model will be made available by simulink like the one shown below.
You should also see the Diagnostics report generated by simulink.
Once the simulation starts running, you should see the Servo Motor arm rotating. Following video demonstrates real time simulation of servo motor control with Arduino using Simulink graphical programming.
You should also see the Pulse signal displayed on the time scope which is shown below.
At this time, we are running simulation in real time but the program code is not deployed permanently into Arduino board. So at this time you can make changes in your model, fine tune any parameters like pulse width or period in your model.
Build, Deploy & Start
After you are satisfied with the algorithm model, the next step is to deploy the program into Arduino board. Once you click on the build button button Malab/Simulink will automatically generate arduino code for motor from the graph. The deployment of the code generated by simulink into Arduino UNO means that Arduino will control the Servo motor independently of simulink. That is the program will run even if you plug out the USB cable.
To program Arduino permanently, go to the HARDWARE tab, click on the Build, Deploy & Start button. This will start the compilation, initialization and building process and at the end the Arduino board will be programmed.
How to deploy the simulink program is shown in the following video.
Should we write code in Arduino software to run the Repeating Sequence?
no the code is automatically generated and uploaded to arduino when you click on the build, deply and start button in simulink. the repeating sequence can be produced using the suitable block. the simulink model is converted to code and uploaded into the arduino.