Allows applications to schedule to be launched even if they are not running.
Registers a WakeupHandler to be called when wakeup events occur.
The callback that gets called when the wakeup event occurs
Registers a wakeup event that triggers a callback at the specified time. Applications may only schedule up to 8 wakeup events. Wakeup events are given a 1 minute duration window, in that no application may schedule a wakeup event with 1 minute of a currently scheduled wakeup event.
The requested time (UTC) for the wakeup event to occur
The application specific reason for the wakeup event
On powering on Pebble, will alert user when notifications were missed due to Pebble being off.
negative values indicate errors (StatusCode) E_RANGE if the event cannot be scheduled due to another event in that period. E_INVALID_ARGUMENT if the time requested is in the past. E_OUT_OF_RESOURCES if the application has already scheduled all 8 wakeup events. E_INTERNAL if a system error occurred during scheduling.
Cancels a wakeup event.
Wakeup event to cancel
Cancels all wakeup event for the app.
Retrieves the wakeup event info for an app that was launched by a wakeup_event (ie. launch_reason() === APP_LAUNCH_WAKEUP) so that an app may display information regarding the wakeup event.
WakeupId for the wakeup event that caused the app to wakeup
App provided reason for the wakeup event
True if app was launched due to a wakeup event, false otherwise
Checks if the current WakeupId is still scheduled and therefore valid.
Wakeup event to query for validity and scheduled time
Optionally points to an address of a time_t variable to store the time that the wakeup event is scheduled to occur. (The time is in UTC, but local time when clock_is_timezone_set returns false). You may pass NULL instead if you do not need it.
True if WakeupId is still scheduled, false if it doesn't exist or has already occurred
WakeupId is an identifier for a wakeup event.
The type of function which can be called when a wakeup event occurs. The arguments will be the id of the wakeup event that occurred, as well as the scheduled cookie provided to wakeup_schedule.
Do you have questions about the Pebble SDK?
Do you need some help understanding something on this page?
You can either take advantage of our awesome developer community and check out the SDK Help forums, or you can send us a message through the website!