ECE597 Fall2014 Ringing Servos

From eLinux.org
Jump to: navigation, search

thumb‎ Embedded Linux Class by Mark A. Yoder


Team members: Mark Morrison, Peter Olejnik, Randy Turner

Grading Template

I'm using the following template to grade. Each slot is 10 points. 0 = Missing, 5=OK, 10=Wow!

08 Executive Summary
10 Installation Instructions - Wow, nice complete list of parts and assembly.
08 User Instructions
09 Highlights
08 Theory of Operation 
10 Work Breakdown
09 Future Work
09 Conclusions
10 Demo
10 Not Late
Comments: Thanks for the video

Score:  91/100

(Inline Comment)

Executive Summary

This rambles a bit.  Too much history, just report on what's working.
Consider using the outline given in the template.

The goal of the project at this moment is to use a cape that gives the BeagleBone usage of 32 PWM ports and to attach servo motors to it. The servo motors will then drive a mechanism that will ring bells of sorts. We have successfully used the PWM cape to drive a servo to a specified position using a shell script. We used a JavaScript program to output I2C messages to the cape to control the servos. The servos are connected to a mechanism with two bells, and when the servo rotates the bells ring. The bells do not require a great amount of movement to ring, but need to be oriented correctly to get the best sound, so the program only moves the servo about 15 degrees away from the center in either direction. For various reasons, we ported our software to C. At this point the C program can control the servers simultaneously, but we believe that we are hitting the transfer rate limit of I2C because we have to send four commands for each movement of each servo, and we send these four commands to each servo every 15 ms.

Hardware

Mechanical Hardware

Two diffrent types of servos were used. These were used with simmilar results.

The following quantaties of fasterners were used as well. All were obtained from McMaster-Carr

The bells used are bells provided to us by Dr. Yoder, originating from Hobby Lobby.

To build the Servo Mount, pieces were cut out from acrylic sheets. The links lead to DXF files. To download, rightclick and click save link as.

To build the Mounting Racks, pieces were cut out from acrylic sheets. The links lead to DXF files. To download, rightclick and click save link as.

Electrical Hardware

A BeagleBone is the bread and butter of the project, driving the entire effort. In case you dont have one, you can get one here!

To drive all these the following cape was used:

The electrical circuitry for the detector was made a few components. Additional components may be needed if you don't want to make permanent additions to the cape.

Each detector comprises of:

ProximitySensor.png

We also created an expansion board to allow us to access the GPIO ports that would otherwise be covered by the PWM cape. It brings the I2C and enable signals to the cape and leaves the rest of the headers on the BBB open.

ExpansionBoard.jpg

Mechanical Assembly

Servo Mount Assembly

1. Collect all the materials and tools you will use. In terms of tools, you will need a 2-56 tap, a 4-40 tap, a 10-24 tap, as well as tools to attach the screws/nuts.

Step1ServoMount.jpg

2. First thing first, you need to tap the right holes. The two large holes on the Base are 10-24, the holes above and below the hole for the servo to sit in on the Base are 2-56. The hole further from the large hole on the Bell_Twist need to be tapped to 4-40. Also, depending on your horn (the thing that spins on the servo motor), you may need to widen the holes present there.

Step2ServoMount.jpg

3. Ensure that the horn is vertical when the servo is at 90 degreees. After that, attach the servo, the two Bell_Twists, and the Servo_Connection to each other with the 2-56 screws and nuts as seen in the picture below. The screw and nut should hold the peices firmly together, but still allow for easy pivoting.

Step3ServoMount.jpg

4. Next is to add the shoulder screw and spacers. The order which the peices should be on the screw, from the head of the screw, is the 0.125 in Spacer, the Bell_Twist, and then two 0.25 in Spacers.

Step4ServoMount.jpg

5. Now comes the time to attach the servo assembly to the Base. Simply slide it in and screw in the two shoulder screws into the Base. Follow that up with adding two 2-56 screws with washers, to hold the servo down firmly.

Step5ServoMount.jpg

6. The bells you select may need some prep work. The ones we recieved had tinsle and little cards on them. This needs to be removed so you only have bells.

Step6ServoMount.jpg

7. The final step is to attach the bells to the bell-less servo mount. Use the two 4-40 screws to do so.

Step7ServoMount.jpg

Rack Holder Assembly

1. Collect all the materials and tools you will use. In terms of tools, you will need a 2-56 tapas well as probably a screwdriver to attach the screws.

Step1Rack.jpg

2. On the LowerRack, tap all the small holes as 2-56. There should be a total of 16.

Step2Rack.jpg

3. Place on top of the Lower Rack the TopRack. The small holes should align over each other. Then screw in a 2-56 screw, with a latch as well. To restate this, the screw should pass, from head down, the latch, the TopRack, and then the LowerRack. The screw should be just tight enough to hamper motion of the latch, but not enough to stop it.

Step3Rack.jpg

Rack Holder Assembly

The final assembly should look something like this. Each assembly consists of four servo mounts and a single rack. If done correctly, everything should slide sunggly into each other and hold quite respectably.

FinalProductRingingServos.jpg

Electrical Assembly

User Instructions

Could you give these as step-by-step instructions, showing what to type and
what output to expect?

Execute the makefile by running the following command from the project directory:

bone$ git pull
bone$ make

This will update the project files and then create a RingerScript executable. The executable sets up separate threads, initializes the I2C interface, and configures the cape automatically, so all the user has to do is execute it.

bone$ ./RingerScript

The ringing of the bells is controlled by the proximity sensor LEDs. Waving a hand in front of them will trigger the board to begin ringing the associated bells. Execution continues until the SIGINT (CTRL + C) command is sent via terminal.

Highlights

Check out the bells in motion in this Youtube video!

Theory of Operation

Give more detail on how the i2c command rings the bell.

The main process thread spawns a number of worker threads, each of which will poll the associated GPIO pins continuously. When the input drops below the threshold, the thread sends a command via I2C to ring the associated bell. The I2C commands sent set two 16 bit registers that define the PWM signal the cape sends to a particular port. The registers define the times of the rising and falling edges of the PWM signal. The PWM pulse width sets the angle of the servo. Using multiple I2C commands with a delay between them, the servo can be moved back and forth around a center of 90 degrees to create a ringing motion to ring the bells.

Work Breakdown

While we all took part in all the components, each one of us took lead in a particular field:

  • Mark took lead in designing the electrical hardware. He also, took charge of coding at the end, due to his extensive experience in C.
  • Peter was the brainchild behind the mechanical aspect of the project. He is also the one who spent a considerable effort bringing up the eLinux page to a respectable state!
  • Randy was the architect of the JavaScript software that drove the bells and servos, building most of the program that later got converted into C.

Future Work

  • The current I/O being used is using an IR detector and IR LED. The detection range of our set up is not that long. It would be intresting to see an improvement on this scheme.
  • Other hardware inputs could also be looked at, from as simple as push buttons to a Rube Goldberg like contraption.
  • In addition to hardware inputs, software inputs of various type could be looked at. These weren't looked at as deeply as we would have liked to, due to the limitation of time. Potential control schemes include:
    • MIDI Inputs
    • Chrontab
  • The PWM cape supports simultaneous control of all PWM outputs. This eliminates the need for multiple threads and would also eliminate the I2C bus saturation that we are experiencing. If the application demands that all bells ring at once, this is a much better solution. The hardware addresses to control them all are as follows:
    • 250 0xFA ALL_LED_ON_L
    • 251 0xFB ALL_LED_ON_H
    • 252 0xFC ALL_LED_OFF_L
    • 253 0xFD ALL_LED_OFF_H

Conclusions

We'd like to thank Dr. Yoder for providing us the materials and technical expertise to make this happen. We would like to also thank the Rose-Hulman Mechanical Engineering Department for supplying all the fasteners used. Also, special thanks to Ron Hofmann to cutting out all the material with the laser cutter.

We have learned that JavaScript is a poor choice for timing-critical applications. We have also learned the limits of the onboard I2C interface, making control of all 32 channels impractical. Additionally, we discovered some oddities with the setup of the BeagleBoard itself. The PWM cape uses the I2C1 headers, but is located on i2c2 in the software. Likewise i2c1 refers to the hardware I2C2 bus. The i2c0 bus is used internally and should not be accessed directly.

Technical Notes of Interest

  • The GitHub repository containing all of our software, as well as files CAD files, can be located here.
  • i2cdetect -y -r 2 finds address 0x40 and 0x41, which are the chip addresses on the PWM cape.
  • The mode register (register 0x00) of the chip on the PWM cape needs to be set in order to use the internal oscillator. It is by default disabled and cannot be enabled in "sleep mode"

Mode register of what?




thumb‎ Embedded Linux Class by Mark A. Yoder