24#ifndef _WATCH_APP_H_INCLUDED
25#define _WATCH_APP_H_INCLUDED
void app_wake_from_backup(void)
A function you will implement to wake from BACKUP mode, which wipes the system's RAM,...
void app_wake_from_standby(void)
A method you will implement to configure the app after waking from STANDBY mode.
void app_setup(void)
A function you will implement to set up your application. The app_setup function is like setup() in A...
bool app_loop(void)
A function you will implement to serve as the app's main run loop. This method will be called repeate...
void app_init(void)
A function you will implement to initialize your application state. The app_init function is called b...
void app_prepare_for_standby(void)
A function you will implement to prepare to enter STANDBY mode. The app_prepare_for_standby function ...