I'm halfway doing what I was planning to make : A wireless video streaming indoor robot

My configuration is as follows :
- - Feroceon 88FR131 rev. 1. ARMv5TE cr=00053977 with 256MB RAM
- Genesys Logic, Inc. USB 2.0 IDE Adapter (GL811E)
- Fujitsu 2,5" IDE HDD
- Nam Tai E&E Products Ltd. (OmniVision Sony Playstation Eye)
- 3.1.10-4-Arch
This setup is working flawlessly... I invoke wireless with :
$this->bbcode_second_pass_code('', 'wicd
ifconfig wlan0 up
netcfg wireless-wpa ')
but I don't know how to make everything work automatically during boot up yet.
I used ffmpeg to start streaming and it works OK :
$this->bbcode_second_pass_code('', 'ffserver -f /etc/ffserver.conf & ffmpeg -v 2 -r 5 -s 640x480 -f video4linux2 -i /dev/video0 http://localhost:8090/webcam.ffm ')
I installed Python 2.0 and used serial communications module pySerial to talk to my Arduino board as follows (cMsg is sensor output from Arduino, cCmd is command I tell the robot what to do, just an example of simple commands):
$this->bbcode_second_pass_code('', '>>> import serial
>>> ser = serial.Serial('/dev/ttyACM0', 9600)
>>> cMsg = ser.readline()
>>> ser.write(cCmd)
')
I just wanted to contribute a small amount to this great community.
Cheers,
Conn