EV3 Mindstorm projects, Innovations with Robots to participate and contribute to Make in India. Every comment energies to do more experiments. Every wish from you keeps me boosting.
Humanoid Model Robot designed to serve food at the restaurant - EXPO @ T-Hub IIIT Hyderabad, India's First ROBOFEST
Me and my friends Hemang Vellore and Harsha Vardhan together formed a great team to develop the LEGO ev3 based model Humanoid Robot. Our actual confidence is to build an autonomous humanoid that serves food at any customer table in a restaurant.
Robofest 2016 IIIT Hyderabad
Out of two robot waiters, One among them serves food ordered is arranged on a tray and the other one will follow the first one carrying beverages. These Robots are built with multiple colors and other sensors which is programmed to detects the different objects and the logic that we developed to add the intelligence to the Robot it is called Obstacle Avoidance Concept.
Me ( Raghav ) and my teammates together at Robofest in T - Hub
Here we go with the demo
EXPO @ T-Hub IIIT Hyderabad, India's First ROBOFEST
Raghavendra Devarakonda Telugu channel Enaadu TV program "Yuva" inspiring young people are introduced to the state for the event that held at Telangana-Hub (t-hub) inside the IIIT campus, Hyderabad,
India's ROBOFEST 2016
This robot is our "cups & bowls game". Normally you could find this in somewhere in the amusement parks. one ball could be picked and
in the is servo motors and touch sensors. Using touch sensors robot can sense like us. Here we did the program for the robo understand the sense and give us the funny game output.
You
cannot go back what you were!! So make sure you are your best today!!
These days kids have out past the level of maturity one posses at d age
of 8 to 15.
They have literally defined everything at a different angle , may it be
technology, science or parenting if you ask .
A bunch of kids...whose looks are just as cute. as chipmunks, just
steal your heart but there is more to their cuteness.. Not only they are
cute but also they have serious brains. Like you and me combined??
Forget it . we can never be in that league ever.
I hear their mom say “My kids don't wish me happy birthday but their robots do”
I was a moment where I would RIP . He was what? Just 11? You gotta be
kidding me…. Yeah they are a bunch of kids aged 8 to 12 and they make ROBOTS.
Hemang, me(Raghav) and Harshavardhan
Raghav - 8th standard Harshvardhan - 8th standard Arnav - 8th standard Hemang vellore - 4th standard.
On a recent visit to T-hub , where we get to meet this extraordinary
talented boys who won our hearts and minds with their ability to create
something extraordinary.
Their piece was a Lego guitar player, which takes care that you don't
hurt your nails while playing guitar .. These tots were champions at IIT
Hyderabad and are also flying soon to Michigan university to present
their work.
Stumagz Teams Wishes them Good Luck !! Keep Going .
This weekend I've attended the Arduino Opensource Robotic workshop. It was really wonderful.
I met the people who already working on Arduino.
I also saw an obstacle avoiding Robot out of the Arduino.
Swecha is the Indian National Opensource programmers community organized the two days event.
First program with Arduino
Programming
The software can be found on arduino.cc . It is free software, we can download. And the hardware is an open hardware
I used the ArduinoUNO, but you can use any type of Arduino
First Arduino Program ... Experimenting with LED (RGB combination... many more colors ... one after the Other ).
The program for the RGB sensor is :
int redPin = 11;
int greenPin = 10;
int bluePin = 9;
//uncomment this line if using a Common Anode LED
//#define COMMON_ANODE
void setup(){ pinMode(redPin, OUTPUT);
pinMode(greenPin, OUTPUT);
pinMode(bluePin, OUTPUT);
}
void loop()
{ setColor(255, 0, 0); // red
delay(1000); setColor(0, 255, 0); // green
delay(1000); setColor(0, 0, 255); // blue
delay(1000); setColor(255, 255, 0); // yellow
delay(1000); setColor(80, 0, 80); // purple
delay(1000); setColor(0, 255, 255); // aqua
delay(1000);
//we can make many more colors by changing the numbers . we can make rainbow colors
}
void setColor(i
nt red, int green, int blue)
{
#ifdef COMMON_ANODE
red = 255 - red;
green = 255 - green;
blue = 255 - blue;
#endif analogWrite(redPin, red);
analogWrite(greenPin, green);
analogWrite(bluePin, blue);
}
Working with RGB lights
Then I've written a program for the temperature sensor, (which senses the temperature of the area/room).