Tagged Questions
The alarm tag has no wiki summary.
10
votes
3answers
387 views
Best program for keeping track of Time (motor racing)
Short Version:
Program to:
control racing (cars) laptimes (it must not reset)
be able to use as a chronometer
b able to use as a reverse chronometer (start in X min:secs end in 00:00)
Long ...
10
votes
3answers
629 views
How should I clean up hung grandchild processes when an alarm trips in Perl?
I have a parallelized automation script which needs to call many other scripts, some of which hang because they (incorrectly) wait for standard input or wait around for various other things that ...
8
votes
3answers
5k views
getExtra from Intent launched from a pendingIntent
I am trying to make some alarms after the user selects something with a time from a list and create a notification for it at the given time. My problem is that the "showname" that a putExtra on my ...
7
votes
1answer
2k views
Identify and cancel an alarm send to an AlarmManager
If I use the AlarmManager to schedule an alarm (a PendintIntent which should be send), how can I identify that alarm later to cancel it? Can I cancel all alarms scheduled by my app?
6
votes
1answer
567 views
recvfrom() timeout with alarm()
I'm debugging the following code:
signal(SIGALRM, testt);
alarm(1);
result = ...
4
votes
2answers
162 views
How to signal alarm in python 2.4 after 0.5 seconds
I want to timeout a particular piece of python code after in runs for 0.5 seconds. So I intend to raise an exception/signal after 0.5 seconds, and handle it gracefully and continue with rest of code.
...
4
votes
5answers
176 views
What else can i do 'sleep' when the sleep() can't work well with alarm?
There are many documents say "you should avoid using sleep with alarm, since many systems use alarm for the sleep implementation". And actually, I'm suffering with this problem.
So does anyone can ...
4
votes
1answer
63 views
Setting an alarm in a role
I've got a bunch of classes that do different operations over the network, and as we all know, network operations sometimes time-out. So I'm thinking of doing something like this:
package ...
4
votes
2answers
518 views
Snooze local Notification
I am working on an alarm application and I am using local notification for that. Now I want to add snooze functionality to my alarm. I searched on Google and found that iPhone doesn't support such ...
4
votes
2answers
607 views
Android: connectivity issues in background thread after alarm when “always-on” turned off
Problem description:
In my android App, I experience connectitity issues when doing a remote HTTP
("polling") call from an AsyncTask that was started after an alarm went off.
The lookup works very ...
4
votes
1answer
5k views
Using Alarmmanager to start a service at specific time
I have searched a lot of places but couldnt find a clean sequential explanation of how to start a service (or if thats not possible then an activity) at a specific time daily using the AlarmManager??
...
4
votes
4answers
7k views
How do I pass data from a BroadcastReceiver through to an Activity being started?
I've got an Android application which needs to be woken up sporadically throughout the day.
To do this, I'm using the AlarmManager to set up a PendingIntent and have this trigger a BroadcastReceiver. ...
4
votes
3answers
283 views
How can you “avoid” a SIGSEGV?
I'm writing a client-server app, in which the client has a determined memory address from the server side.
If something goes wrong and the server needs to be reestarted the address the client has is ...
4
votes
2answers
2k views
signal.alarm replacement in Windows [Python]
I have a function that occasionally hangs. Normally I would set an alarm, but I'm in Windows and it's unavailable. Is there a simple way around this, or should I just create a thread that calls ...
3
votes
1answer
114 views
How to Turn on Music (ipod library) on iPhone?
I already know how to keep play music at background in my app.
I don't want to know that.
I want this.
how to Automatically turn on ipot music in background & sleep mode at custom time.
it's ...
3
votes
1answer
1k views
Android: How to repeat a service with AlarmManager every 15 minutes, but only run from 8:00AM to 18:00PM?
I need to check data update periodly, but the data is only updating during the daytime, so I want this repeating action run only in that time section for saving battery and bandwidth.
What should I ...
3
votes
2answers
358 views
Set an Alarm from My application
I want to create an alarm object from my application. I am writing a To-Do application which will have an option to set an Alarm on the phone.
I wanna set the Date and Time and also the Label for the ...
3
votes
1answer
187 views
How to raise an immediate sigalarm in c
I know i can set an alarm to "go off" with a SIGALRM after a specified amount of time using alram(numberOfSeconds) what i am looking to do is to raise the SIGALRM immediately.
Any help would be ...
3
votes
1answer
469 views
Python - signal.alarm function
I'm trying to build a python timeout exception that runs in milliseconds.
The python signal.alarm function has a 1 second resolution.
How would one get an equivalent function that requests a SIGALRM ...
3
votes
1answer
1k views
Problem acquiring wake lock from broadcast receiver
I have a problem. I am trying to make a broadcast receiver acquire a wake lock so my alarm will wake the phone from sleep mode.
In the broadcast receiver below, the program crashes with "source not ...
3
votes
5answers
3k views
How can I terminate a system command with alarm in Perl?
I am running the below code snippet on Windows. The server starts listening continuously after reading from client. I want to terminate this command after a time period.
If I use alarm() function ...
2
votes
1answer
46 views
How to repeat the alarm ON every monday or every tuesday
The following is the code to set the alarm once,
-(IBAction) alaramSetButton:(id)sender{
NSDateFormatter *dateFormatter =[[NSDateFormatter alloc]init];
[dateFormatter ...
2
votes
2answers
115 views
developing daily alarm in android
I have this piece of code that fire the alarm once by setting a time and date using the TimePicker and the DatePicker in another activity.
i want to modify it in a way that whenever i set a time and a ...
2
votes
1answer
604 views
iOS 5 Audio Alarms Don't Sound Without kAudioSessionProperty_OverrideCategoryMixWithOthers On
I have an audio app that is having some problems with the way iOS 5 has changed audio behaviors. When my app's audio is playing (AVAudioSessionCategoryPlayback), and a Clock.app alarm or timer is ...
2
votes
1answer
74 views
Notification in Statusbar at every day until a certain day is reached
I want to make a Notification that repeats every day at the same time, which is choosen by the user. The user has got also the possibility to decide wheater he will be nofified or not.
Is that ...
2
votes
1answer
131 views
How to create alarm when calendar event is created?
I have inserted an event in a calendar. The time of event created must also be created with alarm of the same time to ring. How to do it? I have used following code and it gives folowing error.
I get ...
2
votes
2answers
325 views
Alarm clock in Java
I want to make a program that will make a pop-up appear at a certain time in the future, eg. 5:00 tonight. Basically, the program is a reminder/notification system for appointments, meetings, etc.
My ...
2
votes
1answer
81 views
Adjust alarm time to match clock time in python
I'm just learning Python, and as one of the basic challenges that were suggested to me by friends I've been working on an alarm clock. I successfully made an alarm clock that played a .wav sound at a ...
2
votes
3answers
402 views
Implement alarm clock in Windows Phone 7.5 Mango
I would like create alarm clock at windows phone 7 mango , for this propose I want to use PeriodicTask is there any way to shorten the Scheduled interval from 30 minutes to every minute? Or there is ...
2
votes
2answers
241 views
android alarm clock adjust alarm volume
I am creating an Alarm Clock application. I list all the ringtones available (not only the standart alarm tones). When the user clicks a tone from a list, I play it using a MediaPlayer. During this, I ...
2
votes
1answer
77 views
Alarm system design
I've been asked to design an alarm system that would allow some users to create alarms, and others to listen to those alarms and do whatever they need to do.
The users that launch the alarms want to ...
2
votes
1answer
1k views
Call Notification from BroadcastReceiver
I have next code :
public void AlarmStart() {
Calendar cal = Calendar.getInstance();
cal.add(Calendar.MINUTE, 5);
Intent intent = new Intent(MainNote.this, ...
2
votes
1answer
907 views
Playing alarm in iphone with EKEvent
I am working on application which stores event using EKEvent class and i want my application to fire alarm when that event is occurs, i dont know how to play alarm in iPhone.
Any idea please share.
...
2
votes
2answers
1k views
How to check if alarm is set
I'm trying to check if my alarm is active or not. The alarmIsSet method will return false before the alarm is set, true when the alarm is set. So far so good, however, after the alarm i canceled ...
2
votes
2answers
323 views
how to automatically invoke my application in android
I want to automatically invoke my application at 12.00 am,This kind of process ,how to implement in android,is it possible?
2
votes
4answers
1k views
Start app at a specific time
I was wondering if it's possible (and if it is how) to start up my app at a specific time, something like an alarmclock which goes off at a specific time.
Let's say I want my app to start up at 8 in ...
2
votes
3answers
104 views
Fetch value from website and control relay?
I got a quite unusual question today from a client. They provide a mission-critical service where it's important that people are notified when a certain event happens. Currently they have an API that ...
2
votes
1answer
1k views
set the time in Alarm manager Android - alarm fired instantly [closed]
Possible Duplicate:
Why is my android alarm manager firing instantly?
I have this code which will call alarm notification
public static Calendar cal = Calendar.getInstance();
...
2
votes
2answers
2k views
How to schedule my android app to do something every hour
I want my app to access database every hour and read next record from the table then update desctop widget and send notification. I know that there is AlarmManager which I can use to register my ...
2
votes
2answers
350 views
Editing an alarm !
I am setting an alarm for my reminder app:
PendingIntent sender = PendingIntent.getBroadcast(AddToDoList.this,
Integer.parseInt(DBHelperClass.getMaxPrimaryId()), intent, 0);
i am using a ...
2
votes
1answer
387 views
How to setup an alarm that would go off even if I restart my android phone?
I've been searching this site and found some answers related to setting an alarm. I've successfully been able to set up an alarm.
What I do is:
From an activity I set an alarm that at certain ...
2
votes
3answers
2k views
How to set an alarm to fire properly at fixed time?
I have this code
Calendar c = new GregorianCalendar();
c.add(Calendar.DAY_OF_YEAR, 1);
c.set(Calendar.HOUR_OF_DAY, 23);
c.set(Calendar.MINUTE, 22);
...
2
votes
1answer
1k views
BlackBerry - How to create alarm event?
I want to acces alarm. in my application i have successfully accessed calender and have set the appointment but how i can access alarm. please help me. following is my code
public class Alarm
{
...
2
votes
4answers
2k views
How can I timeout a forked process that might hang?
I am writing a Perl script that will write some inputs and send those inputs to an external program. There is a small but non-zero chance that this program will hang, and I want to time it out:
my ...
2
votes
2answers
1k views
Alarms on the Google Android
I'm noticing a strange thing with Alarms on Android - they don't always wake up the device at the correct intervals. For example, if I set an alarm to start a service every 5 minutes (using ...
2
votes
3answers
911 views
How to set alarm using UIDatePicker?
I am developing an alarm clock application in iphone. I am not able to find how to set alarm which will trigger even if the app is not running. Please suggest me some code or tutorial to do it.
...
2
votes
5answers
928 views
c alternative to signal() + alarm()
I'm building some FastCGI apps and it sort of bugs me that lighttpd doesn't kill them off after they've been idle, so I'm trying to have them close on their own.
I tried using
signal(SIGALRM, ...
2
votes
2answers
1k views
Accessing and setting iPhone's alarm / User alert on timed interval
Are there any way to access or set iphone's alarm?
Im assuming if this isn't available, the only other way is push notification to alert the user on a timed interval. Any ideas?
1
vote
0answers
30 views
I want toast message to be displayed when alarm rings for android
My question is, I want toast message to be displayed when alarm is set to rings for android..I have AnCal alarm application ..I have tried a lot but its not working ...I need your help...
Thanks and ...
1
vote
2answers
43 views
Isuues alarm manager in every 1 min android?
i want to make a service which fire alarm manager in every 1 min interval..But
my Alarm run once(first time only).
i follow Lalit Answer
private class Receiver extends BroadcastReceiver{
...