Changing Analog_Clock marker colors…
Reading other questions about changing Analog_Clock Usermod colors seems to indicate that changing colors requires making changes in Analog_Clock.h and compiling a new bin.
When looking at where/how to make color changes, I find this in the Analog_Clock.h code…
// configuration (available in API and stored in flash)
bool enabled = false;
Segment mainSegment;
bool hourMarksEnabled = true;
uint32_t hourMarkColor = 0xFF0000;
uint32_t hourColor = 0x0000FF;
uint32_t minuteColor = 0x00FF00;
bool secondsEnabled = true;
Segment secondsSegment;
uint32_t secondColor = 0xFF0000;
bool blendColors = true;
uint16_t secondsEffect = 0;
It is that comment line that raises my question…
" “available in API and stored in flash”
HOW CAN I USE THE API TO FIND, LIST, OR CHANGE THE ANALOG_CLOCK CONFIGURATION VARIABLES?