maemo.org - Talk

maemo.org - Talk (https://talk.maemo.org/index.php)
-   MeeGo / Harmattan (https://talk.maemo.org/forumdisplay.php?f=45)
-   -   [Commercial] Rockwatch - Pebble smart watch support for the N9 (https://talk.maemo.org/showthread.php?t=89890)

Schturman 2013-12-19 08:19

Re: [Commercial] Rockwatch - Pebble smart watch support for the N9
 
Show output of
Code:

qdbus com.mikeasoft.rockwatch / rotskschach
or
Code:

qdbus com.mikeasoft.rockwatch /rotskschach
Sorry I don't have it installed :)

Alexxxl 2013-12-19 11:53

Re: [Commercial] Rockwatch - Pebble smart watch support for the N9
 
Code:

# qdbus com.mikeasoft.rockwatch /rockwatch
method QString org.freedesktop.DBus.Introspectable.Introspect()
method void com.mikeasoft.rockwatch.deleteApp(QDBusVariant appId, QDBusVariant appIndex)
method void com.mikeasoft.rockwatch.installApp(QDBusVariant appUri)
method void com.mikeasoft.rockwatch.listApps()
method void com.mikeasoft.rockwatch.nowPlaying(QDBusVariant artist, QDBusVariant album, QDBusVariant title)
method void com.mikeasoft.rockwatch.ping()
method void com.mikeasoft.rockwatch.setTime()
method void com.mikeasoft.rockwatch.showEmail(QDBusVariant sender, QDBusVariant subject, QDBusVariant body)
method void com.mikeasoft.rockwatch.showSMS(QDBusVariant sender, QDBusVariant message)
~ #


Elleo 2013-12-19 12:53

Re: [Commercial] Rockwatch - Pebble smart watch support for the N9
 
You can either use the showSMS or showEmail function depending on how you want things to be displayed, e.g.

Code:

qdbus com.mikeasoft.rockwatch /rockwatch showSMS "Mike" "Hello!"
or

Code:

qdbus com.mikeasoft.rockwatch /rockwatch showEmail "Mike" "Hello" "This is a longer message..."
Hope that helps :)

Alexxxl 2013-12-19 13:28

Re: [Commercial] Rockwatch - Pebble smart watch support for the N9
 
It's much easier than it seemed)) I was looking for a more complex syntax))

thank you!

Alexxxl 2013-12-19 13:42

Re: [Commercial] Rockwatch - Pebble smart watch support for the N9
 
in the near future I will add a functional script several functions, deal with startup and try to collect Deb package

Alexxxl 2013-12-22 01:35

Re: [Commercial] Rockwatch - Pebble smart watch support for the N9
 
Elleo

gooooog news!!! )))

I dug a lot of useful scripts "dbus" collecting notice soon actually show what happened, but in the process of searching, I found something very useful!

this response from "dbus" standby:
Code:

~ # qdbus com.nokia.CallUi.Context /com/nokia/CallUi/ActiveCall org.maemo.contex
tkit.Property.Get
status: false
178495695383825


and that it is the answer to the movment of the incoming call, as you can see ........- we see the name (or number) of the user! )) So it can easily be broadcast on the watch:
Code:

~ # qdbus com.nokia.CallUi.Context /com/nokia/CallUi/ActiveCall org.maemo.contex
tkit.Property.Get
displayName: Мини
muted: false
startTime: 0
state: 0
status: true
191585815317901



you can use this functionality to display the name of the watch?

or

so I can create a simple script that in case of an incoming call will pass the name, and we can do so it will be more than one message and several consecutive, so get something similar to a permanent notice.

Alexxxl 2013-12-22 01:56

Re: [Commercial] Rockwatch - Pebble smart watch support for the N9
 
please tell me which command you get information about the incoming call?

Elleo 2013-12-22 03:42

Re: [Commercial] Rockwatch - Pebble smart watch support for the N9
 
Excellent, I should be able to add support for that quite easily, will look into it tomorrow.

Schturman 2013-12-22 05:40

Re: [Commercial] Rockwatch - Pebble smart watch support for the N9
 
To show name:
Code:

qdbus com.nokia.CallUi.Context /com/nokia/CallUi/ActiveCall org.maemo.contextkit.Property.Get|grep displayName|cut -d ' ' -f2

Alexxxl 2013-12-22 07:17

Re: [Commercial] Rockwatch - Pebble smart watch support for the N9
 
test it, it seems to me after the call the result of execution of the command - remains the same (at least for me) may need to use additional commands that would make sure that at the moment a call is made. Command behaved similarly and for outgoing calls!

Alexxxl 2013-12-22 11:23

Re: [Commercial] Rockwatch - Pebble smart watch support for the N9
 
I realized this command shows the last incoming / outgoing call.
but does not show the fact of the call at the moment

Alexxxl 2013-12-22 16:17

Re: [Commercial] Rockwatch - Pebble smart watch support for the N9
 
some ideas ...

script informs on connecting / disconnecting the charger

notifies the charge reaches 70% 50% 30% 20% 10% 5%

will soon be additional functionality

Code:

#!/bin/bash
status=$(hal-get-property --udi /org/freedesktop/Hal/devices/bme --key maemo.charger.connection_status)
echo $status > /home/user/MyDocs/status.log
echo "no" > /home/user/MyDocs/level.log
echo "no" > /home/user/MyDocs/level1.log
echo "no" > /home/user/MyDocs/level2.log
echo "no" > /home/user/MyDocs/level3.log
echo "no" > /home/user/MyDocs/level4.log
echo "no" > /home/user/MyDocs/level5.log
#Создаем первоначальный лог

source /tmp/session_bus_address.user
while true
do


# #############################charge on/off###################################

status=$(hal-get-property --udi /org/freedesktop/Hal/devices/bme --key maemo.charger.connection_status)
log=$(cat /home/user/MyDocs/status.log)
if [[ "$status" == "$log" ]]; then
:
else
if [[ "$status" == "connected" ]]; then
qdbus com.mikeasoft.rockwatch /rockwatch showSMS "N9" "Charge Connected!"
echo $status > /home/user/MyDocs/status.log
else
qdbus com.mikeasoft.rockwatch /rockwatch showSMS "N9" "Charge disconnected!"
echo $status > /home/user/MyDocs/status.log
fi
fi
 
# ########################## charge level 70%##################################

level=$(hal-get-property --udi /org/freedesktop/Hal/devices/bme --key battery.charge_level.percentage)
levellog=$(cat /home/user/MyDocs/level.log)
        if [[ "$level" == "70" ]]; then
                if [[ "$levellog" == "ok" ]]; then
                :
                        else
                        qdbus com.mikeasoft.rockwatch /rockwatch showSMS "N9" "Charge level 70%"
                        echo "ok" > /home/user/MyDocs/level.log
                    fi
    else
    echo "no" > /home/user/MyDocs/level.log
        fi
 
 
# ########################## charge level 50%##################################

level1=$(hal-get-property --udi /org/freedesktop/Hal/devices/bme --key battery.charge_level.percentage)
levellog1=$(cat /home/user/MyDocs/level1.log)
        if [[ "$level1" == "50" ]]; then
                if [[ "$levellog1" == "ok" ]]; then
                :
                        else
                        qdbus com.mikeasoft.rockwatch /rockwatch showSMS "N9" "Charge level 50%"
                        echo "ok" > /home/user/MyDocs/level1.log
                    fi
    else
    echo "no" > /home/user/MyDocs/level1.log
        fi
 

# ########################## charge level 30%##################################

# charge level 30%
level2=$(hal-get-property --udi /org/freedesktop/Hal/devices/bme --key battery.charge_level.percentage)
levellog2=$(cat /home/user/MyDocs/level1.log)
        if [[ "$level2" == "30" ]]; then
                if [[ "$levellog2" == "ok" ]]; then
                :
                        else
                        qdbus com.mikeasoft.rockwatch /rockwatch showSMS "N9" "Charge level 30%"
                        echo "ok" > /home/user/MyDocs/level2.log
                    fi
    else
    echo "no" > /home/user/MyDocs/level2.log
        fi
 



# ########################## charge level 20%##################################

level3=$(hal-get-property --udi /org/freedesktop/Hal/devices/bme --key battery.charge_level.percentage)
levellog3=$(cat /home/user/MyDocs/level1.log)
        if [[ "$level3" == "20" ]]; then
                if [[ "$levellog2" == "ok" ]]; then
                :
                        else
                        qdbus com.mikeasoft.rockwatch /rockwatch showSMS "N9" "Charge level 20%"
                        echo "ok" > /home/user/MyDocs/level3.log
                    fi
    else
    echo "no" > /home/user/MyDocs/level3.log
        fi


# ########################## charge level 10%##################################

level4=$(hal-get-property --udi /org/freedesktop/Hal/devices/bme --key battery.charge_level.percentage)
levellog4=$(cat /home/user/MyDocs/level1.log)
        if [[ "$level4" == "10" ]]; then
                if [[ "$levellog2" == "ok" ]]; then
                :
                        else
                        qdbus com.mikeasoft.rockwatch /rockwatch showSMS "N9" "Charge level 10%"
                        echo "ok" > /home/user/MyDocs/level4.log
                    fi
    else
    echo "no" > /home/user/MyDocs/level4.log
        fi

# ########################## charge level 5%##################################

level5=$(hal-get-property --udi /org/freedesktop/Hal/devices/bme --key battery.charge_level.percentage)
levellog5=$(cat /home/user/MyDocs/level1.log)
        if [[ "$level5" == "5" ]]; then
                if [[ "$levellog2" == "ok" ]]; then
                :
                        else
                        qdbus com.mikeasoft.rockwatch /rockwatch showSMS "N9" "Charge level 5% LOW POWER!!!"
                        echo "ok" > /home/user/MyDocs/level5.log
                    fi
    else
    echo "no" > /home/user/MyDocs/level5.log
        fi




sleep 1
done


Alexxxl 2013-12-22 21:45

Re: [Commercial] Rockwatch - Pebble smart watch support for the N9
 
another script monitors the status of your internet connection, and informs when connecting ... GPRS / wlan, connected / disconnected:

Code:

#!/bin/bash


echo "-" > /home/user/MyDocs/wifi_log.log


source /tmp/session_bus_address.user
while true
do


name_wifi=$(qdbus --system com.nokia.icd2.context /org/maemo/contextkit/Internet/NetworkName org.maemo.contextkit.Property.Get | sed q)
status_wifi=$(qdbus --system com.nokia.icd2.context /org/maemo/contextkit/Internet/NetworkState org.maemo.contextkit.Property.Get | sed q)
wifi_log=$(cat /home/user/MyDocs/wifi_log.log)
lan=$(qdbus --system com.nokia.icd2.context /org/maemo/contextkit/Internet/NetworkType org.maemo.contextkit.Property.Get | sed q)

if [[ "$status_wifi" == "connected" ]]; then
          if [[ "$status_wifi" == "$wifi_log" ]]; then
          :
          else   
          qdbus com.mikeasoft.rockwatch /rockwatch showSMS "N9" "$lan ""$name_wifi ""$status_wifi"
          echo $status_wifi > /home/user/MyDocs/wifi_log.log
          echo $name_wifi > /home/user/MyDocs/wifi_log1.log
          echo $lan > /home/user/MyDocs/wifi_lan.log
          fi
else
if [[ "$status_wifi" == "disconnected" ]]; then
          if [[ "$status_wifi" == "$wifi_log" ]]; then
          :
          else   
          wf_name=$(cat /home/user/MyDocs/wifi_log1.log)
          lan_name=$(cat /home/user/MyDocs/wifi_lan.log)
          qdbus com.mikeasoft.rockwatch /rockwatch showSMS "N9" "$lan_name ""$wf_name ""$status_wifi"
          echo $status_wifi > /home/user/MyDocs/wifi_log.log
fi
fi
fi

sleep 1
done


Alexxxl 2013-12-22 21:53

Re: [Commercial] Rockwatch - Pebble smart watch support for the N9
 
in the near future:

information about connecting to whatsup / wazzap

weather from meecast (information every two hours)

state RAM (how often have not decided yet)



anything else ...

Alexxxl 2013-12-23 10:21

Re: [Commercial] Rockwatch - Pebble smart watch support for the N9
 
Meecast

Code:

#!/bin/bash

source /tmp/session_bus_address.user
while true
do


echo "$(qdbus com.meecast.data /com/meecast/data com.meecast.data.GetCurrentWeather)" > /usr/share/meecast.txt
a=$(sed '1!d' /usr/share/meecast.txt)

b=$(sed '2!d' /usr/share/meecast.txt)
c=$(sed '6!d' /usr/share/meecast.txt)
d=$(sed '8!d' /usr/share/meecast.txt)

# echo $a $b $c $d

qdbus com.mikeasoft.rockwatch /rockwatch showSMS "Meecast" "$a ,      ""$b В°C, ""$c,        ""$d"


sleep 7200
# 2 hours
done


Alexxxl 2013-12-23 11:36

Re: [Commercial] Rockwatch - Pebble smart watch support for the N9
 
Until he realized functional display the name calling, you can use a script like this (draft, but working)

Code:

#!/bin/bash
echo "-" > /home/user/MyDocs/id_log.log
source /tmp/session_bus_address.user
while true
do
call=$(qdbus com.nokia.CallUi.Context /com/nokia/CallUi/CallStatusBar org.maemo.contextkit.Property.Get | sed '1!d')
id=$(qdbus com.nokia.CallUi.Context /com/nokia/CallUi/ActiveCall org.maemo.contextkit.Property.Get | sed '6!d')
id_log=$(cat /home/user/MyDocs/id_log.log)
      if [[ "$id" == "$id_log" ]]; then
        :         
        else   
        #if [[ "$call" == "true" ]]; then
          if [[ "$id" != "$id_log" ]]; then
        name=$(qdbus com.nokia.CallUi.Context /com/nokia/CallUi/ActiveCall org.maemo.contextkit.Property.Get | grep displayName | cut -d ' ' -f2)
        qdbus com.mikeasoft.rockwatch /rockwatch showSMS "INCOMING CALL " "$name"       
sleep 1       
        qdbus com.mikeasoft.rockwatch /rockwatch showSMS "INCOMING CALL " "$name"   
sleep 2
        qdbus com.mikeasoft.rockwatch /rockwatch showSMS "$name" "INCOMING CALL "         
sleep 0.3
        qdbus com.mikeasoft.rockwatch /rockwatch showSMS "$name" "INCOMING CALL "   
        echo $id > /home/user/MyDocs/id_log.log
fi
fi
 sleep 1
done


upd:
slightly improved.

notification is triggered only if the smartphone is locked

Code:

#!/bin/sh
echo "-" > /home/user/MyDocs/id_log.log
source /tmp/session_bus_address.user
while true
do
call=$(qdbus com.nokia.CallUi.Context /com/nokia/CallUi/CallStatusBar org.maemo.contextkit.Property.Get | sed '1!d')
id=$(qdbus com.nokia.CallUi.Context /com/nokia/CallUi/ActiveCall org.maemo.contextkit.Property.Get | sed '6!d')
id_log=$(cat /home/user/MyDocs/id_log.log)
      if [[ "$id" == "$id_log" ]]; then
        :         
      else   
if [[ "$call" == "true" ]]; then
                if [[ "$id" != "$id_log" ]]; then
                        name=$(qdbus com.nokia.CallUi.Context /com/nokia/CallUi/ActiveCall org.maemo.contextkit.Property.Get | grep displayName | cut -d ' ' -f2)
                        qdbus com.mikeasoft.rockwatch /rockwatch showSMS "INCOMING CALL " "$name"       
                        sleep 1       
                        qdbus com.mikeasoft.rockwatch /rockwatch showSMS "INCOMING CALL " "$name"   
                        sleep 2
                        qdbus com.mikeasoft.rockwatch /rockwatch showSMS "$name" "INCOMING CALL "         
                            echo $id > /home/user/MyDocs/id_log.log
                else
                        :
                fi
else
                        :
                fi



        fi
 sleep 1
done


ARJWright 2013-12-23 17:45

Re: [Commercial] Rockwatch - Pebble smart watch support for the N9
 
dang... latest developments are kinda hot. I'm using a Polar Loop right now, but this might make me pick up a Pebble a good bit faster than I figured I'd get a new one.

Seriously, this is nice work.

Elleo 2013-12-24 04:44

Re: [Commercial] Rockwatch - Pebble smart watch support for the N9
 
Just uploaded version 1.3 for QA, hopefully it'll get processed before the store gets locked down. This version now adds caller id for incoming call notifications and fixes incorrect time offsets when setting the watch's time from the phone.

Any future releases will be through OpenRepos and will probably just be donation supported.

Ancelad 2013-12-24 06:58

Re: [Commercial] Rockwatch - Pebble smart watch support for the N9
 
Quote:

Originally Posted by Alexxxl (Post 1399885)
Meecast

Code:

#!/bin/bash

source /tmp/session_bus_address.user
while true
do


echo "$(qdbus com.meecast.data /com/meecast/data com.meecast.data.GetCurrentWeather)" > /usr/share/meecast.txt
a=$(sed '1!d' /usr/share/meecast.txt)

b=$(sed '2!d' /usr/share/meecast.txt)
c=$(sed '6!d' /usr/share/meecast.txt)
d=$(sed '8!d' /usr/share/meecast.txt)

# echo $a $b $c $d

qdbus com.mikeasoft.rockwatch /rockwatch showSMS "Meecast" "$a ,      ""$b В°C, ""$c,        ""$d"


sleep 7200
# 2 hours
done


Hmm, why you use old version? I've told you new one yesterday, as you remember :)

Alexxxl 2013-12-24 07:45

Re: [Commercial] Rockwatch - Pebble smart watch support for the N9
 
the script was written before you showed me another solution)))

Ancelad 2013-12-24 07:52

Re: [Commercial] Rockwatch - Pebble smart watch support for the N9
 
Hmm, it doesn't print symbols like °C, we need to improve it again

Alexxxl 2013-12-24 09:32

Re: [Commercial] Rockwatch - Pebble smart watch support for the N9
 
At first I did not want to display,
erased and scored again in midnight сommander and all earned.
I think the reason is encoded.

пруф )) : https://www.dropbox.com/s/8d3phnpogegs589/131.jpg

Alexxxl 2013-12-24 11:11

Re: [Commercial] Rockwatch - Pebble smart watch support for the N9
 
Quote:

Originally Posted by Elleo (Post 1400189)
Just uploaded version 1.3 for QA, hopefully it'll get processed before the store gets locked down. This version now adds caller id for incoming call notifications and fixes incorrect time offsets when setting the watch's time from the phone.

Any future releases will be through OpenRepos and will probably just be donation supported.

have a video how it works?

glo-worm 2013-12-27 14:04

Re: [Commercial] Rockwatch - Pebble smart watch support for the N9
 
Any plans to recompile for sailfish?

Elleo 2013-12-27 15:01

Re: [Commercial] Rockwatch - Pebble smart watch support for the N9
 
Quote:

Originally Posted by glo-worm (Post 1401027)
Any plans to recompile for sailfish?

I'm working on a Sailfish port, however this depends on three things which are out of my control: a) Official python support (not a blocker, just prevents store distribution) and these two feature requests:

https://together.jolla.com/question/...-destinations/ - Without this it isn't possible to send notifications to the Pebble except in a very hacky way.

https://together.jolla.com/question/...-music-player/ - Without this it's impossible to control the music player from the Pebble.

Elleo 2013-12-30 15:19

Re: [Commercial] Rockwatch - Pebble smart watch support for the N9
 
Version 1.3 is now available in the Ovi Store: http://store.ovi.com/content/394053 :)

This version adds:

* Caller ID to incoming call notifications.
* Fixes incorrect time offsets when setting the watch's time from the phone.

Nathan2013 2013-12-30 17:39

Re: [Commercial] Rockwatch - Pebble smart watch support for the N9
 
Funily enough in the previous version setting the time from Rockwatch
worked fine -- now it sets the time four hours too early. I'm in Moscow if that makes any difference.

Elleo 2013-12-30 18:58

Re: [Commercial] Rockwatch - Pebble smart watch support for the N9
 
Quote:

Originally Posted by Nathan2013 (Post 1402161)
Funily enough in the previous version setting the time from Rockwatch
worked fine -- now it sets the time four hours too early. I'm in Moscow if that makes any difference.

Ah, sorry, I'll have another look at this one then.

Elleo 2013-12-31 05:11

Re: [Commercial] Rockwatch - Pebble smart watch support for the N9
 
Is anyone having problems with controlling the music player with version 1.3? There's a person mentioning this as an issue in a review on the store page (http://store.ovi.com/content/394053), but unfortunately that doesn't provide me with any way of actually contacting them, and I'm not able to reproduce this issue myself (music controls work fine for me).

Nathan2013 2013-12-31 07:22

Re: [Commercial] Rockwatch - Pebble smart watch support for the N9
 
Music player works for me (still can't get the clock to set properly from Rockwatch, but that is not a major issue. I did notice though that if I change the time on the phone by changing the time zone it will not change the time on the watch using Rockwatch, however if I change the the actual clock on the phone in the usual way it will adjust the time on the watch -- just four hours earlier than the time on the phone).

Alexxxl 2013-12-31 07:51

Re: [Commercial] Rockwatch - Pebble smart watch support for the N9
 
no problems with the music player! works fine!


I have a question ...

Can I be notified about the caller to repeat 2-3 times?

for example. as I understand you use the following command:
Code:

qdbus com.mikeasoft.rockwatch /rockwatch showSMS "INCOMING CALL " "$name"
is it possible to do so:
Code:

qdbus com.mikeasoft.rockwatch /rockwatch showSMS "INCOMING CALL " "$name"
sleep 2
qdbus com.mikeasoft.rockwatch /rockwatch showSMS "INCOMING CALL " "$name"
sleep 2
qdbus com.mikeasoft.rockwatch /rockwatch showSMS "INCOMING CALL " "$name"

So watch us repeat several times, it will be a little more like how they inform on android smartphones...

ARJWright 2014-01-05 23:00

Re: [Commercial] Rockwatch - Pebble smart watch support for the N9
 
While I'm pretty sure that something like "updating the Bluetooth stack on the N9" is a bit far reaching of a feature request, would it help this effort if there was some kind of configuration option/setting that would update the Bluetooth stack (Bluez I keep reading does this) enabling more/other wearables to be supported for basic connectivity (just notifications and firmware updating, not everything that I talked about at Together.Jolla)?

I found this: Gato - would that be something possible to implement - and then offer in a kind of paid-update* to RW?

Saying "no" is ok. I like this project, and am always up for supporting those efforts that I like and which make UX sense.

*yes, I'm pretty adamant about asking for the kinds of features that enables this to be more than just a shared hobby itch. Its a heck of a package, and such advances deserve to be compensated.

Elleo 2014-01-06 00:22

Re: [Commercial] Rockwatch - Pebble smart watch support for the N9
 
Quote:

Originally Posted by ARJWright (Post 1404096)
While I'm pretty sure that something like "updating the Bluetooth stack on the N9" is a bit far reaching of a feature request, would it help this effort if there was some kind of configuration option/setting that would update the Bluetooth stack (Bluez I keep reading does this) enabling more/other wearables to be supported for basic connectivity (just notifications and firmware updating, not everything that I talked about at Together.Jolla)?

I think you really want to be looking at sowatch as a basis for that sort of thing, Rockwatch is very much specifically targeted just towards the Pebble, and as such is written in python so that it can make use of libpebble. Whereas I believe sowatch is designed to be more general.

However each device is still going to need its own back end implementation within sowatch to handle its specific protocol for notifications, firmware, etc. That sort of thing isn't standardised across device manufacturers.

ARJWright 2014-01-06 03:56

Re: [Commercial] Rockwatch - Pebble smart watch support for the N9
 
Quote:

Originally Posted by Elleo (Post 1404119)
I think you really want to be looking at sowatch as a basis for that sort of thing, Rockwatch is very much specifically targeted just towards the Pebble, and as such is written in python so that it can make use of libpebble. Whereas I believe sowatch is designed to be more general.

However each device is still going to need its own back end implementation within sowatch to handle its specific protocol for notifications, firmware, etc. That sort of thing isn't standardised across device manufacturers.

Yes, I've looked at Sowatch, and see both RW and Sowatch as concurrent projects, even if they aren't answering things in the same way. What can I say, I see the intents for making things work on the N9 as a better means towards standards than whatever it is smar****ch and activity trackers are doing.

Thanks for the feedback; much admiration to you for your work.

Alexxxl 2014-01-06 15:02

Re: [Commercial] Rockwatch - Pebble smart watch support for the N9
 
Hello! All Happy holidays!

im created a simple deb package...

it will add 3 icons on the your desktop, each of them is to run one of the scripts:

- Meecast weather informer (once per hour)
- The charge level (once per hour)
- Network connection (when connecting / disconnecting the network)

simply to remove the bit from the manager of installed programs. !before removing the need to restart the smartphone to stop skrits!

if necessary, you can tweak skrit
they are in the folder /home/user/MyDocs/.watch/...

You can change the text of the notification or response time (parameter has a "sleep")

download/screenshots: https://openrepos.net/content/alexxxlrus/pebbl
https://openrepos.net/sites/default/....0.1_armel.deb

https://www.dropbox.com/s/aycow01g3v1k7aw/14010040.jpg
https://www.dropbox.com/s/9ipz83wj9zug4n5/14010042.jpg
https://www.dropbox.com/s/wokkxfmic587yp7/14010041.jpg

P@t 2014-01-06 15:31

Re: [Commercial] Rockwatch - Pebble smart watch support for the N9
 
Thanks Elleo for the update
For me the music control seems to be working ok but two things I noticed:

- the 'set time' is still not working properly for me

- this morning I did update the watch from the phone and it was not 'that' easy as it should. The first time it failed without error message on the watch but the app was not responding anymore (while the transfer was apparently complete: I did not check at the exact moment it should have finished). Then I tried a second time (after reboot of the phone) and it worked ok, the app indicated that the watch was updated but then, the app was stucked and I had to close it and restart it to have functional.

Nothing to complain much anyway. This is just for info.

P@t 2014-01-07 14:27

Re: [Commercial] Rockwatch - Pebble smart watch support for the N9
 
Again some comments:

- is it possible to update a pebble face? Or should we download it again?

- will it be possible to access the Pebble app store when released? (28 Jan I believe)

domriley 2014-01-07 18:53

Re: [Commercial] Rockwatch - Pebble smart watch support for the N9
 
just a quick question. tried android pebble on my jolla but.it did not work. any plans to port this one to sailfish?

Elleo 2014-01-07 19:00

Re: [Commercial] Rockwatch - Pebble smart watch support for the N9
 
Quote:

Originally Posted by P@t (Post 1404531)
Again some comments:

- is it possible to update a pebble face? Or should we download it again?

Rockwatch doesn't automatically check for updates to watch faces (it might do once the official store is released, but that depends on what APIs the store exposes)

Quote:

Originally Posted by P@t (Post 1404531)
- will it be possible to access the Pebble app store when released? (28 Jan I believe)

That really depends on what the store allows, I can't say anything definitive until the store is available for me to work with. If there are appropriate public APIs available I'll certainly try to integrate store access with Rockwatch.

Elleo 2014-01-07 19:02

Re: [Commercial] Rockwatch - Pebble smart watch support for the N9
 
Quote:

Originally Posted by domriley (Post 1404617)
just a quick question. tried android pebble on my jolla but.it did not work. any plans to port this one to sailfish?

Short answer: yes, eventually. Long answer: http://talk.maemo.org/showpost.php?p...&postcount=145


All times are GMT. The time now is 15:17.

vBulletin® Version 3.8.8