1

Topic: Problem with analogRead(A0) Wemos d1

if I write an analogRead(A0), the phone does not see wifi remote x y

2

Re: Problem with analogRead(A0) Wemos d1

Unrelated to RemoteXY. It's a known limitation of the ESP8266, as a single core microcontroller it cannot constantly use the ADC (which takes a relatively long time) AND keep wifi alive at the same time. Solution is to not use analogRead more than once every millisecond, OR you can use it as fast as possible but for less than 50ms at once.

3

Re: Problem with analogRead(A0) Wemos d1

Right. Add delay(1) in your loop.