The alarms tag has no wiki summary.
-2
votes
0answers
13 views
Detecting intrusion detection true alerts [closed]
Intrusion detection systems result in large log files with a series of alarms.
How to identify alerts that indicate a potential attack?
what will be your technique to figure this out and avoid a lot ...
0
votes
0answers
16 views
Java application exception monitoring & alarms
We have a few applications which are running in Windows 2K, 2008 servers. They are written in java.
These applications needs to do many automation tasks. We are having difficulty to monitor these ...
1
vote
1answer
32 views
Using android alarms vs timer tasks? [closed]
I have a requirement where I need to read only 100 entries per day from an excel file. The file can have thousands of records.
I wish to create the system in android where a scheduled service will ...
0
votes
1answer
56 views
the alarm doesn't be reset after reboot
I developed a new app what displaying the times for TV shows and i want to make reminders for this times .. that's working good but after reboot all alarms are deleted then i used receiver with ...
0
votes
2answers
87 views
How to set one time alarm in android
I am doing alarm Project,
I want to set one time alarm.. But i am facing problem to set tat,
My code is;
public void loadCalender(String month) {
try {
Cursor cursor = null;
...
-4
votes
1answer
37 views
how to play a alram notification for 10 minutes
How to play alarm notification fro a perticular period of time in android ( like for 10 minutes continiously)
enter code here:
public class AlarmReciver extends BroadcastReceiver{
private static ...
0
votes
0answers
35 views
Duplicate values are entering in multiple alarms
here is my problem
*My application is to accept multiple alarms.
*when i press okay button they have to store in Sq lite database as well as they have to show in an array list.
*But the problem is ...
0
votes
1answer
181 views
Multiple alarms with AlarmManager
I'm currently at my wits' end.
In my application the user can set alarms by selecting the weekdays he wants and a time.
The below function checks the rule-set and looks for rules that have a time ...
0
votes
0answers
32 views
SNMP alarms from client to manager
I am doing SNMP manager and agent programming in C using sockets in Linux.
One concept called SNMP traps, for which I am not able to get the logic for it.
Can anybody help me with a useful logic for ...
0
votes
1answer
118 views
Android show notification from app
I have application that needs to show notification in status bar.
I have to set time and date in my app, and on that time and date notification needs to be shown in status bar as somekind of reminder.
...
0
votes
2answers
2k views
Is Arduino the best choice for building your own custom alarm system?
I want to make the my own alarm system and am unsure on what way would be the best platform to build it on. I am a C# programmer so this low level hardware stuff is new terrain for me.
Must haves:
...
2
votes
1answer
131 views
perl alarms not working as expected
I have a simple perl script that calls a shell script which always "hangs" when called from the browser. I want to simply force a time out after 20 seconds. When I run it in command line there is no ...
1
vote
0answers
377 views
Android: how to set up multiple alarms [closed]
i have to set 3 different alarms simultaneously but i am currently trying out to work for two alarms. i have followed tutorials like this one Android: Multiple Alarm not working?
but none worked, IM ...
0
votes
0answers
105 views
How to add a list of predefined reminders/alarms in Android?
I want my application to automatically add a set of pre defined reminders in addition to the users being able to add reminders. I am able to let the users add reminders using Blundell's Tutorial here ...
2
votes
1answer
2k views
Android AlarmManager after reboot
I have a set of alarms that I need to keep after reboot. I've tried using on an boot receiver but they won't start again. I'm not sure if I understand the boot receiver and how to then restart all the ...
-1
votes
1answer
456 views
how can i get the clock alarms in android
i want to get the alarm in the Clock Application in the mobile iam using the following code
Uri uri = Uri.parse("content://com.android.deskclock/AlarmClock");
Cursor c = ...
1
vote
0answers
312 views
How to set a reminder in through AlarmManager in Android
I want to make reminder in my Android application. I have taken date-picker and time-picker and stored the time and date in an SQLite database. Now I want to compare the date and time values from the ...
1
vote
2answers
80 views
Android alarms, service as not been called
In my activity:
Intent myIntent = new Intent(this, MyAlarmService.class);
pendingIntent = PendingIntent.getService(this, 0, myIntent, 0);
AlarmManager alarmManager = ...
9
votes
3answers
274 views
How can I suspend all audible notifications on the iPad?
We're creating an audio application for iPad (only) which will be used for live performances. The device will be wired directly into the console. As such, the last thing you want during a live ...
2
votes
2answers
126 views
why does get the extra data always return null?
I'm working on alarms for medicines and appointments … when i set an alarm i put extra data to use them later when the alarm go off….
here is some code to set a medicine alarm in my public class ...
0
votes
1answer
183 views
Application alarm causing a weird error until I press the back button
I have an alarm in my application that notifies me every 10 minutes. It works fine but each time when the alarm notifies me, my application name will show as a box in the middle of the screen, and I ...
0
votes
1answer
173 views
two alarms set at same time
in my application users are free to select time and date to set alarms .
What will happen if user choose exactly the same date and time for two alarms.
I am taking input from user(for date and time) ...
0
votes
2answers
410 views
cancel a particular alarm
I am setting alarms at diffrent time . I want to delete a particulat alarm.
Ex. I set 100 alarms at diiferents times , now I want to Delete an alarm set at 25 Feb 2012 10.45 AM. How Can I do that.
I ...
-1
votes
2answers
258 views
Setting alarm clock to be shown in Clock application [closed]
Is there way to set up alarm clock in my application - this means that when I use something like AlarmManager or else, my new alarm would be visible on my alarm list in stock Clock application. I read ...
3
votes
2answers
1k views
Cancelling a single alarm when you have multiple alarms
I have used the same pendingIntent to set multiple alarms using different intentId for each. the alarm is working. Now i want to cancel a particular alarm. If i use the cancel() method i would end up ...
0
votes
3answers
169 views
AlarmManager.set(…) behavior not matching documentation. Am I doing something wrong?
I'm setting up alarms using this code
//in onCreate()
mAlarmManager = (AlarmManager) getApplicationContext()
.getSystemService(ALARM_SERVICE);
//called for each timer I schedule
Intent ...
0
votes
3answers
200 views
Best approach to Triggering Event on SQL database
Quite simply I have a SQL database with a .net front end and I need to set off event's when an specific time is reached . I call them alarms , so a user can set an alarm for say 12:30am on x day and ...
1
vote
1answer
802 views
Get the list of enabled alarm using default sdk?
I've been seeking how to simply get a list of all enabled alarm.
So far I found two things:
String nextAlarm = Settings.System.getString(getContentResolver(),
Settings.System.NEXT_ALARM_FORMATTED);
...
5
votes
3answers
1k views
Setting an alarm (as in alarm clock) using intents
Since API level 9 (2.3) you can set an alarm using an intent:
Intent i = new Intent(AlarmClock.ACTION_SET_ALARM);
i.putExtra(AlarmClock.EXTRA_HOUR, 9);
i.putExtra(AlarmClock.EXTRA_MINUTES, 37);
...
0
votes
1answer
393 views
how can i play alarm with notification in iphone
i want to play multiple alarm in my application with notification can i play alarm ?...
how can i play multiple alarm with notification ?
0
votes
0answers
432 views
Why isn't my application service launching inmediately after the phone is turned on?
After I successfully configured alarms to go of after I start or restart my phone (thanks for that answer Macarese), I must have made something wrong, because stored alarms are not fired after 2 or ...
0
votes
1answer
2k views
How does one launch android version dependent alarm clock? [duplicate]
Possible Duplicate:
Intent to launch the clock application on android
I have a widget that displays the time and if one taps on it, it launches the com.android.alarmclock/.AlarmClock ...
19
votes
1answer
9k views
How can I setup multiple alarms in Android?
So far and thanks to this website, I've been able to set up an alarm that will be set up and active, even if I turn of my phone.
Now, I set up a alarm to show a reminder for event A and I need the ...
1
vote
2answers
369 views
Best strategy to implement this behavior in Android app?
In my Android app, I have some data that needs to be synced daily but also needs to be updated every hour when a user is inside the app.
I have already implemented a service that gets called from an ...
3
votes
2answers
4k views
android - get all alarms saved in the alarm application
Is it by any chance possible to get a list of alarms saved in the alarm application of android ? I am making an application which just needs to show the alarms set in the Alarm application.
Thanx
8
votes
3answers
7k views
Multiple calls to AlarmManager.setRepeating deliver the same Intent/PendingIntent extra values, but I supplied different ones
Solved while writing this question, but posting in case it helps anyone:
I'm setting multiple alarms like this, with different values of id:
AlarmManager alarms = ...

