VP ISS battery status

,

no they probably are trying to figure out to fire the owners kid who does their programming and hire you instead.

You know with a great instrument as they have, they really haven’t thought the whole software thing out. They could really do a lot better with their software, logger and sensor capability. It has potential that isn’t tapped.

However, they do provide under support on their site, software that allows programmers to customize their product.

Anyway, you have done a remarkable service to their product and probably caused their world wide sales to go up.

and probably caused their world wide sales to go up

you would think so, and I hope they see it that way

but i often come across hardware manufactures who do not like 3rd party software developers

would be great if davis put a link to wd somewhere on their site…

Why don’t you just ask??
Coyote :smiley:

its their policy not too to do that
i have asked in a round about way in the past before…

I do have some sympathy for them over that, if they do it for one then the only sensible thing is to advertise ALL competitive software on their site. It can really open a can of worms for a company…probably the safest thing to do is not to do anything, yes you get some flack but not nearly as much as doing something would give them.

If they really want WD as their software then the thing for them to do is buy Brian out but I dont believe any of us would really want them to take that option - that is if Brian would even consider it, however I think we should keep quiet about it because Mrs Brian might well try to get him to accept if the price was good enough :wink:

Stuart

One thing Davis hasn’t done, and that’s offer a temp/humidity sensor similar to what OS sell, which can be placed inside of a room with or without a led display, that doesn’t really look out of place. The only option that have is some clunky design intended for outdoor use. I have suggested they consider something similar to what OS offer, but that’s just a suggestion from just ONE person only. Perhaps if those who would like something similar, could suggest the same to Davis, we might just wake them up. :slight_smile:

Brian,
This is the code in VPLive that converts the integer battery status into a brief readable text string. If the battery status is 0, that means all transmitting station batteries are ok, and the text will be:
‘Ok’
If any of the stations have low batteries, the text would be somthing like:
‘Station 1,3 Low’

I purposefully have the text be brief since the value hase to fit in a small display space.

function TWDisplayUtils.BatteryStatusStr(const value: byte): string;
var
str: string;
begin
if (value = 0) then begin
Result := ‘Ok’;
end else begin
str := ‘’;
if ((value and 1) > 0) then str := str + ‘1,’;
if ((value and 2) > 0) then str := str + ‘2,’;
if ((value and 4) > 0) then str := str + ‘3,’;
if ((value and 8 ) > 0) then str := str + ‘4,’;
if ((value and 16) > 0) then str := str + ‘5,’;
if ((value and 32) > 0) then str := str + ‘6,’;
if ((value and 64) > 0) then str := str + ‘7,’;
if ((value and 128) > 0) then str := str + ‘8,’;
if (Length(str) > 0) then str := Copy(str, 0, Length(str) - 1); // get rid of trailing ‘,’
Result := ‘Station ’ + str + ’ Low’;
end;
end;

Steve

thanks!
uploading 10.31s full install with that in it now

Brian having installed 10.31s on the 18th at 20:55 (local time) I have only just checked my %vpissstatus% flag and it still says ‘0’, I though the code you were going to add would have changed this to ‘OK’ or whatever value for a not OK battery? Have I not got the correct 10.31s or is there a problem here?

Stuart

It’s a very good idea. Brian, do you have a date you plan to integrate battery status for VP2 ?
Chris

Hi
been away camping last 2 days with the fam damily with some nice summer weather
i did incorporate it, but maybe i did not get it uploaded…

i will get a new version out soon, after i catch up

Hi brian,
Summer…so lucky guy…It’s deep winter here. I need to wait for 4/ months before entering into summer time…
Thx for your quck answer (as usual…). I guess I’m not the only one to be impatient to get this info on WD…
Cheers,
Chris (4

Summer, 5 months away for us, weather has been mild, other than the 1.6 in snow last night here ( it is melting sort, just below freezing). Of course , it is flat here, not the beautiful country you have …Sigh 8)

ah, just checked my code
i had put in the new code, but still had my old code there, and i had not deleted it!
i will get 10.31s zip uploaded now

Brian,
If I correctly understood, I need to upload the zip file on v 10.31 S ?

10.31t now has this working OK…Stuart

Ok thx, I will try.
Chris

Stuart,
I just downloaded the lastest version 10.31t but where I can’t find the VP2 battery status , what do I need to do please?
Thx for your help.
Chris

You need to use the %vpissstatus% custom tag to see the status.

Stuart

Ok Stuart, I saw it on the taglist but after, what do I do after having the “%vpissstatus%…ISS battery status flag”…Sorry for my ignorance…!
Chris