Toothbrushing Instructor

Kids just aren’t huge fans of brushing their teeth. Not only are they not huge fans, they also are pretty bad at it. Teaching a young kid to brush their teeth is really hard. I created a little contraption that not only times them to make sure they brush for an entire two minutes, but also tells them what part of their mouth they should be brushing! Now kids can’t claim they didn’t know what to do, since the Toothbrush Instructor told them!

Toothbrushing Instructor

Step 1: Supplies

We’ll make use of quite a few different grove sensors here for fast and easy prototyping. If you can, pick up the Arduino Grove Starter kit. It comes with a Grove base shield that is compatible with the LinkIT ONE, and tons of different sensors (and also the exact ones you need for this project!).

  • LinkIT ONE Board
  • Grove RGB LCD
  • Grove Button
  • Grove Arduino Base Shield
  • Grove Buzzer

Step 2: Hooking Up All Your Grove Sensors

Firs step might be pretty obvious: Hook up all those Grove Sensors! Because we’re using Grove, it makes it easier than ever to connect and interface with sensors. Simply plug in your Arduino Base shield to the LinkIT ONE (the pins should match up perfectly) and then plug in the different sensors.

Plug the RGB LCD into an I2C port.

Plug the Buzzer into D2

Plug in the Button to D3

Step 3: Controlling the RGB LCD

First, let’s take a look at controlling our RGB LCD. In order to interface with the Grove RGB LCD, you’ll need to download their external library here and install it to your Arduino IDE. I’ve attached the code file for you to review, but let’s walk through it a bit to make sure we understand it.

#include "rgb_lcd.h"

First, make sure to include the RGB LCD library so we can easily control our lcd.

rgb_lcd lcd;
const int colorR = 0;
const int colorG = 0;
const int colorB = 230;

lcd.setRGB(colorR, colorG, colorB);

Now, create an RGB LCD object for us to control. Set some default colors (we’ll just stick with blue, you’re free to mess with this though!)

lcd.print("Hello, World!");

Now, print something to the screen!

Read more: Toothbrushing Instructor


About The Author

Ibrar Ayyub

I am an experienced technical writer holding a Master's degree in computer science from BZU Multan, Pakistan University. With a background spanning various industries, particularly in home automation and engineering, I have honed my skills in crafting clear and concise content. Proficient in leveraging infographics and diagrams, I strive to simplify complex concepts for readers. My strength lies in thorough research and presenting information in a structured and logical format.

Follow Us:
LinkedinTwitter

Leave a Comment

Your email address will not be published. Required fields are marked *

Scroll to Top