Arduino Head Mouse With Click Controlled by Sound

by vitorccsiqueira in Circuits > Arduino

482 Views, 4 Favorites, 0 Comments

Arduino Head Mouse With Click Controlled by Sound

picture_1.jpg
picture_2.jpg
software_2.png
software_1.png

Description

That's a USB mouse with cursor controlled by head movement and click made by sound/noise in a microphone - a project intended for disability-aid or fun purposes.


The inspiration

I have been researching for some time for an assistive technology which allows a friend of mine with special needs to use a computer, so she could have her independence and communicate more efficiently.

She has limited control over her head movement and at first I considered a great Brazilian project called Colibri. However, the left click in Colibri is performed by a blink gesture and she is not able to do so. So I changed the click to be performed by any sound/noise made in the microphone.

I was also greatly inspired by @Gabry925 project and @millmore, so many thanks for them as well.


Possible Use

  1. Alternative Communication Board (e.g.: https://www.cboard.io)
  2. Simple communication in general (the built-in Notepad and Virtual Keyboard is perfect)
  3. Entertainment (Point & Click Games like https://store.steampowered.com/app/2377970/Cats_Hidden_Around_the_World/)

Supplies

  1. 01 - Arduino Pro Micro 5v (Atmega32u4, 16 Mhz)
  2. 01 - MPU6050 (accelerometer/gyroscope)
  3. 01 - SparkFun Electret Microphone Breakout (reference1, reference2)
  4. 01 - 500Ω Potentiometer
  5. 02 - Leds
  6. 01 - 150 - 470Ω Resistor
  7. 02 - Push buttons
  8. 02 - Terminal connectors (KF301 5.0 3P)
  9. 01 - 22 AWG 6 Pairs Cable (reference)
  10. 01 - Optionally, a (cheap) Headset to serve as a case for your project

Demo

Head Mouse - Using Cboard
Head Mouse - Communication with Virtual Keyboard
Head Mouse - Playing Doom 2

Real footage of head mouse in action

Circuit

arduino-head-mouse_bb.png
  1. The mouse cursor is controlled by head movement while any sound detected in the microphone makes the left mouse click.
  2. The potentiometer adjust the microphone sensibility per your environment noise level
  3. [Optional] The left button performs a left click (useful for assisting somebody)
  4. [Optional] The right button briefly interrupts the board (useful for fixing your head position)

Mounting

picture_4.jpg
picture_3.jpg
picture_5.jpg
68550.jpg

I used protoboards to test the concept but I soon had to migrate the circuit to a PCB Board Prototype because it was getting a little messy.

The most challenging part is to find a good [and cheap] headset which is easy to remove the cable and audio components and there is enough space to place the accelerometer board.

The original microphone and its wire was also entirely replaced with my own components.

The Code

Upload the code contained the ZIP file attached in this project to your Arduino Board.

NOTE: You will need VSCode and PlatformIO extension - sorry, but it is much better than Arduino IDE in so many aspects like a great built-in dependency manager which downloads the correct library version automatically.

You can also find the code at https://github.com/vitorccs/arduino-head-mouse

References