From: Siraaj Khandkar Date: Sun, 19 Aug 2018 02:19:48 +0000 (-0400) Subject: Remove debug prints and add TODOs X-Git-Url: https://git.xandkar.net/?p=khatus.git;a=commitdiff_plain;h=8da9a819a69bd1fd2cc9164c521d725a213a896c Remove debug prints and add TODOs --- diff --git a/bin/khatus_monitor_energy b/bin/khatus_monitor_energy index f0f9f85..24a4b74 100755 --- a/bin/khatus_monitor_energy +++ b/bin/khatus_monitor_energy @@ -5,6 +5,7 @@ BEGIN { OFS = msg_fs ? msg_fs : "|" Kfs = key_fs ? key_fs : ":" + # TODO: Read spec from a file bat_alert_spec[100] = "low|Energy_Bellow_Full|Must have perfection!" bat_alert_spec[50] = "low|Energy_Bellow_Half|Where is the charger?" bat_alert_spec[20] = "med|Energy_Low|Get the charger." @@ -28,14 +29,13 @@ $2 == "khatus_sensor_energy" && \ $3 == "battery_state" { battery_state_prev = battery_state_curr battery_state_curr = $4 - printf("BATTERY_STATE prev:%s curr:%s\n", battery_state_prev, battery_state_curr) } $1 == "OK" && \ $2 == "khatus_sensor_energy" && \ $3 == "battery_percentage" { + # TODO: Re-think the spec - can't rely on order of keys battery_percentage = ensure_numeric($4) - printf("BATTERY_PERCENTAGE %s\n", battery_percentage) if (battery_state_curr == "discharging") { for (threshold in bat_alert_spec) { threshold = ensure_numeric(threshold)