From 2f32a908688b7ffad3db4373b3f3eb833f1f0352 Mon Sep 17 00:00:00 2001 From: Andrzej Kaczmarek Date: Tue, 9 Oct 2012 13:19:51 +0200 Subject: [PATCH] thermometer: Change string properties to lower-case --- doc/thermometer-api.txt | 10 +++++----- profiles/thermometer/thermometer.c | 26 +++++++++++++------------- 2 files changed, 18 insertions(+), 18 deletions(-) diff --git a/doc/thermometer-api.txt b/doc/thermometer-api.txt index a1da2e6c2..5bbd4bfc2 100644 --- a/doc/thermometer-api.txt +++ b/doc/thermometer-api.txt @@ -125,7 +125,7 @@ Methods void MeasurementReceived(dict measurement) string Unit: - Possible values: "Celsius" or "Fahrenheit" + Possible values: "celsius" or "fahrenheit" uint64 Time (optional): @@ -136,10 +136,10 @@ Methods void MeasurementReceived(dict measurement) Only present if measurement type is known. - Possible values: "Armpit", "Body", "Ear", - "Finger", "Intestines", "Mouth", - "Rectum", "Toe", "Tympanum" + Possible values: "armpit", "body", "ear", + "finger", "intestines", "mouth", + "rectum", "toe", "tympanum" string Measurement: - Possible values: "Final" or "Intermediate" + Possible values: "final" or "intermediate" diff --git a/profiles/thermometer/thermometer.c b/profiles/thermometer/thermometer.c index 98735d8d8..c2c7dfecb 100644 --- a/profiles/thermometer/thermometer.c +++ b/profiles/thermometer/thermometer.c @@ -120,15 +120,15 @@ static GSList *thermometer_adapters = NULL; const char *temp_type[] = { "", - "Armpit", - "Body", - "Ear", - "Finger", - "Intestines", - "Mouth", - "Rectum", - "Toe", - "Tympanum" + "armpit", + "body", + "ear", + "finger", + "intestines", + "mouth", + "rectum", + "toe", + "tympanum" }; static const gchar *temptype2str(uint8_t value) @@ -1070,7 +1070,7 @@ static void recv_measurement(struct thermometer *t, struct measurement *m) m->t = t; - if (g_strcmp0(m->value, "Intermediate") == 0) + if (g_strcmp0(m->value, "intermediate") == 0) wlist = t->tadapter->iwatchers; else wlist = t->tadapter->fwatchers; @@ -1093,9 +1093,9 @@ static void proc_measurement(struct thermometer *t, const uint8_t *pdu, flags = pdu[3]; if (flags & TEMP_UNITS) - m.unit = "Fahrenheit"; + m.unit = "fahrenheit"; else - m.unit = "Celsius"; + m.unit = "celsius"; if (len < 8) { DBG("Temperature measurement value is not provided"); @@ -1153,7 +1153,7 @@ static void proc_measurement(struct thermometer *t, const uint8_t *pdu, type = NULL; m.type = type ? g_strdup(type) : NULL; - m.value = final ? "Final" : "Intermediate"; + m.value = final ? "final" : "intermediate"; recv_measurement(t, &m); g_free(m.type); -- 2.47.3