Editing Arduino Laser Cannon

Jump to navigation Jump to search

Warning: You are not logged in. Your IP address will be publicly visible if you make any edits. If you log in or create an account, your edits will be attributed to your username, along with other benefits.

The edit can be undone. Please check the comparison below to verify that this is what you want to do, and then save the changes below to finish undoing the edit.

Latest revision Your text
Line 1: Line 1:
 
= Arduino Laser Cannon =
 
= Arduino Laser Cannon =
  
This is a somewhat incomplete article, contact me if you need help:  [[russ_hensel]].
+
'''early draft, some text is mixed from another project, should be better updated in a few days'''
 
 
This project was written as part of a course on the Arduino at AS220 in Providence RI.  see: [http://as220.org/labs/pages/Arduino%20and%20Servo%20Motor%20Workshop Arduino and Servo Motor Workshop]
 
  
 
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.
 
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.
Line 12: Line 10:
 
*Technology: Arduino  
 
*Technology: Arduino  
 
*Author: [[russ_hensel]] ( where you can find an email address to reach me )  
 
*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.
+
*Summary: An Arduino controls two servo motors to aim a laser pointer. A terminal program is used to control the Arduino. This project was written as part of a course on the Arduino at AS220 in Providence RI.  see: [http://as220.org/labs/pages/Arduino%20and%20Servo%20Motor%20Workshop#preview|Arduino and Servo Motor Workshop]
*Archive for the project will be posted.  See download section below.  
+
 
 +
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:  
 
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.
  
*Demonstrating the operation of a servo 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.   
*See "other things to try" below.
 
 
 
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.exe.   
 
  
 
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 ):  
 
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 ):  
  
Commands include:
 
 
*Set  azimuth
 
*Set  azimuth
 
*Set  altitude
 
*Set  altitude
Line 32: Line 32:
 
Example:
 
Example:
  
comming
 
 
== Hardware ==
 
 
An Arduino of course, and to run the motors I used an external plug in dc supply of well over 5 volts and a 5 volt linear regulator to power the servos.  I left the arduino powered off the usb port.  I bought a couple of laser pointer lasers ( a laser pointer without the case, batteries, and switch, but with an adjustable lens ), I will try to find a reference when I order more.  I added 2 RC servo motors, one standard size, one micro.  Using a small peice of sheet stock, I drilled 2 holes in in and then using double sided foam tape and a nylon tie, fastened the servo to the sheet.  I fastened the smaller servo to the horn of the larger servo so the axies are at right angles.  Finally I tied on the laser to the horn of the small servo.  ( see the picture ).  The laser is powered from the 5 volt regulator thru a current limiting 200 ohm resistor ( a 150 or perhaps even 100 ohm resistor would give a brighter beam, at some point the beam gets too bright and the laser fails, experiment at your own risk).  My laser came without specs for current or anything else.  In the program the output pins for the Arduino are defined in the header file.
 
 
[[Image:can1.png|alt text]]
 
 
The servos come with 3 pin female connectors, these can be plugged into 3 pin male headers, to plug them into the protoboard, make dual males like so:
 
 
[[Image:con1.png|alt text]]
 
 
[[Image:con2.png|alt text]]
 
 
I have some more discussion of this technique at:  [[Solderless protoboard]]
 
 
My bare bones board plugs right into the protoboard:  this one is a much bigger protoboard than I need even with the additional parts used for a stepper tester ( discussed at [[Stepper Motor Demonstration and Tester]] ).
 
  
[[Image:ard1.png|alt text]]
+
Hardware
  
 +
  
 
== Command Interface ==
 
== 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.
+
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.
  
  
Line 73: Line 57:
 
|Aim up
 
|Aim up
 
|unnn
 
|unnn
 +
d-
 
|Shift the aim up by nnn microseconds.  Software keeps pulse in legal 1 to 2 msec range.
 
|Shift the aim up by nnn microseconds.  Software keeps pulse in legal 1 to 2 msec range.
 
<!------------------------------->
 
<!------------------------------->
Line 78: Line 63:
 
|Aim down
 
|Aim down
 
|dnnn
 
|dnnn
 +
d-
 
|Shift the aim down by nnn microseconds.  Software keeps pulse in legal 1 to 2 msec range.
 
|Shift the aim down by nnn microseconds.  Software keeps pulse in legal 1 to 2 msec range.
 
<!------------------------------->
 
<!------------------------------->
Line 92: Line 78:
 
<!------------------------------->
 
<!------------------------------->
 
|-valign="top"
 
|-valign="top"
|more to come
+
|Go for a number of steps
|...
+
|gnnn
|for now you will have to read the code.
+
|go for a number of steps ( max. about 30,000 ) Direction set with d.  
<!-------------------------------
+
Responds with "g starting<cr>" when rotation begins, then with "g done<cr>" when done. May be stopped early with stop command.
 +
<!------------------------------->
 
|-valign="top"
 
|-valign="top"
 
|Set the time delay between steps in ms ( max 255 )
 
|Set the time delay between steps in ms ( max 255 )
 
|tnnn
 
|tnnn
 
|Reports delay set.  nnn = 0 to 255
 
|Reports delay set.  nnn = 0 to 255
<!-------------------------------
+
<!------------------------------->
 
|-valign="top"
 
|-valign="top"
 
|Micro second delay in addition to to the ms delay.
 
|Micro second delay in addition to to the ms delay.
 
|unnnn
 
|unnnn
 
|Reports delay set. Ok to use values nnn = as high as 5000 us.
 
|Reports delay set. Ok to use values nnn = as high as 5000 us.
<!-------------------------------
+
<!------------------------------->
 
|-valign="top"
 
|-valign="top"
 
|Set the permutation of the motor wires.
 
|Set the permutation of the motor wires.
 
|pn
 
|pn
 
|Set the permutation, find the value that works for your motor. ( n = 0 to 5 ) Responds with the permutation set.
 
|Set the permutation, find the value that works for your motor. ( n = 0 to 5 ) Responds with the permutation set.
<!-------------------------------
+
<!------------------------------->
 
|-valign="top"
 
|-valign="top"
 
|Special command 1, Spin the motor in an interesting way.   
 
|Special command 1, Spin the motor in an interesting way.   
 
|x1
 
|x1
 
|Motor spins responds with "x special done<cr>" when it is done.  May be stopped with the stop cammand.
 
|Motor spins responds with "x special done<cr>" when it is done.  May be stopped with the stop cammand.
<!-------------------------------
+
<!------------------------------->
 
|-valign="top"
 
|-valign="top"
 
|Special command 2, Vibrate the motor first a lot then less and less to stop
 
|Special command 2, Vibrate the motor first a lot then less and less to stop
Line 143: Line 130:
 
== Program Design ==
 
== Program Design ==
  
The program does not use the Arduino servo library ( ref would be nice ) or interrupts.  Instead it relys on polling comparing the current time ( mills() ) to a saved time to see if it is time for a new pulse.  This seems to be a common technique, which I borrowed from the web. ( For some info on servo motors see: [http://opencircuits.com/Motors#Servo Motors] ).  Two variables store the time in microseconds for each pulse, this time is implemented using the delaymicroseconds() function.  See the function: xxx.  The Arduino PWM functions and hardware are not used: on most microcontrollers these give you good resolution in a 0 to 100% duty cycle, but not good for the 5% to 10% duty cycle used by servos ( this may or may not apply to the Arduino, I did not even check ).
+
The program does not use the Arduino servo library ( ref would be nice ) or interrupts.  Instead it relys on polling comparing the current time ( mills() ) to a saved time to see if it is time for a new pulse.  This seems to be a common tenique, which I borrowed from the web. ( For some info on servo motors see: [http://opencircuits.com/Motors#Servo Motors] ).  Two variables store the time in microseconds for each pulse, this time is implemented using the delaymicroseconds() function.  See the function: xxx.  The Arduino PWM functions and hardware are not used: on most microcontrollers these give you good resolution in a 0 to 100% duty cycle, but not good for the 5% to 10% duty cycle used by servos ( this may or may not apply to the Arduino, I did not even check ).
  
 
The archive has 2 versions of the program the Simple Laser Cannon can only aim the laser left, right, up, down and does not save any setings or "fire" at any points.
 
The archive has 2 versions of the program the Simple Laser Cannon can only aim the laser left, right, up, down and does not save any setings or "fire" at any points.
Line 154: Line 141:
  
 
Commands are received via an serial communications routine [[Arduino Command Interpreter]], 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. RS232 functions are not driven by an interrupt.
 
Commands are received via an serial communications routine [[Arduino Command Interpreter]], 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. RS232 functions are not driven by an interrupt.
 +
 +
== Hardware ==
 +
 +
An Arduino of course, and to run the motors I used an external plug in dc supply of well over 5 volts and a 5 volt linear regulator to power the servos.  I left the arduino running off the usb port.  I bought a couple of laser pointer lasers ( a laser pointer without the case, batteries, and swithch, but with an adjustable lens ), I will try to find a refence when I order more.  I added 2 RC servo motors, one standard size, one micro.  Using a small peice of sheet stock, I drilled 2 holes in in and then using double sided foam tape and a nylon tie, fastened the servo to the sheet.  I fastened the smaller servo to the horn of the larger servo so the axies are at right angles.  Finally I tied on the laser to the horn of the small servo.  ( a picture will appear here, soon? ).  The laser is powered from the 5 volts thru a current limiting 200 ohm resistor ( a 150 or perhaps even 100 ohm resistor would give a brighter beam, at some point the beam gets too bright and the laser fails, experiment at your own risk.  My laser came without specs. )  In the program the output pins for the Arduino are defined in the header file.
 +
 +
[[Image:can1.png|alt text]]
 +
 +
The servos come with 3 pin female connectors, these can be plugged into 3 pin male headers, to plug them into the protoboard, make dual males like so:
 +
 +
[[Image:con1.png|alt text]]
 +
 +
[[Image:con2.png|alt text]]
 +
 +
I have some more discussion of this technique at:  [[Solderless protoboard]]
 +
 +
My bare bones board plugs right into the protoboard:  this one is a much bigger protoboard than I need even with the additional parts used for a stepper tester ( discussed at [[Stepper Motor Demonstration and Tester]] ).
 +
 +
[[Image:ard1.png|alt text]]
  
 
== Other Things to Try ==
 
== Other Things to Try ==
Line 159: Line 164:
 
*You can use the pointing feature of the system to implement an instrument with a very large scale:  Put a temperature scale on one side of the room, the "cannon" on the other and have it point to the temperature.   
 
*You can use the pointing feature of the system to implement an instrument with a very large scale:  Put a temperature scale on one side of the room, the "cannon" on the other and have it point to the temperature.   
  
*Use the pointer as a meter with a scale.
 
 
*I have been thinking about a clock, each hour would be a piece of crystal and the laser would hit it on the hour.  Minutes might use another laser or other sort of display.
 
*I have been thinking about a clock, each hour would be a piece of crystal and the laser would hit it on the hour.  Minutes might use another laser or other sort of display.
*A servo generally moves from one position to another as fast as it can.  By programming in intermediate positions between a start and stop you should be able to control the speed.
 
*Try to make the beam trace out a defined curve.
 
*Surely you can think of some other things.
 
  
 +
*Surely you can think of something.
 +
 +
== Additions/Changes ==
  
 +
These are changes I may or may not make: ( or you may take them on )
 +
  
== Possibly Useful Links ==
+
== Possibly useful links ==
  
 
*This program uses my: [[Arduino Command Interpreter]]
 
*This program uses my: [[Arduino Command Interpreter]]
Line 175: Line 181:
 
*More information on serial communications with microcontrollers: [[Microcontroller Serial Communications Articles]]  
 
*More information on serial communications with microcontrollers: [[Microcontroller Serial Communications Articles]]  
  
*[[PC-Microcontroller Communications]] discusses free terminal programs, most much better than hyperterminal.
+
*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
*[http://as220.org/labs/pages/Arduino%20and%20Servo%20Motor%20Workshop Arduino and Servo Motor Workshop] Course link at AS220 Labs.
 
  
 
*[http://www.popsci.com/node/19965How|It Works: The Flying Laser Cannon] for a more distructive version.
 
*[http://www.popsci.com/node/19965How|It Works: The Flying Laser Cannon] for a more distructive version.
 
There are many projects that use 2 or more servo motors for aiming stuff.  Some of these are:
 
 
 
*[http://www.instructables.com/id/Camera-Panorama-robot-head-panograph/  Camera Panorama robot head (panograph)]
 
 
*[http://www.instructables.com/id/Laser-guided-Ghost-Climber/?ALLSTEPS Laser-guided Ghost Climber]
 
 
*[http://www.instructables.com/id/Arduino-2-axis-servo-solar-tracker/ Arduino 2-axis servo solar tracker]
 
 
http://www.instructables.com/id/Autonomous-Paintball-Sentry-Gun/?ALLSTEPS Autonomous Paintball Sentry Gun]
 
  
 
== Download ==
 
== Download ==
  
[http://home.comcast.net/~russ_hensel/OC/ArduinoAndServoMotorWorkshop.zip Software and web page archive for the workshop]
+
email me to see if there have been some unposted revisions – which right now is all there is. [[russ_hensel]]
  
  

Please note that all contributions to OpenCircuits may be edited, altered, or removed by other contributors. If you do not want your writing to be edited mercilessly, then do not submit it here.
You are also promising us that you wrote this yourself, or copied it from a public domain or similar free resource (see OpenCircuits:Copyrights for details). Do not submit copyrighted work without permission!

Cancel Editing help (opens in new window)