diff options
Diffstat (limited to 'bluetooth-api.c')
-rw-r--r-- | bluetooth-api.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/bluetooth-api.c b/bluetooth-api.c index f7e2d9a..487a79f 100644 --- a/bluetooth-api.c +++ b/bluetooth-api.c @@ -52,6 +52,8 @@ static void bt_power (struct afb_req request) if (0==ret) { + + setHMIStatus(ACTIVE); (TRUE==power_value)?json_object_object_add (jresp, "power", json_object_new_string ("on")) : json_object_object_add (jresp, "power", json_object_new_string ("off")); } @@ -72,6 +74,7 @@ static void bt_power (struct afb_req request) return; } json_object_object_add (jresp, "power", json_object_new_string ("on")); + setHMIStatus(ACTIVE); } /* "?value=" parameter is "0" or "false" */ @@ -84,6 +87,7 @@ static void bt_power (struct afb_req request) } json_object_object_add (jresp, "power", json_object_new_string ("off")); + setHMIStatus(INACTIVE); } else { |