cwhaticando.com home DIY • Do it Yourself • Weekend Projects • BIG Projects • LITTLE Projects
become a creator share your how-to  

 

 

close window

How Do I Share My How-To?

It's really pretty easy, pictures and videos of the steps it takes to complete your project are stored on YouTube and picasaWeb. Once your "final" video is stored on YouTube, your project will show in the listings on the site. All this is controlled by our Creator's Tools. Basically, you start a project by writing up the project idea.

Step 1. Sign up for a free Creator's Account to gain access to the Creator's Tools.

Step 2. Login

Step 3. Push the "Create New Project" button on the Creator's Tools. Make a name (you can change it later) for your project. And describe your plans to use as notes to guide the creation of the steps.

Step 4. When you've finished providing all the steps to your project, shooting the videos and saving to google video via the Creator's Tool Panel, you are ready to write the introductory paragraph with an interesting story of how you did it, or how you do it in the case of a professional services presentation.

Step 5. Last but not least create and upload the video (to YouTube) which is the video that will be used to summarize the project. If you were building a robot, this final video would show the robot running around, doing fun things that will inspire others to create their version of your project.

That's it... Watch the views and ratings for your project pile up along with the sales commissions! Or get a customer because you showed how you remodel a house.

close window

FAQ About Becoming A Creator

Q. Why would I go to all that work, building something, then put it on a website like C What I Can Do? What's the point?

A. Actually, there are a couple of forms for a reward:

  1. You get rated as an author. Lots of good ratings looks good on your resume.
  2. You Make Money!

YOU Make Money when someone buys a part from You, and builds it into Their Version of your project. And, if YOU have a basement full of red leds and build a red led project - we'll send you customers who are inspired to build your blinking light device. If you sell PC boards, you may link to your own sales. Or sell your own kit online through your e-Bay store.

The same with books! We encourage project builders to make books. In fact, CwhatIcanDo is a great place to get rated as an author. 'Betcha get a better deal from your publisher...

Of course, it is possible that your project won't make you any money, because someone built something even cooler than yours (maybe even inspired by your project.) Maybe you just want to show your version of another project... It's done in the spirit of the web: Sharing ideas. And it's fun building a project on your own.



Autonomous Robot Built From Power Chair Wheelchair      ...     32013 Views
Author's name: weRbots       

By now you may have noticed the videos and projects involving a robot made from a power chair.

This is the latest video. The PC board CHI series from picAxe is modified to support a Sonar SRF-08 which requires the SPI bus.

You can see from these tests, this is a remarkable ping unit. It should be. It costs 60 bucks or so! But it is smart and provides values directly into a register on chip. That allows you to allow the sensor to constantly run (samples every 65ms) while you do a "check value B-4 going forward" in a very fast processor loop to give smooth controls.

The video shows testing a single sonar shifted to one side or the other. Now the robot should follow the wall like the previous tests with this setup using IR.
Author's Assigned Keywords:    Cheap Robot    picAxe    picAxe 18m2    robotics    Robot Motor Control

  (ad)
Modifying Existing Joystick/Controller     
You get to drill a hole in the back panel where the wires run out of the control unit.

Make sure you put the drill on an angle. I used 1/8 in drill. Make it small as you can. You just want four #24 gauge wires for power (which is very small) and control Forward Backward and Left Right, these are signal wires.

Feed Control and Power Wires Through Joystick / Controller     
See how you feed the four wires through the new hole you drilled through the back of the joystick/controller.
Connections to Joystick controller     
Here are the connection points to the controller shown close-up so you can wire the cables between the picAxe control board and the SRF device.
Modify the picAxe Power Board     
Here are the things that will need changing on the board to allow the addition of the SCI stuff for the SRF-08.
SRF-08 picAxe and Starter Software     
These are the basic parts hooked up. Here is the software listing for the unit described and operating as in the video.

I wouldn`t release it as a product, and I believe the next rev is going to do more things better, we hope. This listing is for you to get started. It will, as shown, right wall-follow and do object avoidance, just like you`d get in a weekend project where you built a mouse-bot, or equivalent simple device. AND, it is a lot of fun.

And, you can already see the sneak preview of what is in the works, putting the rf remote, the IR remote together so you can choose between r/c, autonomous, even semi-autonomous combinations.

Next step - We go further...

; *******************************
; ***** Power Chair Robot *****
; *******************************
; Filename: using18m2.bas
; Date: 03/09/12
; File Version: 2.x
;
; Written by: Jim H
; Function: using nav and drive ctl
; Last Revision: 1
` ------------------------------------------------------------
` Compiler Directives
#picaxe 18m2
` ------------------------------------------------------------
`--------------------------------------------------
` PicAxe 18M2 pin diagram
`==================================================
`(DAC / Touch / ADC / Out / In) C.2 leg 1
`(SRQ / Out) Serial Out / C.3 leg 2
`(In) / Serial In / C.4 leg 3
`(In) old reset is now signal C.5 leg 4
`---------------------------------------
`(gnd) 0v leg 5
`---------------------------------------
`(SRI / Out / In) B.0 leg 6
`(i2c sda /Touch /ADC /Out /In) B.1 leg 7
`(hserin /Touch /ADC /Out / In) B.2 leg 8
`(pwm / Touch / ADC / Out / In) B.3 leg 9
`=======================================
`---- package bottom -- direction up ----------
`=======================================
`(i2c scl / Touch / ADC / Out / In) B.4 leg 10
`(hserout / Touch / ADC / Out / In) B.5 leg 11
`(pwm / Touch / ADC / Out / In) B.6 leg 12
`(Touch / ADC / Out / In) B.7 leg 13
`---------------------------------------
`(vcc) +v leg 14
`---------------------------------------
`(Out / In) C.6 leg 15
`(Out / In) C.7 leg 16
`(Touch / ADC / Out / In) C.0 leg 17
`(Touch / ADC / Out / In) C.1 leg 18
`
`===================================================

`--------------------------------------------------------------

#rem
1. Make it look when turning, only "Far Enough"
2. Look without drive for tuning the algorithm flag on/off
3.
#endrem

` set motor drivers to known position
` turn all motor enables OFF
symbol in3 = b.7 `FWD/BKWD
symbol en34 = b.2

symbol in1 = b.5 `L/R
symbol en12 = b.3

symbol i2csda = B.1
symbol i2cscl = B.4

symbol runFlag = b6
symbol SRF08SftwRev = b0
symbol LightSens = b2
symbol Range = w2


symbol minAmnt = 25
symbol maxAmnt = 35

` stop everything
low en34,in3,en12,in1, runFlag

` Define i2c slave address for the SRF08
hi2csetup i2cmaster,%11100000,i2cfast,i2cbyte

hangTime: `wait to push button to start this thing going
if pinC.5 = 1 then
goto hangTime
else
goto main
end if


main:
`inline checks of robot condition
`stop, analyze, react appropriately
`make this check so fast it is a blur
`monitor the pb, then start the mover forward until strategy

hi2cout 1,(0) ` cut analog gain to 200 ish
hi2cout 0,(80) ` Send Ranging command to get range in in
pause 100 ` Wait for ranging to complete
`hi2cin 0,(SRF08SftwRev) ` Read SRF08 Software Revision in b0
hi2cin 1,(LightSens) ` Read the Light Sensor into b2
hi2cin 2,(b5, b4) ` Read the Range, Note b5-b4 are w2 high-low bytes

hi2cin 2,(b5, b4) ` Read the Range, Note b5-b4 are w2 high-low bytes

if Range <= minAmnt then
high b.0
gosub stopFB
gosub stopTurn
pause 200
gosub moveBackward
pause 600
gosub stopFB
gosub turnLeft
pause 700
gosub stopTurn
else low b.0
end if


if Range > minAmnt AND Range < maxAmnt then
high b.0
gosub turnLeft
pause 350
gosub stopTurn
else low b.0
end if

gosub moveForward
pause 200

goto main



moveForward:
high in3
high en34
pause 10
return

moveBackward:
low in3
high en34
pause 10
return

stopFB: ` stop forward/backward motion
low en34 `drive off
pause 10
return

turnRight:
high in1
high en12
pause 10
return

turnLeft:
low in1
high en12
pause 10
return

stopTurn: ` stop right/left motion
low en12 `drive off
pause 10
return

become a creator
close window

It's Easy To:

C - What - I - Can - Do

• Sign up - Get ID and Password

• Plan and Create a Project That Someone Might Enjoy and May Even Want to Build

• Link to your creation on your favorite social networking site or blog.

• Become famous! Because your projects get a lot of Hits!

 

No parts list with this project. Scan the 'Junkbox Reviewer' below! Find projects by clicking on their parts. Got something in your junkbox? Here's your spot to find something fun to make or build!

 

Junk Box Reviewer
Itching To Start Building A DIY Do It Yourself Project? Got Some Parts of Your Own in your JunkBox? Find projects by Surfing' the Parts List!
  
  
  
  
  
 
Andrei And Jim
Web Developers
Visit the project:

CwhatIcanDo Website


 
  
  
 
L 298 Compact Motor Driver Kit
Solarbotics
Visit the project:

Build the L298 H-Bridge Motor Control


 
  
 
Account On CwhatIcanDo
CwhatIcanDo.com
Visit the project:

HELP :: How To Create a Project


 
  
  
 
Microrobot Avoider Jr
Microrobot
Visit the project:

Robot Man: With Robot Demos


 
  
  
  
 
Brilliant Blue/Green LED
Surplus
Visit the project:

Converting a Flashlight to LED


 
  
 
PICAXE 8 Pin Motor Driver Board
SparkFun
Visit the project:

Easy Cheap Robot Weekend Project


 
  
 
Tracked Vehicle Chassis Kit
Tamiya
Visit the project:

Build Your Own Track Drive Robot


 
  
  
 
PICAXE 8 Pin Motor Driver Board
SparkFun
Visit the project:

Build Your Own Track Drive Robot


 
  
 
Infrared Proximity Sensor Short Range - Sharp GP2D120XJ00F
Sharp
Visit the project:

Build Your Own Track Drive Robot


 
  
 
PICAXE 8 Pin Motor Driver Board
SparkFun
Visit the project:

Build a Robot In 5 Minutes


 
  
 
Infrared Proximity Sensor Short Range - Sharp GP2D120XJ00F
Sharp
Visit the project:

Build a Robot In 5 Minutes


 
  
 
Gear Motor 2 - 224:1 Offset Shaft
SolarBotics
Visit the project:

Build a Robot In 5 Minutes


 
  
 
4 X AA Cell battery holder plus on/off switch
Powerize
Visit the project:

Build a Robot In 5 Minutes


 
  
 
PICAXE 8 Pin Motor Driver Board
SparkFun
Visit the project:

picAxe 8 bit Motor Controller: Look Inside


 
  
 
Infrared Proximity Sensor Short Range - Sharp GP2D120XJ00F
Sharp
Visit the project:

picAxe 8 bit Motor Controller: Look Inside


 
  
 
4 Section In-Ground Batting Net
battingnets.com
Visit the project:

Home Installation of a 4 Section In-Ground Batting Cage


 
  
  
  
  
  
  
  
 
Transformer 1k:8 ohm
xicon
Visit the project:

Pong)))))


 
  
 
PICAXE 8 Pin Motor Driver Board
SparkFun
Visit the project:

Robots Almost Anyone Can Afford


 
  
  
  
 
Morphibian Land Shark
Kid Galaxy
Visit the project:

Morphibian Land Shark


 
  
  
  
  
  
  
 
Parallax (Futaba) Continuous Rotation Servo
futaba (modified)
Visit the project:

How To Build a Robot in a Box


 
  
 
Parallax (Futaba) Standard Servo
futaba
Visit the project:

How To Build a Robot in a Box


 
  
  
  
 
PICAXE 8 Pin Motor Driver Board
SparkFun
Visit the project:

Weekend Project: Get Started With Robots


 
  
  
 
L298 Compact Motor Driver
Solarbotics
Visit the project:

Build a Respectable Autonomous Robot


 
  
 
Infrared Proximity Sensor Short Range - Sharp GP2D120XJ00F
Sharp
Visit the project:

Weekend Project: Get Started With Robots


 
  
  
 
PICAXE 18 Pin Power Project Board
picAxe
Visit the project:

Build a Robot From A Power Wheelchair


 
  
 
PICAXE 18M2 Microcontroller
picAxe
Visit the project:

Build a Robot From A Power Wheelchair


 
  
  
  
  
  
 
Solderless Breadboard For Uno
Jameco Valupro
Visit the project:

Arduino Development VS PicAxe Development


 
  
 
USB 2/0Video Capture Device
SIIG
Visit the project:

On Line Neighborhood Watch


 
  
  
  
 
Eurocard IC Pattern
Velleman
Visit the project:

On Line Neighborhood Watch


 
  
 
40 kHz Weatherproof Transducer
Audiowell Electronics
Visit the project:

Pong)))))


 
  
 
PICAXE 18M2 Microcontroller
picAxe
Visit the project:

Autonomous Robot PVC "Pickup Truck"


 
  
 
Power Amplifier
ST Micro
Visit the project:

Pong)))))


 
  
  

By Creators
WeRbots: i-Mon App
WeRbots: Pong)))))
By Keywords
Ajax: battle
Android: battle
BEAM Robots: battle
Convert Your Flashlight to LED: Converting a Flashlight to LED
How To Build Cheap Bots: Robots Almost Anyone Can Afford
How To Build Cheap Bots: How To Build a Robot in a Box
How To Website: Tour This Website
How To Website: CwhatIcanDo Website
Infrared Proximity Sensor: Build Your Own Track Drive Robot
Quick Build Robot: Build a Robot In 5 Minutes
robot bending: Morphibian Land Shark
Robot Motor Control: Robot Basics
Robot Motor Control: Buggy Bot: Wire Frame Bot Body
Robots: Robot Basics
Rumble Bot Conversions: Robots Almost Anyone Can Afford
Select or type in a Keyword: Converting a Flashlight to LED
web 2.0 site: CwhatIcanDo Website
Weekend Project Robots: Easy Cheap Robot Weekend Project

Click To Expand / Contract Menus. View by Creator, Category, Keywords or Number of Views.

©Copyright 2008 - , CwhatIcanDo.com, all rights reserved.