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

Presentation 18

Uploaded by

Sara Abd elaleam
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)
11 views7 pages

Presentation 18

Uploaded by

Sara Abd elaleam
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

OUR BRAND NAME

Levanto proposal
Derived from the Italian word "levare" (to lift).
OUR VISION
As they climb the stairs, it feels like their soul
is leaving their body.......

Introduction: The Everyday Struggle


Problem Scenario:
Imagine a university student, an elderly person, or someone with a heart or cancer condition:
• College Challenges: Facing steep stairs between classes, often breathless and exhausted.
• Metro Stations: Dealing with broken escalators or out-of-service lifts.
• Home Environment: Climbing multiple flights of stairs in buildings without elevators.
Emotional and Physical Impact:
• Physical Toll: Increased heart rate, fatigue, and breathlessness.
• Psychological Impact: Anxiety and fear of physical exertion, leading to social isolation.
OUR MISION
2. Our Solution: The AscendEase Shoe
A specially designed smart shoe that makes stair climbing feel like walking on flat ground. Our
innovation focuses on reducing physical effort through technology.
Key Features:
•Smart Detection: Senses changes in ground levels (stairs, slopes).
•Adaptive Assistance: Activates a thruster system that counteracts gravity.
•User-Centric Design: Lightweight, durable, and comfortable for everyday use.
TECHNOLOGY BEHIND WHAT IS ARDUINO SYSTEM ?

3. The Technology Behind LEVANTO: Arduino System Integration


What is Arduino?
Arduino is an open-source microcontroller platform that bridges sensors and actuators. It’s flexible, easy to program, and widely
used for smart projects.
Arduino in LEVANTO
• Sensors in the Sole:
Detect ground gradient changes (e.g., stairs or slopes) and send data to the Arduino.
• Arduino Microcontroller:
Processes this data and activates the thruster mechanism in real time.
• Thruster System:
Small, powerful devices generate an upward force opposing gravity, reducing the effort needed to climb.
TECHNOLOGY BEHIND WHAT IS ARDUINO SYSTEM ?

4. How It Works – Step-by-Step:


• Detection Phase:
• Sensors continuously monitor the ground surface.
• When a change in slope is detected, a signal is sent to the Arduino.
• Processing Phase:
• Arduino interprets the sensor data and calculates the required thruster force.
• Ensures activation is smooth and synchronized with the user’s steps.
• Assistance Phase:
• Thrusters engage, generating an upward force.
• This force counteracts gravity, making climbing easier and reducing exertion.

6. Conclusion: A Step Toward a Better Future


LEVANTO isn’t just a shoe; it’s a lifeline for those who struggle daily. By leveraging Arduino technology, we’re transforming lives,
one step at a time.
Together, let’s redefine mobility and make every step effortless.
TECHNOLOGY BEHIND WHAT IS ARDUINO SYSTEM ?

Arduino code to read data from a force-sensitive resistor and activate a motor when a threshold is reached:
// Define pins
const int sensorPin = A0; // Sensor input pin
const int motorPin = 9; // Thruster control pin Explanation of the Code:
// Threshold value for activation • Sensor Reading:
const int threshold = 300; // Adjust based on calibration • Reads data from the FSR connected to analog pin A0.
void setup() { • Threshold Detection:
pinMode(motorPin, OUTPUT); // Set motor pin as output • Compares the sensor reading to a predefined threshold
Serial.begin(9600); // Initialize serial communication for debugging value. Adjust this threshold based on testing.
}
• Motor Control:
void loop() { • If the sensor value exceeds the threshold (indicating a
int sensorValue = analogRead(sensorPin); // Read sensor value
Serial.println(sensorValue); // Print for debugging step), the motor/actuator activates, providing assistance.
• Serial Output:
if (sensorValue > threshold) { • Displays sensor values in the Serial Monitor, helpful for
digitalWrite(motorPin, HIGH); // Activate thruster
} else { debugging and calibration.
digitalWrite(motorPin, LOW); // Deactivate thruster
}

delay(100); // Small delay to stabilize readings


}
TECHNOLOGY BEHIND WHAT IS ARDUINO SYSTEM ?
Complete List of Components IN ORDER OF USE

Component Description Quantity Component Description Quantity

Arduino Nano Compact microcontroller for processing 1 Piezo Buzzer For system alerts or warnings. 1
sensor data
Force Sensitive Resistor Detects pressure changes, indicating steps 2-4 LED Indicator Visual status indicator (e.g., power or system 1-2
and ground levels. activation).
(FSR)
Wires and Connectors Connect components within the shoe. VARIOUS
IMU Sensor (MPU6050) Measures motion and angle changes 1
(acceleration and orientation).
Breadboard (small/mini) For initial prototyping and testing. 1
Micro Thrusters or Provide upward force to assist stair climbing. 2 (one per
Actuators shoe)
Motor Driver Module Controls power delivery to thrusters. 1-2 Custom PCB (optional) Replace breadboard for a compact, durable 1
(L298N or MOSFET) design inside the sole

Rechargeable Li-Po Lightweight, provides power to the system. 1 Soldering Kit For connecting components securely.
Battery (3.7V/7.4V)

Voltage Regulator Stabilizes voltage supply for components. 1 3D Printing or Shoe Create compartments in the sole for
Modification Kit housing components.
TECHNOLOGY BEHIND WHAT IS ARDUINO SYSTEM ?
CHALLENGES
Integration into the Shoe Sole: Feasibility and Plan
Key Challenges and Solutions:
• Space Constraints:
• Solution: Use compact versions of components (e.g., Arduino Nano, mini thrusters).
• Consider flexible PCB designs to minimize space usage.
• Weight Distribution:
• Solution: Evenly distribute components across the sole to maintain balance.
• Use lightweight materials (e.g., Li-Po batteries, carbon fiber thrusters).
• Component Protection:
• Solution: Encapsulate electronics in waterproof, shock-resistant enclosures.
• Ensure sensors are flush with the sole surface to avoid discomfort.
• Power Management:
• Solution: Integrate energy-efficient thrusters and optimize sensor usage.
• Position the battery in the heel or arch area for better weight distribution.
Proposed Sole Design Layout:
• Heel Area: Battery and motor driver.
• Mid-Sole: Arduino board and IMU sensor.
• Front Sole: FSR sensors and thruster nozzles.

You might also like