Fix include for framework < 3.0.0

This commit is contained in:
Stephan Hadinger 2021-07-30 17:46:06 +02:00
parent d789846ff5
commit f9fbdc12ed
2 changed files with 2 additions and 2 deletions

View File

@ -22,7 +22,7 @@
#ifdef ESP32
#include "driver/i2s.h"
#elif defined(ARDUINO_ARCH_RP2040) || defined(ESP8266)
#include <I2S.h>
#include <i2s.h>
#endif
#include "AudioOutputI2S.h"

View File

@ -22,7 +22,7 @@
#ifdef ESP32
#include "driver/i2s.h"
#elif defined(ARDUINO_ARCH_RP2040) || defined(ESP8266)
#include <I2S.h>
#include <i2s.h>
#endif
#include "AudioOutputI2SNoDAC.h"