<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://projectswiki.eleceng.adelaide.edu.au/projects/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=A1660495</id>
	<title>Projects - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://projectswiki.eleceng.adelaide.edu.au/projects/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=A1660495"/>
	<link rel="alternate" type="text/html" href="https://projectswiki.eleceng.adelaide.edu.au/projects/index.php/Special:Contributions/A1660495"/>
	<updated>2026-05-05T06:34:44Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.31.4</generator>
	<entry>
		<id>https://projectswiki.eleceng.adelaide.edu.au/projects/index.php?title=File:Optimal_multi-robot_path_planning.png&amp;diff=5878</id>
		<title>File:Optimal multi-robot path planning.png</title>
		<link rel="alternate" type="text/html" href="https://projectswiki.eleceng.adelaide.edu.au/projects/index.php?title=File:Optimal_multi-robot_path_planning.png&amp;diff=5878"/>
		<updated>2016-05-26T05:17:52Z</updated>

		<summary type="html">&lt;p&gt;A1660495: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>A1660495</name></author>
		
	</entry>
	<entry>
		<id>https://projectswiki.eleceng.adelaide.edu.au/projects/index.php?title=Projects:2015s2-207_Tracking,_Herding_and_Routing_by_Autonomous_Smart_Cars&amp;diff=5877</id>
		<title>Projects:2015s2-207 Tracking, Herding and Routing by Autonomous Smart Cars</title>
		<link rel="alternate" type="text/html" href="https://projectswiki.eleceng.adelaide.edu.au/projects/index.php?title=Projects:2015s2-207_Tracking,_Herding_and_Routing_by_Autonomous_Smart_Cars&amp;diff=5877"/>
		<updated>2016-05-26T05:16:57Z</updated>

		<summary type="html">&lt;p&gt;A1660495: /* Tracking Algorithm */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Introduction==&lt;br /&gt;
&lt;br /&gt;
To aid with the exploration of unknown environments, a platform consisting of a computer base, a quadcopter camera and multiple Arduino robots all communicating through WiFi was designed. The initial requirement of the project, known as tracking, involves tracking a particular mobile target represented by one Arduino robot and initiating a specific formation around it using the remainder of the Arduino robots. The second requirement, known as herding, requires the tracking Arduino robots to maintain the formation around the target object as the target object moves. The final requirement, known as routing, involves the navigation through an unknown environment to find the shortest path out of a maze.&lt;br /&gt;
&lt;br /&gt;
==Project Hardware==&lt;br /&gt;
&lt;br /&gt;
===Arduino Robots===&lt;br /&gt;
&lt;br /&gt;
The Arduino Robot, shown in Figure 1, was selected to be the hardware representing the required smart car. The decision was made based on the fact that the unit is readily available in the market for a decent price and will save us the time and effort of developing hardware with similar functionality, enabling us to focus on the scope of this project.&lt;br /&gt;
&lt;br /&gt;
The main features of the Arduino Robot include:&lt;br /&gt;
*Ready to use movement and control systems&lt;br /&gt;
*Two boards, the motor board for movement control and the control board to read in data from devices such as sensors to provide movement instructions&lt;br /&gt;
*Fully programmable using the Arduino Integrated Development Environment (IDE)&lt;br /&gt;
*ATmega32u4 microprocessor, which has a reasonable amount of computational power and on-board memory&lt;br /&gt;
*Additional on board memory space in case more storage space is required&lt;br /&gt;
*Multiple extension slots to easily allow the connection of devices such as sensors, WiFi adapters, gyroscopes and many more that are developed specifically for the Arduino systems&lt;br /&gt;
*Technical support readily available through online resources and forums on the Arduino official website&lt;br /&gt;
&lt;br /&gt;
[[File: Arduino small.jpeg|Center|300px]]&lt;br /&gt;
&lt;br /&gt;
Figure 1: The Arduino Robot&lt;br /&gt;
&lt;br /&gt;
===Arduino WiFi Shield===&lt;br /&gt;
&lt;br /&gt;
The Arduino WiFi Shield, shown in figures X and Y, was selected as the hardware used to establish the WiFi communication in the system. The primary reason for the selection is due to the ease of integration with the Arduino robot as it was designed specifically for the purpose of connecting the Arduino devices to the WiFi network and technical support is readily available if needed through the Arduino website.&lt;br /&gt;
&lt;br /&gt;
The Arduino WiFi Shield allows an Arduino robot to connect to the internet using the 802.11b/g wireless specification which will allow transmission speeds up to 54 mbps. It supports both TCP and UDP transmission protocols however in this project, we will only use UDP due to it being a lot quicker than TCP and will result in much less latency.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[File:WiFi front.jpg |300px]]&lt;br /&gt;
[[File:WiFi back.jpg |300px]]&lt;br /&gt;
&lt;br /&gt;
Figure 2: Wifi Shield Front (Left) and Back (Right) View &lt;br /&gt;
&lt;br /&gt;
===Computer Base===&lt;br /&gt;
&lt;br /&gt;
The computer base was used as the central command unit of the smart cars. Its main function was to receive the input information from the camera via the communication system and process that as well as any other required information and transmit a set of instructions to the smart cars. The computer base was particularly important as the smart have very limited processing power so we intended to do all the processing on the computer and only send out the final results to the smart cars.&lt;br /&gt;
&lt;br /&gt;
===IP Camera===&lt;br /&gt;
&lt;br /&gt;
iPhone 6Plus camera was used as the IP Camera instead of the quadcopter due to environment restrictions. &lt;br /&gt;
&lt;br /&gt;
==Software Development==&lt;br /&gt;
&lt;br /&gt;
===Tracking Algorithm===&lt;br /&gt;
&lt;br /&gt;
[[File:optimal multi-robot path planning.png]]&lt;br /&gt;
&lt;br /&gt;
This is an algorithm used to calculate the minimum path for multi-robot. According to the calculation, 96 kinds (4 groups, 24kinds of possibilities in each group) will be considered and come out an minimum result for the summation of all the robots.&lt;br /&gt;
&lt;br /&gt;
===WiFi Communication===&lt;br /&gt;
&lt;br /&gt;
To be completed by Shunming &lt;br /&gt;
&lt;br /&gt;
===Collision Avoidance Algorithm===&lt;br /&gt;
&lt;br /&gt;
To be completed by Jianyang &lt;br /&gt;
&lt;br /&gt;
===Object Detection===&lt;br /&gt;
&lt;br /&gt;
To be completed by Nader&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Conclusion==&lt;br /&gt;
&lt;br /&gt;
===Project Outcome===&lt;br /&gt;
&lt;br /&gt;
===Future of the Project===&lt;br /&gt;
&lt;br /&gt;
==Project Team==&lt;br /&gt;
&lt;br /&gt;
===Team Members===&lt;br /&gt;
&lt;br /&gt;
*Nader Madi&lt;br /&gt;
*Peiling Xian&lt;br /&gt;
*Jianyang Sun&lt;br /&gt;
*Shunming Li&lt;br /&gt;
&lt;br /&gt;
===Project Supervisors===&lt;br /&gt;
&lt;br /&gt;
* Dr. Peng Shi&lt;br /&gt;
* Dr Cheng-Chew Lim&lt;br /&gt;
&lt;br /&gt;
===Technical Advisors===&lt;br /&gt;
&lt;br /&gt;
* Hongjun Yu&lt;br /&gt;
* Dongzhe Wang (Semester 2 2015)&lt;br /&gt;
* Zhongrui Hu (Semester 1 2016)&lt;/div&gt;</summary>
		<author><name>A1660495</name></author>
		
	</entry>
</feed>