Maker Pro
Arduino

Wireless Mood Meter

April 15, 2021 by Ashraf Minhaj
Share
banner

A simple device to express your mood!

Hardware

Introduction: Wireless Mood Meter

Suppose your mood changes so fast that people can't cope up with it. You feel sad but people do something that makes you more sad. If only they knew what you are feeling right now!Behold, I present you the Wireless Mood Swing Meter!! Place it where everyone can see it, tap on your phone and input how you feel, the meter dial will point to an emoji and show others what you feel. Now people will behave accordingly.

Wanna make one? Let's start. Watch the video alongside.

Step 1: Parts You'll Need

Electronics:

  • Arduino Nano (Any board will do) -1x
  • HC05 Bluetooth module -1x
  • Micro Servo sg90 -1x
  • Multi Functional Robot PCB [link]
  • Powerbank or 5v 1 Amp power source - 1x

Others -

  • PVC sheet - 1 piece
  • Hot Glue and Glue Gun
  • Mood meter (paper printable)

Step 2: Principle: How Will It Work?

Good questions lead to good answer. Before making anything you must have a clear understanding of what you are going to do.

So, the idea is, we will make a mood meter with emojis indicating my emotions. A little dial which will be attached by a servo will move and point at certain emoji based on my input on mobile phone.

So we will have to make a wireless circuit and Android application to make it work. Got it? Now, let's start.

Step 3: Cut Glue, Cut and Glue

print the 'mood meter.pdf' file, then cut mood meter and dial accordingly. After that glue them on PVC sheet. You can also use hardboard/cardboard instead of PVC sheet. After that glue a servo arm on the dial and complete the whole thing.

I designed this thing. But you can use your own thing. Download the paper printable file from below.

While attaching the dial/servo arm with the main board, make sure the servo motor runs 180 degree and the path of the dial falls into that.

Step 4: Circuit Diagram and PCB

The circuit is pretty easy. The major components are Arduino, Servo and Bluetooth module.

Connect them as follows:

  • Servo data pin to Arduino 9
  • Servo VCC to Vin and gnd to gnd
  • Bluetooth rx to Arduino tx
  • Bluetooth tx to Arduino rx

All the things became easy because I used PCB. I designed this multipurpose robot PCB so that I can make multiple robots without worrying much about wires. I designed the PCB usign EasyEDA and printed from PCBWay.com. Their service is one of the best that's why I love to print from them. With 5$ you can get 10 multilayer PCB. I went to PCB instant Quote Quick Order and uploaded the files The system automatically detected all the necessary parameters. I just picked color.

To get the PCB I am using click here.

I also have uploaded circuit diagram below if you don't want to use PCB at all.

Step 5: Code for the Project

This program is written in Arduino. It's simple enough to understand for all.

I imported servo library to control servo, declared a variable to store received value.

In setup function the connected servo to pin 9, Bluetooth module is connected on serial port of Arduino with buad rate 9600.

In main loop I check if any data is received.

If any data is received it moves the servo to a certain position, if it receives

  • 'h' - moves to happy emoji
  • 'm' - medium happy emoji
  • 'n' - neutral emoji
  • 's' - sad emoji
  • 'a' - angry emoji

Example for happy -

Now download code from github .

Step 6: Mood Meter Controller App

In order to send commands to the Mood Meter I made an android application. Which actually does connect with the board using Bluetooth connection and sends data it is supposed to send.

  • ''h'
  • 'm'
  • 'n'
  • 's'
  • 'a'

You just need to click on an emoji and the data will be sent to Arduino.

I made the application using MIT app inventor2. It's simple and drag and drop coding makes it more cool. See pictures, the code is also very little. It looks for available paired devices and sends data over Bluetooth. Click here to get the .aia file and edit yourself.

Step 7: Power Up and GO!

Now power it up using powerbank, connect Bluetooth module to your phone. Default password is '0000' or '1234'. Open mood meter controller app and click 'connect with meter' button. A list picker will appear, select your module and then just click on emojis, it will work like a charm.

Thank you everyone for reading. A little thumbs up will be a lot. Happy Making!!!

Author

Avatar
Ashraf Minhaj

A Computer Science and Engineering student and a Hobbyist. Love to make robots, DIY gadgets. Interested in robotics and AI. 

Related Content

Comments


You May Also Like