Skip to content

Instantly share code, notes, and snippets.

@crispincornett
Last active August 29, 2015 14:11
Show Gist options
  • Save crispincornett/07f101406e07a0f48869 to your computer and use it in GitHub Desktop.
Save crispincornett/07f101406e07a0f48869 to your computer and use it in GitHub Desktop.
Ignition Ack All Alarms
# Get all alarms
alarms = system.alarm.queryStatus()
note = "Acked by Zeus"
alm_ids = []
# Add alarm id cast as string to alm_ids list
for row in alarms:
alm_ids.append(str(row.getId()))
# Ack all in the list
system.alarm.acknowledge(alm_ids, note)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment