Introduction: ESP8266 and Visuino: Control Servo Remotely Over Wi-Fi With Rotary Encoder
ESP8266 modules are great low cost stand alone controllers with built in Wi-Fi. In this Instructable I will show you how you can control a Servo remotely over Wi-Fi with a Rotary Encoder. The Instructable is a similar but more advanced version of the "Arduino Nano and Visuino: Control Servo with Rotary Encoder" Instructable.
In the Instructable, I will use 2 NodeMCUmodules. One version 0.9, and the other 1.0. The NodeMCU are the easiest way to program and experiment with ESP8266controllers. This Instructable however can easily be done with other modules, and the Servo module can even use ESP-01 module as it needs only one GPIO pin to connect to the Servo.
Step 1: Components
- 2 NodeMCU ESP8266 boards (I used both NodeMCU 0.9, and NodeMCU 1.0 versions, but any other combination, or even stand alone ESP-12 will work)
- One Rotary Encoder module I got from this cheap 37 sensors set.
- 1 Small Servo
- 8 Female-Female jumper wires
- 3 Male-Female jumper wires
Step 2: Connect the Rotary Encouder to the First NodeMCU ESP8266 Module
- Connect Ground(Black wire), Power(Red wire), Direction(Green wire), Clock(Yellow wire), and Switch wire(White wire) to the Rotary Encoder Module (Picture 1)
- Connect the other end of the Ground wire(Black wire) to Ground pin of the ESP8266 NodeMCU module(Picture 2)
- Connect the other end of the Power wire(Red wire) to the 3.3V power pin of the ESP8266 NodeMCU module(Picture 2)
- Connect the Clock wire(Yellow wire) to Digital pin 2 of the ESP8266 NodeMCU module(Picture 3)
- Connect the Direction wire(Green wire) to Digital pin 3 of the ESP8266 NodeMCU module(Picture 3)
- Connect the Switch wire(White wire) to Digital pin 4 of the ESP8266 NodeMCU module(Picture 3)
- Picture 4 shows where are the Ground, 3.3V Power, Digital 2, Digital 3, and Digital 4 pins of the NodeMCU 1.0
Step 3: Connect the Servo to the Second NodeMCU ESP8266 Module
To simplify this Instructable, we will connect the Power from the NodeMCU to the Servo, In real projects, you will need to have a dedicated power supply for the servo! Please look at this Instructable to see how you can connect the Servo to external power.
- Connect Ground(Black wire),Power(Red wire), and Control(Orange wire) to the Servo (Picture 1)
- Connect the other end of the Power wire(Red wire) to the 5V(Called "Vin" in NodeMCU version 1.0) Power pin of the ESP8266 NodeMCU module (Picture 2)
- Connect the other end of the Ground wire(Black wire) to the Ground pin of the ESP8266 NodeMCU module (Picture 2)
- Connect the other end of the Control wire(Orange wire) to the Digital pin 2 of the ESP8266 NodeMCU module (Picture 3)
- Picture 4 shows where are the Ground, 5V(Vin) Power, and Digital 2 pins of the NodeMCU 0.9
Step 4: Start Visuino, and Select the ESP8266 Board Type
To start programming the Arduino, you will need to have the Arduino IDE installed from here: http://www.arduino.cc.
Make sure that you install 1.6.7 or higher, otherwise this Instructable will not work!
If you have not done follow the steps in this Instructable to setup the Arduino IDE to program ESP 8266!
The Visuino: https://www.visuino.com also needs to be installed.
Step 5: In Visuino: Setup the Module As Access Point
- In the Object Inspector, expand the "Modules" property, then the "WiFi" sub property, then the "AccessPoint: sub property (Picture 1)
- Set the value of the "SSID" sub property of the "AccessPoint", to “ServoRemote” (Picture 1)
To make sure the Access Point will be on the 200.200.200.X subnet, we need to assign a fixed address.
- In the Object Inspector, expand the "Config" sub property of the "AccessPoint" property (Picture 2)
- Set the value of the “Enabled” sub property of the Config to “True” (Picture 2)
- Set the value of the “IP” sub property to "200.200.200.100" (Picture 3)
Step 6: In Visuino: Add an UDP Socket for the Communication
Next we need to add an UDP socket for the communication.
- In the Object Inspector, click on the "..." button next to the value of the "Sockets" sub property of the "WiFi" property (Picture 1)
- In the Sockets editor select “UDP Socket”, and then click on the "+" button (Picture 2)
- In the Object Inspector, set the value “RemoteIPAddress” property to “200.200.200.200” (Picture 3) – this is the fixed IP address that we will assign to the other module later on
- In the Object Inspector set the value of the “RemotePort” to “8888” (Picture 4)
- Close the "Sockets" editor.
Step 7: In Visuino: Add and Connect Rotary Encoder Component
- Type "rotar" in the Filter box of the Component Toolbox then select the "Rotary Encoder Sensor" component (Picture 1), and drop it in the design area
- Connect the "Out" pin of the Digital[ 2 ] channel of the "NodeMCU ESP-12"component to the "Clock(A)" pin of the RotaryEncoderSensor1 (Picture 2)
- Connect the "Out" pin of the Digital[ 3 ] channel of the
"NodeMCU ESP-12"
component to the "Direction(B)" pin of the RotaryEncoderSensor1 (Picture 3)
Step 8: In Visuino: Add and Connect Up/Down Counter Component
We need a counter to count the Up/Down rotations from 0 to 100, and we need to set in in the middle/neutral 50:
- Type "count" in the Filter box of the Component Toolbox then select the "Up/Down Counter" component (Picture 1), and drop it in the design area
- In the Object Inspector set the value of the InitialValue property to 50 (Picture 2)
- In the Object Inspector expand the Counter's Min property
- In the Object Inspector set the value of the RollOver sub property to False (Picture 3)
In the Object Inspector set the
value of theValue sub property to 0 (Picture 3)- In the Object Inspector expand the Counter's Max property(Picture 5)
In the Object Inspector set the
value of theRollOver sub property to False(Picture 5)
- In the Object Inspector set the value of the Value sub property to 100 (Picture 6)
Step 9: In Visuino: Connect the Up/Down Counter Component
- Connect the "Down" pin of the RotaryEncoderSensor1 component to the "Down" pin of the UpDownCounter1 component (Picture 1)
- Connect the "Up" pin of the RotaryEncoderSensor1 component to the "Up" pin of the UpDownCounter1 component (Picture 2)
- Connect the "Out" pin of the" Digital[ 4 ]" channel of the "NodeMCU ESP-12" component to the "Reset" pin of the UpDownCounter1 (Picture 3)
The Rotary encoder module switch that I have does not have pull up resistor. The ESP8266 however has built-in optional pull-up resistors for the pins. To enable the pull-up resistor for the Digital pin 4:
- In the Object Inspector expand the "Digital" property, then the "Digital[ 4 ]" sub property (Picture 4)
- In the Object Inspector set the value of the IsPullUp sub property to True (Picture 4)
Step 10: In Visuino: Add and Connect Integer to Analog Component
The servo needs analog value in the range between 0 and 1.0, so we need to convert the count to Analog and multiply it by 0.01 to convert the 0 to 100 range into Analog 0 to 1.0:
- Type "To Analo" in the Filter box of the Component Toolbox then select the "Integer To Analog" component (Picture 1), and drop it in the design area
- In the Object Inspector set the Scale property to 0.01 (Picture 2) . This will convert the counter values from the integer range of 0 to 100, to the analog range of 0.0 to 1.0.
- Connect the "Out" pin of the UpDownCounter1 to the "In" pin of the IntegerToAnalog1 component (Picture 3)
Step 11: In Visuino: Add and Make Structure Component, and Add Analog Channel to It
We need to send the analog value over the UDP. To do that we will make a structure with analog value and will send it over the UDP socket.
- Type "make" in the Filter box of the Component Toolbox then select the "Make Structure" component (Picture 1), and drop it in the design area
- Click on the "Tools" button (Picture 2) to open the "Elements" editor (Picture 3)
- In the "Elements" editor select the “Analog” element, and then clickon the "+" button (Picture 3) to add an Analog element (Picture 4)
- Close the "Elements" editor.
Step 12: In Visuino: Connect the Make Structure Component
- Connect the “Out” pin of the MakeStructure1 component to the “In” pin of the "Modules.WiFi.Sockets.UDPSocket1” of the “NodeMCU ESP-12” component (Picture 3)
- Connect the the “In” pin of the “Elements.Analog1” element of the MakeStructure1 component to the "Out" pin of the IntegerToAnalog1 component (Picture 3)
Step 13: Generate, Compile, and Upload the ESP8266 Code for the Rotary Encoder Module
- In Visuino, Press F9 or click on the button shown on Picture 1 to generate the Arduino code, and open the Arduino IDE
- Connect the first NodeMCU module (The one with the Rotary Encoder) with USB cable to the computer
- Select the board type and serial port as I have shown you in this Inctructable
- Make sure you have installed the latest staging version of the ESP support! The stable release does not have some of the latest features, and you will have errors when you try to compile!
- In the Arduino IDE, click on the Upload button, to compile and upload the code (Picture 2)
Step 14: in Visuino: Select the ESP8266 Board Type, and Configure It to Connect to the Access Point
Now lets program the Servo module.
- Start new project.
- Click on the "Tools" button on the Arduino component, and when the dialog appears, select "NodeMCU ESP-12" as you did in Step 4 for the Rotary Encoder module
Next we need to configure the module to connect to the Access Point of the Thermometer module, and use a fixed IP Address of 200.200.200.200
- In the Object Inspector, expand the “Modules” property, then the “WiFi” sub property, then the “AccessPoints” sub property, and click on the "..." button next to its value (Picture 1)
- In the "AccessPoins" editor, select “WiFi Access Point”, and then click on the "+" button to add the access point (Picture 2)
- In the Object Inspector, set the value of the "SSID" property to “ServoRemote” (Picture 3)
- In the Object Inspector, expand the “Config” property, and set the value of the “Enabled” sub property to “True” (Picture 4)
- In the Object Inspector, set the value of the “IP” sub property to “200.200.200.200” (Picture 5)
Step 15: In Visuino: Add an UDP Socket for the Communication
Next we need to add an UDP socket for the communication.
- In the Object Inspector, click on the "..." button next to the value of the Sockets sub property of the WiFi (Picture 1)
- In the Sockets editor select “UDP Socket”, and then click on the "+" button (Picture 2)
- In the Object Inspector, set the value “RemoteIPAddress” property to “200.200.200.200” (Picture 3)
- In the Object Inspector set the value of the “Port” to “8888” (Picture 4)
Step 16: In Visuino: Add Split Structure Component, and Add Analog Channel to It
The Remote Control module sends the servo position in binary floating point form as a packet. We need to decode it properly. For this we need a “Split Structure” component with “Analog” element in it.
- Type "struct" in the Filter box of the Component Toolbox then select the "Split Structure" component (Picture 1), and drop it in the design area
- Click on the "Tools" button (Picture 2) to open the Elements editor (Picture 3)
- In the "Elements" editor select the “Analog” element, and then click on the "+" button (Picture 3) to add an Analog element (Picture 4)
- Close the Elements editor.
Step 17: In Visuino: Add and Connect Servo Component
- Type "servo" in the Filter box of the Component Toolbox then select the "Servo" component (Picture 1), and drop it in the design area
- Connect the "Out" pin of the Servo1 component to the "Digital" input pin of Digital[ 2 ] channel of the Arduino component (Picture 2)
- Connect the "In" pin of the Servo1 component (Picture 3) to the "Out" pin of the "Elements.Analog1" of the SplitStructure1 component (Picture 4)
Step 18: Generate, Compile, and Upload the ESP8266 Code for the Servo
- In Visuino, Press F9 or click on the button shown on Picture 1 to generate the Arduino code, and open the Arduino IDE
- Connect the second NodeMCU module (The one with the Servo) with USB cable to the computer
- Select the board type and serial port as I have shown you in this Inctructable
- In the Arduino IDE, click on the Upload button, to compile and upload the code (Picture 2)
Step 19: And Play...
Congratulations! You have completed the project.
Picture 1 shows the connected and powered up project.
If you rotate the Rotary Encoder back and forth, the Servo will move in the same direction, as you can see in the video. If you press the Rotary Encoder shaft down, the Servo will move to neutral center position.
On Picture 2 you can see the complete Visuino diagram for the Rotary Encoder Remote Control module.
On Picture 3 you can see the complete Visuino diagram for the Servo module.
Also attached are the Visuino projects, that I created for this Instructable. You can download and open them in Visuino: https://www.visuino.com
Attachments

Participated in the
Digital Life 101 Challenge
11 Comments
Question 2 years ago on Step 19
Thanks for the hard work! Any chance of you send me or post the arduino sketch?
3 years ago
I'm having a hard time getting this to work with the latest version of Visuino. The sketch files do not seem to import the socket/ or other wifi settings, nor do they select the correct board. Does a default board need to be set up in Visuino before opening the files? I've recreated the files myself to no avail. Very cool project and amazing program! Thank you.
7 years ago
Nice work again :) I joined the visuino group, but I wanted to ask you in this site if there is an "easy" way to let this connection go through a wifi router, and assign ports for the ESP units so it would be possible to access from outside the local network?
Reply 7 years ago
Thank you!
It is easy to do, and I will make Instructable on this too ;-)
All you need to do is for the module that you want to connect to the outside, to add in the AccessPoints the SSID and Password of the hotspot to which you want it to connect, and you are done :-)
Reply 6 years ago
hi,
could you tell me please, does this mean that, we can control the unit from outside the local network? what i need is an wi-fi on-off servo which is located- let say in wifi zone A, while our rotaryis in wi-fi zoneB (in another wi-fi zone) is it possible to make it?
thanks
Reply 6 years ago
This demo uses UDP. If UDP packets are routed, then yes, you can control it. Otherwise you will need to change the project a bit to use TCP/IP packets.
Reply 7 years ago
That would be fantastic ;)
I have spent most of the day to play around in Visuino, and I like it better and better.
Right now, I am trying all of your Instructables made in Visuino, and trying to learn about how to connect things to the board. Idont just open your file, but I make the code myself ,following your Instructions. I struggle most to connect 2 things together at the same time. As a 180 Barometer ,and a I2C LCD, and get it to show the wanted value in both the serial window, and on the display. But it will come...eventually... ;)
Hope there will be some sort of manual or other reference about all the gadgets inside the Visuino, and how to connect together.
Right now, I really want to connect a lot together, but I dont know how.. ! I mix up the inputs and outputs, and some of the connections I think will work, do not in the way it was planned.
Looking forward to the next Instructable :) This is very exiting..!
Kjetil
7 years ago
I have an Arduino Uno , and the servo has 3 Pins only, and they are PWM, Vcc and GND. How do I go about connecting them to Node MCU.
Reply 7 years ago
See Step 3.
The Orange wire is the PWM, the Red is the Power, and the Black is Ground.
So PWM goes to Pin D2 ;-)
7 years ago
Thank You! This is the most illuminating program, you are talented. Sub.
Reply 7 years ago
Thank you! Enjoy :-)