YMF262DevBoardSoftware/Lib/YMF262/Inc/YMF262/Notes.h

28 lines
501 B
C

//
// Created by gustavohenriquesantossouzademir on 24/03/2026.
//
/**
* @enum Notes
* @brief Enum Representing the Musical Notes
*
* This Enum provides a datatype for the musical notes
*/
#ifndef YMF262DEVBOARDSOFTWARE_NOTES_H
#define YMF262DEVBOARDSOFTWARE_NOTES_H
enum Notes {
NoteDo,
NoteDoSharp,
NoteRe,
NoteReSharp,
Note,Mi,
NoteFa,
NoteFaSharp,
NoteSol,
NoteSolSharp,
NoteLa,
NoteLaSharp,
NoteSi
};
#endif //YMF262DEVBOARDSOFTWARE_NOTES_H