21
Nov 11

Three birds with one stone

image

No place to put my suitcases
Need a desk
No more closet door to have to open

#thereifixedit


20
Oct 11

There is a 40ft rubber duck atacking Japan

First Godzilla then Mothra now this:

image


10
Aug 11

ROS & Robovero

 

Working in the UCSB Robotics Lab  I’ve had the fortune of getting to play with one of those adorable little chewable linux computers , during the ~week before my move to Japan. While unfortunately I wont get to see it though to its installation as the nervous system on a hoping robot,  I’ve had the adventure of getting it all up and running with the ROS (Robot Operating System)  toolchain. I pulled a bit of hair out during the process, so hopefully this post will prevent others from having to do so.

 

 

 

As of now, this blog describes the process of getting Gumstix to boot Ubuntu Natty from an SD card , autoconnect to wifi, and subscribe to a  ROS topic.
I’m using a Gumstix Overo Fire COM, 8GB SD card, and the new Robovero daughter board.

You don’t need that exact hardware, but at minimum:

  • -Gumstix Overo Air/Fire/FE
  • -Micro SD card (8 GB in these examples)
  • -Overo daughter board (could be pretty much any one)
  • -Computer running Ubuntu
  • -A wireless (or wired if you have the right Gumstix daughter board) network that both the Overo and Host computer can connect to

 

Creating the Bootable Ubutnu SD Card

First grab a copy of rootstock – a nifty tool we will use to create our armel ubuntu image:

# apt-get install rootstock

cd to someplace where you dont mind making a mess:

# mkdir gumbuntu
# cd gumbuntu

Now to generate the image:

~/gumbuntu# rootstock --fqdn overo --login robot --password temppasswd --imagesize 8G --seed wget,vim,linux-firmware,wireless-tools,wpasupplicant,usbutils,build-essential,tmux,openssh-server,lynx,python-yaml,cmake,subversion,wget,python-setuptools,pkg-config,python-dev,ntp,libboost-dev,libboost-all-dev,libapr1,libapr1-dev,libaprutil1,libaprutil1-dev,liblog4cxx10,liblog4cxx10-dev --dist natty --serial ttyS2

You may want to edit this somewhat. For more info on rootstock see https://wiki.ubuntu.com/ARM/RootfsFromScratch

This is bound to take a while. So in the meantime crack open a new terminal session and get your sd card formatted and bootable by following the directions here. STOP after copying MLO u-boot.bin and uImage to the boot partition, because we will be using our own rootfs image. You can download MLO u-boot.bin and uImage from here.

Once rootstock has completed unzip everything to the SD card’s root partition (lets call it sdroot)

~/gumbuntu# cd /media/sdroot
/media/sdroot# tar xvaf ~/gumbuntu/armel-rootfs-[creation date].tgz

This will also take a while. Make yourself useful by getting your Overo ready for the next step. The Ubuntu image we are building unfortunately does not have built in support for the Overo’s wifi chip, so we are going to swipe the modules and firmware from the nand image (which we know works). You could probably also find this stuff on the interweb , but this way is a pretty simple one stop shop for everything. If your kernel versions do not match you may be better off extracting the stuff from one of the Gumstix images to avoid compadibility issues.

 

 

Copying Modules and WiFi Firmware

Plug the daughter board into your desktop as you would normally to get to the serial console, give the boards power and let the Overo boot into the NAND Angstrom distro. We will be connecting to a wifi network to transfer files, becasue afaik there is no reliable way to do this over the serial connection. From the console (in a session thats not extracting files):

$ screen /dev/ttyUSB1 115200
[you will see the overo booting into Angstrom]
login: root
# ifconfig wlan0 up
# iwconfig wlan0 essid [your SSID]
# dhclient wlan0
# /etc/init.d/sshd restart

If you use encription you are going to have to set up wpa_supplicant.conf , but I’ll trust you know how to do this. The sshd restart probably isnt strictly necessary, but can’t hurt. Also don’t forget your Gumstix’s IP address; lets pretend its 192.168.1.14

Once the files have finished extracting from the SD card you will want to do the following (from a fresh terminal ) :

# cd /media/sdroot/lib
/media/sdroot/lib# scp -r root@192.168.1.14:/lib/modules/* modules/
/media/sdroot/lib# scp root@192.168.1.14:/lib/firmware/sd8686* firmware/
/media/sdroot/lib# cd ..
/media/sdroot# scp -r root@192.168.1.14:/etc/network/* etc/network/
/media/sdroot/lib# cd
# umount -a

Your bootable Ubuntu MicroSD card is now all ready! plug it into the Overo and give it a go

 

 

Installing ROS

Log into your Gumstix Ubuntu distro with the username/pass you used in the rootstock command, connect to your router and install ros by running:

# ifconfig wlan0 up
# iwconfig wlan0 essid [your SSID]
# dhclient wlan0
# apt-get update #not really needed yet, but verifies that you are connected
# easy_install -U rosinstall
# rosinstall ~/ros "http://packages.ros.org/cgi-bin/gen_rosinstall.py?rosdistro=diamondback&variant=ros-base&overlay=no"

 

go get that cup of coffee.

 

now I’ll assume you can get your router to statically assign IPs , if not you will have to change things every time your router does.  Edit /etc/hosts to include the name of your desktop computer (which will be running roscore) lets pretend your desktop has IP address 192.168.1.4, and you want to name it desky

#echo "192.168.1.4 desky" >> /etc/hosts

#echo "source ~/ros/setup.bash" >> ~/.bashrc

#export ROS_MASTER_URI=http://Desky:11311

. ~/.bashrc

Now ROS is all set up! lets just configure the Gumstix so that it automatically connects to WiFi on boot.

 

 

Network Config

In /etc/rc.local put:

#ifconfig wlan0 up
#iwconfig wlan0 essid [your SSID]
#dhclient wlan0 -4

You may not need the -4 , but without it my connection would fail every few minutes and I would have to request a new lease.
Also if you are using encryption you will need to set up /etc/wpa_supplicant.conf and change the above lines to something more like:

#ifconfig wlan0 up
# wpa_supplicant -Dwext -i wlan0 -c/etc/wpa_supplicant.conf -B
#dhclient wlan0

Now your overo is all set! Unplug the mini-USB and reset the Overo. After about a minute you should see the outermost blue LED blink violently then remain lit. This means you are connected.
To make things easier on ourselves and ROS, lets make another similar entry in /etc/hosts. This time assume the gumstix is 192.168.1.8 and we want to name it gummy

#echo "192.168.1.8 gummy" >> /etc/hosts

no tricks there.  Now you can log into your overo wirelessly simply by running

ssh [user]@gummy

You can now run your ROS programs , and the two computers should be able to find each other seamlessly.

 


09
Aug 11

Radiation Map : work in progress

 
 A recent news article got me thinking about Geiger readings in Japan, after a bit of Googling I came across some cool things like an upcoming Geiger shield from the Tokyo Hackerspace, and an aggregate data feed from Pachube with nearly 500 live datapoints. Excited to have all this data I decided to whip up something simple (in Processing) to plot it all on a map. I’ve been looking into to applying a predictive modeling construct (perhaps something like an ensemble Kalman filter with an atmospheric dispersion model for Cesium 137), to be able to plot the theoretical radiation levels in all of Japan. I tried modeling it simply with exponential decay, but the results were pretty abysmal.. hopefully I’ll hear back from my environmental studies contact and have something legitimately cool to show you shortly.
 




03
Aug 11

Ubuntu’s boot time black magic

  

In the not too distant past I was a hardcore Gentoo geek. My computer was MY computer, and its speed and the extent to which it was custom tailored were personal points of pride. Over time more and more of my friends made the switch to Ubuntu, and urged me to follow suit. I resisted.

  

One day one of these friends challenged me to a boot race and my custom Gentoo kernel was pwnd by a stock Ubuntu build running on [slightly] inferior hardware. So I stopped resisting and agreed to give n00buntu a try.

  

Not having to untangle circular dependencies or spend hours surfing the forums to get my _____ device working, I’ve have grown increasingly fat, lazy, deaf, dumb, and blind to the inner workings of my system. I’ve become more and more content with the idea that Ubuntu is so fantastical because of black magic pixie dust sprinkled into the source code.

  

I was reminded again of this boot time wizardry again today while working with a Gumstix Overo board, when a rootstock generated headless Ubuntu build loaded noticeably faster than the Gumstix’s preloaded Angstrom image. Then I came across this forum post titled All about ureadhead :

  

  

from http://ubuntuforums.org/showthread.php?t=1434502

thanks Keybuk


16
Apr 11

Some more robogames pics

these last couple posts were supposed to upload from my phone.. but apparently just got saved as draft. I’ll update with descriptions later

image

image

image

image

image

image

image

image


15
Apr 11
15
Apr 11

Now Broadcasting!

 
Still deciding if I like qik or bamuser more… i may switch back and forth a few times – for now here my the qik channel:
 
 


12
Mar 11

silly

 

These are the things that keep me from getting the really good grades in school

 

Robot Fever from Z R on Vimeo.

 

Just got commands to push over zigbee, so I should be doing much cooler things shortly…


15
Feb 11

Surgical Proceedings

Been busy with classes this quarter- as usual i gave in to the allure of really cool sounding classes as well as the carrot and stick diploma thing…
but srsly- check out this schedule:

Sex – no its not offered through Exercise and Sports Studies ; actually a relatively easy sociology class that will count towards GE reqs. Im currently writing this instead of studying for the midterm that’s 32 minutes away.
Data Structures and Algorithms – a class that makes you think ‘damn that was clever’
Compilers – a class that makes you think ‘damn that was REALLY clever’
Ethics for Engineers– how to lie to your self in the mirror
Digital Control Design – a crazy amount of work for an upper division elective , but really worth it. The teacher [zomg] seems to actually care about her students learning and being interested in controls! I feel a lot of the loose ends from last quarter rapidly coming together.
xxxSmartphones – bi weekly seminars on the current technologies – learn the API on your own time.xxx =( dropped this one…

[wow wordrpress you suck at del, strike, and s tags]
So there’s my excuse for going a month+ between posts. Worse still, it means the fun non-curricular stuff now has to be saved for weekends…
Anyway here is the current run-down on the progress of these weekend amusements:

The FBVisual project has been kind of set aside for the moment, I made a few more screens (pictured below) which I don’t really consider to be 100% complete – but they are kind of neat as proof of concept, and at some point I would like to get them more polished.


What up: a cloud map in a word bubble. Larger words are words that appear more frequently, smaller words are less frequent. The left bubble was derived from a scan of all my friends current ‘status’ on facebook, while the one on the right it taken from the ‘about me’ section. Of course, I also do some filtering to get rid of words that are very common and not so interesting (prepositions and such) to make the good stuff pop out. Shows some interesting trends, especially around holidays or big events. Things like ‘snow’ ‘christmas’ ‘family’ and ‘new year’ emerged pretty strongly when i ran it a few months ago – wish i thought to run it on valentines day , I would have expected to see some lovey-dovey stuff come out.


She started out as an RB2000 kit I picked up during my travels East and will now in the process of being outfitted with some additional additional smarts and weaponry for that mech-warfare challenge.
When I heard about the challenge, it really caught my imagination and I thought it was just wayy to cool to pass up – the rules (in short) are as follows:
-No looking at the battle arena, except through a wireless camera mounted on the bot
-Robot must walk on legs
-Destroy all other robots!
(ok, in actuality they are a little more in depth, but you get the idea)



and this coming year , if all goes according to plan, they will be adding a ‘hardcore’ class which promotes the use of CO2 pistols, Flamethrowers, and Micro Rockets .


High tech + red neck = my kind of sport.

I bet you can guess which class I’ll be trying to enter =D
Major modifications to the RB2000 thus far:
New Skull – surgically inserted my nifty custom machined mounting bracket, wireless wide angle camera, zigbee mount, and red LED in the eye for good measure



Laser mounted and attached to arm – hopefully this will be sufficient feedback to let a remote machine know what the arm is pointed at through the computer vision loop. I have it tested and working with a fair amount of reliability, but it could definitely be improved.
New battery connectors!– ok maybe not so exciting – but will allow me to connect up my new 3Ah lithium polymer batteries alone, or 2 in parallel. Only thing that’s kinda a shame (for the efficiency junkie in me) is that the batteries are 7.2v and the board just uses a 5v linear regulator- which is like a 30% loss! There will still be plenty of juice, but if im feeling like a badass I may try to include a switching regulator stage at some point.

Zigbee board– purdy aint it?



The lovely thing was that when i finally got all the parts I needed to test it, I managed to kill the main servo driver board by (I think) shorting the 3.3v src to gnd with the dmm..
I wont repeat all the expletives uttered here, but suffice to say I was pretty unhappy.. Its looking like a replacement will run somewhere between $200 and $390 which and there would be a 2-3 week lead time to get the part from Japan. painful.

before I totally give up on repairing the thing, Im going to try just swapping out the 3.3v smc regulator with the hope that that’s all that got fried, but who knows…
wish me luck!


« Older Entries
Newer Entries »

RST RST

r/w_ blog : 03-29-2024
powered by WordPress