After getting the Sierra Wireless Aircard to work I set out to connect the MykroSystem via BlueTooth modem.  If you are going to use your cell phone for the MykroSystem you should purchase an  unlimited plan.  I have Cingular Wireless with an unlimited data plan that costs about $20/month for the data.

My Cell phone is a LG CU500 but this should work with any BlueTooth ready cell phone that has a data connection.

Scripts:

_____________________________________________

#!/bin/sh

 

modprobe bluetooth

modprobe l2cap

modprobe rfcomm

modprobe hci_usb

 

mknod -m 666 /dev/rfcomm0 c 216 0

 

hcid

 

# in the following line change mac address and channel number for your phone

rfcomm bind /dev/rfcomm0 00:11:22:33:44:55 8

 

rxvt -bg “light yellow” -geometry 134×20 -title GPRS_connection_tail -e tail -n 20 -f /var/log/messages &

 

pppd call 3g &

 

gxmessage -center -bg “light green” -title “PPPD calling…” -buttons “EXIT” “PPPD calling…

press EXIT for exiting GPRS connection”

 

killall pppd

rfcomm release /dev/rfcomm0

killall rfcomm

killall hcid

kill $(ps|grep GPRS_co)

 

exit

 ____________________________________