simple line follower robot program

FOLLOWER ROBOT 1

FOLLOWER ROBOT 1

Ngày tải lên: 15/09/2013, 21:51

1 427 1
Line tracking robot

Line tracking robot

Ngày tải lên: 22/05/2014, 20:53

71 930 6
Robot dò line

Robot dò line

... hiểm thay thế con người, robot giúp người già, robot bán hàng…v.v. Trong đồ án lần này em thực hiện làm robot dò line, so với những robot trên thì nó chỉ là 1 robot nhỏ, đơn giản nhưng ... cách hoạt động của robotline chúng ta có thể phát triển rộng hơn để tạo nên những robot có ứng dụng thực tế hơn như robot thay con người đi vào những nơi nguy hiểm, những robot làm 1 công ... /***************************************************** Project : DO AN MON HOC 1 ( Robot do line) Version : 1.0 Date : 20/12/2010 Author : Pham Quoc Gia Company : Lop 08-DTD Comments: Chip type : ATmega8 Program type : Application Clock...

Ngày tải lên: 25/04/2013, 13:45

28 2,7K 3
Writing a Simple Program in an Assembly Language

Writing a Simple Program in an Assembly Language

... This prevents the program from proceeding and running away. The program, however, is still incomplete. This program does not indicate at which address of the memory the program itself should ... .END control instruction must be written on the last line. Finally, a complete program is written as shown in List 4.1. List 4.1: Simplest Program h t t p : / / r e s o u r c e . r e n ... . r e n e s a s . c o m Page 29 Chapter 4 Writing a Simple Program in an Assembly Language This chapter gives an overview of a program developed in an assembly language used by the...

Ngày tải lên: 29/09/2013, 11:20

24 534 0
VHDL Programming by Example 4th Edition

VHDL Programming by Example 4th Edition

... state- ment. It starts at the line beginning with the keyword PROCESS and ends with the line that contains END PROCESS . All the statements between these two lines are considered part of the ... of describing very complex behavior. Learning all the features of VHDL is not a simple task. Complex features will be introduced in a simple form and then more complex usage will be described. 1 Chapter ... 86 Incomplete Types 98 File Types 102 File Type Caveats 105 Subtypes 105 Chapter 5 Subprograms and Packages 109 Subprograms 110 Function 110 Contents vi Chapter Two 18 I0 I1 A B Q MUX4 I3 I2 Figure...

Ngày tải lên: 16/08/2012, 08:46

497 1K 14
Action Scrip Game Programing

Action Scrip Game Programing

... document win- dow includes both the stage and the timeline. As you can see in Figure 1.6, this program is much longer than the three -line Hello World program we built earlier. Let’s take a look at what ... object-oriented programs. It was much closer to ECMA Script, a standard for programming languages developed by the European Computer Manufacturers Association. JavaScript, the programming language ... debugger is a whole new animal. Setting a Breakpoint The simplest way to debug a program is to set a break point. You can do this by select- ing a line of your code and choosing Debug, Toggle Breakpoint...

Ngày tải lên: 16/08/2012, 09:03

455 683 2
Atmel AVR Microcontroller Primer Programming and Interfaceing

Atmel AVR Microcontroller Primer Programming and Interfaceing

... turn. 1.2.1 In-System Programmable Flash EEPROM Bulk programmable flash EEPROM is used to store programs. It can be erased and programmed as a single unit. Also, should a program require a large ... up to speed on microcontroller programming and interfacing. If you already know another line of processors, you can quickly apply your knowledge to this powerful line of 8-bit processors. • It ... microcontroller line. The microcontrollers themselves are inexpensive, and the compilers and programming hardware and software are relatively inexpensive. Atmel AVR Microcontroller Primer: Programming...

Ngày tải lên: 16/08/2012, 09:03

194 1,1K 4
The C programming Langguage 2nd Edition

The C programming Langguage 2nd Edition

... length seen so far */ char line[ MAXLINE]; /* current input line */ char longest[MAXLINE]; /* longest line saved here */ max = 0; while ((len = getline (line, MAXLINE)) > 0) if (len > ... MAXLINE 1000 /* maximum input line length */ int getline(char line[ ], int maxline); void copy(char to[], char from[]); /* print the longest input line */ main() { int len; /* current line ... manipulate them, let's write a program that reads a set of text lines and prints the longest. The outline is simple enough: while (there's another line) if (it's longer than the...

Ngày tải lên: 16/08/2012, 11:09

217 864 1
C# Coding Standards and Best Programming Practices

C# Coding Standards and Best Programming Practices

... members in the bottom. 9. Good Programming practices 1. Avoid writing very long methods. A method should typically have 1~25 lines of code. If a method has more than 25 lines of code, you must consider ... should be one and only one single blank line between each method inside the class. 6. The curly braces should be on a separate line and not in the same line as if, for etc. Good: if ( ) { // ... example: public string ComposeMessage (string[] lines) { string message = String.Empty; for (int i = 0; i < lines.Length; i++) { message += lines [i]; } return message; } In the above...

Ngày tải lên: 18/08/2012, 08:47

18 811 1
C Sharp 2.0 Practical Guide For Programmers

C Sharp 2.0 Practical Guide For Programmers

... for Programmers ! Great book for any C# developer! It describes the basic programming language with EBNF notation and provides a number of practical programming tips and best practices on program ... simple but complete C# program that is made up of two compila- tion units. Second, we show how a single class can be divided across several compilation units. 2.4.1 Presenting a Complete C# Program Although ... name>" and "<last name>". The for loop, which begins on line 11 and encom- passes statements from line 12 to line 21, is then executed five times. For each iteration, the string variables...

Ngày tải lên: 20/08/2012, 11:57

273 618 2
Foundations of Java for ABAP Programmers

Foundations of Java for ABAP Programmers

... present a simple “Hello World” type of program, explore some OO basics, and then return to Java. That’s what we’ll do here. Hello World of Abapers Let’s have a look at a simple ABAP program. REPORT ... 1 That’s it! That’s your first program. Now we need to “activate” it, like we would activate the ABAP program, and the process in Java is somewhat similar. The Java program does not compile to native ... heard people say that it takes from six months to a year to convert a procedural programmer to an object-ori- ented programmer. You can only benefit from learning and applying OO principles, so...

Ngày tải lên: 21/08/2012, 09:30

216 572 6
Questions to .NET and Programming in C#

Questions to .NET and Programming in C#

... Console.WriteLine("Two");break; 4. case 2+1: Console.WriteLine("Three");break; 5. default : Console.WriteLine(j); } [2.0] a) The code is illegal because of expression at line ... Console.WriteLine("One"); } else { Console.WriteLine("Two"); } else if(z>5){ Console.WriteLine("Three"); } else { Console.WriteLine("Four"); ... Compilation error at line 2. c) No compilation error, but runtime exception at line 3. b) Compilation error at line 7. d) No compilation error, but runtime exception at line 7. 88. class...

Ngày tải lên: 21/08/2012, 15:55

18 1,3K 8
w