Error Initializing ESPNow #1512
-
I'm using ESPNowStream and everything went pretty well until I updated the library today (The last time I updated the library was a month ago). I tried to upload my code (I didn't make any changes) and then I got this error: This is my code:
#include "AudioTools.h" // install https://github.com/pschatzmann/arduino-audio-tools // I2C // I2S, your configuration for the ES8388 board AudioInfo audio_info(8000, 1, 16); // sampling rate, # channels (mono), bit depth DriverPins my_pins; // board pins // Set up filtered stream and copy it to ESP-NOW. The coefficients of the filter may vary (depending on sampling rate) ESPNowStream now; // CsvOutput<int16_t> Serial_out(Serial); // ASCII output stream void setup() { Serial.println("Setup starting..."); Serial.println("I2C pin ..."); Serial.println("Pins begin ..."); Serial.println("Board begin ..."); Serial.println("I2S begin ..."); // Setup CSV // Setup filter // Setup ESP_NOW Serial.println("Setup completed ..."); // Arduino loop - copy sound to out |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 6 replies
-
Did you try what the error messages tells you to do ? Call addPeers before begin... |
Beta Was this translation helpful? Give feedback.
Did you try what the error messages tells you to do ? Call addPeers before begin...