mirror of
https://github.com/eclipse/upm.git
synced 2025-03-24 09:20:39 +03:00

Signed-off-by: Mihai Stefanescu <mihai.stefanescu@rinftech.com> Signed-off-by: Stefan Andritoiu <stefan.andritoiu@gmail.com> Signed-off-by: Mihai Tudor Panu <mihai.tudor.panu@intel.com>
13 lines
183 B
C++
13 lines
183 B
C++
#include <iostream>
|
|
|
|
#include "buzzer.hpp"
|
|
#include "buzzer_tones.h"
|
|
#include "upm_utilities.h"
|
|
|
|
int
|
|
main(int argc, char** argv)
|
|
{
|
|
upm::Buzzer buzzer("p:33,vol:1.0");
|
|
return 0;
|
|
}
|