Fix missing documentation for many clock faces:
* Move from .c to .h as needed for consistency. * When missing from both, copy from pull request or wiki. * When missing entirely, infer functionality from source code.
This commit is contained in:
@@ -25,10 +25,18 @@
|
||||
#ifndef SUNRISE_SUNSET_FACE_H_
|
||||
#define SUNRISE_SUNSET_FACE_H_
|
||||
|
||||
#include "movement.h"
|
||||
/*
|
||||
* SUNRISE & SUNSET FACE
|
||||
*
|
||||
* The Sunrise/Sunset face is designed to display the next sunrise or sunset
|
||||
* for a given location. It also functions as an interface for setting the
|
||||
* location register, which other watch faces can use for various purposes.
|
||||
*
|
||||
* Refer to the wiki for usage instructions:
|
||||
* https://www.sensorwatch.net/docs/watchfaces/complication/#sunrisesunset
|
||||
*/
|
||||
|
||||
// The Sunrise/Sunset face is designed to display the next sunrise or sunset for a given location.
|
||||
// TODO: It also functions as an interface for setting the location register, which other watch faces can use for various purposes.
|
||||
#include "movement.h"
|
||||
|
||||
typedef struct {
|
||||
uint8_t sign: 1; // 0-1
|
||||
|
||||
Reference in New Issue
Block a user