Select one of the symbols to view example projects that use it.
 
Outline
#define LED_H
#include "driver/gpio.h"
#include "led_strip.h"
#include "sdkconfig.h"
#define BLINK_GPIO
get_led_state();
led_on();
led_off();
led_init();
Files
loading...
SourceVuESP-IDF Framework and ExamplesNimBLE_Security samplemain/include/led.h
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
/* * SPDX-FileCopyrightText: 2024 Espressif Systems (Shanghai) CO LTD * * SPDX-License-Identifier: Unlicense OR CC0-1.0 *//* ... */ #ifndef LED_H #define LED_H /* Includes */ /* ESP APIs */ #include "driver/gpio.h" #include "led_strip.h" #include "sdkconfig.h" /* Defines */ #define BLINK_GPIO CONFIG_BLINK_GPIO /* Public function declarations */ uint8_t get_led_state(void); void led_on(void); void led_off(void); void led_init(void); /* ... */ #endif // LED_H
Details
Show:
from
Types: Columns:
This file uses the notable symbols shown below. Click anywhere in the file to view more details.