DZone
IoT Zone
Thanks for visiting DZone today,
Edit Profile
  • Manage Email Subscriptions
  • How to Post to DZone
  • Article Submission Guidelines
Sign Out View Profile
  • Post an Article
  • Manage My Drafts
Over 2 million developers have joined DZone.
Log In / Join
  • Refcardz
  • Trend Reports
  • Webinars
  • Zones
  • |
    • Agile
    • AI
    • Big Data
    • Cloud
    • Database
    • DevOps
    • Integration
    • IoT
    • Java
    • Microservices
    • Open Source
    • Performance
    • Security
    • Web Dev
DZone > IoT Zone > IoT Interfaces Made Simple With Nextion, Raspberry Pi, and Ubidots

IoT Interfaces Made Simple With Nextion, Raspberry Pi, and Ubidots

Craft impressive interfaces for your IoT apps using Nextion Display. See how to get it started for either your Raspberry Pi or Arduino environments.

Mateo Velez user avatar by
Mateo Velez
·
Nov. 17, 16 · IoT Zone · Tutorial
Like (1)
Save
Tweet
4.95K Views

Join the DZone community and get the full member experience.

Join For Free

Have you heard about Nextion Display? Nextion allows you to craft awesome interfaces, even if your coding level is "hello world!". Its awesomeness doesn't end up here. It can work with Arduino and all versions of Raspberry Pi. 

This tutorial will show you how to add a Ubidots button to your Nextion Display Interface. 

Components you need

  • A Ubidots account
  • ITEAD NX4024K032_011
  • Raspberry Pi
  • Micro SD
  • Female to female wires

Description

The logic behind activating a Ubidots button in your Nextion Display is quite simple. When the button is pressed, a variable in Ubidots changes. If the button is on, the variable will have the value of 1, else 0. 

We recommend following the guide How to setup the WiFi connection of your Raspberry Pi, and also learn how to connect to it through the SSH terminal. 

Setup

  1. Download the Ubidots Nextion file.
  2. Copy the file named Nextion.HMI to the micro SD card. (The memory must not contain any other files and must be formatted to FAT32).
  3. Good. Put the micro SD card inside the Nextion micro SD port.
  4. 4.Power the Nextion display and wait  until the file is update then extract the micro SD
  5. Connect the Nextion display to the Raspberry Pi.
  6. Now, wire up your Raspberry Pi according to this table:
    Nextion display Raspberry
    5V 5V
    TX RX
    RX TX
    GND GND
  7. Turn on your Raspberry Pi and wait a few minutes until it boots up. 

Voila! Now you should get something like this:

Because the Raspberry uses TX and RX also as a way to access the shell, we need to disable this option so the Nextion can use these pins to communicate with the Raspberry. To do so, just follow these steps:

1. Connect to the Raspberry through SSH.

2. Copy and paste this in the Raspberry terminal:

sudo systemctl stop 

Well done. You shouldn't see any line about ttyAMA0 when entering this command:

ps aux | grep tty

Coding

Now we are done with the configuration needed to connect the display to the Ubidots cloud.

  • Create a python file named "display.py". 
nano display.py


  • Copy and paste the code (we are almost finished, don't worry =D). 
¿import requests
import binascii
import serial
with serial.Serial('/dev/ttyAMA0', 9600, timeout=10) as ser:
while True:
ser.flush()
respuesta = binascii.hexlify(ser.read(4)) 
if respuesta == "01000000":
r = requests.post('http://things.ubidots.com/api/v1.6/devices/DEVICE_LABEL/VARIABLE_LABEL/values?token=TOKEN', data = {'value':1})
if respuesta == "00000000":
r = requests.post('http://things.ubidots.com/api/v1.6/devices/DEVICE_LABEL/VARIABLE_LABEL/values?token=TOKEN', data = {'value':0})


  • Change the TOKEN,  the variable label and the device label to match your device and the variable you want to control using the button.
  • Save and exit.
  • Run the python script and you are done.

sudo python display.py

Great job! You should now be able to control a Ubidots variable remotely from your Nextion display:

Feel free to share your results in our IoT developers community to get further inputs or help!

raspberry pi Interface (computing) IoT

Published at DZone with permission of Mateo Velez, DZone MVB. See the original article here.

Opinions expressed by DZone contributors are their own.

Popular on DZone

  • Cross-Functional Team Management
  • API Security Tools: What To Look For
  • How To Check for JSON Insecure Deserialization (JID) Attacks With Java
  • On Architects, Architecture, and Failures

Comments

IoT Partner Resources

X

ABOUT US

  • About DZone
  • Send feedback
  • Careers
  • Sitemap

ADVERTISE

  • Advertise with DZone

CONTRIBUTE ON DZONE

  • Article Submission Guidelines
  • MVB Program
  • Become a Contributor
  • Visit the Writers' Zone

LEGAL

  • Terms of Service
  • Privacy Policy

CONTACT US

  • 600 Park Offices Drive
  • Suite 300
  • Durham, NC 27709
  • support@dzone.com
  • +1 (919) 678-0300

Let's be friends:

DZone.com is powered by 

AnswerHub logo