This is the most affordable robot out there! This robot is very smart and if you have extra doe than you can have lots of them. these robots like to ineract with each other.
I GOT THE VIDEO!!!
Remove these ads by
Signing UpStep 1Get the stuff
AXE023 x1
USB Download cable x1
programming editor (free) x1
5V voltage regulater x1
"bumper-switches" x2
moters and wheels
(2 moters and 2 wheels)
| « Previous Step | Download PDFView All Steps | Next Step » |













































I am glad that you like the robot.. It is actually made by me, and featured here: http://letsmakerobots.com/node/87
It was not posted here by me, though. If I get the time I will post it in here as well, but so far I have not really made an instructable for it :)
If you want to program the bot, by all means build it as the Instructable tells you to.
But if you just want to just let it rip around bumping and dodging, you can actually save money by using transistors instead of the PIC MCU shown.
=D.
People are actually building this type of bot without MCU's. Only transistors...
Check this out:
http://www.youtube.com/watch?v=VAATI2VOjlU&feature=channel_page
WARNING: Bad Music taste alert! (That guy's my youtube friend)
symbol fw = 20
symbol bc = 200
b0= 175
'
dav:
random w5
for w3 = 0 to w5
if pin3 = 1 then
gosub bum
end if
next w3
b0= b0 +1
random w5
if b0 < w5 then goto hest
random w5
if w5 > fw then
high 1 low 0'ForwardRight
endif
random w5
if w5 > fw then
high 4 low 2'ForwardLeft
endif
hest:
random w5
if w5 > bc then
high 2 low 4'ReverseLeft
endif
random w5
if w5 > bc then
high 0 low 1'ReverseRight
endif
goto dav
bum:
w4 = 32212
return
high 2 low 4 high 0 low 1'Reverse
pause 300
if b0 > 175 then
high 1 low 0'ForwardRight
high 2 low 4'ReverseLeft
else
high 4 low 2'ForwardLeft
high 0 low 1'ReverseRight
end if
pause 300
b0 = 175
return