SlideShare a Scribd company logo
1 of 4
Download to read offline
Giridhar S. Chavan, Prof. Ashok S. Patole** & Prof. Vinayak H. Khatawate / International
          Journal of Engineering Research and Applications (IJERA) ISSN: 2248-9622
                   www.ijera.com Vol. 2, Issue 4, June-July 2012, pp.738-741
 ARTIFICIAL INTELLIGENCE SYSTEM FOR REMOTELY CONTROLLED
       WHEELED VEHICLE SYSTEM FOR DISABLED PERSON
        Giridhar S. Chavan* Prof. Ashok S. Patole** & Prof. Vinayak H.
                                Khatawate**
  *(FR.CRCE, Department of Production Engineering, Bandstand, Mumbai-50)**(PIIT,New Mumbai)


 ABSTRACT :
         The aim of this project is to AI controlling    control it. Our intention is to study and develop AI
a wheelchair-mounted robotic arm           by using      logic for controlling of Wheel Chair.
microcontroller. This project makes use of a micro
controller, which is programmed, with the help of        3. Methodology :
embedded C instructions[3]. This microcontroller             i. A study of several regulation and guideline
is capable of communicating with transmitter and                concerning the design of a vehicle
receiver modules of RF module. The sensor detects           ii. A study of path control and assistance to
the path and provides the information to the                    disable person by communicating with main
microcontroller (on board computer) and the                     server using AI logic[1].
controller judges whether the instruction is right         iii. Design improvement and modification &
         movement or left movement instruction                  Testing
and controls the direction respectively. The               iv.  Production of final Engineering Drawing &
controller is interfaced with two dc motors to                  Fabrication
control the direction of the wheel chair and servo
motors for arm movements.                                4.Objectives of project.
                                                            i.  To devlop AI controlled wheelchairs to meet
Keywords - AI , wireless control of powered                     the    strength,   durability     and     safety
wheelchairs , wheelchair-mounted robotic arm         ,          requirements of user(s) in their own
ATMEGA16, BLDC motors                                           environment(s)[2].
                                                           ii.  To study       recommendations       that each
1. Introduction :                                               country develop its own wheelchair standards
         A wheelchair-mounted robotic arm           is          to ensure a reasonable quality, for instance by
designed and built to meet the needs of mobility-               using the ISO 7176 series of standards as a
impaired persons, and to exceed the capabilities of             basis.
current devices of this type using AI logic. The
mechanical design incorporates DC drive. This project    5. Strategy:
describes the design goals and user requirements for         i.  To design system having DC geared motors .
this device; explains the component                              For arm movement servo motors are to be
selection process; discusses details of the mechanical           programmed.(Fig.2)
design, electrical system and low-level controller;         ii.  Tests: Maximum speed,                  Climbing
covers manufacturing concerns; and describes the                 ability, Descending ability,           Breaking
testing.                                                         performance,            Static          stability
         BLDC (Brushless DC Motors) for wheeled                  , Obstacle climbing ,Turning performance
chair and servo motor for arm are controlled by                  , Traveling performance, Fatigue strength
Microcontroller. Microcontroller works on AI logic.        iii.  Ergonomics :Basic body dimensions ,
                                                                 Seating and support aspects,Reach out
2. Problem Statement :                                           distances, Clearances and gaps,Safety during
         To make low cost AI system for wheeled                  use,     The     Sensory       and     cognitive
chair vehicle with robotic arm to understand path and            factors,Assistive features for patients

                                                          iv.     Line Following system ( Fig. 1 Block
                                                                  Diagram)
                                                           v.     System algorithum and testing on turbo C++
                                                                  platform.(Fig. 2,3,4,5,6)
                                                                                                  738 | P a g e
Giridhar S. Chavan, Prof. Ashok S. Patole** & Prof. Vinayak H. Khatawate / International
          Journal of Engineering Research and Applications (IJERA) ISSN: 2248-9622
                   www.ijera.com Vol. 2, Issue 4, June-July 2012, pp.738-741
                                                  Fig. 3 Nine Stations

Figurs and Flow charts :




                                                  Fig. 4: Posible path to reach station 1 to 5



        Fig. 1 :Line Following system (Block
        Diagram)




Fig. 2 : Scale model                              Fig.5: Main Algorithum




                                                                                            739 | P a g e
Giridhar S. Chavan, Prof. Ashok S. Patole** & Prof. Vinayak H. Khatawate / International
             Journal of Engineering Research and Applications (IJERA) ISSN: 2248-9622
                      www.ijera.com Vol. 2, Issue 4, June-July 2012, pp.738-741
                                                         OBSTACLE"<<a<<"                        SECOND
                                                         OBSTACLE"<<b<<endl;

                                                           if(a==12||a==23||a==29||a==34)

                                                           z=1;

                                                           else

                                                           if(a==49||a==45)

                                                           z=2;

                                                           if(a==81||a==78||a==67||a==89)

                                                           z=3;

                                                           else

                                                           if(a==69||a==56)

                                                           z=4;

                                                           switch(z)
Fig.6: Main Server algorithum                              {
          To practice algorithms; here I have used         case (1):
Turbo C++ as platform, which is then we have to
convert it in to embedded C . In this we have taken        {
Nine stations. Out of Nine stations ; we have shown
one example i.e. current position is First and target      if(b==78||b==67||b==69||b==56)
position is Fifth. .Now if any obstacles are in their
path then machine will connect to main server and          cout<<"PATH IS 81,89,49,45"<<endl;
communicate with server. Server will give instructions
to machine then machine will take decision about           else
path.
                                                           if(b==78||b==67||b==49||b==45)
#include<iostream.h>
                                                           cout<<"PATH IS 81,89,69,56"<<endl;
   int cp,tp,a,b,c,d,x,y,z,p;
                                                           else
   void main()
                                                           cout<<"PATH IS 81,78,67,56"<<endl;
   {
                                                           break;
  cout<<"ENTER CURRENT POSITON; TARGET
POSITION AND OBSTACLE POSITION"<<endl;                     }

  cout<<"GIVE OBSTACLE POSITION IN                         case 2:
SEQUENCE     12,23,34,45,56,67,78,81,29,49,69,89
                                                           {
="<<endl;
                                                           if(b==78||b==67)
   cin>>cp>>tp>>a>>b;
                                                           cout<<"PATH IS 81,89,69,56"<<endl;
   cout<<"CURRENT POSITION="<<cp<<"    and
"<<"    TARGET POSITION="<<tp<<"    FIRST                  else


                                                                                            740 | P a g e
Giridhar S. Chavan, Prof. Ashok S. Patole** & Prof. Vinayak H. Khatawate / International
            Journal of Engineering Research and Applications (IJERA) ISSN: 2248-9622
                     www.ijera.com Vol. 2, Issue 4, June-July 2012, pp.738-741
  cout<<"PATH IS 81,78,67,56"<<endl;                }

  break;                                            Conclusion :
                                                             We feel that this design will surpass previous
  }                                                 attempts at building wheelchair mounted robotic arms
                                                    that are truly useful and convenient. Subsequent
  case (3):                                         testing, and ultimately the market, will determine
                                                    project value . This project considers the development
  {
                                                    of a wireless control of powered wheelchairs, which
  if(b==23||b==34||b==45||b==49)                    would be of great help to the physically disabled
                                                    people.
  cout<<"PATH IS 12,29,69,56"<<endl;
                                                     4. Scope of the Project :
  else                                                        Use of AI system will change the life style of
                                                     disable person. Algorithms shown can implement for
  if(b==23||b==34||b==69||b==56)                     future modern mechanical machine which will work
                                                     not only intelligently but also fix life standard of
  cout<<"PATH IS 12,29,49,45"<<endl;                 disable person.

  else                                              7. Requirement Analysis :
                                                    Hardware requirements :
  cout<<"PATH IS 12,23,34,45"<<endl;                    i. ATMEL AT Mega 16 microcontroller with
                                                           16 kB flash memory working at 16 Mips
  break;
                                                       ii. 2 on board dual full H bridge motor driver
  }                                                        (L293D) for 4 DC motors.
                                                      iii. On board regulated power supply, RF
  case 4:                                                  module.
                                                      iv.  On board LCD connector ,Line following
  {                                                        Sensors and Obstacle sensor..
                                                    Software requirements :
  if(b==23||b==34)                                      i. win RAR
                                                       ii. Proteus 7.7 SP2 portable
  cout<<"PATH IS 12,29,49,45"<<endl;                  iii. Dev C++
                                                      iv.  Turbo C++
  else

  cout<<"PATH IS 12,23,34,45"<<endl;                REFERENCES
                                                    1.     Abdalla A and Lilong Cai, " Stability Analysis
  break;
                                                           of robot manipulators subject to feedforward
  }                                                        neural network controllers", 1994 IEEE
                                                           International   Conference     Robotics    and
  default:                                                 Automation, Volume 3, Page 2588-2593.
                                                    2.      R. Chatila and J.P. Laumond, " Position
  {                                                        referencing and consistent world modelling for
  cout<<"OBSTACLE LOCATIONS ARE NOT                        mobile robots", in Proceedings of IEEE Int.
PROPER"<<endl;                                             Conf. Robotics and Automation, 1985, page
                                                           138 - 145.
  break;                                            3.      Ya Lei Sun and Meng Joo, "Hybrid fuzzy
                                                           control of robotics systems", Fuzzy Systems,
  }                                                        IEEE Transactions, Vol. 12, Issue 6, Dec. 2004
                                                           Page; 755 -765.
  }




                                                                                             741 | P a g e

More Related Content

Viewers also liked (20)

Ds24756760
Ds24756760Ds24756760
Ds24756760
 
Eg24842846
Eg24842846Eg24842846
Eg24842846
 
Ea24804807
Ea24804807Ea24804807
Ea24804807
 
Cz24655657
Cz24655657Cz24655657
Cz24655657
 
Dy24788797
Dy24788797Dy24788797
Dy24788797
 
R26104116
R26104116R26104116
R26104116
 
O26087092
O26087092O26087092
O26087092
 
J26048056
J26048056J26048056
J26048056
 
T26123129
T26123129T26123129
T26123129
 
Hg3113981406
Hg3113981406Hg3113981406
Hg3113981406
 
Df31729732
Df31729732Df31729732
Df31729732
 
Organizaciones inscritas-consulta-prelegislativa
Organizaciones inscritas-consulta-prelegislativaOrganizaciones inscritas-consulta-prelegislativa
Organizaciones inscritas-consulta-prelegislativa
 
Historia clínica electrónica y sus aledaños. Resumen de entradas al blog 2014
Historia clínica electrónica y sus aledaños. Resumen de entradas al blog 2014Historia clínica electrónica y sus aledaños. Resumen de entradas al blog 2014
Historia clínica electrónica y sus aledaños. Resumen de entradas al blog 2014
 
Nossas Escolas
Nossas EscolasNossas Escolas
Nossas Escolas
 
automation
automationautomation
automation
 
34231258 solucao-anpad-rq-set-2007
34231258 solucao-anpad-rq-set-200734231258 solucao-anpad-rq-set-2007
34231258 solucao-anpad-rq-set-2007
 
Learning Event No. 9, Session 1: Adamou. ARDD2012 Rio,
Learning Event No. 9, Session 1: Adamou. ARDD2012 Rio, Learning Event No. 9, Session 1: Adamou. ARDD2012 Rio,
Learning Event No. 9, Session 1: Adamou. ARDD2012 Rio,
 
Adriana Tuglema
Adriana TuglemaAdriana Tuglema
Adriana Tuglema
 
Acceso a usuarios anónimos
Acceso a usuarios anónimosAcceso a usuarios anónimos
Acceso a usuarios anónimos
 
Salud 2 0
Salud 2 0Salud 2 0
Salud 2 0
 

Similar to Do24738741

Machine-learning based performance heuristics for Runtime CPU/GPU Selection i...
Machine-learning based performance heuristics for Runtime CPU/GPU Selection i...Machine-learning based performance heuristics for Runtime CPU/GPU Selection i...
Machine-learning based performance heuristics for Runtime CPU/GPU Selection i...Akihiro Hayashi
 
EMBED SYSTEM FOR ROBOTIC ARM WITH 3 DEGREE OF FREEDOM CONTROLLER USING COMPUT...
EMBED SYSTEM FOR ROBOTIC ARM WITH 3 DEGREE OF FREEDOM CONTROLLER USING COMPUT...EMBED SYSTEM FOR ROBOTIC ARM WITH 3 DEGREE OF FREEDOM CONTROLLER USING COMPUT...
EMBED SYSTEM FOR ROBOTIC ARM WITH 3 DEGREE OF FREEDOM CONTROLLER USING COMPUT...csandit
 
Reducing computational complexity of Mathematical functions using FPGA
Reducing computational complexity of Mathematical functions using FPGAReducing computational complexity of Mathematical functions using FPGA
Reducing computational complexity of Mathematical functions using FPGAnehagaur339
 
OpenCVand Matlab based Car Parking System Module for Smart City using Circle ...
OpenCVand Matlab based Car Parking System Module for Smart City using Circle ...OpenCVand Matlab based Car Parking System Module for Smart City using Circle ...
OpenCVand Matlab based Car Parking System Module for Smart City using Circle ...JANAK TRIVEDI
 
Computer graphics
Computer graphics Computer graphics
Computer graphics shafiq sangi
 
AUTO LANDING PROCESS FOR AUTONOMOUS FLYING ROBOT BY USING IMAGE PROCESSING BA...
AUTO LANDING PROCESS FOR AUTONOMOUS FLYING ROBOT BY USING IMAGE PROCESSING BA...AUTO LANDING PROCESS FOR AUTONOMOUS FLYING ROBOT BY USING IMAGE PROCESSING BA...
AUTO LANDING PROCESS FOR AUTONOMOUS FLYING ROBOT BY USING IMAGE PROCESSING BA...csandit
 
IRJET-Hardware Co-Simulation of Classical Edge Detection Algorithms using Xil...
IRJET-Hardware Co-Simulation of Classical Edge Detection Algorithms using Xil...IRJET-Hardware Co-Simulation of Classical Edge Detection Algorithms using Xil...
IRJET-Hardware Co-Simulation of Classical Edge Detection Algorithms using Xil...IRJET Journal
 
Questions On The Equation For Regression
Questions On The Equation For RegressionQuestions On The Equation For Regression
Questions On The Equation For RegressionTiffany Sandoval
 
IRJET - Radius Approach for Inverse Kinematics of 4-R Manipulator in Spatial ...
IRJET - Radius Approach for Inverse Kinematics of 4-R Manipulator in Spatial ...IRJET - Radius Approach for Inverse Kinematics of 4-R Manipulator in Spatial ...
IRJET - Radius Approach for Inverse Kinematics of 4-R Manipulator in Spatial ...IRJET Journal
 
A Review on Automatic Staircase Climbing Platform
A Review on Automatic Staircase Climbing PlatformA Review on Automatic Staircase Climbing Platform
A Review on Automatic Staircase Climbing PlatformIRJET Journal
 
Portfolio control version sn_v5
Portfolio control version sn_v5Portfolio control version sn_v5
Portfolio control version sn_v5Samuel Narcisse
 
IRJET - Hand Gesture Recognition to Perform System Operations
IRJET -  	  Hand Gesture Recognition to Perform System OperationsIRJET -  	  Hand Gesture Recognition to Perform System Operations
IRJET - Hand Gesture Recognition to Perform System OperationsIRJET Journal
 
MAtrix Multiplication Parallel.ppsx
MAtrix Multiplication Parallel.ppsxMAtrix Multiplication Parallel.ppsx
MAtrix Multiplication Parallel.ppsxBharathiLakshmiAAssi
 
A Proportional-Integral-Derivative Control Scheme of Mobile Robotic platforms...
A Proportional-Integral-Derivative Control Scheme of Mobile Robotic platforms...A Proportional-Integral-Derivative Control Scheme of Mobile Robotic platforms...
A Proportional-Integral-Derivative Control Scheme of Mobile Robotic platforms...IOSR Journals
 

Similar to Do24738741 (20)

Machine-learning based performance heuristics for Runtime CPU/GPU Selection i...
Machine-learning based performance heuristics for Runtime CPU/GPU Selection i...Machine-learning based performance heuristics for Runtime CPU/GPU Selection i...
Machine-learning based performance heuristics for Runtime CPU/GPU Selection i...
 
EMBED SYSTEM FOR ROBOTIC ARM WITH 3 DEGREE OF FREEDOM CONTROLLER USING COMPUT...
EMBED SYSTEM FOR ROBOTIC ARM WITH 3 DEGREE OF FREEDOM CONTROLLER USING COMPUT...EMBED SYSTEM FOR ROBOTIC ARM WITH 3 DEGREE OF FREEDOM CONTROLLER USING COMPUT...
EMBED SYSTEM FOR ROBOTIC ARM WITH 3 DEGREE OF FREEDOM CONTROLLER USING COMPUT...
 
Reducing computational complexity of Mathematical functions using FPGA
Reducing computational complexity of Mathematical functions using FPGAReducing computational complexity of Mathematical functions using FPGA
Reducing computational complexity of Mathematical functions using FPGA
 
OpenCVand Matlab based Car Parking System Module for Smart City using Circle ...
OpenCVand Matlab based Car Parking System Module for Smart City using Circle ...OpenCVand Matlab based Car Parking System Module for Smart City using Circle ...
OpenCVand Matlab based Car Parking System Module for Smart City using Circle ...
 
Fpga human detection
Fpga human detectionFpga human detection
Fpga human detection
 
Computer graphics
Computer graphics Computer graphics
Computer graphics
 
AUTO LANDING PROCESS FOR AUTONOMOUS FLYING ROBOT BY USING IMAGE PROCESSING BA...
AUTO LANDING PROCESS FOR AUTONOMOUS FLYING ROBOT BY USING IMAGE PROCESSING BA...AUTO LANDING PROCESS FOR AUTONOMOUS FLYING ROBOT BY USING IMAGE PROCESSING BA...
AUTO LANDING PROCESS FOR AUTONOMOUS FLYING ROBOT BY USING IMAGE PROCESSING BA...
 
IRJET-Hardware Co-Simulation of Classical Edge Detection Algorithms using Xil...
IRJET-Hardware Co-Simulation of Classical Edge Detection Algorithms using Xil...IRJET-Hardware Co-Simulation of Classical Edge Detection Algorithms using Xil...
IRJET-Hardware Co-Simulation of Classical Edge Detection Algorithms using Xil...
 
Questions On The Equation For Regression
Questions On The Equation For RegressionQuestions On The Equation For Regression
Questions On The Equation For Regression
 
IRJET - Radius Approach for Inverse Kinematics of 4-R Manipulator in Spatial ...
IRJET - Radius Approach for Inverse Kinematics of 4-R Manipulator in Spatial ...IRJET - Radius Approach for Inverse Kinematics of 4-R Manipulator in Spatial ...
IRJET - Radius Approach for Inverse Kinematics of 4-R Manipulator in Spatial ...
 
A Review on Automatic Staircase Climbing Platform
A Review on Automatic Staircase Climbing PlatformA Review on Automatic Staircase Climbing Platform
A Review on Automatic Staircase Climbing Platform
 
Automatic P2R Published Paper P1277-1283
Automatic P2R Published Paper P1277-1283Automatic P2R Published Paper P1277-1283
Automatic P2R Published Paper P1277-1283
 
UNIT 1.pdf
UNIT 1.pdfUNIT 1.pdf
UNIT 1.pdf
 
UNIT 1.pptx
UNIT 1.pptxUNIT 1.pptx
UNIT 1.pptx
 
Portfolio control version sn_v5
Portfolio control version sn_v5Portfolio control version sn_v5
Portfolio control version sn_v5
 
IRJET - Hand Gesture Recognition to Perform System Operations
IRJET -  	  Hand Gesture Recognition to Perform System OperationsIRJET -  	  Hand Gesture Recognition to Perform System Operations
IRJET - Hand Gesture Recognition to Perform System Operations
 
Cadancesimulation
CadancesimulationCadancesimulation
Cadancesimulation
 
MAtrix Multiplication Parallel.ppsx
MAtrix Multiplication Parallel.ppsxMAtrix Multiplication Parallel.ppsx
MAtrix Multiplication Parallel.ppsx
 
matrixmultiplicationparallel.ppsx
matrixmultiplicationparallel.ppsxmatrixmultiplicationparallel.ppsx
matrixmultiplicationparallel.ppsx
 
A Proportional-Integral-Derivative Control Scheme of Mobile Robotic platforms...
A Proportional-Integral-Derivative Control Scheme of Mobile Robotic platforms...A Proportional-Integral-Derivative Control Scheme of Mobile Robotic platforms...
A Proportional-Integral-Derivative Control Scheme of Mobile Robotic platforms...
 

Do24738741

  • 1. Giridhar S. Chavan, Prof. Ashok S. Patole** & Prof. Vinayak H. Khatawate / International Journal of Engineering Research and Applications (IJERA) ISSN: 2248-9622 www.ijera.com Vol. 2, Issue 4, June-July 2012, pp.738-741 ARTIFICIAL INTELLIGENCE SYSTEM FOR REMOTELY CONTROLLED WHEELED VEHICLE SYSTEM FOR DISABLED PERSON Giridhar S. Chavan* Prof. Ashok S. Patole** & Prof. Vinayak H. Khatawate** *(FR.CRCE, Department of Production Engineering, Bandstand, Mumbai-50)**(PIIT,New Mumbai) ABSTRACT : The aim of this project is to AI controlling control it. Our intention is to study and develop AI a wheelchair-mounted robotic arm by using logic for controlling of Wheel Chair. microcontroller. This project makes use of a micro controller, which is programmed, with the help of 3. Methodology : embedded C instructions[3]. This microcontroller i. A study of several regulation and guideline is capable of communicating with transmitter and concerning the design of a vehicle receiver modules of RF module. The sensor detects ii. A study of path control and assistance to the path and provides the information to the disable person by communicating with main microcontroller (on board computer) and the server using AI logic[1]. controller judges whether the instruction is right iii. Design improvement and modification & movement or left movement instruction Testing and controls the direction respectively. The iv. Production of final Engineering Drawing & controller is interfaced with two dc motors to Fabrication control the direction of the wheel chair and servo motors for arm movements. 4.Objectives of project. i. To devlop AI controlled wheelchairs to meet Keywords - AI , wireless control of powered the strength, durability and safety wheelchairs , wheelchair-mounted robotic arm , requirements of user(s) in their own ATMEGA16, BLDC motors environment(s)[2]. ii. To study recommendations that each 1. Introduction : country develop its own wheelchair standards A wheelchair-mounted robotic arm is to ensure a reasonable quality, for instance by designed and built to meet the needs of mobility- using the ISO 7176 series of standards as a impaired persons, and to exceed the capabilities of basis. current devices of this type using AI logic. The mechanical design incorporates DC drive. This project 5. Strategy: describes the design goals and user requirements for i. To design system having DC geared motors . this device; explains the component For arm movement servo motors are to be selection process; discusses details of the mechanical programmed.(Fig.2) design, electrical system and low-level controller; ii. Tests: Maximum speed, Climbing covers manufacturing concerns; and describes the ability, Descending ability, Breaking testing. performance, Static stability BLDC (Brushless DC Motors) for wheeled , Obstacle climbing ,Turning performance chair and servo motor for arm are controlled by , Traveling performance, Fatigue strength Microcontroller. Microcontroller works on AI logic. iii. Ergonomics :Basic body dimensions , Seating and support aspects,Reach out 2. Problem Statement : distances, Clearances and gaps,Safety during To make low cost AI system for wheeled use, The Sensory and cognitive chair vehicle with robotic arm to understand path and factors,Assistive features for patients iv. Line Following system ( Fig. 1 Block Diagram) v. System algorithum and testing on turbo C++ platform.(Fig. 2,3,4,5,6) 738 | P a g e
  • 2. Giridhar S. Chavan, Prof. Ashok S. Patole** & Prof. Vinayak H. Khatawate / International Journal of Engineering Research and Applications (IJERA) ISSN: 2248-9622 www.ijera.com Vol. 2, Issue 4, June-July 2012, pp.738-741 Fig. 3 Nine Stations Figurs and Flow charts : Fig. 4: Posible path to reach station 1 to 5 Fig. 1 :Line Following system (Block Diagram) Fig. 2 : Scale model Fig.5: Main Algorithum 739 | P a g e
  • 3. Giridhar S. Chavan, Prof. Ashok S. Patole** & Prof. Vinayak H. Khatawate / International Journal of Engineering Research and Applications (IJERA) ISSN: 2248-9622 www.ijera.com Vol. 2, Issue 4, June-July 2012, pp.738-741 OBSTACLE"<<a<<" SECOND OBSTACLE"<<b<<endl; if(a==12||a==23||a==29||a==34) z=1; else if(a==49||a==45) z=2; if(a==81||a==78||a==67||a==89) z=3; else if(a==69||a==56) z=4; switch(z) Fig.6: Main Server algorithum { To practice algorithms; here I have used case (1): Turbo C++ as platform, which is then we have to convert it in to embedded C . In this we have taken { Nine stations. Out of Nine stations ; we have shown one example i.e. current position is First and target if(b==78||b==67||b==69||b==56) position is Fifth. .Now if any obstacles are in their path then machine will connect to main server and cout<<"PATH IS 81,89,49,45"<<endl; communicate with server. Server will give instructions to machine then machine will take decision about else path. if(b==78||b==67||b==49||b==45) #include<iostream.h> cout<<"PATH IS 81,89,69,56"<<endl; int cp,tp,a,b,c,d,x,y,z,p; else void main() cout<<"PATH IS 81,78,67,56"<<endl; { break; cout<<"ENTER CURRENT POSITON; TARGET POSITION AND OBSTACLE POSITION"<<endl; } cout<<"GIVE OBSTACLE POSITION IN case 2: SEQUENCE 12,23,34,45,56,67,78,81,29,49,69,89 { ="<<endl; if(b==78||b==67) cin>>cp>>tp>>a>>b; cout<<"PATH IS 81,89,69,56"<<endl; cout<<"CURRENT POSITION="<<cp<<" and "<<" TARGET POSITION="<<tp<<" FIRST else 740 | P a g e
  • 4. Giridhar S. Chavan, Prof. Ashok S. Patole** & Prof. Vinayak H. Khatawate / International Journal of Engineering Research and Applications (IJERA) ISSN: 2248-9622 www.ijera.com Vol. 2, Issue 4, June-July 2012, pp.738-741 cout<<"PATH IS 81,78,67,56"<<endl; } break; Conclusion : We feel that this design will surpass previous } attempts at building wheelchair mounted robotic arms that are truly useful and convenient. Subsequent case (3): testing, and ultimately the market, will determine project value . This project considers the development { of a wireless control of powered wheelchairs, which if(b==23||b==34||b==45||b==49) would be of great help to the physically disabled people. cout<<"PATH IS 12,29,69,56"<<endl; 4. Scope of the Project : else Use of AI system will change the life style of disable person. Algorithms shown can implement for if(b==23||b==34||b==69||b==56) future modern mechanical machine which will work not only intelligently but also fix life standard of cout<<"PATH IS 12,29,49,45"<<endl; disable person. else 7. Requirement Analysis : Hardware requirements : cout<<"PATH IS 12,23,34,45"<<endl; i. ATMEL AT Mega 16 microcontroller with 16 kB flash memory working at 16 Mips break; ii. 2 on board dual full H bridge motor driver } (L293D) for 4 DC motors. iii. On board regulated power supply, RF case 4: module. iv. On board LCD connector ,Line following { Sensors and Obstacle sensor.. Software requirements : if(b==23||b==34) i. win RAR ii. Proteus 7.7 SP2 portable cout<<"PATH IS 12,29,49,45"<<endl; iii. Dev C++ iv. Turbo C++ else cout<<"PATH IS 12,23,34,45"<<endl; REFERENCES 1. Abdalla A and Lilong Cai, " Stability Analysis break; of robot manipulators subject to feedforward } neural network controllers", 1994 IEEE International Conference Robotics and default: Automation, Volume 3, Page 2588-2593. 2. R. Chatila and J.P. Laumond, " Position { referencing and consistent world modelling for cout<<"OBSTACLE LOCATIONS ARE NOT mobile robots", in Proceedings of IEEE Int. PROPER"<<endl; Conf. Robotics and Automation, 1985, page 138 - 145. break; 3. Ya Lei Sun and Meng Joo, "Hybrid fuzzy control of robotics systems", Fuzzy Systems, } IEEE Transactions, Vol. 12, Issue 6, Dec. 2004 Page; 755 -765. } 741 | P a g e