All Collections
IoT Projects Tutorials
How to build a Motion Detection System with Arduino
How to build a Motion Detection System with Arduino

Build a motion and presence production counter using a Feather HUZZAH programmed with Arduino and powered by Ubidots.

Isabel Lopez avatar
Written by Isabel Lopez
Updated over a week ago

Effective physical motion and presence detection in Smart Homes and Smart Manufacturing can be very useful in applications ranging from elderly Ambient Assisted Living (AAL) solutions or a Production Counting System that feeds a larger MES. Other applications for Motion and Presence Detection include but are not limited to:

While there are many applications for presence and motion, there are equally as many sensors to collect data, such as capacitive, inductive, photoelectric, and ultrasonic sensors. Depending on the costs, environment conditions, and accuracy requirements, one should select the best fitting hardware for an environment and application requirements, 

For this tutorial, we will focus on building a real-time production counter; the application will count every unit passing by on a conveyor belt. We will be using the Arduino IDE to program a Feather HUZZAH ESP8266, an ultrasonic sensor, and Ubidots to develop our application and display our IoT dashboard

Requirements 

Setup:

I  Hardware Setup
II. Firmware Setup
III. Ubidots Application Development (events, variables, and dashboards)

I. Hardware Setup

The Ultrasonic Sensor MB7389-100 is a low-cost option for Industrial applications with wide-range and low-power consumption requirements in challenging weather conditions thanks to its IPv67 rating

To get started, mirror the diagram below to attach the ultrasonic sensor to the Feather HUZZAH ESP8266:

NOTE: The sensor reading can be taking as analog readings or PWM; below we are going to explain the setup for the PWM reading, for additional information please see these examples. 

[Optionally] place the micro-controller and the sensors inside de IP67 case to protect them from dust, water, and other threatening environmental factors. The standard case looks similar to the one shown below:   

II. Firmware Setup

First, you should install the Feather Huzzah in the Arduino IDE and compile the code. Remember to verify this set up by doing a simple blinking test. For further information about connecting your Feather device check out this helpful hardware setup guide.

1. Download and install the Ubidots library. For a detailed explanation of how to install libraries using the Arduino IDE, refer to this guide.   

2. To send sensor data to the Ubidots IoT Development Platform, copy and paste the code below into the Arduino IDE. Once you have pasted the code, be sure to assign the following parameters:

  • SSID (WiFi Name) & Password of the available network connection.

/********************************

   Libraries included

 *******************************/

#include "Ubidots.h"

/********************************

   Constants and objects

 *******************************/

/* Ubidots */

const char* UBIDOTS_TOKEN = "...";  // Put here your Ubidots TOKEN

const char* WIFI_SSID = "...";      // Put here your Wi-Fi SSID

const char* WIFI_PASS = "...";      // Put here your Wi-Fi password

/* Ultrasonic Sensor */

const int pwPin1 = 5; // The PWM pin where the sensor is connected

Ubidots ubidots(UBIDOTS_TOKEN, UBI_HTTP);

/********************************

   Auxiliar Functions

 *******************************/

/********************************

   Main Functions

 *******************************/

void setup() {

  Serial.begin(115200);

  /* Connects to AP */

  ubidots.wifiConnect(WIFI_SSID, WIFI_PASS);

  // ubidots.setDebug(true);  // Uncomment this line for printing debug messages

}

void loop() {

  /* The sensor reading is returned in millimeters, if you desire convert

   * it to inches just create a variable pointing to -> distance / 25.4 */

  float distance = pulseIn(pwPin1, HIGH);

  ubidots.add("distance", distance);  // Change for your variable name

  bool bufferSent = false;

  bufferSent = ubidots.send("motion-control");  // Will send data to a device label that matches the device Id

  if (bufferSent) {

    // Do something if values were sent properly

    Serial.println("Values sent by the device");

  }

  delay(1000);

}

ProTip: you can check if your device is correctly connected by opening the serial monitor in the Arduino IDE. 

You can verify a device is created in your Ubidots backend by viewing it in your account Devices > Devices.

By clicking your device, you will find a variable called "distance" where the sensor's readings are stored. This name was assigned in the code you've just pasted in the Arduino IDE. If you wish to adjust your automatic variables, please do so by editing the Device card or by flashing an updated code with the correct variable nomenclature for your application. 

With the Feather HUZZAH ESP8266 connected and reporting data to Ubidots, it's now time to build the application using Ubidots carefully designed code-free application configuration


III. Ubidots Application Development

Ubidots Event Configuration

The current readings we're sending to Ubidots are distance inputs. For translating these readings into a desired output that we want —counted units— we should create an event following these steps: 

  1. Inside the current device "motion-control" create a new default variable called "boxes", which will receive a 1 every time a new unit is counted. You device cards, when correct will look as follows: 

2. Go to Device Management -> Events, and click the blue plus icon in the upper-right corner of the page to add a new event. 

3. Configure your event beginning with "If triggers":
Event Configuration

  • Select a variable:  "distance"

  • Value: value (default)

  • Is less than or equal to

  • [the maximum expected distance} between the sensor and the boxes passing by
    *our application calls for 500mm

  • For 0 minutes

  • Save

4. Once the triggers have been configured to your application's specifications, click the orange "plus" icon in the upper-right corner to add a conditional action:

5. Select “Set  Variable” as the action. 

6. Next, choose the previously created default variable "boxes" and value "1", as shown below:  

7. Save changes. If the event is properly set up, it will send a "1" every time the distance between the sensor and the unit is longer than an indicated threshold, which suggests that there's no object near — and should count a new unit that just passed by. 

In the Feather specific Device card you will find that the variable "boxes" where a "1" is sent any time a unit's presence is sensed. 

Especially useful for industrial conveyor belts and unit counting this prototype can be customized to fit different environments or hardware simply in your coding or your applications development. 

8. Visualize the number of units sensed (or times an object was detected)

Now, using the "boxes" variable, we are going to create a new rolling window variable to sum the total amount of readings received form the variable "boxes" in a defined spam (minutes, hours, days, weeks, etc). To execute this development, follow these simple steps:

  1. Go to the Device Management > Devices > motion-control (device), and create a new rolling window variable:

Assign the following credentials to your new rolling window variable
Select a device:
motion-control (or the name of the device you're sending your data)
Select a variable: boxes
Compute the: sum
Every: "1" hour  (or according to your application requests)

Now assign a name to the new variable that indicates the amount of boxes (or movements) counted in an hour, just like "boxes/hour" or "units/hours.

Dashboard Configurations

Finally, create a dashboard to display the number of units sensed.

Go to Device Management –> Dashboards and add a new widget. This widget will display the amount of boxes counted today broken down by hour.

Assign the following credentials to your new widget to visualize your count.
How would you like to see your data?:
Chart
Select a type of widget: line chart
Add a device: motion-control
Add a variable: boxes/hour
Finish.

And with this final dashboard development - you're application is complete and you now have an efficient and effective motion and presence detection system.

Here's a final look at our results: 

Get started with Ubidots today and built your next IoT application with ease. 

Did this answer your question?