You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello
I notice a big problem when the ESP8266audio and rtc3231 libraries (RTClib) are used at the same time.
MP3 audio is fine, but requests to DateTime now = rtc.now(); return aberration values.
I don't see much connection between ESP8266audio and Wire1.
Sincerely.
Erick
The hardware configuration is :Raspberry Pico with :
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
Hello
I notice a big problem when the ESP8266audio and rtc3231 libraries (RTClib) are used at the same time.
MP3 audio is fine, but requests to DateTime now = rtc.now(); return aberration values.
I don't see much connection between ESP8266audio and Wire1.
Sincerely.
Erick
The hardware configuration is :Raspberry Pico with :
RTC
Wire1.setSDA(26);
Wire1.setSCL(27);
// sound GPIO pin numbers
#define bclkPin 2
#define wclkPin (bclkPin+1)
#define doutPin 22
//---------Audio----------------
#define FPSerial Serial2
#include "AudioFileSourcePROGMEM.h"
#include "AudioOutputI2SNoDAC.h"
#include "AudioGeneratorMP3.h"
AudioGeneratorMP3 *mp3;
AudioFileSourcePROGMEM *vocalfile;
AudioOutputI2SNoDAC *out;
audioLogger = &Serial;
mp3 = new AudioGeneratorMP3();
out = new AudioOutputI2SNoDAC(doutPin);
Beta Was this translation helpful? Give feedback.
All reactions