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."
$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)