#ifndef _EVENTS_h #define _EVENTS_h /// /// An event you receive through the eventing system /// struct Event { /// /// Sender of the event; one of the WATCHOS_MODULE_* consts /// well_known_handle_t source; /// /// Id of the actual event; one of the WATCHOS_EVENT_TYPE__ consts /// uint16_t event; /// /// Event defined data /// byte param1; /// /// Event defined data /// byte param2; }; #endif