G.U.N.D.A.M. Didier Lessage, Gabriel Rodriguez, Blake Simonini

Size: px
Start display at page:

Download "G.U.N.D.A.M. Didier Lessage, Gabriel Rodriguez, Blake Simonini"

Transcription

1 G.U.N.D.A.M. Didier Lessage, Gabriel Rodriguez, Blake Simonini School of Electrical Engineering and Computer Science, University of Central Florida, Orlando, Florida Abstract The GUNDAM is a maze solving robot using primarily the wall following method of maze solving to find the exit of a wooden maze. The robot uses a combination of IR and ultrasonic sensors to detect walls and turns. The robot will also transmit this information to a laptop to draw out the layout of the maze and give a visual representation of the area for the user. I. INTRODUCTION The GUNDAM s main mode of transportation will be two motors controlling the left and right side wheels of the chassis. A voltage regulator will be built to control the flow of power to the different physical components of the robot. One ultrasonic sensor will be used to detect any obstacles in of the robot. Two IR sensors will be used to detect distance between the sides of the robot and the walls to its left and right. The motivation for this project was to provide a method of exploration of areas unable to be safely entered by humans safely such as caves and areas with small paths and openings. The robot s ability to detect walls will have the dual purpose of object avoidance and a basic understanding of the layout of the area. For the purpose of this project, the goals have been scaled down to simply be the successful navigation of a maze and transmitting enough information for software to translate it into a 2D layout for the user. The software will also give the user the ability to give the robot parts of a solved maze to travel to. This project was also chosen to feed into the strengths of each of the group members. With two electrical engineers, a heavy focus on the actual hardware was chosen to play to their strengths. A final computer engineer led to the decision of a software side to the design, the maze drawing and pathfinding portion of the GUNDAM. This allowed for each member to give a significant contribution to the project. A. Motor Microcontroller II. DESIGN In order to control the 6VDC motors that we have on our chassis, an H-bridge is needed. Instead of making an H-bridge with individual parts, we decided to buy one that was already made and well documented the L298N. We also opted to get a diode bridge to protect the H-bridge from counter-emf produced by the high inductance of the motors. Then in order to control our H-bridge, we conjoined that with the MSP430 (g2231) MCU. And since the L298N uses transistors for switching and the motors were designed to consume somewhere around 2 Amps when running continuously, we needed to make sure that our motor voltage and amperage was high enough to account for the voltage drops (and energy waste) across the transistors (VSS needed to be about 10.6 volts). We also needed to supply voltage for the TTL logic that controls the transistors (5 volts), as well as supply a high enough voltage for the MSP430 in order to get the maximum clock speed out of it (3.5 volts), while remembering to put in decoupling capacitors for all of our voltage supply inputs. The following represents the design for one motor on the H-bridge. Fig 1. Half H-Bridge for one motor Input 1 0 v 5 v 5 v Input 2 5 v 0 v 5 v Motor1Output1 5 v GND 0 v Motor1Output2 GND 5 v 0 v Results Clockwise Counterclockwise Off Fig 2. Gate Input Table for Each Motor EnableA and EnableB need to be high to enable each half H-bridge to make the full H-bridge that controls both motors. And for protecting the motors from back-emf, the L6210 Schottky Diode bridge is used. It can handle up to 4 amps across a diode and has a low turn on voltage. The following is the design for connecting it to the H-

2 bridge. Fig 3. Diode Bridge for both motors The MSP430 MCU that we used runs at a clock speed of 1Mhz; its function is to balance the motors, use routines to turn the motors so that the robot moves forward, backward, clockwise, and counterclockwise using Pulse Width Modulation for the distance it is commanded, keep the robot centered in a path as it moves down a corridor, and know what possible decisions it can make based on what data the sensors are giving to it. The actual decision handling though will be partly done by an outside controller and the MSP430 will mostly accept commands in this regard. The decisions that will be implemented into this controller are explained in the following. Decision Explanation What Can Be Done Decision 1 Corridor ends Turn Around with no openings Decision 2 Corridor ends with one opening Wait for command: Might be in a Decision 3 Decision 4 Fig 4. Robot Decision Making Corridor ends with two openings Corridor ends with three openings loop Wait for Command: Might be in a loop and doesn t know which path should be taken Wait for Command: Might be in a loop and doesn t know which path should be taken It s also worth noting that the motor microcontroller will handle positioning itself in the direction of new corridors once it is commanded to go down a particular corridor. This is done by placing the sensors towards the back of the chassis, so that as soon as a new corridor is detected by those sensors, the robot will already be accurately centered in that corridor and will only have to rotate a certain angle in order to position itself for navigating down that corridor. B. Chassis Layout The chassis we used has the ability to mount PCBs on it with the capability to stack them on top of each other. The motors came fitted to the chassis, while the battery holder for the three AA batteries does not supply enough voltage and current to be of any use. We also needed a way to mount the sensors, motor microcontroller, PSU, and RF controller so that everything could hook up to each other and there would be no interfering of parts. C. Power Supply and Battery The power supply consists of four different voltage regulators for delivering our power needs. Regulator Switching 10.6 volts 5 amps Linear 5 volts 1.5 amps Linear 3.5 volts 1.5 amps Linear 2.5 volts 1.5 amps Fig 5. Voltage Regulators Function Power to the motors Power to the TTL logic of the H-bridge, as well as the IR and Ultrasonic Sensors Powers the MSP430 in a high power mode Powers the MSP430 in a low power mode There are also lots of pins attached to each voltage source for modularity. This allows us to add components later as we need them and gives us a greater ability for laying out our parts on the chassis as we require it. For a battery we have two lithium ion batteries at 7 volts that we have in series. This will give use 14 volts, which is sufficient to account for the dropout voltage across the 10.6 volt switching regulator. Also, the switching regulator is technically adjusted from 5 volts to 10.6 volts and each voltage input in our circuits have decoupling capacitors to keep any circuits from dropping out as the

3 power demands on the regulators drop and rise too quickly. For testing purposes, we didn t use a battery, but used a laptop power supply rated at 19 volts and 4 amps, which has a built-in transformer and plugs easily into the power connector on the Power Supply on our board. For the battery we had to connect a power connector so that we could plug it into the Power Supply on our board. III. COMMUNICATION SYSTEM A. Communication Subsystem The design of the G.U.N.D.A.M. s communication subsystem will be centered on a microcontroller that can process the signals transmitted from the computer, which requires demodulation and decryption. In addition, to transmit to the computer the microcontroller will be required to encrypt the data, which will be the path taken or other information about the maze, from the main microcontroller and modulate for transmission. The microcontroller in charge of taking the bits received from the transceiver will be an MSP430G2xx. Since the MSP430G2xx has the ability to convert analog-todigital signals a simple AM or FM transceiver can be used for transmissions, but the microcontroller can also accept digital input so using a digital RF transceiver via an SPI interface, which will carry an advantage in reducing the amount of processing the MSP430 has to do. The microcontroller will also be in charge of implementing a simple wireless protocol including AES-128 encryption to communicate with the computer and visa versa. To accomplish this, the code written on the microcontroller will be split into two main parts. One for the purpose of taking data from the main microcontroller in charge of controlling the robot itself and transmitting that data to the computer. In the process of transmitting that data the microcontroller will encrypt it using AES-128 encryption algorithm. The second for the purpose of establishing an initial connection and manage this connection with the device on the computer. The MSP430G2553 microcontroller has the capability of communicating with several devices simultaneously through the use of two-channel serial communication interface, namely USCI_A and USCI_B blocks. The MCU on the computer dongle has to be able to communicate with the RF transceiver through an SPI interface and simultaneously send that data to the computer through an UART interface. Luckily, the MSP430 MCU has the capability to meet both of these application needs. The device that will be on the computer has the same functions as the one on the G.U.N.D.A.M., however; the demodulated and decrypted data will be sent to the computer through a USB interface. The MSP430 has a serial interface to communicate with a computer but this would not work with all computers since many don't have serial ports and it would be ideal to be able to communicate with any computer that has a USB port and can run the software. To combat this problem a CP2102 chip will be used to convert UART to USB, which will allow the MSP430 to send and receive data from the computer. The CP2102, manufactured by Silicon Labs, is a single chip USB to UART Bridge. The computer will recognize this device as a virtual COM port, which in turn can be used by the GUI running on the computer to draw out the map of the maze. The bridge in turn will be connected through TXD and RXD pins, to an MSP430 s UART interface, which is the USCI_A channel. The CP2102 has baud rates up to 921.6kbps so it can handle the transmission speed on the RF transceiver and MCU. It also has a 512 byte transmit and receive buffer, which is over the 64-byte TX and RX FIFO of the RF transceiver, although the MCU will be the middleman between the RF transceiver and the CP2101. B. Interfacing RF Transceivers with MCU All the modulation and demodulation schemes explored are able to accomplish the task of sending and receiving data between the G.U.N.D.A.M. and a computer, however; some schemes provide better features for our application. Frequency and phase modulation provide the ability to transmit a signal with minimal noise and inference, which is ideal in our environment. Phase modulation, in contrast with frequency modulation, in particular provides a way to more easily detect if the signal is lost and give the ability to retransmit any data that is lost. Phase shift keying is a digital modulation scheme that is ideal for the G.U.N.D.A.M. s communication subsystem not only for the reasons previously discussed, but because the data transmitted will be binary data. However, even with the increase spectral efficiency and data rate the frequency modulation techniques over amplitude modulation techniques have higher power consumption. To implement this design an RF transceiver of low-cost and low-power consumption will be used on the G.U.N.D.A.M. and the computer communication device. This transceiver will be the low power IC chip

4 from Hope Microelectronics, RFM12B that has the ability to modulate and demodulate a binary signal using multi-channel FSK. This RF transceiver is very versatile and has many programmable features, such as frequency, power output, channel filter bandwidth, and Carrier Sense indictor among many others. The RFM12B RF transceiver module has very low power consumption at 14mA in TX mode operating at 433MHz. The RF transceiver module will transmit and receive at different frequencies to increase efficiency and decrease interference during communication between the G.UN.D.A.M. s module and the computer s. In the MCU will be connected to the RF transceiver through the pins on Digital Interface. The RFM12B is configured with this SPI interface, which is also used to transmit and receive data. Meaning the MCU will be in charge of programming the different modes available on the RFM12B and transmitting and receiving data through the same interface. The RF module has two 8- bit TX data registers and one 16-bit RX data FIFO. Depending on how the R/W bit is set when interfacing through the SPI, the FIFO can be accessed through a single address. As stated before the MCU will use four I/O pins for the SPI configuration interface, namely SDI, SCK, nsel, SDO, nirq. The MCU can be programmed to generate interrupts based on the status pins output. One of the most useful programmable features on the RFM12B is the data rate, which can be configured through the configuration registers mentioned above. Yet another important programmable feature is the output power of the RF transceiver. The output power chosen will determine the typical current consumption, which will affect the range. During the testing phase an output power can be chosen based on a reliable effective range determined to be sufficient. There is a possibility of a problem arising with using a frequency range of 433MHz for transmitting and receiving data, that is there can be other communication systems operating at these frequencies in our testing environment. Thus to reduce interference a lower frequency band which is not as commonly used by most modern wireless systems in our likely testing environment was chosen. The length of the antenna depends on the frequency the RF transceiver will operate at. The frequency band chosen for the RF transceiver is 433MHz, meaning that this RF transceiver will require an antenna that is a quarter of the smallest wavelength utilized to keep a reasonable size and performance, which turns out to be approximately 23.8cm. C. Wireless Protocol The main features required from the protocol is the ability to sense the presence of another transmitting device and send acknowledgements so the device goes into listening mode. A secondary but important feature to the protocol will be an implementation of the AES- 128 encryption algorithm. This encryption algorithm has gained popularity due to its susceptibility to bruteforce and other attacks. The implementation of AES- 128 encryption algorithm will require the sender to encrypt the data using a public key and the receiver to decrypt the data using a private key. Both the G.U.N.D.A.M. and the computer device will share a public key to send data to each other but each will have their own private key to decrypt the data they receive. The first requirement of the wireless protocol, which will be implemented by the MCU, will be to handle transmission between two nodes in a manner that they don't talk over each other, in other words, neither of the two nodes must transmit or receive data at the same time. To accomplish this there will be a routine in the MCU that will periodically check whether the device is transmitting or receiving data. This will be important in determining the next step because initially both the G.U.N.D.A.M. and the computer module will be in listening/receive mode that will wait for new transmission. Data transmission will begin when the G.U.N.D.A.M. has information it needs to transmit to the computer. In this case, the G.U.N.D.A.M. s MCU will encode the data in AES-128 and pass it to the RF transceiver to be sent to the computer. The computer will initially be in listening mode to be able to receive the encoded information, which it will then decode and pass it on to the computer. In this application, the G.U.N.D.A.M. will be the only device sending data and the computer will only be receiving data. However, the design allows for two-way communication between the G.U.N.D.A.M. and the computer for scalability purposes. Although the G.U.N.D.A.M. and the computer dongle will only implement one-way transmission they will each use acknowledgements to ensure that data was received without errors and no retransmission is needed. To accomplish this error-checking test, the G.U.N.D.A.M. s RF transceiver will need to switch to listening mode to receive a packet of acknowledgement from the computer dongle. Similarly, the computer dongle will switch to transmitting mode for a short period of time to send the packet acknowledgement. This coordination will be accomplished by routines in the MCU and a timer to ensure that there is no collision or loss of data.

5 The second requirement of the wireless protocol will involve the MCU having the capability to also handle the encryption of data before it is transmitted over-theair to either the G.U.N.D.A.M. or the computer. To reduce latency and errors, the acknowledgement packets will not be encrypted since they don t contain any relevant data to what the G.U.N.D.A.M. is communicating to the computer. A separate routine on the G.U.N.D.A.M. and computer s MCU will handle which packets will be encrypted and which won t. For the packets that are encrypted the MCUs will have an encryption and decryption routine. The function will take plain text data from the main microcontroller on the G.U.N.D.A.M. or the computer on the receiving dongle and encrypt it using the AES-128 encryption technique. To encrypt the plain text the MCU on the G.U.N.D.A.M. will use a pre-programmed key to encrypt the data and the MCU on the computer dongle will use the same pre-programmed key to decrypt the data and send it to the computer so the GUI interface on the computer can use the data to draw out the maze. Although not needed, the G.U.N.D.A.M. and the computer dongle will both have the capability of encrypting and decrypting plaintext for scalability reasons. IV. Range Finder System The G.U.N.D.A.M. will have two ultrasonic sensors on the front and back of the robot to detect longer distances in the narrow paths of the maze. It will also have two infrared sensors on the sides to detect smaller distances. Most ultrasonic sensors have a minimum distance of 2cm and infrared sensors have a minimum distance of 4cm. To combat inaccuracies in distance measurements the robot s main microcontroller will be required to keep the robot centered within the minimum distances that the sensors can measure. Infrared sensors have simple circuits but accurate infrared sensors are difficult to manufacture without the proper tools. Below is a figure of the Sharp GP2D120 infrared range finder functioning on a flat surface obstacle. Fig 6. Function of Sharp GP2D120 infrared range finder. This particular IR range finder has a minimum and maximum detection range from 4cm to 30cm. It has an operating voltage and current of 4.5V to 5.5V, 33 to 50mA. The response time is 30ms with an analog output. The voltages can simply be converted to a useful distance for the microcontroller using the chart below. Fig 7. Voltage output vs. Distance of GP2D120 IR range finder. Ultrasonic sensors on the other hand are less susceptible to inaccurate measurements due to the wider emitting beam. Building an ultrasonic sensor with individual parts and a circuit schematic can prove to be more cost efficient than purchasing a pre-built sensor. Since ultrasonic sensor output will be an analog signal there will have to be calculations done to determine the distance measurements based on the frequency of the transmitted beam and the time the beam takes to reflect back and be detected. Below is circuit schematic of an ultrasonic distance measurement circuit, however; the PIC12C508 will be replaced with the main microcontroller.

6 The range finder sensors will be mounted on the robot chassis itself and will interface with the main microcontroller, which will take its values and store them to calculate the distances and path traversed through the maze. The two infrared sensors mounted on the sides of the robot will be as close to the ground as possible and they will be housed in a shield to prevent interference from the indoor lighting at the receiving end of the sensor. The ultrasonic sensors on the front and back of the G.U.N.D.A.M. will be mounted further from the ground to reduce the possibility of the sound absorption from the carpet floor that could possibly be a part of the G.U.N.D.A.M. s testing environment. Both the ultrasonic and infrared sensor will be at the midsection of the horizontal axis in the robots dimensions to increase the accuracy when calculating the position and location in the maze. A. Maze Solving Algorithm V. LAPTOP SOFTWARE The primary method of maze solving for our software will be the classic solution of wall following. Wall following works by choosing a side relative to the robot (left or right), and choosing to stick with that direction when coming to an intersection or turn. The robot will choose to follow the left side at all times to find the exit to the maze being built. For our particular project, the robot will choose to follow the left side of the wall in order to reach the exit. Wall follower will fail in two cases. If the entrance to the maze does not lie on the outer wall of the maze, then wall follower is not guaranteed to find an exit. The mazes constructed for our project will, fortunately, not have interior entrances. A second fail state is if a wall is not connected to the outer wall in one straight line. If this case occurs, the robot will turn in circles indefinitely. Our project will also not feature mazes of this type to avoid these two fail states for wall follower. While wall follower may seem unintelligent when given an aerial view of the maze, this method of maze solving always results in a found exit. Also, because our mazes will be built to a 6 x 6 dimension, the amount of time to solve such a maze will not be an issue. B. Maze Drawing The maze drawing software will be written using Java in the Eclipse IDE. Several classes are necessary to accomplish this including classes to store the location of all the walls, a class to store the state and direction of the robot, and a class to store the location of nodes. Nodes will be placed at every intersection and turn of our maze. These nodes will contain their location on the maze, whether or not their four compass directions are an opening or a wall, and any neighboring nodes that may have been discovered by the robot. The existence of nodes is important for the utilization of the pathfinding algorithm, A*. The paths will be represented by a known connection of two neighboring nodes. If a node has a known opening but no discovered node in that direction, then the direction will be labeled automatically with a value of -1. The neighbors will be stored as an integer that represents the array location of the neighbor within an array created in a NodeManager class. This class main task is to keep a reference to every node within the map to allow for easy lookups when finding a path within the maze as well as whenever the maze needs to be redrawn. Walls will be stored within a list similar to the nodes. Each wall will contain the two corners that make up the ends of the walls. Wall thickness will not be taken into consideration for this particular project. A WallManager class is also utilized to store an array keeping information on every wall within our maze. This is to allow for the redrawing of our maze without losing any information once our canvas has been cleared. The robot class will contain information on the compass direction it is facing (north, south, east, west) and its current location. This information will be used to determine what direction any openings it finds are as well as help in translating what exactly a left turn means in relation to its direction. This also helps us determine where exactly a new node should be placed within our maze. The maze itself will be drawn on a canvas with simple lines to represent each of the walls and circles to represent the nodes at each intersection. Our maze has a uniform length of one foot for each section of wall. This was done to help the maze drawing algorithm. Before moving forward, the software will receive data on the distance the GUNDAM measures between the wall straight ahead and its current location. The software will receive another distance value upon reaching a node. There is the possibility that the sensor will return a value that is not equal to foot sections. This is to be expected. To account for this, some assumptions will be made. For instance, if the sensors first send a distance of 50 inches and upon reaching a node they send a distance of 28 inches, this results in a distance of 22 inches. Because of our one foot sections, we know that this cannot be the case for our maze drawing algorithm. To

7 correct this, the software will assume a distance of 24 inches, or 2 feet. With all of this information, the software simply feeds in the information on how far the GUNDAM has traveled before reaching the next intersection or dead end and draws out two lines one foot apart from each other. This represents the path just traveled by our robot. The next block of information grabbed from the robot will be the values of the three sensors. If the value is below a foot, we can assume that a wall most likely lies in that direction. If the value is greater than a foot, we know that a path lies in that direction. With this information, the software decides whether to draw a wall or leave the space open with a one foot entry to represent the path available to the GUNDAM. Once the maze has been solved, the user will be presented with a 2D representation of our maze along with circles representing the nodes placed at each intersection. cursor and every node present in our maze allows us to decide which node the user most likely wished to select. With these classes, the pathfinding algorithm then needs to be chosen. For this project, A* pathfinding (pronounced A Star) will be used in order to find the shortest path within the maze in the shortest amount of time. A* pathfinding works by first grabbing the location of the GUNDAM and determining the closest neighboring node to its location. These neighbors were determined during the maze drawing portion of our software. Whenever a node is reached by our GUNDAM, the software does a search for the node that matches the location of our previous node. The neighbors are then applied accordingly. For instance, if we are traveling west and come upon a node, then the node that was left previously serves as the current node s eastern neighbor. The current node will also serve as the previous node s western neighbor. The distance from the neighbor to the destination is then taken. This is simply a rough calculation and does not take into account walls and other potential obstacles. Because of this, a neighboring node is never counted out of the possibilities for a path. Fig. 8. 2D Maze Example C. Path Finding Algorithm The robot s secondary feature is the ability to select a location for the robot to travel to once the maze has been solved. In order to accomplish this, we must utilize the nodes class as well as the robot class. The robot class will provide information on the GUNDAM s current location within the maze. The Node class and as the NodeManager class are necessary to determine which nodes can be used for the path to the destination chosen by the user. The user must select a node to serve as the destination of our GUNDAM. This node will change in color to give the user some feedback on which node they have selected. A simple distance formula applied to the Fig 9. Completed A* Path Once the source is reached, we are usually guaranteed to have found the shortest and quickest way to the destination. Unfortunately, this does not guarantee the most natural looking path to a destination in most cases, but because our environment is a maze, this is not an issue for our design. Once the path has been created, the software on the laptop side will create a list of instructions that will result in the GUNDAM finishing at the destination chosen by the user. These instructions simply consist of directions to take once the GUNDAM has reached each

8 node along the path. These directions will be kept in an array to make for a natural transition between each instruction and to properly keep them in order. The user will be presented with a drawn out line connecting each node within the A* path. This will correlate to the path the GUNDAM takes within the physical maze. VI. PHYSICAL MAZE The maze itself will simply be built from wooden 2 x 6 boards cut into one foot sections for the interior walls and 6 foot sections for the exterior. Two of the 6 foot sections contain a 1 foot entrance cut in the center of the board. The 1 foot sections allow for a customizable maze for our robot to traverse. This serves to benefit the presentation by allowing for much more example cases. The uniform 1 foot sections also helps to account for any error within the sensors when measuring the length of a path. VII. CONCLUSION This project helped each group member gain experience within their respective fields of Electrical and Computer Engineering. It also gave insight on the inner workings of a project environment that will no doubt translate well into the real work force. The project itself provided hands-on experience with circuitry, hardware, and communication between subsystems that will no doubt apply to the real world in both our careers and in any research we may delve into in the future. Our project as a whole has gone through many changes throughout the semesters. Some accounted for and others happened upon during the development process. In the end, a robot with a basic maze solving ability and wireless communication was successfully completed meeting the goal of our initial proposal two semesters ago. semesters. Finally, we would like to thank each other for assistance on our parts and the work put into our projects. PROJECT ENGINEERS Didier Lessage is a senior at the University of Central Florida. He is graduating with a degree in Computer Engineering on August 4, His fields of interest include Artificial Intelligence and Robot Vision. He plans to enter the work force for a few years before returning to school for a Masters degree in his field. Gabriel Rodriguez is a senior at the University of Central Florida. His interests are in embedded systems, analog and digital circuit design, and wireless communication. He is graduating with a degree in Electrical Engineering on August 4, Blake Simonini is a senior at the University of Central Florida. He is graduating with a degree in Electrical Engineering on August 4, He is interested in robotics and power systems and is looking to find a job out of state. ACKNOWLEDGEMENT We would like to acknowledge and thank our review committee for taking the time to judge and observe our senior design project. We would also like to thank Dr. Samuel Richie for his assistance throughout the two semesters. We would like to thank the machine shop staff for allowing us the use of their equipment when creating our physical maze for both our presentation and testing. We would like to thank our families for providing morale support throughout these two

1.0 EXECUTIVE SUMMARY

1.0 EXECUTIVE SUMMARY 1 1.0 EXECUTIVE SUMMARY Project G.U.N.D.A.M. is a robot with the main purpose of solving a maze built to the discretion and specifics of the builders. The maze will be drawn out for the user to visually

More information

Catalog

Catalog Catalog 1. Description... - 3-2. Features... - 3-3. Application... - 3-4. Electrical specifications...- 4-5. Schematic... - 4-6. Pin Configuration... - 5-7. Antenna... - 6-8. Mechanical Dimension(Unit:

More information

RF4432 wireless transceiver module

RF4432 wireless transceiver module 1. Description www.nicerf.com RF4432 RF4432 wireless transceiver module RF4432 adopts Silicon Lab Si4432 RF chip, which is a highly integrated wireless ISM band transceiver. The features of high sensitivity

More information

Embedded Radio Data Transceiver SV611

Embedded Radio Data Transceiver SV611 Embedded Radio Data Transceiver SV611 Description SV611 is highly integrated, multi-ports radio data transceiver module. It adopts high performance Silicon Lab Si4432 RF chip. Si4432 has low reception

More information

SMARTALPHA RF TRANSCEIVER

SMARTALPHA RF TRANSCEIVER SMARTALPHA RF TRANSCEIVER Intelligent RF Modem Module RF Data Rates to 19200bps Up to 300 metres Range Programmable to 433, 868, or 915MHz Selectable Narrowband RF Channels Crystal Controlled RF Design

More information

G3P-R232. User Manual. Release. 2.06

G3P-R232. User Manual. Release. 2.06 G3P-R232 User Manual Release. 2.06 1 INDEX 1. RELEASE HISTORY... 3 1.1. Release 1.01... 3 1.2. Release 2.01... 3 1.3. Release 2.02... 3 1.4. Release 2.03... 3 1.5. Release 2.04... 3 1.6. Release 2.05...

More information

ECE 477 Digital Systems Senior Design Project Rev 8/09. Homework 5: Theory of Operation and Hardware Design Narrative

ECE 477 Digital Systems Senior Design Project Rev 8/09. Homework 5: Theory of Operation and Hardware Design Narrative ECE 477 Digital Systems Senior Design Project Rev 8/09 Homework 5: Theory of Operation and Hardware Design Narrative Team Code Name: _ATV Group No. 3 Team Member Completing This Homework: Sebastian Hening

More information

AT-XTR-7020A-4. Multi-Channel Micro Embedded Transceiver Module. Features. Typical Applications

AT-XTR-7020A-4. Multi-Channel Micro Embedded Transceiver Module. Features. Typical Applications AT-XTR-7020A-4 Multi-Channel Micro Embedded Transceiver Module The AT-XTR-7020A-4 radio data transceiver represents a simple and economical solution to wireless data communications. The employment of an

More information

SV613 USB Interface Wireless Module SV613

SV613 USB Interface Wireless Module SV613 USB Interface Wireless Module SV613 1. Description SV613 is highly-integrated RF module, which adopts high performance Si4432 from Silicon Labs. It comes with USB Interface. SV613 has high sensitivity

More information

LINE MAZE SOLVING ROBOT

LINE MAZE SOLVING ROBOT LINE MAZE SOLVING ROBOT EEE 456 REPORT OF INTRODUCTION TO ROBOTICS PORJECT PROJECT OWNER: HAKAN UÇAROĞLU 2000502055 INSTRUCTOR: AHMET ÖZKURT 1 CONTENTS I- Abstract II- Sensor Circuit III- Compare Circuit

More information

ECE 511: FINAL PROJECT REPORT GROUP 7 MSP430 TANK

ECE 511: FINAL PROJECT REPORT GROUP 7 MSP430 TANK ECE 511: FINAL PROJECT REPORT GROUP 7 MSP430 TANK Team Members: Andrew Blanford Matthew Drummond Krishnaveni Das Dheeraj Reddy 1 Abstract: The goal of the project was to build an interactive and mobile

More information

Introduction. Theory of Operation

Introduction. Theory of Operation Mohan Rokkam Page 1 12/15/2004 Introduction The goal of our project is to design and build an automated shopping cart that follows a shopper around. Ultrasonic waves are used due to the slower speed of

More information

Catalog

Catalog - 1 - Catalog 1. Overview... - 3-2. Feature...- 3-3. Application... - 3-4. Block Diagram... - 3-5. Electrical Characteristics...- 4-6. Operation...- 4-1) Power on Reset... - 4-2) Sleep mode...- 4-3) Working

More information

EE 314 Spring 2003 Microprocessor Systems

EE 314 Spring 2003 Microprocessor Systems EE 314 Spring 2003 Microprocessor Systems Laboratory Project #9 Closed Loop Control Overview and Introduction This project will bring together several pieces of software and draw on knowledge gained in

More information

RF NiceRF Wireless Technology Co., Ltd. Rev

RF NiceRF Wireless Technology Co., Ltd. Rev - 1 - Catalog 1. Description...- 3-2. Features...- 3-3. Application...- 3-4. Electrical Specifications...- 4-5. Schematic...- 4-6. Pin Configuration...- 5-7. Antenna... - 6-8. Mechanical dimensions(unit:

More information

RF4463F30 High Power wireless transceiver module

RF4463F30 High Power wireless transceiver module RF4463F30 High Power wireless transceiver module 1. Description RF4463F30 adopts Silicon Lab Si4463 RF chip, which is a highly integrated wireless ISM band transceiver chip. Extremely high receive sensitivity

More information

ADVANCED EMBEDDED MONITORING SYSTEM FOR ELECTROMAGNETIC RADIATION

ADVANCED EMBEDDED MONITORING SYSTEM FOR ELECTROMAGNETIC RADIATION 98 Chapter-5 ADVANCED EMBEDDED MONITORING SYSTEM FOR ELECTROMAGNETIC RADIATION 99 CHAPTER-5 Chapter 5: ADVANCED EMBEDDED MONITORING SYSTEM FOR ELECTROMAGNETIC RADIATION S.No Name of the Sub-Title Page

More information

BEYOND TOYS. Wireless sensor extension pack. Tom Frissen s

BEYOND TOYS. Wireless sensor extension pack. Tom Frissen s LEGO BEYOND TOYS Wireless sensor extension pack Tom Frissen s040915 t.e.l.n.frissen@student.tue.nl December 2008 Faculty of Industrial Design Eindhoven University of Technology 1 2 TABLE OF CONTENT CLASS

More information

RF4432F27 Catalog

RF4432F27 Catalog Catalog 1. Description... 3 2. Features... 3 3. Application... 3 4. Electrical Specifications... 4 5. Typical application circuit... 4 6. Pin definition... 5 7. Accessories... 6 8. Mechanical dimension...

More information

USB Port Medium Power Wireless Module SV653

USB Port Medium Power Wireless Module SV653 USB Port Medium Power Wireless Module SV653 Description SV653 is a high-power USB interface integrated wireless data transmission module, using high-performance Silicon Lab Si4432 RF chip. Low receiver

More information

RF Basics 15/11/2013

RF Basics 15/11/2013 27 RF Basics 15/11/2013 Basic Terminology 1/2 dbm is a measure of RF Power referred to 1 mw (0 dbm) 10mW(10dBm), 500 mw (27dBm) PER Packet Error Rate [%] percentage of the packets not successfully received

More information

Applications. Operating Modes. Description. Part Number Description Package. Many to one. One to one Broadcast One to many

Applications. Operating Modes. Description. Part Number Description Package. Many to one. One to one Broadcast One to many RXQ2 - XXX GFSK MULTICHANNEL RADIO TRANSCEIVER Intelligent modem Transceiver Data Rates to 100 kbps Selectable Narrowband Channels Crystal controlled design Supply Voltage 3.3V Serial Data Interface with

More information

Voice Guided Military Robot for Defence Application

Voice Guided Military Robot for Defence Application IJIRST International Journal for Innovative Research in Science & Technology Volume 2 Issue 11 April 2016 ISSN (online): 2349-6010 Voice Guided Military Robot for Defence Application Palak N. Patel Minal

More information

Mapping device with wireless communication

Mapping device with wireless communication University of Arkansas, Fayetteville ScholarWorks@UARK Electrical Engineering Undergraduate Honors Theses Electrical Engineering 12-2011 Mapping device with wireless communication Xiangyu Liu University

More information

University of Florida Department of Electrical and Computer Engineering Intelligent Machine Design Laboratory EEL 4665 Spring 2013 LOSAT

University of Florida Department of Electrical and Computer Engineering Intelligent Machine Design Laboratory EEL 4665 Spring 2013 LOSAT University of Florida Department of Electrical and Computer Engineering Intelligent Machine Design Laboratory EEL 4665 Spring 2013 LOSAT Brandon J. Patton Instructors: Drs. Antonio Arroyo and Eric Schwartz

More information

Index Terms IR communication; MSP430; TFDU4101; Pre setter

Index Terms IR communication; MSP430; TFDU4101; Pre setter Design and Development of Contactless Communication Module for Pre setter of Underwater Vehicles J.Lavanyambhika, **D.Madhavi *Digital Systems and Signal Processing in Electronics and Communication Engineering,

More information

Project Final Report: Directional Remote Control

Project Final Report: Directional Remote Control Project Final Report: by Luca Zappaterra xxxx@gwu.edu CS 297 Embedded Systems The George Washington University April 25, 2010 Project Abstract In the project, a prototype of TV remote control which reacts

More information

Catalogue

Catalogue - 1 - Catalogue 1. Description... - 3-2. Features... - 3-3. Applications...- 3-4. Block Diagram... - 3-5. Electrical Characteristics...- 4-6. Operation...- 5 - Power on Reset... - 5 - Working mode... -

More information

LDOR: Laser Directed Object Retrieving Robot. Final Report

LDOR: Laser Directed Object Retrieving Robot. Final Report University of Florida Department of Electrical and Computer Engineering EEL 5666 Intelligent Machines Design Laboratory LDOR: Laser Directed Object Retrieving Robot Final Report 4/22/08 Mike Arms TA: Mike

More information

EEL5666C IMDL Spring 2006 Student: Andrew Joseph. *Alarm-o-bot*

EEL5666C IMDL Spring 2006 Student: Andrew Joseph. *Alarm-o-bot* EEL5666C IMDL Spring 2006 Student: Andrew Joseph *Alarm-o-bot* TAs: Adam Barnett, Sara Keen Instructor: A.A. Arroyo Final Report April 25, 2006 Table of Contents Abstract 3 Executive Summary 3 Introduction

More information

SV-MESH Mesh network series Catalogue

SV-MESH Mesh network series Catalogue Catalogue 1. Description... 3 2. Features... 3 3. Applications... 3 4. Block Diagram... 4 5. Electrical Characteristics... 5 6. Operation... 5 Power on Reset... 5 Working mode... 6 Router mode... 8 Setting

More information

Electronics Design Laboratory Lecture #9. ECEN 2270 Electronics Design Laboratory

Electronics Design Laboratory Lecture #9. ECEN 2270 Electronics Design Laboratory Electronics Design Laboratory Lecture #9 Electronics Design Laboratory 1 Notes Finishing Lab 4 this week Demo requires position control using interrupts and two actions Rotate a given angle Move forward

More information

Critical Design Review: M.A.D. Dog. Nicholas Maddy Timothy Dayley Kevin Liou

Critical Design Review: M.A.D. Dog. Nicholas Maddy Timothy Dayley Kevin Liou Critical Design Review: M.A.D. Dog Nicholas Maddy Timothy Dayley Kevin Liou Project Description M.A.D. Dog is an autonomous robot with the following functionalities: - Map and patrol an office environment.

More information

HC-12 Wireless Serial Port Communication Module

HC-12 Wireless Serial Port Communication Module HC-12 Wireless Serial Port Communication Module User Manual version 2.3C (updated from v1.1 English and v2.3 Chinese) Product Applications Wireless sensor Community building security Robot wireless control

More information

RF ISM Transparent Transceiver Module V4.0

RF ISM Transparent Transceiver Module V4.0 RF7020-27 ISM Transparent Transceiver Module V4.0 Overview: RF7020-27 is highly integrated semi-duplex medium power transceiver module with high speed MCU and high performance RF IC. Utilizing high efficiency

More information

MB1013, MB1023, MB1033, MB1043

MB1013, MB1023, MB1033, MB1043 HRLV-MaxSonar - EZ Series HRLV-MaxSonar - EZ Series High Resolution, Low Voltage Ultra Sonic Range Finder MB1003, MB1013, MB1023, MB1033, MB1043 The HRLV-MaxSonar-EZ sensor line is the most cost-effective

More information

Robot Navigation System with RFID and Ultrasonic Sensors A.Seshanka Venkatesh 1, K.Vamsi Krishna 2, N.K.R.Swamy 3, P.Simhachalam 4

Robot Navigation System with RFID and Ultrasonic Sensors A.Seshanka Venkatesh 1, K.Vamsi Krishna 2, N.K.R.Swamy 3, P.Simhachalam 4 Robot Navigation System with RFID and Ultrasonic Sensors A.Seshanka Venkatesh 1, K.Vamsi Krishna 2, N.K.R.Swamy 3, P.Simhachalam 4 B.Tech., Student, Dept. Of EEE, Pragati Engineering College,Surampalem,

More information

RF Based Pick and Place Robot

RF Based Pick and Place Robot IOSR Journal of Electronics and Communication Engineering (IOSR-JECE) e-issn: 2278-2834,p- ISSN: 2278-8735.Volume 12, Issue 3, Ver. I (May.-Jun. 2017), PP 34-38 www.iosrjournals.org RF Based Pick and Place

More information

JEPPIAAR SRR Engineering College Padur, Ch

JEPPIAAR SRR Engineering College Padur, Ch An Automated Non-Invasive Blood Glucose Estimator and Infiltrator M. Florence Silvia 1, K. Saran 2, G. Venkata Prasad 3, John Fermin 4 1 Asst. Prof, 2, 3, 4 Student, Department of Electronics and Communication

More information

A Solar-Powered Wireless Data Acquisition Network

A Solar-Powered Wireless Data Acquisition Network A Solar-Powered Wireless Data Acquisition Network E90: Senior Design Project Proposal Authors: Brian Park Simeon Realov Advisor: Prof. Erik Cheever Abstract We are proposing to design and implement a solar-powered

More information

Electronics Design Laboratory Lecture #10. ECEN 2270 Electronics Design Laboratory

Electronics Design Laboratory Lecture #10. ECEN 2270 Electronics Design Laboratory Electronics Design Laboratory Lecture #10 Electronics Design Laboratory 1 Lessons from Experiment 4 Code debugging: use print statements and serial monitor window Circuit debugging: Re check operation

More information

Mars Rover: System Block Diagram. November 19, By: Dan Dunn Colin Shea Eric Spiller. Advisors: Dr. Huggins Dr. Malinowski Mr.

Mars Rover: System Block Diagram. November 19, By: Dan Dunn Colin Shea Eric Spiller. Advisors: Dr. Huggins Dr. Malinowski Mr. Mars Rover: System Block Diagram November 19, 2002 By: Dan Dunn Colin Shea Eric Spiller Advisors: Dr. Huggins Dr. Malinowski Mr. Gutschlag System Block Diagram An overall system block diagram, shown in

More information

EITF40 Digital and Analogue Projects - GNSS Tracker 2.4

EITF40 Digital and Analogue Projects - GNSS Tracker 2.4 EITF40 Digital and Analogue Projects - GNSS Tracker 2.4 Magnus Wasting 26 February 2018 Abstract In this report a mobile global navigation satellite system with SMS and alarm functionality is constructed.

More information

Citrus Circuits Fall Workshop Series. Roborio and Sensors. Paul Ngo and Ellie Hass

Citrus Circuits Fall Workshop Series. Roborio and Sensors. Paul Ngo and Ellie Hass Citrus Circuits Fall Workshop Series Roborio and Sensors Paul Ngo and Ellie Hass Introduction to Sensors Sensor: a device that detects or measures a physical property and records, indicates, or otherwise

More information

TD_485 Transceiver Modules Application Guide 2017

TD_485 Transceiver Modules Application Guide 2017 TD_485 Transceiver Modules Application Guide 2017 1. RS485 basic knowledge... 2 1.1. RS485 BUS basic Characteristics... 2 1.2. RS485 Transmission Distance... 2 1.3. RS485 bus connection and termination

More information

Four Quadrant Speed Control of DC Motor with the Help of AT89S52 Microcontroller

Four Quadrant Speed Control of DC Motor with the Help of AT89S52 Microcontroller Four Quadrant Speed Control of DC Motor with the Help of AT89S52 Microcontroller Rahul Baranwal 1, Omama Aftab 2, Mrs. Deepti Ojha 3 1,2, B.Tech Final Year (Electronics and Communication Engineering),

More information

ADVANCED SAFETY APPLICATIONS FOR RAILWAY CROSSING

ADVANCED SAFETY APPLICATIONS FOR RAILWAY CROSSING ADVANCED SAFETY APPLICATIONS FOR RAILWAY CROSSING 1 HARSHUL BALANI, 2 CHARU GUPTA, 3 KRATIKA SUKHWAL 1,2,3 B.TECH (ECE), Poornima College Of Engineering, RTU E-mail; 1 harshul.balani@gmail.com, 2 charu95g@gmail.com,

More information

In this lecture, we will look at how different electronic modules communicate with each other. We will consider the following topics:

In this lecture, we will look at how different electronic modules communicate with each other. We will consider the following topics: In this lecture, we will look at how different electronic modules communicate with each other. We will consider the following topics: Links between Digital and Analogue Serial vs Parallel links Flow control

More information

RPLIDAR A1. Introduction and Datasheet. Low Cost 360 Degree Laser Range Scanner. Model: A1M8. Shanghai Slamtec.Co.,Ltd rev.1.

RPLIDAR A1. Introduction and Datasheet. Low Cost 360 Degree Laser Range Scanner. Model: A1M8. Shanghai Slamtec.Co.,Ltd rev.1. www.slamtec.com RPLIDAR A1 2018-03-23 rev.1.1 Low Cost 360 Degree Laser Range Scanner Introduction and Datasheet Model: A1M8 Shanghai Slamtec.Co.,Ltd Contents CONTENTS... 1 INTRODUCTION... 3 SYSTEM CONNECTION...

More information

Catalog

Catalog - 1 - Catalog 1. Overview...- 3-2. Feature... - 3-3. Application...- 3-4. Block Diagram...- 3-5. Electrical Characteristics... - 4-6. Operation... - 4-1) Power on Reset... - 4-2) Sleep mode... - 4-3) Working

More information

Tarocco Closed Loop Motor Controller

Tarocco Closed Loop Motor Controller Contents Safety Information... 3 Overview... 4 Features... 4 SoC for Closed Loop Control... 4 Gate Driver... 5 MOSFETs in H Bridge Configuration... 5 Device Characteristics... 6 Installation... 7 Motor

More information

Robotic Development Kit. Powered using ATMEL technology

Robotic Development Kit. Powered using ATMEL technology Robotic Development Kit Powered using ATMEL technology Index 1. System overview 2. Technology overview 3. Individual dev-kit components I. Robot II. Remote III. IR-Pod IV. Base-Station V. RFID 4. Robonii

More information

Low Power with Long Range RF Module DATASHEET Description

Low Power with Long Range RF Module DATASHEET Description Wireless-Tag WT-900M Low Power with Long Range RF Module DATASHEET Description WT-900M is a highly integrated low-power half-'duplex RF transceiver module embedding high-speed low-power MCU and high-performance

More information

LAB 1 AN EXAMPLE MECHATRONIC SYSTEM: THE FURBY

LAB 1 AN EXAMPLE MECHATRONIC SYSTEM: THE FURBY LAB 1 AN EXAMPLE MECHATRONIC SYSTEM: THE FURBY Objectives Preparation Tools To see the inner workings of a commercial mechatronic system and to construct a simple manual motor speed controller and current

More information

E31-TTL-500 Datasheet V Feature E31-TTL-500

E31-TTL-500 Datasheet V Feature E31-TTL-500 E31-TTL-500 Datasheet V1.0.1.Introduction E31-TTL-500 1.1 Feature E31-TTL-500 E31-TTL-500 is a 500mW wireless transceiver module with narrow-band transmission, operates at 425-450.5MHz (default: 433MHz),

More information

TRXQ1 RXQ1 FM NARROW BAND TRANSCEIVERS. RXQ1 Version. Applications. TRXQ1 Version

TRXQ1 RXQ1 FM NARROW BAND TRANSCEIVERS. RXQ1 Version. Applications. TRXQ1 Version RF Transceiver or Intelligent Modem Versions Host Data Rate upto 19,200 Baud Data Rates to 20 K baud. 2 Selectable RF Channels Narrowband Crystal Controlled Optimal Range 200m Supply Voltage 3-5V Very

More information

Master Op-Doc/Test Plan

Master Op-Doc/Test Plan Power Supply Master Op-Doc/Test Plan Define Engineering Specs Establish battery life Establish battery technology Establish battery size Establish number of batteries Establish weight of batteries Establish

More information

EVDP610 IXDP610 Digital PWM Controller IC Evaluation Board

EVDP610 IXDP610 Digital PWM Controller IC Evaluation Board IXDP610 Digital PWM Controller IC Evaluation Board General Description The IXDP610 Digital Pulse Width Modulator (DPWM) is a programmable CMOS LSI device, which accepts digital pulse width data from a

More information

SmartRadio Transmitter / Receiver

SmartRadio Transmitter / Receiver Easy to use Radio Transmitter & Receivers AM Radio Hybrid Technology Supports Data or Telemetry communications Simple CMOS/TTL Data Interface Automatic data encryption / decryption Host Interface up to

More information

Catalogue

Catalogue Catalogue 1. Overview... - 3-2. Features... - 3-3. Applications...- 3-4. Electrical Characteristics...- 4-5. Schematic... - 4-6. Speed rate correlation table...- 6-7. Pin definition...- 6-8. Accessories...-

More information

HAND GESTURE CONTROLLED ROBOT USING ARDUINO

HAND GESTURE CONTROLLED ROBOT USING ARDUINO HAND GESTURE CONTROLLED ROBOT USING ARDUINO Vrushab Sakpal 1, Omkar Patil 2, Sagar Bhagat 3, Badar Shaikh 4, Prof.Poonam Patil 5 1,2,3,4,5 Department of Instrumentation Bharati Vidyapeeth C.O.E,Kharghar,Navi

More information

Home CSP Inc. Trackers and electronics for home solar energy

Home CSP Inc. Trackers and electronics for home solar energy Home CSP Inc. Trackers and electronics for home solar energy www.homecsp.com csp@homecsp.com TinyTracker version 1.06 reve Thanks for purchasing your TinyTracker from Home CSP Inc. The TinyTracker provides

More information

EECS 473 Final Exam. Fall 2017 NOTES: I have neither given nor received aid on this exam nor observed anyone else doing so. Name: unique name:

EECS 473 Final Exam. Fall 2017 NOTES: I have neither given nor received aid on this exam nor observed anyone else doing so. Name: unique name: EECS 473 Final Exam Fall 2017 Name: unique name: Sign the honor code: I have neither given nor received aid on this exam nor observed anyone else doing so. NOTES: 1. Closed book and Closed notes 2. Do

More information

OBSTACLE EVADING ULTRASONIC ROBOT. Aaron Hunter Eric Whitestone Joel Chenette Anne-Marie Cressin

OBSTACLE EVADING ULTRASONIC ROBOT. Aaron Hunter Eric Whitestone Joel Chenette Anne-Marie Cressin OBSTACLE EVADING ULTRASONIC ROBOT Aaron Hunter Eric Whitestone Joel Chenette Anne-Marie Cressin ECE 511 - Fall 2011 1 Abstract The purpose of this project is to demonstrate how simple algorithms can produce

More information

AN-1370 APPLICATION NOTE

AN-1370 APPLICATION NOTE APPLICATION NOTE One Technology Way P.O. Box 9106 Norwood, MA 02062-9106, U.S.A. Tel: 781.329.4700 Fax: 781.461.3113 www.analog.com Design Implementation of the ADF7242 Pmod Evaluation Board Using the

More information

YDLIDAR G4 DATASHEET. Doc#: 文档编码 :

YDLIDAR G4 DATASHEET. Doc#: 文档编码 : YDLIDAR G4 DATASHEET Doc#:01.13.000007 文档编码 :01.13.000008 CONTENTS overview... 2 Product Features... 2 Applications... 2 Installation and dimensions... 2 Specifications... 3 Product parameters... 3 Electrical

More information

Wireless Sensor Network for Intra-Venous Fluid Level Indicator Application

Wireless Sensor Network for Intra-Venous Fluid Level Indicator Application Wireless Sensor Network for Intra-Venous Fluid Level Indicator Application Abstract Wireless sensor networks use small, low-cost embedded devices for a wide range of applications such as industrial data

More information

3D ULTRASONIC STICK FOR BLIND

3D ULTRASONIC STICK FOR BLIND 3D ULTRASONIC STICK FOR BLIND Osama Bader AL-Barrm Department of Electronics and Computer Engineering Caledonian College of Engineering, Muscat, Sultanate of Oman Email: Osama09232@cceoman.net Abstract.

More information

Precision Range Sensing Free run operation uses a 2Hz filter, with. Stable and reliable range readings and

Precision Range Sensing Free run operation uses a 2Hz filter, with. Stable and reliable range readings and HRLV-MaxSonar - EZ Series HRLV-MaxSonar - EZ Series High Resolution, Precision, Low Voltage Ultrasonic Range Finder MB1003, MB1013, MB1023, MB1033, MB10436 The HRLV-MaxSonar-EZ sensor line is the most

More information

6.115 Final Project Proposal: An RFID Access Control System

6.115 Final Project Proposal: An RFID Access Control System 6.115 Final Project Proposal: An RFID Access Control System Christopher Merrill April 24, 2012 Abstract The goal of this nal project is to implement a device to read standard 125 khz RFID cards using the

More information

Catalog

Catalog - 1 - Catalog 1. Description...- 3-2. Features...- 3-3. Applications... - 3-4. Block Diagram...- 3-5. Electrical Characteristics... - 5-6. Operation... - 5 - Power on Reset... - 5 - Working mode... - 6

More information

LoRa1276 Catalogue

LoRa1276 Catalogue Catalogue 1. Overview... 3 2. Features... 3 3. Applications... 3 4. Electrical Characteristics... 4 5. Schematic... 5 6. Speed rate correlation table... 6 7. Pin definition... 6 8. Accessories... 8 9.

More information

ME375 Lab Project. Bradley Boane & Jeremy Bourque April 25, 2018

ME375 Lab Project. Bradley Boane & Jeremy Bourque April 25, 2018 ME375 Lab Project Bradley Boane & Jeremy Bourque April 25, 2018 Introduction: The goal of this project was to build and program a two-wheel robot that travels forward in a straight line for a distance

More information

Wavedancer A new ultra low power ISM band transceiver RFIC

Wavedancer A new ultra low power ISM band transceiver RFIC Wavedancer 400 - A new ultra low power ISM band transceiver RFIC R.W.S. Harrison, Dr. M. Hickson Roke Manor Research Ltd, Old Salisbury Lane, Romsey, Hampshire, SO51 0ZN. e-mail: roscoe.harrison@roke.co.uk

More information

MTS2500 Synthesizer Pinout and Functions

MTS2500 Synthesizer Pinout and Functions MTS2500 Synthesizer Pinout and Functions This document describes the operating features, software interface information and pin-out of the high performance MTS2500 series of frequency synthesizers, from

More information

RF4432PRO wireless transceiver module

RF4432PRO wireless transceiver module wireless transceiver module RF4432PRO 1. Description RF4432PRO adopts Silicon Lab Si4432 RF chip, which is a highly integrated wireless ISM band transceiver chip. Extremely high receive sensitivity (-121

More information

Group 4. Michael Cooke David Griffen Whitney Keith

Group 4. Michael Cooke David Griffen Whitney Keith Group 4 Michael Cooke David Griffen Whitney Keith Edward Romero (EE) (CpE) (EE) (EE/CpE) One television s audio is broadcasted within a restaurant/gymnasium leaving all other televisions muted. Customers

More information

BASIC-Tiger Application Note No. 059 Rev Motor control with H bridges. Gunther Zielosko. 1. Introduction

BASIC-Tiger Application Note No. 059 Rev Motor control with H bridges. Gunther Zielosko. 1. Introduction Motor control with H bridges Gunther Zielosko 1. Introduction Controlling rather small DC motors using micro controllers as e.g. BASIC-Tiger are one of the more common applications of those useful helpers.

More information

Published by: PIONEER RESEARCH & DEVELOPMENT GROUP ( 1

Published by: PIONEER RESEARCH & DEVELOPMENT GROUP (  1 Biomimetic Based Interactive Master Slave Robots T.Anushalalitha 1, Anupa.N 2, Jahnavi.B 3, Keerthana.K 4, Shridevi.S.C 5 Dept. of Telecommunication, BMSCE Bangalore, India. Abstract The system involves

More information

GE423 Laboratory Assignment 6 Robot Sensors and Wall-Following

GE423 Laboratory Assignment 6 Robot Sensors and Wall-Following GE423 Laboratory Assignment 6 Robot Sensors and Wall-Following Goals for this Lab Assignment: 1. Learn about the sensors available on the robot for environment sensing. 2. Learn about classical wall-following

More information

MULTI ROBOT COMMUNICATION AND TARGET TRACKING SYSTEM AND IMPLEMENTATION OF ROBOT USING ARDUINO

MULTI ROBOT COMMUNICATION AND TARGET TRACKING SYSTEM AND IMPLEMENTATION OF ROBOT USING ARDUINO MULTI ROBOT COMMUNICATION AND TARGET TRACKING SYSTEM AND IMPLEMENTATION OF ROBOT USING ARDUINO K. Sindhuja 1, CH. Lavanya 2 1Student, Department of ECE, GIST College, Andhra Pradesh, INDIA 2Assistant Professor,

More information

International Journal of Advance Engineering and Research Development

International Journal of Advance Engineering and Research Development Scientific Journal of Impact Factor (SJIF): 4.14 International Journal of Advance Engineering and Research Development Volume 3, Issue 3, March -2016 DIGITAL FUEL INDICATOR Ashish S. Dain 1, Akshay U.

More information

Revision WI.232FHSS-25-FCC-R and RK-WI.232FHSS-25-FCC-R USER S MANUAL

Revision WI.232FHSS-25-FCC-R and RK-WI.232FHSS-25-FCC-R USER S MANUAL Revision 1.0.3 WI.232FHSS-25-FCC-R and RK-WI.232FHSS-25-FCC-R USER S MANUAL RADIOTRONIX, INC. WI.232FHSS-25-FCC-R/ RK-WI.232FHSS-25-FCC-R USER S MANUAL Radiotronix 905 Messenger Lane Moore, Oklahoma 73160

More information

Figure 1. CheapBot Smart Proximity Detector

Figure 1. CheapBot Smart Proximity Detector The CheapBot Smart Proximity Detector is a plug-in single-board sensor for almost any programmable robotic brain. With it, robots can detect the presence of a wall extending across the robot s path or

More information

Multipath and Diversity

Multipath and Diversity Multipath and Diversity Document ID: 27147 Contents Introduction Prerequisites Requirements Components Used Conventions Multipath Diversity Case Study Summary Related Information Introduction This document

More information

CHAPTER 12 NORTHERN ILLINOIS UNIVERSITY

CHAPTER 12 NORTHERN ILLINOIS UNIVERSITY CHAPTER 12 NORTHERN ILLINOIS UNIVERSITY Department of Electrical Engineering DeKalb, IL 60115 Principal Investigators: Mansour Tahernezhadi (815)-753-8568 Xuan Kong (815)-753-9942 127 128 NSF 1999 Engineering

More information

Boe-Bot robot manual

Boe-Bot robot manual Tallinn University of Technology Department of Computer Engineering Chair of Digital Systems Design Boe-Bot robot manual Priit Ruberg Erko Peterson Keijo Lass Tallinn 2016 Contents 1 Robot hardware description...3

More information

Complete 2.4 GHz RF Transceiver Module with Built-In RFDP8 Application Protocol Part Numbers RFD21733, RFD21735, RFD21737, RFD21738, RFD21739

Complete 2.4 GHz RF Transceiver Module with Built-In RFDP8 Application Protocol Part Numbers RFD21733, RFD21735, RFD21737, RFD21738, RFD21739 Complete 2.4 GHz RF Transceiver Module with Built-In Application Protocol Part Numbers,,,, Optional Configuration For use with External Antenna 15mm x 15mm (0.600 inch x 0.600 inch) / is a complete, READY-TO-USE

More information

A Design for the Integration of Sensors to a Mobile Robot. Mentor: Dr. Geb Thomas. Mentee: Chelsey N. Daniels

A Design for the Integration of Sensors to a Mobile Robot. Mentor: Dr. Geb Thomas. Mentee: Chelsey N. Daniels A Design for the Integration of Sensors to a Mobile Robot Mentor: Dr. Geb Thomas Mentee: Chelsey N. Daniels 7/19/2007 Abstract The robot localization problem is the challenge of accurately tracking robots

More information

ProLink Radio. 900 MHz SDI-12 Data Radio Scienterra Limited. Version A-0x0C-1-AC 20 October 2009

ProLink Radio. 900 MHz SDI-12 Data Radio Scienterra Limited. Version A-0x0C-1-AC 20 October 2009 ProLink Radio 900 MHz SDI-12 Data Radio Scienterra Limited Version A-0x0C-1-AC 20 October 2009 For sales inquiries please contact: ENVCO Environmental Collective 31 Sandringham Rd Kingsland, Auckland 1024

More information

B Robo Claw 2 Channel 25A Motor Controller Data Sheet

B Robo Claw 2 Channel 25A Motor Controller Data Sheet B0098 - Robo Claw 2 Channel 25A Motor Controller Feature Overview: 2 Channel at 25A, Peak 30A Hobby RC Radio Compatible Serial Mode TTL Input Analog Mode 2 Channel Quadrature Decoding Thermal Protection

More information

Using Magnetic Sensors for Absolute Position Detection and Feedback. Kevin Claycomb University of Evansville

Using Magnetic Sensors for Absolute Position Detection and Feedback. Kevin Claycomb University of Evansville Using Magnetic Sensors for Absolute Position Detection and Feedback. Kevin Claycomb University of Evansville Using Magnetic Sensors for Absolute Position Detection and Feedback. Abstract Several types

More information

o What happens if S1 and S2 or S3 and S4 are closed simultaneously? o Perform Motor Control, H-Bridges LAB 2 H-Bridges with SPST Switches

o What happens if S1 and S2 or S3 and S4 are closed simultaneously? o Perform Motor Control, H-Bridges LAB 2 H-Bridges with SPST Switches Cornerstone Electronics Technology and Robotics II H-Bridges and Electronic Motor Control 4 Hour Class Administration: o Prayer o Debriefing Botball competition Four States of a DC Motor with Terminals

More information

EE445L Fall 2014 Quiz 2A Page 1 of 5

EE445L Fall 2014 Quiz 2A Page 1 of 5 EE445L Fall 2014 Quiz 2A Page 1 of 5 Jonathan W. Valvano First: Last: November 21, 2014, 10:00-10:50am. Open book, open notes, calculator (no laptops, phones, devices with screens larger than a TI-89 calculator,

More information

MC-1010 Hardware Design Guide

MC-1010 Hardware Design Guide MC-1010 Hardware Design Guide Version 1.0 Date: 2013/12/31 1 General Rules for Design-in In order to obtain good GPS performances, there are some rules which require attentions for using MC-1010 GPS module.

More information

Robot Rangers. Low Level Design Document. Ben Andersen Jennifer Berry Graham Boechler Andrew Setter

Robot Rangers. Low Level Design Document. Ben Andersen Jennifer Berry Graham Boechler Andrew Setter Robot Rangers Low Level Design Document Ben Andersen Jennifer Berry Graham Boechler Andrew Setter 2/17/2011 1 Table of Contents Introduction 3 Problem Statement and Proposed Solution 3 System Description

More information

Today s Menu. Near Infrared Sensors

Today s Menu. Near Infrared Sensors Today s Menu Near Infrared Sensors CdS Cells Programming Simple Behaviors 1 Near-Infrared Sensors Infrared (IR) Sensors > Near-infrared proximity sensors are called IRs for short. These devices are insensitive

More information

Name & SID 1 : Name & SID 2:

Name & SID 1 : Name & SID 2: EE40 Final Project-1 Smart Car Name & SID 1 : Name & SID 2: Introduction The final project is to create an intelligent vehicle, better known as a robot. You will be provided with a chassis(motorized base),

More information

Project Name Here CSEE 4840 Project Design Document. Thomas Chau Ben Sack Peter Tsonev

Project Name Here CSEE 4840 Project Design Document. Thomas Chau Ben Sack Peter Tsonev Project Name Here CSEE 4840 Project Design Document Thomas Chau tc2165@columbia.edu Ben Sack bs2535@columbia.edu Peter Tsonev pvt2101@columbia.edu Table of contents: Introduction Page 3 Block Diagram Page

More information

DNT24MCA DNT24MPA. Low Cost 2.4 GHz FHSS Transceiver Modules with I/O. DNT24MCA/MPA Absolute Maximum Ratings. DNT24MCA/MPA Electrical Characteristics

DNT24MCA DNT24MPA. Low Cost 2.4 GHz FHSS Transceiver Modules with I/O. DNT24MCA/MPA Absolute Maximum Ratings. DNT24MCA/MPA Electrical Characteristics - 2.4 GHz Frequency Hopping Spread Spectrum Transceivers - Direct Peer-to-peer Low Latency Communication - Transmitter RF Power Configurable - 10 or 63 mw - Built-in Chip Antenna - 250 kbps RF Data Rate

More information