Wednesday, April 6, 2016

Awards and Achievements for my Robot experiments... Yet....

It's time to share my happiness along with the Awards and achievements.... Yet...


  • Awarded the trophy and medal by NovaTech Robo - Bangalore based Robotics company

  • Awarded the Certificate by LTU (Lawrence Technological Institute, Mechigan)

  • Winner award @ Startup Carnival - JNTUH Kondagattu

  • Certificate of participation by RoboFest @ T-Hub, IIIT Hyderabad

     

    Lawrence Technological University hosted RoboFest at Hyderabad
    All the trophies and certificated awarded me

    RoboFest held at t-hub

      I wish your blessings to reach the top grade learnings in Robotics and make India proud.


Humanoid Model Robot designed to serve food at restaurent - EXPO @ T-Hub IIIT Hyderabad, India's First ROBOFEST

 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 @ ETV Yuva for the event @ 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.

About me @ Stumagz " Age dosen't matter when you have Talent"

Hmm... It's me again with my friendzzz... and team mates...

About me @ Stumagz " Age dosen't matter when you have Talent"

http://stumagz.com/age-doesn-t-matter-when-you-have-the-right-brain-/

 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 .  

Sunday, April 3, 2016

Arduino Micro controller for Robotics Workshop

WORKING WITH ARDUINO BOARD





Me at swecha
ME AT SWECHA


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 arduino program
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 Arduino UNO, 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);  
}


RGB lights
Working with RGB lights

Then I've written a program for the temperature sensor, (which senses the temperature of the area/room).

program for temperature sensor is :
int val;
int tempPin = 9;
void setup ()
{
Serial.begin(9600);
}

void loop ()
{
val = analogRead(tempPin);
float mv = ( val/1024.0)*5000; 
float cel = mv/10;
float farh = (cel*9)/5 + 32;

Serial.print("TEMPRATURE = ");
Serial.print(cel);
Serial.print("*C");
Serial.println();
delay(1000);

Serial.print("TEMPRATURE = ");
Serial.print(farh);
Serial.print("*F");
Serial.println();


}


I've also written a program for the LDR sensor, (which senses the amount of light present in the area/room).

program for LDR sensor is :


 int sensorPin = 9;
 int sensorValue = 0;
 
 void setup() 
 {
 Serial.begin(9600);
 }
 void loop() 
 {
 sensorValue = analogRead(sensorPin);
 Serial.println(sensorValue);
 delay(100);
 }




Popular Posts