top of page

The Crescent Baby Cradle Final Project

SDG Problem

In recent years there has been considerable progress in the development of women all over the world, but there is still much to be done in this area, in order to achieve effective equality between men and women, it is necessary for them to have the same working time in the year. For the women being the ones who take care of babies in all cultures in the world especially in the developing countries can work as much as the men, it is necessary to find solutions allowing them to take care of their babies and work at the same time.

It is in this context that we design this baby cradle to help mothers who cannot afford a babysitter and who have to continue their work for their own fulfillment and contribute to the development of their countries by reducing inequality between men and women on one side, between rich and poor on the other side, and fulfill the aim of well-being for mothers and babies.

  1. Achieve gender equality and empower all women and girls

  2. Promote sustained, inclusive and sustainable economic growth, full and productive employment and decent work for all

  3. Reduce inequality within and among countries

  4. Ensure healthy lives and promote well-being for all at all ages

Materials and Making Process

List of the materials we used with the quantity needed and links for purchasing it.
 

Making process

We identified the problem, then we made the concept, then we prototyped finally we assembled it.

  • The first prototype we used paper to prototype the concept

  • Coding we did the code and tried it on Tinkercard then with the Arduino board

  • The final prototype we used Fusion 360 to design it and we print it in 3D printing

  • Finally, we assembled it with the Arduino and the all materials needed.

Key Tech

Our Key Technology is the app we are developping that will help mothers to see the conditions of their babies in real time and monitor it in distance like play music or shake the cradle, sing for the babies by themselves.

Innovation

In the market there are many kind of baby cradles they don’t differ a lot but our innovation in this baby cradle is the possibility of monitoring it in distance and the low cost of the production.

Market and Channels

Our target client is middle- or low-class mothers who can’t afford babysitters and have to work while they have newborns.

Channels

We will sell the kit directly in the to those who need it but we will convince governments, institutions, companies to provide the kits to their workers to avoid leaves and improve their productivity.

Home view/ Full set

images.jpeg

Finishing Design

images (2).jpeg

Combine with Arduino

images (1)_edited.png

Design view

images (4).jpeg

Project code

 

 

const int relay = 8; // the number of the pushbutton pin

void setup() {


// initialize the LED pin as an output:
pinMode(8, OUTPUT);
pinMode(13, OUTPUT);
pinMode(9, OUTPUT);


}

void loop() {


digitalWrite(8, HIGH);
digitalWrite(13, HIGH);
digitalWrite(9, HIGH);
delay(200);

digitalWrite(8, LOW);
digitalWrite(13, LOW);
digitalWrite(9, LOW);
delay(500);

}

Project videos 

bottom of page