Add bluetooth sensor
authorSiraaj Khandkar <siraaj@khandkar.net>
Thu, 14 Feb 2019 21:07:59 +0000 (16:07 -0500)
committerSiraaj Khandkar <siraaj@khandkar.net>
Thu, 14 Feb 2019 21:07:59 +0000 (16:07 -0500)
x4/bin/khatus_x4_sensor_bluetooth [new file with mode: 0755]
x4/sanity_check

diff --git a/x4/bin/khatus_x4_sensor_bluetooth b/x4/bin/khatus_x4_sensor_bluetooth
new file mode 100755 (executable)
index 0000000..96d28a8
--- /dev/null
@@ -0,0 +1,23 @@
+#! /bin/sh
+
+set -e
+
+. "$(dirname $(realpath $0))/khatus_x4_lib_common_sensor.sh"
+
+count_powered_controllers() {
+    bluetoothctl -- show | grep -c 'Powered: yes'
+}
+
+count_connected_devices() {
+    bluetoothctl -- paired-devices \
+    | awk '{print $2}' \
+    | xargs -I % bluetoothctl -- info % \
+    | grep -c 'Connected: yes'
+}
+
+sensor() {
+    printf "count_powered_controllers %d\n" $(count_powered_controllers)
+    printf "count_connected_devices %d\n" $(count_connected_devices)
+}
+
+run
index 7ed1ca0..af68cf6 100755 (executable)
@@ -12,11 +12,12 @@ sensors_kill_all() {
         kill -9 $(cat $pid_file) || true
         rm $pid_file
     done
-    pkill khatus_x4
+    pkill khatus_x4_sensor || true
 }
 
 sensors_fork_all() {
     ./bin/khatus_x4_sensor_datetime &
+    ./bin/khatus_x4_sensor_bluetooth&
     ./bin/khatus_x4_sensor_mpd      &
     ./bin/khatus_x4_sensor_energy   &
 }
@@ -35,9 +36,11 @@ sensors_read_all() {
     do
         battery_state="$(sensor_read_one ${dir}/khatus_x4_sensor_energy/out/battery_state)"
         battery_percentage="$(sensor_read_one ${dir}/khatus_x4_sensor_energy/out/battery_percentage)"
+        bluetooth_controllers="$(sensor_read_one ${dir}/khatus_x4_sensor_bluetooth/out/count_powered_controllers)"
+        bluetooth_devices="$(sensor_read_one ${dir}/khatus_x4_sensor_bluetooth/out/count_connected_devices)"
         datetime="$(sensor_read_one ${dir}/khatus_x4_sensor_datetime/out/datetime)"
         mpd="$(sensor_read_one ${dir}/khatus_x4_sensor_mpd/out/status)"
-        echo "E[${battery_state} ${battery_percentage}] [${mpd}] ${datetime}"
+        echo "E[${battery_state} ${battery_percentage}] [${mpd}] [$bluetooth_controllers $bluetooth_devices] ${datetime}"
         sleep 1
     done
 }
This page took 0.019458 seconds and 4 git commands to generate.