[LOCKED] iFindstuff Alpha Testing Topic

User avatar
kw123
Posts: 8705
Joined: Sun May 12, 2013 4:44 pm
Location: Dallas, TX
Contact:

Re: iFindstuff Alpha Testing Topic

Post by kw123 »

geo fence device "HOME" is green and account "me at kw" is green

but I can't get the device fully configured :
clicking on Apple Account? I get "me at kw" that is the correct account device name,
then after ~ 4 seconds and message:" waiting for button reply"
"Devices on Account?" I just get in grey - select an item - after 4 seconds

Karl
artpics
Posts: 232
Joined: Tue Feb 24, 2009 11:48 pm
Location: Calabasas CA
Contact:

Re: iFindstuff Alpha Testing Topic

Post by artpics »

:D everything is working great

battery calculations throughout the day
triggers
geofences

all rock solid.
i like all the new features, big pat on the back for such outstanding work :D

one request can we have a conversion from Meters to Yards but mainly KM to Miles that would be the final touch.

you had me fooled for a while changing the format of the meters field. I thought i was 700km away from home
it used to be for 700m - 0.700 - now i see 700.00 very nice and easier to understand.
Chameleon
Posts: 611
Joined: Sat Oct 04, 2014 9:50 am

Re: iFindstuff Alpha Testing Topic

Post by Chameleon »

kw123 wrote:geo fence device "HOME" is green and account "me at kw" is green

but I can't get the device fully configured :
clicking on Apple Account? I get "me at kw" that is the correct account device name,
then after ~ 4 seconds and message:" waiting for button reply"
"Devices on Account?" I just get in grey - select an item - after 4 seconds

Karl
Sometimes the Apple server takes time to respond - if at all! I'm thinking of accessing the server as a preload to speed things up - possibly via a second thread - when I get threading and queues down pat.

M
Chameleon
Posts: 611
Joined: Sat Oct 04, 2014 9:50 am

Re: iFindstuff Alpha Testing Topic

Post by Chameleon »

artpics wrote::D everything is working great

battery calculations throughout the day
triggers
geofences

all rock solid.
i like all the new features, big pat on the back for such outstanding work :D

one request can we have a conversion from Meters to Yards but mainly KM to Miles that would be the final touch.

you had me fooled for a while changing the format of the meters field. I thought i was 700km away from home
it used to be for 700m - 0.700 - now i see 700.00 very nice and easier to understand.
Lol - yes I have add yards and miles to the feature list as well as sorting out the stationary option. Let me know how the battery saving options go.

Thanks for the kind words - we're here because of some very patient testing and suggests from the Alpha team and I appreciate that too...

Regards

Mike
User avatar
haavarda
Posts: 702
Joined: Sat Aug 18, 2012 4:40 am
Location: Norway

Re: iFindstuff Alpha Testing Topic

Post by haavarda »

Hi Mike.
Thinks are really starting to look good now. Good work.
Have you been able to look at the instant update? Is the current setup that the position is updated when the timer variable is changed?
When I have a low update frequency it wold be perfect if I could initiate a position update based on other inputs.

Example:
House alarm is turned off --> update all positions now.
I can do this with a normal trigger: Set variable to 60 and then set it back to 3600. But it does not work if I have to wait until it reaches the set point that was active before the variable change.

I also see one strange thing. The battery level is reported as 0% for all my devices.

Update: On the next update the battery updated normally


regards
Håvard
Håvard
Chameleon
Posts: 611
Joined: Sat Oct 04, 2014 9:50 am

Re: iFindstuff Alpha Testing Topic

Post by Chameleon »

haavarda wrote:Hi Mike.
Thinks are really starting to look good now. Good work.
Have you been able to look at the instant update? Is the current setup that the position is updated when the timer variable is changed?
When I have a low update frequency it wold be perfect if I could initiate a position update based on other inputs.

Example:
House alarm is turned off --> update all positions now.
I can do this with a normal trigger: Set variable to 60 and then set it back to 3600. But it does not work if I have to wait until it reaches the set point that was active before the variable change.

I also see one strange thing. The battery level is reported as 0% for all my devices.

Update: On the next update the battery updated normally


regards
Håvard
The battery level is an annoyance - but it does happen occasionally. I've put a trap in for the battery level being 0% so that it doesn't immediately change the rate of refresh.

As the the instant refresh - I will code something into the program to allow this via a trigger/variable combination for each device (or all).

However in the meantime, the key field is timeNextUpdate and you can update this yourself as part of a normal trigger event (as an action) using python code
  • 1. Create a trigger with the events you want to cause an immediate update

    2. Create an action that runs an Embedded Python Script

    3. Enter the following lines of code:

    Code: Select all

    import indigo
    import time
    
    # Calculate a new refresh time - local time returns the number of seconds since 1/1/1970
    for dev in indigo.devices.iter('self.AppleDeviceAuto')
    
         if dev.configured and dev.enabled:
            # Get the number of seconds since the epoch for the time now
            # Remove 10 seconds to force an update
            iNow= time.mktime(time.localtime())-10
    
            # Convert that to something a human can actually read
            iRead = time.asctime(iNow)
    
            # Update the device on the server	
            dev.updateStateOnServer(‘timeNextUpdate’, value=iNow)
            dev.updateStateOnServer(‘timeUpdateRead’, value=iRead)
    
    4. Save the trigger

    5. When the event occurs this script should change the next update time to the next cycle. The programme cycles every 5 seconds so it could take 5 seconds to update your devices. But it will trigger an update
You could also just impact one device (or many if you copy the code many times in the same embedded space :D) with the following code. You'll need to know the Indigo reference number for the device you want to change. For example, if I wanted to impact a device called Mikes Phone I would right click on the iFindStuff device in the Device Folder, Copy the Python Reference and Paste that in place of indigo.devices[<device id number>] in the code below...

Code: Select all

import indigo
import time

# Calculate a new refresh time - local time returns the number of seconds since 1/1/1970

dev = indigo.devices[<device id number>] 
if dev.configured and dev.enabled:
    # Get the number of seconds since the epoch for the time now
    # Remove 10 seconds to force an update
    iNow= time.mktime(time.localtime())-10

    # Convert that to something a human can actually read
    iRead = time.asctime(iNow)

    # Update the device on the server	
    dev.updateStateOnServer(‘timeNextUpdate’, value=iNow)
    dev.updateStateOnServer(‘timeUpdateRead’, value=iRead)
After the next update - the plugin will readjust the next time of the update according to the rules you've selected in the device definition.

Good luck and let me know how it goes...

Regards

Mike
User avatar
kw123
Posts: 8705
Joined: Sun May 12, 2013 4:44 pm
Location: Dallas, TX
Contact:

Re: iFindstuff Alpha Testing Topic

Post by kw123 »

Sometimes the Apple server takes time to respond - if at all! I'm thinking of accessing the server as a preload to speed things up - possibly via a second thread - when I get threading and queues down pat.
still not able to get a device active..

I have my account device green, but in configure iDevice devices on account is still empty. Do I need to do anything on the iCloud side?


Karl
Chameleon
Posts: 611
Joined: Sat Oct 04, 2014 9:50 am

Re: iFindstuff Alpha Testing Topic

Post by Chameleon »

kw123 wrote:
Sometimes the Apple server takes time to respond - if at all! I'm thinking of accessing the server as a preload to speed things up - possibly via a second thread - when I get threading and queues down pat.
still not able to get a device active..

I have my account device green, but in configure iDevice devices on account is still empty. Do I need to do anything on the iCloud side?


Karl
Did you start from scratch or work with the old devices? You need to start clean really. I was going to write a migration routine but it was complicated and would have taken too long.

If you did start from a slate on 0.4.20. Then I've a bigger issue.

Regards

Mile
User avatar
kw123
Posts: 8705
Joined: Sun May 12, 2013 4:44 pm
Location: Dallas, TX
Contact:

Re: iFindstuff Alpha Testing Topic

Post by kw123 »

Mike,
started from scratch:

1. disabled plugin. delete all folders and devices
2. stopped indigo server
3. deleted prefs file and plugin
4. start server
5. download plugin and install
6. add account info, got email from apple : logged in fro browser .. :D
7. account info turns green
8. add iDevice : Devices on Account is grey = no devices available. :(

Karl
Chameleon
Posts: 611
Joined: Sat Oct 04, 2014 9:50 am

Re: iFindstuff Alpha Testing Topic

Post by Chameleon »

kw123 wrote:Mike,
started from scratch:

1. disabled plugin. delete all folders and devices
2. stopped indigo server
3. deleted prefs file and plugin
4. start server
5. download plugin and install
6. add account info, got email from apple : logged in fro browser .. :D
7. account info turns green
8. add iDevice : Devices on Account is grey = no devices available. :(

Karl
Karl

Sorry Karl I forgot you were a developer :D

Two things...

1) Can you check your DEVICES folder to see that there aren't any rogue devices without a home that belong to the old plugin? There was a bug that failed to relocate them to one of the standard folders. The system looks for devices in folders and eliminates them from the choice if they already exist and if they're hidden somewhere else (say in DEVICES) then it will ignore them. If they're all ignored you'd get a null list.

2) Can you put on debugging (both options) and send me the log file as you Reload and then add a device?

Ta

Mike
Chameleon
Posts: 611
Joined: Sat Oct 04, 2014 9:50 am

Re: iFindstuff Alpha Testing Topic

Post by Chameleon »

Chameleon wrote:
kw123 wrote:Mike,
started from scratch:

1. disabled plugin. delete all folders and devices
2. stopped indigo server
3. deleted prefs file and plugin
4. start server
5. download plugin and install
6. add account info, got email from apple : logged in fro browser .. :D
7. account info turns green
8. add iDevice : Devices on Account is grey = no devices available. :(

Karl
Karl

Sorry Karl I forgot you were a developer :D

Two things...

1) Can you check your DEVICES folder to see that there aren't any rogue devices without a home that belong to the old plugin? There was a bug that failed to relocate them to one of the standard folders. The system looks for devices in folders and eliminates them from the choice if they already exist and if they're hidden somewhere else (say in DEVICES) then it will ignore them. If they're all ignored you'd get a null list.

2) Can you put on debugging (both options) and send me the log file as you Reload and then add a device?

Ta

Mike

BTW - disabling them in indigo doesn't stop the plugin seeing them. They must be deleted... :D
User avatar
kw123
Posts: 8705
Joined: Sun May 12, 2013 4:44 pm
Location: Dallas, TX
Contact:

Re: iFindstuff Alpha Testing Topic

Post by kw123 »

mike:

Code: Select all

  iFindStuff                      Setting up the API...
  iFindStuff                      Setting up the Custom API...
  iFindStuff                      Waiting for devices...
  iFindStuff                      Setting up the API...
  iFindStuff                      Setting up the Custom API...
  iFindStuff                      Waiting for devices...
  SQL Logger                      creating table device_history_1133056094 for "new device"
  Error (client)                  timeout waiting for plugin response from com.corporatechameleon.iFindplugBeta for request GetUiDynamicList
  Error (client)                  received unexpected packet response GetUiDynamicList (waiting for )
  iFindStuff                      Refreshing iDevices map from Apple API...
  iFindStuff                      Setting up the API...
  iFindStuff                      Warning - No Location information:1 Device is probably inactive
  iFindStuff                      Warning - No Location information:3 Device is probably inactive
  iFindStuff                      Setting up the API...
  iFindStuff                      Setting up the Custom API...
  iFindStuff                      Waiting for devices...
  iFindStuff                      Warning - No Location information:4 Device is probably inactive
  iFindStuff                      Warning - No Location information:5 Device is probably inactive
  iFindStuff                      Warning - No Location information:6 Device is probably inactive
  iFindStuff                      Warning - No Location information:7 Device is probably inactive
  iFindStuff                      Warning - No Location information:10 Device is probably inactive
  iFindStuff                      Converting and storing custom states for devices...
  iFindStuff                      Critical - Failed to convert data from API - raise to Developer
  iFindStuff                      Setting up the API...
  iFindStuff                      Setting up the Custom API...
  iFindStuff                      Waiting for devices...
  iFindStuff                      Setting up the API...
 ....
  iFindStuff                      Setting up the API...
  iFindStuff                      Setting up the Custom API...
  iFindStuff                      Waiting for devices...
  SQL Logger                      creating table device_history_72018069 for "new device"
  iFindStuff                      Refreshing iDevices map from Apple API...
  iFindStuff                      Setting up the API...
  iFindStuff                      Warning - No Location information:1 Device is probably inactive
  iFindStuff                      Warning - No Location information:3 Device is probably inactive
  iFindStuff                      Setting up the API...
  iFindStuff                      Setting up the Custom API...
  iFindStuff                      Waiting for devices...
  iFindStuff                      Warning - No Location information:4 Device is probably inactive
  iFindStuff                      Warning - No Location information:5 Device is probably inactive
  iFindStuff                      Warning - No Location information:6 Device is probably inactive
  iFindStuff                      Warning - No Location information:7 Device is probably inactive
  iFindStuff                      Warning - No Location information:10 Device is probably inactive
  iFindStuff                      Converting and storing custom states for devices...
  iFindStuff                      Critical - Failed to convert data from API - raise to Developer
  SQL Logger                      adding column "devicesinnestrange" to table device_history_72018069 ("home")
  SQL Logger                      adding column "devicesinrange" to table device_history_72018069 ("home")
  SQL Logger                      adding column "devicesnear" to table device_history_72018069 ("home")
  iFindStuff                      Setting up the API...
  iFindStuff                      Setting up the Custom API...
  iFindStuff                      Waiting for devices...
  iFindStuff                      Setting up the API...
  iFindStuff                      Setting up the Custom API...
  iFindStuff                      Waiting for devices...
.....
..
  iFindStuff                      Setting up the Custom API...
  iFindStuff                      Waiting for devices...
  Reloading plugin "iFindStuff 0.4.20"
  Stopping plugin "iFindStuff 0.4.20" (pid 31987)
  iFindStuff                      shutdown called
  Stopped plugin "iFindStuff 0.4.20"
  Starting plugin "iFindStuff 0.4.20" (pid 55149)
  Started plugin "iFindStuff 0.4.20"
  iFindStuff                      Setting up the API...
  iFindStuff                      Standard API fields set up correctly...
  iFindStuff                      Setting up the Custom API...
  iFindStuff                      Custom API fields set up correctly...
  iFindStuff                      Waiting for devices...
  iFindStuff                      Updated Geo Key for:<home>
  iFindStuff                      Updated Geo Key for:<home>
  iFindStuff                      Setting up the API...
  iFindStuff                      Standard API fields set up correctly...
  iFindStuff                      Setting up the Custom API...
  iFindStuff                      Custom API fields set up correctly...
  iFindStuff                      Waiting for devices...
  iFindStuff                      Refreshing iDevices map from Apple API...
  iFindStuff                      Attempting to map active account (karlwa....com)...
  iFindStuff                      Setting up the API...
  iFindStuff                      Standard API fields set up correctly...
  iFindStuff                      Attempting login...
  iFindStuff                      Setting up the API...
  iFindStuff                      Standard API fields set up correctly...
  iFindStuff                      Setting up the Custom API...
  iFindStuff                      Custom API fields set up correctly...
  iFindStuff                      Waiting for devices...
  iFindStuff                      Login successful...
  iFindStuff                      Keys found in the current Apple Account...
  iFindStuff                      [u' xx,xx,xx,xx'] deleted the device id strings 
  iFindStuff                      Number of devices found:11
  iFindStuff                      Updating status map for device
  iFindStuff                      Contents are:[]
  iFindStuff                      Warning - No Location information:1 Device is probably inactive
  iFindStuff                      Updating status map for device
  iFindStuff                      Contents are:[]
  iFindStuff                      Updating status map for device
  iFindStuff                      Contents are:[]
  iFindStuff                      Warning - No Location information:3 Device is probably inactive
  iFindStuff                      Updating status map for device
  iFindStuff                      Contents are:[]
  iFindStuff                      Warning - No Location information:4 Device is probably inactive
  iFindStuff                      Updating status map for device
  iFindStuff                      Contents are:[]
  iFindStuff                      Warning - No Location information:5 Device is probably inactive
  iFindStuff                      Updating status map for device
  iFindStuff                      Contents are:[]
  iFindStuff                      Warning - No Location information:6 Device is probably inactive
  iFindStuff                      Updating status map for device
  iFindStuff                      Contents are:[]
  iFindStuff                      Warning - No Location information:7 Device is probably inactive
  iFindStuff                      Updating status map for device
  iFindStuff                      Contents are:[]
  iFindStuff                      Updating status map for device
  iFindStuff                      Contents are:[]
  iFindStuff                      Updating status map for device
  iFindStuff                      Contents are:[]
   iFindStuff                      Warning - No Location information:10 Device is probably inactive
  iFindStuff                      Updating status map for device
  iFindStuff                      Contents are:[]
  iFindStuff                      Converting and storing custom states for devices...
  iFindStuff                      Added iPhone Device:0
  iFindStuff                      Added iTablet Device:1
  iFindStuff                      Added iPhone Device:3
  iFindStuff                      Added iPhone Device:4
  iFindStuff                      Added iTablet Device:8
  iFindStuff                      Added iPhone Device:9
  iFindStuff                      Conversion field details for iPhone:0
  iFindStuff                      Battery:0.83
  iFindStuff                      TimeStamp:1441135890113
  iFindStuff                      Conversion field details for iPhone:1
  iFindStuff                      Battery:0.0
  iFindStuff                      TimeStamp:** No Location Data Found **
  iFindStuff                      Warning - Time Stamp is absent for iPhone:1 iPhone is probably inactive
  iFindStuff                      Conversion field details for iPhone:2
  iFindStuff                      Battery:None
  iFindStuff                      TimeStamp:** No Location Data Found **
  iFindStuff                      Critical - Failed to convert data from API - raise to Developer
  iFindStuff                      Could not find any Active Apple Accounts
  iFindStuff                      Setting up the API...
  iFindStuff                      Standard API fields set up correctly...
  iFindStuff                      Setting up the Custom API...
  iFindStuff                      Custom API fields set up correctly...
  iFindStuff                      Waiting for devices...
  iFindStuff                      Setting up the API...
  iFindStuff                      Standard API fields set up correctly...
  iFindStuff                      Setting up the Custom API...
  iFindStuff                      Custom API fields set up correctly...
  iFindStuff                      Waiting for devices...
  iFindStuff                      Setting up the API...
  iFindStuff                      Standard API fields set up correctly...
  iFindStuff                      Setting up the Custom API...
  iFindStuff                      Custom API fields set up correctly...
  iFindStuff                      Waiting for devices...
  iFindStuff                      Setting up the API...
  iFindStuff                      Standard API fields set up correctly...
  iFindStuff                      Setting up the Custom API...
  iFindStuff                      Custom API fields set up correctly...
  iFindStuff                      Waiting for devices...
  iFindStuff                      Refreshing iDevices map from Apple API...
  iFindStuff                      Attempting to map active account (karlwa....com)...
  iFindStuff                      Setting up the API...
  iFindStuff                      Standard API fields set up correctly...
  iFindStuff                      Keys found in the current Apple Account...
  iFindStuff                      [u'xx,xx,xxx,xxx']
  iFindStuff                      Number of devices found:11
  iFindStuff                      Updating status map for device
  iFindStuff                      Contents are:[]
  iFindStuff                      Warning - No Location information:1 Device is probably inactive
  iFindStuff                      Updating status map for device
  iFindStuff                      Contents are:[]
  iFindStuff                      Updating status map for device
  iFindStuff                      Contents are:[]
  iFindStuff                      Warning - No Location information:3 Device is probably inactive
  iFindStuff                      Updating status map for device
  iFindStuff                      Contents are:[]
  iFindStuff                      Warning - No Location information:4 Device is probably inactive
  iFindStuff                      Updating status map for device
  iFindStuff                      Contents are:[]
  iFindStuff                      Warning - No Location information:5 Device is probably inactive
  iFindStuff                      Updating status map for device
  iFindStuff                      Contents are:[]
  iFindStuff                      Warning - No Location information:6 Device is probably inactive
  iFindStuff                      Updating status map for device
  iFindStuff                      Contents are:[]
  iFindStuff                      Warning - No Location information:7 Device is probably inactive
  iFindStuff                      Updating status map for device
  iFindStuff                      Contents are:[]
  iFindStuff                      Updating status map for device
  iFindStuff                      Contents are:[]
  iFindStuff                      Updating status map for device
  iFindStuff                      Contents are:[]
  iFindStuff                      Warning - No Location information:10 Device is probably inactive
  iFindStuff                      Updating status map for device
  iFindStuff                      Contents are:[]
  iFindStuff                      Converting and storing custom states for devices...
  iFindStuff                      Added iPhone Device:0
  iFindStuff                      Added iTablet Device:1
  iFindStuff                      Added iPhone Device:3
  iFindStuff                      Added iPhone Device:4
  iFindStuff                      Added iTablet Device:8
  iFindStuff                      Added iPhone Device:9
  iFindStuff                      Conversion field details for iPhone:0
  iFindStuff                      Battery:0.83
  iFindStuff                      TimeStamp:1441135915106
  iFindStuff                      Conversion field details for iPhone:1
  iFindStuff                      Battery:0.0
  iFindStuff                      TimeStamp:** No Location Data Found **
  iFindStuff                      Warning - Time Stamp is absent for iPhone:1 iPhone is probably inactive
  iFindStuff                      Conversion field details for iPhone:2
  iFindStuff                      Battery:None
  iFindStuff                      TimeStamp:** No Location Data Found **
  iFindStuff                      Critical - Failed to convert data from API - raise to Developer
  iFindStuff                      Could not find any Active Apple Accounts
  iFindStuff                      Setting up the API...
  iFindStuff                      Standard API fields set up correctly...
  iFindStuff                      Setting up the Custom API...
  iFindStuff                      Custom API fields set up correctly...
  iFindStuff                      Waiting for devices...
  iFindStuff                      Setting up the API...
  iFindStuff                      Standard API fields set up correctly...
  iFindStuff                      Setting up the Custom API...
  iFindStuff                      Custom API fields set up correctly...
  iFindStuff                      Waiting for devices...
  iFindStuff                      Updated Device Key for:<idevice1>
  iFindStuff                      Setting up the API...
  iFindStuff                      Standard API fields set up correctly...
  iFindStuff                      Setting up the Custom API...
  iFindStuff                      Custom API fields set up correctly...
  iFindStuff                      Updating: idevice1 this time
  iFindStuff                      Refreshing Apple Device...idevice1 on account kw account
  iFindStuff                      Setting up the API...
  iFindStuff                      Standard API fields set up correctly...
  iFindStuff                      P3E
  iFindStuff                      Deviceidevice1 
  iFindStuff                       cannot be located
  iFindStuff                      GeoFence home is active
  iFindStuff                      Updated Device Key for:<idevice1>
  iFindStuff                      Updated Device Key for:<idevice1>
  iFindStuff                      Updated Device Key for:<idevice1>
  iFindStuff                      Updated Device Key for:<idevice1>
  iFindStuff                      Updated Device Key for:<idevice1>
  iFindStuff                      Updated Device Key for:<idevice1>
  iFindStuff                      Updated Device Key for:<idevice1>
  iFindStuff                      Updated Device Key for:<idevice1>
  iFindStuff                      Setting up the API...
  iFindStuff                      Standard API fields set up correctly...
  iFindStuff                      Setting up the Custom API...
  iFindStuff                      Custom API fields set up correctly...
  iFindStuff                      Updating: idevice1 this time
  iFindStuff                      Refreshing Apple Device...idevice1 on account kw account
  iFindStuff                      Setting up the API...
  iFindStuff                      Standard API fields set up correctly...
  iFindStuff                      P3E
  iFindStuff                      Deviceidevice1 
  iFindStuff                       cannot be located
  iFindStuff                      GeoFence home is active
  Disabling plugin "iFindStuff 0.4.20"
  Stopping plugin "iFindStuff 0.4.20" (pid 55149)
  iFindStuff                      Could not find key:
  iFindStuff                      shutdown called
  Stopped plugin "iFindStuff 0.4.20"
the log file, hope it helps.

did several restarts, and replace my device id numbers with xx,xx,xx

Karl
Chameleon
Posts: 611
Joined: Sat Oct 04, 2014 9:50 am

Re: iFindstuff Alpha Testing Topic

Post by Chameleon »

All

There is a new version to download - 0.4.25. I uploaded the wrong version 0.4.20 by mistake.

Please download this version and reinstall...

Regards

Mike
User avatar
kw123
Posts: 8705
Joined: Sun May 12, 2013 4:44 pm
Location: Dallas, TX
Contact:

Re: iFindstuff Alpha Testing Topic

Post by kw123 »

FindStuff Setting up the API...
iFindStuff Standard API fields set up correctly...
iFindStuff Keys found in the current Apple Account...
iFindStuff [uxx']
iFindStuff Number of devices found:11
iFindStuff Updating status map for device
iFindStuff Contents are:[]
iFindStuff Warning - No Location information:1 Device is probably inactive
iFindStuff Updating status map for device
iFindStuff Contents are:[]
iFindStuff Updating status map for device
iFindStuff Contents are:[]
iFindStuff Warning - No Location information:3 Device is probably inactive
iFindStuff Updating status map for device
iFindStuff Contents are:[]
iFindStuff Warning - No Location information:4 Device is probably inactive
iFindStuff Updating status map for device
iFindStuff Contents are:[]
iFindStuff Warning - No Location information:5 Device is probably inactive
iFindStuff Updating status map for device
iFindStuff Contents are:[]
iFindStuff Setting up the API...
iFindStuff Standard API fields set up correctly...
iFindStuff Setting up the Custom API...
iFindStuff Custom API fields set up correctly...
iFindStuff Waiting for devices...
iFindStuff Warning - No Location information:6 Device is probably inactive
iFindStuff Updating status map for device
iFindStuff Contents are:[]
iFindStuff Warning - No Location information:7 Device is probably inactive
iFindStuff Updating status map for device
iFindStuff Contents are:[]
iFindStuff Updating status map for device
iFindStuff Contents are:[]
iFindStuff Updating status map for device
iFindStuff Contents are:[]
iFindStuff Warning - No Location information:10 Device is probably inactive
iFindStuff Updating status map for device
iFindStuff Contents are:[]
iFindStuff Converting and storing custom states for devices...
iFindStuff Added iPhone Device:0
iFindStuff Added iTablet Device:1
iFindStuff Added iPhone Device:3
iFindStuff Added iPhone Device:4
iFindStuff Added iTablet Device:8
iFindStuff Added iPhone Device:9
iFindStuff Conversion field details for iPhone:0
iFindStuff Battery:0.82
iFindStuff TimeStamp:1441137693115
iFindStuff Conversion field details for iPhone:1
iFindStuff Battery:0.0
iFindStuff TimeStamp:** No Location Data Found **
iFindStuff Warning - Time Stamp is absent for iPhone:1 iPhone is probably inactive
iFindStuff Conversion field details for iPhone:2
iFindStuff Battery:None
iFindStuff TimeStamp:** No Location Data Found **
iFindStuff Critical - Failed to convert data from API - raise to Developer
iFindStuff Could not find any Active Apple Accounts
iFindStuff Setting up the API...
iFindStuff Standard API fields set up correctly...
iFindStuff Setting up the Custom API...
iFindStuff Custom API fields set up correctly...
iFindStuff Waiting for devices...


same result w 0.4.25
mclass
Posts: 317
Joined: Wed May 13, 2015 7:00 pm
Location: Melbourne, Australia

Re: iFindstuff Alpha Testing Topic

Post by mclass »

Thaks for including me in in Alpha testing!

Loaded V0.4.25 successfully and configured my account and phone OK. Geolocation appears to work OK here in the Southern Hemisphere (Australia).

I then set up my wife's account, and attempted to create her iPhone device. However, I experienced similar problems to kw123 - no devices appeared in the drop down menu (just greyed out), despite the her Account Device showing as "Active" with the green dot. Attempts at reloading plugin, restarting computer and server and all sorts of combinations were without success.

In desperation deleted, and recreated my wife's Apple Account Device, and hey presto - there was her phone and iPad.

In experimenting with some of the features, I was able to plot all devices on a map, but then when I attempted to plot a selected device, there were no devices presented in the selection box - just greyed out. Similarly for sending a message to a device. I'm surmising that these are features yet to be implemented?

This is another great plugin, and looking forward to further experimentation. And it's a bit scary how much information you can determine from the device :roll:

Mclass
Locked

Return to “iFindStuff”