Active Topics

 

Showing results 1 to 25 of 49 @ 0.02 seconds. Search: Posts Made By: fhutt
Forum: Applications 2016-07-27, 06:50
Replies: 67
Views: 29,712
Posted By fhutt
Forum: Applications 2016-07-27, 06:18
Replies: 67
Views: 29,712
Posted By fhutt
Re: [Announce] WifiTrans v0.2.1 wifi file transfer for Harmattan and Fremantle

Thank you for the links.
peterleinchen - I couldn't find anything on those links.
MMC - Those links do provide a download to a .deb file about 280K. When I try to install on the N9 it wants to...
Forum: Applications 2016-07-27, 04:48
Replies: 67
Views: 29,712
Posted By fhutt
Re: [Announce] WifiTrans v0.2.1 wifi file transfer for Harmattan and Fremantle

Hello,
I know this is an old thread but I am having trouble downloading Wifitrans.
There is a website http://n9-apps.com/ that has numerous apps including the Wifitrans app but when I click on the...
Forum: Applications 2015-05-05, 06:40
Replies: 1,176
Views: 408,811
Posted By fhutt
Re: [Support thread] Billboard Standby Screen

Thank you for that explanation.
There are apps for the Windows Mobile standby screen that place logos, pictures and text on the screen. However, none of those apps appear to do anything useful (I...
Forum: Applications 2015-05-04, 23:14
Replies: 1,176
Views: 408,811
Posted By fhutt
Re: [Support thread] Billboard Standby Screen

I am not sure I understand the term "Harmattan install on Lumia ".
I am assuming that it means to be able to install the current program on the Lumia.
However, I don't know how this could be since...
Forum: Applications 2015-05-04, 11:21
Replies: 1,176
Views: 408,811
Posted By fhutt
Re: [Support thread] Billboard Standby Screen

I've been using Billboard on my Nokia N9 for a long time. It is great to be able to see all that info on the stand by screen.
I have just bought a second hand Nokia Lumia 1020 because of its camera....
Forum: Applications 2014-05-12, 04:55
Replies: 1,176
Views: 408,811
Posted By fhutt
Re: [Support thread] Billboard Standby Screen

I did a test as follows:
Opened config window, changed some text, the preview did not show the change. Closed config and launched again and the preview window showed the change.
Unfortunately, I...
Forum: Applications 2014-05-12, 04:40
Replies: 1,176
Views: 408,811
Posted By fhutt
Re: [Support thread] Billboard Standby Screen

As I understand what you are saying - there is no extra Refresh button, just the Billboard button (with changed colours), and when this button is pressed, Billboard refreshes and the configuration...
Forum: Applications 2014-05-12, 03:24
Replies: 1,176
Views: 408,811
Posted By fhutt
Re: [Support thread] Billboard Standby Screen

imaginaryenemy, I don't have any new icons on my home screen.
Have I installed it correctly?
I uninstalled V1.1.0 and then installed V1.1.1. Or, should I have installed V1.1.1 on top of V1.1.0?
Forum: Applications 2014-05-11, 23:06
Replies: 1,176
Views: 408,811
Posted By fhutt
Re: [Support thread] Billboard Standby Screen

Yes. but where do I find it?
I check the version I installed by Setup/Applications/Manage Applilations/Billboard and it shows 1.1.1.
Is this not the latest version?
Forum: Applications 2014-05-11, 03:59
Replies: 1,176
Views: 408,811
Posted By fhutt
Re: [Support thread] Billboard Standby Screen

THP on your website http://thp.io/2012/billboard/ you have a Version 1.1.1 entry that states
"Refreshed icon for the configuration utility"
This is the icon I am looking for.
Thanks
Forum: Applications 2014-05-07, 05:10
Replies: 1,176
Views: 408,811
Posted By fhutt
Re: [Support thread] Billboard Standby Screen

I have just uninstalled V1.1.0 by Setup/Applications/manage Applilations/Billboard.
Then I installed V1.1.1. Now Setup/Applications/manage Applilations/Billboard shows that V1.1.1 is installed. It...
Forum: Applications 2014-02-02, 00:15
Replies: 1,176
Views: 408,811
Posted By fhutt
Re: [Support thread] Billboard Standby Screen

Is there a script available for showing the time the phone is on for since the last charge?
Thanks
Forum: Applications 2013-12-01, 22:03
Replies: 1,176
Views: 408,811
Posted By fhutt
Re: [Support thread] Billboard Standby Screen

Thp, it's great to know that about the signal strength.
How often is a python or sh script refreshed?
Thanks
Forum: Applications 2013-11-24, 21:52
Replies: 1,176
Views: 408,811
Posted By fhutt
Re: [Support thread] Billboard Standby Screen

Another suggestion regarding the refresh rate.
At times, it would be great to have a refresh rate of about 1 min, to see the signal strength, for example. At night, a refresh rate of 1 hour or...
Forum: MeeGo / Harmattan 2013-11-14, 09:30
Replies: 16
Views: 3,827
Posted By fhutt
Re: N9 idle current drain

I see, it's all in the detail.
Could that 'current' line of code be ported to python?
Forum: MeeGo / Harmattan 2013-11-14, 08:09
Replies: 16
Views: 3,827
Posted By fhutt
Re: N9 idle current drain

Yes, you're right that does work.
This is what I had:

current = $(bmestat | grep "battery current" | awk '{print $3}' )

echo $current

Note the spaces before and after the = sign and another...
Forum: MeeGo / Harmattan 2013-11-14, 07:11
Replies: 16
Views: 3,827
Posted By fhutt
Re: N9 idle current drain

juiceme I get an error in the scrip-

current: not found

Should current be initialized first or something?
Thanks
Forum: MeeGo / Harmattan 2013-11-14, 04:28
Replies: 16
Views: 3,827
Posted By fhutt
Re: N9 idle current drain

Maybe this line:
current = ((bmestat | grep "battery current") | awk '{print $3}' )
is too complicated for someone like me, who knows very little about sh or python.
But maybe split the job up...
Forum: MeeGo / Harmattan 2013-11-13, 22:21
Replies: 16
Views: 3,827
Posted By fhutt
Re: N9 idle current drain

I tried:
#!/bin/sh
current = ((bmestat | grep "battery current") | awk '{print $3}' )
echo -n $current

I get a syntax error: unexpected "("

Could someone please help with this script?
Thanks
Forum: MeeGo / Harmattan 2013-11-13, 11:19
Replies: 16
Views: 3,827
Posted By fhutt
Re: N9 idle current drain

This now got me what I needed.
Now, I need to put this into a script. Do I start with this?
eco -n "(bmestat | grep "battery current") | awk '{print $3}' "

It's hard to do this on the phone. I...
Forum: MeeGo / Harmattan 2013-11-13, 10:04
Replies: 16
Views: 3,827
Posted By fhutt
Re: N9 idle current drain

Thanks ladoga. This gives the result I need, but I would like it in a script without saving the result in a file.
I tried:
(bmestat | grep "battery current")
This gave me:
battery current: ...
Forum: MeeGo / Harmattan 2013-11-13, 03:00
Replies: 16
Views: 3,827
Posted By fhutt
Re: N9 idle current drain

I found that QmBattery has an attribute 'getBatteryCurrent', but I don't know the syntax to extract this attribute in a python script.
Could someone give me an idea?
Thanks
Forum: MeeGo / Harmattan 2013-11-12, 22:55
Replies: 16
Views: 3,827
Posted By fhutt
N9 idle current drain

Is there a way to show the idle current drain using a .py or .sh script?
Forum: Applications 2013-11-12, 02:46
Replies: 1,176
Views: 408,811
Posted By fhutt
Re: [Support thread] Billboard Standby Screen

A suggestion for a feature for a future release of Billboard.
The Billboard preview screen does not refresh frequently. I have recently added some .py and .sh scripts to Billboard. When I change...
Showing results 1 to 25 of 49



 
Forum Jump

All times are GMT. The time now is 10:16.