Using Serial 1 and pin 16 the code works on S3 board as well, I checked if the pin 17 of the dev kit board is connected to the esp3 s3 module pin and I confirm it is so I think there’s some bug on Serial2.
Thanks for your help
Search found 3 matches
- Sat Nov 19, 2022 10:05 am
- Forum: General Discussion
- Topic: MIDI on Serial2 not working on ESP32-S3-DevKitC-1
- Replies: 2
- Views: 2215
- Fri Nov 18, 2022 9:33 pm
- Forum: General Discussion
- Topic: MIDI on Serial2 not working on ESP32-S3-DevKitC-1
- Replies: 2
- Views: 2215
Re: MIDI on Serial2 not working on ESP32-S3-DevKitC-1
I tried to simplify the code, see below, but again it works perfectly on the WROOM board and there's no message coming from the S3 #include <MIDI.h> #include <HardwareSerial.h> #include <esp_now.h> MIDI_CREATE_INSTANCE(HardwareSerial, Serial2, midi2) void setup() { Serial2.begin(31250); midi2.begin(...
- Wed Nov 16, 2022 10:03 pm
- Forum: General Discussion
- Topic: MIDI on Serial2 not working on ESP32-S3-DevKitC-1
- Replies: 2
- Views: 2215
MIDI on Serial2 not working on ESP32-S3-DevKitC-1
Hi, I'm using both an ESP32 WROOM 32 and an ESP32-S3-DevKitC-1 to create a MIDI controller with Arduino. The code I'm using is the one below, I'm using the same type of connections (https://user-images.githubusercontent.com/58184709/69883115-06d14980-12d3-11ea-8e4a-549d6501db0f.png) and pin 17 on bo...