Hai
I'm a new user. I bough a Wemos clone. On the Wemos I got the led on the board blinking and also I could read the status of a pin changing it with a button.
So it seems all is working well.
But I will not succeed in getting a pin high.
I use the following simple code:
// put your setup code here, to run once:
void setup() {
pinMode(11, OUTPUT);
}
// put your main code here, to run repeatedly:
void loop() {
digitalWrite(11, HIGH);
delay(1000);
digitalWrite(11,LOW);
delay(1000);
}
Nothing happens and measering the pin is constant 0 V.
Does someone know what is going wrong here?
Thanks
Ptrzet
there are many Wemos clones can you send us a link to the actual board?
which physical pin did you connect too ?
pin 11 is GPIO11 which on my NodeMCU ESP-12E is connected to SC
when you upload code use code tags </>
as GPIO11 is one of the SPI pins I suggest you use a different pin, e.g. try GPIO16 which is D0
Hai Horace
During compiling there was a short message I had to update some files.
I searched were to update but did not find.
The third compiling Iwas in time and: the 8266 file with Wemos wanted to update!
After that all was working fine.
By the way: can you tell me how I can update manually?
Thanks for all your help.