Hi,
I am new to arduino and received a Wemos D1 Mini (ESP8266) from China.
I tried the blink sketch and this worked well.
Now I tried something more advanced:
#include <SPI.h>
void setup() {
Serial.begin(9600);
SPI.begin(); // Init SPI bus
Serial.println("Online");
}
void loop() {
}
This results in very strange characters before the "Online" statement:
⸮$OX⸮K,K⸮⸮aY⸮h⸮Online
⸮dOI⸮0⸮H<⸮⸮CXH⸮Online
I rad the same code on a Arduino nano and this worked flawlessly...
Could anyone point me in a direction to sort this? Could it be the fact that it is from China, or maybe dodgy soldering?
Kind regards,
Freek