droid app for apex?

Not that I know of. I created a web application that can do status/control/feed and graphing. You can get a link to the site from my webpage here: http://www.kenargo.com/software

It will get you connected; juts not a local app but it is build for phone browsers.
 
Yes it is but still an app direct on the phone would be cool then you could have a widget on the android desktop :)
 
type in apex, theres a full version for 2.99 and a read only version for free, theres been a couple big threads here in this forum about it, the creator is active here
 
This app works for me to display the system state. But as soon as I try to control any outlet, it force closes...

Anyone else having this issue? I'm on Android 2.1 on a Moto XT720
 
Been using the APEX app on my Incredible for about 6 months now. Worked fine with 2.1 and 2.2. The developer is pretty good about helping customers.
 
This app works for me to display the system state. But as soon as I try to control any outlet, it force closes...

Anyone else having this issue? I'm on Android 2.1 on a Moto XT720

I have the same problem. My phone is rooted with a custom ROM though which is probably the issue. Its nice to have a widget but thats all the app is worth IMO. The app cant even use all the functionality that is available. Anytime I need to change anything I just pull up the webpage on my phone.
 
No, it does not work on my Droid X when changing the outlets either (non-rooted)
The polling for stats (and Feed option do, I think)
 
Here is more info on the special character bug.

Problem #1
The way the Android database works is by referencing queries as URI strings. Think hyperlinks where each hyperlink returns a specific set of data. For instance, the URI to return all of the "pH" data points for controller "My Apex" is
"content://apex/controller/My Apex/probes/pH/*"​


Likewise, the current state of outlet "Plug 1" is
"content://apex/controller/My Apex/outlet/Plug 1/*"​


The problem is that if there is a "/" in one of the outlet names you end up with a URI that looks like this
"content://apex/controller/My Apex/outlet/Plug/1/*"​
which messes up the URI segments


Problem #2
The URIs above eventually get converted into SQL strings so an SQL string like
select * from ProdeDataTable where Name = "ph"​
is fine but


select * from ProdeDataTable where Name = "*ph"​
is not because the asterisk is an sql special character.


Also, empty fields (null) prematurely terminate the strings.

I've put a ton of time into this for many months and eventually just ran out of steam. Kids sports schedules and work schedules prevented me from getting the bug list worked off. To boot, the mods here keep busing my balls and deleting threads because they think I am a commercial enterprise.

I usually answer emails within 60 minutes and help people out getting the app to work but don't frequent these boards much anymore. My email address is listed on the Market and in the about page of the app.

I've asked a bunch of times if anyone wants to help add features but never really got any takers.

There are a few other bugs such as Force-Close if you reload a page while it is processing a current request that are on the list too.

You can call it Beta or whatever you like. It is what it is.
 
Back
Top