Trying to define the defaults for some variables. For example:
static int persist_previousTemp = 1;
static int persist_previousTempDefault = 2;
static int persist_previousIcon = 1;
static int persist_previousIconDefault = 2;
//Define variables for persistent storage of weather, not persistent
static int previousTemp = persist_previousTempDefault;
static int previousIcon = persist_previousIconDefault;
Doing this for pebble development if that makes any difference, but I don't believe it does.
Yes, I've tried searching and previous solutions such as defining within a function just throw me more errors.
Thanks!