Progress Towards a Sleep Aid Vibrating Ring

by jack1233321 in Circuits > Arduino

214 Views, 0 Favorites, 0 Comments

Progress Towards a Sleep Aid Vibrating Ring

ring photo.png
circut picture online.png
IMG-4196.jpg

This is a ring that is supposed to vibrate when you wake up to help you get up in the morning. The ring design is ready to print and the circuit design is ready to use. I made it for people ho need an aid other then their alarm to get up in the morning. The ring is able to be modified to fit any finger by changing the size elements in tinkercad. The vibration motor is a prototype for the tech that will be instilled in this design. This is used as an aid for anyone who needs more rthen an alarm to wake up in the morning.

Supplies

  1. Arduino
  2. Circuit board
  3. NPN transistor 
  4. Diode 
  5. Capacitor 
  6. Vibration motor
  7. Resistor- 1 ohm 
  8. Ring
  9. 3D printed, measure your finger accordingly 
  10. Code for arduino 

const int motorPin = 3;


void setup()

{

pinMode(motorPin, OUTPUT);  //set output on Arduino Digital Pin3

}


void loop()

{

digitalWrite(motorPin, HIGH); //motor vibrates (HIGH)

delay(500);          //for 500 m/s

digitalWrite(motorPin, LOW); //motor is silent (LOW)

delay(1000);         //for 1000 m/s

}

3D print the ring after you measure your size. The prototype has the correct shape for it so measure the thickness and band to your own taste. After that, take the Arduino and copy and paste the design into tinkercad circuits. Also copy and paste the code and download the Arduino software. Plug the board into the computer, select the input and ruin the code and the motor should vibrate. This is in early development so once there is a smaller arduino processor you can connect it to the top of the ring and glue it on.