VISUINO Display Live Forex Currency Price From Internet
by RonFrtek in Circuits > Arduino
1417 Views, 5 Favorites, 0 Comments
VISUINO Display Live Forex Currency Price From Internet
In this tutorial we will use NodeMCU Mini, OLED Lcd, and Visuino to display live currency price EUR/USD every few seconds from the internet on LCD. Watch a demonstration video.
What You Will Need
All the modules are from makerfabs. They have the best quality modules that are Light-years ahead the competition, also with best affordable prices.
- NodeMCU Mini
- OLED Lcd
- Breadboard
- Jumper wires
- Visuino program: Download Visuino
The Circuit
- Connect GND from NodeMCU to breadboard pin (gnd)
- Connect 5V pin from NodeMCU to breadboard pin (positive)
- Connect pin 0 (SCL) from NodeMCU to OLED LCD pin (SCL)
- Connect pin 1 (SDA) from NodeMCU to OLED LCD pin (SDA)
- Connect OLED LCD pin (VCC) to breadboard pin (positive)
- Connect OLED LCD pin (GND) to breadboard pin (GND)
Start Visuino, and Select the NodeMCU ESP-12
To start programming the Arduino, you will need to have the Arduino IDE installed from here: http://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 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 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 "NodeMCU ESP-12" as shown on Picture 2
WiFi Setup
- Select NodeMCU ESP-12 and in the editor Modules>WiFi>Access Points, click on [...] button, so that "Access points " window will open.
In this editor drag the WiFi access point to the left side.
- Under "SSID" put the name of your WiFi Network
- Under "Password" put the access password for your WiFi network
Close the "Access points" window
On the left in editor select Modules>Wifi>Sockets, click on [...] button, so that "Sockets" window will open
Drag the TCP Client from right to the left side
Under Properties window set port: 80
In Visuino Add Components
- Add "And" logic component
- Add "Remember Text" component
- Add "Text Length" component
- Add 2x "Compare Value" component
- Add "Delete Right Text" component
- Add "Delete Left Text" component
- Add "Replace Text" component
- Add "Pulse Generator" component
- Add "Formatted Text" component
- Add "Char To Text" component
- Add "Display OLED" I2C component
In Visuino: ​Connecting Components
- Connect "And1" pin [Out] to RememberText1 pin [Remember] and pin [Recall]
- Connect "And1" pin [0] to "CompareValue2" pin [Out]
- Connect "And1" pin [1] to "CompareValue1" pin [Out]
- Connect TextLength1 pin [Out] to CompareValue1 pin [In] and CompareValue2 pin [In]
- Connect "DeleteRightText1" pin [In] to CharToText1 pin [Out]
- also connect CharToText1 pin [Out] to NodeMCU serial[0] pin [In]
- Connect "DeleteRightText1" pin [Out] to DeleteLeftText1 pin [In]
- Connect DeleteLeftText1 pin [Out] to ReplaceText1 pin [In]
- Connect ReplaceText1 pin [Out] to RememberText1 pin [In]
- Connect RememberText1 pin [Out] to DisplayOLED1 > Text Field >pin [in]
- Connect DisplayOLED1 pin [Out] to NodeMCU ESP-12 I2C pin [In]
- Connect PulseGenerator1 pin [Out] to FormattedText1 pin [Clock]
- Connect FormattedText1 pin [Out] to NodeMCU ESP-12 > Modules WiFi Sockets TCP Client1> Pin[In]
- Connect NodeMCU ESP-12 > Modules WiFi Sockets TCP Client1> Pin[Out] to CharToText1 pin [In]
Generate, Compile, and Upload the Arduino Code
In Visuino, Press F9 or click on the button shown on Picture 1 to generate the Arduino code, and open the Arduino IDE
In the Arduino IDE, click on the Upload button, to compile and upload the code (Picture 2)
Play
If you power the NodeMCU module, the OLED Lcd will start showing the current price of EUR/USD.
Congratulations! You have completed your Live Forex Price project with Visuino. Also attached is the Visuino project, that I created for this Instructable. You can download and open it in Visuino: Download link
Downloads
In Visuino: Component Settings
- CompareValue1: In property editor set "Value":3, and Only Changed:True, and "CompareType":ctBigger
- CompareValue2: In property editor set "Value":8, and Only Changed:False, and "CompareType":ctSmaller
- DeleteRightText1 in property editor set "Length":931
- DeleteLeftText1 in property editor set "Length":53
- ReplaceText1 in property editor set "From Value": </td><td>
- PulseGenerator1 in property editor set "Frequency":1
- CharToText1 in property editor set "Max Length":1000, and "Truncate": False, and "Update on each char":False
- DisplayOLED1 > Double click>
- in editor drag "Text Field" to the left and set in properties window "Size":2, and "Y":50
- in editor drag "Draw Text" to the left and set in properties window "Text":EUR/USD, and "Size":2
- FormattedText1 in property editor under "Text" click "..." and add this text:
GET http://webrates.truefx.com/rates/connect.html?f=h... HTTP/1.1
Accept: text/html
Accept-Charset: utf-8
Accept-Language: en-US,en;q=0.7,sl;q=0.3
Host: webrates.truefx.com
DNT: 1