Re: [RFC] Health Thermometer Profile API

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



Hello Elvis,

2011/6/21 Elvis Pfutzenreuter <epx@xxxxxxxxxxx>:
>
> On Jun 21, 2011, at 10:03 AM, Santiago Carot-Nemesio wrote:
>
>> ---
>> doc/thermometer.txt |  111 +++++++++++++++++++++++++++++++++++++++++++++++++++
>> 1 files changed, 111 insertions(+), 0 deletions(-)
>> create mode 100644 doc/thermometer.txt
>>
>> diff --git a/doc/thermometer.txt b/doc/thermometer.txt
>> new file mode 100644
>> index 0000000..4635fdf
>> --- /dev/null
>> +++ b/doc/thermometer.txt
>> @@ -0,0 +1,111 @@
>> +BlueZ D-Bus Thermomether API description
>> +****************************************
>> +
>> +     Santiago Carot-Nemesio <sancane@xxxxxxxxx>
>> +
>> +Health Thermomether Profile hierarchy
>> +=====================================
>> +
>> +Service              org.bluez
>> +Interface    org.bluez.Thermometer
>> +Object path  [variable prefix]/{hci0,hci1,...}/dev_XX_XX_XX_XX_XX_XX
>> +
>> +
>> +Methods              void SetProperty(string name, variant value)
>> +
>> +                     Changes the value of the specified property. Only
>> +                     read-write properties can be changed. On success
>> +                     this will emit a PropertyChanged signal.
>> +
>> +                     Possible Errors: org.bluez.Error.InvalidArguments
>> +
>> +             dict GetProperties()
>> +
>> +                     Returns all properties for the interface. See the
>> +                     Properties section for the available properties.
>> +
>> +             RegisterThermometerWatcher(object agent)
>> +
>> +                     Register a watcher to monitor scanned measures.
>> +
>> +                     The agent registered for the health thermometer
>> +                     service will be notified about measures scanned.
>> +
>> +                     Possible Errors: org.bluez.Error.InvalidArguments
>> +
>> +             UnregisterThermometerWatcher(object agent)
>> +
>> +                     Unregister a watcher.
>> +
>> +                     Final and intermediate temperatures won't be notified to
>> +                     the agent any more.
>> +
>> +                     Possible Errors: org.bluez.Error.InvalidArguments
>> +                                     org.bluez.Error.NotFound
>> +
>> +             EnableIntermediateMeasures(object agent)
>> +
>> +                     Enable notifications about intermediate measures. Agent
>> +                     should have registered a watcher for health thermometer
>> +                     service before to enable this feature.
>> +
>> +                     Possible Errors: org.bluez.Error.InvalidArguments
>> +                                     org.bluez.Error.NotAllowed
>> +
>> +             DisableIntermediateMeasures(object agent)
>> +
>> +                     Disable intermediate temperatures. It will disable
>> +                     intermediate measure notifications in the device when
>> +                     the last agent disables this feature.
>> +
>> +                     Possible Errors: org.bluez.Error.InvalidArguments
>> +                                     org.bluez.Error.NotFound
>
> Not sure whether there is a need to have these. Out of simplicity we could just
> accept that intermediate temperatures will be notified, if the thermometer
> provides this feature.
>
> In the other hand, a good reason to keep this would be saving energy when
> intermediate measures are not needed. LE profiles to into great lengths to
> save a couple bytes of traffic (literally).

That's the reason which I put them in the API but I was just wondering
if we could use the Final and Intermediate properties for that as you
suggest below.

>
>> +
>> +Signals              PropertyChanged(string name, variant value)
>> +
>> +                     This signal indicates a changed value of the given
>> +                     property.
>> +
>> +Properties   uint16 Interval (optional) [readwrite]
>> +
>> +                     The Measurement Interval defines the time (in seconds)
>> +                     between measurements. This interval is not related to
>> +                     the intermediates measures and must be defined into
>> +                     a valid range. Setting it to zero meaning that no
>> +                     periodic measurements will be taken.
>> +
>> +             uint16 Minimum (optional) [readonly]
>> +
>> +                     Defines the maximum value allowed for the interval
>> +                     between periodic measurements.
>> +
>> +             uint16 Maximum (optional) [readonly]
>> +
>> +                     Defines the minimuum value allowed for the interval
>> +                     between periodic measurements.
>
> I would still like to have temperature (final and intermediate) among properties
> so an app could read them out without having to register an agent, either to
> take a single measurement or to update display upon loading. (That's why
> the respective GATT characteristics support read along with notification.)
> Reading the property provokes actual characteristic reading.
>
> Disvantage: generating PropertyChanged signals along with agent calls, which
> puts the usefulness of the agent into question.
>
> Another option would be to guarantee that MeasureReceived() is called
> right after agent registering, in order to give the client an
> initial value to show (having in mind that notification interval might
> be very long).

I would prefer to use the Final and Intermediate properties too. The
problem that we should address occurs when an application wich hasn't
got a watcher registered sets Intermediate or Final measurement
property and the last watcher is removed. I think that the best option
may be turn off measurments for power safe due that no watcher will
get the measures.

We can change the API to do that. What do you think?


>
>> +
>> +
>> +Health Thermometer Watcher hierarchy
>> +====================================
>> +Service              unique name
>> +Interface    org.bluez.ThermometerWatcher
>> +Object path  freely definable
>> +
>> +Methods              void MeasureReceived(dict measure)
>> +
>> +                     This callback gets called when a measure has been
>> +                     scanned in the thermometer. The Value entry corresponds
>> +                     to IEEE-11073 32-bit FLOAT.The Time entry in the dict
>> +                     will be only present if the device supports storing of
>> +                     data. The time value is expressed in seconds since epoch.
>
> Using such a special type (FLOAT) looks funny. Not sure whether it is the best option
> for this API.
>
> At the very least, a description of FLOAT type should be added to the API, since
> IEEE 11073 specs are not public/free, and API users would have to resort to unofficial
> source to learn it.
>
> I understand why you used this type (keeps the thermometer transcodable through this
> API and there are the special values), so BTW the lack of device information service
> access through this API should at least be mentioned, so we ammend that later (either
> here or adding another API).

...or we can split the value in their exponent and mantissa
components. Any suggestion?

>
>> +
>> +                     Dict is defined as below:
>> +                     {
>> +                             "Value" : uint32,
>> +                             "Unit" : ("Celsius" or "Fahrenheit"),
>> +                             "Time" : uint64,
>> +                             "Type" : ("Armpit", "Body", "Ear", "Finger",
>> +                                     "Intestines", "Mouth", "Rectum", "Toe",
>> +                                     "Tympanum"),
>> +                             "Measurement" : ("Final" or "Intermediate"),
>> +                     }
>> --
>> 1.7.5.2
>>
>> --
>> To unsubscribe from this list: send the line "unsubscribe linux-bluetooth" in
>> the body of a message to majordomo@xxxxxxxxxxxxxxx
>> More majordomo info at  http://vger.kernel.org/majordomo-info.html
>
>
--
To unsubscribe from this list: send the line "unsubscribe linux-bluetooth" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at  http://vger.kernel.org/majordomo-info.html


[Index of Archives]     [Bluez Devel]     [Linux Wireless Networking]     [Linux Wireless Personal Area Networking]     [Linux ATH6KL]     [Linux USB Devel]     [Linux Media Drivers]     [Linux Audio Users]     [Linux Kernel]     [Linux SCSI]     [Big List of Linux Books]

  Powered by Linux