Active Topics

 



Notices


Reply
Thread Tools
Aranel's Avatar
Posts: 301 | Thanked: 227 times | Joined on Nov 2009 @ Turkey
#31
Yesterday I bought a MDW-150 Exclusive Edition from Amazon.co.uk Thanks to moneytoo for this great app, and quingu for asking a question and bumping the thread (I didn't know anything about openwatch before)

Mine didn't shipped yet but I'll try to answer your questions based on other users' experiences:

First of all, DO NOT BUY it from MobileCityOnline (Amazon.com) there's lots of reports about this seller and they got a batch of defective watches. You can buy it from Amazon.co.uk instead.

AFAIK, OpenWatch is now fully supported on PR1.2 and all features working well enough for everday use. And there's some ppl out there on openwatch forums using openwatch with their maemo devices.

Anyway It would be great if someone posted a video review about his OpenWatch experience, so we would know how it looks like and how useful it is Or I can do that too but I'm not gonna get my watch soon (ETA: 10 - 16 September)

Last edited by Aranel; 2010-08-29 at 17:27.
 

The Following User Says Thank You to Aranel For This Useful Post:
Aranel's Avatar
Posts: 301 | Thanked: 227 times | Joined on Nov 2009 @ Turkey
#32
Quoted from my post on smartmadsoft forums:

Hi,

I recently bought MBW-150 to use it with my N900 via OpenWatch. But It doesn't connect properly. The bluetooth icon turns blue for a second, then connection fails. "python /opt/openwatch/openwatch.py" exits without any warning and openwatchui.py doesn't generate anything useful too. (only message is about mkdir, It says ~/.openwatch already exists)

I've already tried to reinstall, reboot and pair them again but still doesnt work :| python-bluez is already installed, and I've installed python-imaging too but removed python-Imaging from dependencies b/c of the case-sensitivity problem. (I / i) Since there's no useful error message or source code I can't track the problem. I'm very disappointed about it now. OpenWatch for Linux seems like working -without any useful feature, but It makes it possible to test media keys and connection- so I think the problem is not my N900 or the watch itself, its the software.

Maybe its important: Since I couldnt get any output from my N900, I've tried "python2.5 openwatch.pyc" on Scratchbox and on N900, got nothing.

Nokia-N900-42-11:/opt/openwatch# python2.5 openwatch.pyc
Nokia-N900-42-11:/opt/openwatch#


If you can help me, or if you do know anything about how can I make it work OK or if you have any good advice, I need help.


PS: Also, I sent a PM to moneytoo on Maemo Talk! but It seems like he's away or he doesn't care much because the openwatch for maemo is now dropped It would be beyond great if it gets open-sourced. (Open-Watch? Why not open it :P ) I feel sooo lonely.

Last edited by Aranel; 2010-09-07 at 07:15.
 

The Following User Says Thank You to Aranel For This Useful Post:
quingu's Avatar
Posts: 271 | Thanked: 124 times | Joined on May 2006 @ Aperture Science, Inc.
#33
That's bad news. This was beginning to sound really exciting. Let's see if there comes anything out of this.
__________________
Handcrafted Ambient / Chillout Music, free to download: nomoton
 
Posts: 3 | Thanked: 2 times | Joined on Oct 2010
#34
Originally Posted by tjsgls View Post
I've made my own program for my SE MBW-150 in ruby (I precompiled ruby bluetooth module for this - if anyone is interested I can share) so I have full control over phone from my watch (loads playlists into mediaplayer with boosted fm transmitter, obviously phone/sms stuff and anything that comes to my mind - it's so easy to implement new stuff with ruby).
Cheers tjsgls!
I would love to give your version a try!!
Would u pass it over to me!?
 
Aranel's Avatar
Posts: 301 | Thanked: 227 times | Joined on Nov 2009 @ Turkey
#35
I wrote a very simple script, to cheat (in exams/work/life). Well, It's a script to print text on your watch. I don't need it much nowadays but I guess It's a must-have for students :P

Create a file named owcheater.sh and owcheater, fill it up with entries, like:

iamcheating iamcheatingg
rainbows11rainbows22rainbows33rainbows44 99999
END END
You can run it via "sh owcheater.sh" command.
owcheater.sh file:

# OW-Cheater Script by Aranel Surion @ 29 Nov 2010
# Works on Nokia N900 (Maemo 5) with proper OpenWatch installation.

# Envelope dbus signal
dbus-send --session --print-reply --dest=com.smartmadsoft.openwatch /com/smartmadsoft/openwatch com.smartmadsoft.openwatch.envelope
sleep 1
# Main While
while :
do
# First-run Header entry
dbus-send --session --print-reply --dest=com.smartmadsoft.openwatch /com/smartmadsoft/openwatch com.smartmadsoft.openwatch.send1line string:'Your Name Goes Here'
sleep 3
# Read While
while read -r line line2
do
# Debug Mode (argument: --debug)
if [ "$1" = "--debug" ]; then
echo "[DBUS Send] Message: $line - $line2 (strlen: ${#line} ${#line2})"
fi
# DBUS Message Signal
dbus-send --session --print-reply --dest=com.smartmadsoft.openwatch /com/smartmadsoft/openwatch com.smartmadsoft.openwatch.send2lines string:$line string:$line2

# Sleep Timing for First Line
if [ "${#line}" -le 18 ]; then
UYKU=4
elif [ "${#line}" -gt 18 ] && [ "${#line}" -le 25 ]; then
UYKU=8
elif [ "${#line}" -gt 25 ] && [ "${#line}" -le 30 ]; then
UYKU=10
elif [ "${#line}" -gt 30 ] && [ "${#line}" -le 40 ]; then
UYKU=11
elif [ "${#line}" -gt 40 ]; then
UYKU=12
fi

# Sleep Timing for Second Line
# --> FL check.
if [ "${#line2}" -le 18 ] && [ "$UYKU" -le 4 ]; then
UYKU=4
elif [ "${#line2}" -gt 18 ] && [ "${#line2}" -le 25 ] && [ "$UYKU" -le 8 ]; then
UYKU=8
elif [ "${#line2}" -gt 25 ] && [ "${#line2}" -le 30 ] && [ "$UYKU" -le 10 ]; then
UYKU=10
elif [ "${#line2}" -gt 30 ] && [ "${#line2}" -le 40 ] && [ "$UYKU" -le 11 ]; then
UYKU=11
elif [ "${#line2}" -gt 40 ] && [ "$UYKU" -le 12 ]; then
UYKU=12
fi

# Sleep
sleep $UYKU

done < "owcheater"
done
Note: You should not exceed 40 characters per line or it won't show up correctly. It's a limitation of watch itself.
 
Posts: 37 | Thanked: 18 times | Joined on Sep 2010 @ Hong Kong
#36
OpenWatch (one at extras-devel) on N900 works nicely for SMS and IM notification as well as music player control (volume+/-, Stop/Play) with my MBW-150. Liking that MBW-150 can read the battery level (%) of N900 and show how many SMS/IM received.

The major problem I've found is no vibration alear and no caller ID displayed for incoming calls.
 
Aranel's Avatar
Posts: 301 | Thanked: 227 times | Joined on Nov 2009 @ Turkey
#37
Originally Posted by taike_hk View Post
OpenWatch (one at extras-devel) on N900 works nicely for SMS and IM notification as well as music player control (volume+/-, Stop/Play) with my MBW-150. Liking that MBW-150 can read the battery level (%) of N900 and show how many SMS/IM received.

The major problem I've found is no vibration alear and no caller ID displayed for incoming calls.
Already replied on smartmadsoft forums.

@taike
worksforme on PR1.3.

Maybe you disabled it from the watch menu? I didn't try it, but In the watch's menu, there is a mail icon (second option from left), you can enable/disable it with top right button. afaik you can enable notifications using it.
 
Posts: 37 | Thanked: 18 times | Joined on Sep 2010 @ Hong Kong
#38
Originally Posted by Aranel View Post
Already replied on smartmadsoft forums.
I'm sorry about the double posts

Let's discuss over there.
 
Posts: 37 | Thanked: 18 times | Joined on Sep 2010 @ Hong Kong
#39
Just report here OpenWatch works perfectly on my N900 now.

Time/Calendar sync, SMS/IM/Call notifications, Media Control (music/video play, pause, next, prev, vol+/-) and read remaining battery of N900.

Vibration alert when I walk away from N900 also. My 2 years old MBW-150 (Music Edition) rocks now
 
BruceL's Avatar
Posts: 305 | Thanked: 154 times | Joined on Aug 2006 @ Colorado
#40
MoneyToo,
OpenWatch seems really cool. I just got a new BT watch so I could use it and find I chose the wrong one.

Can you tell me what is different about the LG LBA-T950 and why OpenWatch won't work with it? I'm hoping to work on the software myself if need be.
__________________
Give me immortality or give me death!
 
Reply


 
Forum Jump


All times are GMT. The time now is 08:31.