blob: 188045055de22a54b2f58069750b7b6616b9e260 [file] [log] [blame]
/*
* Copyright (c) 2017 Linaro Limited
*
* SPDX-License-Identifier: Apache-2.0
*/
#include <errno.h>
#include <string.h>
#define LOG_LEVEL CONFIG_LOG_DEFAULT_LEVEL
#include <logging/log.h>
LOG_MODULE_REGISTER(main);
#include <zephyr.h>
#include <led_strip.h>
#include <device.h>
#include <spi.h>
#include <misc/util.h>
/*
* Number of RGB LEDs in the LED strip, adjust as needed.
*/
#define STRIP_NUM_LEDS 32
#define STRIP_DEV_NAME DT_COLORWAY_LPD8806_0_LABEL
#define DELAY_TIME K_MSEC(40)
static const struct led_rgb colors[] = {
{ .r = 0xff, .g = 0x00, .b = 0x00, }, /* red */
{ .r = 0x00, .g = 0xff, .b = 0x00, }, /* green */
{ .r = 0x00, .g = 0x00, .b = 0xff, }, /* blue */
};
static const struct led_rgb black = {
.r = 0x00,
.g = 0x00,
.b = 0x00,
};
struct led_rgb strip_colors[STRIP_NUM_LEDS];
const struct led_rgb *color_at(size_t time, size_t i)
{
size_t rgb_start = time % STRIP_NUM_LEDS;
if (rgb_start <= i && i < rgb_start + ARRAY_SIZE(colors)) {
return &colors[i - rgb_start];
} else {
return &black;
}
}
void main(void)
{
struct device *strip;
size_t i, time;
strip = device_get_binding(STRIP_DEV_NAME);
if (strip) {
LOG_INF("Found LED strip device %s", STRIP_DEV_NAME);
} else {
LOG_ERR("LED strip device %s not found", STRIP_DEV_NAME);
return;
}
/*
* Display a pattern that "walks" the three primary colors
* down the strip until it reaches the end, then starts at the
* beginning.
*/
LOG_INF("Displaying pattern on strip");
time = 0;
while (1) {
for (i = 0; i < STRIP_NUM_LEDS; i++) {
memcpy(&strip_colors[i], color_at(time, i),
sizeof(strip_colors[i]));
}
led_strip_update_rgb(strip, strip_colors, STRIP_NUM_LEDS);
k_sleep(DELAY_TIME);
time++;
}
}