summaryrefslogtreecommitdiffstats
path: root/apps/pro-rainbow-test/app.c
blob: b26f39e6ee889e15bd098cf4e5b78d43e9f6db02 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
#include <stdio.h>
#include <string.h>
#include "watch.h"

void app_init(void) {
}

void app_wake_from_backup(void) {
}

void app_setup(void) {
    watch_enable_leds();
}

void app_prepare_for_standby(void) {
}

void app_wake_from_standby(void) {
}

bool app_loop(void) {
    static uint8_t red = 0;
    static uint8_t green = 0;
    static uint8_t blue = 255;
    static uint8_t phase = 0;

    switch (phase) {
        case 0:
            red++;
            if (red == 255) phase = 1;
            break;
        case 1:
            green++;
            if (green == 255) phase = 2;
            break;
        case 2:
            red--;
            if (red == 0) phase = 3;
            break;
        case 3:
            blue++;
            if (blue == 255) phase = 4;
            break;
        case 4:
            green--;
            if (green == 0) phase = 5;
            break;
        case 5:
            red++;
            if (red == 255) phase = 6;
            break;
        case 6:
            blue--;
            if (blue == 0) {
                phase = 1;
            }
            break;
    }

    watch_set_led_color_rgb(red, green, blue);
    delay_ms(2);

    return false;
}