car-stereo/software/main/include/leds.h

13 lines
153 B
C++

#pragma once
namespace leds {
enum Bluetooth {
DISCOVERABLE,
CONNECTED,
DISCONNECTED,
};
void init();
void set_bluetooth(Bluetooth state);
}