The UK Home Automation Archive

Archive Home
Group Home
Search Archive


Advanced Search

The UKHA-ARCHIVE IS CEASING OPERATIONS 31 DEC 2024


[Message Prev][Message Next][Thread Prev][Thread Next][Message Index][Thread Index]

Re: Barionet xAP code


  • Subject: Re: Barionet xAP code
  • From: Andre Van Der Merwe <andrevdm@xxxxxxxxx>
  • Date: Fri, 6 Jun 2008 05:56:29 -0700 (PDT)

--0-224642887-1212756989=:10642
Content-Type: text/plain; charset=iso-8859-1
Content-Transfer-Encoding: quoted-printable

Brilliant, i replaced the "Text=3D" with
"DisplayText=3D" and the info goes=
correctly through to Homeseer. the device status is now still
displays&nbs=
p;"24.5 C" and the DeviceString is 24.5 C BUT the DeviceValue is
392 which =
conforms to the Level=3D392/4095 BSC schema. This is really handy for
accur=
ate control in HS.=20

thanks
--- On Fri, 6/6/08, Kevin Hawkins &lt;yahoogroupskh@xxxxxxx&gt;
wrot=
e:

From: Kevin Hawkins &lt;yahoogroupskh@xxxxxxx&gt;
Subject: Re: [xap_automation] Barionet xAP code
To: xap_automation@xxxxxxx
Date: Friday, June 6, 2008, 11:35 AM






Hi Andre,

I just had a quick look over the code and we need to tweak it a=20
little...

In xAP BSC there are three types of endpoints, binary, level and=20
text and an endpoint can only be of one type, although all level and=20
text devices carry a state parameter. Should a device/endpoint be more=20
complex then it is presented as two or more independent endpoint values=20
(or you use a different schema). In your adaption you have presented a=20
1-wire sensor as both level based and text based which is not=20
supported. All devices must carry a binary state=3D parameter and so the=20
mixed level/text device happens to be the only combination that can't be=20
used. However , conveniently - you can present a text string within a=20
level based device by including a displaytext=3D parameter :-)=20

I believe the mcs xAP HomeSeer plugin supports this same mapping of=20
this parameter value into device values . As you wish to transfer both=20
the level and the text I think it's best for your usage to change the=20
text=3D to displaytext=3D , rather than drop the level and create a pure=20
text device. Maybe you could try it within HomeSeer and confirm this=20
works ok for you ??

Not supported as it is a hybrid level/text device.
input.state
{
State=3D
Level=3D
Text=3D
}

This is OK and recommended
input.state
{
State=3D
Level=3D
DisplayText=3D
}

and this is OK
input.state
{
State=3D
Text=3D
}

and so is this should you wish
input.state
{
State=3D
Text=3D
DisplayText=3D
}

I'm sure you will have found it but the xAP BSC v1.3 schema is=20
documented at
http://www.xapautom
ation.org/ index.php? title=3DBasic_ Status_and_ Contro=
l_Schema

Cheers Kevin

Andre Van Der Merwe wrote:
&gt;
&gt; the xAPBSC now passes the correct 1-wire temperature through to=20
&gt; Homeseer. In the attached word document the changed text is=20
&gt; highlighted. The device status displays correctly. the
DeviceString=20
&gt; contains the temperature in resolution of .1 degrees celcius ie
23.1.=
=20
&gt; However the DeviceValue contains a rounded integer degree celcius
ie=20
&gt; 23. For higher accuracy control in HSconvert the DeviceValue to
variab=
le.
&gt;
&gt;=20
&gt;
&gt; Change the extention from .doc to .bas to tokenize.
&gt;
&gt; --- On *Wed, 6/4/08, Kevin Hawkins /&lt;yahoogroupskh@
googlemail. com=
&gt;/*=20
&gt; wrote:
&gt;
&gt; From: Kevin Hawkins &lt;yahoogroupskh@ googlemail. com&gt;
&gt; Subject: Re: [xap_automation] Barionet xAP code
&gt; To: xap_automation@ yahoogroups. com
&gt; Date: Wednesday, June 4, 2008, 11:07 PM
&gt;
&gt; Glad it's working Andre ,
&gt;
&gt; I'm finding a few issues with the code and I'm adding a few bits
as
&gt; I progress. It's likely I'll release an update in a week or so any
&gt; changes you want let me know - if you can highlight the actual
code
&gt; changed that would be great. Please use copious comments too.
&gt;
&gt; Re the decimal values - BSC doesn't support these either - nor
does
&gt; it support negative values. What you can do however is to report
them
&gt; as a displaytext parameter within a BSC block - and you can form
the
&gt; decimal number by using scaled integer arithmetic in BCL and then
&gt; create
&gt; a string and insert the decimal point
&gt;
&gt; displaytext=3D 51.24=B0c
&gt;
&gt; Or you could abandon the level based BSC device altogether and use
a
&gt; text one instead text=3D-11.25=B0F
&gt;
&gt; Actually, and more approriately for such 'telemetry' data we have
&gt; another schema called TSC , it's not as universal as BSC yet but
&gt; we hope
&gt; eventually it will become so. - the spec for BSC and TSC are on
&gt; the xAP
&gt; website
&gt;
&gt; http://www.xapautom ation.org/ index.php?
title=3DSchema
&gt; &lt;http://www.xapautom ation.org/ index.php?
title=3DSchema&gt;
&gt;
&gt; Kevin
&gt;
&gt; Andre Van Der Merwe wrote:
&gt; &gt;
&gt; &gt; Hi Kevin,
&gt; &gt;
&gt; &gt;
&gt; &gt;
&gt; &gt; no you answered my questions. i have just not checked
this email
&gt; recently.
&gt; &gt;
&gt; &gt;
&gt; &gt;
&gt; &gt; the system is now working and i am getting the 1-wire
&gt; temperatures out
&gt; &gt; fine. Unfortunately the Barionet BCL code does not
support floati=
ng
&gt; &gt; point variables, so I can only get integer degree celcius
out.
&gt; If is
&gt; &gt; use the correct xAP schema , typically 23degC corresponds
to
&gt; 368/4096..
&gt; &gt; this works great.
&gt; &gt;
&gt; &gt;
&gt; &gt;
&gt; &gt; Now i am working on getting the 368/4096 to make some
sence in
&gt; homeseer.
&gt; &gt;
&gt; &gt;
&gt; &gt;
&gt; &gt; I made some changes to the code to achieve the above.
Also in
&gt; the code
&gt; &gt; it refers to a "config.txt" file which should
change to
&gt; "xapcfg.txt" .
&gt; &gt; Shall i send the update ?
&gt; &gt;
&gt; &gt; --- On *Tue, 6/3/08, Kevin Hawkins
/&lt;yahoogroupskh@ googlemail=
..
&gt; com &lt;mailto:yahoogroups kh%40googlemail.
com&gt;&gt;/*
&gt; &gt; wrote:
&gt; &gt;
&gt; &gt; From: Kevin Hawkins &lt;yahoogroupskh@ googlemail.
com
&gt; &lt;mailto:yahoogroups kh%40googlemail.
com&gt;&gt;
&gt; &gt; Subject: Re: [xap_automation] Barionet xAP code
&gt; &gt; To: xap_automation@ yahoogroups. com
&gt; &lt;mailto:xap_
automation% 40yahoogroups. com&gt;
&gt; &gt; Date: Tuesday, June 3, 2008, 11:58 AM
&gt; &gt;
&gt; &gt; Andre,
&gt; &gt;
&gt; &gt; Phew....We seem to have a communication problem..
&gt; &gt;
&gt; &gt; I responded to a post you made a few days back in the xAP
mi4
&gt; &gt; plugin area on the HomeSeer BBS where you were actually
using
&gt; the mcs
&gt; &gt; plugin - fortunately Michael saw it anyway. Also on the
Barix
&gt; &gt; Barionet
&gt; &gt; forum last week I responded too and you said you already
had the
&gt; &gt; code..
&gt; &gt; I have taken a look at the Barionet xAP code (the BSC
v1.3
&gt; &gt; version) and
&gt; &gt; so I dusted off my own Barionet, re-tokenized it and it
loaded
&gt; &gt; fine. I
&gt; &gt; posted some detailed instructions there as to how to do
this. Qui=
te
&gt; &gt; why it was dusty I'm not sure as it's a great device on
xAP and I
&gt; &gt; shall
&gt; &gt; be using it now going forwards :-)
&gt; &gt;
&gt; &gt; Since then, with Edwards permission, I have updated the
code
&gt; &gt; slightly to fix a couple of issues I spotted and I have
sent you =
two
&gt; &gt; revised versions by email . I also sent you directly by
email the
&gt; &gt; .cob
&gt; &gt; file so you could load it directly into your Barionet -
assuming =
you
&gt; &gt; have the latest firmware - but I haven't been able to get
any inf=
o
&gt; &gt; from
&gt; &gt; you as to which Barionet firmware you are running. Then
you poste=
d
&gt; &gt; a HomeSeer plugin issue question and so I tried it out
here and i=
t
&gt; &gt; worked fine but I noticed you were still not using the
latest
&gt; &gt; firmware I
&gt; &gt; sent you :-(
&gt; &gt;
&gt; &gt; So I don't know what more we can do... Please can you
check your
&gt; &gt; email and try those most recent versions I sent you. They
work
&gt; &gt; perfectly well here. You seem to be using an old xAP v1.2
/ BSC v=
1.2
&gt; &gt; version still. You can of course use the previous BSC
v1.3 versio=
n
&gt; &gt; direct from Edward but you will manually have to fix a
couple of
&gt; &gt; issues
&gt; &gt; that I have already corrected in my version. You will
need to
&gt; address
&gt; &gt; the 'state =3D' vs 'state=3D' parameter name and also
levels are
&gt; &gt; mistakenly
&gt; &gt; reported in the state=3D parmeter eg state=3D100/1024 .
In my ver=
sion
&gt; &gt; '12b' 1.12 this is already fixed for you.
&gt; &gt;
&gt; &gt; Over the next few weeks I shall be revising the code to
hopefully
&gt; &gt; support new features that later Barionet firmward now
offers eg
&gt; &gt; counters
&gt; &gt; and more 1-wire sensors, maybe threshold settings for the
state=
=3D
&gt; &gt; parameter in level devices. The revision I already
released provi=
des
&gt; &gt; compliance with both xAP v1.3 and BSC v1.3. Please let me
know
&gt; &gt; anything you would like to have added here, although for
any cust=
om
&gt; &gt; changes you are free to adapt the source code anyway.
&gt; &gt;
&gt; &gt; Let us know how you want to move forward.....
&gt; &gt;
&gt; &gt; Kevin
&gt; &gt;
&gt; &gt; andrevdm wrote:
&gt; &gt; &gt;
&gt; &gt; &gt; Hi Edward,
&gt; &gt; &gt;
&gt; &gt; &gt; on you blueyonder website you invite to contact
you if
&gt; interested in
&gt; &gt; &gt; your .bas code for the xAP version 1.3.
&gt; &gt; &gt;
&gt; &gt; &gt; is it still available ?
&gt; &gt; &gt;
&gt; &gt; &gt; regards
&gt; &gt; &gt;
&gt; &gt; &gt; Andre
&gt; &gt; &gt;
&gt; &gt; &gt;
&gt; &gt;
&gt; &gt;
&gt; &gt;
&gt;
&gt;
&gt;=20

=20














=20=20=20=20=20=20
--0-224642887-1212756989=:10642
Content-Type: text/html; charset=ISO-8859-1
Content-Transfer-Encoding: quoted-printable





<html><head>
<style type=3D"text/css">
<!--
#ygrp-mkp{
border: 1px solid #d8d8d8;
font-family: Arial;
margin: 14px 0px;
padding: 0px 14px;
}
#ygrp-mkp hr{
border: 1px solid #d8d8d8;
}
#ygrp-mkp #hd{
color: #628c2a;
font-size: 85%;
font-weight: bold;
line-height: 122%;
margin: 10px 0px;
}
#ygrp-mkp #ads{
margin-bottom: 10px;
}
#ygrp-mkp .ad{
padding: 0 0;
}
#ygrp-mkp .ad a{
color: #0000ff;
text-decoration: none;
}
-->
</style>
</head>
<body>


<table cellspacing=3D'0' cellpadding=3D'0' border=3D'0'
background=3D'none'=
style=3D'font-family:arial;font-size:10pt;color:#000000;background-color:#=
ffffff;width:100%;'><tr><td valign=3D'top' style=3D'font:
inherit;'><P>Bril=
liant, i replaced the "Text=3D" with "DisplayText=3D"
and the info goes cor=
rectly through to Homeseer. the device status is now still
displays&nbsp;"2=
4.5 C" and the DeviceString is 24.5 C BUT the DeviceValue is 392 which
conf=
orms to the Level=3D392/4095 BSC schema. This is really handy for accurate
=
control in HS. </P>
<P><BR>thanks<BR>--- On <B>Fri, 6/6/08, Kevin
Hawkins <I>&lt;yahoogroupskh@=
googlemail.com&gt;</I></B> wrote:<BR></P>
<BLOCKQUOTE style=3D"PADDING-LEFT: 5px; MARGIN-LEFT: 5px;
BORDER-LEFT: rgb(=
16,16,255) 2px solid">From: Kevin Hawkins
&lt;yahoogroupskh@xxxxxxx&=
gt;<BR>Subject: Re: [xap_automation] Barionet xAP code<BR>To:
xap_automatio=
n@xxxxxxx<BR>Date: Friday, June 6, 2008, 11:35 AM<BR><BR>
<DIV id=3Dyiv1399347317>
<DIV id=3Dygrp-text>
<P>Hi Andre,<BR><BR>I just had a quick look over the code
and we need to tw=
eak it a <BR>little...<BR><BR>In xAP BSC there are three
types of endpoints=
, binary, level and <BR>text and an endpoint can only be of one type,
altho=
ugh all level and <BR>text devices carry a state parameter. Should a
device=
/endpoint be more <BR>complex then it is presented as two or more
independe=
nt endpoint values <BR>(or you use a different schema). In your
adaption yo=
u have presented a <BR>1-wire sensor as both level based and text
based whi=
ch is not <BR>supported. All devices must carry a binary state=3D
parameter=
and so the <BR>mixed level/text device happens to be the only
combination =
that can't be <BR>used. However , conveniently - you can present a
text str=
ing within a <BR>level based device by including a displaytext=3D
parameter=
:-) <BR><BR>I believe the mcs xAP HomeSeer plugin supports this
same mappi=
ng of <BR>this parameter value into device values . As you wish to
transfer both <BR>the level and the text I think it's best for your
usage =
to change the <BR>text=3D to displaytext=3D , rather than drop the
level an=
d create a pure <BR>text device. Maybe you could try it within
HomeSeer and=
confirm this <BR>works ok for you ??<BR><BR>Not supported
as it is a hybri=
d level/text
device.<BR>input.state<BR>{<BR>State=3D<BR>Level=3D<BR>Text=3D=
<BR>}<BR><BR>This is OK and
recommended<BR>input.state<BR>{<BR>State=3D<BR>=
Level=3D<BR>DisplayText=3D<BR>}<BR><BR>and this is
OK<BR>input.state<BR>{<B=
R>State=3D<BR>Text=3D<BR>}<BR><BR>and so is this
should you wish<BR>input.s=
tate<BR>{<BR>State=3D<BR>Text=3D<BR>DisplayText=3D<BR>}<BR><BR>I'm
sure you=
will have found it but the xAP BSC v1.3 schema is <BR>documented
at<BR><A =
href=3D"http://www.xapautomation.org/index.php?title=3DBasic_Status_and_Con=
trol_Schema" target=3D_blank rel=3Dnofollow>http://www.xapautom ation.org/ =
index.php? title=3DBasic_ Status_and_
Control_Schema</A><BR><BR>Cheers Kevi=
n<BR><BR>Andre Van Der Merwe
wrote:<BR>&gt;<BR>&gt; the xAPBSC now passes the
correct 1-wire temperatur=
e through to <BR>&gt; Homeseer. In the attached word document the
changed t=
ext is <BR>&gt; highlighted. The device status displays
correctly. the Devi=
ceString <BR>&gt; contains the temperature in resolution of .1
degrees celc=
ius ie 23.1. <BR>&gt; However the DeviceValue contains a rounded
integer de=
gree celcius ie <BR>&gt; 23. For higher accuracy control in
HSconvert the D=
eviceValue to variable.<BR>&gt;<BR>&gt;
<BR>&gt;<BR>&gt; Change the extenti=
on from .doc to .bas to tokenize.<BR>&gt;<BR>&gt; ---
On *Wed, 6/4/08, Kevi=
n Hawkins /&lt;<A href=3D"mailto:yahoogroupskh%40googlemail.com";
target=3D_=
blank rel=3Dnofollow>yahoogroupskh@ googlemail. com</A>&gt;/*
<BR>&gt; wrot=
e:<BR>&gt;<BR>&gt; From: Kevin Hawkins &lt;<A
href=3D"mailto:yahoogroupskh%=
40googlemail.com" target=3D_blank rel=3Dnofollow>yahoogroupskh@
googlemail.=
com</A>&gt;<BR>&gt; Subject: Re: [xap_automation]
Barionet xAP code<BR>&gt=
; To:
<A href=3D"mailto:xap_automation%40yahoogroups.com";
target=3D_blank rel=3D=
nofollow>xap_automation@ yahoogroups. com</A><BR>&gt;
Date: Wednesday, June=
4, 2008, 11:07 PM<BR>&gt;<BR>&gt; Glad it's working
Andre ,<BR>&gt;<BR>&gt=
; I'm finding a few issues with the code and I'm adding a few bits
as<BR>&g=
t; I progress. It's likely I'll release an update in a week or so
any<BR>&g=
t; changes you want let me know - if you can highlight the actual
code<BR>&=
gt; changed that would be great. Please use copious comments
too.<BR>&gt;<B=
R>&gt; Re the decimal values - BSC doesn't support these either -
nor does<=
BR>&gt; it support negative values. What you can do however is to
report th=
em<BR>&gt; as a displaytext parameter within a BSC block - and
you can form=
the<BR>&gt; decimal number by using scaled integer arithmetic in
BCL and t=
hen<BR>&gt; create<BR>&gt; a string and insert the
decimal point<BR>&gt;<BR=
>&gt; displaytext=3D 51.24=B0c<BR>&gt;<BR>&gt;
Or you could abandon the lev=
el
based BSC device altogether and use a<BR>&gt; text one instead
text=3D-11.=
25=B0F<BR>&gt;<BR>&gt; Actually, and more approriately
for such 'telemetry'=
data we have<BR>&gt; another schema called TSC , it's not as
universal as =
BSC yet but<BR>&gt; we hope<BR>&gt; eventually it will
become so. - the spe=
c for BSC and TSC are on<BR>&gt; the xAP<BR>&gt;
website<BR>&gt;<BR>&gt; <A=
href=3D"http://www.xapautom/";
target=3D_blank rel=3Dnofollow>http://www.xa=
pautom</A> ation.org/ index.php? title=3DSchema<BR>&gt;
&lt;<A href=3D"http=
://www.xapautomation.org/index.php?title=3DSchema" target=3D_blank
rel=3Dno=
follow>http://www.xapautom ation.org/ index.php?
title=3DSchema</A>&gt;<BR>=
&gt;<BR>&gt; Kevin<BR>&gt;<BR>&gt; Andre
Van Der Merwe wrote:<BR>&gt; &gt;<=
BR>&gt; &gt; Hi Kevin,<BR>&gt;
&gt;<BR>&gt; &gt;<BR>&gt;
&gt;<BR>&gt; &gt; =
no you answered my questions. i have just not checked this
email<BR>&gt; re=
cently.<BR>&gt; &gt;<BR>&gt;
&gt;<BR>&gt; &gt;<BR>&gt; &gt; the system
is n=
ow working and
i am getting the 1-wire<BR>&gt; temperatures
out<BR>&gt; &gt; fine. Unfort=
unately the Barionet BCL code does not support floating<BR>&gt;
&gt; point =
variables, so I can only get integer degree celcius out.<BR>&gt;
If is<BR>&=
gt; &gt; use the correct xAP schema , typically 23degC corresponds
to<BR>&g=
t; 368/4096..<BR>&gt; &gt; this works
great.<BR>&gt; &gt;<BR>&gt;
&gt;<BR>&=
gt; &gt;<BR>&gt; &gt; Now i am working on getting the
368/4096 to make some=
sence in<BR>&gt; homeseer.<BR>&gt;
&gt;<BR>&gt; &gt;<BR>&gt;
&gt;<BR>&gt; =
&gt; I made some changes to the code to achieve the above. Also
in<BR>&gt; =
the code<BR>&gt; &gt; it refers to a "config.txt"
file which should change =
to<BR>&gt; "xapcfg.txt" .<BR>&gt; &gt;
Shall i send the update ?<BR>&gt; &g=
t;<BR>&gt; &gt; --- On *Tue, 6/3/08, Kevin Hawkins
/&lt;yahoogroupskh@ goog=
lemail.<BR>&gt; com &lt;mailto:yahoogroups kh%40googlemail.
com&gt;&gt;/*<B=
R>&gt; &gt; wrote:<BR>&gt; &gt;<BR>&gt;
&gt; From: Kevin Hawkins
&lt;yahoogroupskh@ googlemail. com<BR>&gt; &lt;mailto:yahoogroups kh%40goo=
glemail. com&gt;&gt;<BR>&gt; &gt; Subject: Re:
[xap_automation] Barionet xA=
P code<BR>&gt; &gt; To: xap_automation@ yahoogroups.
com<BR>&gt; &lt;mailto=
:xap_ automation% 40yahoogroups. com&gt;<BR>&gt; &gt;
Date: Tuesday, June 3=
, 2008, 11:58 AM<BR>&gt; &gt;<BR>&gt; &gt;
Andre,<BR>&gt; &gt;<BR>&gt; &gt;=
Phew....We seem to have a communication problem..<BR>&gt;
&gt;<BR>&gt; &gt=
; I responded to a post you made a few days back in the xAP
mi4<BR>&gt; &gt=
; plugin area on the HomeSeer BBS where you were actually
using<BR>&gt; the=
mcs<BR>&gt; &gt; plugin - fortunately Michael saw it anyway.
Also on the B=
arix<BR>&gt; &gt; Barionet<BR>&gt; &gt; forum
last week I responded too and=
you said you already had the<BR>&gt; &gt;
code..<BR>&gt; &gt; I have taken=
a look at the Barionet xAP code (the BSC v1.3<BR>&gt; &gt;
version) and<BR=
>&gt; &gt; so I dusted off my own Barionet, re-tokenized it and
it
loaded<BR>&gt; &gt; fine. I<BR>&gt; &gt; posted
some detailed instructions=
there as to how to do this. Quite<BR>&gt; &gt; why it was
dusty I'm not su=
re as it's a great device on xAP and I<BR>&gt; &gt;
shall<BR>&gt; &gt; be u=
sing it now going forwards :-)<BR>&gt; &gt;<BR>&gt;
&gt; Since then, with E=
dwards permission, I have updated the code<BR>&gt; &gt;
slightly to fix a c=
ouple of issues I spotted and I have sent you two<BR>&gt;
&gt; revised vers=
ions by email . I also sent you directly by email the<BR>&gt;
&gt; .cob<BR>=
&gt; &gt; file so you could load it directly into your Barionet -
assuming =
you<BR>&gt; &gt; have the latest firmware - but I haven't
been able to get =
any info<BR>&gt; &gt; from<BR>&gt; &gt; you as
to which Barionet firmware y=
ou are running. Then you posted<BR>&gt; &gt; a HomeSeer
plugin issue questi=
on and so I tried it out here and it<BR>&gt; &gt; worked fine
but I noticed=
you were still not using the latest<BR>&gt; &gt; firmware
I<BR>&gt;
&gt; sent you :-(<BR>&gt; &gt;<BR>&gt; &gt;
So I don't know what more we c=
an do... Please can you check your<BR>&gt; &gt; email and try
those most re=
cent versions I sent you. They work<BR>&gt; &gt; perfectly
well here. You s=
eem to be using an old xAP v1.2 / BSC v1.2<BR>&gt; &gt;
version still. You =
can of course use the previous BSC v1.3 version<BR>&gt; &gt;
direct from Ed=
ward but you will manually have to fix a couple of<BR>&gt;
&gt; issues<BR>&=
gt; &gt; that I have already corrected in my version. You will need
to<BR>&=
gt; address<BR>&gt; &gt; the 'state =3D' vs 'state=3D'
parameter name and a=
lso levels are<BR>&gt; &gt; mistakenly<BR>&gt;
&gt; reported in the state=
=3D parmeter eg state=3D100/1024 . In my version<BR>&gt; &gt;
'12b' 1.12 th=
is is already fixed for you.<BR>&gt; &gt;<BR>&gt;
&gt; Over the next few we=
eks I shall be revising the code to hopefully<BR>&gt; &gt;
support new feat=
ures that later Barionet firmward now offers eg<BR>&gt; &gt;
counters<BR>&g=
t;
&gt; and more 1-wire sensors, maybe threshold settings for the
state=3D<BR=
>&gt; &gt; parameter in level devices. The revision I already
released prov=
ides<BR>&gt; &gt; compliance with both xAP v1.3 and BSC v1.3.
Please let me=
know<BR>&gt; &gt; anything you would like to have added here,
although for=
any custom<BR>&gt; &gt; changes you are free to adapt the
source code anyw=
ay.<BR>&gt; &gt;<BR>&gt; &gt; Let us know how
you want to move forward.....=
<BR>&gt; &gt;<BR>&gt; &gt;
Kevin<BR>&gt; &gt;<BR>&gt; &gt; andrevdm
wrote:<=
BR>&gt; &gt; &gt;<BR>&gt; &gt; &gt; Hi
Edward,<BR>&gt; &gt; &gt;<BR>&gt; &g=
t; &gt; on you blueyonder website you invite to contact you
if<BR>&gt; inte=
rested in<BR>&gt; &gt; &gt; your .bas code for the xAP
version 1.3.<BR>&gt;=
&gt; &gt;<BR>&gt; &gt; &gt; is it still available
?<BR>&gt; &gt; &gt;<BR>&=
gt; &gt; &gt; regards<BR>&gt; &gt;
&gt;<BR>&gt; &gt; &gt; Andre<BR>&gt;
&gt=
; &gt;<BR>&gt; &gt; &gt;<BR>&gt;
&gt;<BR>&gt; &gt;<BR>&gt;
&gt;<BR>&gt;<BR>&gt;<BR>&gt;
<BR><BR></P></DIV></DIV></BLOCKQUOTE></td></t=
r></table><br>

=20=20=20=20=20=20
<span width=3D"1" style=3D"color:
white;"/>__._,_.___</span>

<!-- Start Recommendations -->
<!-- End Recommendations -->



<!-- **begin egp html banner** -->

<img src=3D"http://geo.yahoo.com/serv?s=3D97476590/grpId=3D9674343/grpspI=
d=3D1705007709/msgId=3D3914/stime=3D1212757971" width=3D"1"
height=3D"1"> <=
br>

<!-- **end egp html banner** -->

=20=20
<!-- **begin egp html banner** -->

<br>
<div style=3D"font-family: verdana; font-size: 77%; border-top: 1px
s=
olid #666; padding: 5px 0;" >
Your email settings: Individual EmailTraditional <br>
<a href=3D"http://groups.yahoo.com/group/xap_automation/join;_ylc=3DX=
3oDMTJmY2JwZGdpBF9TAzk3NDc2NTkwBGdycElkAzk2NzQzNDMEZ3Jwc3BJZAMxNzA1MDA3NzA5=
BHNlYwNmdHIEc2xrA3N0bmdzBHN0aW1lAzEyMTI3NTc5NzE-">Change settings
via the W=
eb</a> (Yahoo! ID required) <br>
Change settings via email: <a href=3D"mailto:xap_automation-digest@ya=
hoogroups.com?subject=3DEmail Delivery: Digest">Switch delivery to
Daily Di=
gest</a>  <a href =3D "mailto:xap_automation-fullfeatured@xxxxxxx?=
subject=3DChange Delivery Format: Fully Featured">Switch to Fully
Featured<=
/a> <br>
<a href=3D"http://groups.yahoo.com/group/xap_automation;_ylc=3DX=
3oDMTJkbHRoYW1sBF9TAzk3NDc2NTkwBGdycElkAzk2NzQzNDMEZ3Jwc3BJZAMxNzA1MDA3NzA5=
BHNlYwNmdHIEc2xrA2hwZgRzdGltZQMxMjEyNzU3OTcx">
Visit Your Group=20
</a>
<a href=3D"http://docs.yahoo.com/info/terms/";>
Yahoo! Groups Terms of Use
</a>
<a href=3D"mailto:xap_automation-unsubscribe@xxxxxxx?subject=
=3DUnsubscribe">
Unsubscribe=20
</a>=20
<br>
</div>
<br>

<!-- **end egp html banner** -->


<span  style=3D"color: white;"/>__,_._,___</span>
</body></html>

--0-224642887-1212756989=:10642--


xAP_Automation Main Index | xAP_Automation Thread Index | xAP_Automation Home | Archives Home

Comments to the Webmaster are always welcomed, please use this contact form . Note that as this site is a mailing list archive, the Webmaster has no control over the contents of the messages. Comments about message content should be directed to the relevant mailing list.