Page 11 of 51

Re: Pilot: Home Automation Control (iOS app)

Posted: Friday 27 February 2015 14:20
by Bikey
For me dimming of a regular lamp (RFXCOM) works fine, however if I try to dim a Philips Hue lamp this does not work.
I can move the slider but after releasing the button it always returns to a value < 10%
If I change the dimming from the Domoticz web interface everything works fine and the status in Pilot is updated after a "pull to refresh".

Re: Pilot: Home Automation Control (iOS app)

Posted: Sunday 01 March 2015 21:01
by tcviper
patoo77 wrote:
tcviper wrote:For the P1 Smart Meter could you please add that it shows current usage as 1390Watt for example instead of showing 106000033;7 and 7725000;1?
10603000;7725000;1123000;2563000;1390;0

You should display that one before the 0 (at the end), so 1390 in this case, which is the current usage of power.

Same with SBFSPOT (Smaspot) solar power, please also show current usage instead of numbers like: 5335.64 8Kwh.

In both cases, domoticz calls this Actual:
Indeed, the interface needs to be revamped. :D
I am working on it, it is taking some time, but the next version will bring lots of new stuff, hope you guys will like it.
Hello, there was another update last week but still this is not fixed, any idea on this? :) thx

Pilot: Home Automation Control (iOS app)

Posted: Saturday 28 March 2015 13:24
by SwordFish
I installed the app and unlocked the location service. Created a dummy switch and set everything in the app.
I can acces the domoticz server from outside with the app (switch light on and off).
But the geo don't work. When i'm at home nothing happens, the dummy switch doesn't turn on?
I turned the location service off and on in iphone but that doesn't help. In location service the app is allowed to use location service.
I must tell that a have a jailbreak.

Edit;
It is working. Just had to leave the house and come back.

Re: Pilot: Home Automation Control (iOS app)

Posted: Monday 27 April 2015 20:59
by Argarath
Hi all,

I've been using Pilot with Domoticz on a Pi for a while now. It's working allright, but I have a problem I can't seem to find a solution for. I use the Pilot app mainly for geofencing. The thing is, when I move around the house or into the garden, the app constantly sends messages that I either leave the house or have returned. It even does this when I move from the kitchen to the living room, and although I have to say that I live quite nicely, the house is not THAT big ;-)

I tried moving the slider in the location tab to get a bigger circle around the house, so maybe that'll solve it, but that doesn't help. Anyone experiencing the same problems or maybe there is someone with a solution? Thanks in advance.

Re: Pilot: Home Automation Control (iOS app)

Posted: Monday 27 April 2015 21:25
by Immo
Create a virtual switch that defines if you're home.
Than use a lua-script that changes the virtual switch 1 or 2 minutes after the geofence switch changed.
do nothing it it changes back within that time

I have this (maybe not the best, but it works)
It would be nicer to make it more flexible and do a check on the state, but I was too lazy for that..
I have >120 and <180 because somehow my lua-scripts only seem to be fired each minute


t1 = os.time()
s = otherdevices_lastupdate['Geofence']

year = string.sub(s, 1, 4)
month = string.sub(s, 6, 7)
day = string.sub(s, 9, 10)
hour = string.sub(s, 12, 13)
minutes = string.sub(s, 15, 16)
seconds = string.sub(s, 18, 19)

commandArray = {}

t2 = os.time{year=year, month=month, day=day, hour=hour, min=minutes, sec=seconds}
difference = (os.difftime (t1, t2))

if ((difference > 120) and (difference < 180)) then
if (otherdevices['Geofence'] == 'On') then
commandArray['Virtual Switch']='On'
else
commandArray['Virtual Switch']='Off'
end
end
return commandArray

Re: Pilot: Home Automation Control (iOS app)

Posted: Tuesday 28 April 2015 9:10
by Argarath
Thanks Immo!

Your post made me build my first lua script, which is nice :-)

It's in use now, so I'll let you know if it works.

Re: Pilot: Home Automation Control (iOS app)

Posted: Tuesday 28 April 2015 10:00
by Argarath
Unfortunately, whilst I get less notifications with running Immo's script, Pilot still thinks I'm leaving the house when I move from kitchen to living room...

Somehow I need to broaden (?) the range in which Pilot thinks I'm home. I don't know how to do that.

Re: Pilot: Home Automation Control (iOS app)

Posted: Tuesday 28 April 2015 14:00
by markk
Have you tried using the geofancy app instead? A bit off topic but it looks like you are able to define a much larger radius with that which could rule out or confirm the cause being distance from the house..

Re: Pilot: Home Automation Control (iOS app)

Posted: Friday 08 May 2015 0:12
by simon_rb
Any chance of adding iBeacon? Would solve the location service issue being 3 miles wide if wifi is off. Can pick up an iBeacon for £12 these days..
Cheers

Re: Pilot: Home Automation Control (iOS app)

Posted: Friday 08 May 2015 7:32
by Egregius
markk wrote:Have you tried using the geofancy app instead? A bit off topic but it looks like you are able to define a much larger radius with that which could rule out or confirm the cause being distance from the house..
Do you have an example of how the url should look like?

Re: Pilot: Home Automation Control (iOS app)

Posted: Friday 08 May 2015 7:33
by Egregius
simon_rb wrote:Any chance of adding iBeacon? Would solve the location service issue being 3 miles wide if wifi is off. Can pick up an iBeacon for £12 these days..
Cheers
Geofancy supports iBeacon.

Re: Pilot: Home Automation Control (iOS app)

Posted: Sunday 10 May 2015 21:05
by Argarath
Have been busy with replacing the bathroom in our new home. I installed geofency, but the problem persists. I don't know how to solve this. Isn't there anyone that is experiencing the same problems?

Re: Pilot: Home Automation Control (iOS app)

Posted: Thursday 28 May 2015 9:28
by spudgunman
just downloaded this app, looks sweet so far!

is there any plans to make the security panel work good in this app?. I dont like to burn battery with geo fence. and also use the Armed Home option a lot but it really sucks to use this on the phone currently

Re: Pilot: Home Automation Control (iOS app)

Posted: Thursday 28 May 2015 12:44
by Bikey
I'm also wondering when we can expect to have a new release, it has been quite some time now.

Re: Pilot: Home Automation Control (iOS app)

Posted: Friday 29 May 2015 5:41
by spudgunman
I would also really like to see more functionality in the geo-locate code. ability to change if the switch is set on or off when away or home. I would also like to set the server polling to set the switch in a on or off state.

Re: Pilot: Home Automation Control (iOS app)

Posted: Monday 01 June 2015 11:25
by Argarath
Somehow I think there's something wrong with the geofencing function in my Iphone. Both geofancy, Pilot and my Hue geofencing functions don't seem to work properly. At the moment I'm not using geofencing. Maybe another Phone will solve the issue.

Re: Pilot: Home Automation Control (iOS app)

Posted: Monday 01 June 2015 12:06
by D'rMorris
Argarath wrote:Somehow I think there's something wrong with the geofencing function in my Iphone. Both geofancy, Pilot and my Hue geofencing functions don't seem to work properly. At the moment I'm not using geofencing. Maybe another Phone will solve the issue.
I have exactly the same issue. Before the last iOS update Geofancy worked flawlessly. Today, it sometimes works and sometimes not, which is very annoying.
I have an iPhone 6 running on iOS8.3. Tried removing Geofancy, removing and recreating the geofence itself but nothing works. It seemsthere is an issue with Geofancy and iOS8.3

Re: Pilot: Home Automation Control (iOS app)

Posted: Monday 01 June 2015 23:58
by markk
Oh no, I hope not. I just got an iPhone 6 plus today running IOS 8.3. I'll be gutted if Geofancy doesn't work properly anymore :(

Re: Pilot: Home Automation Control (iOS app)

Posted: Tuesday 02 June 2015 10:31
by D'rMorris
Since yesterday it seems that it is working again. However, there has not been an update to either iOS or Geofancy (last update: 23rd of May).
I'll keep an eye on it for the coming days to see whether it continues to work every time I leave / enter a geozone.

Re: Pilot: Home Automation Control (iOS app)

Posted: Tuesday 02 June 2015 11:31
by Dynamic
I think I have a bug too with Pilot.

Most of the time the geofancing works fine, but for some strange reason he thinks that I'm nearby my house while entering the city-center. That is roughly 3 kilometers away!