Super Easy Way To Control Servo Motor With Arduino

About the project

In this tutorial we will use Servo Motor and Arduino UNO, and Visuino to control servo motor degree position

Project info

Difficulty: Easy

Platforms: ArduinoVisuino

Estimated time: 1 hour

License: GNU General Public License, version 3 or later (GPL3+)

Items used in this project

Hardware components

Jumper wires (generic) Jumper wires (generic) x 1
Arduino UNO Arduino UNO x 1
SG90 Micro-servo motor SG90 Micro-servo motor x 1

Software apps and online services

Visuino Visuino
Arduino IDE Arduino IDE

Story

In this tutorial we will use Servo Motor and Arduino UNO, and Visuino to control servo motor degree position using only few components thus making this project Super Simple.

Watch a demonstration video.

Step 1: What You Will Need

1 / 4

  • Arduino UNO (or any other Arduino)
  • Jumper wires
  • Servo motor
  • Visuino program: Download Visuino

Step 2: The Circuit

1 / 2

  • Connect Servo motor "Orange" pin to Arduino Digital pin[8]
  • Connect Servo motor "Red" pin to Arduino positive pin[5V]
  • Connect Servo motor "Brown" pin to Arduino negative pin[GND]

Step 3: Start Visuino, and Select the Arduino UNO Board Type

1 / 2

To start programming the Arduino, you will need to have the Arduino IDE installed from here: https://www.arduino.cc/.

Please be aware that there are some critical bugs in Arduino IDE 1.6.6. Make sure that you install 1.6.7 or higher, otherwise this tutorial will not work! If you have not done follow the steps in this tutorial to setup the Arduino IDE to program Arduino UNO! The Visuino: https://www.visuino.eu also needs to be installed. Start Visuino as shown in the first picture Click on the "Tools" button on the Arduino component (Picture 1) in Visuino When the dialog appears, select "Arduino UNO" as shown on Picture 2

Step 4: In Visuino Add Components

  • Add "Sequence" component
  • Add "Analog Value" component
  • Add "Divide Analog By Value" component
  • Add "Servo" component

Step 5: In Visuino Set Components

1 / 2

Select "Sequence1" component, double click on it. In the "Elements" Dialog:

Drag 5X "Period" element to the left.

  • Select "Period1" element and under properties window set "Delay" to "1000"
  • Select "Period2" element and under properties window set "Delay" to "2000"
  • Select "Period3" element and under properties window set "Delay" to "3000"
  • Select "Period4" element and under properties window set "Delay" to "4000"
  • Select "Period5" element and under properties window set "Delay" to "5000" >>this one will be used just for a pause at the end.

Now lets set Degrees for the servo motor:Select "AnalogValue1" component, double click on it. In the "Elements" Dialog:

Drag 4X "Set Value" element to the left.

  • Select "Set Value1" component and under properties window set "Value" to "0"
  • Select "Set Value2" component and under properties window set "Value" to "60"
  • Select "Set Value3" component and under properties window set "Value" to "120"
  • Select "Set Value4" component and under properties window set "Value" to "180"

Select "DivideByValue1" component and under properties window set "value" to "180"

Step 6: In Visuino Connect Components

  • Connect "Sequence1">Period1 pin [Out] to "AnalogValue1" pin [Set Value 1]
  • Connect "Sequence2">Period1 pin [Out] to"AnalogValue1" pin [Set Value 2]
  • Connect "Sequence3">Period1 pin [Out] to "AnalogValue1" pin [Set Value 3]
  • Connect "Sequence4">Period1 pin [Out] to "AnalogValue1" pin [Set Value 4]
  • Connect "AnalogValue1" pin [Out] to "DivideByValue1" pin [In]
  • Connect "DivideByValue1" pin [Out] to "Servo1" pin [In]
  • Connect "Servo1" pin [Out] to Arduino digital pin [8]

Step 7: Generate, Compile, and Upload the Arduino Code

In Visuino, at the bottom click on the "Build" Tab, make sure the correct port is selected, then click on the "Compile/Build and Upload" button.

Step 8: Play

If you power the Arduino UNO module, the Servo motor will start to move according to the degrees you set.

Congratulations! You have completed your project with Visuino. Also attached is the Visuino project, that I created for this tutorial. You can download and open it in Visuino: https://www.visuino.eu

Schematics, diagrams and documents

Visuino File

Code

Visuino File

Credits

Photo of Ron

Ron

Arduino Developer

   

Leave your feedback...