0% found this document useful (0 votes)
599 views7 pages

DIY Smart Augmented Reality Glasses Using Arduino

This document describes how to build DIY smart augmented reality glasses using an Arduino. The glasses can display notifications, calls, messages and time/date from a paired smartphone. It uses an Arduino Nano, Bluetooth module, OLED display, battery and basic frames. An Android app is used to transmit phone data to the Arduino via Bluetooth. The Arduino code processes the data and displays it on the OLED screen mounted on the glasses. Components are inexpensive, with the total cost under $15 to make a prototype similar to Google Glass but much cheaper.

Uploaded by

Sandeep S
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
599 views7 pages

DIY Smart Augmented Reality Glasses Using Arduino

This document describes how to build DIY smart augmented reality glasses using an Arduino. The glasses can display notifications, calls, messages and time/date from a paired smartphone. It uses an Arduino Nano, Bluetooth module, OLED display, battery and basic frames. An Android app is used to transmit phone data to the Arduino via Bluetooth. The Arduino code processes the data and displays it on the OLED screen mounted on the glasses. Components are inexpensive, with the total cost under $15 to make a prototype similar to Google Glass but much cheaper.

Uploaded by

Sandeep S
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 7

instructables

DIY Smart Augmented Reality Glasses Using Arduino

by AnkitK155

As technology is growing rapidly and integrating itself to all aspects of people’s life, designers and developers tried
to provide a more pleasant experience of technology to people. One of the technology trends which aim to make
life easier is wearable computing. Wearable’s aim to assist people to be in control of their life by augmenting the
real life with extra information constantly and ubiquitously. One of the growing trends of wearable computing is
Head Mounted Displays (HMD), as the head is a great gateway to receive audio, visual and hectic information.
Also due to the Google Glass project, wearable’s in form of glasses gained much more attention during last year’s.
Google Glass is as futuristic a gadget we’ve seen in recent times. A useful technique for all kinds of people
including handicapped/disabled.

Inspired by Google glasses, I made a wearable prototype that can function quite similar to Google Glass. In this
project, we will make a wearable extension that can work like Google glasses, and it will be used to send
notifications of calls and messages received on mobile phones, and also show time and date, all in front of
wearer’s eye.

Google Glasses are available in market at price of $1000-$1500. Here we will make this project under, Rs.1000 or
$15.

Smart- Glasses are the wearable computing device used as an extension, which can be attached to the spectacles
or sunglasses of the wearer, and can be paired with Smart Phones, via Bluetooth. This extension, contains an
Arduino Micro-controller having ATmega328p microprocessor, which is programmed to connect with Smart-
Phones through a Smart-phone application. A Bluetooth module, named HC-05 is interfaced with ATmega328p,
which is used to connect with smart-phones. A battery / Re-chargeable battery of 5V is used as power supply for
Smart-Glass. An SSD1306, 0.96” OLED display is interfaced with ATmega328p, which is used to display the data
received from Smart-phones. Smart-Phone application is used to transmit data of the phone, i.e; Date, Time,
Notifications of Phone call and Text messages.

The following are the main steps that are implemented during the whole process:

1. Notifications Received.
2. Encoding.
3. Transmitting and Receiving.
4. Decode and Process.
5. Execution

The basic principle of this project is to create a working prototype and that too within a very less cost.

DIY Smart Augmented Reality Glasses Using Arduino: Page 1


Step 1: COMPONENTS REQUIRED :

1. Arduino Nano, (ATMega328p)


2. Battery ( we have used 9V battery)
3. Bluetooth module (HC-05)
4. OLED display (SSD1306)
5. Wires for connection
6. Push Button
7. Bluetooth Earphone (LG HBS 760) [This is optional. I had a damaged set, so I used it too.]
8. Toggle switch
9. Basic Frame ( we made this frame using Sunmica Sheet, by remolding its shape using Solder iron)

DIY Smart Augmented Reality Glasses Using Arduino: Page 2


Step 2: PROGRAM :

Upload the given program in Arduino Nano. But first, String Phone = Serial.readStringUntil('|');
download the library for the program.
Serial.read();
For downloading the library, follow these steps;
Sketch > Include Library > Manage Library > String Text = Serial.readStringUntil('\n');
Search for " SSD1306" and install the
Adafruit_SSD1306 Serial.read();

Or if the given Arduino program doesn't work, then }


copy and upload the program given below;
if(Text == "text" && Phone == "phone")
#include <SPI.h>
{ display.println(Date);

#include <Wire.h> display.display();

#include <Adafruit_GFX.h> display.println(Time);

#include <Adafruit_SSD1306.h> display.display();

#define OLED_RESET 4 display.clearDisplay();

Adafruit_SSD1306 display(OLED_RESET); }

void setup() { if (Text != "text" && Phone == "phone"){

Serial.begin(9600); display.println(Text);

display.begin(SSD1306_SWITCHCAPVCC, 0x3D); display.display();

display.display(); delay(5000);

delay(2000); display.clearDisplay();

display.clearDisplay(); }

} if (Text == "text" && Phone != "phone"){

void loop() { display.println(Phone);

while(Serial.available() > 0){ display.display();

String Date = Serial.readStringUntil('|'); delay(5000);

Serial.read(); display.clearDisplay();

String Time = Serial.readStringUntil('|'); }

DIY Smart Augmented Reality Glasses Using Arduino: Page 3


}
Serial.read();

Download
http://www.instructables.com/ORIG/FLN/VUPJ/JIEULUJ4/FLNVUPJJIEULUJ4.ino

Step 3: APPLICATION :

If the given .apk doesn't work, or you want to create your own customized app. Then you can use app inventor
website and make the functional blocks as given above.

OR

Download the .apk and install it.

Download
http://www.instructables.com/ORIG/FZT/QXKW/JIEULV7E/FZTQXKWJIEULV7E.apk

Step 4: CONNECTION :

Connect the circuit as shown in this schematic diagram.

Connect to the battery and turn on the supply.

DIY Smart Augmented Reality Glasses Using Arduino: Page 4


Step 5: SETUP :

Pair Bluetooth module with phone’s Bluetooth. The App will show the above image.

DIY Smart Augmented Reality Glasses Using Arduino: Page 5


Step 6: BODY / FRAME WORK :

Make the frame as shown in the figure, or as per your choice. I made this frame using plywood Sunmica, by using
the soldering iron to make the curve. You can make it as per your design.

For Display, you can use the above template as a reference.

DIY Smart Augmented Reality Glasses Using Arduino: Page 6


Step 7: RESULT :

As a result, something similar to the above image will appear on the Display.

If you have any suggestions to make it better, you can comment down.

DIY Smart Augmented Reality Glasses Using Arduino: Page 7

You might also like