X-Git-Url: https://git.xandkar.net/?a=blobdiff_plain;f=bin%2Fkhatus_monitor_energy;h=24a4b746ef3fc9b54154bc3704ca8a179a18efc1;hb=8da9a819a69bd1fd2cc9164c521d725a213a896c;hp=f0f9f85806ea18dec4062627e7a156dd0f254a63;hpb=b1c097d6bd0c0b0d0286c6636fe7fda610dfbd45;p=khatus.git 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)