Arduino Laser Cannon

From OpenCircuits
Jump to navigation Jump to search

Arduino Laser Cannon

early draft, some text is mixed from another project, should be better updated in a few days

Before you get too excited: the armament is just a laser pointer, so nothing blows up. The arduino controls the aim of the laser. Using a terminal program you can aim the laser in a number of directions. Once aimed you can commit the position to memory and recall it later.


Name: Arduino Laser Cannon Status: in fairly early development, but is working. Technology: Arduino Author: russ_hensel ( where you can find an email address to reach me ) Summary: An Arduino controls two servo motors to aim a laser pointer. A terminal program is used to control the Arduino.

Archive for the project will be posted. See download section below.

This project can be used as is or may give you ideas for other similar projects: Example code for stepper motor control and for RS232 communications ( interrupt driven on the receive end ) on the PIC16F877A. Determining which drive wire is which on a unipolar stepper motor. This is the type of motor that I have most commonly found surplus or in salvage equipment Determining angle per step or steps per revolution of a stepper motor. Determining maximum speed of stepper motor. Demonstrating the operation of a stepper motor.

Platform: Arduino ( I used the bare bones board, but any should do ). Added an external 5 v regulator to power the servos and the laser pointer ( which I got from … ). Software done using arduino.ext.

A laser pointer is connected to 2 Servos and the servos are connected to each other so one controls the azimuth while the other controls the altitude ( like most standard cannons ). ( controlled by the RS232 connection ):

  • Set azimuth
  • Set altitude
  • Save and recall azimuth and altitude
  • “Tour” all the saved settings.

Example:


Hardware


Command Interface

All commands ( except stop should be terminated with a carriage return ) Note that the command interface is not very smart, giving parameters that are out of range my blow the whole program up. If so reboot the microcontroller . Do not send a new command ( except stop ) until earlier commands have been completed ( actually you can get ahead some if you are careful ). Commands may be either upper or lower case. The backspace key usually works.


Notes on terminal program set up. Baud rate should be 19.2K 8N1, but is easily adjustable in the header file for the program. Most terminal programs can be set to treat a carriage return as a carriage return line feed. Do it.

Some terminal programs will not transmit in lower case ( all our commands are lower case ) unless specially set to do so. Set it to allow lower case.

Program Design

I no longer have the patience for assembly language.

Commands are received via an serial communications routine, the main loop checks each time around to see if a complete command has been received. Because commands are only interpreted in the main loop all commands are ignored until the program returns to the main loop. The exception to this is the stop command which will terminate a g or x command and return to the main loop quickly. RS232 transmission is not driven by an interrupt and so during transmission from the microcontroller no stepping takes place. Commands which do not result in motion execute very quickly, most of the time is for communications.


Other Things to Try

Run it faster and faster ( shorter time delay ) until it fails. You may want to turn it 400 turns to clockwise fast, then 400 counter clockwise slow. If it does not end up where it started then it skipped a step or more. If you know how many steps per rev then you need not reverse it just ask it to go a round number of revolutions. How many steps per revolution for your motor?

Guess, try to make it turn 10 revolutions fairly slowly or at least slowly enough so that it is not skipping steps.. If you number is right it will end up at the same angle it started. If not try a new guess. Demo the motor with Special Commands x1 and x2: x1: spins the motor one way faster and faster, then reverses and returns to original position. x2: motor vibrates faster and faster through smaller and smaller arc, then stops where it started.


Additions/Changes

These are changes I may or may not make: ( or you may take them on )


Possibly useful links

This program uses my: Arduino Command Interpreter

RS232 Discusses the sort of interface that is used by this project.

More information on serial communications with microcontrollers: Microcontroller Serial Communications Articles

A free terminal program, I like this much better than hyperterminal: Welcome to our Free Download/New Products Page! http://www.rs485.com/psoftware.html

Download

email me to see if there have been some unposted revisions – which right now is all there is. russ_hensel


Comment, Questions, Contributions?

Email me russ_hensel, or use the talk page for this topic. All feedback is welcome.