2020-03-28 13:30:51 +01:00
|
|
|
#ifndef WLED_LED_H
|
|
|
|
#define WLED_LED_H
|
|
|
|
#include <Arduino.h>
|
|
|
|
/*
|
|
|
|
* LED methods
|
|
|
|
*/
|
|
|
|
|
|
|
|
void setValuesFromMainSeg();
|
|
|
|
void resetTimebase();
|
|
|
|
void toggleOnOff();
|
|
|
|
void setAllLeds();
|
|
|
|
void setLedsStandard(bool justColors = false);
|
|
|
|
bool colorChanged();
|
|
|
|
void colorUpdated(int callMode);
|
|
|
|
void updateInterfaces(uint8_t callMode);
|
|
|
|
void handleTransitions();
|
|
|
|
void handleNightlight();
|
|
|
|
|
2020-03-25 09:00:55 +01:00
|
|
|
#endif
|