mirror of
https://github.com/sle118/squeezelite-esp32.git
synced 2025-12-10 05:27:01 +03:00
Start of 5.X work
This commit is contained in:
@@ -12,7 +12,7 @@
|
||||
#ifndef LED_H
|
||||
#define LED_H
|
||||
#include "driver/gpio.h"
|
||||
#include "Configurator.h"
|
||||
#include "Config.h"
|
||||
|
||||
enum { LED_GREEN = 0, LED_RED };
|
||||
#define led_on(idx) led_blink_core(idx, 1, 0, false)
|
||||
@@ -21,7 +21,7 @@ enum { LED_GREEN = 0, LED_RED };
|
||||
#define led_blink_pushed(idx, on, off) led_blink_core(idx, on, off, true)
|
||||
|
||||
// if type is LED_GPIO then color set the GPIO logic value for "on"
|
||||
bool led_config(int idx, sys_LED * led_config);
|
||||
bool led_config(int idx, sys_led_config * led_config);
|
||||
bool led_brightness(int idx, int percent);
|
||||
bool led_blink_core(int idx, int ontime, int offtime, bool push);
|
||||
bool led_unpush(int idx);
|
||||
|
||||
Reference in New Issue
Block a user