Boboter
Loading...
Searching...
No Matches
note.h
Go to the documentation of this file.
1
7
8#pragma once
9#include <cstdint>
10
14struct note {
15 uint16_t frequency;
16 uint16_t duration;
17};
Represents a musical note, used for the buzzer.
Definition note.h:14
uint16_t frequency
Frequency in Hz.
Definition note.h:15
uint16_t duration
Duration in ms.
Definition note.h:16