選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 
 
 
 
 

12 行
230 B

  1. #ifndef AUDIO_ENGINE_H
  2. #define AUDIO_ENGINE_H
  3. #include <Arduino.h>
  4. #include "App.h"
  5. // Functions
  6. TaskHandle_t InitAudio();
  7. void PlayNote(note_t note, uint8_t octave, uint32_t time);
  8. void AudioEngineTask(void *parameter);
  9. #endif