btclock_v3/src/lib/led_handler.hpp

80 lines
2.3 KiB
C++
Raw Normal View History

2023-11-07 20:26:15 +00:00
#pragma once
#include <Adafruit_NeoPixel.h>
2023-11-30 21:38:01 +00:00
#include <Arduino.h>
#include <freertos/FreeRTOS.h>
#include <freertos/task.h>
2023-11-07 20:26:15 +00:00
2023-11-30 21:56:50 +00:00
#include "lib/shared.hpp"
#include "lib/webserver.hpp"
2023-11-08 11:18:59 +00:00
#ifndef NEOPIXEL_PIN
#define NEOPIXEL_PIN 34
#endif
#ifndef NEOPIXEL_COUNT
#define NEOPIXEL_COUNT 4
#endif
const int LED_FLASH_ERROR = 0;
const int LED_FLASH_SUCCESS = 1;
const int LED_FLASH_UPDATE = 2;
const int LED_FLASH_BLOCK_NOTIFY = 3;
const int LED_EFFECT_START_TIMER = 4;
const int LED_EFFECT_PAUSE_TIMER = 5;
const int LED_EFFECT_HEARTBEAT = 6;
const int LED_EFFECT_WIFI_WAIT_FOR_CONFIG = 100;
const int LED_EFFECT_WIFI_CONNECTING = 101;
const int LED_EFFECT_WIFI_CONNECT_ERROR = 102;
const int LED_EFFECT_WIFI_CONNECT_SUCCESS = 103;
const int LED_EFFECT_WIFI_ERASE_SETTINGS = 104;
2024-01-31 22:45:26 +00:00
const int LED_PROGRESS_25 = 200;
const int LED_PROGRESS_50 = 201;
const int LED_PROGRESS_75 = 202;
const int LED_PROGRESS_100 = 203;
2024-01-31 22:45:26 +00:00
const int LED_DATA_PRICE_ERROR = 300;
const int LED_DATA_BLOCK_ERROR = 301;
const int LED_FLASH_IDENTIFY = 990;
const int LED_POWER_TEST = 999;
2023-11-07 20:26:15 +00:00
extern TaskHandle_t ledTaskHandle;
extern Adafruit_NeoPixel pixels;
2023-11-07 20:26:15 +00:00
void ledTask(void *pvParameters);
2023-11-08 11:18:59 +00:00
void setupLeds();
2023-11-07 20:26:15 +00:00
void setupLedTask();
2023-11-08 11:18:59 +00:00
void blinkDelay(int d, int times);
void blinkDelayColor(int d, int times, uint r, uint g, uint b);
void blinkDelayTwoColor(int d, int times, uint32_t c1, uint32_t c2);
void clearLeds();
void saveLedState();
void restoreLedState();
2023-11-08 11:18:59 +00:00
QueueHandle_t getLedTaskQueue();
bool queueLedEffect(uint effect);
void setLights(int r, int g, int b);
void setLights(uint32_t color);
void ledRainbow(int wait);
void ledTheaterChaseRainbow(int wait);
void ledTheaterChase(uint32_t color, int wait);
2024-04-27 14:48:06 +00:00
Adafruit_NeoPixel getPixels();
#ifdef HAS_FRONTLIGHT
void frontlightFlash(int flDelayTime);
2024-04-27 14:48:06 +00:00
void frontlightFadeInAll();
void frontlightFadeOutAll();
void frontlightFadeIn(uint num);
void frontlightFadeOut(uint num);
2024-06-29 00:19:25 +00:00
std::vector<uint16_t> frontlightGetStatus();
void frontlightSetBrightness(uint brightness);
2024-06-29 00:19:25 +00:00
bool frontlightIsOn();
void frontlightFadeInAll(int flDelayTime);
void frontlightFadeInAll(int flDelayTime, bool staggered);
void frontlightFadeOutAll(int flDelayTime);
void frontlightFadeOutAll(int flDelayTime, bool staggered);
void frontlightFadeIn(uint num, int flDelayTime);
void frontlightFadeOut(uint num, int flDelayTime);
2024-04-27 14:48:06 +00:00
#endif