diff options
| author | Tommie Gannert | 2016-08-01 20:17:50 +0100 | 
|---|---|---|
| committer | Tommie Gannert | 2016-08-14 20:44:54 +0100 | 
| commit | 9970af67e59dfbc758f6158a187c56fa4f3b557a (patch) | |
| tree | ddc51d1151ddff475f5b35075bcd4e3471e118ef | |
| parent | Merge pull request #149 from tommie/incremental_multibatt (diff) | |
Also capture charge rate in NetBSD.
For time estimates when charging.
| -rw-r--r-- | src/print_battery_info.c | 3 | 
1 files changed, 3 insertions, 0 deletions
| diff --git a/src/print_battery_info.c b/src/print_battery_info.c index a97bdea..f131601 100644 --- a/src/print_battery_info.c +++ b/src/print_battery_info.c @@ -326,6 +326,9 @@ static bool slurp_battery_info(struct battery_info *batt_info, yajl_gen json_gen              } else if (strcmp("discharge rate", prop_string_cstring_nocopy(obj3)) == 0) {                  obj3 = prop_dictionary_get(obj2, "cur-value");                  batt_info->present_rate = prop_number_integer_value(obj3); +            } else if (strcmp("charge rate", prop_string_cstring_nocopy(obj3)) == 0) { +                obj3 = prop_dictionary_get(obj2, "cur-value"); +                batt_info->present_rate = prop_number_integer_value(obj3);              } else if (strcmp("last full cap", prop_string_cstring_nocopy(obj3)) == 0) {                  obj3 = prop_dictionary_get(obj2, "cur-value");                  last_full_cap = prop_number_integer_value(obj3); | 
