14 lines
148 B
C++
14 lines
148 B
C++
#pragma once
|
|
|
|
#include <driver/gpio.h>
|
|
|
|
namespace Led
|
|
{
|
|
|
|
void setupLed(const gpio_num_t gpio);
|
|
void flashRx();
|
|
void flashTx();
|
|
|
|
} // namespace Led
|
|
|