I have a Wemos D1 mini, and the code I uploaded to it was this:
#include <SoftwareSerial.h>
SoftwareSerial swSer(3, 1, false, 128);
void setup() {
// put your setup code here, to run once:
swSer.begin(115200);
}
void loop() {
// put your main code here, to run repeatedly:
if(swSer.available())
{
swSer.readStringUntil('\n');
//Serial.println("Recv");
}
else
{
swSer.print('s');
delay(50);
}
}
Is there any way to make this microcontroller work again?
Thank you for your answers in advance!