open source driving agent
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
321 B

5 years ago
#ifndef __SOUND_HPP
#define __SOUND_HPP
#include "cereal/gen/cpp/log.capnp.h"
5 years ago
typedef cereal::CarControl::HUDControl::AudibleAlert AudibleAlert;
5 years ago
void ui_sound_init();
void ui_sound_destroy();
void set_volume(int volume);
void play_alert_sound(AudibleAlert alert);
void stop_alert_sound(AudibleAlert alert);
#endif