13 lines
153 B
C++
13 lines
153 B
C++
#pragma once
|
|
|
|
namespace leds {
|
|
enum Bluetooth {
|
|
DISCOVERABLE,
|
|
CONNECTED,
|
|
DISCONNECTED,
|
|
};
|
|
|
|
void init();
|
|
void set_bluetooth(Bluetooth state);
|
|
}
|